更新,变色门处理逻辑

This commit is contained in:
COMPUTER\EDY 2025-12-26 10:36:45 +08:00
parent 9502f8b0ce
commit cf14a9fd7f
47 changed files with 8855 additions and 599 deletions

View File

@ -1808,7 +1808,7 @@ export default class MapConroler extends cc.Component {
}
return jg;
}
//type为true 则为道具消除, false为正常通过门消除
checkColor(colorTemp, type, node) {
let colorArray = [];
let number = 1;
@ -1836,17 +1836,17 @@ export default class MapConroler extends cc.Component {
}
//是变色门关卡,并且消除的块是当前颜色最后一个,对变色门中该颜色做消除处理 3 1 2 4 5 6
console.log("调用一次删除方法");
if (colorOver == true && colorArray.length > 0) {
for (let j = 0; j < colorArray.length; j++) {
console.log("执行删除下去", j);
colorArray[j].removeColor(colorTemp, type);
}
} else {
if (type == true) {
for (let k = 0; k < colorArray.length; k++) {
if (colorArray[k].color == colorTemp) {
if (colorArray[k].length > 0) {
colorArray[k].getComponent("Wall").changeColorWall();
}
if (colorArray[k].length > 0) {
colorArray[k].getComponent("Wall").changeDeleteColor(colorTemp);
}
}
}
@ -3885,7 +3885,7 @@ export default class MapConroler extends cc.Component {
if (nomalArray.length > 1) {
nomalArray = cc.fx.GameTool.shuffleArray(nomalArray);
nomalArray[0].getComponent("Block").eliminate(true);
let time = 0;
let time = 100;
if (nomalArray[0].getComponent("Block").type == 1 || nomalArray[0].getComponent("Block").type == 9) {
time = 200;
}
@ -3904,7 +3904,7 @@ export default class MapConroler extends cc.Component {
else if (nomalArray.length == 1) {
console.log("消除一个普通方块");
nomalArray[0].getComponent("Block").eliminate(true);
let time = 0;
let time = 100;
if (nomalArray[0].getComponent("Block").type == 1 || nomalArray[0].getComponent("Block").type == 9) {
time = 200;
}

View File

@ -130,6 +130,8 @@ export default class Wall extends cc.Component {
leftTween: any;
rightTween: any;
colorArray: any;
colorStartArray: any;
colorLength: number = 0; // 颜色数组的长度
longAndShort: number[] = []; // 长短变化的门
order: boolean = true; // 顺序门
length: number = 0; // 门的长度
@ -149,6 +151,8 @@ export default class Wall extends cc.Component {
init(wall_Info, posX: number, posY: number, direction: any) {
this.colorArray = [];
this.colorStartArray = [];
this.colorLength = 0;
this.wall_Info = this.jsonDeepClone(wall_Info);
// this.open = true;
@ -198,6 +202,8 @@ export default class Wall extends cc.Component {
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);
this.colorStartArray = this.wall_Info.colorArray.split('').map(char => parseInt(char) + 1);
this.colorLength = this.colorStartArray.length;
MapConroler._instance.changeColor = true;
MapConroler._instance.colorDoors.push(this);
}
@ -542,13 +548,46 @@ export default class Wall extends cc.Component {
//变色门变色具体执行方法
changeColor() {
// console.log("变色门变色数组数量", this.colorArray, this.node.uuid);
if (this.colorArray.length > 1 && this.color == this.colorArray[0]) {
if (this.colorArray.length >= 1 && this.color == this.colorArray[0]) {
let firstItem = this.colorArray.shift(); // 移除第一项
this.colorArray.push(firstItem); // 将第一项添加到数组末尾
console.log("移除颜色:", this.color);
// this.colorArray.push(firstItem); // 将第一项添加到数组末尾
if (this.colorArray.length <= 2) {
for (let i = 0; i < this.colorStartArray.length; i++) {
this.colorArray.push(this.colorStartArray[i]);
console.log("将颜色放入数组:", this.colorStartArray[i])
}
}
}
console.log("变色门变色数组数量", this.colorArray, this.node.uuid);
this.updateColor();
}
changeDeleteColor(color) {
for (let i = 0; i < this.teamDoors.length; i++) {
setTimeout(() => {
this.teamDoors[i].tempDeleteColor(color);
}, i * 10);
}
}
tempDeleteColor(color) {
if (this.colorArray.length > 1) {
let index = this.colorArray.indexOf(color);
if (index !== -1) {
console.log("删除颜色:", color, this.colorArray);
this.colorArray.splice(index, 1);
if (this.colorArray.length <= 2) {
for (let i = 0; i < this.colorStartArray.length; i++) {
this.colorArray.push(this.colorStartArray[i]);
}
}
this.updateColor();
}
}
}
//更新变色门颜色
updateColor() {
this.color = this.colorArray[0];
@ -587,15 +626,33 @@ export default class Wall extends cc.Component {
}
}
//变色门删除颜色
//变色门删除颜色, 第一个参数为颜色,第二个参数为是否立刻刷新颜色, 第三个参数为是否删除起始颜色
removeColor(color, type) {
console.log("整体删除颜色");
if (this.colorStartArray.length > 1) {
let index = this.colorStartArray.indexOf(color);
if (index !== -1) {
this.colorStartArray.splice(index, 1);
}
}
if (this.colorArray.length > 1) {
let index = this.colorArray.indexOf(color);
if (index !== -1) {
console.log("删除方法中,该墙体有该颜色")
this.colorArray.splice(index, 1);
if (type) this.updateColor();
if (this.colorArray.length <= 2) {
for (let i = 0; i < this.colorStartArray.length; i++) {
this.colorArray.push(this.colorStartArray[i]);
console.log("将颜色放入数组:", this.colorStartArray[i])
}
}
if (type == true) this.updateColor();
}
else {
console.log("删除方法中,该墙体没有该颜色");
}
}
console.log(this.wall_Info.length, "删除颜色:", color, "删除后数组:", this.colorArray, "删除起始颜色:", this.colorStartArray);
}
//添加变色门遮罩
@ -835,13 +892,11 @@ export default class Wall extends cc.Component {
start = this.teamDoors[2];
over = this.teamDoors[0];
end = this.teamDoors[1];
// debugger;
}
}
}
}
// console.log("数组长度:", MapConroler._instance.teamDoors.length);
// debugger;
start.runLongAndShort(true);
if (over) over.runLongAndShort(false);

View File

@ -426,8 +426,8 @@ var GameTool = {
//关卡上限
maxLevel() {
let jg = false;
if (cc.fx.GameConfig.GM_INFO.level > 849) {
cc.fx.GameConfig.GM_INFO.level = 850;
if (cc.fx.GameConfig.GM_INFO.level > 889) {
cc.fx.GameConfig.GM_INFO.level = 890;
jg = true;
}
return jg;

File diff suppressed because it is too large Load Diff

View File

@ -6698,7 +6698,7 @@
"__id__": 403
}
],
"_active": true,
"_active": false,
"_components": [
{
"__id__": 419

View File

@ -0,0 +1,335 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "871",
"map": [
8,
8
],
"time": 120,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 10,
"type": 16,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"questionTime": 2,
"id": 240
},
{
"block": 2,
"color": 4,
"type": 16,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"questionTime": 6,
"id": 250
},
{
"block": 6,
"color": 5,
"type": 16,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"questionTime": 9,
"id": 260
},
{
"block": 2,
"color": 6,
"type": 5,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"floor": 1,
"floorTime": 5,
"id": 270
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"floor": 2,
"floorTime": 8,
"id": 280
},
{
"block": 2,
"color": 9,
"type": 14,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 9,
"type": 14,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 7,
"type": 14,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 5,
"type": 14,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 8,
"type": 5,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 8,
"type": 8,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 4,
"type": 17,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"boomTime": 4,
"id": 350
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 872,
"num": 0,
"color": 1,
"special": 3,
"length": 1,
"freeze": 3
},
{
"id": 873,
"num": 2,
"color": 5,
"special": 0,
"length": 3,
"colorArray": "49"
},
{
"id": 874,
"num": 3,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "49"
},
{
"id": 875,
"num": 4,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "49"
},
{
"id": 876,
"num": 5,
"color": 3,
"special": 6,
"length": 1,
"lockTime": 4
},
{
"id": 877,
"num": 9,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "37377"
},
{
"id": 878,
"num": 11,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "37377"
},
{
"id": 879,
"num": 15,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "86"
},
{
"id": 880,
"num": 17,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "86"
},
{
"id": 881,
"num": 21,
"color": 8,
"special": 1,
"length": 2
},
{
"id": 882,
"num": 22,
"color": 8,
"special": 1,
"length": 0
},
{
"id": 883,
"num": 16,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 884,
"num": 8,
"color": 6,
"special": 1,
"length": 2
},
{
"id": 885,
"num": 10,
"color": 6,
"special": 1,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "02598485-7056-4a2f-9e2c-dfc815d4fdeb",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,539 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "872",
"map": [
10,
12
],
"time": 120,
"gap": [
{
"x": 4,
"y": 10,
"z": 0
},
{
"x": 5,
"y": 10,
"z": 0
},
{
"x": 4,
"y": 9,
"z": 0
},
{
"x": 5,
"y": 9,
"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": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 8,
"y": 2,
"z": 0
},
{
"x": 8,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 5,
"z": 0
},
{
"x": 8,
"y": 6,
"z": 0
},
{
"x": 8,
"y": 7,
"z": 0
},
{
"x": 8,
"y": 8,
"z": 0
},
{
"x": 8,
"y": 9,
"z": 0
},
{
"x": 4,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 2,
"z": 0
},
{
"x": 4,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 5,
"color": 7,
"type": 16,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"questionTime": 6,
"id": 210
},
{
"block": 1,
"color": 4,
"type": 16,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"questionTime": 7,
"id": 220
},
{
"block": 1,
"color": 3,
"type": 16,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"questionTime": 8,
"id": 230
},
{
"block": 1,
"color": 1,
"type": 16,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"questionTime": 10,
"id": 240
},
{
"block": 1,
"color": 10,
"type": 16,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"questionTime": 13,
"id": 250
},
{
"block": 1,
"color": 11,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 4,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": -480,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 6,
"type": 3,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"lockTime": 3,
"id": 310
},
{
"block": 0,
"color": 10,
"type": 2,
"position": {
"x": -240,
"y": 360,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 6,
"type": 2,
"position": {
"x": 360,
"y": 360,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": -120,
"y": -600,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 17,
"position": {
"x": 360,
"y": 480,
"z": 0
},
"boomTime": 2,
"id": 350
},
{
"block": 0,
"color": 4,
"type": 17,
"position": {
"x": -240,
"y": 480,
"z": 0
},
"boomTime": 3,
"id": 360
},
{
"block": 10,
"color": 2,
"type": 8,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 370
},
{
"block": 6,
"color": 8,
"type": 8,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 380
},
{
"block": 2,
"color": 9,
"type": 17,
"position": {
"x": 240,
"y": -600,
"z": 0
},
"boomTime": 1,
"id": 390
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": -240,
"y": -600,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": -360,
"y": -600,
"z": 0
},
"adhesiveTime": 1,
"id": 410
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 360,
"y": -600,
"z": 0
},
"adhesiveTime": 2,
"id": 420
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 480,
"y": -600,
"z": 0
},
"adhesiveTime": 1,
"id": 430
}
]
],
"WALL_INFO": [
[
{
"id": 873,
"num": 6,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 874,
"num": 7,
"color": 9,
"special": 0,
"length": 3
},
{
"id": 875,
"num": 8,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 876,
"num": 9,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 877,
"num": 1,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 878,
"num": 15,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 879,
"num": 17,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 880,
"num": 31,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 881,
"num": 33,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 882,
"num": 47,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 883,
"num": 39,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 884,
"num": 40,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 885,
"num": 41,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 886,
"num": 38,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 887,
"num": 30,
"color": 1,
"special": 3,
"length": 2,
"freeze": 15
},
{
"id": 888,
"num": 32,
"color": 1,
"special": 3,
"length": 0,
"freeze": 15
},
{
"id": 889,
"num": 14,
"color": 7,
"special": 3,
"length": 2,
"freeze": 12
},
{
"id": 890,
"num": 16,
"color": 7,
"special": 3,
"length": 0,
"freeze": 12
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "0142a028-49d6-452a-984a-3954b03e736b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,362 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "873",
"map": [
10,
8
],
"time": 125,
"gap": [
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 8,
"y": 5,
"z": 0
},
{
"x": 8,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 2,
"z": 0
},
{
"x": 8,
"y": 1,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 3,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 21,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 230
},
{
"block": 1,
"color": 6,
"type": 9,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 240
},
{
"block": 1,
"color": 6,
"type": 9,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 250
},
{
"block": 2,
"color": 9,
"type": 8,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 2,
"type": 8,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 1,
"type": 7,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 3,
"type": 7,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 4,
"type": 17,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"boomTime": 1,
"id": 300
},
{
"block": 2,
"color": 5,
"type": 17,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"boomTime": 2,
"id": 310
},
{
"block": 1,
"color": 10,
"type": 17,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"boomTime": 3,
"id": 320
},
{
"block": 1,
"color": 9,
"type": 17,
"position": {
"x": 480,
"y": 240,
"z": 0
},
"boomTime": 4,
"id": 330
},
{
"block": 2,
"color": 5,
"type": 17,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"boomTime": 5,
"id": 340
},
{
"block": 2,
"color": 9,
"type": 4,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"freezeTime": 10,
"id": 350
}
]
],
"WALL_INFO": [
[
{
"id": 874,
"num": 0,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 875,
"num": 9,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 876,
"num": 11,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 877,
"num": 13,
"color": 2,
"special": 3,
"length": 3,
"freeze": 8
},
{
"id": 878,
"num": 15,
"color": 2,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 879,
"num": 17,
"color": 2,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 880,
"num": 19,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 881,
"num": 26,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 882,
"num": 27,
"color": 3,
"special": 3,
"length": 1,
"freeze": 12
},
{
"id": 883,
"num": 16,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 884,
"num": 18,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 885,
"num": 10,
"color": 6,
"special": 4,
"length": 3
},
{
"id": 886,
"num": 12,
"color": 6,
"special": 4,
"length": 0
},
{
"id": 887,
"num": 14,
"color": 6,
"special": 4,
"length": 0
},
{
"id": 888,
"num": 1,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 889,
"num": 8,
"color": 9,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "194e1dd4-015b-4f0c-92fc-457167b2d9a8",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,311 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "874",
"map": [
8,
8
],
"time": 120,
"gap": [
{
"x": 3,
"y": 6,
"z": 0
},
{
"x": 4,
"y": 6,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 0,
"color": 1,
"type": 16,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"questionTime": 7,
"id": 210
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"questionTime": 11,
"id": 220
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 6,
"type": 9,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"adhesiveTime": 2,
"id": 250
},
{
"block": 2,
"color": 8,
"type": 9,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 260
},
{
"block": 20,
"color": 9,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 19,
"color": 4,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 2,
"type": 7,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 3,
"type": 7,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 7,
"type": 1,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"stacking": 5,
"id": 310
},
{
"block": 2,
"color": 1,
"type": 1,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"stacking": 7,
"id": 320
},
{
"block": 2,
"color": 4,
"type": 1,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"stacking": 8,
"id": 330
},
{
"block": 2,
"color": 10,
"type": 1,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"stacking": 6,
"id": 340
},
{
"block": 0,
"color": 1,
"type": 1,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"stacking": 10,
"id": 350
},
{
"block": 0,
"color": 3,
"type": 1,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"stacking": 9,
"id": 360
}
]
],
"WALL_INFO": [
[
{
"id": 875,
"num": 0,
"color": 7,
"special": 0,
"length": 2,
"colorArray": "61"
},
{
"id": 876,
"num": 1,
"color": 7,
"special": 0,
"length": 0,
"colorArray": "61"
},
{
"id": 877,
"num": 2,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 878,
"num": 3,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 879,
"num": 4,
"color": 4,
"special": 0,
"length": 2,
"colorArray": "32"
},
{
"id": 880,
"num": 5,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "32"
},
{
"id": 881,
"num": 24,
"color": 1,
"special": 0,
"length": 2,
"colorArray": "07"
},
{
"id": 882,
"num": 25,
"color": 1,
"special": 0,
"length": 0,
"colorArray": "07"
},
{
"id": 883,
"num": 22,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 884,
"num": 23,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 885,
"num": 20,
"color": 5,
"special": 0,
"length": 2,
"colorArray": "455"
},
{
"id": 886,
"num": 21,
"color": 5,
"special": 0,
"length": 0,
"colorArray": "455"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "5c8aa633-98dd-4627-9068-2567e16a37f8",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,415 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "875",
"map": [
9,
9
],
"time": 90,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": 180,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 300,
"y": 300,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": -60,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 3,
"color": 9,
"type": 0,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": 60,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 5,
"type": 14,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"floor": 2,
"floorTime": 6,
"id": 350
},
{
"block": 17,
"color": 2,
"type": 14,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 360
},
{
"block": 20,
"color": 4,
"type": 14,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 370
},
{
"block": 1,
"color": 6,
"type": 14,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 9,
"type": 16,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"questionTime": 13,
"id": 390
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -180,
"y": 300,
"z": 0
},
"adhesiveTime": 2,
"id": 400
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": -300,
"y": 300,
"z": 0
},
"adhesiveTime": 1,
"id": 410
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"adhesiveTime": 2,
"id": 420
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"adhesiveTime": 1,
"id": 430
},
{
"block": 1,
"color": 1,
"type": 7,
"position": {
"x": 300,
"y": -60,
"z": 0
},
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 876,
"num": 0,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 877,
"num": 1,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 878,
"num": 2,
"color": 1,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 879,
"num": 3,
"color": 1,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 880,
"num": 8,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 881,
"num": 14,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 882,
"num": 16,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 883,
"num": 18,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 884,
"num": 20,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 885,
"num": 25,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 886,
"num": 26,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 887,
"num": 22,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 888,
"num": 23,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 889,
"num": 15,
"color": 9,
"special": 0,
"length": 3
},
{
"id": 890,
"num": 17,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 891,
"num": 19,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 892,
"num": 6,
"color": 7,
"special": 6,
"length": 1,
"lockTime": 4
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "61b8774b-c456-4518-b932-b06ee57169dc",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,408 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "876",
"map": [
9,
9
],
"time": 170,
"gap": [
{
"x": 4,
"y": 7,
"z": 0
},
{
"x": 3,
"y": 7,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 4,
"y": 6,
"z": 0
},
{
"x": 3,
"y": 6,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 5,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 11,
"type": 0,
"position": {
"x": 180,
"y": 180,
"z": 0
},
"id": 220
},
{
"block": 0,
"color": 11,
"type": 0,
"position": {
"x": 180,
"y": -420,
"z": 0
},
"id": 230
},
{
"block": 3,
"color": 9,
"type": 0,
"position": {
"x": 180,
"y": 60,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 4,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": 60,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 10,
"type": 7,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 7,
"type": 8,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 300
},
{
"block": 22,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 8,
"type": 16,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"questionTime": 11,
"id": 320
},
{
"block": 0,
"color": 4,
"type": 16,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"questionTime": 12,
"id": 330
},
{
"block": 2,
"color": 5,
"type": 16,
"position": {
"x": -60,
"y": -180,
"z": 0
},
"questionTime": 13,
"id": 340
},
{
"block": 0,
"color": 7,
"type": 16,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"questionTime": 14,
"id": 350
},
{
"block": 2,
"color": 10,
"type": 16,
"position": {
"x": -180,
"y": 60,
"z": 0
},
"questionTime": 15,
"id": 360
},
{
"block": 1,
"color": 3,
"type": 17,
"position": {
"x": 180,
"y": -180,
"z": 0
},
"boomTime": 2,
"id": 370
},
{
"block": 2,
"color": 3,
"type": 17,
"position": {
"x": 300,
"y": -180,
"z": 0
},
"boomTime": 4,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 877,
"num": 1,
"color": 6,
"special": 3,
"length": 2,
"freeze": 3
},
{
"id": 878,
"num": 2,
"color": 6,
"special": 3,
"length": 0,
"freeze": 3
},
{
"id": 879,
"num": 4,
"color": 1,
"special": 3,
"length": 2,
"freeze": 2
},
{
"id": 880,
"num": 5,
"color": 1,
"special": 3,
"length": 0,
"freeze": 2
},
{
"id": 881,
"num": 7,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 882,
"num": 9,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 883,
"num": 18,
"color": 8,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 884,
"num": 20,
"color": 8,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 885,
"num": 28,
"color": 4,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 886,
"num": 29,
"color": 4,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 887,
"num": 25,
"color": 10,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 888,
"num": 26,
"color": 10,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 889,
"num": 21,
"color": 7,
"special": 3,
"length": 1,
"freeze": 7
},
{
"id": 890,
"num": 13,
"color": 9,
"special": 3,
"length": 3,
"freeze": 6
},
{
"id": 891,
"num": 17,
"color": 9,
"special": 3,
"length": 0,
"freeze": 6
},
{
"id": 892,
"num": 19,
"color": 9,
"special": 3,
"length": 0,
"freeze": 6
},
{
"id": 893,
"num": 8,
"color": 2,
"special": 3,
"length": 2,
"freeze": 5
},
{
"id": 894,
"num": 10,
"color": 2,
"special": 3,
"length": 0,
"freeze": 5
},
{
"id": 895,
"num": 6,
"color": 5,
"special": 3,
"length": 1,
"freeze": 4
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "9eac730e-c70f-4b1c-949a-f979d49535dd",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,347 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "877",
"map": [
8,
8
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"id": 210
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": -240,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 9,
"type": 16,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"questionTime": 4,
"id": 260
},
{
"block": 1,
"color": 10,
"type": 1,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"stacking": 2,
"floor": 1,
"floorTime": 6,
"id": 270
},
{
"block": 1,
"color": 8,
"type": 1,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"stacking": 10,
"id": 280
},
{
"block": 0,
"color": 6,
"type": 1,
"position": {
"x": -240,
"y": 240,
"z": 0
},
"stacking": 9,
"id": 290
},
{
"block": 0,
"color": 1,
"type": 1,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"stacking": 5,
"id": 300
},
{
"block": 4,
"color": 4,
"type": 1,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"stacking": 1,
"id": 310
},
{
"block": 4,
"color": 3,
"type": 1,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"stacking": 6,
"id": 320
},
{
"block": 0,
"color": 10,
"type": 17,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"boomTime": 1,
"id": 330
},
{
"block": 0,
"color": 9,
"type": 17,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"boomTime": 3,
"id": 340
},
{
"block": 2,
"color": 1,
"type": 9,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 10,
"id": 350
},
{
"block": 0,
"color": 9,
"type": 9,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 10,
"id": 360
},
{
"block": 2,
"color": 6,
"type": 9,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 13,
"id": 370
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 13,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 878,
"num": 4,
"color": 8,
"special": 0,
"length": 2,
"colorArray": ""
},
{
"id": 879,
"num": 5,
"color": 8,
"special": 0,
"length": 0,
"colorArray": ""
},
{
"id": 880,
"num": 11,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 881,
"num": 13,
"color": 9,
"special": 0,
"length": 1
},
{
"id": 882,
"num": 22,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 883,
"num": 23,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 884,
"num": 12,
"color": 6,
"special": 2,
"length": 1,
"lock": true
},
{
"id": 885,
"num": 10,
"color": 1,
"special": 2,
"length": 1,
"lock": false
},
{
"id": 886,
"num": 1,
"color": 3,
"special": 0,
"length": 3,
"colorArray": "21"
},
{
"id": 887,
"num": 2,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "21"
},
{
"id": 888,
"num": 3,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "21"
},
{
"id": 889,
"num": 19,
"color": 4,
"special": 0,
"length": 3,
"colorArray": "36"
},
{
"id": 890,
"num": 20,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "36"
},
{
"id": 891,
"num": 21,
"color": 4,
"special": 0,
"length": 0,
"colorArray": "36"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "ca589a60-90bd-4bba-a0a1-b36f93cd32e7",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,439 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "878",
"map": [
9,
10
],
"time": 110,
"gap": [
{
"x": 1,
"y": 2,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 6,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 5,
"color": 8,
"type": 0,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 420,
"y": -480,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": 360,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 10,
"type": 0,
"position": {
"x": -180,
"y": 360,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 360
},
{
"block": 4,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 2,
"type": 0,
"position": {
"x": 420,
"y": 360,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 390
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": -480,
"z": 0
},
"id": 400
},
{
"block": 0,
"color": 3,
"type": 7,
"position": {
"x": 60,
"y": -480,
"z": 0
},
"id": 410
},
{
"block": 1,
"color": 6,
"type": 4,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"freezeTime": 6,
"id": 420
},
{
"block": 2,
"color": 2,
"type": 16,
"position": {
"x": -60,
"y": 240,
"z": 0
},
"questionTime": 4,
"id": 430
},
{
"block": 2,
"color": 7,
"type": 16,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"questionTime": 3,
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 879,
"num": 0,
"color": 3,
"special": 3,
"length": 1,
"freeze": 11
},
{
"id": 880,
"num": 1,
"color": 7,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 881,
"num": 2,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 882,
"num": 3,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 883,
"num": 11,
"color": 8,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 884,
"num": 13,
"color": 8,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 885,
"num": 19,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 886,
"num": 21,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 887,
"num": 31,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 888,
"num": 26,
"color": 1,
"special": 0,
"length": 3
},
{
"id": 889,
"num": 27,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 890,
"num": 28,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 891,
"num": 20,
"color": 10,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 892,
"num": 22,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 893,
"num": 14,
"color": 2,
"special": 0,
"length": 2,
"longAndShort": 21,
"order": true
},
{
"id": 894,
"num": 16,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 21,
"order": true
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "4576f26b-db5c-4b9a-ba14-18365457f23b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,382 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "879",
"map": [
9,
8
],
"time": 135,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"id": 240
},
{
"block": 13,
"color": 5,
"type": 0,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 300,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 9,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 7,
"type": 8,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 2,
"type": 9,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 300
},
{
"block": 0,
"color": 8,
"type": 9,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"adhesiveTime": 1,
"id": 310
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 320
},
{
"block": 0,
"color": 4,
"type": 9,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"adhesiveTime": 1,
"id": 330
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"id": 340
},
{
"block": 0,
"color": 6,
"type": 9,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"adhesiveTime": 1,
"id": 350
},
{
"block": 0,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 360
},
{
"block": 0,
"color": 10,
"type": 17,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"boomTime": 1,
"id": 370
},
{
"block": 2,
"color": 8,
"type": 17,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"boomTime": 2,
"id": 380
},
{
"block": 2,
"color": 9,
"type": 17,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"boomTime": 3,
"id": 390
},
{
"block": 0,
"color": 10,
"type": 16,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"questionTime": 10,
"id": 400
},
{
"block": 0,
"color": 1,
"type": 16,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"questionTime": 14,
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 880,
"num": 1,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 881,
"num": 4,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 882,
"num": 5,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 883,
"num": 7,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 884,
"num": 6,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 885,
"num": 10,
"color": 7,
"special": 3,
"length": 3,
"freeze": 12
},
{
"id": 886,
"num": 12,
"color": 7,
"special": 3,
"length": 0,
"freeze": 12
},
{
"id": 887,
"num": 14,
"color": 7,
"special": 3,
"length": 0,
"freeze": 12
},
{
"id": 888,
"num": 18,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 889,
"num": 21,
"color": 2,
"special": 0,
"length": 1
},
{
"id": 890,
"num": 24,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 891,
"num": 25,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 892,
"num": 19,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 893,
"num": 11,
"color": 5,
"special": 3,
"length": 3,
"freeze": 8
},
{
"id": 894,
"num": 13,
"color": 5,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 895,
"num": 15,
"color": 5,
"special": 3,
"length": 0,
"freeze": 8
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "325513a3-1823-44a0-87d2-b31cd91c0b2b",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,362 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "880",
"map": [
9,
8
],
"time": 120,
"gap": [
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 210
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"questionTime": 9,
"id": 220
},
{
"block": 0,
"color": 2,
"type": 16,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"questionTime": 15,
"id": 230
},
{
"block": 1,
"color": 1,
"type": 1,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"stacking": 3,
"id": 240
},
{
"block": 1,
"color": 9,
"type": 1,
"position": {
"x": 420,
"y": 0,
"z": 0
},
"stacking": 3,
"id": 250
},
{
"block": 1,
"color": 2,
"type": 1,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"stacking": 7,
"id": 260
},
{
"block": 1,
"color": 10,
"type": 1,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"stacking": 7,
"id": 270
},
{
"block": 4,
"color": 5,
"type": 1,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"stacking": 4,
"id": 280
},
{
"block": 2,
"color": 3,
"type": 2,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 7,
"type": 2,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 300
},
{
"block": 21,
"color": 8,
"type": 2,
"position": {
"x": -300,
"y": -240,
"z": 0
},
"id": 310
},
{
"block": 22,
"color": 6,
"type": 2,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"id": 320
},
{
"block": 0,
"color": 10,
"type": 2,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 16,
"id": 340
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 16,
"id": 350
},
{
"block": 2,
"color": 3,
"type": 17,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"boomTime": 2,
"id": 360
},
{
"block": 2,
"color": 7,
"type": 17,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"boomTime": 4,
"id": 370
},
{
"block": 0,
"color": 10,
"type": 3,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"lockTime": 5,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 881,
"num": 0,
"color": 7,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 882,
"num": 1,
"color": 7,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 883,
"num": 4,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 884,
"num": 9,
"color": 6,
"special": 0,
"length": 2
},
{
"id": 885,
"num": 11,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 886,
"num": 15,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 887,
"num": 17,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 888,
"num": 25,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 889,
"num": 21,
"color": 3,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 890,
"num": 22,
"color": 3,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 891,
"num": 16,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 892,
"num": 18,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 893,
"num": 14,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 894,
"num": 10,
"color": 5,
"special": 3,
"length": 1,
"freeze": 14
},
{
"id": 895,
"num": 5,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 896,
"num": 8,
"color": 9,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "5e06b124-1652-4322-bdf1-846854fe11d3",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,424 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "881",
"map": [
9,
10
],
"time": 120,
"gap": [
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 4,
"z": 0
},
{
"x": 6,
"y": 5,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -480,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": 360,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": -480,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 1,
"type": 9,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"adhesiveTime": 2,
"id": 330
},
{
"block": 1,
"color": 1,
"type": 9,
"position": {
"x": 300,
"y": 360,
"z": 0
},
"adhesiveTime": 1,
"id": 340
},
{
"block": 4,
"color": 10,
"type": 16,
"position": {
"x": -300,
"y": 120,
"z": 0
},
"questionTime": 9,
"id": 310
},
{
"block": 4,
"color": 1,
"type": 16,
"position": {
"x": -300,
"y": -480,
"z": 0
},
"questionTime": 9,
"id": 320
},
{
"block": 0,
"color": 3,
"type": 16,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"questionTime": 16,
"id": 330
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"questionTime": 18,
"id": 340
},
{
"block": 2,
"color": 2,
"type": 9,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"adhesiveTime": 2,
"id": 350
},
{
"block": 2,
"color": 5,
"type": 9,
"position": {
"x": 180,
"y": -120,
"z": 0
},
"adhesiveTime": 1,
"id": 360
},
{
"block": 1,
"color": 10,
"type": 9,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"adhesiveTime": 2,
"id": 370
},
{
"block": 1,
"color": 10,
"type": 9,
"position": {
"x": 300,
"y": -480,
"z": 0
},
"adhesiveTime": 1,
"id": 380
},
{
"block": 1,
"color": 5,
"type": 7,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"id": 390
},
{
"block": 1,
"color": 2,
"type": 7,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 400
},
{
"block": 1,
"color": 7,
"type": 17,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"boomTime": 1,
"id": 410
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": -120,
"z": 0
},
"id": 420
}
]
],
"WALL_INFO": [
[
{
"id": 882,
"num": 0,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 883,
"num": 7,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 884,
"num": 15,
"color": 10,
"special": 0,
"length": 3
},
{
"id": 885,
"num": 17,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 886,
"num": 23,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 887,
"num": 32,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 888,
"num": 33,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 889,
"num": 14,
"color": 1,
"special": 0,
"length": 3
},
{
"id": 890,
"num": 16,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 891,
"num": 18,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 892,
"num": 1,
"color": 2,
"special": 3,
"length": 2,
"freeze": 9
},
{
"id": 893,
"num": 2,
"color": 2,
"special": 3,
"length": 0,
"freeze": 9
},
{
"id": 894,
"num": 5,
"color": 5,
"special": 3,
"length": 2,
"freeze": 13
},
{
"id": 895,
"num": 6,
"color": 5,
"special": 3,
"length": 0,
"freeze": 13
},
{
"id": 896,
"num": 30,
"color": 3,
"special": 3,
"length": 2,
"freeze": 7
},
{
"id": 897,
"num": 31,
"color": 3,
"special": 3,
"length": 0,
"freeze": 7
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "e88e8f88-845d-4a66-bf8b-e60c3bbc5b54",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,314 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "882",
"map": [
8,
8
],
"time": 130,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 220
},
{
"block": 22,
"color": 7,
"type": 16,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"questionTime": 6,
"id": 230
},
{
"block": 21,
"color": 4,
"type": 16,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"questionTime": 9,
"id": 240
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 120,
"y": -240,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 5,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 2,
"type": 1,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"stacking": 10,
"id": 350
},
{
"block": 1,
"color": 6,
"type": 1,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"stacking": 5,
"id": 360
},
{
"block": 1,
"color": 5,
"type": 1,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"stacking": 8,
"id": 370
},
{
"block": 1,
"color": 10,
"type": 1,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"stacking": 9,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 883,
"num": 2,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 884,
"num": 3,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 885,
"num": 5,
"color": 8,
"special": 0,
"length": 1
},
{
"id": 886,
"num": 11,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 887,
"num": 13,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 888,
"num": 23,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 889,
"num": 20,
"color": 1,
"special": 4,
"length": 2
},
{
"id": 890,
"num": 21,
"color": 1,
"special": 4,
"length": 0
},
{
"id": 891,
"num": 14,
"color": 2,
"special": 0,
"length": 2,
"colorArray": "16"
},
{
"id": 892,
"num": 16,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "16"
},
{
"id": 893,
"num": 6,
"color": 9,
"special": 0,
"length": 2,
"colorArray": "858"
},
{
"id": 894,
"num": 8,
"color": 9,
"special": 0,
"length": 0,
"colorArray": "858"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "c31a0a33-25f7-4c0d-9619-c9863d075394",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,485 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "883",
"map": [
10,
11
],
"time": 160,
"gap": [
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 6,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
},
{
"x": 8,
"y": 5,
"z": 0
},
{
"x": 8,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
},
{
"x": 8,
"y": 3,
"z": 0
},
{
"x": 7,
"y": 3,
"z": 0
},
{
"x": 8,
"y": 2,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 120,
"y": 420,
"z": 0
},
"id": 210
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": 480,
"y": 420,
"z": 0
},
"id": 220
},
{
"block": 6,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 22,
"color": 1,
"type": 0,
"position": {
"x": 480,
"y": 180,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": 0,
"y": 60,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 0,
"y": -60,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": -540,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": -540,
"z": 0
},
"id": 280
},
{
"block": 20,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": -420,
"z": 0
},
"id": 290
},
{
"block": 3,
"color": 5,
"type": 0,
"position": {
"x": 480,
"y": -540,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 2,
"type": 17,
"position": {
"x": -240,
"y": -420,
"z": 0
},
"boomTime": 1,
"floor": 1,
"floorTime": 6,
"floorMove": false,
"id": 310
},
{
"block": 2,
"color": 7,
"type": 6,
"position": {
"x": -120,
"y": -420,
"z": 0
},
"boomTime": 20,
"floor": 1,
"floorTime": 6,
"floorMove": false,
"id": 320
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": 180,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 60,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 4,
"type": 17,
"position": {
"x": -360,
"y": -300,
"z": 0
},
"boomTime": 3,
"id": 350
},
{
"block": 2,
"color": 5,
"type": 17,
"position": {
"x": 0,
"y": -300,
"z": 0
},
"boomTime": 2,
"id": 360
},
{
"block": 1,
"color": 2,
"type": 17,
"position": {
"x": -240,
"y": 420,
"z": 0
},
"boomTime": 1,
"id": 370
},
{
"block": 2,
"color": 8,
"type": 17,
"position": {
"x": 240,
"y": -60,
"z": 0
},
"boomTime": 1,
"floor": 2,
"floorTime": 9,
"floorMove": false,
"id": 380
},
{
"block": 1,
"color": 7,
"type": 17,
"position": {
"x": 240,
"y": -180,
"z": 0
},
"boomTime": 1,
"floor": 2,
"floorTime": 9,
"floorMove": false,
"id": 390
},
{
"block": 0,
"color": 6,
"type": 8,
"position": {
"x": 120,
"y": 300,
"z": 0
},
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 884,
"num": 1,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 885,
"num": 2,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 886,
"num": 3,
"color": 4,
"special": 0,
"length": 1
},
{
"id": 887,
"num": 8,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 888,
"num": 16,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 889,
"num": 18,
"color": 5,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 890,
"num": 20,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 891,
"num": 22,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 892,
"num": 32,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 893,
"num": 37,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 894,
"num": 39,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 895,
"num": 40,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 896,
"num": 38,
"color": 3,
"special": 0,
"length": 1
},
{
"id": 897,
"num": 21,
"color": 6,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 898,
"num": 23,
"color": 6,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 899,
"num": 4,
"color": 1,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 900,
"num": 9,
"color": 1,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "bf1efc64-53e9-404b-a74d-52b92833e591",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,408 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "883",
"map": [
9,
8
],
"time": 120,
"gap": [
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 7,
"y": 5,
"z": 0
},
{
"x": 7,
"y": 4,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": 120,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"id": 260
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 420,
"y": 240,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 10,
"type": 9,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 310
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": -180,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 320
},
{
"block": 0,
"color": 1,
"type": 9,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 330
},
{
"block": 0,
"color": 3,
"type": 9,
"position": {
"x": 300,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"id": 340
},
{
"block": 3,
"color": 5,
"type": 16,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"questionTime": 11,
"id": 350
},
{
"block": 0,
"color": 8,
"type": 16,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"questionTime": 13,
"id": 360
},
{
"block": 0,
"color": 9,
"type": 16,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"questionTime": 15,
"id": 370
},
{
"block": 1,
"color": 6,
"type": 7,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 380
},
{
"block": 1,
"color": 4,
"type": 7,
"position": {
"x": 420,
"y": -240,
"z": 0
},
"id": 390
},
{
"block": 2,
"color": 8,
"type": 8,
"position": {
"x": 180,
"y": -240,
"z": 0
},
"id": 400
},
{
"block": 2,
"color": 9,
"type": 8,
"position": {
"x": -60,
"y": -240,
"z": 0
},
"id": 410
}
]
],
"WALL_INFO": [
[
{
"id": 884,
"num": 0,
"color": 4,
"special": 3,
"length": 2,
"freeze": 7
},
{
"id": 885,
"num": 1,
"color": 4,
"special": 3,
"length": 0,
"freeze": 7
},
{
"id": 886,
"num": 3,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 887,
"num": 11,
"color": 9,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 888,
"num": 13,
"color": 9,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 889,
"num": 17,
"color": 8,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 890,
"num": 19,
"color": 8,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 891,
"num": 29,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 892,
"num": 26,
"color": 6,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 893,
"num": 27,
"color": 6,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 894,
"num": 18,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 895,
"num": 20,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 896,
"num": 12,
"color": 5,
"special": 0,
"length": 3
},
{
"id": 897,
"num": 14,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 898,
"num": 16,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 899,
"num": 4,
"color": 7,
"special": 0,
"length": 2
},
{
"id": 900,
"num": 10,
"color": 7,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "38610e85-707c-4451-a24a-f5458f34ebd6",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,351 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "885",
"map": [
9,
8
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 230
},
{
"block": 9,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 13,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": -120,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": -60,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 2,
"type": 1,
"position": {
"x": -300,
"y": -120,
"z": 0
},
"stacking": 9,
"id": 300
},
{
"block": 2,
"color": 10,
"type": 1,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"stacking": 8,
"id": 310
},
{
"block": 2,
"color": 9,
"type": 9,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"adhesiveTime": 2,
"lockTime": 10,
"id": 320
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"adhesiveTime": 1,
"lockTime": 10,
"id": 330
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"id": 340
},
{
"block": 2,
"color": 8,
"type": 17,
"position": {
"x": 180,
"y": 120,
"z": 0
},
"boomTime": 2,
"id": 350
},
{
"block": 2,
"color": 8,
"type": 17,
"position": {
"x": 300,
"y": -120,
"z": 0
},
"boomTime": 4,
"id": 360
},
{
"block": 0,
"color": 10,
"type": 16,
"position": {
"x": -180,
"y": -240,
"z": 0
},
"questionTime": 9,
"id": 370
},
{
"block": 0,
"color": 2,
"type": 16,
"position": {
"x": 300,
"y": -240,
"z": 0
},
"questionTime": 11,
"id": 380
},
{
"block": 0,
"color": 9,
"type": 4,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"freezeTime": 12,
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 886,
"num": 1,
"color": 8,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 887,
"num": 2,
"color": 8,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 888,
"num": 4,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 889,
"num": 7,
"color": 10,
"special": 0,
"length": 1
},
{
"id": 890,
"num": 13,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 891,
"num": 19,
"color": 2,
"special": 0,
"length": 1
},
{
"id": 892,
"num": 24,
"color": 5,
"special": 0,
"length": 1
},
{
"id": 893,
"num": 21,
"color": 9,
"special": 2,
"length": 2,
"lock": true
},
{
"id": 894,
"num": 22,
"color": 9,
"special": 2,
"length": 0,
"lock": true
},
{
"id": 895,
"num": 14,
"color": 1,
"special": 0,
"length": 3
},
{
"id": 896,
"num": 16,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 897,
"num": 18,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 898,
"num": 6,
"color": 3,
"special": 0,
"length": 3
},
{
"id": 899,
"num": 8,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 900,
"num": 10,
"color": 3,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "0b159631-e376-4c8b-839c-373291cce11d",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,536 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "886",
"map": [
10,
12
],
"time": 140,
"gap": [
{
"x": 8,
"y": 10,
"z": 0
},
{
"x": 7,
"y": 10,
"z": 0
},
{
"x": 6,
"y": 10,
"z": 0
},
{
"x": 6,
"y": 9,
"z": 0
},
{
"x": 7,
"y": 9,
"z": 0
},
{
"x": 8,
"y": 9,
"z": 0
},
{
"x": 8,
"y": 8,
"z": 0
},
{
"x": 7,
"y": 8,
"z": 0
},
{
"x": 6,
"y": 8,
"z": 0
},
{
"x": 1,
"y": 8,
"z": 0
},
{
"x": 2,
"y": 8,
"z": 0
},
{
"x": 2,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 7,
"z": 0
},
{
"x": 1,
"y": 6,
"z": 0
},
{
"x": 1,
"y": 5,
"z": 0
},
{
"x": 1,
"y": 4,
"z": 0
},
{
"x": 1,
"y": 3,
"z": 0
},
{
"x": 2,
"y": 3,
"z": 0
},
{
"x": 2,
"y": 4,
"z": 0
},
{
"x": 2,
"y": 5,
"z": 0
},
{
"x": 2,
"y": 6,
"z": 0
},
{
"x": 6,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 1,
"z": 0
},
{
"x": 5,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 2,
"z": 0
},
{
"x": 6,
"y": 3,
"z": 0
},
{
"x": 5,
"y": 3,
"z": 0
}
]
}
],
"BLOCK_INFO": [
[
{
"block": 5,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": -600,
"z": 0
},
"id": 210
},
{
"block": 4,
"color": 9,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 6,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 240
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 480,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": -360,
"y": -600,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 290
},
{
"block": 1,
"color": 4,
"type": 0,
"position": {
"x": 240,
"y": 0,
"z": 0
},
"id": 300
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"id": 310
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": -240,
"y": 480,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -120,
"y": -240,
"z": 0
},
"id": 330
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": 480,
"y": -600,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 5,
"type": 0,
"position": {
"x": 480,
"y": -240,
"z": 0
},
"id": 360
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"floor": 1,
"floorTime": 11,
"floorMove": false,
"id": 370
},
{
"block": 2,
"color": 5,
"type": 16,
"position": {
"x": 480,
"y": 0,
"z": 0
},
"questionTime": 6,
"floor": 2,
"floorTime": 7,
"floorMove": false,
"id": 380
},
{
"block": 3,
"color": 8,
"type": 4,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"freezeTime": 8,
"floor": 2,
"floorTime": 7,
"floorMove": false,
"id": 390
}
]
],
"WALL_INFO": [
[
{
"id": 887,
"num": 0,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 888,
"num": 1,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 889,
"num": 2,
"color": 10,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 890,
"num": 3,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 891,
"num": 33,
"color": 7,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 892,
"num": 34,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 893,
"num": 42,
"color": 2,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": true
},
{
"id": 894,
"num": 43,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 895,
"num": 44,
"color": 2,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 896,
"num": 39,
"color": 3,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 897,
"num": 40,
"color": 3,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 898,
"num": 7,
"color": 8,
"special": 0,
"length": 3
},
{
"id": 899,
"num": 17,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 900,
"num": 19,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 901,
"num": 26,
"color": 1,
"special": 0,
"length": 1
},
{
"id": 902,
"num": 41,
"color": 6,
"special": 0,
"length": 1
},
{
"id": 903,
"num": 35,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 904,
"num": 37,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 905,
"num": 18,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 906,
"num": 20,
"color": 4,
"special": 0,
"length": 0
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "80e14c10-452c-4b5f-8fef-afd452071c41",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,414 @@
{
"LEVEL_INFO": [
{
"risefall": [
{
"x": 4,
"y": 6,
"color": "4"
},
{
"x": 4,
"y": 5,
"color": "4"
}
],
"id": "887",
"map": [
9,
9
],
"time": 130,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": 180,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 180,
"y": 300,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": 60,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": -300,
"y": -300,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 420,
"y": -300,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -300,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 3,
"type": 0,
"position": {
"x": 60,
"y": -420,
"z": 0
},
"id": 270
},
{
"block": 22,
"color": 6,
"type": 0,
"position": {
"x": -180,
"y": 180,
"z": 0
},
"id": 280
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": -60,
"y": 60,
"z": 0
},
"id": 290
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 180,
"y": -60,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 10,
"type": 0,
"position": {
"x": 300,
"y": -420,
"z": 0
},
"id": 310
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": -420,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 1,
"type": 0,
"position": {
"x": -180,
"y": -60,
"z": 0
},
"id": 330
},
{
"block": 2,
"color": 7,
"type": 0,
"position": {
"x": 420,
"y": -60,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 6,
"type": 0,
"position": {
"x": 420,
"y": 300,
"z": 0
},
"id": 350
},
{
"block": 1,
"color": 9,
"type": 0,
"position": {
"x": 60,
"y": -180,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 2,
"type": 16,
"position": {
"x": -60,
"y": -420,
"z": 0
},
"questionTime": 5,
"id": 370
},
{
"block": 4,
"color": 5,
"type": 16,
"position": {
"x": 300,
"y": -300,
"z": 0
},
"questionTime": 10,
"id": 380
},
{
"block": 1,
"color": 5,
"type": 16,
"position": {
"x": -180,
"y": -180,
"z": 0
},
"questionTime": 12,
"id": 390
},
{
"block": 1,
"color": 8,
"type": 16,
"position": {
"x": 60,
"y": 300,
"z": 0
},
"questionTime": 15,
"id": 400
},
{
"block": 0,
"color": 6,
"type": 16,
"position": {
"x": 420,
"y": -180,
"z": 0
},
"questionTime": 14,
"id": 410
},
{
"block": 1,
"color": 3,
"type": 5,
"position": {
"x": 300,
"y": 180,
"z": 0
},
"id": 420
},
{
"block": 2,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": -300,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 2,
"type": 5,
"position": {
"x": -180,
"y": -300,
"z": 0
},
"id": 440
}
]
],
"WALL_INFO": [
[
{
"id": 888,
"num": 0,
"color": 3,
"special": 1,
"length": 1
},
{
"id": 889,
"num": 8,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 890,
"num": 10,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 891,
"num": 15,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 892,
"num": 17,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 893,
"num": 9,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 894,
"num": 11,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 895,
"num": 27,
"color": 2,
"special": 1,
"length": 1
},
{
"id": 896,
"num": 2,
"color": 6,
"special": 0,
"length": 2,
"colorArray": "565"
},
{
"id": 897,
"num": 3,
"color": 6,
"special": 0,
"length": 0,
"colorArray": "565"
},
{
"id": 898,
"num": 5,
"color": 2,
"special": 0,
"length": 2,
"colorArray": "177"
},
{
"id": 899,
"num": 6,
"color": 2,
"special": 0,
"length": 0,
"colorArray": "177"
},
{
"id": 900,
"num": 24,
"color": 3,
"special": 0,
"length": 2,
"colorArray": "20"
},
{
"id": 901,
"num": 25,
"color": 3,
"special": 0,
"length": 0,
"colorArray": "20"
},
{
"id": 902,
"num": 14,
"color": 4,
"special": 3,
"length": 1,
"freeze": 14
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "5d268e44-6144-4a3f-aa19-6dff0b818439",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,344 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "888",
"map": [
8,
8
],
"time": 90,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": 360,
"y": -240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 9,
"type": 0,
"position": {
"x": -240,
"y": -240,
"z": 0
},
"id": 220
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 230
},
{
"block": 2,
"color": 3,
"type": 0,
"position": {
"x": 240,
"y": 120,
"z": 0
},
"id": 240
},
{
"block": 2,
"color": 8,
"type": 0,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 250
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 0,
"y": -360,
"z": 0
},
"id": 260
},
{
"block": 1,
"color": 5,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 120,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 1,
"color": 2,
"type": 0,
"position": {
"x": 360,
"y": 0,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 4,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 300
},
{
"block": 1,
"color": 7,
"type": 16,
"position": {
"x": 240,
"y": -240,
"z": 0
},
"questionTime": 7,
"id": 310
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": 360,
"y": -120,
"z": 0
},
"id": 320
},
{
"block": 1,
"color": 6,
"type": 16,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"questionTime": 9,
"id": 330
},
{
"block": 1,
"color": 6,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 1,
"type": 16,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"questionTime": 13,
"id": 350
},
{
"block": 2,
"color": 10,
"type": 17,
"position": {
"x": 120,
"y": -120,
"z": 0
},
"boomTime": 1,
"id": 360
},
{
"block": 1,
"color": 3,
"type": 17,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"boomTime": 2,
"id": 370
},
{
"block": 1,
"color": 1,
"type": 17,
"position": {
"x": -120,
"y": -360,
"z": 0
},
"boomTime": 3,
"id": 380
}
]
],
"WALL_INFO": [
[
{
"id": 889,
"num": 2,
"color": 9,
"special": 3,
"length": 2,
"freeze": 8
},
{
"id": 890,
"num": 3,
"color": 9,
"special": 3,
"length": 0,
"freeze": 8
},
{
"id": 891,
"num": 20,
"color": 8,
"special": 3,
"length": 2,
"freeze": 10
},
{
"id": 892,
"num": 21,
"color": 8,
"special": 3,
"length": 0,
"freeze": 10
},
{
"id": 893,
"num": 7,
"color": 7,
"special": 0,
"length": 3
},
{
"id": 894,
"num": 9,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 895,
"num": 11,
"color": 7,
"special": 0,
"length": 0
},
{
"id": 896,
"num": 13,
"color": 6,
"special": 0,
"length": 3
},
{
"id": 897,
"num": 15,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 898,
"num": 17,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 899,
"num": 14,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 900,
"num": 16,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 901,
"num": 6,
"color": 10,
"special": 0,
"length": 2
},
{
"id": 902,
"num": 8,
"color": 10,
"special": 0,
"length": 0
},
{
"id": 903,
"num": 5,
"color": 1,
"special": 0,
"length": 1,
"colorArray": "030"
},
{
"id": 904,
"num": 23,
"color": 5,
"special": 0,
"length": 1,
"colorArray": "41"
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "faa936ee-8dfd-4dab-a3c6-ef1119826525",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,356 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "889",
"map": [
9,
8
],
"time": 110,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 120,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 300,
"y": 240,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -240,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 1,
"type": 0,
"position": {
"x": 60,
"y": -360,
"z": 0
},
"id": 240
},
{
"block": 16,
"color": 6,
"type": 0,
"position": {
"x": -300,
"y": -360,
"z": 0
},
"id": 250
},
{
"block": 1,
"color": 8,
"type": 0,
"position": {
"x": -180,
"y": 120,
"z": 0
},
"id": 260
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": -180,
"y": -360,
"z": 0
},
"id": 270
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": -60,
"y": -360,
"z": 0
},
"id": 280
},
{
"block": 22,
"color": 4,
"type": 0,
"position": {
"x": 180,
"y": 0,
"z": 0
},
"id": 290
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 300,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 0,
"color": 1,
"type": 0,
"position": {
"x": 180,
"y": 240,
"z": 0
},
"id": 310
},
{
"block": 2,
"color": 8,
"type": 2,
"position": {
"x": 420,
"y": 120,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 4,
"type": 2,
"position": {
"x": 420,
"y": -360,
"z": 0
},
"id": 330
},
{
"block": 1,
"color": 9,
"type": 2,
"position": {
"x": -180,
"y": 240,
"z": 0
},
"id": 340
},
{
"block": 0,
"color": 7,
"type": 2,
"position": {
"x": 300,
"y": 0,
"z": 0
},
"floor": 1,
"floorTime": 10,
"floorMove": false,
"id": 350
},
{
"block": 1,
"color": 2,
"type": 3,
"position": {
"x": 60,
"y": 240,
"z": 0
},
"lockTime": 4,
"id": 360
},
{
"block": 1,
"color": 5,
"type": 17,
"position": {
"x": 60,
"y": -120,
"z": 0
},
"boomTime": 1,
"id": 370
},
{
"block": 1,
"color": 7,
"type": 17,
"position": {
"x": 420,
"y": -120,
"z": 0
},
"boomTime": 2,
"id": 380
},
{
"block": 2,
"color": 5,
"type": 16,
"position": {
"x": 180,
"y": -360,
"z": 0
},
"questionTime": 12,
"id": 390
},
{
"block": 1,
"color": 2,
"type": 16,
"position": {
"x": -60,
"y": 0,
"z": 0
},
"questionTime": 7,
"id": 400
}
]
],
"WALL_INFO": [
[
{
"id": 890,
"num": 1,
"color": 4,
"special": 0,
"length": 2
},
{
"id": 891,
"num": 2,
"color": 4,
"special": 0,
"length": 0
},
{
"id": 892,
"num": 4,
"color": 7,
"special": 0,
"length": 1
},
{
"id": 893,
"num": 7,
"color": 5,
"special": 0,
"length": 2
},
{
"id": 894,
"num": 9,
"color": 5,
"special": 0,
"length": 0
},
{
"id": 895,
"num": 13,
"color": 8,
"special": 0,
"length": 2
},
{
"id": 896,
"num": 15,
"color": 8,
"special": 0,
"length": 0
},
{
"id": 897,
"num": 21,
"color": 6,
"special": 0,
"length": 3
},
{
"id": 898,
"num": 22,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 899,
"num": 23,
"color": 6,
"special": 0,
"length": 0
},
{
"id": 900,
"num": 14,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 901,
"num": 16,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 902,
"num": 6,
"color": 9,
"special": 0,
"length": 2
},
{
"id": 903,
"num": 8,
"color": 9,
"special": 0,
"length": 0
},
{
"id": 904,
"num": 19,
"color": 1,
"special": 3,
"length": 1,
"freeze": 8
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "bf2dee4a-817f-44ed-a244-67b44f1fbc67",
"importer": "json",
"subMetas": {}
}

View File

@ -0,0 +1,552 @@
{
"LEVEL_INFO": [
{
"risefall": [],
"id": "889",
"map": [
10,
10
],
"time": 150,
"gap": []
}
],
"BLOCK_INFO": [
[
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": 240,
"z": 0
},
"id": 210
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": 0,
"z": 0
},
"id": 220
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 0,
"z": 0
},
"id": 230
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 120,
"z": 0
},
"id": 240
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 240,
"z": 0
},
"id": 250
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": -120,
"y": 360,
"z": 0
},
"id": 260
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": 240,
"z": 0
},
"id": 270
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 0,
"y": 120,
"z": 0
},
"id": 280
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 120,
"y": 120,
"z": 0
},
"id": 290
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 360,
"y": -360,
"z": 0
},
"id": 300
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -360,
"z": 0
},
"id": 310
},
{
"block": 23,
"color": 10,
"type": 0,
"position": {
"x": 240,
"y": -480,
"z": 0
},
"id": 320
},
{
"block": 2,
"color": 1,
"type": 0,
"position": {
"x": -360,
"y": 240,
"z": 0
},
"id": 330
},
{
"block": 4,
"color": 7,
"type": 0,
"position": {
"x": 240,
"y": -120,
"z": 0
},
"id": 340
},
{
"block": 1,
"color": 7,
"type": 0,
"position": {
"x": -240,
"y": 120,
"z": 0
},
"id": 350
},
{
"block": 2,
"color": 9,
"type": 0,
"position": {
"x": 240,
"y": 240,
"z": 0
},
"id": 360
},
{
"block": 2,
"color": 2,
"type": 0,
"position": {
"x": -120,
"y": -480,
"z": 0
},
"id": 370
},
{
"block": 0,
"color": 8,
"type": 0,
"position": {
"x": 120,
"y": 360,
"z": 0
},
"id": 380
},
{
"block": 0,
"color": 7,
"type": 0,
"position": {
"x": 0,
"y": -120,
"z": 0
},
"id": 390
},
{
"block": 0,
"color": 10,
"type": 3,
"position": {
"x": 120,
"y": 0,
"z": 0
},
"lockTime": 3,
"id": 400
},
{
"block": 1,
"color": 10,
"type": 2,
"position": {
"x": 480,
"y": 0,
"z": 0
},
"id": 410
},
{
"block": 1,
"color": 3,
"type": 2,
"position": {
"x": 480,
"y": -240,
"z": 0
},
"id": 420
},
{
"block": 1,
"color": 2,
"type": 2,
"position": {
"x": -240,
"y": 0,
"z": 0
},
"id": 430
},
{
"block": 0,
"color": 9,
"type": 17,
"position": {
"x": -120,
"y": -120,
"z": 0
},
"boomTime": 1,
"id": 440
},
{
"block": 2,
"color": 6,
"type": 17,
"position": {
"x": 480,
"y": 240,
"z": 0
},
"boomTime": 2,
"id": 450
},
{
"block": 0,
"color": 6,
"type": 17,
"position": {
"x": 0,
"y": 360,
"z": 0
},
"boomTime": 3,
"id": 460
},
{
"block": 6,
"color": 5,
"type": 9,
"position": {
"x": 120,
"y": -480,
"z": 0
},
"adhesiveTime": 2,
"id": 470
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 0,
"y": -480,
"z": 0
},
"adhesiveTime": 1,
"id": 480
},
{
"block": 2,
"color": 10,
"type": 0,
"position": {
"x": 480,
"y": -480,
"z": 0
},
"id": 490
},
{
"block": 0,
"color": 7,
"type": 9,
"position": {
"x": 480,
"y": 120,
"z": 0
},
"adhesiveTime": 2,
"id": 500
},
{
"block": 0,
"color": 5,
"type": 9,
"position": {
"x": 360,
"y": 120,
"z": 0
},
"adhesiveTime": 1,
"id": 510
},
{
"block": 1,
"color": 8,
"type": 7,
"position": {
"x": -240,
"y": -120,
"z": 0
},
"id": 520
},
{
"block": 20,
"color": 3,
"type": 16,
"position": {
"x": -240,
"y": -480,
"z": 0
},
"questionTime": 12,
"id": 530
}
]
],
"WALL_INFO": [
[
{
"id": 890,
"num": 0,
"color": 9,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": false
},
{
"id": 891,
"num": 1,
"color": 9,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": false
},
{
"id": 892,
"num": 3,
"color": 5,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": false
},
{
"id": 893,
"num": 4,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 894,
"num": 5,
"color": 5,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": false
},
{
"id": 895,
"num": 9,
"color": 3,
"special": 0,
"length": 2
},
{
"id": 896,
"num": 11,
"color": 3,
"special": 0,
"length": 0
},
{
"id": 897,
"num": 21,
"color": 2,
"special": 0,
"length": 2
},
{
"id": 898,
"num": 23,
"color": 2,
"special": 0,
"length": 0
},
{
"id": 899,
"num": 28,
"color": 1,
"special": 0,
"length": 2
},
{
"id": 900,
"num": 29,
"color": 1,
"special": 0,
"length": 0
},
{
"id": 901,
"num": 27,
"color": 8,
"special": 3,
"length": 1,
"freeze": 7
},
{
"id": 902,
"num": 24,
"color": 7,
"special": 0,
"length": 3,
"longAndShort": 13,
"order": true
},
{
"id": 903,
"num": 25,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 904,
"num": 26,
"color": 7,
"special": 0,
"length": 0,
"longAndShort": 13,
"order": true
},
{
"id": 905,
"num": 14,
"color": 6,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 906,
"num": 16,
"color": 6,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
},
{
"id": 907,
"num": 8,
"color": 10,
"special": 0,
"length": 2,
"longAndShort": 12,
"order": true
},
{
"id": 908,
"num": 10,
"color": 10,
"special": 0,
"length": 0,
"longAndShort": 12,
"order": true
}
]
]
}

View File

@ -0,0 +1,6 @@
{
"ver": "1.0.2",
"uuid": "1d869c82-70c2-42a8-a5e3-6adf8aa92685",
"importer": "json",
"subMetas": {}
}

View File

@ -65,7 +65,7 @@ CCProgram fs %{
uniform sampler2D texture;
#endif
#define LAYERS 20
#define LAYERS 6
#define DEPTH .4
#define WIDTH .3
#define SPEED .3

View File

@ -6,11 +6,11 @@
{
"glsl1": {
"vert": "\nprecision highp float;\nuniform mat4 cc_matViewProj;\nuniform mat4 cc_matWorld;\nattribute vec3 a_position;\nattribute vec4 a_color;\nvarying vec4 v_color;\n#if USE_TEXTURE\nattribute vec2 a_uv0;\nvarying vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}",
"frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n#endif\nuniform vec4 cc_time;\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<20;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}"
"frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n#endif\nuniform vec4 cc_time;\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<6;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}"
},
"glsl3": {
"vert": "\nprecision highp float;\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nuniform CCLocal {\n mat4 cc_matWorld;\n mat4 cc_matWorldIT;\n};\nin vec3 a_position;\nin vec4 a_color;\nout vec4 v_color;\n#if USE_TEXTURE\nin vec2 a_uv0;\nout vec2 v_uv0;\n#endif\nvoid main () {\n vec4 pos = vec4(a_position, 1);\n #if CC_USE_MODEL\n pos = cc_matViewProj * cc_matWorld * pos;\n #else\n pos = cc_matViewProj * pos;\n #endif\n #if USE_TEXTURE\n v_uv0 = a_uv0;\n #endif\n v_color = a_color;\n gl_Position = pos;\n}",
"frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<20;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}"
"frag": "\nprecision highp float;\n#if USE_ALPHA_TEST\n uniform ALPHA_TEST {\n float alphaThreshold;\n };\n#endif\nuniform CCGlobal {\n mat4 cc_matView;\n mat4 cc_matViewInv;\n mat4 cc_matProj;\n mat4 cc_matProjInv;\n mat4 cc_matViewProj;\n mat4 cc_matViewProjInv;\n vec4 cc_cameraPos;\n vec4 cc_time;\n mediump vec4 cc_screenSize;\n mediump vec4 cc_screenScale;\n};\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n const mat3 p = mat3(13.323122,23.5112,21.71123,21.1212,28.7312,11.9312,21.8112,14.7212,61.3934);\nvec2 uv = 500./1000. + vec2(1.,1.)*gl_FragCoord.xy / 1000.;\nvec3 acc = vec3(0.0);\nfloat dof = 5.*sin(cc_time.x*.1);\nfor (int i=0;i<6;i++) {\n float fi = float(i);\n vec2 q = uv*(1.+fi*.4);\n float shouldDrift = step(0.6, fract(fi * 7.238917));\n float driftAmount = shouldDrift * .2 * sin(cc_time.x * 0.5 + fi * 1.5) * (1.0 + 0.5 * sin(fi * 3.7));\n q += vec2(q.y*(.3*mod(fi*7.238917,1.)-.3*.5) + driftAmount, .3*cc_time.x/(1.+fi*.4*.03));\n vec3 n = vec3(floor(q),31.189+fi);\n vec3 m = floor(n)*.00001 + fract(n);\n vec3 mp = (31415.9+m)/fract(p*m);\n vec3 r = fract(mp);\n vec2 s = abs(mod(q,1.)-.5+.9*r.xy-.45);\n s += .008*abs(2.*fract(8.*q.yx)-1.);\n float d = .5*max(s.x-s.y,s.x+s.y)+max(s.x,s.y)-.01;\n float edge = .004+.04*min(.5*abs(fi-5.-dof),1.);\n float sizeVariation = 0.9 + 0.3 * sin(fi * 2.1);\n acc += vec3(smoothstep(edge,-edge,d)*(r.x/(1.+.02*fi*.4)*sizeVariation));\n}\n float a = 0.;\n if(acc.r+acc.g+acc.b>0.3){\n a = acc.r+acc.g+acc.b;\n }\ngl_FragColor = vec4(vec3(acc*5.),a);\n}"
}
}
],