From e2e4d5bcd64336fc459337a09bb55d466edc43b7 Mon Sep 17 00:00:00 2001 From: "COMPUTER\\EDY" <249929363@qq.com> Date: Fri, 17 Oct 2025 19:57:42 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E5=85=B3=E5=8D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Script/Block.ts | 5 + assets/Script/JiaZai.ts | 14 +- assets/Script/Map.ts | 24 +- assets/Script/Sdk/MiniGameSdk.ts | 2 +- assets/Script/Wall.ts | 250 +- assets/Script/module/Config/GameConfig.ts | 36 +- assets/Script/module/Tool/GameTool.ts | 4 +- assets/custom/Json/level491.json | 441 ++++ assets/custom/Json/level492.json | 398 ++++ assets/custom/Json/level493.json | 378 +++ assets/custom/Json/level494.json | 518 +++++ assets/custom/Json/level495.json | 371 +++ assets/custom/Json/level496.json | 343 +++ assets/custom/Json/level497.json | 344 +++ assets/custom/Json/level498.json | 407 ++++ assets/custom/Json/level499.json | 424 ++++ assets/custom/Json/level500.json | 375 +++ assets/custom/Json/level501.json | 537 +++++ assets/custom/Json/level502.json | 509 ++++ assets/custom/Json/level503.json | 392 ++++ assets/custom/Json/level504.json | 404 ++++ assets/custom/Json/level505.json | 445 ++++ assets/custom/Json/level506.json | 488 ++++ assets/custom/Json/level507.json | 478 ++++ assets/custom/Json/level508.json | 348 +++ assets/custom/Json/level509.json | 522 +++++ assets/custom/Json/level510.json | 384 +++ assets/custom/Json/level511.json | 307 +++ assets/custom/Json/level512.json | 324 +++ assets/custom/Json/level513.json | 305 +++ assets/custom/Json/level514.json | 342 +++ assets/custom/Json/level515.json | 247 ++ assets/custom/Json/level516.json | 364 +++ assets/custom/Json/level517.json | 326 +++ assets/custom/Json/level518.json | 333 +++ assets/custom/Json/level519.json | 397 ++++ assets/custom/Json/level520.json | 347 +++ assets/resources/prefab/wall/down.prefab | 2502 ++++++++++---------- assets/resources/prefab/wall/left.prefab | 2568 +++++++++++---------- assets/resources/prefab/wall/right.prefab | 2568 +++++++++++---------- assets/resources/prefab/wall/up.prefab | 2562 ++++++++++---------- settings/project.json | 2 +- 42 files changed, 17520 insertions(+), 4815 deletions(-) create mode 100644 assets/custom/Json/level491.json create mode 100644 assets/custom/Json/level492.json create mode 100644 assets/custom/Json/level493.json create mode 100644 assets/custom/Json/level494.json create mode 100644 assets/custom/Json/level495.json create mode 100644 assets/custom/Json/level496.json create mode 100644 assets/custom/Json/level497.json create mode 100644 assets/custom/Json/level498.json create mode 100644 assets/custom/Json/level499.json create mode 100644 assets/custom/Json/level500.json create mode 100644 assets/custom/Json/level501.json create mode 100644 assets/custom/Json/level502.json create mode 100644 assets/custom/Json/level503.json create mode 100644 assets/custom/Json/level504.json create mode 100644 assets/custom/Json/level505.json create mode 100644 assets/custom/Json/level506.json create mode 100644 assets/custom/Json/level507.json create mode 100644 assets/custom/Json/level508.json create mode 100644 assets/custom/Json/level509.json create mode 100644 assets/custom/Json/level510.json create mode 100644 assets/custom/Json/level511.json create mode 100644 assets/custom/Json/level512.json create mode 100644 assets/custom/Json/level513.json create mode 100644 assets/custom/Json/level514.json create mode 100644 assets/custom/Json/level515.json create mode 100644 assets/custom/Json/level516.json create mode 100644 assets/custom/Json/level517.json create mode 100644 assets/custom/Json/level518.json create mode 100644 assets/custom/Json/level519.json create mode 100644 assets/custom/Json/level520.json diff --git a/assets/Script/Block.ts b/assets/Script/Block.ts index 13068aa..efded80 100644 --- a/assets/Script/Block.ts +++ b/assets/Script/Block.ts @@ -1247,9 +1247,14 @@ export default class Block extends cc.Component { this.block_Info.type = 0; let name = this.color + "color" + this.block_Info.block; let number = Math.floor((this.color - 1) / 2); + if (this.color == 11) { + name = "0color" + this.block_Info.block; + number = 5; + } let blockSpriteFrame = MapConroler._instance.Block_Color[number]._spriteFrames; var spriteFrame = blockSpriteFrame[name]; this.node.getChildByName("icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + } //地板铺盖状态恢复为常态 diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts index 5a28c19..0748786 100644 --- a/assets/Script/JiaZai.ts +++ b/assets/Script/JiaZai.ts @@ -240,7 +240,7 @@ export default class JiaZai extends cc.Component { } else { // this.closeLoad(); - cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, true); } } else { @@ -337,7 +337,7 @@ export default class JiaZai extends cc.Component { NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true); this.setHealthInfo(true); }); - // cc.fx.GameConfig.LEVEL_INFO_init(false,0); + if (cc.fx.GameConfig.GM_INFO.gameState) { this.node.getChildByName("zhuanchang").active = true; @@ -744,7 +744,7 @@ export default class JiaZai extends cc.Component { MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); return; } - cc.fx.GameConfig.LEVEL_INFO_init(true); + cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false); } else { cc.fx.AudioManager._instance.playEffect("zhuan1", null); @@ -754,7 +754,7 @@ export default class JiaZai extends cc.Component { MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); return; } - cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, false); } } else if (version == "正式版") { @@ -766,7 +766,7 @@ export default class JiaZai extends cc.Component { this.node.getChildByName("zhuanchang").active = true; this.node.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); - cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, false); } else { if (this.custom.string != "") { @@ -776,7 +776,7 @@ export default class JiaZai extends cc.Component { MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); return; } - cc.fx.GameConfig.LEVEL_INFO_init(true); + cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false); } else { cc.fx.AudioManager._instance.playEffect("zhuan1", null); @@ -786,7 +786,7 @@ export default class JiaZai extends cc.Component { MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); return; } - cc.fx.GameConfig.LEVEL_INFO_init(true, 1000); + cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, false); } } } diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts index 0cf128d..4528110 100644 --- a/assets/Script/Map.ts +++ b/assets/Script/Map.ts @@ -158,6 +158,7 @@ export default class MapConroler extends cc.Component { hitSoundCount: number; hitSoundTime: number; hammerSpecial: boolean = false; + changeColor: boolean = false; //是否是变色门关 // mapInfo: number[][] = []; onLoad() { @@ -201,6 +202,7 @@ export default class MapConroler extends cc.Component { this.isreview = false; this.is_frenzy = false; this.hammerSpecial = false; + this.changeColor = false; this.revolving_state = 0; this.hitSoundCount = 0; this.hitSoundTime = 0; @@ -1497,7 +1499,7 @@ export default class MapConroler extends cc.Component { if (upWalls.length != 0) { let result = this.detectingBlock("up", node.getComponent("Block").posX, node.getComponent("Block").posY, allBlocks); if (result == true) result = this.passWall(result, upWalls, node); - // console.log("碰到上边缘结果:",result); + // console.log("碰到上边缘结果:", result); if (result) { this.blockNum -= 1; @@ -1566,7 +1568,7 @@ export default class MapConroler extends cc.Component { jg = false; return jg; } - //console.log(wallArray[i].getChildByName("wall").getComponent("Wall").color,node.getComponent("Block").color) + if (wallArray[i].getComponent("Wall").color != node.getComponent("Block").color) { jg = false; return jg; @@ -1588,9 +1590,11 @@ export default class MapConroler extends cc.Component { // const date8 = new Date().getTime(); // console.log("检测颜色是否能够通过门",date8); - // if (jg == true) { - // wallArray[0].getComponent("Wall").changeColorWall(); - // } + if (jg == true) { + if (wallArray[0].getComponent("Wall").colorArray.length > 0) { + wallArray[0].getComponent("Wall").changeColorWall(); + } + } return jg; } @@ -1979,7 +1983,7 @@ export default class MapConroler extends cc.Component { if (this.new_mode == 3) { this.node.parent.parent.getChildByName("Win").active = false; this.openNewMode(2); - cc.fx.GameConfig.LEVEL_INFO_init(false, 0); + cc.fx.GameConfig.LEVEL_INFO_init(false, 0, false); return; } if (this.new_item == 3) { @@ -2003,7 +2007,7 @@ export default class MapConroler extends cc.Component { this.node.parent.parent.parent.getChildByName("zhuanchang").active = true; this.node.parent.parent.parent.getChildByName("zhuanchang").getComponent(sp.Skeleton).setAnimation(1, "up", false); setTimeout(() => { - cc.fx.GameConfig.LEVEL_INFO_init(true, 0); + cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false); }, 1200); } } @@ -2033,7 +2037,7 @@ export default class MapConroler extends cc.Component { // } // }); setTimeout(() => { - cc.fx.GameConfig.LEVEL_INFO_init(true, 0); + cc.fx.GameConfig.LEVEL_INFO_init(true, 0, false); }, 1200); // this.node.parent.parent.parent.destroy(); } @@ -2260,7 +2264,7 @@ export default class MapConroler extends cc.Component { } // MiniGameSdk.API.showToast("体力值减少"); MapConroler._instance = null; - cc.fx.GameConfig.LEVEL_INFO_init(false, 0); + cc.fx.GameConfig.LEVEL_INFO_init(false, 0, false); if (this.new_mode == 3) { this.node.parent.parent.getChildByName("Win").active = false; this.openNewMode(1); @@ -3574,7 +3578,7 @@ export default class MapConroler extends cc.Component { predict_End() { //return true; // console.log("提前判断游戏结束"); - if (this.gameOver || this.gameWin) { + if (this.gameOver || this.gameWin || this.changeColor) { return true; } let result = false; diff --git a/assets/Script/Sdk/MiniGameSdk.ts b/assets/Script/Sdk/MiniGameSdk.ts index a62b44b..3d0bb15 100644 --- a/assets/Script/Sdk/MiniGameSdk.ts +++ b/assets/Script/Sdk/MiniGameSdk.ts @@ -1292,7 +1292,7 @@ export namespace MiniGameSdk { if (typeof wx !== 'undefined' && wx !== null) { // console.log("设置用户注册属性"); API._ta.userSet({ register_time: time }); - API._ta.userSet({ uid: cc.fx.GameConfig.GM_INFO.userId }); + API._ta.userSet({ uid: cc.fx.GameConfig.GM_INFO.userId.toString() }); } } diff --git a/assets/Script/Wall.ts b/assets/Script/Wall.ts index a774656..0c80dd3 100644 --- a/assets/Script/Wall.ts +++ b/assets/Script/Wall.ts @@ -25,8 +25,7 @@ export enum WallSpecial { "旋转门逆时针" = 5, /*上锁门*/ "上锁门" = 6, - /*变色门*/ - "变色门" = 7, + } export enum WallType { @@ -70,6 +69,8 @@ export enum WallColor { "红色" = 8, /*普通地块 */ "灰色" = 9, + "暗" = 10, + "默认色" = 11, } @ccclass @@ -96,6 +97,15 @@ export default class Wall extends cc.Component { }) color: WallColor = WallColor.紫色; + @property(cc.Node) + maskNode: cc.Node = null; // 遮罩节点 + + @property(cc.Float) + maskWidth: number = 138; // 遮罩宽度 + + @property(cc.Float) + maskHeight: number = 69; // 遮罩高度 + @property(cc.SpriteAtlas) wall_SpriteFrames: cc.SpriteAtlas = null; @@ -119,6 +129,7 @@ export default class Wall extends cc.Component { num: number; leftTween: any; rightTween: any; + colorArray: any; // LIFE-CYCLE CALLBACKS: @@ -169,11 +180,16 @@ export default class Wall extends cc.Component { //this.node.getChildByName("num").getComponent(cc.Label).string = ":" + this.node.parent.zIndex; } if (wall_Info != null) { + this.colorArray = []; this.color = this.wall_Info.color; this.special = this.wall_Info.special; this.num = this.wall_Info.num; let name2 = "rotate" + this.wall_Info.length; this.revolvingNode = this.node.parent.getChildByName("revolving").getChildByName(name2); + if (this.wall_Info.colorArray) { + this.colorArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1); + MapConroler._instance.changeColor = true; + } if (this.revolvingNode) { this.revolvingNode.parent.zIndex = 999; this.revolvingNode.active = false; @@ -211,7 +227,11 @@ export default class Wall extends cc.Component { double = 3; } - // debugger; + // if (this.colorArray.length > 1) { + // let firstItem = this.colorArray.shift(); // 移除第一项 + // this.colorArray.push(firstItem); // 将第一项添加到数组末尾 + // } + if (this.wall_SpriteFrames) { let name = this.color + "color" + (length + double); var spriteFrame = this.wall_SpriteFrames._spriteFrames[name]; @@ -302,26 +322,33 @@ export default class Wall extends cc.Component { } lock.getComponent("Lock").init(this.wall_Info.lockTime, "wall"); break; - case WallSpecial.变色门: - let color = cc.instantiate(MapConroler._instance.Block_Prop[4]); - color.parent = this.node.parent; - if (this.wall_Info.length == 0) { - color.opacity = 0; - } - color.scaleX = color.scaleY = 0.65; - if (this.direction == "up") { - color.setPosition((this.wall_Info.length - 1) * 60 - 10, 38); - if (this.wall_Info.length == 1) color.x += 5; - } - else if (this.direction == "down") { - color.setPosition((this.wall_Info.length - 1) * 60 - 10, -38); - if (this.wall_Info.length == 1) color.x += 5; - } - if (this.direction == "right") { - color.setPosition(30, (this.wall_Info.length - 1) * 60); - } - break; } + if (this.wall_Info.colorArray) { + + if (this.wall_Info.length > 0) { + this.maskNode.active = true; + this.setMask(); + } + + // let color = cc.instantiate(MapConroler._instance.Block_Prop[4]); + // color.parent = this.node.parent; + // if (this.wall_Info.length == 0) { + // color.opacity = 0; + // } + // color.scaleX = color.scaleY = 0.65; + // if (this.direction == "up") { + // color.setPosition((this.wall_Info.length - 1) * 60 - 10, 38); + // if (this.wall_Info.length == 1) color.x += 5; + // } + // else if (this.direction == "down") { + // color.setPosition((this.wall_Info.length - 1) * 60 - 10, -38); + // if (this.wall_Info.length == 1) color.x += 5; + // } + // if (this.direction == "right") { + // color.setPosition(30, (this.wall_Info.length - 1) * 60); + // } + } + } //播放星星门通过 @@ -344,7 +371,7 @@ export default class Wall extends cc.Component { //改变开关门状态 changeLock() { this.open = !this.open; - console.log("开关门状态改变", this.open); + // console.log("开关门状态改变", this.open); if (!this.openNode.active) { this.openNode.active = true; } @@ -396,7 +423,7 @@ export default class Wall extends cc.Component { changeFreeze() { this.freezeNumber -= 1; if (this.freezeNumber == 0) { - console.log(this.node.uuid); + // console.log(this.node.uuid); // this.freezeNode.parent.active = false; this.resetFreeze(); } @@ -423,6 +450,19 @@ export default class Wall extends cc.Component { this.node.parent.getChildByName("star").y -= 10; } this.node.parent.getChildByName("down").active = true; + if (this.colorArray.length > 0) { + let direction = this.node.parent.name; + let double = 0; + if (direction == "left" || direction == "right") { + double = 3; + } + let color = this.colorArray[1]; + if (this.wall_SpriteFrames) { + let name = color + "down" + (this.wall_Info.length + double); + var spriteFrame = this.down_SpriteFrames._spriteFrames[name]; + this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + } + } } upDoor() { @@ -430,6 +470,20 @@ export default class Wall extends cc.Component { this.node.parent.getChildByName("star").y += 10; } this.node.parent.getChildByName("down").active = false; + if (this.colorArray.length > 0) { + let direction = this.node.parent.name; + let double = 0; + if (direction == "left" || direction == "right") { + double = 3; + } + let color = this.colorArray[1]; + if (this.wall_SpriteFrames) { + let name = color + "color" + (this.wall_Info.length + double); + var spriteFrame = this.wall_SpriteFrames._spriteFrames[name]; + this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + } + } + this.node.opacity = 250; } @@ -461,14 +515,150 @@ export default class Wall extends cc.Component { } } - //变色门变色 + //变色门变色总方法 changeColorWall() { + // console.log("通过此门,调用次门数组", this.colorArray); // console.log("改變顏色:", this.wall_Info.length); - // for (let i = 0; i < this.teamDoors.length; i++) { - // setTimeout(() => { - // this.teamDoors[i].changeColor(); - // }, i * 200); - // } + for (let i = 0; i < this.teamDoors.length; i++) { + setTimeout(() => { + this.teamDoors[i].changeColor(); + }, i * 10); + } + } + + //变色门变色具体执行方法 + changeColor() { + if (this.colorArray.length > 1) { + let firstItem = this.colorArray.shift(); // 移除第一项 + this.colorArray.push(firstItem); // 将第一项添加到数组末尾 + } + this.color = this.colorArray[0]; + // console.log("改變顏色", this.color, this.colorArray); + // debugger; + let direction = this.node.parent.name; + let double = 0; + if (direction == "left" || direction == "right") { + double = 3; + } + + + if (this.wall_Info.length > 0) { + this.upDoor(); + this.setMask(); + + if (this.wall_SpriteFrames) { + let name = this.color + "color" + (this.wall_Info.length + double); + // console.log("变色名称:", name); + var spriteFrame = this.wall_SpriteFrames._spriteFrames[name]; + 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; + this.node.getComponent(cc.Sprite).fillRange = 0; + cc.tween(this.node.getComponent(cc.Sprite)) + .to(0.2, { fillRange: 1 }) + .start(); + + } + if (this.down_SpriteFrames) { + let name2 = this.color + "down" + (this.wall_Info.length + double); + // console.log("按下名称:", name2); + var downFrame = this.down_SpriteFrames._spriteFrames[name2]; + this.node.parent.getChildByName("down").getComponent(cc.Sprite).spriteFrame = downFrame; + this.node.parent.getChildByName("down").getComponent(cc.Sprite).fillRange = 0; + cc.tween(this.node.parent.getChildByName("down").getComponent(cc.Sprite)) + .to(0.2, { fillRange: 1 }) + .start(); + } + } + } + + //添加遮罩 + setMask() { + let direction = this.node.parent.name; + let double = 0; + if (direction == "left" || direction == "right") { + double = 3; + } + let color = this.colorArray[1]; + if (this.wall_SpriteFrames) { + let name = color + "color" + (this.wall_Info.length + double); + var spriteFrame = this.wall_SpriteFrames._spriteFrames[name]; + this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).spriteFrame = spriteFrame; + this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite).fillRange = 0; + cc.tween(this.maskNode.getChildByName("color_icon").getComponent(cc.Sprite)) + .to(0.2, { fillRange: 1 }) + .start(); + } + // 设置遮罩节点大小和位置 + if (this.node.parent.name == "down") { + if (this.wall_Info.length == 3) { + this.maskNode.width = 290; + this.maskNode.height = 69; + this.maskNode.position = cc.v3(116, -39, 0); // 居中 + } + else if (this.wall_Info.length == 2) { + this.maskNode.width = 178; + this.maskNode.height = 69; + this.maskNode.position = cc.v3(54, -39, 0); // 居中 + } + else if (this.wall_Info.length == 1) { + this.maskNode.width = 70; + this.maskNode.height = 69; + this.maskNode.position = cc.v3(-7, -39, 0); // 居中 + } + } + else if (this.node.parent.name == "up") { + if (this.wall_Info.length == 3) { + this.maskNode.width = 290; + this.maskNode.height = 69; + this.maskNode.position = cc.v3(116, 34, 0); // 居中 + } + else if (this.wall_Info.length == 2) { + this.maskNode.width = 178; + this.maskNode.height = 69; + this.maskNode.position = cc.v3(56, 34, 0); // 居中 + } + else if (this.wall_Info.length == 1) { + this.maskNode.width = 70; + this.maskNode.height = 69; + this.maskNode.position = cc.v3(-2.44, 34, 0); // 居中 + } + } + else if (this.node.parent.name == "right") { + if (this.wall_Info.length == 3) { + this.maskNode.width = 69; + this.maskNode.height = 290; + this.maskNode.position = cc.v3(37, 120, 0); // 居中 + } + else if (this.wall_Info.length == 2) { + this.maskNode.width = 69; + this.maskNode.height = 178; + this.maskNode.position = cc.v3(37, 60, 0); // 居中 + } + else if (this.wall_Info.length == 1) { + this.maskNode.width = 69; + this.maskNode.height = 70; + this.maskNode.position = cc.v3(37, 0, 0); // 居中 + this.maskNode.anchorY = 0.35; + } + } + else if (this.node.parent.name == "left") { + if (this.wall_Info.length == 3) { + this.maskNode.width = 69; + this.maskNode.height = 290; + this.maskNode.position = cc.v3(-39.5, 120, 0); // 居中 + } + else if (this.wall_Info.length == 2) { + this.maskNode.width = 69; + this.maskNode.height = 178; + this.maskNode.position = cc.v3(-39.5, 60, 0); // 居中 + } + else if (this.wall_Info.length == 1) { + this.maskNode.width = 69; + this.maskNode.height = 70; + this.maskNode.position = cc.v3(-39.5, 0, 0); // 居中 + this.maskNode.anchorY = 0.35; + } + } } // update (dt) {} diff --git a/assets/Script/module/Config/GameConfig.ts b/assets/Script/module/Config/GameConfig.ts index 2ca60ab..57f71c2 100644 --- a/assets/Script/module/Config/GameConfig.ts +++ b/assets/Script/module/Config/GameConfig.ts @@ -150,7 +150,7 @@ export class GameConfig { this.TA = null; this.CLICK_init(); this.GM_INFO_init(); - this.LEVEL_INFO_init(false, 0); + this.LEVEL_INFO_init(false, 0, false); var self = this; //GAME_DATA 废弃了,暂时不删除以防后面修改回 一整局传一次 @@ -316,7 +316,7 @@ export class GameConfig { } - static LEVEL_INFO_init(type, time) { + static LEVEL_INFO_init(type, time, otherLevel) { // 示例 围墙会根据缺的地块自动生成 // 带缺口 {"id":"1006","map":[10,11],"gap":[cc.v2(4,9),cc.v2(5,9)]}, // 带升降地块 {"id":"1004","map":[7,8],"risefall":[{pos:cc.v2(5,4),color:2},{pos:cc.v2(5,5),color:5}]}, @@ -324,7 +324,7 @@ export class GameConfig { var self = this; - if (cc.fx.GameTool.maxLevel()) { + if (cc.fx.GameTool.maxLevel() && otherLevel == false) { MiniGameSdk.API.showToast("关卡每周更新,敬请期待!"); return; } @@ -343,7 +343,7 @@ export class GameConfig { if (err) { console.log("没有这个关卡:", name); cc.fx.GameTool.addLevel(null, null); - self.LEVEL_INFO_init(type, time); + self.LEVEL_INFO_init(type, time, false); return; } let jsonData: object = res.json!; @@ -364,34 +364,6 @@ export class GameConfig { }); }); - // //console.log("关卡名称:",name); - // name = "Json/level" + 68; - // cc.fx.StorageMessage.setStorage("level",cc.fx.GameConfig.GM_INFO.level.toString()); - // cc.resources.load(name, (err: any, res: cc.JsonAsset) => { - // if (err) { - // console.log("没有这个关卡:", name) - // cc.fx.GameTool.addLevel(null, null); - // self.LEVEL_INFO_init(type, time); - // return; - // } - // let jsonData: object = res.json!; - // self.BLOCK_INFO = jsonData["BLOCK_INFO"]; - // self.LEVEL_INFO = jsonData["LEVEL_INFO"]; - // self.WALL_INFO = jsonData["WALL_INFO"]; - // // //console.log("配置加载完成"); - // if (type) { - // cc.director.preloadScene("GameScene", () => { - // if (time == 0) cc.director.loadScene("GameScene"); - // else { - // setTimeout(() => { - // cc.director.loadScene("GameScene"); - // }, time); - // } - // }) - // } - - // }) - //道具位置信息 this.PROP_INFO = [ diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts index 75eb175..681d306 100644 --- a/assets/Script/module/Tool/GameTool.ts +++ b/assets/Script/module/Tool/GameTool.ts @@ -398,8 +398,8 @@ var GameTool = { //关卡上限 maxLevel() { let jg = false; - if (cc.fx.GameConfig.GM_INFO.level > 489) { - cc.fx.GameConfig.GM_INFO.level = 490; + if (cc.fx.GameConfig.GM_INFO.level > 519) { + cc.fx.GameConfig.GM_INFO.level = 520; jg = true; } return jg; diff --git a/assets/custom/Json/level491.json b/assets/custom/Json/level491.json new file mode 100644 index 0000000..bb74367 --- /dev/null +++ b/assets/custom/Json/level491.json @@ -0,0 +1,441 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "491", + "map": [ + 8, + 10 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 10, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 210 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 220 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 230 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 250 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 10, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 10, + "type": 8, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 10, + "type": 8, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 7, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 21, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 4, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 420 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 492, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 493, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 494, + "num": 3, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 495, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 496, + "num": 5, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 497, + "num": 23, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 498, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 499, + "num": 25, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 500, + "num": 21, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 501, + "num": 22, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 502, + "num": 18, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 503, + "num": 8, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 504, + "num": 9, + "color": 6, + "special": 3, + "length": 2, + "freeze": 7 + }, + { + "id": 505, + "num": 11, + "color": 6, + "special": 3, + "length": 0, + "freeze": 7 + }, + { + "id": 506, + "num": 17, + "color": 8, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 507, + "num": 19, + "color": 8, + "special": 3, + "length": 0, + "freeze": 5 + }, + { + "id": 508, + "num": 16, + "color": 10, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 509, + "num": 10, + "color": 9, + "special": 3, + "length": 1, + "freeze": 12 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level492.json b/assets/custom/Json/level492.json new file mode 100644 index 0000000..cfd4d41 --- /dev/null +++ b/assets/custom/Json/level492.json @@ -0,0 +1,398 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "492", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "id": 210 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "freezeTime": 9, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "floor": 3, + "floorTime": 12, + "id": 240 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "floor": 3, + "floorTime": 12, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "floor": 3, + "floorTime": 12, + "id": 260 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 390 + }, + { + "block": 22, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 493, + "num": 0, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 494, + "num": 1, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 495, + "num": 2, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 496, + "num": 3, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 497, + "num": 4, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 498, + "num": 9, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 499, + "num": 15, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 500, + "num": 17, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 501, + "num": 23, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 502, + "num": 21, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 503, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 504, + "num": 19, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 505, + "num": 20, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 506, + "num": 14, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 507, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 8, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level493.json b/assets/custom/Json/level493.json new file mode 100644 index 0000000..ac56931 --- /dev/null +++ b/assets/custom/Json/level493.json @@ -0,0 +1,378 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "493", + "map": [ + 8, + 10 + ], + "time": 135, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 11, + "type": 4, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "freezeTime": 4, + "id": 210 + }, + { + "block": 1, + "color": 11, + "type": 4, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "freezeTime": 9, + "id": 220 + }, + { + "block": 2, + "color": 1, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "floor": 1, + "floorTime": 6, + "id": 230 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "floor": 2, + "floorTime": 10, + "id": 240 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 4, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 6, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 6, + "type": 2, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 5, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 5, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 5, + "color": 9, + "type": 3, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "lockTime": 6, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 494, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 495, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 496, + "num": 5, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 497, + "num": 6, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 498, + "num": 9, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 499, + "num": 11, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 500, + "num": 13, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 501, + "num": 15, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 502, + "num": 17, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 503, + "num": 19, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 504, + "num": 25, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 505, + "num": 26, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 506, + "num": 21, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 507, + "num": 22, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 16, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 509, + "num": 18, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 510, + "num": 14, + "color": 10, + "special": 1, + "length": 1 + }, + { + "id": 511, + "num": 12, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 512, + "num": 8, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 513, + "num": 10, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level494.json b/assets/custom/Json/level494.json new file mode 100644 index 0000000..28bedd6 --- /dev/null +++ b/assets/custom/Json/level494.json @@ -0,0 +1,518 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "494", + "map": [ + 10, + 11 + ], + "time": 120, + "gap": [ + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 5, + "z": 0 + }, + { + "x": 8, + "y": 9, + "z": 0 + }, + { + "x": 8, + "y": 8, + "z": 0 + }, + { + "x": 8, + "y": 7, + "z": 0 + }, + { + "x": 8, + "y": 6, + "z": 0 + }, + { + "x": 8, + "y": 5, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 10, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": 0, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 5, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 5, + "id": 230 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 120, + "y": 60, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 5, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 5, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -180, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": -540, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 300 + }, + { + "block": 6, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": -240, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 4, + "position": { + "x": 480, + "y": -300, + "z": 0 + }, + "freezeTime": 9, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 4, + "position": { + "x": -360, + "y": -300, + "z": 0 + }, + "freezeTime": 13, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "freezeTime": 18, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -540, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 240, + "y": -540, + "z": 0 + }, + "id": 410 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": -300, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 440 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 495, + "num": 0, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 496, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 497, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 498, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 499, + "num": 7, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 500, + "num": 8, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 501, + "num": 16, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 502, + "num": 18, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 503, + "num": 30, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 31, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 28, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 506, + "num": 29, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 507, + "num": 32, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 33, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 17, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 13, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 15, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level495.json b/assets/custom/Json/level495.json new file mode 100644 index 0000000..128d7a5 --- /dev/null +++ b/assets/custom/Json/level495.json @@ -0,0 +1,371 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "495", + "map": [ + 7, + 11 + ], + "time": 125, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "freezeTime": 8, + "id": 210 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "floor": 1, + "floorTime": 10, + "id": 220 + }, + { + "block": 2, + "color": 1, + "type": 4, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "freezeTime": 6, + "floor": 1, + "floorTime": 10, + "id": 230 + }, + { + "block": 2, + "color": 3, + "type": 4, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "freezeTime": 10, + "floor": 1, + "floorTime": 10, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 300, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 1, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "stacking": 1, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "stacking": 5, + "id": 370 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "stacking": 6, + "id": 380 + }, + { + "block": 1, + "color": 7, + "type": 1, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "stacking": 9, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 496, + "num": 2, + "color": 7, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 497, + "num": 3, + "color": 7, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 498, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 499, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 500, + "num": 6, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 501, + "num": 7, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 502, + "num": 12, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 503, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 504, + "num": 16, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 25, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 506, + "num": 26, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 507, + "num": 23, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 24, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 21, + "color": 6, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 510, + "num": 22, + "color": 6, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 511, + "num": 17, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 512, + "num": 9, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level496.json b/assets/custom/Json/level496.json new file mode 100644 index 0000000..50dcf12 --- /dev/null +++ b/assets/custom/Json/level496.json @@ -0,0 +1,343 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "496", + "map": [ + 9, + 8 + ], + "time": 105, + "gap": [ + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 7, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 9, + "type": 6, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "boomTime": 22, + "id": 290 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "stacking": 4, + "id": 300 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "stacking": 4, + "id": 310 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "stacking": 10, + "floor": 1, + "floorTime": 5, + "id": 320 + }, + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "freezeTime": 7, + "floor": 1, + "floorTime": 5, + "id": 330 + }, + { + "block": 0, + "color": 10, + "type": 4, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "freezeTime": 10, + "floor": 1, + "floorTime": 5, + "id": 340 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 497, + "num": 0, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 498, + "num": 1, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 499, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 500, + "num": 7, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 501, + "num": 11, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 502, + "num": 13, + "color": 6, + "special": 0, + "length": 1 + }, + { + "id": 503, + "num": 17, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 19, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 24, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 506, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 507, + "num": 23, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 508, + "num": 12, + "color": 10, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level497.json b/assets/custom/Json/level497.json new file mode 100644 index 0000000..63bf741 --- /dev/null +++ b/assets/custom/Json/level497.json @@ -0,0 +1,344 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "497", + "map": [ + 7, + 11 + ], + "time": 80, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + }, + { + "x": 5, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 5, + "type": 4, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "freezeTime": 3, + "id": 210 + }, + { + "block": 1, + "color": 10, + "type": 4, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "freezeTime": 7, + "id": 220 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "id": 230 + }, + { + "block": 0, + "color": 2, + "type": 8, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "floor": 1, + "floorTime": 7, + "id": 240 + }, + { + "block": 0, + "color": 4, + "type": 8, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "floor": 2, + "floorTime": 13, + "id": 250 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "floor": 2, + "floorTime": 13, + "id": 260 + }, + { + "block": 19, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -180, + "y": -540, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 14, + "color": 6, + "type": 6, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "boomTime": 15, + "id": 360 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 5, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 5, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 498, + "num": 2, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 499, + "num": 3, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 500, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 501, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 502, + "num": 12, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 503, + "num": 16, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 504, + "num": 25, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 505, + "num": 26, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 506, + "num": 22, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 507, + "num": 23, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 17, + "color": 9, + "special": 1, + "length": 1 + }, + { + "id": 509, + "num": 8, + "color": 5, + "special": 1, + "length": 1 + }, + { + "id": 510, + "num": 13, + "color": 3, + "special": 1, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level498.json b/assets/custom/Json/level498.json new file mode 100644 index 0000000..218b285 --- /dev/null +++ b/assets/custom/Json/level498.json @@ -0,0 +1,407 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "498", + "map": [ + 8, + 8 + ], + "time": 80, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 230 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "floor": 1, + "floorTime": 14, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "floor": 2, + "floorTime": 17, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "floor": 2, + "floorTime": 17, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 350 + }, + { + "block": 5, + "color": 9, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 5, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 499, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 500, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 501, + "num": 2, + "color": 6, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 502, + "num": 3, + "color": 6, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 503, + "num": 4, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 5, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 11, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 506, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 507, + "num": 22, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 23, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 20, + "color": 8, + "special": 3, + "length": 2, + "freeze": 12 + }, + { + "id": 510, + "num": 21, + "color": 8, + "special": 3, + "length": 0, + "freeze": 12 + }, + { + "id": 511, + "num": 18, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 19, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 14, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 16, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 10, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 516, + "num": 12, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 6, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 518, + "num": 8, + "color": 2, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level499.json b/assets/custom/Json/level499.json new file mode 100644 index 0000000..1205d95 --- /dev/null +++ b/assets/custom/Json/level499.json @@ -0,0 +1,424 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "499", + "map": [ + 9, + 9 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 210 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 240 + }, + { + "block": 20, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 290 + }, + { + "block": 19, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 4, + "color": 10, + "type": 1, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "stacking": 6, + "id": 360 + }, + { + "block": 0, + "color": 10, + "type": 1, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "stacking": 5, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 1, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "stacking": 1, + "id": 380 + }, + { + "block": 0, + "color": 2, + "type": 1, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "stacking": 9, + "id": 390 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "stacking": 9, + "id": 400 + }, + { + "block": 0, + "color": 4, + "type": 1, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "stacking": 1, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 1, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "stacking": 5, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 500, + "num": 0, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 501, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 502, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 503, + "num": 3, + "color": 7, + "special": 4, + "length": 2 + }, + { + "id": 504, + "num": 4, + "color": 7, + "special": 4, + "length": 0 + }, + { + "id": 505, + "num": 12, + "color": 1, + "special": 0, + "length": 1 + }, + { + "id": 506, + "num": 14, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 507, + "num": 16, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 508, + "num": 26, + "color": 3, + "special": 4, + "length": 2 + }, + { + "id": 509, + "num": 27, + "color": 3, + "special": 4, + "length": 0 + }, + { + "id": 510, + "num": 23, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 511, + "num": 24, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 25, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 15, + "color": 8, + "special": 0, + "length": 1 + }, + { + "id": 514, + "num": 13, + "color": 9, + "special": 0, + "length": 1 + }, + { + "id": 515, + "num": 11, + "color": 4, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level500.json b/assets/custom/Json/level500.json new file mode 100644 index 0000000..92c236a --- /dev/null +++ b/assets/custom/Json/level500.json @@ -0,0 +1,375 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "500", + "map": [ + 7, + 11 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "floor": 1, + "floorTime": 15, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "floor": 1, + "floorTime": 15, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 4, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "freezeTime": 8, + "floor": 1, + "floorTime": 15, + "id": 230 + }, + { + "block": 2, + "color": 9, + "type": 4, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "freezeTime": 12, + "floor": 1, + "floorTime": 15, + "id": 240 + }, + { + "block": 22, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -540, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "stacking": 7, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 1, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "stacking": 7, + "id": 300 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": -60, + "y": 420, + "z": 0 + }, + "stacking": 8, + "id": 310 + }, + { + "block": 0, + "color": 5, + "type": 1, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "stacking": 1, + "id": 320 + }, + { + "block": 1, + "color": 9, + "type": 1, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "stacking": 1, + "id": 330 + }, + { + "block": 0, + "color": 6, + "type": 1, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "stacking": 1, + "id": 340 + }, + { + "block": 4, + "color": 10, + "type": 1, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "stacking": 5, + "id": 350 + }, + { + "block": 1, + "color": 10, + "type": 1, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "stacking": 9, + "id": 360 + }, + { + "block": 2, + "color": 3, + "type": 1, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "stacking": 9, + "id": 370 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "stacking": 10, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 501, + "num": 1, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 502, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 503, + "num": 4, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 5, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 12, + "color": 8, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 506, + "num": 14, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 507, + "num": 16, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 18, + "color": 6, + "special": 3, + "length": 1, + "freeze": 14 + }, + { + "id": 509, + "num": 24, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 19, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 512, + "num": 20, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 515, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 11, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 517, + "num": 13, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 8, + "color": 5, + "special": 3, + "length": 1, + "freeze": 5 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level501.json b/assets/custom/Json/level501.json new file mode 100644 index 0000000..8b9c8c9 --- /dev/null +++ b/assets/custom/Json/level501.json @@ -0,0 +1,537 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "501", + "map": [ + 10, + 13 + ], + "time": 155, + "gap": [ + { + "x": 1, + "y": 11, + "z": 0 + }, + { + "x": 1, + "y": 10, + "z": 0 + }, + { + "x": 2, + "y": 11, + "z": 0 + }, + { + "x": 2, + "y": 10, + "z": 0 + }, + { + "x": 7, + "y": 11, + "z": 0 + }, + { + "x": 7, + "y": 10, + "z": 0 + }, + { + "x": 8, + "y": 11, + "z": 0 + }, + { + "x": 8, + "y": 10, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 2, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 2, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -420, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 360, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 120, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -180, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": -660, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -660, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 420, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 120, + "y": 420, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 18, + "color": 3, + "type": 3, + "position": { + "x": -240, + "y": -60, + "z": 0 + }, + "lockTime": 6, + "id": 330 + }, + { + "block": 2, + "color": 3, + "type": 2, + "position": { + "x": -360, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 4, + "color": 1, + "type": 2, + "position": { + "x": 120, + "y": -180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 1, + "type": 2, + "position": { + "x": 240, + "y": 180, + "z": 0 + }, + "id": 360 + }, + { + "block": 4, + "color": 9, + "type": 2, + "position": { + "x": 0, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 6, + "type": 2, + "position": { + "x": 240, + "y": -60, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": 180, + "z": 0 + }, + "id": 390 + }, + { + "block": 1, + "color": 8, + "type": 13, + "position": { + "x": -120, + "y": 300, + "z": 0 + }, + "id": 400 + }, + { + "block": 1, + "color": 3, + "type": 13, + "position": { + "x": 360, + "y": 300, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 9, + "type": 13, + "position": { + "x": -120, + "y": -60, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 4, + "type": 13, + "position": { + "x": 360, + "y": -420, + "z": 0 + }, + "id": 430 + }, + { + "block": 1, + "color": 4, + "type": 13, + "position": { + "x": -120, + "y": -420, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 7, + "type": 13, + "position": { + "x": 480, + "y": -420, + "z": 0 + }, + "id": 450 + }, + { + "block": 18, + "color": 5, + "type": 12, + "position": { + "x": 360, + "y": -60, + "z": 0 + }, + "lockTime2": 6, + "id": 460 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 502, + "num": 0, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 503, + "num": 1, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 504, + "num": 2, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 3, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 506, + "num": 4, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 507, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 16, + "color": 7, + "special": 3, + "length": 1, + "freeze": 10 + }, + { + "id": 510, + "num": 22, + "color": 6, + "special": 3, + "length": 1, + "freeze": 15 + }, + { + "id": 511, + "num": 36, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 37, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 34, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 35, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 31, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 516, + "num": 32, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 33, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 19, + "color": 9, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 519, + "num": 21, + "color": 9, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 520, + "num": 15, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 521, + "num": 17, + "color": 1, + "special": 2, + "length": 0, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level502.json b/assets/custom/Json/level502.json new file mode 100644 index 0000000..458f0fd --- /dev/null +++ b/assets/custom/Json/level502.json @@ -0,0 +1,509 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "502", + "map": [ + 10, + 12 + ], + "time": 155, + "gap": [ + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 8, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -600, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -600, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 260 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": 360, + "z": 0 + }, + "id": 270 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -360, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 480, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -360, + "y": -240, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 9, + "type": 3, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "lockTime": 5, + "id": 370 + }, + { + "block": 1, + "color": 9, + "type": 2, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 2, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 400 + }, + { + "block": 19, + "color": 3, + "type": 2, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 20, + "color": 7, + "type": 2, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 1, + "color": 2, + "type": 12, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime2": 5, + "id": 430 + }, + { + "block": 2, + "color": 3, + "type": 13, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 440 + }, + { + "block": 4, + "color": 5, + "type": 13, + "position": { + "x": -360, + "y": 0, + "z": 0 + }, + "id": 450 + }, + { + "block": 2, + "color": 6, + "type": 13, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 460 + }, + { + "block": 4, + "color": 10, + "type": 13, + "position": { + "x": 480, + "y": 0, + "z": 0 + }, + "id": 470 + }, + { + "block": 1, + "color": 8, + "type": 13, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "id": 480 + }, + { + "block": 0, + "color": 3, + "type": 7, + "position": { + "x": -360, + "y": -360, + "z": 0 + }, + "id": 490 + }, + { + "block": 0, + "color": 9, + "type": 7, + "position": { + "x": 480, + "y": -240, + "z": 0 + }, + "id": 500 + }, + { + "block": 2, + "color": 1, + "type": 8, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 510 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 520 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 503, + "num": 1, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 504, + "num": 2, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 505, + "num": 5, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 506, + "num": 6, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 507, + "num": 8, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 508, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 509, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 510, + "num": 19, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 21, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 35, + "color": 8, + "special": 4, + "length": 1 + }, + { + "id": 513, + "num": 32, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 33, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 28, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 516, + "num": 29, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 20, + "color": 5, + "special": 0, + "length": 1 + }, + { + "id": 518, + "num": 14, + "color": 1, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level503.json b/assets/custom/Json/level503.json new file mode 100644 index 0000000..a000dac --- /dev/null +++ b/assets/custom/Json/level503.json @@ -0,0 +1,392 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "503", + "map": [ + 9, + 8 + ], + "time": 100, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 18, + "color": 5, + "type": 1, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "stacking": 3, + "floor": 1, + "floorTime": 15, + "id": 210 + }, + { + "block": 1, + "color": 5, + "type": 6, + "position": { + "x": 180, + "y": -360, + "z": 0 + }, + "boomTime": 20, + "id": 220 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 230 + }, + { + "block": 22, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": 120, + "z": 0 + }, + "id": 350 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 390 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": -300, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 400 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 504, + "num": 0, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 505, + "num": 1, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 506, + "num": 2, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 507, + "num": 3, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 4, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 9, + "color": 1, + "special": 5, + "length": 2 + }, + { + "id": 510, + "num": 11, + "color": 1, + "special": 5, + "length": 0 + }, + { + "id": 511, + "num": 13, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 512, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 513, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 514, + "num": 22, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 515, + "num": 23, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 24, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 20, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 518, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 519, + "num": 14, + "color": 2, + "special": 5, + "length": 2 + }, + { + "id": 520, + "num": 16, + "color": 2, + "special": 5, + "length": 0 + }, + { + "id": 521, + "num": 8, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 522, + "num": 10, + "color": 8, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level504.json b/assets/custom/Json/level504.json new file mode 100644 index 0000000..b0b1fb0 --- /dev/null +++ b/assets/custom/Json/level504.json @@ -0,0 +1,404 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "504", + "map": [ + 8, + 10 + ], + "time": 130, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 210 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 240, + "y": 360, + "z": 0 + }, + "id": 230 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 240, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -120, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 5, + "type": 8, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 8, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 4, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "floor": 2, + "floorTime": 10, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 8, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "floor": 3, + "floorTime": 13, + "id": 340 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "floor": 4, + "floorTime": 20, + "id": 350 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "floor": 4, + "floorTime": 20, + "id": 360 + }, + { + "block": 21, + "color": 4, + "type": 1, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "stacking": 1, + "id": 370 + }, + { + "block": 22, + "color": 10, + "type": 1, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "stacking": 3, + "id": 380 + }, + { + "block": 20, + "color": 5, + "type": 1, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "stacking": 3, + "id": 390 + }, + { + "block": 19, + "color": 8, + "type": 1, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "stacking": 5, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 505, + "num": 2, + "color": 2, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 506, + "num": 5, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 507, + "num": 6, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 7, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 9, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 13, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 15, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 17, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 19, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 25, + "color": 6, + "special": 0, + "length": 3 + }, + { + "id": 516, + "num": 26, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 27, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 22, + "color": 7, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 519, + "num": 16, + "color": 5, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 520, + "num": 18, + "color": 5, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 521, + "num": 12, + "color": 3, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 522, + "num": 14, + "color": 3, + "special": 2, + "length": 0, + "lock": false + }, + { + "id": 523, + "num": 8, + "color": 4, + "special": 2, + "length": 2, + "lock": false + }, + { + "id": 524, + "num": 10, + "color": 4, + "special": 2, + "length": 0, + "lock": false + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level505.json b/assets/custom/Json/level505.json new file mode 100644 index 0000000..2930e12 --- /dev/null +++ b/assets/custom/Json/level505.json @@ -0,0 +1,445 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "505", + "map": [ + 9, + 8 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 210 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 8, + "id": 290 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 8, + "id": 300 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 8, + "id": 310 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -180, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 8, + "id": 320 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": -120, + "z": 0 + }, + "floor": 2, + "floorTime": 11, + "id": 330 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "floor": 2, + "floorTime": 11, + "id": 340 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "floor": 2, + "floorTime": 11, + "id": 350 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "floor": 2, + "floorTime": 11, + "id": 360 + }, + { + "block": 4, + "color": 7, + "type": 1, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "stacking": 10, + "id": 370 + }, + { + "block": 4, + "color": 2, + "type": 1, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "stacking": 9, + "id": 380 + }, + { + "block": 1, + "color": 6, + "type": 1, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "stacking": 2, + "id": 390 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "stacking": 1, + "id": 400 + }, + { + "block": 1, + "color": 1, + "type": 1, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "stacking": 3, + "id": 410 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "stacking": 1, + "id": 420 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 430 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 506, + "num": 0, + "color": 10, + "special": 0, + "length": 3 + }, + { + "id": 507, + "num": 1, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 508, + "num": 2, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 3, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 510, + "num": 4, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 5, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 7, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 513, + "num": 9, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 514, + "num": 17, + "color": 1, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 515, + "num": 19, + "color": 1, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 516, + "num": 23, + "color": 7, + "special": 0, + "length": 3 + }, + { + "id": 517, + "num": 24, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 25, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 519, + "num": 20, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 520, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 521, + "num": 22, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 16, + "color": 4, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 523, + "num": 18, + "color": 4, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 524, + "num": 6, + "color": 6, + "special": 3, + "length": 2, + "freeze": 5 + }, + { + "id": 525, + "num": 8, + "color": 6, + "special": 3, + "length": 0, + "freeze": 5 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level506.json b/assets/custom/Json/level506.json new file mode 100644 index 0000000..fccb60f --- /dev/null +++ b/assets/custom/Json/level506.json @@ -0,0 +1,488 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "506", + "map": [ + 11, + 9 + ], + "time": 125, + "gap": [ + { + "x": 4, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 4, + "y": 6, + "z": 0 + }, + { + "x": 5, + "y": 6, + "z": 0 + }, + { + "x": 6, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 5, + "id": 210 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 5, + "id": 220 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "floor": 1, + "floorTime": 5, + "id": 230 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "floor": 1, + "floorTime": 5, + "id": 240 + }, + { + "block": 2, + "color": 4, + "type": 9, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 2, + "floorTime": 10, + "id": 250 + }, + { + "block": 2, + "color": 7, + "type": 9, + "position": { + "x": -420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 2, + "floorTime": 10, + "id": 260 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 3, + "floorTime": 13, + "id": 270 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 540, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 3, + "floorTime": 13, + "id": 280 + }, + { + "block": 3, + "color": 3, + "type": 4, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "freezeTime": 18, + "id": 290 + }, + { + "block": 3, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 310 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": 540, + "y": 180, + "z": 0 + }, + "id": 320 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 330 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": -300, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "id": 360 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 390 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 400 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 420 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 430 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 440 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 450 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 507, + "num": 1, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 508, + "num": 2, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 509, + "num": 4, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 5, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 10, + "color": 10, + "special": 4, + "length": 2 + }, + { + "id": 512, + "num": 12, + "color": 10, + "special": 4, + "length": 0 + }, + { + "id": 513, + "num": 18, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 514, + "num": 24, + "color": 9, + "special": 4, + "length": 2 + }, + { + "id": 515, + "num": 26, + "color": 9, + "special": 4, + "length": 0 + }, + { + "id": 516, + "num": 33, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 517, + "num": 34, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 30, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 519, + "num": 31, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 23, + "color": 2, + "special": 0, + "length": 3 + }, + { + "id": 521, + "num": 25, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 27, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 7, + "color": 3, + "special": 0, + "length": 3 + }, + { + "id": 524, + "num": 9, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 525, + "num": 11, + "color": 3, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level507.json b/assets/custom/Json/level507.json new file mode 100644 index 0000000..5cc59a9 --- /dev/null +++ b/assets/custom/Json/level507.json @@ -0,0 +1,478 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "507", + "map": [ + 9, + 10 + ], + "time": 125, + "gap": [ + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 8, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 210 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 220 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 2, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 250 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "floor": 1, + "floorTime": 11, + "id": 260 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 300, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": 360, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 20, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": 240, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": -300, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": 240, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 180, + "y": -480, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -480, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -480, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -60, + "y": -480, + "z": 0 + }, + "id": 410 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -240, + "z": 0 + }, + "id": 420 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 360, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": -240, + "z": 0 + }, + "id": 440 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 460 + }, + { + "block": 16, + "color": 5, + "type": 3, + "position": { + "x": 300, + "y": -240, + "z": 0 + }, + "lockTime": 6, + "id": 470 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 508, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 509, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 510, + "num": 5, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 6, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 9, + "color": 3, + "special": 3, + "length": 2, + "freeze": 6 + }, + { + "id": 513, + "num": 11, + "color": 3, + "special": 3, + "length": 0, + "freeze": 6 + }, + { + "id": 514, + "num": 15, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 515, + "num": 17, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 516, + "num": 26, + "color": 5, + "special": 0, + "length": 3 + }, + { + "id": 517, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 518, + "num": 28, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 519, + "num": 18, + "color": 1, + "special": 3, + "length": 2, + "freeze": 9 + }, + { + "id": 520, + "num": 22, + "color": 1, + "special": 3, + "length": 0, + "freeze": 9 + }, + { + "id": 521, + "num": 14, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 522, + "num": 16, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 10, + "color": 6, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 524, + "num": 12, + "color": 6, + "special": 3, + "length": 0, + "freeze": 15 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level508.json b/assets/custom/Json/level508.json new file mode 100644 index 0000000..3c4a952 --- /dev/null +++ b/assets/custom/Json/level508.json @@ -0,0 +1,348 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "508", + "map": [ + 6, + 10 + ], + "time": 90, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 10, + "type": 4, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "freezeTime": 3, + "id": 210 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "floor": 1, + "floorTime": 10, + "id": 220 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 10, + "id": 230 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "floor": 1, + "floorTime": 10, + "id": 240 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "floor": 1, + "floorTime": 10, + "id": 250 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 8, + "type": 1, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "stacking": 1, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 1, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "stacking": 9, + "id": 350 + }, + { + "block": 2, + "color": 6, + "type": 1, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "stacking": 9, + "id": 360 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "stacking": 7, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 509, + "num": 1, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 510, + "num": 2, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 511, + "num": 3, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 4, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 5, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 6, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 9, + "color": 10, + "special": 5, + "length": 2 + }, + { + "id": 516, + "num": 11, + "color": 10, + "special": 5, + "length": 0 + }, + { + "id": 517, + "num": 13, + "color": 6, + "special": 5, + "length": 2 + }, + { + "id": 518, + "num": 15, + "color": 6, + "special": 5, + "length": 0 + }, + { + "id": 519, + "num": 21, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 520, + "num": 22, + "color": 7, + "special": 0, + "length": 0 + }, + { + "id": 521, + "num": 19, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 522, + "num": 20, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 17, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 524, + "num": 18, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 525, + "num": 14, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 526, + "num": 8, + "color": 8, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level509.json b/assets/custom/Json/level509.json new file mode 100644 index 0000000..e7232cd --- /dev/null +++ b/assets/custom/Json/level509.json @@ -0,0 +1,522 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "509", + "map": [ + 11, + 9 + ], + "time": 110, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 9, + "y": 7, + "z": 0 + }, + { + "x": 9, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 9, + "y": 2, + "z": 0 + }, + { + "x": 9, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": -420, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 180, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 4, + "id": 250 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 4, + "id": 260 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "adhesiveTime": 2, + "floor": 1, + "floorTime": 4, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "adhesiveTime": 1, + "floor": 1, + "floorTime": 4, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "floor": 1, + "floorTime": 4, + "id": 290 + }, + { + "block": 3, + "color": 9, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 300 + }, + { + "block": 3, + "color": 1, + "type": 9, + "position": { + "x": 420, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 0, + "color": 1, + "type": 9, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -420, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 9, + "position": { + "x": -420, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 540, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 540, + "y": -180, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 3, + "color": 2, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 380 + }, + { + "block": 2, + "color": 3, + "type": 9, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 410 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 420 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 430 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 440 + }, + { + "block": 0, + "color": 3, + "type": 8, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 450 + }, + { + "block": 0, + "color": 5, + "type": 8, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 460 + }, + { + "block": 2, + "color": 6, + "type": 4, + "position": { + "x": -300, + "y": -180, + "z": 0 + }, + "freezeTime": 9, + "id": 470 + }, + { + "block": 2, + "color": 8, + "type": 4, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "freezeTime": 16, + "id": 480 + }, + { + "block": 3, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 480 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 490 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 510, + "num": 1, + "color": 8, + "special": 0, + "length": 2 + }, + { + "id": 511, + "num": 2, + "color": 8, + "special": 0, + "length": 0 + }, + { + "id": 512, + "num": 8, + "color": 4, + "special": 0, + "length": 1 + }, + { + "id": 513, + "num": 10, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 12, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 20, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 516, + "num": 22, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 28, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 518, + "num": 30, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 519, + "num": 31, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 520, + "num": 17, + "color": 9, + "special": 0, + "length": 3 + }, + { + "id": 521, + "num": 19, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 522, + "num": 21, + "color": 9, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 9, + "color": 1, + "special": 0, + "length": 3 + }, + { + "id": 524, + "num": 11, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 525, + "num": 13, + "color": 1, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level510.json b/assets/custom/Json/level510.json new file mode 100644 index 0000000..08b455c --- /dev/null +++ b/assets/custom/Json/level510.json @@ -0,0 +1,384 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "510", + "map": [ + 8, + 10 + ], + "time": 125, + "gap": [ + { + "x": 3, + "y": 8, + "z": 0 + }, + { + "x": 4, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 9, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 220 + }, + { + "block": 1, + "color": 11, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "floor": 1, + "floorTime": 12, + "id": 230 + }, + { + "block": 1, + "color": 2, + "type": 2, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "floor": 1, + "floorTime": 12, + "id": 240 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 2, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 9, + "type": 2, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": 360, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": 360, + "z": 0 + }, + "id": 340 + }, + { + "block": 1, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 350 + }, + { + "block": 2, + "color": 9, + "type": 1, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "stacking": 7, + "id": 360 + }, + { + "block": 2, + "color": 7, + "type": 1, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "stacking": 9, + "id": 370 + }, + { + "block": 2, + "color": 5, + "type": 1, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "stacking": 9, + "id": 380 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "stacking": 3, + "id": 390 + }, + { + "block": 2, + "color": 10, + "type": 1, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "stacking": 2, + "id": 400 + }, + { + "block": 2, + "color": 4, + "type": 1, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "stacking": 7, + "id": 410 + }, + { + "block": 1, + "color": 6, + "type": 3, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "lockTime": 5, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 511, + "num": 1, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 512, + "num": 2, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 513, + "num": 4, + "color": 4, + "special": 0, + "length": 2 + }, + { + "id": 514, + "num": 5, + "color": 4, + "special": 0, + "length": 0 + }, + { + "id": 515, + "num": 9, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 516, + "num": 11, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 517, + "num": 19, + "color": 6, + "special": 0, + "length": 2 + }, + { + "id": 518, + "num": 21, + "color": 6, + "special": 0, + "length": 0 + }, + { + "id": 519, + "num": 26, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 520, + "num": 27, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 521, + "num": 23, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 522, + "num": 24, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 523, + "num": 18, + "color": 7, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 10, + "color": 9, + "special": 0, + "length": 1 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level511.json b/assets/custom/Json/level511.json new file mode 100644 index 0000000..cd54948 --- /dev/null +++ b/assets/custom/Json/level511.json @@ -0,0 +1,307 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "511", + "map": [ + 9, + 9 + ], + "time": 65, + "gap": [ + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 2, + "z": 0 + }, + { + "x": 7, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "freezeTime": 6, + "id": 210 + }, + { + "block": 13, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -180, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 180, + "z": 0 + }, + "id": 230 + }, + { + "block": 9, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -180, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 7, + "type": 8, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 3, + "type": 9, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": -60, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 1, + "color": 5, + "type": 9, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "adhesiveTime": 2, + "id": 320 + }, + { + "block": 1, + "color": 8, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 1, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 9, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 350 + }, + { + "block": 2, + "color": 8, + "type": 9, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "adhesiveTime": 2, + "id": 360 + }, + { + "block": 0, + "color": 2, + "type": 9, + "position": { + "x": -180, + "y": 60, + "z": 0 + }, + "adhesiveTime": 1, + "id": 370 + }, + { + "block": 0, + "color": 11, + "type": 9, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 512, + "num": 12, + "color": 5, + "special": 0, + "length": 3, + "colorArray": "428176" + }, + { + "id": 513, + "num": 14, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "428176" + }, + { + "id": 514, + "num": 16, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "428176" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level512.json b/assets/custom/Json/level512.json new file mode 100644 index 0000000..1ea98b5 --- /dev/null +++ b/assets/custom/Json/level512.json @@ -0,0 +1,324 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "512", + "map": [ + 9, + 9 + ], + "time": 85, + "gap": [ + { + "x": 2, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 3, + "y": 7, + "z": 0 + }, + { + "x": 5, + "y": 7, + "z": 0 + }, + { + "x": 2, + "y": 1, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 14, + "color": 5, + "type": 4, + "position": { + "x": 60, + "y": -300, + "z": 0 + }, + "freezeTime": 8, + "floor": 1, + "floorTime": 6, + "id": 210 + }, + { + "block": 0, + "color": 3, + "type": 4, + "position": { + "x": 60, + "y": -420, + "z": 0 + }, + "freezeTime": 15, + "id": 220 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": 420, + "y": 60, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 240 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": -300, + "y": 60, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 60, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 280 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": -300, + "y": -420, + "z": 0 + }, + "id": 290 + }, + { + "block": 22, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": -420, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -300, + "z": 0 + }, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": 60, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -60, + "y": -60, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 8, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 4, + "type": 7, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 2, + "type": 7, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 513, + "num": 2, + "color": 4, + "special": 0, + "length": 3, + "colorArray": "36594" + }, + { + "id": 514, + "num": 3, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "36594" + }, + { + "id": 515, + "num": 4, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "36594" + }, + { + "id": 516, + "num": 31, + "color": 3, + "special": 0, + "length": 3, + "colorArray": "20817" + }, + { + "id": 517, + "num": 32, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "20817" + }, + { + "id": 518, + "num": 33, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "20817" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level513.json b/assets/custom/Json/level513.json new file mode 100644 index 0000000..1de138d --- /dev/null +++ b/assets/custom/Json/level513.json @@ -0,0 +1,305 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "513", + "map": [ + 9, + 9 + ], + "time": 90, + "gap": [ + { + "x": 3, + "y": 2, + "z": 0 + }, + { + "x": 3, + "y": 1, + "z": 0 + }, + { + "x": 4, + "y": 2, + "z": 0 + }, + { + "x": 4, + "y": 1, + "z": 0 + }, + { + "x": 5, + "y": 2, + "z": 0 + }, + { + "x": 5, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 7, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 180, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 3, + "color": 5, + "type": 0, + "position": { + "x": 180, + "y": -180, + "z": 0 + }, + "id": 230 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 14, + "color": 3, + "type": 0, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 250 + }, + { + "block": 14, + "color": 4, + "type": 0, + "position": { + "x": 300, + "y": -60, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -300, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": -180, + "y": -180, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -180, + "y": -420, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 300, + "y": -180, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 420, + "y": -60, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": -300, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 300, + "y": 180, + "z": 0 + }, + "adhesiveTime": 2, + "id": 370 + }, + { + "block": 1, + "color": 7, + "type": 9, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "adhesiveTime": 1, + "id": 380 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 514, + "num": 3, + "color": 9, + "special": 0, + "length": 2, + "colorArray": "84017" + }, + { + "id": 515, + "num": 4, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "84017" + }, + { + "id": 516, + "num": 30, + "color": 3, + "special": 0, + "length": 2, + "colorArray": "26593" + }, + { + "id": 517, + "num": 31, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "26593" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level514.json b/assets/custom/Json/level514.json new file mode 100644 index 0000000..a92d154 --- /dev/null +++ b/assets/custom/Json/level514.json @@ -0,0 +1,342 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "514", + "map": [ + 8, + 8 + ], + "time": 120, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": -240, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 22, + "color": 9, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -240, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 20, + "color": 8, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 5, + "type": 1, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "stacking": 8, + "id": 370 + }, + { + "block": 1, + "color": 4, + "type": 1, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "stacking": 10, + "id": 380 + }, + { + "block": 1, + "color": 3, + "type": 1, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "stacking": 9, + "id": 390 + }, + { + "block": 2, + "color": 2, + "type": 1, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "stacking": 9, + "id": 400 + }, + { + "block": 4, + "color": 1, + "type": 1, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "stacking": 6, + "id": 410 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 515, + "num": 11, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "31" + }, + { + "id": 516, + "num": 13, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "31" + }, + { + "id": 517, + "num": 20, + "color": 6, + "special": 0, + "length": 3, + "colorArray": "50" + }, + { + "id": 518, + "num": 21, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "50" + }, + { + "id": 519, + "num": 22, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "50" + }, + { + "id": 520, + "num": 10, + "color": 8, + "special": 0, + "length": 2, + "colorArray": "74" + }, + { + "id": 521, + "num": 12, + "color": 8, + "special": 0, + "length": 0, + "colorArray": "74" + }, + { + "id": 522, + "num": 0, + "color": 3, + "special": 0, + "length": 1 + }, + { + "id": 523, + "num": 2, + "color": 10, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 4, + "color": 9, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 5, + "color": 9, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level515.json b/assets/custom/Json/level515.json new file mode 100644 index 0000000..d8546bd --- /dev/null +++ b/assets/custom/Json/level515.json @@ -0,0 +1,247 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "515", + "map": [ + 9, + 8 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 6, + "z": 0 + }, + { + "x": 7, + "y": 6, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 1, + "type": 4, + "position": { + "x": -300, + "y": 120, + "z": 0 + }, + "freezeTime": 12, + "id": 210 + }, + { + "block": 0, + "color": 9, + "type": 4, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "freezeTime": 8, + "id": 220 + }, + { + "block": 1, + "color": 9, + "type": 6, + "position": { + "x": -60, + "y": 0, + "z": 0 + }, + "boomTime": 25, + "id": 230 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 60, + "y": 0, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 2, + "color": 5, + "type": 0, + "position": { + "x": 300, + "y": 120, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 4, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 6, + "type": 0, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 1, + "color": 10, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 60, + "y": -120, + "z": 0 + }, + "id": 310 + }, + { + "block": 13, + "color": 2, + "type": 0, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 320 + }, + { + "block": 9, + "color": 7, + "type": 0, + "position": { + "x": 420, + "y": -120, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 300, + "y": 0, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 240, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 0, + "position": { + "x": -180, + "y": 120, + "z": 0 + }, + "id": 370 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 516, + "num": 10, + "color": 9, + "special": 0, + "length": 3, + "colorArray": "8402176593" + }, + { + "id": 517, + "num": 12, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "8402176593" + }, + { + "id": 518, + "num": 14, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "8402176593" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level516.json b/assets/custom/Json/level516.json new file mode 100644 index 0000000..e769839 --- /dev/null +++ b/assets/custom/Json/level516.json @@ -0,0 +1,364 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "516", + "map": [ + 8, + 10 + ], + "time": 100, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 1, + "color": 3, + "type": 4, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "freezeTime": 10, + "id": 210 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -240, + "z": 0 + }, + "id": 220 + }, + { + "block": 2, + "color": 4, + "type": 0, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 23, + "color": 4, + "type": 0, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 4, + "color": 1, + "type": 0, + "position": { + "x": 360, + "y": 120, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "id": 300 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 310 + }, + { + "block": 4, + "color": 6, + "type": 0, + "position": { + "x": -120, + "y": -480, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 7, + "type": 0, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 330 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 340 + }, + { + "block": 22, + "color": 8, + "type": 0, + "position": { + "x": 240, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 360 + }, + { + "block": 1, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 380 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 0, + "y": 360, + "z": 0 + }, + "id": 390 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "id": 400 + }, + { + "block": 0, + "color": 8, + "type": 8, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 410 + }, + { + "block": 17, + "color": 7, + "type": 7, + "position": { + "x": 240, + "y": -120, + "z": 0 + }, + "id": 420 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 517, + "num": 0, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "38" + }, + { + "id": 518, + "num": 1, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "38" + }, + { + "id": 519, + "num": 11, + "color": 3, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 520, + "num": 13, + "color": 3, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 521, + "num": 17, + "color": 8, + "special": 2, + "length": 2, + "lock": true + }, + { + "id": 522, + "num": 19, + "color": 8, + "special": 2, + "length": 0, + "lock": true + }, + { + "id": 523, + "num": 23, + "color": 2, + "special": 0, + "length": 1 + }, + { + "id": 524, + "num": 12, + "color": 5, + "special": 0, + "length": 2 + }, + { + "id": 525, + "num": 14, + "color": 5, + "special": 0, + "length": 0 + }, + { + "id": 526, + "num": 3, + "color": 6, + "special": 0, + "length": 3, + "colorArray": "506" + }, + { + "id": 527, + "num": 4, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "506" + }, + { + "id": 528, + "num": 5, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "506" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level517.json b/assets/custom/Json/level517.json new file mode 100644 index 0000000..7462aae --- /dev/null +++ b/assets/custom/Json/level517.json @@ -0,0 +1,326 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "517", + "map": [ + 9, + 8 + ], + "time": 180, + "gap": [] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 0, + "color": 6, + "type": 4, + "position": { + "x": 60, + "y": -360, + "z": 0 + }, + "freezeTime": 10, + "id": 210 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -300, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": -300, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 420, + "y": -360, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 11, + "type": 0, + "position": { + "x": 420, + "y": 240, + "z": 0 + }, + "id": 250 + }, + { + "block": 5, + "color": 4, + "type": 0, + "position": { + "x": 420, + "y": -240, + "z": 0 + }, + "id": 260 + }, + { + "block": 5, + "color": 9, + "type": 0, + "position": { + "x": -180, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 1, + "color": 7, + "type": 0, + "position": { + "x": -60, + "y": -360, + "z": 0 + }, + "id": 280 + }, + { + "block": 1, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": -360, + "z": 0 + }, + "id": 290 + }, + { + "block": 2, + "color": 10, + "type": 0, + "position": { + "x": 60, + "y": -240, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": -300, + "y": 0, + "z": 0 + }, + "id": 320 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 420, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 1, + "color": 6, + "type": 7, + "position": { + "x": 300, + "y": 240, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 8, + "type": 7, + "position": { + "x": -60, + "y": -120, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 9, + "type": 8, + "position": { + "x": 180, + "y": -120, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 3, + "type": 8, + "position": { + "x": 60, + "y": 120, + "z": 0 + }, + "id": 370 + }, + { + "block": 3, + "color": 7, + "type": 1, + "position": { + "x": 180, + "y": 0, + "z": 0 + }, + "stacking": 6, + "id": 380 + }, + { + "block": 3, + "color": 10, + "type": 1, + "position": { + "x": 420, + "y": 120, + "z": 0 + }, + "stacking": 6, + "id": 390 + }, + { + "block": 3, + "color": 3, + "type": 1, + "position": { + "x": -60, + "y": 120, + "z": 0 + }, + "stacking": 7, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 518, + "num": 2, + "color": 2, + "special": 0, + "length": 1, + "colorArray": "14" + }, + { + "id": 519, + "num": 11, + "color": 9, + "special": 0, + "length": 3, + "colorArray": "83" + }, + { + "id": 520, + "num": 13, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "83" + }, + { + "id": 521, + "num": 15, + "color": 9, + "special": 0, + "length": 0, + "colorArray": "83" + }, + { + "id": 522, + "num": 22, + "color": 8, + "special": 0, + "length": 1, + "colorArray": "70" + }, + { + "id": 523, + "num": 10, + "color": 3, + "special": 0, + "length": 3, + "colorArray": "29" + }, + { + "id": 524, + "num": 12, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "29" + }, + { + "id": 525, + "num": 14, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "29" + }, + { + "id": 526, + "num": 5, + "color": 6, + "special": 2, + "length": 1, + "lock": true + }, + { + "id": 527, + "num": 25, + "color": 7, + "special": 2, + "length": 1, + "lock": true + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level518.json b/assets/custom/Json/level518.json new file mode 100644 index 0000000..c1196dd --- /dev/null +++ b/assets/custom/Json/level518.json @@ -0,0 +1,333 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "518", + "map": [ + 7, + 11 + ], + "time": 105, + "gap": [ + { + "x": 2, + "y": 9, + "z": 0 + }, + { + "x": 3, + "y": 9, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 60, + "y": 300, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 7, + "type": 0, + "position": { + "x": 180, + "y": 300, + "z": 0 + }, + "id": 220 + }, + { + "block": 5, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": -540, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": -60, + "y": 180, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 7, + "type": 0, + "position": { + "x": -180, + "y": 180, + "z": 0 + }, + "id": 250 + }, + { + "block": 1, + "color": 5, + "type": 0, + "position": { + "x": 60, + "y": -180, + "z": 0 + }, + "id": 260 + }, + { + "block": 1, + "color": 3, + "type": 0, + "position": { + "x": 180, + "y": -300, + "z": 0 + }, + "id": 270 + }, + { + "block": 2, + "color": 2, + "type": 0, + "position": { + "x": 300, + "y": 300, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 8, + "type": 0, + "position": { + "x": 180, + "y": 420, + "z": 0 + }, + "id": 290 + }, + { + "block": 3, + "color": 9, + "type": 9, + "position": { + "x": 300, + "y": -420, + "z": 0 + }, + "adhesiveTime": 2, + "id": 300 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 300, + "y": -540, + "z": 0 + }, + "adhesiveTime": 1, + "id": 310 + }, + { + "block": 0, + "color": 10, + "type": 2, + "position": { + "x": -180, + "y": 420, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 10, + "type": 2, + "position": { + "x": 300, + "y": 60, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 6, + "type": 2, + "position": { + "x": -180, + "y": -60, + "z": 0 + }, + "id": 340 + }, + { + "block": 2, + "color": 7, + "type": 2, + "position": { + "x": -180, + "y": -300, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 5, + "type": 2, + "position": { + "x": 180, + "y": -60, + "z": 0 + }, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 2, + "position": { + "x": 300, + "y": -300, + "z": 0 + }, + "id": 370 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 180, + "y": -540, + "z": 0 + }, + "id": 380 + }, + { + "block": 18, + "color": 6, + "type": 3, + "position": { + "x": 60, + "y": -60, + "z": 0 + }, + "lockTime": 7, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 519, + "num": 11, + "color": 5, + "special": 0, + "length": 3, + "colorArray": "4588" + }, + { + "id": 520, + "num": 14, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "4588" + }, + { + "id": 521, + "num": 17, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "4588" + }, + { + "id": 522, + "num": 10, + "color": 8, + "special": 0, + "length": 1, + "colorArray": "79" + }, + { + "id": 523, + "num": 1, + "color": 2, + "special": 0, + "length": 2 + }, + { + "id": 524, + "num": 2, + "color": 2, + "special": 0, + "length": 0 + }, + { + "id": 525, + "num": 4, + "color": 3, + "special": 0, + "length": 2 + }, + { + "id": 526, + "num": 5, + "color": 3, + "special": 0, + "length": 0 + }, + { + "id": 527, + "num": 25, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 22, + "color": 7, + "special": 0, + "length": 2 + }, + { + "id": 530, + "num": 23, + "color": 7, + "special": 0, + "length": 0 + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level519.json b/assets/custom/Json/level519.json new file mode 100644 index 0000000..3f7b613 --- /dev/null +++ b/assets/custom/Json/level519.json @@ -0,0 +1,397 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "519", + "map": [ + 8, + 10 + ], + "time": 90, + "gap": [ + { + "x": 2, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 5, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 1, + "y": 7, + "z": 0 + }, + { + "x": 6, + "y": 7, + "z": 0 + }, + { + "x": 1, + "y": 2, + "z": 0 + }, + { + "x": 1, + "y": 3, + "z": 0 + }, + { + "x": 6, + "y": 2, + "z": 0 + }, + { + "x": 6, + "y": 3, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 23, + "color": 1, + "type": 0, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 220 + }, + { + "block": 0, + "color": 10, + "type": 0, + "position": { + "x": -120, + "y": 240, + "z": 0 + }, + "id": 230 + }, + { + "block": 0, + "color": 1, + "type": 0, + "position": { + "x": 240, + "y": 240, + "z": 0 + }, + "id": 240 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": -120, + "y": 0, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 2, + "type": 0, + "position": { + "x": 240, + "y": 0, + "z": 0 + }, + "id": 260 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -240, + "y": -480, + "z": 0 + }, + "id": 270 + }, + { + "block": 6, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 6, + "type": 0, + "position": { + "x": 360, + "y": -480, + "z": 0 + }, + "id": 290 + }, + { + "block": 10, + "color": 5, + "type": 0, + "position": { + "x": -240, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 1, + "color": 1, + "type": 9, + "position": { + "x": 120, + "y": 360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 310 + }, + { + "block": 1, + "color": 9, + "type": 9, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 320 + }, + { + "block": 0, + "color": 10, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 330 + }, + { + "block": 0, + "color": 8, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 340 + }, + { + "block": 0, + "color": 4, + "type": 9, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "adhesiveTime": 2, + "id": 350 + }, + { + "block": 0, + "color": 3, + "type": 9, + "position": { + "x": 0, + "y": -240, + "z": 0 + }, + "adhesiveTime": 1, + "id": 360 + }, + { + "block": 2, + "color": 8, + "type": 8, + "position": { + "x": 0, + "y": -120, + "z": 0 + }, + "id": 370 + }, + { + "block": 2, + "color": 4, + "type": 8, + "position": { + "x": 120, + "y": -120, + "z": 0 + }, + "id": 380 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": -360, + "z": 0 + }, + "adhesiveTime": 2, + "id": 390 + }, + { + "block": 0, + "color": 6, + "type": 9, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "adhesiveTime": 1, + "id": 400 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 520, + "num": 1, + "color": 3, + "special": 0, + "length": 3, + "colorArray": "28" + }, + { + "id": 521, + "num": 2, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "28" + }, + { + "id": 522, + "num": 3, + "color": 3, + "special": 0, + "length": 0, + "colorArray": "28" + }, + { + "id": 523, + "num": 15, + "color": 4, + "special": 0, + "length": 2, + "colorArray": "37" + }, + { + "id": 524, + "num": 17, + "color": 4, + "special": 0, + "length": 0, + "colorArray": "37" + }, + { + "id": 525, + "num": 29, + "color": 6, + "special": 0, + "length": 3, + "colorArray": "54" + }, + { + "id": 526, + "num": 30, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "54" + }, + { + "id": 527, + "num": 31, + "color": 6, + "special": 0, + "length": 0, + "colorArray": "54" + }, + { + "id": 528, + "num": 18, + "color": 1, + "special": 0, + "length": 2, + "colorArray": "06" + }, + { + "id": 529, + "num": 21, + "color": 1, + "special": 0, + "length": 0, + "colorArray": "06" + }, + { + "id": 530, + "num": 4, + "color": 10, + "special": 0, + "length": 2, + "colorArray": "91" + }, + { + "id": 531, + "num": 11, + "color": 10, + "special": 0, + "length": 0, + "colorArray": "91" + } + ] + ] +} \ No newline at end of file diff --git a/assets/custom/Json/level520.json b/assets/custom/Json/level520.json new file mode 100644 index 0000000..f0bdf76 --- /dev/null +++ b/assets/custom/Json/level520.json @@ -0,0 +1,347 @@ +{ + "LEVEL_INFO": [ + { + "risefall": [], + "id": "520", + "map": [ + 8, + 10 + ], + "time": 105, + "gap": [ + { + "x": 1, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 8, + "z": 0 + }, + { + "x": 6, + "y": 1, + "z": 0 + }, + { + "x": 1, + "y": 1, + "z": 0 + } + ] + } + ], + "BLOCK_INFO": [ + [ + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 360, + "y": -360, + "z": 0 + }, + "id": 210 + }, + { + "block": 3, + "color": 7, + "type": 0, + "position": { + "x": 0, + "y": 0, + "z": 0 + }, + "id": 220 + }, + { + "block": 22, + "color": 4, + "type": 0, + "position": { + "x": -120, + "y": 120, + "z": 0 + }, + "id": 230 + }, + { + "block": 21, + "color": 10, + "type": 0, + "position": { + "x": 240, + "y": 120, + "z": 0 + }, + "id": 240 + }, + { + "block": 2, + "color": 9, + "type": 0, + "position": { + "x": 240, + "y": -240, + "z": 0 + }, + "id": 250 + }, + { + "block": 0, + "color": 9, + "type": 0, + "position": { + "x": 0, + "y": -360, + "z": 0 + }, + "id": 260 + }, + { + "block": 2, + "color": 1, + "type": 0, + "position": { + "x": -240, + "y": -240, + "z": 0 + }, + "id": 270 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": -120, + "y": -120, + "z": 0 + }, + "id": 280 + }, + { + "block": 0, + "color": 5, + "type": 0, + "position": { + "x": 120, + "y": 0, + "z": 0 + }, + "id": 290 + }, + { + "block": 0, + "color": 3, + "type": 0, + "position": { + "x": 360, + "y": -120, + "z": 0 + }, + "id": 300 + }, + { + "block": 2, + "color": 2, + "type": 2, + "position": { + "x": 0, + "y": 240, + "z": 0 + }, + "id": 310 + }, + { + "block": 2, + "color": 4, + "type": 2, + "position": { + "x": 120, + "y": 240, + "z": 0 + }, + "id": 320 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": 360, + "y": 0, + "z": 0 + }, + "id": 330 + }, + { + "block": 2, + "color": 5, + "type": 2, + "position": { + "x": -120, + "y": -360, + "z": 0 + }, + "id": 340 + }, + { + "block": 0, + "color": 3, + "type": 2, + "position": { + "x": 0, + "y": -480, + "z": 0 + }, + "id": 350 + }, + { + "block": 0, + "color": 7, + "type": 2, + "position": { + "x": 120, + "y": -480, + "z": 0 + }, + "id": 360 + }, + { + "block": 5, + "color": 5, + "type": 3, + "position": { + "x": 120, + "y": -240, + "z": 0 + }, + "lockTime": 6, + "id": 370 + }, + { + "block": 0, + "color": 7, + "type": 9, + "position": { + "x": 120, + "y": 120, + "z": 0 + }, + "adhesiveTime": 2, + "id": 380 + }, + { + "block": 0, + "color": 9, + "type": 9, + "position": { + "x": 0, + "y": 120, + "z": 0 + }, + "adhesiveTime": 1, + "id": 390 + } + ] + ], + "WALL_INFO": [ + [ + { + "id": 521, + "num": 11, + "color": 5, + "special": 0, + "length": 3, + "colorArray": "46" + }, + { + "id": 522, + "num": 13, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "46" + }, + { + "id": 523, + "num": 15, + "color": 5, + "special": 0, + "length": 0, + "colorArray": "46" + }, + { + "id": 524, + "num": 17, + "color": 3, + "special": 0, + "length": 1, + "colorArray": "28" + }, + { + "id": 525, + "num": 0, + "color": 2, + "special": 3, + "length": 2, + "freeze": 10 + }, + { + "id": 526, + "num": 1, + "color": 2, + "special": 3, + "length": 0, + "freeze": 10 + }, + { + "id": 527, + "num": 3, + "color": 10, + "special": 0, + "length": 2 + }, + { + "id": 528, + "num": 4, + "color": 10, + "special": 0, + "length": 0 + }, + { + "id": 529, + "num": 25, + "color": 1, + "special": 0, + "length": 2 + }, + { + "id": 530, + "num": 26, + "color": 1, + "special": 0, + "length": 0 + }, + { + "id": 531, + "num": 22, + "color": 4, + "special": 3, + "length": 2, + "freeze": 15 + }, + { + "id": 532, + "num": 23, + "color": 4, + "special": 3, + "length": 0, + "freeze": 15 + } + ] + ] +} \ No newline at end of file diff --git a/assets/resources/prefab/wall/down.prefab b/assets/resources/prefab/wall/down.prefab index 09b5738..709ab5d 100644 --- a/assets/resources/prefab/wall/down.prefab +++ b/assets/resources/prefab/wall/down.prefab @@ -24,25 +24,25 @@ "__id__": 5 }, { - "__id__": 14 + "__id__": 20 }, { - "__id__": 17 + "__id__": 11 }, { - "__id__": 40 + "__id__": 23 }, { - "__id__": 110 + "__id__": 46 }, { - "__id__": 130 + "__id__": 116 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 133 + "__id__": 136 }, "_opacity": 255, "_color": { @@ -219,14 +219,14 @@ "__id__": 10 }, { - "__id__": 11 + "__id__": 17 }, { - "__id__": 12 + "__id__": 18 } ], "_prefab": { - "__id__": 13 + "__id__": 19 }, "_opacity": 255, "_color": { @@ -401,7 +401,7 @@ "_spriteFrame": { "__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef" }, - "_type": 0, + "_type": 3, "_sizeMode": 1, "_fillType": 0, "_fillCenter": { @@ -410,7 +410,7 @@ "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" @@ -429,6 +429,11 @@ "type": 4, "special": 0, "color": 0, + "maskNode": { + "__id__": 11 + }, + "maskWidth": 138, + "maskHeight": 69, "wall_SpriteFrames": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" }, @@ -440,6 +445,210 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "color", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 12 + } + ], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -7, + -39, + 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": "color_icon", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 138, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eduKBh0uZGgJkOZhIjisAG", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0.1, + "_N$inverted": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3ueguGYpBLq7lArOyb4rZ", + "sync": false + }, { "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", "_name": "", @@ -527,11 +736,11 @@ "_active": false, "_components": [ { - "__id__": 15 + "__id__": 21 } ], "_prefab": { - "__id__": 16 + "__id__": 22 }, "_opacity": 255, "_color": { @@ -585,7 +794,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 14 + "__id__": 20 }, "_enabled": true, "_materials": [ @@ -596,7 +805,7 @@ "_srcBlendFactor": 770, "_dstBlendFactor": 771, "_spriteFrame": null, - "_type": 0, + "_type": 3, "_sizeMode": 1, "_fillType": 0, "_fillCenter": { @@ -605,7 +814,7 @@ "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": null, "_id": "" @@ -629,23 +838,23 @@ "__id__": 1 }, "_children": [ - { - "__id__": 18 - }, { "__id__": 24 }, { - "__id__": 29 + "__id__": 30 }, { - "__id__": 34 + "__id__": 35 + }, + { + "__id__": 40 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 39 + "__id__": 45 }, "_opacity": 255, "_color": { @@ -699,21 +908,21 @@ "_name": "freeze0", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 19 + "__id__": 25 } ], "_active": false, "_components": [ { - "__id__": 22 + "__id__": 28 } ], "_prefab": { - "__id__": 23 + "__id__": 29 }, "_opacity": 255, "_color": { @@ -767,17 +976,17 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 18 + "__id__": 24 }, "_children": [], "_active": true, "_components": [ { - "__id__": 20 + "__id__": 26 } ], "_prefab": { - "__id__": 21 + "__id__": 27 }, "_opacity": 0, "_color": { @@ -831,7 +1040,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 19 + "__id__": 25 }, "_enabled": true, "_materials": [ @@ -875,7 +1084,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 18 + "__id__": 24 }, "_enabled": false, "_materials": [ @@ -918,21 +1127,21 @@ "_name": "freeze1", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 25 + "__id__": 31 } ], "_active": false, "_components": [ { - "__id__": 27 + "__id__": 33 } ], "_prefab": { - "__id__": 28 + "__id__": 34 }, "_opacity": 255, "_color": { @@ -986,13 +1195,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 24 + "__id__": 30 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 26 + "__id__": 32 }, "_opacity": 255, "_color": { @@ -1057,7 +1266,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 30 }, "_enabled": true, "_materials": [ @@ -1102,21 +1311,21 @@ "_name": "freeze2", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 30 + "__id__": 36 } ], "_active": false, "_components": [ { - "__id__": 32 + "__id__": 38 } ], "_prefab": { - "__id__": 33 + "__id__": 39 }, "_opacity": 255, "_color": { @@ -1170,13 +1379,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 29 + "__id__": 35 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 31 + "__id__": 37 }, "_opacity": 255, "_color": { @@ -1241,7 +1450,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 29 + "__id__": 35 }, "_enabled": true, "_materials": [ @@ -1286,21 +1495,21 @@ "_name": "freeze3", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 35 + "__id__": 41 } ], "_active": false, "_components": [ { - "__id__": 37 + "__id__": 43 } ], "_prefab": { - "__id__": 38 + "__id__": 44 }, "_opacity": 255, "_color": { @@ -1354,13 +1563,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 34 + "__id__": 40 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 36 + "__id__": 42 }, "_opacity": 255, "_color": { @@ -1425,7 +1634,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "_materials": [ @@ -1485,22 +1694,22 @@ }, "_children": [ { - "__id__": 41 + "__id__": 47 }, { - "__id__": 49 + "__id__": 55 }, { - "__id__": 69 + "__id__": 75 }, { - "__id__": 89 + "__id__": 95 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 109 + "__id__": 115 }, "_opacity": 255, "_color": { @@ -1554,20 +1763,20 @@ "_name": "open0", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ { - "__id__": 42 + "__id__": 48 }, { - "__id__": 45 + "__id__": 51 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 48 + "__id__": 54 }, "_opacity": 255, "_color": { @@ -1621,17 +1830,17 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 43 + "__id__": 49 } ], "_prefab": { - "__id__": 44 + "__id__": 50 }, "_opacity": 255, "_color": { @@ -1685,7 +1894,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 42 + "__id__": 48 }, "_enabled": true, "_materials": [ @@ -1726,17 +1935,17 @@ "_name": "node2", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 46 + "__id__": 52 } ], "_prefab": { - "__id__": 47 + "__id__": 53 }, "_opacity": 255, "_color": { @@ -1790,7 +1999,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 45 + "__id__": 51 }, "_enabled": true, "_materials": [ @@ -1842,12 +2051,9 @@ "_name": "open1", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ - { - "__id__": 50 - }, { "__id__": 56 }, @@ -1855,13 +2061,16 @@ "__id__": 62 }, { - "__id__": 65 + "__id__": 68 + }, + { + "__id__": 71 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 68 + "__id__": 74 }, "_opacity": 255, "_color": { @@ -1915,21 +2124,21 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 49 + "__id__": 55 }, "_children": [ { - "__id__": 51 + "__id__": 57 } ], "_active": true, "_components": [ { - "__id__": 54 + "__id__": 60 } ], "_prefab": { - "__id__": 55 + "__id__": 61 }, "_opacity": 255, "_color": { @@ -1982,228 +2191,6 @@ "__type__": "cc.Node", "_name": "left", "_objFlags": 0, - "_parent": { - "__id__": 50 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 53 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 55.963, - 0.386, - 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__": 51 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c5y6NqzlhNO4jqOH70U+21", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 50 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3a5EHsoZxLXoDwGaRqxbVy", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "node2", - "_objFlags": 0, - "_parent": { - "__id__": 49 - }, - "_children": [ - { - "__id__": 57 - } - ], - "_active": true, - "_components": [ - { - "__id__": 60 - } - ], - "_prefab": { - "__id__": 61 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 58, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 111.356, - -26, - 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": "right", - "_objFlags": 0, "_parent": { "__id__": 56 }, @@ -2239,16 +2226,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 55.221, + 55.963, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -2306,7 +2293,7 @@ "asset": { "__id__": 0 }, - "fileId": "d9nsagqv1JTLgIcnZS0tEP", + "fileId": "c5y6NqzlhNO4jqOH70U+21", "sync": false }, { @@ -2343,6 +2330,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3a5EHsoZxLXoDwGaRqxbVy", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 63 + } + ], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 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": "right", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 65 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 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__": 63 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d9nsagqv1JTLgIcnZS0tEP", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2359,17 +2568,17 @@ "_name": "left", "_objFlags": 0, "_parent": { - "__id__": 49 + "__id__": 55 }, "_children": [], "_active": true, "_components": [ { - "__id__": 63 + "__id__": 69 } ], "_prefab": { - "__id__": 64 + "__id__": 70 }, "_opacity": 255, "_color": { @@ -2423,7 +2632,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 62 + "__id__": 68 }, "_enabled": true, "_materials": [ @@ -2468,268 +2677,7 @@ "_name": "right", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 66 - } - ], - "_prefab": { - "__id__": 67 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 109.525, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 65 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6b2TSH9fVKNLU2ZLaMYEjp", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ffYCOLO8xNGaG4fQHKkFFM", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open2", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 70 - }, - { - "__id__": 76 - }, - { - "__id__": 82 - }, - { - "__id__": 85 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 88 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_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, - 2 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 69 - }, - "_children": [ - { - "__id__": 71 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - } - ], - "_prefab": { - "__id__": 75 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 116, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -3.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 70 + "__id__": 55 }, "_children": [], "_active": true, @@ -2763,8 +2711,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 116.02, - 0.386, + 109.525, + -25.614, 0, 0, 0, @@ -2830,43 +2778,9 @@ "asset": { "__id__": 0 }, - "fileId": "98fOInrwhKg4Qsy9qs8emI", + "fileId": "6b2TSH9fVKNLU2ZLaMYEjp", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 70 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -2875,15 +2789,88 @@ "asset": { "__id__": 0 }, - "fileId": "4aHygCcRRD078ar7f7ByWM", + "fileId": "ffYCOLO8xNGaG4fQHKkFFM", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open2", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 46 + }, + "_children": [ + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 88 + }, + { + "__id__": 91 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_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, + 2 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 75 }, "_children": [ { @@ -2909,7 +2896,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 115, + "width": 116, "height": 34 }, "_anchorPoint": { @@ -2921,14 +2908,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 231.959, + -3.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2985,16 +2972,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 115.015, + 116.02, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -3052,7 +3039,7 @@ "asset": { "__id__": 0 }, - "fileId": "dfvCBKVxBNqpzW8EID1Kcf", + "fileId": "98fOInrwhKg4Qsy9qs8emI", "sync": false }, { @@ -3089,6 +3076,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4aHygCcRRD078ar7f7ByWM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [ + { + "__id__": 83 + } + ], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 82 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 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__": 83 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dfvCBKVxBNqpzW8EID1Kcf", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3105,17 +3314,17 @@ "_name": "left", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 83 + "__id__": 89 } ], "_prefab": { - "__id__": 84 + "__id__": 90 }, "_opacity": 255, "_color": { @@ -3169,7 +3378,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 82 + "__id__": 88 }, "_enabled": true, "_materials": [ @@ -3214,268 +3423,7 @@ "_name": "right", "_objFlags": 0, "_parent": { - "__id__": 69 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 86 - } - ], - "_prefab": { - "__id__": 87 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 229.661, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 85 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4fMiev42VLfY3wNmyYyhXG", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7j/SuFv9FBIonCAR5B+OK", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open3", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 90 - }, - { - "__id__": 96 - }, - { - "__id__": 102 - }, - { - "__id__": 105 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 108 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 3 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 89 - }, - "_children": [ - { - "__id__": 91 - } - ], - "_active": true, - "_components": [ - { - "__id__": 94 - } - ], - "_prefab": { - "__id__": 95 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 175, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -2.604, - -28.534, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 90 + "__id__": 75 }, "_children": [], "_active": true, @@ -3509,8 +3457,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.775, - 2.92, + 229.661, + -25.614, 0, 0, 0, @@ -3518,7 +3466,7 @@ 1, 1, 1, - 0.33333 + 1 ] }, "_eulerAngles": { @@ -3576,43 +3524,9 @@ "asset": { "__id__": 0 }, - "fileId": "c7p+48P9FLlYogIS6zf9c0", + "fileId": "4fMiev42VLfY3wNmyYyhXG", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 90 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -3621,15 +3535,88 @@ "asset": { "__id__": 0 }, - "fileId": "db0t3Q9e9OCpfpuO+yjCwv", + "fileId": "b7j/SuFv9FBIonCAR5B+OK", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open3", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 46 + }, + "_children": [ + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 108 + }, + { + "__id__": 111 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 95 }, "_children": [ { @@ -3667,14 +3654,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 351.76, + -2.604, -28.534, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -3731,7 +3718,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.849, + 174.775, 2.92, 0, 0, @@ -3740,7 +3727,7 @@ 1, 1, 1, - -0.33333 + 0.33333 ] }, "_eulerAngles": { @@ -3798,7 +3785,7 @@ "asset": { "__id__": 0 }, - "fileId": "5aHJ05BFVAx59AWoG4ziSJ", + "fileId": "c7p+48P9FLlYogIS6zf9c0", "sync": false }, { @@ -3835,6 +3822,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "db0t3Q9e9OCpfpuO+yjCwv", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 103 + } + ], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 102 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 104 + } + ], + "_prefab": { + "__id__": 105 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_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__": 103 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5aHJ05BFVAx59AWoG4ziSJ", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3851,17 +4060,17 @@ "_name": "left", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 103 + "__id__": 109 } ], "_prefab": { - "__id__": 104 + "__id__": 110 }, "_opacity": 255, "_color": { @@ -3915,7 +4124,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 102 + "__id__": 108 }, "_enabled": true, "_materials": [ @@ -3960,17 +4169,17 @@ "_name": "right", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 112 } ], "_prefab": { - "__id__": 107 + "__id__": 113 }, "_opacity": 255, "_color": { @@ -4024,7 +4233,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 105 + "__id__": 111 }, "_enabled": true, "_materials": [ @@ -4094,20 +4303,20 @@ "__id__": 1 }, "_children": [ - { - "__id__": 111 - }, { "__id__": 117 }, { "__id__": 123 + }, + { + "__id__": 129 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 129 + "__id__": 135 }, "_opacity": 255, "_color": { @@ -4161,230 +4370,8 @@ "_name": "rotate1", "_objFlags": 0, "_parent": { - "__id__": 110 - }, - "_children": [ - { - "__id__": 112 - } - ], - "_active": false, - "_components": [ - { - "__id__": 115 - } - ], - "_prefab": { "__id__": 116 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 79, - "height": 53 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - -33, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "arror", - "_objFlags": 0, - "_parent": { - "__id__": 111 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 114 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 36, - "height": 24 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - -1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 112 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "03mmvuDs9PC4KisIzK826i", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 111 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" - }, - "_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": "98t3OaM71DaqDgvC5lhJT1", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "rotate2", - "_objFlags": 0, - "_parent": { - "__id__": 110 - }, "_children": [ { "__id__": 118 @@ -4409,7 +4396,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 120, + "width": 79, "height": 53 }, "_anchorPoint": { @@ -4421,7 +4408,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 60, + 0, -33, 0, 0, @@ -4552,7 +4539,7 @@ "asset": { "__id__": 0 }, - "fileId": "5997+gtnlICqHOwo//gnAy", + "fileId": "03mmvuDs9PC4KisIzK826i", "sync": false }, { @@ -4573,8 +4560,8 @@ "_spriteFrame": { "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" }, - "_type": 1, - "_sizeMode": 0, + "_type": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -4597,15 +4584,15 @@ "asset": { "__id__": 0 }, - "fileId": "dc7epEnGBAL4dGent5gsTh", + "fileId": "98t3OaM71DaqDgvC5lhJT1", "sync": false }, { "__type__": "cc.Node", - "_name": "rotate3", + "_name": "rotate2", "_objFlags": 0, "_parent": { - "__id__": 110 + "__id__": 116 }, "_children": [ { @@ -4631,7 +4618,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 200, + "width": 120, "height": 53 }, "_anchorPoint": { @@ -4643,7 +4630,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 120, + 60, -33, 0, 0, @@ -4769,12 +4756,12 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 }, "asset": { - "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + "__id__": 0 }, - "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "fileId": "5997+gtnlICqHOwo//gnAy", "sync": false }, { @@ -4811,17 +4798,6 @@ }, "_id": "" }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 123 - }, - "asset": { - "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" - }, - "fileId": "c15c2KtUxM0J/jE0A6fNlq", - "sync": false - }, { "__type__": "cc.PrefabInfo", "root": { @@ -4830,18 +4806,86 @@ "asset": { "__id__": 0 }, - "fileId": "0dE0P0/9FCQ6EtKeyVhCMh", + "fileId": "dc7epEnGBAL4dGent5gsTh", "sync": false }, { "__type__": "cc.Node", - "_name": "color", + "_name": "rotate3", "_objFlags": 0, "_parent": { - "__id__": 1 + "__id__": 116 + }, + "_children": [ + { + "__id__": 130 + } + ], + "_active": false, + "_components": [ + { + "__id__": 133 + } + ], + "_prefab": { + "__id__": 134 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 120, + -33, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 129 }, "_children": [], - "_active": false, + "_active": true, "_components": [ { "__id__": 131 @@ -4860,26 +4904,26 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 138, - "height": 69 + "width": 36, + "height": 24 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0, - "y": 0 + "x": 0.5, + "y": 0.5 }, "_trs": { "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - -71.171, - -73.484, + 0, + 0, 0, 0, 0, 0, 1, - 1, + -1, 1, 1 ] @@ -4913,7 +4957,7 @@ "_srcBlendFactor": 770, "_dstBlendFactor": 771, "_spriteFrame": { - "__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef" + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" }, "_type": 0, "_sizeMode": 1, @@ -4931,6 +4975,62 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 129 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "c15c2KtUxM0J/jE0A6fNlq", + "sync": false + }, { "__type__": "cc.PrefabInfo", "root": { @@ -4939,7 +5039,7 @@ "asset": { "__id__": 0 }, - "fileId": "67AGFXEr9F74ofAyRN592E", + "fileId": "0dE0P0/9FCQ6EtKeyVhCMh", "sync": false }, { diff --git a/assets/resources/prefab/wall/left.prefab b/assets/resources/prefab/wall/left.prefab index 7d4da01..4609227 100644 --- a/assets/resources/prefab/wall/left.prefab +++ b/assets/resources/prefab/wall/left.prefab @@ -24,22 +24,25 @@ "__id__": 5 }, { - "__id__": 14 + "__id__": 20 }, { - "__id__": 17 + "__id__": 11 }, { - "__id__": 40 + "__id__": 23 }, { - "__id__": 110 + "__id__": 46 + }, + { + "__id__": 116 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 130 + "__id__": 136 }, "_opacity": 255, "_color": { @@ -216,14 +219,14 @@ "__id__": 10 }, { - "__id__": 11 + "__id__": 17 }, { - "__id__": 12 + "__id__": 18 } ], "_prefab": { - "__id__": 13 + "__id__": 19 }, "_opacity": 255, "_color": { @@ -398,16 +401,16 @@ "_spriteFrame": { "__uuid__": "4f65ed94-5d59-48ce-b94f-e199044365cf" }, - "_type": 0, + "_type": 3, "_sizeMode": 1, - "_fillType": 0, + "_fillType": 1, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" @@ -426,6 +429,11 @@ "type": 4, "special": 0, "color": 0, + "maskNode": { + "__id__": 11 + }, + "maskWidth": 138, + "maskHeight": 69, "wall_SpriteFrames": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" }, @@ -437,6 +445,210 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "color", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 12 + } + ], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 69, + "height": 290 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.45 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -39.5, + 120, + 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": "color_icon", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61, + "height": 386 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 1, + "_fillType": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fd946gwwFHLZ2ixjdlgtcV", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0.1, + "_N$inverted": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f2/ZNuOxpOZrtsGN3HaxoR", + "sync": false + }, { "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", "_name": "", @@ -524,11 +736,11 @@ "_active": false, "_components": [ { - "__id__": 15 + "__id__": 21 } ], "_prefab": { - "__id__": 16 + "__id__": 22 }, "_opacity": 255, "_color": { @@ -552,7 +764,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - -60.192, + -65.343, -61.903, 0, 0, @@ -582,7 +794,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 14 + "__id__": 20 }, "_enabled": true, "_materials": [ @@ -593,16 +805,16 @@ "_srcBlendFactor": 770, "_dstBlendFactor": 771, "_spriteFrame": null, - "_type": 0, + "_type": 3, "_sizeMode": 1, - "_fillType": 0, + "_fillType": 1, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": null, "_id": "" @@ -626,23 +838,23 @@ "__id__": 1 }, "_children": [ - { - "__id__": 18 - }, { "__id__": 24 }, { - "__id__": 29 + "__id__": 30 }, { - "__id__": 34 + "__id__": 35 + }, + { + "__id__": 40 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 39 + "__id__": 45 }, "_opacity": 255, "_color": { @@ -696,21 +908,21 @@ "_name": "freeze0", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 19 + "__id__": 25 } ], "_active": false, "_components": [ { - "__id__": 22 + "__id__": 28 } ], "_prefab": { - "__id__": 23 + "__id__": 29 }, "_opacity": 255, "_color": { @@ -764,17 +976,17 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 18 + "__id__": 24 }, "_children": [], "_active": true, "_components": [ { - "__id__": 20 + "__id__": 26 } ], "_prefab": { - "__id__": 21 + "__id__": 27 }, "_opacity": 0, "_color": { @@ -828,7 +1040,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 19 + "__id__": 25 }, "_enabled": true, "_materials": [ @@ -872,7 +1084,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 18 + "__id__": 24 }, "_enabled": false, "_materials": [ @@ -915,21 +1127,21 @@ "_name": "freeze1", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 25 + "__id__": 31 } ], "_active": false, "_components": [ { - "__id__": 27 + "__id__": 33 } ], "_prefab": { - "__id__": 28 + "__id__": 34 }, "_opacity": 255, "_color": { @@ -983,13 +1195,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 24 + "__id__": 30 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 26 + "__id__": 32 }, "_opacity": 255, "_color": { @@ -1054,7 +1266,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 30 }, "_enabled": true, "_materials": [ @@ -1099,21 +1311,21 @@ "_name": "freeze2", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 30 + "__id__": 36 } ], "_active": false, "_components": [ { - "__id__": 32 + "__id__": 38 } ], "_prefab": { - "__id__": 33 + "__id__": 39 }, "_opacity": 255, "_color": { @@ -1167,13 +1379,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 29 + "__id__": 35 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 31 + "__id__": 37 }, "_opacity": 255, "_color": { @@ -1238,7 +1450,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 29 + "__id__": 35 }, "_enabled": true, "_materials": [ @@ -1283,21 +1495,21 @@ "_name": "freeze3", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 35 + "__id__": 41 } ], "_active": false, "_components": [ { - "__id__": 37 + "__id__": 43 } ], "_prefab": { - "__id__": 38 + "__id__": 44 }, "_opacity": 255, "_color": { @@ -1351,13 +1563,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 34 + "__id__": 40 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 36 + "__id__": 42 }, "_opacity": 255, "_color": { @@ -1422,7 +1634,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "_materials": [ @@ -1482,22 +1694,22 @@ }, "_children": [ { - "__id__": 41 + "__id__": 47 }, { - "__id__": 49 + "__id__": 55 }, { - "__id__": 69 + "__id__": 75 }, { - "__id__": 89 + "__id__": 95 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 109 + "__id__": 115 }, "_opacity": 255, "_color": { @@ -1551,20 +1763,20 @@ "_name": "open0", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ { - "__id__": 42 + "__id__": 48 }, { - "__id__": 45 + "__id__": 51 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 48 + "__id__": 54 }, "_opacity": 255, "_color": { @@ -1618,17 +1830,17 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 43 + "__id__": 49 } ], "_prefab": { - "__id__": 44 + "__id__": 50 }, "_opacity": 255, "_color": { @@ -1682,7 +1894,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 42 + "__id__": 48 }, "_enabled": true, "_materials": [ @@ -1723,17 +1935,17 @@ "_name": "node2", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 46 + "__id__": 52 } ], "_prefab": { - "__id__": 47 + "__id__": 53 }, "_opacity": 255, "_color": { @@ -1787,7 +1999,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 45 + "__id__": 51 }, "_enabled": true, "_materials": [ @@ -1839,12 +2051,9 @@ "_name": "open1", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ - { - "__id__": 50 - }, { "__id__": 56 }, @@ -1852,13 +2061,16 @@ "__id__": 62 }, { - "__id__": 65 + "__id__": 68 + }, + { + "__id__": 71 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 68 + "__id__": 74 }, "_opacity": 255, "_color": { @@ -1912,230 +2124,8 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [ - { - "__id__": 51 - } - ], - "_active": true, - "_components": [ - { - "__id__": 54 - } - ], - "_prefab": { "__id__": 55 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 58, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -4.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 50 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 53 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 55.963, - 0.386, - 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__": 51 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6cEvqUkdxBXLNwneFKeV2y", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 50 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "93AcvXrdFCQY4p1gfUhLrl", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "node2", - "_objFlags": 0, - "_parent": { - "__id__": 49 - }, "_children": [ { "__id__": 57 @@ -2172,14 +2162,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 111.356, + -4.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2236,16 +2226,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 55.221, + 55.963, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -2303,7 +2293,7 @@ "asset": { "__id__": 0 }, - "fileId": "bcPigru1ZMHYfaQ0OM2Ad8", + "fileId": "6cEvqUkdxBXLNwneFKeV2y", "sync": false }, { @@ -2340,6 +2330,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "93AcvXrdFCQY4p1gfUhLrl", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 63 + } + ], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 65 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 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__": 63 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bcPigru1ZMHYfaQ0OM2Ad8", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2356,17 +2568,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 49 + "__id__": 55 }, "_children": [], "_active": true, "_components": [ { - "__id__": 63 + "__id__": 69 } ], "_prefab": { - "__id__": 64 + "__id__": 70 }, "_opacity": 255, "_color": { @@ -2420,7 +2632,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 62 + "__id__": 68 }, "_enabled": true, "_materials": [ @@ -2465,268 +2677,7 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 66 - } - ], - "_prefab": { - "__id__": 67 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 109.525, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 65 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a4wOuFtZ1EjqNPaEx8u68e", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b0RrijIlVGBII7OSSxl66n", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open2", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 70 - }, - { - "__id__": 76 - }, - { - "__id__": 82 - }, - { - "__id__": 85 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 88 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_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, - 2 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 69 - }, - "_children": [ - { - "__id__": 71 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - } - ], - "_prefab": { - "__id__": 75 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 116, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -3.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 70 + "__id__": 55 }, "_children": [], "_active": true, @@ -2760,8 +2711,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 116.02, - 0.386, + 109.525, + -25.614, 0, 0, 0, @@ -2827,43 +2778,9 @@ "asset": { "__id__": 0 }, - "fileId": "32LAL3L7lAMIhFdiI+FvkC", + "fileId": "a4wOuFtZ1EjqNPaEx8u68e", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 70 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -2872,15 +2789,88 @@ "asset": { "__id__": 0 }, - "fileId": "0apDY4lwZAhIjSOeg7qDgu", + "fileId": "b0RrijIlVGBII7OSSxl66n", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open2", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 46 + }, + "_children": [ + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 88 + }, + { + "__id__": 91 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_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, + 2 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 75 }, "_children": [ { @@ -2906,7 +2896,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 115, + "width": 116, "height": 34 }, "_anchorPoint": { @@ -2918,14 +2908,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 231.959, + -3.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2982,16 +2972,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 115.015, + 116.02, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -3049,7 +3039,7 @@ "asset": { "__id__": 0 }, - "fileId": "e5rk7qgtpMWJkIlTVOsIPX", + "fileId": "32LAL3L7lAMIhFdiI+FvkC", "sync": false }, { @@ -3086,6 +3076,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0apDY4lwZAhIjSOeg7qDgu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [ + { + "__id__": 83 + } + ], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 82 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 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__": 83 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5rk7qgtpMWJkIlTVOsIPX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3102,17 +3314,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 83 + "__id__": 89 } ], "_prefab": { - "__id__": 84 + "__id__": 90 }, "_opacity": 255, "_color": { @@ -3166,7 +3378,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 82 + "__id__": 88 }, "_enabled": true, "_materials": [ @@ -3211,268 +3423,7 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 69 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 86 - } - ], - "_prefab": { - "__id__": 87 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 229.661, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 85 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "9djTsNaItHjqNYNGOws9JA", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d2P8O7x9hKd61MAuAfZYPs", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open3", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 90 - }, - { - "__id__": 96 - }, - { - "__id__": 102 - }, - { - "__id__": 105 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 108 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 3 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 89 - }, - "_children": [ - { - "__id__": 91 - } - ], - "_active": true, - "_components": [ - { - "__id__": 94 - } - ], - "_prefab": { - "__id__": 95 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 175, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -2.604, - -28.534, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 90 + "__id__": 75 }, "_children": [], "_active": true, @@ -3506,8 +3457,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.775, - 2.92, + 229.661, + -25.614, 0, 0, 0, @@ -3515,7 +3466,7 @@ 1, 1, 1, - 0.33333 + 1 ] }, "_eulerAngles": { @@ -3573,43 +3524,9 @@ "asset": { "__id__": 0 }, - "fileId": "7c80YmasVI06ZTwfK8dYf6", + "fileId": "9djTsNaItHjqNYNGOws9JA", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 90 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -3618,15 +3535,88 @@ "asset": { "__id__": 0 }, - "fileId": "c4Bi6GnrJJqKdYgcMFXoUs", + "fileId": "d2P8O7x9hKd61MAuAfZYPs", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open3", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 46 + }, + "_children": [ + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 108 + }, + { + "__id__": 111 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 95 }, "_children": [ { @@ -3664,14 +3654,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 351.76, + -2.604, -28.534, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -3728,7 +3718,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.849, + 174.775, 2.92, 0, 0, @@ -3737,7 +3727,7 @@ 1, 1, 1, - -0.33333 + 0.33333 ] }, "_eulerAngles": { @@ -3795,7 +3785,7 @@ "asset": { "__id__": 0 }, - "fileId": "19THQDDEFIsreRI+K5kMKX", + "fileId": "7c80YmasVI06ZTwfK8dYf6", "sync": false }, { @@ -3832,6 +3822,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4Bi6GnrJJqKdYgcMFXoUs", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 103 + } + ], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 102 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 104 + } + ], + "_prefab": { + "__id__": 105 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_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__": 103 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19THQDDEFIsreRI+K5kMKX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3848,17 +4060,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 103 + "__id__": 109 } ], "_prefab": { - "__id__": 104 + "__id__": 110 }, "_opacity": 255, "_color": { @@ -3912,7 +4124,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 102 + "__id__": 108 }, "_enabled": true, "_materials": [ @@ -3957,17 +4169,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 112 } ], "_prefab": { - "__id__": 107 + "__id__": 113 }, "_opacity": 255, "_color": { @@ -4021,7 +4233,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 105 + "__id__": 111 }, "_enabled": true, "_materials": [ @@ -4091,20 +4303,20 @@ "__id__": 1 }, "_children": [ - { - "__id__": 111 - }, { "__id__": 117 }, { "__id__": 123 + }, + { + "__id__": 129 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 129 + "__id__": 135 }, "_opacity": 255, "_color": { @@ -4158,230 +4370,8 @@ "_name": "rotate1", "_objFlags": 0, "_parent": { - "__id__": 110 - }, - "_children": [ - { - "__id__": 112 - } - ], - "_active": false, - "_components": [ - { - "__id__": 115 - } - ], - "_prefab": { "__id__": 116 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 79, - "height": 53 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -40, - 0, - 0, - 0, - 0, - -0.7071067811865475, - 0.7071067811865476, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": -90 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "arror", - "_objFlags": 0, - "_parent": { - "__id__": 111 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 114 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 36, - "height": 24 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - -1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 112 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "55U6ftuU9OfIcwRa060a+C", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 111 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" - }, - "_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": "0dy+YkDKFF75H9l1J+lmc6", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "rotate2", - "_objFlags": 0, - "_parent": { - "__id__": 110 - }, "_children": [ { "__id__": 118 @@ -4406,7 +4396,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 120, + "width": 79, "height": 53 }, "_anchorPoint": { @@ -4419,7 +4409,7 @@ "ctor": "Float64Array", "array": [ -40, - 60, + 0, 0, 0, 0, @@ -4549,7 +4539,7 @@ "asset": { "__id__": 0 }, - "fileId": "77fRuW2uxDkpGMBVsG9Hhj", + "fileId": "55U6ftuU9OfIcwRa060a+C", "sync": false }, { @@ -4570,8 +4560,8 @@ "_spriteFrame": { "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" }, - "_type": 1, - "_sizeMode": 0, + "_type": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -4594,15 +4584,15 @@ "asset": { "__id__": 0 }, - "fileId": "c7fHc0TOtBE5lMZ2dzAWdu", + "fileId": "0dy+YkDKFF75H9l1J+lmc6", "sync": false }, { "__type__": "cc.Node", - "_name": "rotate3", + "_name": "rotate2", "_objFlags": 0, "_parent": { - "__id__": 110 + "__id__": 116 }, "_children": [ { @@ -4628,7 +4618,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 200, + "width": 120, "height": 53 }, "_anchorPoint": { @@ -4641,7 +4631,7 @@ "ctor": "Float64Array", "array": [ -40, - 120, + 60, 0, 0, 0, @@ -4766,12 +4756,12 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 }, "asset": { - "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + "__id__": 0 }, - "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "fileId": "77fRuW2uxDkpGMBVsG9Hhj", "sync": false }, { @@ -4811,7 +4801,229 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7fHc0TOtBE5lMZ2dzAWdu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [ + { + "__id__": 130 + } + ], + "_active": false, + "_components": [ + { + "__id__": 133 + } + ], + "_prefab": { + "__id__": 134 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -40, + 120, + 0, + 0, + 0, + -0.7071067811865475, + 0.7071067811865476, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -90 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 129 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 131 + } + ], + "_prefab": { + "__id__": 132 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 130 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 129 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 }, "asset": { "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" diff --git a/assets/resources/prefab/wall/right.prefab b/assets/resources/prefab/wall/right.prefab index d281a3f..76259be 100644 --- a/assets/resources/prefab/wall/right.prefab +++ b/assets/resources/prefab/wall/right.prefab @@ -24,22 +24,25 @@ "__id__": 5 }, { - "__id__": 14 + "__id__": 20 }, { - "__id__": 17 + "__id__": 11 }, { - "__id__": 40 + "__id__": 23 }, { - "__id__": 110 + "__id__": 46 + }, + { + "__id__": 116 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 130 + "__id__": 136 }, "_opacity": 255, "_color": { @@ -216,14 +219,14 @@ "__id__": 10 }, { - "__id__": 11 + "__id__": 17 }, { - "__id__": 12 + "__id__": 18 } ], "_prefab": { - "__id__": 13 + "__id__": 19 }, "_opacity": 255, "_color": { @@ -398,16 +401,16 @@ "_spriteFrame": { "__uuid__": "4f65ed94-5d59-48ce-b94f-e199044365cf" }, - "_type": 0, + "_type": 3, "_sizeMode": 1, - "_fillType": 0, + "_fillType": 1, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" @@ -426,6 +429,11 @@ "type": 4, "special": 0, "color": 0, + "maskNode": { + "__id__": 11 + }, + "maskWidth": 138, + "maskHeight": 69, "wall_SpriteFrames": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" }, @@ -437,6 +445,210 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "color", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 12 + } + ], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.45 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 37, + 120, + 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": "color_icon", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 61, + "height": 386 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 1, + "_fillType": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "66Iu0RGttMJr/6MUatpN20", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0.1, + "_N$inverted": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "006DjJqeVFFadk0VuMub1u", + "sync": false + }, { "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", "_name": "", @@ -524,11 +736,11 @@ "_active": false, "_components": [ { - "__id__": 15 + "__id__": 21 } ], "_prefab": { - "__id__": 16 + "__id__": 22 }, "_opacity": 255, "_color": { @@ -552,7 +764,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 15.245, + 14.819, -61.903, 0, 0, @@ -582,7 +794,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 14 + "__id__": 20 }, "_enabled": true, "_materials": [ @@ -593,16 +805,16 @@ "_srcBlendFactor": 770, "_dstBlendFactor": 771, "_spriteFrame": null, - "_type": 0, + "_type": 3, "_sizeMode": 1, - "_fillType": 0, + "_fillType": 1, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": null, "_id": "" @@ -626,23 +838,23 @@ "__id__": 1 }, "_children": [ - { - "__id__": 18 - }, { "__id__": 24 }, { - "__id__": 29 + "__id__": 30 }, { - "__id__": 34 + "__id__": 35 + }, + { + "__id__": 40 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 39 + "__id__": 45 }, "_opacity": 255, "_color": { @@ -696,21 +908,21 @@ "_name": "freeze0", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 19 + "__id__": 25 } ], "_active": false, "_components": [ { - "__id__": 22 + "__id__": 28 } ], "_prefab": { - "__id__": 23 + "__id__": 29 }, "_opacity": 255, "_color": { @@ -764,17 +976,17 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 18 + "__id__": 24 }, "_children": [], "_active": true, "_components": [ { - "__id__": 20 + "__id__": 26 } ], "_prefab": { - "__id__": 21 + "__id__": 27 }, "_opacity": 0, "_color": { @@ -828,7 +1040,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 19 + "__id__": 25 }, "_enabled": true, "_materials": [ @@ -872,7 +1084,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 18 + "__id__": 24 }, "_enabled": false, "_materials": [ @@ -915,21 +1127,21 @@ "_name": "freeze1", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 25 + "__id__": 31 } ], "_active": false, "_components": [ { - "__id__": 27 + "__id__": 33 } ], "_prefab": { - "__id__": 28 + "__id__": 34 }, "_opacity": 255, "_color": { @@ -983,13 +1195,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 24 + "__id__": 30 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 26 + "__id__": 32 }, "_opacity": 255, "_color": { @@ -1054,7 +1266,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 30 }, "_enabled": true, "_materials": [ @@ -1099,21 +1311,21 @@ "_name": "freeze2", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 30 + "__id__": 36 } ], "_active": false, "_components": [ { - "__id__": 32 + "__id__": 38 } ], "_prefab": { - "__id__": 33 + "__id__": 39 }, "_opacity": 255, "_color": { @@ -1167,13 +1379,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 29 + "__id__": 35 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 31 + "__id__": 37 }, "_opacity": 255, "_color": { @@ -1238,7 +1450,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 29 + "__id__": 35 }, "_enabled": true, "_materials": [ @@ -1283,21 +1495,21 @@ "_name": "freeze3", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 35 + "__id__": 41 } ], "_active": false, "_components": [ { - "__id__": 37 + "__id__": 43 } ], "_prefab": { - "__id__": 38 + "__id__": 44 }, "_opacity": 255, "_color": { @@ -1351,13 +1563,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 34 + "__id__": 40 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 36 + "__id__": 42 }, "_opacity": 255, "_color": { @@ -1422,7 +1634,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "_materials": [ @@ -1482,22 +1694,22 @@ }, "_children": [ { - "__id__": 41 + "__id__": 47 }, { - "__id__": 49 + "__id__": 55 }, { - "__id__": 69 + "__id__": 75 }, { - "__id__": 89 + "__id__": 95 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 109 + "__id__": 115 }, "_opacity": 255, "_color": { @@ -1551,20 +1763,20 @@ "_name": "open0", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ { - "__id__": 42 + "__id__": 48 }, { - "__id__": 45 + "__id__": 51 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 48 + "__id__": 54 }, "_opacity": 255, "_color": { @@ -1618,17 +1830,17 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 43 + "__id__": 49 } ], "_prefab": { - "__id__": 44 + "__id__": 50 }, "_opacity": 255, "_color": { @@ -1682,7 +1894,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 42 + "__id__": 48 }, "_enabled": true, "_materials": [ @@ -1723,17 +1935,17 @@ "_name": "node2", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 46 + "__id__": 52 } ], "_prefab": { - "__id__": 47 + "__id__": 53 }, "_opacity": 255, "_color": { @@ -1787,7 +1999,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 45 + "__id__": 51 }, "_enabled": true, "_materials": [ @@ -1839,12 +2051,9 @@ "_name": "open1", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ - { - "__id__": 50 - }, { "__id__": 56 }, @@ -1852,13 +2061,16 @@ "__id__": 62 }, { - "__id__": 65 + "__id__": 68 + }, + { + "__id__": 71 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 68 + "__id__": 74 }, "_opacity": 255, "_color": { @@ -1912,230 +2124,8 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [ - { - "__id__": 51 - } - ], - "_active": true, - "_components": [ - { - "__id__": 54 - } - ], - "_prefab": { "__id__": 55 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 58, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -4.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 50 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 53 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 55.963, - 0.386, - 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__": 51 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c3n6tpv8RMSrNvhVahL40R", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 50 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c4fB2TJt5BlpRrI9fQcfQA", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "node2", - "_objFlags": 0, - "_parent": { - "__id__": 49 - }, "_children": [ { "__id__": 57 @@ -2172,14 +2162,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 111.356, + -4.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2236,16 +2226,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 55.221, + 55.963, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -2303,7 +2293,7 @@ "asset": { "__id__": 0 }, - "fileId": "a7gxUbdTpKa6FEojCGNnjs", + "fileId": "c3n6tpv8RMSrNvhVahL40R", "sync": false }, { @@ -2340,6 +2330,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4fB2TJt5BlpRrI9fQcfQA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 63 + } + ], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 65 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 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__": 63 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7gxUbdTpKa6FEojCGNnjs", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2356,17 +2568,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 49 + "__id__": 55 }, "_children": [], "_active": true, "_components": [ { - "__id__": 63 + "__id__": 69 } ], "_prefab": { - "__id__": 64 + "__id__": 70 }, "_opacity": 255, "_color": { @@ -2420,7 +2632,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 62 + "__id__": 68 }, "_enabled": true, "_materials": [ @@ -2465,268 +2677,7 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 66 - } - ], - "_prefab": { - "__id__": 67 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 109.525, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 65 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fb/K7WfqhOUKCgZJDKd0Nz", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ebFlVqe8pD4qjQbIK8ZIxp", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open2", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 70 - }, - { - "__id__": 76 - }, - { - "__id__": 82 - }, - { - "__id__": 85 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 88 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_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, - 2 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 69 - }, - "_children": [ - { - "__id__": 71 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - } - ], - "_prefab": { - "__id__": 75 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 116, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -3.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 70 + "__id__": 55 }, "_children": [], "_active": true, @@ -2760,8 +2711,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 116.02, - 0.386, + 109.525, + -25.614, 0, 0, 0, @@ -2827,43 +2778,9 @@ "asset": { "__id__": 0 }, - "fileId": "9ad1B/4ftF96e/Raa5FfXb", + "fileId": "fb/K7WfqhOUKCgZJDKd0Nz", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 70 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -2872,15 +2789,88 @@ "asset": { "__id__": 0 }, - "fileId": "49nNYGf+ZP3KdvY6lRGXCB", + "fileId": "ebFlVqe8pD4qjQbIK8ZIxp", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open2", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 46 + }, + "_children": [ + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 88 + }, + { + "__id__": 91 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_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, + 2 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 75 }, "_children": [ { @@ -2906,7 +2896,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 115, + "width": 116, "height": 34 }, "_anchorPoint": { @@ -2918,14 +2908,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 231.959, + -3.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2982,16 +2972,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 115.015, + 116.02, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -3049,7 +3039,7 @@ "asset": { "__id__": 0 }, - "fileId": "29i6IurlJHyZSexaX344pX", + "fileId": "9ad1B/4ftF96e/Raa5FfXb", "sync": false }, { @@ -3086,6 +3076,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49nNYGf+ZP3KdvY6lRGXCB", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [ + { + "__id__": 83 + } + ], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 82 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 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__": 83 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29i6IurlJHyZSexaX344pX", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3102,17 +3314,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 83 + "__id__": 89 } ], "_prefab": { - "__id__": 84 + "__id__": 90 }, "_opacity": 255, "_color": { @@ -3166,7 +3378,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 82 + "__id__": 88 }, "_enabled": true, "_materials": [ @@ -3211,268 +3423,7 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 69 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 86 - } - ], - "_prefab": { - "__id__": 87 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 229.661, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 85 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "98ugpk0r5JrpGGK6ITDMJz", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "18NbbZGwVMm6rU1Ue1Q6cb", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open3", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 90 - }, - { - "__id__": 96 - }, - { - "__id__": 102 - }, - { - "__id__": 105 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 108 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 3 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 89 - }, - "_children": [ - { - "__id__": 91 - } - ], - "_active": true, - "_components": [ - { - "__id__": 94 - } - ], - "_prefab": { - "__id__": 95 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 175, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -2.604, - -28.534, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 90 + "__id__": 75 }, "_children": [], "_active": true, @@ -3506,8 +3457,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.775, - 2.92, + 229.661, + -25.614, 0, 0, 0, @@ -3515,7 +3466,7 @@ 1, 1, 1, - 0.33333 + 1 ] }, "_eulerAngles": { @@ -3573,43 +3524,9 @@ "asset": { "__id__": 0 }, - "fileId": "90fPVk/ghOt7KWCB4mo8aI", + "fileId": "98ugpk0r5JrpGGK6ITDMJz", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 90 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -3618,15 +3535,88 @@ "asset": { "__id__": 0 }, - "fileId": "c2RbMUwM5Bk60gRkEjixY0", + "fileId": "18NbbZGwVMm6rU1Ue1Q6cb", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open3", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 46 + }, + "_children": [ + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 108 + }, + { + "__id__": 111 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 95 }, "_children": [ { @@ -3664,14 +3654,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 351.76, + -2.604, -28.534, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -3728,7 +3718,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.849, + 174.775, 2.92, 0, 0, @@ -3737,7 +3727,7 @@ 1, 1, 1, - -0.33333 + 0.33333 ] }, "_eulerAngles": { @@ -3795,7 +3785,7 @@ "asset": { "__id__": 0 }, - "fileId": "02LoV+e4tHy4OG74ouXkuF", + "fileId": "90fPVk/ghOt7KWCB4mo8aI", "sync": false }, { @@ -3832,6 +3822,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2RbMUwM5Bk60gRkEjixY0", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 103 + } + ], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 102 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 104 + } + ], + "_prefab": { + "__id__": 105 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_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__": 103 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02LoV+e4tHy4OG74ouXkuF", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3848,17 +4060,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 103 + "__id__": 109 } ], "_prefab": { - "__id__": 104 + "__id__": 110 }, "_opacity": 255, "_color": { @@ -3912,7 +4124,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 102 + "__id__": 108 }, "_enabled": true, "_materials": [ @@ -3957,17 +4169,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 112 } ], "_prefab": { - "__id__": 107 + "__id__": 113 }, "_opacity": 255, "_color": { @@ -4021,7 +4233,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 105 + "__id__": 111 }, "_enabled": true, "_materials": [ @@ -4091,20 +4303,20 @@ "__id__": 1 }, "_children": [ - { - "__id__": 111 - }, { "__id__": 117 }, { "__id__": 123 + }, + { + "__id__": 129 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 129 + "__id__": 135 }, "_opacity": 255, "_color": { @@ -4158,230 +4370,8 @@ "_name": "rotate1", "_objFlags": 0, "_parent": { - "__id__": 110 - }, - "_children": [ - { - "__id__": 112 - } - ], - "_active": false, - "_components": [ - { - "__id__": 115 - } - ], - "_prefab": { "__id__": 116 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 79, - "height": 53 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 37.916, - 0, - 0, - 0, - 0, - -0.7071067811865476, - -0.7071067811865475, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": -270 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "arror", - "_objFlags": 0, - "_parent": { - "__id__": 111 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 114 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 36, - "height": 24 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - -1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 112 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3b2YmObq1Ek7FVZxcYfN2p", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 111 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" - }, - "_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": "67MaVyQQZO654EJ2cTkB3C", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "rotate2", - "_objFlags": 0, - "_parent": { - "__id__": 110 - }, "_children": [ { "__id__": 118 @@ -4406,7 +4396,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 120, + "width": 79, "height": 53 }, "_anchorPoint": { @@ -4419,7 +4409,7 @@ "ctor": "Float64Array", "array": [ 37.916, - 60, + 0, 0, 0, 0, @@ -4549,7 +4539,7 @@ "asset": { "__id__": 0 }, - "fileId": "85GnNR6ilAZaPWo61m14C7", + "fileId": "3b2YmObq1Ek7FVZxcYfN2p", "sync": false }, { @@ -4570,8 +4560,8 @@ "_spriteFrame": { "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" }, - "_type": 1, - "_sizeMode": 0, + "_type": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -4594,15 +4584,15 @@ "asset": { "__id__": 0 }, - "fileId": "65n50x4YJBFKkiFERWlTcc", + "fileId": "67MaVyQQZO654EJ2cTkB3C", "sync": false }, { "__type__": "cc.Node", - "_name": "rotate3", + "_name": "rotate2", "_objFlags": 0, "_parent": { - "__id__": 110 + "__id__": 116 }, "_children": [ { @@ -4628,7 +4618,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 200, + "width": 120, "height": 53 }, "_anchorPoint": { @@ -4641,7 +4631,7 @@ "ctor": "Float64Array", "array": [ 37.916, - 120, + 60, 0, 0, 0, @@ -4766,12 +4756,12 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 }, "asset": { - "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + "__id__": 0 }, - "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "fileId": "85GnNR6ilAZaPWo61m14C7", "sync": false }, { @@ -4811,7 +4801,229 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65n50x4YJBFKkiFERWlTcc", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [ + { + "__id__": 130 + } + ], + "_active": false, + "_components": [ + { + "__id__": 133 + } + ], + "_prefab": { + "__id__": 134 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 37.916, + 120, + 0, + 0, + 0, + -0.7071067811865476, + -0.7071067811865475, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -270 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 129 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 131 + } + ], + "_prefab": { + "__id__": 132 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 130 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 129 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 }, "asset": { "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" diff --git a/assets/resources/prefab/wall/up.prefab b/assets/resources/prefab/wall/up.prefab index 5bc1190..9015b51 100644 --- a/assets/resources/prefab/wall/up.prefab +++ b/assets/resources/prefab/wall/up.prefab @@ -24,22 +24,25 @@ "__id__": 5 }, { - "__id__": 14 + "__id__": 20 }, { - "__id__": 17 + "__id__": 11 }, { - "__id__": 40 + "__id__": 23 }, { - "__id__": 110 + "__id__": 46 + }, + { + "__id__": 116 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 130 + "__id__": 136 }, "_opacity": 255, "_color": { @@ -216,14 +219,14 @@ "__id__": 10 }, { - "__id__": 11 + "__id__": 17 }, { - "__id__": 12 + "__id__": 18 } ], "_prefab": { - "__id__": 13 + "__id__": 19 }, "_opacity": 255, "_color": { @@ -398,7 +401,7 @@ "_spriteFrame": { "__uuid__": "6db2aafd-c221-4be9-a20b-5bb361fe22ef" }, - "_type": 0, + "_type": 3, "_sizeMode": 1, "_fillType": 0, "_fillCenter": { @@ -407,7 +410,7 @@ "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" @@ -426,6 +429,11 @@ "type": 4, "special": 0, "color": 0, + "maskNode": { + "__id__": 11 + }, + "maskWidth": 138, + "maskHeight": 69, "wall_SpriteFrames": { "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" }, @@ -437,6 +445,210 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "color", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 12 + } + ], + "_active": false, + "_components": [ + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -2.44, + 34, + 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": "color_icon", + "_objFlags": 0, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 14 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 258, + "height": 69 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 12 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": null, + "_type": 3, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "06eO9kzjdEZ5QAT3RV/4E4", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": null, + "_type": 0, + "_segments": 64, + "_N$alphaThreshold": 0.1, + "_N$inverted": true, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4ch+X49RVEZITU133kKuMB", + "sync": false + }, { "__type__": "c22a3wcU/tBdJ/qjn/Q6uuA", "_name": "", @@ -524,11 +736,11 @@ "_active": false, "_components": [ { - "__id__": 15 + "__id__": 21 } ], "_prefab": { - "__id__": 16 + "__id__": 22 }, "_opacity": 255, "_color": { @@ -582,7 +794,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 14 + "__id__": 20 }, "_enabled": true, "_materials": [ @@ -593,7 +805,7 @@ "_srcBlendFactor": 770, "_dstBlendFactor": 771, "_spriteFrame": null, - "_type": 0, + "_type": 3, "_sizeMode": 1, "_fillType": 0, "_fillCenter": { @@ -602,7 +814,7 @@ "y": 0 }, "_fillStart": 0, - "_fillRange": 0, + "_fillRange": 1, "_isTrimmedMode": true, "_atlas": null, "_id": "" @@ -626,23 +838,23 @@ "__id__": 1 }, "_children": [ - { - "__id__": 18 - }, { "__id__": 24 }, { - "__id__": 29 + "__id__": 30 }, { - "__id__": 34 + "__id__": 35 + }, + { + "__id__": 40 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 39 + "__id__": 45 }, "_opacity": 255, "_color": { @@ -696,21 +908,21 @@ "_name": "freeze0", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 19 + "__id__": 25 } ], "_active": false, "_components": [ { - "__id__": 22 + "__id__": 28 } ], "_prefab": { - "__id__": 23 + "__id__": 29 }, "_opacity": 255, "_color": { @@ -764,17 +976,17 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 18 + "__id__": 24 }, "_children": [], "_active": true, "_components": [ { - "__id__": 20 + "__id__": 26 } ], "_prefab": { - "__id__": 21 + "__id__": 27 }, "_opacity": 0, "_color": { @@ -828,7 +1040,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 19 + "__id__": 25 }, "_enabled": true, "_materials": [ @@ -872,7 +1084,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 18 + "__id__": 24 }, "_enabled": false, "_materials": [ @@ -915,21 +1127,21 @@ "_name": "freeze1", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 25 + "__id__": 31 } ], "_active": false, "_components": [ { - "__id__": 27 + "__id__": 33 } ], "_prefab": { - "__id__": 28 + "__id__": 34 }, "_opacity": 255, "_color": { @@ -983,13 +1195,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 24 + "__id__": 30 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 26 + "__id__": 32 }, "_opacity": 255, "_color": { @@ -1054,7 +1266,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 24 + "__id__": 30 }, "_enabled": true, "_materials": [ @@ -1099,21 +1311,21 @@ "_name": "freeze2", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 30 + "__id__": 36 } ], "_active": false, "_components": [ { - "__id__": 32 + "__id__": 38 } ], "_prefab": { - "__id__": 33 + "__id__": 39 }, "_opacity": 255, "_color": { @@ -1167,13 +1379,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 29 + "__id__": 35 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 31 + "__id__": 37 }, "_opacity": 255, "_color": { @@ -1238,7 +1450,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 29 + "__id__": 35 }, "_enabled": true, "_materials": [ @@ -1283,21 +1495,21 @@ "_name": "freeze3", "_objFlags": 0, "_parent": { - "__id__": 17 + "__id__": 23 }, "_children": [ { - "__id__": 35 + "__id__": 41 } ], "_active": false, "_components": [ { - "__id__": 37 + "__id__": 43 } ], "_prefab": { - "__id__": 38 + "__id__": 44 }, "_opacity": 255, "_color": { @@ -1351,13 +1563,13 @@ "_name": "num", "_objFlags": 0, "_parent": { - "__id__": 34 + "__id__": 40 }, "_children": [], "_active": true, "_components": [], "_prefab": { - "__id__": 36 + "__id__": 42 }, "_opacity": 255, "_color": { @@ -1422,7 +1634,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "_materials": [ @@ -1482,22 +1694,22 @@ }, "_children": [ { - "__id__": 41 + "__id__": 47 }, { - "__id__": 49 + "__id__": 55 }, { - "__id__": 69 + "__id__": 75 }, { - "__id__": 89 + "__id__": 95 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 109 + "__id__": 115 }, "_opacity": 255, "_color": { @@ -1551,20 +1763,20 @@ "_name": "open0", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ { - "__id__": 42 + "__id__": 48 }, { - "__id__": 45 + "__id__": 51 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 48 + "__id__": 54 }, "_opacity": 255, "_color": { @@ -1618,17 +1830,17 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 43 + "__id__": 49 } ], "_prefab": { - "__id__": 44 + "__id__": 50 }, "_opacity": 255, "_color": { @@ -1682,7 +1894,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 42 + "__id__": 48 }, "_enabled": true, "_materials": [ @@ -1723,17 +1935,17 @@ "_name": "node2", "_objFlags": 0, "_parent": { - "__id__": 41 + "__id__": 47 }, "_children": [], "_active": true, "_components": [ { - "__id__": 46 + "__id__": 52 } ], "_prefab": { - "__id__": 47 + "__id__": 53 }, "_opacity": 255, "_color": { @@ -1787,7 +1999,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 45 + "__id__": 51 }, "_enabled": true, "_materials": [ @@ -1839,12 +2051,9 @@ "_name": "open1", "_objFlags": 0, "_parent": { - "__id__": 40 + "__id__": 46 }, "_children": [ - { - "__id__": 50 - }, { "__id__": 56 }, @@ -1852,13 +2061,16 @@ "__id__": 62 }, { - "__id__": 65 + "__id__": 68 + }, + { + "__id__": 71 } ], "_active": false, "_components": [], "_prefab": { - "__id__": 68 + "__id__": 74 }, "_opacity": 255, "_color": { @@ -1912,230 +2124,8 @@ "_name": "node1", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [ - { - "__id__": 51 - } - ], - "_active": true, - "_components": [ - { - "__id__": 54 - } - ], - "_prefab": { "__id__": 55 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 58, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -4.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 50 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 53 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 55.963, - 0.386, - 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__": 51 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "0c1qsPaylDrpT2t17TQb6H", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 50 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d2N7h1IthCPJsmDH7G793J", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "node2", - "_objFlags": 0, - "_parent": { - "__id__": 49 - }, "_children": [ { "__id__": 57 @@ -2172,14 +2162,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 111.356, + -4.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2236,16 +2226,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 55.221, + 55.963, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -2303,7 +2293,7 @@ "asset": { "__id__": 0 }, - "fileId": "a8LMNTsVhHdYwOcx1jr1Op", + "fileId": "0c1qsPaylDrpT2t17TQb6H", "sync": false }, { @@ -2340,6 +2330,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2N7h1IthCPJsmDH7G793J", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 63 + } + ], + "_active": true, + "_components": [ + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 67 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 111.356, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 62 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 65 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 55.221, + 0.386, + 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__": 63 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8LMNTsVhHdYwOcx1jr1Op", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 62 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "1f53a670-99ab-4671-932f-3227940876cc" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2356,17 +2568,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 49 + "__id__": 55 }, "_children": [], "_active": true, "_components": [ { - "__id__": 63 + "__id__": 69 } ], "_prefab": { - "__id__": 64 + "__id__": 70 }, "_opacity": 255, "_color": { @@ -2420,7 +2632,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 62 + "__id__": 68 }, "_enabled": true, "_materials": [ @@ -2465,268 +2677,7 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 49 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 66 - } - ], - "_prefab": { - "__id__": 67 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 109.525, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 65 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4cHqgtvGBBpLSd10B/ydHm", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "13gPhoCJ5NJ7p+16JYUk6Z", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open2", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 70 - }, - { - "__id__": 76 - }, - { - "__id__": 82 - }, - { - "__id__": 85 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 88 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_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, - 2 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 69 - }, - "_children": [ - { - "__id__": 71 - } - ], - "_active": true, - "_components": [ - { - "__id__": 74 - } - ], - "_prefab": { - "__id__": 75 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 116, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -3.804, - -26, - 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": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 70 + "__id__": 55 }, "_children": [], "_active": true, @@ -2760,8 +2711,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 116.02, - 0.386, + 109.525, + -25.614, 0, 0, 0, @@ -2827,43 +2778,9 @@ "asset": { "__id__": 0 }, - "fileId": "50ZpK5UftFN7Dn7UqBl86Q", + "fileId": "4cHqgtvGBBpLSd10B/ydHm", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 70 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -2872,15 +2789,88 @@ "asset": { "__id__": 0 }, - "fileId": "21WFocbG5HPI8lfQrwgyIz", + "fileId": "13gPhoCJ5NJ7p+16JYUk6Z", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open2", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 46 + }, + "_children": [ + { + "__id__": 76 + }, + { + "__id__": 82 + }, + { + "__id__": 88 + }, + { + "__id__": 91 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 94 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_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, + 2 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 75 }, "_children": [ { @@ -2906,7 +2896,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 115, + "width": 116, "height": 34 }, "_anchorPoint": { @@ -2918,14 +2908,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 231.959, + -3.804, -26, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -2982,16 +2972,16 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 115.015, + 116.02, 0.386, 0, 0, 0, 0, 1, - -1, 1, - -1 + 1, + 1 ] }, "_eulerAngles": { @@ -3049,7 +3039,7 @@ "asset": { "__id__": 0 }, - "fileId": "45pFz1j/5LR4CFe8zwAZsd", + "fileId": "50ZpK5UftFN7Dn7UqBl86Q", "sync": false }, { @@ -3086,6 +3076,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "21WFocbG5HPI8lfQrwgyIz", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 75 + }, + "_children": [ + { + "__id__": 83 + } + ], + "_active": true, + "_components": [ + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 87 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 115, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 231.959, + -26, + 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": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 82 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + } + ], + "_prefab": { + "__id__": 85 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 115.015, + 0.386, + 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__": 83 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45pFz1j/5LR4CFe8zwAZsd", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 82 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "b48abaaa-d7d1-45b6-8a24-8f259163122a" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3102,17 +3314,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 69 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 83 + "__id__": 89 } ], "_prefab": { - "__id__": 84 + "__id__": 90 }, "_opacity": 255, "_color": { @@ -3166,7 +3378,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 82 + "__id__": 88 }, "_enabled": true, "_materials": [ @@ -3211,268 +3423,7 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 69 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 86 - } - ], - "_prefab": { - "__id__": 87 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 9, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 229.661, - -25.614, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 85 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "40LWkEnklHga/yKbl7syzW", - "sync": false - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "dfG/KsjipMErmjpzBeo7XU", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "open3", - "_objFlags": 0, - "_parent": { - "__id__": 40 - }, - "_children": [ - { - "__id__": 90 - }, - { - "__id__": 96 - }, - { - "__id__": 102 - }, - { - "__id__": 105 - } - ], - "_active": false, - "_components": [], - "_prefab": { - "__id__": 108 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 0 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 3 - ] - }, - "_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": "node1", - "_objFlags": 0, - "_parent": { - "__id__": 89 - }, - "_children": [ - { - "__id__": 91 - } - ], - "_active": true, - "_components": [ - { - "__id__": 94 - } - ], - "_prefab": { - "__id__": 95 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 175, - "height": 34 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - -2.604, - -28.534, - 0, - 0, - 0, - 0, - 1, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "New Sprite", - "_objFlags": 0, - "_parent": { - "__id__": 90 + "__id__": 75 }, "_children": [], "_active": true, @@ -3506,8 +3457,8 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.775, - 2.92, + 229.661, + -25.614, 0, 0, 0, @@ -3515,7 +3466,7 @@ 1, 1, 1, - 0.33333 + 1 ] }, "_eulerAngles": { @@ -3573,43 +3524,9 @@ "asset": { "__id__": 0 }, - "fileId": "baXTbZETZNQaJzLop8NoMg", + "fileId": "40LWkEnklHga/yKbl7syzW", "sync": false }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 90 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" - }, - "_type": 3, - "_sizeMode": 0, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 1, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -3618,15 +3535,88 @@ "asset": { "__id__": 0 }, - "fileId": "98vrc439VOWZpiP1N0LTiu", + "fileId": "dfG/KsjipMErmjpzBeo7XU", "sync": false }, { "__type__": "cc.Node", - "_name": "node2", + "_name": "open3", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 46 + }, + "_children": [ + { + "__id__": 96 + }, + { + "__id__": 102 + }, + { + "__id__": 108 + }, + { + "__id__": 111 + } + ], + "_active": false, + "_components": [], + "_prefab": { + "__id__": 114 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 3 + ] + }, + "_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": "node1", + "_objFlags": 0, + "_parent": { + "__id__": 95 }, "_children": [ { @@ -3664,14 +3654,14 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 351.76, + -2.604, -28.534, 0, 0, 0, 0, 1, - -1, + 1, 1, 1 ] @@ -3728,7 +3718,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 174.849, + 174.775, 2.92, 0, 0, @@ -3737,7 +3727,7 @@ 1, 1, 1, - -0.33333 + 0.33333 ] }, "_eulerAngles": { @@ -3795,7 +3785,7 @@ "asset": { "__id__": 0 }, - "fileId": "69J7JKO+JEqLHnNlYrSZd+", + "fileId": "baXTbZETZNQaJzLop8NoMg", "sync": false }, { @@ -3832,6 +3822,228 @@ }, "_id": "" }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98vrc439VOWZpiP1N0LTiu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "node2", + "_objFlags": 0, + "_parent": { + "__id__": 95 + }, + "_children": [ + { + "__id__": 103 + } + ], + "_active": true, + "_components": [ + { + "__id__": 106 + } + ], + "_prefab": { + "__id__": 107 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 175, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 351.76, + -28.534, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 102 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 104 + } + ], + "_prefab": { + "__id__": 105 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 9, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 174.849, + 2.92, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + -0.33333 + ] + }, + "_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__": 103 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4c2ac211-077a-4783-92b7-42964571ebfe" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "69J7JKO+JEqLHnNlYrSZd+", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 102 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "e122aac4-873c-4996-bbc8-7fdbd2cd0e60" + }, + "_type": 3, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 1, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3848,17 +4060,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 103 + "__id__": 109 } ], "_prefab": { - "__id__": 104 + "__id__": 110 }, "_opacity": 255, "_color": { @@ -3912,7 +4124,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 102 + "__id__": 108 }, "_enabled": true, "_materials": [ @@ -3957,17 +4169,17 @@ "_name": "New Sprite", "_objFlags": 0, "_parent": { - "__id__": 89 + "__id__": 95 }, "_children": [], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 112 } ], "_prefab": { - "__id__": 107 + "__id__": 113 }, "_opacity": 255, "_color": { @@ -4021,7 +4233,7 @@ "_name": "", "_objFlags": 0, "node": { - "__id__": 105 + "__id__": 111 }, "_enabled": true, "_materials": [ @@ -4091,20 +4303,20 @@ "__id__": 1 }, "_children": [ - { - "__id__": 111 - }, { "__id__": 117 }, { "__id__": 123 + }, + { + "__id__": 129 } ], "_active": true, "_components": [], "_prefab": { - "__id__": 129 + "__id__": 135 }, "_opacity": 255, "_color": { @@ -4158,230 +4370,8 @@ "_name": "rotate1", "_objFlags": 0, "_parent": { - "__id__": 110 - }, - "_children": [ - { - "__id__": 112 - } - ], - "_active": false, - "_components": [ - { - "__id__": 115 - } - ], - "_prefab": { "__id__": 116 }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 79, - "height": 53 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 40.374, - 0, - 0, - 0, - -1, - 6.123233995736766e-17, - 1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": -180 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "arror", - "_objFlags": 0, - "_parent": { - "__id__": 111 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 113 - } - ], - "_prefab": { - "__id__": 114 - }, - "_opacity": 255, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 36, - "height": 24 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_trs": { - "__type__": "TypedArray", - "ctor": "Float64Array", - "array": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - -1, - 1, - 1 - ] - }, - "_eulerAngles": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_skewX": 0, - "_skewY": 0, - "_is3DNode": false, - "_groupIndex": 0, - "groupIndex": 0, - "_id": "" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 112 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" - }, - "_type": 0, - "_sizeMode": 1, - "_fillType": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_atlas": { - "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" - }, - "_id": "" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2bmOFTAXZIFIuSiON8PATQ", - "sync": false - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "node": { - "__id__": 111 - }, - "_enabled": true, - "_materials": [ - { - "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" - } - ], - "_srcBlendFactor": 770, - "_dstBlendFactor": 771, - "_spriteFrame": { - "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" - }, - "_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": "89k/dU6wBHKoJ7J0dyicGT", - "sync": false - }, - { - "__type__": "cc.Node", - "_name": "rotate2", - "_objFlags": 0, - "_parent": { - "__id__": 110 - }, "_children": [ { "__id__": 118 @@ -4406,7 +4396,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 120, + "width": 79, "height": 53 }, "_anchorPoint": { @@ -4418,7 +4408,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 60, + 0, 40.374, 0, 0, @@ -4549,7 +4539,7 @@ "asset": { "__id__": 0 }, - "fileId": "5aO6OlAspOTZIlQ6bNZMyy", + "fileId": "2bmOFTAXZIFIuSiON8PATQ", "sync": false }, { @@ -4570,8 +4560,8 @@ "_spriteFrame": { "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" }, - "_type": 1, - "_sizeMode": 0, + "_type": 0, + "_sizeMode": 1, "_fillType": 0, "_fillCenter": { "__type__": "cc.Vec2", @@ -4594,15 +4584,15 @@ "asset": { "__id__": 0 }, - "fileId": "bc8uTWLghOFYc3kiCe48cd", + "fileId": "89k/dU6wBHKoJ7J0dyicGT", "sync": false }, { "__type__": "cc.Node", - "_name": "rotate3", + "_name": "rotate2", "_objFlags": 0, "_parent": { - "__id__": 110 + "__id__": 116 }, "_children": [ { @@ -4628,7 +4618,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 200, + "width": 120, "height": 53 }, "_anchorPoint": { @@ -4640,7 +4630,7 @@ "__type__": "TypedArray", "ctor": "Float64Array", "array": [ - 120, + 60, 40.374, 0, 0, @@ -4766,12 +4756,12 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 }, "asset": { - "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + "__id__": 0 }, - "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "fileId": "5aO6OlAspOTZIlQ6bNZMyy", "sync": false }, { @@ -4811,7 +4801,229 @@ { "__type__": "cc.PrefabInfo", "root": { - "__id__": 123 + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bc8uTWLghOFYc3kiCe48cd", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "rotate3", + "_objFlags": 0, + "_parent": { + "__id__": 116 + }, + "_children": [ + { + "__id__": 130 + } + ], + "_active": false, + "_components": [ + { + "__id__": 133 + } + ], + "_prefab": { + "__id__": 134 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 53 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 120, + 40.374, + 0, + 0, + 0, + -1, + 6.123233995736766e-17, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": -180 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "arror", + "_objFlags": 0, + "_parent": { + "__id__": 129 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 131 + } + ], + "_prefab": { + "__id__": 132 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 24 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + -1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 130 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fdcd9e80-10cf-423a-911b-91b66f05791a" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 + }, + "asset": { + "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" + }, + "fileId": "abl+L48MxEJ6gjdOC/lCrz", + "sync": false + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 129 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "fb792d6a-0401-4ff6-8a50-c7934b38fecb" + }, + "_type": 1, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "f2c494b7-b6df-488f-b194-358235b0f180" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 129 }, "asset": { "__uuid__": "a7045129-1b59-44d6-99a0-6316107b3b7b" diff --git a/settings/project.json b/settings/project.json index 85e52b9..325b0ab 100644 --- a/settings/project.json +++ b/settings/project.json @@ -1,5 +1,5 @@ { - "last-module-event-record-time": 1759998537067, + "last-module-event-record-time": 1760668791397, "group-list": [ "default", "Map"