更新头像,更新关卡
|
|
@ -22,6 +22,9 @@ export default class Avatar extends cc.Component {
|
|||
@property(cc.Node)
|
||||
content2: cc.Node = null;
|
||||
|
||||
@property(cc.Node)
|
||||
content3: cc.Node = null;
|
||||
|
||||
@property(cc.SpriteAtlas)
|
||||
ui: cc.SpriteAtlas = null;
|
||||
|
||||
|
|
@ -42,8 +45,10 @@ export default class Avatar extends cc.Component {
|
|||
this.avatar = cc.fx.GameConfig.GM_INFO.useravatarIcon;
|
||||
this.avatarKuang = cc.fx.GameConfig.GM_INFO.useravaterkuang;
|
||||
this.address = cc.fx.GameConfig.GM_INFO.address;
|
||||
console.log("进入头像:", this.avatar, this.avatarKuang);
|
||||
this.changeBtnState("avatar");
|
||||
this.changeAvatar(null, this.avatar);
|
||||
this.changeState(null, "tou");
|
||||
this.getSelfAvatar();
|
||||
|
||||
let Info = this.node.getChildByName("Info");
|
||||
|
|
@ -75,19 +80,26 @@ export default class Avatar extends cc.Component {
|
|||
}
|
||||
|
||||
Info.getChildByName("FirstTime").getComponent(cc.Label).string = formattedDate;
|
||||
|
||||
for (let i = 0; i < this.content.children.length; i++) {
|
||||
this.content.children[i].getChildByName("kuang").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(this.avatarKuang);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
getSelfAvatar() {
|
||||
// this.content2.getChildByName(this.avatarKuang).getChildByName("select").active = true;
|
||||
console.log("获取进入头像:", this.avatar);
|
||||
if (this.avatar.length > 10) {
|
||||
this.setSelfAvatar(true);
|
||||
}
|
||||
else {
|
||||
this.node.getChildByName("self").getChildByName("icon").getComponent(cc.Sprite).spriteFrame =
|
||||
console.log("没有头像", this.avatar);
|
||||
this.node.getChildByName("self").getChildByName("icon").getChildByName("texture").getComponent(cc.Sprite).spriteFrame =
|
||||
this.ui.getSpriteFrame(this.avatar);
|
||||
}
|
||||
|
||||
this.node.getChildByName("self").getChildByName("kuang").getComponent(cc.Sprite).spriteFrame =
|
||||
this.ui.getSpriteFrame(this.avatarKuang);
|
||||
// this.node.getChildByName("self").getChildByName("kuang").getComponent(cc.Sprite).spriteFrame =
|
||||
// this.ui.getSpriteFrame(this.avatarKuang);
|
||||
cc.fx.GameTool.getUserAvatar((data) => {
|
||||
|
|
@ -115,29 +127,34 @@ export default class Avatar extends cc.Component {
|
|||
// 切换状态 头像和头像框
|
||||
changeState(event, state) {
|
||||
if (state == 'tou') {
|
||||
if (this.node.getChildByName("tou").opacity == 255) {
|
||||
if (this.node.getChildByName("tou").opacity == 0) {
|
||||
return;
|
||||
}
|
||||
else {
|
||||
this.node.getChildByName("tou").opacity = 255;
|
||||
this.node.getChildByName("kuang").opacity = 0;
|
||||
this.node.getChildByName("tou").opacity = 0;
|
||||
this.node.getChildByName("kuang").opacity = 255;
|
||||
this.node.getChildByName("avatar").active = true;
|
||||
this.node.getChildByName("avatarKuang").active = false;
|
||||
this.changeBtnState("avatar");
|
||||
}
|
||||
}
|
||||
// else if (state == 'kuang') {
|
||||
// if (this.node.getChildByName("kuang").opacity == 255) {
|
||||
// return;
|
||||
// }
|
||||
// else {
|
||||
// this.node.getChildByName("tou").opacity = 0;
|
||||
// this.node.getChildByName("kuang").opacity = 255;
|
||||
// this.node.getChildByName("avatar").active = false;
|
||||
// this.node.getChildByName("avatarKuang").active = true;
|
||||
// this.changeBtnState("kuang");
|
||||
// }
|
||||
// }
|
||||
else if (state == 'kuang') {
|
||||
this.closeSelectKuang();
|
||||
this.avatarKuang == cc.fx.GameConfig.GM_INFO.useravaterkuang;
|
||||
console.log("我的框状态:_________", this.avatarKuang);
|
||||
this.changeKuang(null, this.avatarKuang);
|
||||
if (this.node.getChildByName("kuang").opacity == 0) {
|
||||
this.changeBtnState("kuang");
|
||||
return;
|
||||
}
|
||||
else {
|
||||
this.node.getChildByName("tou").opacity = 255;
|
||||
this.node.getChildByName("kuang").opacity = 0;
|
||||
this.node.getChildByName("avatar").active = false;
|
||||
this.node.getChildByName("avatarKuang").active = true;
|
||||
this.changeBtnState("kuang");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// 判断按钮状态,切换按钮状态
|
||||
|
|
@ -170,7 +187,9 @@ export default class Avatar extends cc.Component {
|
|||
this.avatar = avatar;
|
||||
switch (avatar) {
|
||||
case "icon":
|
||||
this.avatar = cc.fx.GameConfig.GM_INFO.useravatar;
|
||||
if (cc.fx.GameConfig.GM_INFO.useravatar.length > 10) {
|
||||
this.avatar = cc.fx.GameConfig.GM_INFO.useravatar;
|
||||
}
|
||||
this.content.children[0].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_0":
|
||||
|
|
@ -206,6 +225,24 @@ export default class Avatar extends cc.Component {
|
|||
case "icon_10":
|
||||
this.content.children[11].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_11":
|
||||
this.content.children[12].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_12":
|
||||
this.content.children[13].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_13":
|
||||
this.content.children[14].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_14":
|
||||
this.content.children[15].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_15":
|
||||
this.content.children[16].getChildByName("select").active = true;
|
||||
break;
|
||||
case "icon_16":
|
||||
this.content.children[17].getChildByName("select").active = true;
|
||||
break;
|
||||
default:
|
||||
if (this.avatar.length > 10) {
|
||||
this.content.children[0].getChildByName("select").active = true;
|
||||
|
|
@ -225,11 +262,13 @@ export default class Avatar extends cc.Component {
|
|||
cc.assetManager.loadRemote(cc.fx.GameConfig.GM_INFO.useravatar, { ext: '.png' }, (err, texture: cc.Texture2D) => {
|
||||
if (texture) {
|
||||
if (data == true || this.avatar.length > 10) {
|
||||
var sprite = self.node.getChildByName("self").getChildByName("icon").getComponent(cc.Sprite);
|
||||
var sprite = self.node.getChildByName("self").getChildByName("icon").getChildByName("texture").getComponent(cc.Sprite);
|
||||
sprite.spriteFrame = new cc.SpriteFrame(texture);
|
||||
var sprite2 = self.content.children[0].getChildByName("icon").getChildByName("texture").getComponent(cc.Sprite);
|
||||
sprite2.spriteFrame = new cc.SpriteFrame(texture);
|
||||
}
|
||||
var sprite2 = self.content.children[0].getChildByName("icon").getComponent(cc.Sprite);
|
||||
sprite2.spriteFrame = new cc.SpriteFrame(texture);
|
||||
// var sprite2 = self.content.children[0].getChildByName("icon").getComponent(cc.Sprite);
|
||||
// sprite2.spriteFrame = new cc.SpriteFrame(texture);
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
@ -243,14 +282,18 @@ export default class Avatar extends cc.Component {
|
|||
this.setSelfAvatar(true);
|
||||
}
|
||||
else {
|
||||
this.node.getChildByName("self").getChildByName("icon").getComponent(cc.Sprite).spriteFrame =
|
||||
this.node.getChildByName("self").getChildByName("icon").getChildByName("texture").getComponent(cc.Sprite).spriteFrame =
|
||||
this.ui.getSpriteFrame(this.avatar);
|
||||
}
|
||||
}
|
||||
else {
|
||||
console.log("________________保存头像框");
|
||||
cc.fx.GameConfig.GM_INFO.useravaterkuang = this.avatarKuang;
|
||||
// this.node.getChildByName("self").getChildByName("kuang").getComponent(cc.Sprite).spriteFrame =
|
||||
// this.ui.getSpriteFrame(this.avatarKuang);
|
||||
this.node.getChildByName("self").getChildByName("kuang").getComponent(cc.Sprite).spriteFrame =
|
||||
this.ui.getSpriteFrame(this.avatarKuang);
|
||||
}
|
||||
for (let i = 0; i < this.content.children.length; i++) {
|
||||
this.content.children[i].getChildByName("kuang").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(this.avatarKuang);
|
||||
}
|
||||
this.node.getChildByName("btn").active = false;
|
||||
this.node.getChildByName("btnUse").active = true;
|
||||
|
|
@ -260,7 +303,8 @@ export default class Avatar extends cc.Component {
|
|||
changeKuang(event, kuang) {
|
||||
this.closeSelectKuang();
|
||||
this.avatarKuang = kuang;
|
||||
// this.content2.getChildByName(kuang).getChildByName("select").active = true;
|
||||
console.log("谁应该为true", kuang);
|
||||
this.content3.getChildByName(kuang).getChildByName("select").active = true;
|
||||
this.changeBtnState("kuang");
|
||||
}
|
||||
|
||||
|
|
@ -271,8 +315,8 @@ export default class Avatar extends cc.Component {
|
|||
}
|
||||
|
||||
closeSelectKuang() {
|
||||
for (let i = 0; i < this.content2.children.length; i++) {
|
||||
this.content2.children[i].getChildByName("select").active = false;
|
||||
for (let i = 0; i < this.content3.children.length; i++) {
|
||||
this.content3.children[i].getChildByName("select").active = false;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -591,14 +591,16 @@ export default class JiaZai extends cc.Component {
|
|||
console.log("获取头像链接:", cc.fx.GameConfig.GM_INFO.useravatarIcon);
|
||||
cc.assetManager.loadRemote(cc.fx.GameConfig.GM_INFO.useravatarIcon, { ext: '.png' }, (err, texture: cc.Texture2D) => {
|
||||
if (texture) {
|
||||
top.getChildByName("avatar").getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture);
|
||||
top.getChildByName("avatar").getChildByName("avatar").getComponent(cc.Sprite).spriteFrame = new cc.SpriteFrame(texture);
|
||||
}
|
||||
top.getChildByName("avatar").opacity = 255;
|
||||
top.getChildByName("kuang1").opacity = 255;
|
||||
})
|
||||
} else {
|
||||
top.getChildByName("avatar").getComponent(cc.Sprite).spriteFrame =
|
||||
top.getChildByName("avatar").getChildByName("avatar").getComponent(cc.Sprite).spriteFrame =
|
||||
this.avatarUI.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravatarIcon);
|
||||
top.getChildByName("avatar").opacity = 255;
|
||||
top.getChildByName("kuang1").opacity = 255;
|
||||
}
|
||||
|
||||
top.getChildByName("kuang").getComponent(cc.Sprite).spriteFrame =
|
||||
|
|
@ -959,42 +961,47 @@ export default class JiaZai extends cc.Component {
|
|||
return;
|
||||
}
|
||||
|
||||
let eventName = "";
|
||||
let btnName = ""
|
||||
if (customEventData !== undefined) {
|
||||
btnName = customEventData;
|
||||
eventName = "click"
|
||||
} else {
|
||||
btnName = "shopBtn";
|
||||
eventName = "auto";
|
||||
}
|
||||
let dataInfo = {
|
||||
interface_id: "shop", // 界面名称
|
||||
reason: eventName, // 事件名称
|
||||
is_first_exposure: false, // 是否首次曝光
|
||||
entry_point: btnName, // 按钮名称
|
||||
}
|
||||
cc.fx.GameTool.shushu_Track("interface_exposure", dataInfo);
|
||||
console.log("统计功能", dataInfo);
|
||||
|
||||
if (!this.shopNode) {
|
||||
// 第一次使用,创建节点
|
||||
this.shopNode = cc.instantiate(JiaZai.cachedShopPrefab);
|
||||
this.node.addChild(this.shopNode);
|
||||
this.shopNode.getComponent("shop").init();
|
||||
} else {
|
||||
// 非第一次使用,直接激活节点
|
||||
this.shopNode.active = true;
|
||||
this.shopNode.getComponent("shop").init();
|
||||
}
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined') {
|
||||
// console.log("执行开始游戏shop")
|
||||
//@ts-ignore
|
||||
wx.offShow(this.onShowListener);
|
||||
//@ts-ignore
|
||||
wx.offHide(this.onHideListener);
|
||||
}
|
||||
Utils.getShopDouble(res => {
|
||||
if (res.code === 1) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble = res.shopDouble;
|
||||
let eventName = "";
|
||||
let btnName = ""
|
||||
if (customEventData !== undefined) {
|
||||
btnName = customEventData;
|
||||
eventName = "click"
|
||||
} else {
|
||||
btnName = "shopBtn";
|
||||
eventName = "auto";
|
||||
}
|
||||
let dataInfo = {
|
||||
interface_id: "shop", // 界面名称
|
||||
reason: eventName, // 事件名称
|
||||
is_first_exposure: false, // 是否首次曝光
|
||||
entry_point: btnName, // 按钮名称
|
||||
}
|
||||
cc.fx.GameTool.shushu_Track("interface_exposure", dataInfo);
|
||||
console.log("统计功能", dataInfo);
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble = res.data.shopDouble;
|
||||
if (!this.shopNode) {
|
||||
// 第一次使用,创建节点
|
||||
this.shopNode = cc.instantiate(JiaZai.cachedShopPrefab);
|
||||
this.node.addChild(this.shopNode);
|
||||
this.shopNode.getComponent("shop").init((res.data.shopDouble));
|
||||
} else {
|
||||
// 非第一次使用,直接激活节点
|
||||
this.shopNode.active = true;
|
||||
this.shopNode.getComponent("shop").init((res.data.shopDouble));
|
||||
}
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined') {
|
||||
// console.log("执行开始游戏shop")
|
||||
//@ts-ignore
|
||||
wx.offShow(this.onShowListener);
|
||||
//@ts-ignore
|
||||
wx.offHide(this.onHideListener);
|
||||
}
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
openRewardWindow(data, month?: number) {
|
||||
|
|
|
|||
|
|
@ -2656,6 +2656,7 @@ export default class MapConroler extends cc.Component {
|
|||
}
|
||||
// MiniGameSdk.API.showToast("体力值减少");
|
||||
MapConroler._instance = null;
|
||||
cc.fx.GameTool.setWinStreak("fail");
|
||||
cc.fx.GameConfig.LEVEL_INFO_init(false, 0, false);
|
||||
if (this.new_mode == 3) {
|
||||
this.node.parent.parent.getChildByName("Win").active = false;
|
||||
|
|
@ -2687,8 +2688,12 @@ export default class MapConroler extends cc.Component {
|
|||
setTimeout(() => {
|
||||
cc.fx.GameConfig.GM_INFO.otherLevel = 0;
|
||||
cc.fx.GameConfig.GM_INFO.otherUid = "";
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
let jg = cc.fx.GameTool.getAuthorizationAvatar();
|
||||
if (!jg) {
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
}
|
||||
|
||||
cc.director.loadScene("HomeScene");
|
||||
}, 1200);
|
||||
}
|
||||
|
|
@ -4056,12 +4061,12 @@ export default class MapConroler extends cc.Component {
|
|||
let shu = block.getComponent("Block").shu;
|
||||
let direction = wall.node.parent.name;
|
||||
if (direction == "left" || direction == "right") {
|
||||
if (wall.length >= shu) {
|
||||
if (wall.wall_Info.length >= shu) {
|
||||
jg = true;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (wall.length >= heng) {
|
||||
if (wall.wall_Info.length >= heng) {
|
||||
jg = true;
|
||||
}
|
||||
}
|
||||
|
|
@ -4074,15 +4079,19 @@ export default class MapConroler extends cc.Component {
|
|||
//判断方块是否是可移动类型,或者可消除类型
|
||||
blockCanMove(block) {
|
||||
if (block.getComponent("Block").type == 10 || block.getComponent("Block").type == 3
|
||||
|| block.getComponent("Block").type == 4 || block.getComponent("Block").type == 16) {
|
||||
|| block.getComponent("Block").type == 4) {
|
||||
return false;
|
||||
}
|
||||
//如果方块有锁,并且锁关着,则不能通过
|
||||
else if (block.getComponent("Block").block_Info.lock != undefined && block.getComponent("Block").block_Info.lock != null) {
|
||||
if (block.getComponent("Block").block_Info.lock == true) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
// if (block.getComponent("Block").type == 10 || block.getComponent("Block").type == 3
|
||||
// || block.getComponent("Block").type == 4 || block.getComponent("Block").type == 16) {
|
||||
// return false;
|
||||
// }
|
||||
// //如果方块有锁,并且锁关着,则不能通过
|
||||
// else if (block.getComponent("Block").block_Info.lock != undefined && block.getComponent("Block").block_Info.lock != null) {
|
||||
// if (block.getComponent("Block").block_Info.lock == true) {
|
||||
// return false;
|
||||
// }
|
||||
// }
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
@ -4090,15 +4099,17 @@ export default class MapConroler extends cc.Component {
|
|||
//提前判断游戏结束
|
||||
predict_End(colorTemp: number) {
|
||||
//return true;
|
||||
// console.log("提前判断游戏结束");
|
||||
console.log("提前判断游戏结束");
|
||||
if (this.gameOver || this.gameWin) {
|
||||
return true;
|
||||
}
|
||||
//有变色门,且无开关门
|
||||
if (this.changeColor == true && this.openWall.length == 0) {
|
||||
alert("11111111");
|
||||
return true;
|
||||
}
|
||||
if (this.blocks.length == 0) {
|
||||
alert("2222222");
|
||||
return true;
|
||||
}
|
||||
let result = false;
|
||||
|
|
@ -4128,7 +4139,7 @@ export default class MapConroler extends cc.Component {
|
|||
else {
|
||||
if (this.wall_Pass[j].special == 2) {
|
||||
if (this.wall_Pass[j].open == true) {
|
||||
// console.log("开关门并且开着");
|
||||
console.log("开关门并且开着");
|
||||
result = this.blockCanPass(this.blocks[i], this.wall_Pass[j]);
|
||||
if (result == true)
|
||||
return result;
|
||||
|
|
@ -4137,12 +4148,12 @@ export default class MapConroler extends cc.Component {
|
|||
if (this.blockCanPass(this.blocks[i], this.wall_Pass[j])) {
|
||||
openResult = false;
|
||||
}
|
||||
// console.log("开关门并且关着,________不可通行");
|
||||
console.log("开关门并且关着,________不可通行");
|
||||
continue;
|
||||
}
|
||||
}
|
||||
else if (this.wall_Pass[j].special == 3 || this.wall_Pass[j].special == 4 || this.wall_Pass[j].special == 5 || this.wall_Pass[j].special == 6) {
|
||||
// console.log("冻结门,不可通行");
|
||||
console.log("冻结门,不可通行");
|
||||
continue;
|
||||
}
|
||||
else {
|
||||
|
|
|
|||
|
|
@ -193,6 +193,43 @@ export default class NumberToImage extends cc.Component {
|
|||
}
|
||||
}
|
||||
|
||||
static numberToImageNodesShop(number, width, posX, name, targetNode: cc.Node, middle: boolean = false) {
|
||||
const numStr = number.toString();
|
||||
let cha = 0;
|
||||
if (number > 99) cha = -posX
|
||||
else if (number < 10) cha = posX
|
||||
if (targetNode.children.length > 0)
|
||||
targetNode.removeAllChildren();
|
||||
|
||||
const digitNodes: cc.Node[] = [];
|
||||
for (let i = 0; i < numStr.length; i++) {
|
||||
const digit = parseInt(numStr[i], 10);
|
||||
const node = new cc.Node();
|
||||
const sprite = node.addComponent(cc.Sprite);
|
||||
sprite.spriteFrame = this.font3._spriteFrames[name + digit + ""];
|
||||
digitNodes.push(node);
|
||||
}
|
||||
|
||||
// 计算总宽度
|
||||
const totalWidth = (numStr.length - 1) * width + (digitNodes[0]?.width || 0);
|
||||
|
||||
if (middle) {
|
||||
// 计算居中的起始位置
|
||||
const startX = -totalWidth / 2;
|
||||
for (let i = 0; i < digitNodes.length; i++) {
|
||||
const node = digitNodes[i];
|
||||
node.x = startX + i * width;
|
||||
if (targetNode) node.parent = targetNode;
|
||||
}
|
||||
} else {
|
||||
for (let i = 0; i < digitNodes.length; i++) {
|
||||
const node = digitNodes[i];
|
||||
node.x = i * width + cha;
|
||||
if (targetNode) node.parent = targetNode;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
static getTimeMargin(number, width, name, targetNode: cc.Node) {
|
||||
let timeArr = [];
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
|
||||
|
||||
import MapConroler from "./Map";
|
||||
import Utils from "./module/Pay/Utils";
|
||||
import NumberToImage from "./NumberToImage";
|
||||
import { MiniGameSdk } from "./Sdk/MiniGameSdk";
|
||||
|
||||
|
|
@ -61,6 +62,9 @@ export default class SceneManager extends cc.Component {
|
|||
@property(cc.Node)
|
||||
icon: cc.Node = null;
|
||||
|
||||
@property(cc.Node)
|
||||
kuang: cc.Node = null;
|
||||
|
||||
@property({ type: [cc.Prefab], tooltip: "方块数组" })
|
||||
Block_Array: Array<cc.Prefab> = [];
|
||||
|
||||
|
|
@ -161,6 +165,8 @@ export default class SceneManager extends cc.Component {
|
|||
this.level.children[i].color = cc.Color.BLACK;
|
||||
}
|
||||
//设置头像
|
||||
this.kuang.getComponent(cc.Sprite).spriteFrame =
|
||||
this.avatar.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravaterkuang);
|
||||
let icon = this.avatar.getSpriteFrame(cc.fx.GameConfig.GM_INFO.useravatarIcon);
|
||||
let iphone = cc.fx.GameConfig.GM_INFO.useravatarIcon.substring(0, 4);
|
||||
console.log("头像_________", cc.fx.GameConfig.GM_INFO.useravatarIcon, cc.fx.GameConfig.GM_INFO.useravatar);
|
||||
|
|
@ -225,8 +231,11 @@ export default class SceneManager extends cc.Component {
|
|||
}
|
||||
|
||||
startGame() {
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
let jg = cc.fx.GameTool.getAuthorizationAvatar();
|
||||
if (!jg) {
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
}
|
||||
cc.director.loadScene("HomeScene", (err) => {
|
||||
if (err) {
|
||||
console.error('加载 HomeScene 场景失败:', err);
|
||||
|
|
@ -279,8 +288,11 @@ export default class SceneManager extends cc.Component {
|
|||
setTimeout(() => {
|
||||
cc.fx.GameConfig.GM_INFO.otherLevel = 0;
|
||||
cc.fx.GameConfig.GM_INFO.otherUid = "";
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
let jg = cc.fx.GameTool.getAuthorizationAvatar();
|
||||
if (!jg) {
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
}
|
||||
cc.director.loadScene("HomeScene");
|
||||
}, 1200);
|
||||
}
|
||||
|
|
@ -317,8 +329,11 @@ export default class SceneManager extends cc.Component {
|
|||
switchToEmptyScene() {
|
||||
const allNodes = cc.director.getScene().children;
|
||||
this.destroyNodesInFrames(allNodes, () => {
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
let jg = cc.fx.GameTool.getAuthorizationAvatar();
|
||||
if (!jg) {
|
||||
cc.fx.GameTool.getUserAvatar(() => {
|
||||
})
|
||||
}
|
||||
cc.director.loadScene("HomeScene");
|
||||
});
|
||||
}
|
||||
|
|
@ -424,37 +439,42 @@ export default class SceneManager extends cc.Component {
|
|||
return;
|
||||
}
|
||||
|
||||
let eventName = "";
|
||||
let btnName = ""
|
||||
if (customEventData !== undefined) {
|
||||
btnName = customEventData;
|
||||
eventName = "click"
|
||||
} else {
|
||||
btnName = "shop_level";
|
||||
eventName = "auto";
|
||||
}
|
||||
let dataInfo = {
|
||||
interface_id: "shop", // 界面名称
|
||||
reason: eventName, // 事件名称
|
||||
is_first_exposure: false, // 是否首次曝光
|
||||
entry_point: btnName, // 按钮名称
|
||||
}
|
||||
cc.fx.GameTool.shushu_Track("interface_exposure", dataInfo);
|
||||
Utils.getShopDouble(res => {
|
||||
if (res.code === 1) {
|
||||
let eventName = "";
|
||||
let btnName = ""
|
||||
if (customEventData !== undefined) {
|
||||
btnName = customEventData;
|
||||
eventName = "click"
|
||||
} else {
|
||||
btnName = "shop_level";
|
||||
eventName = "auto";
|
||||
}
|
||||
let dataInfo = {
|
||||
interface_id: "shop", // 界面名称
|
||||
reason: eventName, // 事件名称
|
||||
is_first_exposure: false, // 是否首次曝光
|
||||
entry_point: btnName, // 按钮名称
|
||||
}
|
||||
cc.fx.GameTool.shushu_Track("interface_exposure", dataInfo);
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble = res.data.shopDouble;
|
||||
|
||||
MapConroler._instance.pause = true;
|
||||
MapConroler._instance.stopBoom();
|
||||
if (!this.shopNode) {
|
||||
// 第一次使用,创建节点
|
||||
this.shopNode = cc.instantiate(SceneManager.cachedShopPrefab);
|
||||
this.node.addChild(this.shopNode);
|
||||
this.shopNode.getComponent("shop").init(res.data.shopDouble);
|
||||
} else {
|
||||
// 非第一次使用,直接激活节点
|
||||
this.shopNode.active = true;
|
||||
this.shopNode.getComponent("shop").init(res.data.shopDouble);
|
||||
}
|
||||
// console.log("shopNode parent:", this.shopNode.parent);
|
||||
}
|
||||
});
|
||||
|
||||
MapConroler._instance.pause = true;
|
||||
MapConroler._instance.stopBoom();
|
||||
if (!this.shopNode) {
|
||||
// 第一次使用,创建节点
|
||||
this.shopNode = cc.instantiate(SceneManager.cachedShopPrefab);
|
||||
this.node.addChild(this.shopNode);
|
||||
this.shopNode.getComponent("shop").init();
|
||||
} else {
|
||||
// 非第一次使用,直接激活节点
|
||||
this.shopNode.active = true;
|
||||
this.shopNode.getComponent("shop").init();
|
||||
}
|
||||
// console.log("shopNode parent:", this.shopNode.parent);
|
||||
}
|
||||
//打开月卡
|
||||
openMonthlyCard(customEventData?: string) {
|
||||
|
|
|
|||
|
|
@ -137,7 +137,8 @@ export class GameConfig {
|
|||
address: string; //用户城市信息
|
||||
firstTime: number; //用户注册时间
|
||||
longitude: string; //用户经度
|
||||
cityRank: number;
|
||||
cityRank: number; //城市排名
|
||||
shopDouble: { gold_1: boolean; gold_2: boolean; gold_3: boolean; gold_4: boolean; gold_5: boolean; gold_6: boolean; };
|
||||
};
|
||||
|
||||
|
||||
|
|
@ -150,6 +151,7 @@ export class GameConfig {
|
|||
|
||||
|
||||
|
||||
|
||||
//游戏内信息
|
||||
|
||||
static get Instance() {
|
||||
|
|
@ -316,6 +318,14 @@ export class GameConfig {
|
|||
firstTime: 0, //用户注册时间
|
||||
longitude: "", //用户经度
|
||||
cityRank: 99, //城市排名
|
||||
shopDouble: {
|
||||
"gold_1": false,
|
||||
"gold_2": false,
|
||||
"gold_3": false,
|
||||
"gold_4": false,
|
||||
"gold_5": false,
|
||||
"gold_6": false
|
||||
}
|
||||
};
|
||||
// this.setCode(this.getKey("scode"));
|
||||
// this.GM_INFO.level = 0;
|
||||
|
|
|
|||
|
|
@ -1148,6 +1148,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//设置每日任务信息
|
||||
static setDailyQuestInfo(callBack) {
|
||||
//@ts-ignore
|
||||
if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) {
|
||||
|
|
@ -1184,6 +1185,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//获取每日任务奖励
|
||||
static getDailyQuestReward(data, callBack) {
|
||||
//@ts-ignore
|
||||
if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) {
|
||||
|
|
@ -1212,6 +1214,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//设置连胜次数
|
||||
static setWinStreak(callBack) {
|
||||
//@ts-ignore
|
||||
if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) {
|
||||
|
|
@ -1237,6 +1240,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//获取通行证等级
|
||||
static getpassCheckLv(callBack) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1262,6 +1266,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//设置通行证等级
|
||||
static setPassCheckLv(callBack, data) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1292,6 +1297,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//获取通行证信息
|
||||
static getPassCheckInfo(callBack) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1317,6 +1323,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//设置通行证信息
|
||||
static setPassCheckInfo(callBack, data) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1342,6 +1349,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//修改储存城市信息
|
||||
static setCityInfo(callBack, data, useReverseGeocoding) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1373,6 +1381,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//设置城市信息失败
|
||||
static setFailCityInfo() {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1403,6 +1412,7 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
//获取城市前100名排名
|
||||
static getCityRank(callBack, data) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
|
|
@ -1435,4 +1445,51 @@ export default class Utils {
|
|||
}
|
||||
}
|
||||
|
||||
static getShopDouble(callBack) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
let uid = cc.fx.StorageMessage.getStorage("uid");
|
||||
//旧的读取数据设置数据方法,以强联网为主
|
||||
if (uid != undefined && uid != "" && uid != null) {
|
||||
cc.fx.GameConfig.GM_INFO.uid = uid;
|
||||
}
|
||||
let setData = {
|
||||
uid: cc.fx.GameConfig.GM_INFO.uid,
|
||||
action: 'read',
|
||||
}
|
||||
Utils.POST("shopDouble", setData, res => {
|
||||
if (res.code === 1) {
|
||||
console.log("获取双倍信息成功", res);
|
||||
if (callBack) callBack(res);
|
||||
} else {
|
||||
console.log("获取双倍信息失败", res);
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
static setShopDouble(callBack, data) {
|
||||
//@ts-ignore
|
||||
if (typeof wx !== 'undefined' && wx !== null) {
|
||||
let uid = cc.fx.StorageMessage.getStorage("uid");
|
||||
//旧的读取数据设置数据方法,以强联网为主
|
||||
if (uid != undefined && uid != "" && uid != null) {
|
||||
cc.fx.GameConfig.GM_INFO.uid = uid;
|
||||
}
|
||||
let setData = {
|
||||
uid: cc.fx.GameConfig.GM_INFO.uid,
|
||||
action: 'save',
|
||||
shopDouble: JSON.stringify(data),
|
||||
}
|
||||
Utils.POST("shopDouble", setData, res => {
|
||||
if (res.code === 1) {
|
||||
console.log("设置双倍信息成功", res);
|
||||
if (callBack) callBack(res);
|
||||
} else {
|
||||
console.log("设置双倍信息失败", res);
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ export default class ItemRender extends cc.Component {
|
|||
}
|
||||
if (this.data.useravatar == "" || this.data.useravatar == null || this.data.useravatar == undefined
|
||||
) {
|
||||
this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
|
||||
this.node.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
|
||||
}
|
||||
else if (this.data.useravatar == "0" || this.data.useravatar == "1" || this.data.useravatar == "2"
|
||||
|| this.data.useravatar == "3" || this.data.useravatar == "4" || this.data.useravatar == "5" || this.data.useravatar == "6"
|
||||
|
|
@ -60,7 +60,7 @@ export default class ItemRender extends cc.Component {
|
|||
let useravatar = this.data.useravatar;
|
||||
let useravatarTemp = "icon_" + useravatar;
|
||||
console.log("用户头像:", useravatarTemp);
|
||||
this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp);
|
||||
this.node.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp);
|
||||
}
|
||||
|
||||
else this.setPic();
|
||||
|
|
@ -76,7 +76,7 @@ export default class ItemRender extends cc.Component {
|
|||
cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => {
|
||||
if (texture) {
|
||||
this.node.getChildByName("pic").active = true;
|
||||
var sprite = this.node.getChildByName("pic").getComponent(cc.Sprite);
|
||||
var sprite = this.node.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite);
|
||||
sprite.spriteFrame = new cc.SpriteFrame(texture);
|
||||
// console.log(this.data.rank,"设置头像成功",err);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -426,8 +426,8 @@ var GameTool = {
|
|||
//关卡上限
|
||||
maxLevel() {
|
||||
let jg = false;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 729) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 730;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 759) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 760;
|
||||
jg = true;
|
||||
}
|
||||
return jg;
|
||||
|
|
@ -807,9 +807,9 @@ var GameTool = {
|
|||
let userInfo = {}
|
||||
console.log("源数据:", cc.fx.GameConfig.GM_INFO.useravatarIcon, cc.fx.GameConfig.GM_INFO.useravaterkuang);
|
||||
let useravatar = cc.fx.GameConfig.GM_INFO.useravatarIcon;
|
||||
console.log(cc.fx.GameTool.getCharAtPosition(useravatar, 5));
|
||||
console.log(cc.fx.GameTool.getCharAtPosition(useravatar, 6));
|
||||
if (useravatar.length < 10) {
|
||||
useravatar = cc.fx.GameTool.getCharAtPosition(useravatar, 5);
|
||||
useravatar = cc.fx.GameTool.getCharAtPosition(useravatar, 6);
|
||||
}
|
||||
let useravaterkuang = cc.fx.GameConfig.GM_INFO.useravaterkuang;
|
||||
useravaterkuang = (parseInt(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6)) - 1) + "";
|
||||
|
|
@ -852,21 +852,61 @@ var GameTool = {
|
|||
let getCoin = 0;
|
||||
|
||||
var rewardData = null;
|
||||
let shop = cc.find("Canvas/shop");
|
||||
let shopComp = null;
|
||||
if (shop) {
|
||||
shopComp = shop.getComponent("shop");
|
||||
}
|
||||
//console.log(productId);
|
||||
//console.log("发放奖励", productId);
|
||||
switch (productId) {
|
||||
case "gold_1":
|
||||
cc.fx.GameTool.changeCoin(1200);
|
||||
coin = 1200;
|
||||
if (cc.fx.GameConfig.GM_INFO.shopDouble.gold_1 == false) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble.gold_1 = true;
|
||||
cc.fx.GameTool.changeCoin(2400);
|
||||
coin = 2400;
|
||||
console.log("获得双倍金币:", coin)
|
||||
MiniGameSdk.API.showToast("充值成功,获得双倍金币");
|
||||
if (shopComp) {
|
||||
shopComp.initCoin();
|
||||
}
|
||||
Utils.setShopDouble((res) => {
|
||||
if (res.code == 1) {
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.shopDouble)
|
||||
}
|
||||
else {
|
||||
cc.fx.GameTool.changeCoin(1200);
|
||||
coin = 1200;
|
||||
}
|
||||
|
||||
price = 600;
|
||||
|
||||
// MiniGameSdk.API.showToast("充值成功,获得1200金币");
|
||||
rewardData = [
|
||||
{ type: "coin", count: coin },
|
||||
]
|
||||
break;
|
||||
case "gold_2":
|
||||
cc.fx.GameTool.changeCoin(8000);
|
||||
coin = 8000;
|
||||
if (cc.fx.GameConfig.GM_INFO.shopDouble.gold_2 == false) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble.gold_2 = true;
|
||||
cc.fx.GameTool.changeCoin(16000);
|
||||
coin = 16000;
|
||||
console.log("获得双倍金币:", coin)
|
||||
MiniGameSdk.API.showToast("充值成功,获得双倍金币");
|
||||
if (shopComp) {
|
||||
shopComp.initCoin();
|
||||
}
|
||||
Utils.setShopDouble((res) => {
|
||||
if (res.code == 1) {
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.shopDouble)
|
||||
}
|
||||
else {
|
||||
cc.fx.GameTool.changeCoin(8000);
|
||||
coin = 8000;
|
||||
}
|
||||
|
||||
price = 3600;
|
||||
// MiniGameSdk.API.showToast("充值成功,获得8000金币");
|
||||
rewardData = [
|
||||
|
|
@ -874,8 +914,24 @@ var GameTool = {
|
|||
]
|
||||
break;
|
||||
case "gold_3":
|
||||
cc.fx.GameTool.changeCoin(16000);
|
||||
coin = 16000;
|
||||
if (cc.fx.GameConfig.GM_INFO.shopDouble.gold_3 == false) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble.gold_3 = true;
|
||||
cc.fx.GameTool.changeCoin(32000);
|
||||
coin = 32000;
|
||||
console.log("获得双倍金币:", coin)
|
||||
MiniGameSdk.API.showToast("充值成功,获得双倍金币");
|
||||
if (shopComp) {
|
||||
shopComp.initCoin();
|
||||
}
|
||||
Utils.setShopDouble((res) => {
|
||||
if (res.code == 1) {
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.shopDouble)
|
||||
}
|
||||
else {
|
||||
cc.fx.GameTool.changeCoin(16000);
|
||||
coin = 16000;
|
||||
}
|
||||
price = 6800;
|
||||
// MiniGameSdk.API.showToast("充值成功,获得16000金币");
|
||||
rewardData = [
|
||||
|
|
@ -883,8 +939,25 @@ var GameTool = {
|
|||
]
|
||||
break;
|
||||
case "gold_4":
|
||||
cc.fx.GameTool.changeCoin(32000);
|
||||
coin = 32000;
|
||||
if (cc.fx.GameConfig.GM_INFO.shopDouble.gold_4 == false) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble.gold_4 = true;
|
||||
cc.fx.GameTool.changeCoin(64000);
|
||||
coin = 64000;
|
||||
console.log("获得双倍金币:", coin)
|
||||
MiniGameSdk.API.showToast("充值成功,获得双倍金币");
|
||||
if (shopComp) {
|
||||
shopComp.initCoin();
|
||||
}
|
||||
Utils.setShopDouble((res) => {
|
||||
if (res.code == 1) {
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.shopDouble)
|
||||
}
|
||||
else {
|
||||
cc.fx.GameTool.changeCoin(32000);
|
||||
coin = 32000;
|
||||
}
|
||||
|
||||
price = 12800;
|
||||
// MiniGameSdk.API.showToast("充值成功,获得32000金币");
|
||||
rewardData = [
|
||||
|
|
@ -892,8 +965,25 @@ var GameTool = {
|
|||
]
|
||||
break;
|
||||
case "gold_5":
|
||||
cc.fx.GameTool.changeCoin(100000);
|
||||
coin = 100000;
|
||||
if (cc.fx.GameConfig.GM_INFO.shopDouble.gold_5 == false) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble.gold_5 = true;
|
||||
cc.fx.GameTool.changeCoin(200000);
|
||||
coin = 200000;
|
||||
console.log("获得双倍金币:", coin)
|
||||
Utils.setShopDouble((res) => {
|
||||
if (res.code == 1) {
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.shopDouble)
|
||||
MiniGameSdk.API.showToast("充值成功,获得双倍金币");
|
||||
if (shopComp) {
|
||||
shopComp.initCoin();
|
||||
}
|
||||
}
|
||||
else {
|
||||
cc.fx.GameTool.changeCoin(100000);
|
||||
coin = 100000;
|
||||
}
|
||||
|
||||
price = 32800;
|
||||
// MiniGameSdk.API.showToast("充值成功,获得100000金币");
|
||||
rewardData = [
|
||||
|
|
@ -901,8 +991,25 @@ var GameTool = {
|
|||
]
|
||||
break;
|
||||
case "gold_6":
|
||||
cc.fx.GameTool.changeCoin(240000);
|
||||
coin = 240000;
|
||||
if (cc.fx.GameConfig.GM_INFO.shopDouble.gold_6 == false) {
|
||||
cc.fx.GameConfig.GM_INFO.shopDouble.gold_6 = true;
|
||||
cc.fx.GameTool.changeCoin(480000);
|
||||
coin = 480000;
|
||||
console.log("获得双倍金币:", coin)
|
||||
MiniGameSdk.API.showToast("充值成功,获得双倍金币");
|
||||
if (shopComp) {
|
||||
shopComp.initCoin();
|
||||
}
|
||||
Utils.setShopDouble((res) => {
|
||||
if (res.code == 1) {
|
||||
}
|
||||
}, cc.fx.GameConfig.GM_INFO.shopDouble)
|
||||
}
|
||||
else {
|
||||
cc.fx.GameTool.changeCoin(240000);
|
||||
coin = 240000;
|
||||
}
|
||||
|
||||
price = 64800;
|
||||
// MiniGameSdk.API.showToast("充值成功,获得240000金币");
|
||||
rewardData = [
|
||||
|
|
@ -1475,10 +1582,18 @@ var GameTool = {
|
|||
if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) {
|
||||
let useravatar = cc.fx.GameConfig.GM_INFO.useravatarIcon;
|
||||
if (useravatar.length < 10) {
|
||||
useravatar = cc.fx.GameTool.getCharAtPosition(useravatar, 5);
|
||||
console.log("头像处理前", useravatar, cc.fx.GameConfig.GM_INFO.useravatarIcon.length);
|
||||
useravatar = cc.fx.GameTool.getCharAtPosition(cc.fx.GameConfig.GM_INFO.useravatarIcon, 5);
|
||||
if (cc.fx.GameConfig.GM_INFO.useravatarIcon.length > 6) {
|
||||
let temp = parseInt(cc.fx.GameTool.getCharAtPosition(cc.fx.GameConfig.GM_INFO.useravatarIcon, 5));
|
||||
let temp2 = parseInt(cc.fx.GameTool.getCharAtPosition(cc.fx.GameConfig.GM_INFO.useravatarIcon, 6));
|
||||
console.log("个位数:", temp, temp2);
|
||||
// console.log(cc.fx.GameTool.getCharAtPosition(cc.fx.GameConfig.GM_INFO.useravatarIcon, 7));
|
||||
useravatar = (temp * 10 + temp2) + "";
|
||||
}
|
||||
}
|
||||
let useravaterkuang = cc.fx.GameConfig.GM_INFO.useravaterkuang;
|
||||
console.log(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6));
|
||||
// console.log(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6));
|
||||
useravaterkuang = (parseInt(cc.fx.GameTool.getCharAtPosition(useravaterkuang, 6)) - 1) + "";
|
||||
let userInfo = {
|
||||
// 这里填写要存储的用户数据
|
||||
|
|
@ -1502,6 +1617,7 @@ var GameTool = {
|
|||
if (cc.fx.GameConfig.GM_INFO.useravatarIcon > 10) {
|
||||
return;
|
||||
}
|
||||
|
||||
console.log('______________点击获取用户信息');
|
||||
let user_Info = cc.fx.StorageMessage.getStorage("user_Info");
|
||||
if (cc.fx.GameConfig.GM_INFO.wxUserInfo == true) {
|
||||
|
|
@ -1575,6 +1691,8 @@ var GameTool = {
|
|||
} else if (type == "fail") {
|
||||
if (cc.fx.GameConfig.GM_INFO.winStreak == 10) {
|
||||
cc.fx.GameConfig.GM_INFO.winStreak = 0;
|
||||
cc.fx.GameConfig.GM_INFO.winState = false;
|
||||
cc.fx.StorageMessage.setStorage("winState", cc.fx.GameConfig.GM_INFO.winState);
|
||||
cc.fx.StorageMessage.setStorage("winStreak", cc.fx.GameConfig.GM_INFO.winStreak);
|
||||
Utils.setWinStreak((data) => {
|
||||
|
||||
|
|
@ -1821,6 +1939,54 @@ var GameTool = {
|
|||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
//获取头像授权信息(有或者没有,或者当日拒绝)
|
||||
getAuthorizationAvatar() {
|
||||
let Avatar = cc.fx.StorageMessage.getStorage("Avatar");
|
||||
|
||||
// 如果 Avatar 不存在,返回 false
|
||||
if (Avatar == null || Avatar == "" || Avatar == undefined) {
|
||||
const authInfo = {
|
||||
lastAuthTime: new Date().getTime()
|
||||
};
|
||||
cc.fx.StorageMessage.setStorage("Avatar", authInfo);
|
||||
return false;
|
||||
}
|
||||
|
||||
// 检查 Avatar 中是否有时间戳字段
|
||||
if (!Avatar.lastAuthTime) {
|
||||
// 如果 Avatar 存在但没有时间戳,添加时间戳并返回 false
|
||||
Avatar.lastAuthTime = new Date().getTime();
|
||||
cc.fx.StorageMessage.setStorage("Avatar", Avatar);
|
||||
return false;
|
||||
}
|
||||
|
||||
// 获取当前时间戳
|
||||
const currentTime = new Date().getTime();
|
||||
const lastAuthTime = Avatar.lastAuthTime;
|
||||
|
||||
// 将时间戳转换为日期对象
|
||||
const currentDate = new Date(currentTime);
|
||||
const lastAuthDate = new Date(lastAuthTime);
|
||||
|
||||
// 比较年月日是否相同
|
||||
const currentYear = currentDate.getFullYear();
|
||||
const currentMonth = currentDate.getMonth();
|
||||
const currentDay = currentDate.getDate();
|
||||
|
||||
const lastAuthYear = lastAuthDate.getFullYear();
|
||||
const lastAuthMonth = lastAuthDate.getMonth();
|
||||
const lastAuthDay = lastAuthDate.getDate();
|
||||
|
||||
// 如果是同一天,返回 true;不是同一天,返回 false
|
||||
if (currentYear === lastAuthYear && currentMonth === lastAuthMonth && currentDay === lastAuthDay) {
|
||||
return true;
|
||||
} else {
|
||||
Avatar.lastAuthTime = new Date().getTime();
|
||||
cc.fx.StorageMessage.setStorage("Avatar", Avatar);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
export { GameTool };
|
||||
105
assets/Script/original.ts
Normal file
|
|
@ -0,0 +1,105 @@
|
|||
const { ccclass, property, requireComponent } = cc._decorator;
|
||||
|
||||
@ccclass
|
||||
@requireComponent(cc.Sprite)
|
||||
export default class CardFlipEffect extends cc.Component {
|
||||
@property({ tooltip: "翻转持续时间" })
|
||||
duration: number = 1.0;
|
||||
|
||||
@property({ tooltip: "是否启用弯曲效果" })
|
||||
enableBend: boolean = true;
|
||||
|
||||
@property({ tooltip: "弯曲强度" })
|
||||
bendStrength: number = 0.2;
|
||||
|
||||
@property({ tooltip: "是否启用阴影效果" })
|
||||
enableShadow: boolean = true;
|
||||
|
||||
private sprite: cc.Sprite = null;
|
||||
private material: cc.Material = null;
|
||||
public flipProgress: number = 0;
|
||||
private isFlipping: boolean = false;
|
||||
|
||||
onLoad() {
|
||||
this.sprite = this.getComponent(cc.Sprite);
|
||||
if (this.sprite) {
|
||||
// 获取材质实例,确保不影响其他精灵
|
||||
this.material = this.sprite.getMaterial(0);
|
||||
if (this.material) {
|
||||
// 克隆材质以避免影响其他节点
|
||||
this.material = this.sprite.material;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
start() {
|
||||
// 初始化材质参数
|
||||
if (this.material) {
|
||||
this.material.setProperty('flipProgress', this.flipProgress);
|
||||
this.material.setProperty('bendStrength', this.bendStrength);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 开始翻转动画
|
||||
*/
|
||||
startFlip() {
|
||||
if (this.isFlipping) return;
|
||||
|
||||
this.isFlipping = true;
|
||||
this.flipProgress = 0;
|
||||
|
||||
cc.tween(this)
|
||||
.to(this.duration, { flipProgress: 1 }, {
|
||||
onUpdate: (target, ratio) => {
|
||||
this.updateFlipProgress(ratio);
|
||||
},
|
||||
onComplete: () => {
|
||||
this.isFlipping = false;
|
||||
}
|
||||
})
|
||||
.start();
|
||||
}
|
||||
|
||||
/**
|
||||
* 重置翻转状态
|
||||
*/
|
||||
resetFlip() {
|
||||
this.flipProgress = 0;
|
||||
this.updateFlipProgress(0);
|
||||
this.isFlipping = false;
|
||||
}
|
||||
|
||||
/**
|
||||
* 更新翻转进度
|
||||
* @param progress 翻转进度 (0-1)
|
||||
*/
|
||||
updateFlipProgress(progress: number) {
|
||||
this.flipProgress = progress;
|
||||
if (this.material) {
|
||||
this.material.setProperty('flipProgress', progress);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置弯曲强度
|
||||
* @param strength 弯曲强度
|
||||
*/
|
||||
setBendStrength(strength: number) {
|
||||
this.bendStrength = strength;
|
||||
if (this.material) {
|
||||
this.material.setProperty('bendStrength', strength);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 应用自定义材质
|
||||
* @param material 材质
|
||||
*/
|
||||
applyMaterial(material: cc.Material) {
|
||||
if (this.sprite && material) {
|
||||
this.sprite.setMaterial(0, material);
|
||||
this.material = material;
|
||||
}
|
||||
}
|
||||
}
|
||||
10
assets/Script/original.ts.meta
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"ver": "1.1.0",
|
||||
"uuid": "7a14551e-8ca7-442b-83ed-fd558650a4a7",
|
||||
"importer": "typescript",
|
||||
"isPlugin": false,
|
||||
"loadPluginInWeb": true,
|
||||
"loadPluginInNative": true,
|
||||
"loadPluginInEditor": false,
|
||||
"subMetas": {}
|
||||
}
|
||||
|
|
@ -312,13 +312,13 @@ export default class ranking extends cc.Component {
|
|||
console.log("自己的他头像:", this.selfInfo.useravatar);
|
||||
if (this.selfInfo.useravatar == "" || this.selfInfo.useravatar == null || this.selfInfo.useravatar == undefined
|
||||
) {
|
||||
this.selfNode.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
|
||||
this.selfNode.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
|
||||
}
|
||||
else if (this.selfInfo.useravatar == "icon_0" || this.selfInfo.useravatar == "icon_1" || this.selfInfo.useravatar == "icon_2"
|
||||
|| this.selfInfo.useravatar == "icon_3" || this.selfInfo.useravatar == "icon_4" || this.selfInfo.useravatar == "icon_5" || this.selfInfo.useravatar == "icon_6"
|
||||
|| this.selfInfo.useravatar == "icon_7" || this.selfInfo.useravatar == "icon_8" || this.selfInfo.useravatar == "icon_9" || this.selfInfo.useravatar == "icon_10") {
|
||||
let useravatar = this.selfInfo.useravatar;
|
||||
this.selfNode.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatar);
|
||||
this.selfNode.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatar);
|
||||
}
|
||||
else this.setPic();
|
||||
this.selfNode.opacity = 255;
|
||||
|
|
@ -334,7 +334,7 @@ export default class ranking extends cc.Component {
|
|||
cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => {
|
||||
if (texture) {
|
||||
this.selfNode.getChildByName("pic").active = true;
|
||||
var sprite = this.selfNode.getChildByName("pic").getComponent(cc.Sprite);
|
||||
var sprite = this.selfNode.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite);
|
||||
sprite.spriteFrame = new cc.SpriteFrame(texture);
|
||||
// console.log(this.data.rank,"设置头像成功",err);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -612,7 +612,7 @@
|
|||
<key>size</key>
|
||||
<string>{2048,2048}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:500dcef4e913925b97d88f5dda3e2d4d$</string>
|
||||
<string>$TexturePacker:SmartUpdate:66933a0c22871f30d6b161672970d709$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>block6.png</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 449 KiB After Width: | Height: | Size: 444 KiB |
|
|
@ -7,11 +7,11 @@
|
|||
<key>Black0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{301,399},{33,35}}</string>
|
||||
<string>{{360,39},{33,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{33,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -20,11 +20,11 @@
|
|||
<key>Black1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{161,378},{23,35}}</string>
|
||||
<string>{{319,2},{23,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{4,0},{23,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
<key>Black11.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{111,253},{13,31}}</string>
|
||||
<string>{{198,240},{13,31}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -46,7 +46,7 @@
|
|||
<key>Black2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{264,108},{31,35}}</string>
|
||||
<string>{{365,2},{31,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -59,11 +59,11 @@
|
|||
<key>Black3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{198,374},{29,35}}</string>
|
||||
<string>{{288,2},{29,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,1},{29,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -72,11 +72,11 @@
|
|||
<key>Black4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{270,362},{33,35}}</string>
|
||||
<string>{{452,2},{33,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{33,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -85,7 +85,7 @@
|
|||
<key>Black5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{257,203},{29,33}}</string>
|
||||
<string>{{288,74},{29,33}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -98,7 +98,7 @@
|
|||
<key>Black6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{236,166},{31,35}}</string>
|
||||
<string>{{419,2},{31,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
<key>Black7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{235,364},{33,35}}</string>
|
||||
<string>{{417,475},{33,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
<key>Black8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{153,472},{31,37}}</string>
|
||||
<string>{{264,359},{31,37}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
<key>Black9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{120,472},{31,37}}</string>
|
||||
<string>{{283,216},{31,37}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
<key>company_0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{182,122},{39,54}}</string>
|
||||
<string>{{211,311},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -163,11 +163,11 @@
|
|||
<key>company_1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{66,472},{37,52}}</string>
|
||||
<string>{{249,2},{37,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,1},{37,52}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -176,7 +176,7 @@
|
|||
<key>company_2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{152,189},{39,54}}</string>
|
||||
<string>{{199,255},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -189,7 +189,7 @@
|
|||
<key>company_3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{113,268},{39,54}}</string>
|
||||
<string>{{209,399},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -202,7 +202,7 @@
|
|||
<key>company_4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{193,178},{41,52}}</string>
|
||||
<string>{{227,110},{41,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -215,7 +215,7 @@
|
|||
<key>company_5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{201,2},{39,54}}</string>
|
||||
<string>{{170,321},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -228,7 +228,7 @@
|
|||
<key>company_6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{161,66},{39,54}}</string>
|
||||
<string>{{198,184},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -241,7 +241,7 @@
|
|||
<key>company_7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{223,112},{39,52}}</string>
|
||||
<string>{{247,56},{39,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -254,7 +254,7 @@
|
|||
<key>company_8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{141,133},{39,54}}</string>
|
||||
<string>{{186,128},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -267,7 +267,7 @@
|
|||
<key>company_9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{111,197},{39,54}}</string>
|
||||
<string>{{157,196},{39,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -280,7 +280,7 @@
|
|||
<key>custom0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{234,268},{34,45}}</string>
|
||||
<string>{{301,444},{34,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -293,11 +293,11 @@
|
|||
<key>custom1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{298,446},{20,45}}</string>
|
||||
<string>{{170,377},{20,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{7,0},{20,45}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -306,7 +306,7 @@
|
|||
<key>custom2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{266,448},{30,45}}</string>
|
||||
<string>{{337,444},{30,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -319,7 +319,7 @@
|
|||
<key>custom3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{271,399},{28,45}}</string>
|
||||
<string>{{368,397},{28,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -332,7 +332,7 @@
|
|||
<key>custom4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{210,317},{34,45}}</string>
|
||||
<string>{{300,397},{34,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -345,7 +345,7 @@
|
|||
<key>custom5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{239,401},{30,45}}</string>
|
||||
<string>{{336,397},{30,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -358,11 +358,11 @@
|
|||
<key>custom6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{246,315},{30,45}}</string>
|
||||
<string>{{217,367},{30,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{2,0},{30,45}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -371,11 +371,11 @@
|
|||
<key>custom7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{210,232},{34,45}}</string>
|
||||
<string>{{362,255},{34,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{34,45}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -384,7 +384,7 @@
|
|||
<key>custom8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{232,457},{32,47}}</string>
|
||||
<string>{{332,304},{32,47}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -397,7 +397,7 @@
|
|||
<key>custom9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{200,268},{32,47}}</string>
|
||||
<string>{{328,255},{32,47}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -407,10 +407,140 @@
|
|||
<key>sourceSize</key>
|
||||
<string>{34,47}</string>
|
||||
</dict>
|
||||
<key>discount_0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{369,444},{40,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{40,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{398,390},{26,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{6,0},{26,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{366,302},{36,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,1},{36,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{383,346},{34,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{2,0},{34,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{158,472},{38,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,1},{38,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{297,359},{36,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,1},{36,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{239,217},{36,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{2,1},{36,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{341,353},{40,42}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{40,42}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{112,472},{38,44}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{38,44}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>discount_9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{66,472},{38,44}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{38,44}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{40,44}</string>
|
||||
</dict>
|
||||
<key>max0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{111,69},{48,62}}</string>
|
||||
<string>{{159,399},{48,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -436,7 +566,7 @@
|
|||
<key>max2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{157,2},{42,62}}</string>
|
||||
<string>{{113,2},{42,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -475,7 +605,7 @@
|
|||
<key>max5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{113,2},{42,62}}</string>
|
||||
<string>{{111,69},{42,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -501,7 +631,7 @@
|
|||
<key>max7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{63,270},{48,62}}</string>
|
||||
<string>{{120,335},{48,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -537,6 +667,149 @@
|
|||
<key>sourceSize</key>
|
||||
<string>{48,66}</string>
|
||||
</dict>
|
||||
<key>new_coin_0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{202,463},{47,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{47,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{47,49}</string>
|
||||
</dict>
|
||||
<key>new_coin_1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{239,164},{23,51}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{23,51}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{23,51}</string>
|
||||
</dict>
|
||||
<key>new_coin_2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{252,307},{44,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{44,50}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{44,50}</string>
|
||||
</dict>
|
||||
<key>new_coin_3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{111,197},{44,61}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{44,61}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{44,61}</string>
|
||||
</dict>
|
||||
<key>new_coin_4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{109,270},{44,63}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{44,63}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{44,63}</string>
|
||||
</dict>
|
||||
<key>new_coin_5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{157,2},{42,60}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{42,60}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{42,60}</string>
|
||||
</dict>
|
||||
<key>new_coin_6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{155,66},{44,60}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{44,60}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{44,60}</string>
|
||||
</dict>
|
||||
<key>new_coin_7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{155,260},{42,59}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{42,59}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{42,59}</string>
|
||||
</dict>
|
||||
<key>new_coin_8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{63,270},{44,63}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{44,63}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{44,63}</string>
|
||||
</dict>
|
||||
<key>new_coin_9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{141,133},{43,61}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{43,61}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{43,61}</string>
|
||||
</dict>
|
||||
<key>new_coin_add.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{316,214},{39,47}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{39,47}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{39,47}</string>
|
||||
</dict>
|
||||
<key>resultBig_0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
|
|
@ -670,7 +943,7 @@
|
|||
<key>resultBlack_0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{290,2},{48,50}}</string>
|
||||
<string>{{270,110},{48,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -683,7 +956,7 @@
|
|||
<key>resultBlack_1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{205,405},{32,50}}</string>
|
||||
<string>{{298,307},{32,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -696,7 +969,7 @@
|
|||
<key>resultBlack_2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{186,457},{44,50}}</string>
|
||||
<string>{{314,162},{44,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -709,7 +982,7 @@
|
|||
<key>resultBlack_3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{168,322},{40,50}}</string>
|
||||
<string>{{286,255},{40,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -722,7 +995,7 @@
|
|||
<key>resultBlack_4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{202,58},{48,52}}</string>
|
||||
<string>{{250,399},{48,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -735,7 +1008,7 @@
|
|||
<key>resultBlack_5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{159,405},{44,50}}</string>
|
||||
<string>{{240,255},{44,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -748,7 +1021,7 @@
|
|||
<key>resultBlack_6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{154,268},{44,52}}</string>
|
||||
<string>{{201,56},{44,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -761,7 +1034,7 @@
|
|||
<key>resultBlack_7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{252,56},{48,50}}</string>
|
||||
<string>{{264,164},{48,50}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -774,7 +1047,7 @@
|
|||
<key>resultBlack_8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{120,324},{46,52}}</string>
|
||||
<string>{{201,2},{46,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -787,7 +1060,7 @@
|
|||
<key>resultBlack_9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{242,2},{46,52}}</string>
|
||||
<string>{{253,453},{46,52}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -800,7 +1073,7 @@
|
|||
<key>white0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{290,166},{19,27}}</string>
|
||||
<string>{{288,39},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -813,7 +1086,7 @@
|
|||
<key>white1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{288,195},{19,27}}</string>
|
||||
<string>{{489,31},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -826,11 +1099,11 @@
|
|||
<key>white2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{181,245},{21,27}}</string>
|
||||
<string>{{489,2},{21,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{21,27}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -839,7 +1112,7 @@
|
|||
<key>white3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{278,238},{19,27}}</string>
|
||||
<string>{{344,2},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -852,7 +1125,7 @@
|
|||
<key>white4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{152,245},{21,27}}</string>
|
||||
<string>{{388,488},{21,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -865,7 +1138,7 @@
|
|||
<key>white5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{270,267},{19,27}}</string>
|
||||
<string>{{398,31},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -878,7 +1151,7 @@
|
|||
<key>white6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{269,166},{19,27}}</string>
|
||||
<string>{{398,2},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -891,11 +1164,11 @@
|
|||
<key>white7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{257,238},{19,27}}</string>
|
||||
<string>{{359,491},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,0},{19,27}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -904,7 +1177,7 @@
|
|||
<key>white8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{264,145},{19,27}}</string>
|
||||
<string>{{330,491},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -917,11 +1190,11 @@
|
|||
<key>white9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{236,203},{19,27}}</string>
|
||||
<string>{{301,491},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,0},{19,27}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -930,11 +1203,11 @@
|
|||
<key>xiegang.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{120,378},{25,39}}</string>
|
||||
<string>{{411,434},{25,39}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{25,39}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -950,7 +1223,7 @@
|
|||
<key>size</key>
|
||||
<string>{512,512}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:c8ff61a842a5d676d4b4bd6b41394a36$</string>
|
||||
<string>$TexturePacker:SmartUpdate:ec6354cd40b0d3e01cff1d82e38c6790$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>font3.png</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 42 KiB |
|
|
@ -8,7 +8,7 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 256,
|
||||
"width": 512,
|
||||
"height": 512,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
|
|
|
|||
|
|
@ -7,11 +7,11 @@
|
|||
<key>bg.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1923,868},{646,104}}</string>
|
||||
<string>{{978,843},{646,104}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{646,104}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -20,11 +20,11 @@
|
|||
<key>bg2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{267,991},{320,99}}</string>
|
||||
<string>{{1724,1044},{320,99}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{320,99}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -33,7 +33,7 @@
|
|||
<key>bianku.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1176,1516},{186,186}}</string>
|
||||
<string>{{1724,842},{186,186}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -46,11 +46,11 @@
|
|||
<key>biaotitou.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{167,991},{458,98}}</string>
|
||||
<string>{{2,949},{458,98}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{458,98}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -59,7 +59,7 @@
|
|||
<key>btn.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1516},{476,164}}</string>
|
||||
<string>{{2,1145},{476,164}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -72,7 +72,7 @@
|
|||
<key>daxiao.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1694,991},{150,150}}</string>
|
||||
<string>{{984,1397},{150,150}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
<key>huang.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{562,1243},{62,62}}</string>
|
||||
<string>{{196,1875},{62,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -124,7 +124,7 @@
|
|||
<key>huang0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{498,1243},{62,62}}</string>
|
||||
<string>{{132,1875},{62,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -137,7 +137,7 @@
|
|||
<key>icon.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1542,843},{150,150}}</string>
|
||||
<string>{{832,1397},{150,150}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
<key>icon_0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{924,1516},{250,250}}</string>
|
||||
<string>{{1680,1397},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -163,7 +163,7 @@
|
|||
<key>icon_1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{672,1768},{250,250}}</string>
|
||||
<string>{{1328,1705},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -176,7 +176,85 @@
|
|||
<key>icon_10.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{938,991},{250,250}}</string>
|
||||
<string>{{1076,1705},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{250,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{250,250}</string>
|
||||
</dict>
|
||||
<key>icon_11.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1136,1453},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{250,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{250,250}</string>
|
||||
</dict>
|
||||
<key>icon_12.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1428,1335},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{250,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{250,250}</string>
|
||||
</dict>
|
||||
<key>icon_13.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1680,1145},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{250,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{250,250}</string>
|
||||
</dict>
|
||||
<key>icon_14.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1176,1201},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{250,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{250,250}</string>
|
||||
</dict>
|
||||
<key>icon_15.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1428,1083},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{250,250}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{250,250}</string>
|
||||
</dict>
|
||||
<key>icon_16.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1176,949},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -189,7 +267,7 @@
|
|||
<key>icon_2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{775,1243},{250,250}}</string>
|
||||
<string>{{924,1145},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -202,7 +280,7 @@
|
|||
<key>icon_3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{672,1516},{250,250}}</string>
|
||||
<string>{{824,1559},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -215,7 +293,7 @@
|
|||
<key>icon_4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{686,991},{250,250}}</string>
|
||||
<string>{{672,1145},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -228,7 +306,7 @@
|
|||
<key>icon_5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{420,1768},{250,250}}</string>
|
||||
<string>{{572,1559},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -241,7 +319,7 @@
|
|||
<key>icon_6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{420,1516},{250,250}}</string>
|
||||
<string>{{420,1145},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -254,7 +332,7 @@
|
|||
<key>icon_7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{168,1768},{250,250}}</string>
|
||||
<string>{{320,1575},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -267,7 +345,7 @@
|
|||
<key>icon_8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{168,1516},{250,250}}</string>
|
||||
<string>{{168,1145},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -280,7 +358,7 @@
|
|||
<key>icon_9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{434,991},{250,250}}</string>
|
||||
<string>{{68,1623},{250,250}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -293,7 +371,7 @@
|
|||
<key>kongbai.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{345,1411},{238,96}}</string>
|
||||
<string>{{2,1940},{238,96}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -319,28 +397,28 @@
|
|||
<key>kuang1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{167,1451},{176,62}}</string>
|
||||
<string>{{1956,760},{282,73}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{176,62}}</string>
|
||||
<string>{{0,0},{282,73}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{176,62}</string>
|
||||
<string>{282,73}</string>
|
||||
</dict>
|
||||
<key>kuang2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{176,932},{168,54}}</string>
|
||||
<string>{{1724,801},{208,39}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<string>{-2,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{168,54}}</string>
|
||||
<string>{{35,16},{208,39}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{168,54}</string>
|
||||
<string>{282,73}</string>
|
||||
</dict>
|
||||
<key>kuang3.png</key>
|
||||
<dict>
|
||||
|
|
@ -358,85 +436,85 @@
|
|||
<key>kuang_1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1114,1768},{188,198}}</string>
|
||||
<string>{{746,1811},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{188,198}}</string>
|
||||
<string>{{0,0},{160,160}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{188,198}</string>
|
||||
<string>{160,160}</string>
|
||||
</dict>
|
||||
<key>kuang_2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{924,1768},{188,198}}</string>
|
||||
<string>{{584,1811},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{188,198}}</string>
|
||||
<string>{{0,0},{160,160}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{188,198}</string>
|
||||
<string>{160,160}</string>
|
||||
</dict>
|
||||
<key>kuang_3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1190,991},{188,198}}</string>
|
||||
<string>{{670,1397},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{188,198}}</string>
|
||||
<string>{{0,0},{160,160}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{188,198}</string>
|
||||
<string>{160,160}</string>
|
||||
</dict>
|
||||
<key>kuang_4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1027,1243},{188,198}}</string>
|
||||
<string>{{422,1827},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{188,198}}</string>
|
||||
<string>{{0,0},{160,160}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{188,198}</string>
|
||||
<string>{160,160}</string>
|
||||
</dict>
|
||||
<key>kuang_5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{585,1307},{188,198}}</string>
|
||||
<string>{{508,1397},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{188,198}}</string>
|
||||
<string>{{0,0},{160,160}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{188,198}</string>
|
||||
<string>{160,160}</string>
|
||||
</dict>
|
||||
<key>kuang_6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1723,801},{188,198}}</string>
|
||||
<string>{{346,1397},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{188,198}}</string>
|
||||
<string>{{0,0},{160,160}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{188,198}</string>
|
||||
<string>{160,160}</string>
|
||||
</dict>
|
||||
<key>selcet2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{910,555},{66,66}}</string>
|
||||
<string>{{584,1973},{66,66}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -449,7 +527,7 @@
|
|||
<key>select.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1217,1191},{176,176}}</string>
|
||||
<string>{{168,1397},{176,176}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -462,11 +540,11 @@
|
|||
<key>shiyong.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,991},{475,163}}</string>
|
||||
<string>{{462,947},{475,163}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{475,163}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -488,7 +566,7 @@
|
|||
<key>title.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1956,537},{261,66}}</string>
|
||||
<string>{{910,616},{261,66}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -501,33 +579,33 @@
|
|||
<key>tou1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{267,1313},{120,62}}</string>
|
||||
<string>{{1956,476},{282,73}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{120,62}}</string>
|
||||
<string>{{0,0},{282,73}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{120,62}</string>
|
||||
<string>{282,73}</string>
|
||||
</dict>
|
||||
<key>tou2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{346,932},{112,54}}</string>
|
||||
<string>{{1912,842},{168,39}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<string>{-2,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{112,54}}</string>
|
||||
<string>{{55,16},{168,39}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{112,54}</string>
|
||||
<string>{282,73}</string>
|
||||
</dict>
|
||||
<key>touxiangk1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1380,991},{160,160}}</string>
|
||||
<string>{{260,1875},{160,160}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -540,7 +618,7 @@
|
|||
<key>update.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{434,1243},{62,62}}</string>
|
||||
<string>{{68,1875},{62,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -553,7 +631,7 @@
|
|||
<key>useing.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,932},{172,54}}</string>
|
||||
<string>{{2,1083},{172,54}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -566,11 +644,11 @@
|
|||
<key>wanjiaxinzizi.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{910,623},{261,65}}</string>
|
||||
<string>{{176,1049},{261,65}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{261,65}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -579,7 +657,7 @@
|
|||
<key>xiugai.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1994},{48,48}}</string>
|
||||
<string>{{422,1989},{48,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -592,7 +670,7 @@
|
|||
<key>xuanzefen.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{368,991},{315,64}}</string>
|
||||
<string>{{2,1623},{315,64}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -605,7 +683,7 @@
|
|||
<key>xuanzhong.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1956,800},{66,66}}</string>
|
||||
<string>{{910,879},{66,66}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -618,11 +696,11 @@
|
|||
<key>xuanzhong2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{331,1313},{238,96}}</string>
|
||||
<string>{{1626,843},{238,96}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{238,96}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -644,7 +722,7 @@
|
|||
<key>zhuangsh.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{977,801},{744,40}}</string>
|
||||
<string>{{978,801},{744,40}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -657,7 +735,7 @@
|
|||
<key>zuobiao.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{1956,476},{59,73}}</string>
|
||||
<string>{{910,555},{59,73}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -677,7 +755,7 @@
|
|||
<key>size</key>
|
||||
<string>{2048,2048}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:27c89008abce4aa81711ec5507d83d84$</string>
|
||||
<string>$TexturePacker:SmartUpdate:e56f2a6b8e9289f3603a36c3500c5a51$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>avatar.png</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -16,11 +16,11 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1923,
|
||||
"trimY": 868,
|
||||
"trimX": 978,
|
||||
"trimY": 843,
|
||||
"width": 646,
|
||||
"height": 104,
|
||||
"rawWidth": 646,
|
||||
|
|
@ -39,11 +39,11 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 267,
|
||||
"trimY": 991,
|
||||
"trimX": 1724,
|
||||
"trimY": 1044,
|
||||
"width": 320,
|
||||
"height": 99,
|
||||
"rawWidth": 320,
|
||||
|
|
@ -65,8 +65,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1176,
|
||||
"trimY": 1516,
|
||||
"trimX": 1724,
|
||||
"trimY": 842,
|
||||
"width": 186,
|
||||
"height": 186,
|
||||
"rawWidth": 186,
|
||||
|
|
@ -85,11 +85,11 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 167,
|
||||
"trimY": 991,
|
||||
"trimX": 2,
|
||||
"trimY": 949,
|
||||
"width": 458,
|
||||
"height": 98,
|
||||
"rawWidth": 458,
|
||||
|
|
@ -112,7 +112,7 @@
|
|||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1516,
|
||||
"trimY": 1145,
|
||||
"width": 476,
|
||||
"height": 164,
|
||||
"rawWidth": 476,
|
||||
|
|
@ -134,8 +134,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1694,
|
||||
"trimY": 991,
|
||||
"trimX": 984,
|
||||
"trimY": 1397,
|
||||
"width": 150,
|
||||
"height": 150,
|
||||
"rawWidth": 150,
|
||||
|
|
@ -203,8 +203,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 562,
|
||||
"trimY": 1243,
|
||||
"trimX": 196,
|
||||
"trimY": 1875,
|
||||
"width": 62,
|
||||
"height": 62,
|
||||
"rawWidth": 62,
|
||||
|
|
@ -226,8 +226,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 498,
|
||||
"trimY": 1243,
|
||||
"trimX": 132,
|
||||
"trimY": 1875,
|
||||
"width": 62,
|
||||
"height": 62,
|
||||
"rawWidth": 62,
|
||||
|
|
@ -249,8 +249,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1542,
|
||||
"trimY": 843,
|
||||
"trimX": 832,
|
||||
"trimY": 1397,
|
||||
"width": 150,
|
||||
"height": 150,
|
||||
"rawWidth": 150,
|
||||
|
|
@ -272,8 +272,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 924,
|
||||
"trimY": 1516,
|
||||
"trimX": 1680,
|
||||
"trimY": 1397,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -295,8 +295,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 672,
|
||||
"trimY": 1768,
|
||||
"trimX": 1328,
|
||||
"trimY": 1705,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -318,8 +318,146 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 938,
|
||||
"trimY": 991,
|
||||
"trimX": 1076,
|
||||
"trimY": 1705,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"icon_11.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "6623eac2-ad3f-4808-8e2a-0879cba5ce33",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1136,
|
||||
"trimY": 1453,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"icon_12.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "ec929d64-d0f8-4dd8-9333-e975be769ede",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1428,
|
||||
"trimY": 1335,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"icon_13.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "d4c7d320-5a5d-4207-ae42-a13a24fe56cc",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1680,
|
||||
"trimY": 1145,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"icon_14.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "51797983-501b-4e31-84ab-2ffa43c5e54c",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1176,
|
||||
"trimY": 1201,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"icon_15.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "c8a90ce6-84a3-447e-8763-4a22a3a107b1",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1428,
|
||||
"trimY": 1083,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
"rawHeight": 250,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"spriteType": "normal",
|
||||
"subMetas": {}
|
||||
},
|
||||
"icon_16.png": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "1cf6773a-cbff-47bb-b0a2-ccba3af10a24",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1176,
|
||||
"trimY": 949,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -341,8 +479,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 775,
|
||||
"trimY": 1243,
|
||||
"trimX": 924,
|
||||
"trimY": 1145,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -364,8 +502,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 672,
|
||||
"trimY": 1516,
|
||||
"trimX": 824,
|
||||
"trimY": 1559,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -387,8 +525,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 686,
|
||||
"trimY": 991,
|
||||
"trimX": 672,
|
||||
"trimY": 1145,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -410,8 +548,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 420,
|
||||
"trimY": 1768,
|
||||
"trimX": 572,
|
||||
"trimY": 1559,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -434,7 +572,7 @@
|
|||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 420,
|
||||
"trimY": 1516,
|
||||
"trimY": 1145,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -456,8 +594,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 168,
|
||||
"trimY": 1768,
|
||||
"trimX": 320,
|
||||
"trimY": 1575,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -480,7 +618,7 @@
|
|||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 168,
|
||||
"trimY": 1516,
|
||||
"trimY": 1145,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -502,8 +640,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 434,
|
||||
"trimY": 991,
|
||||
"trimX": 68,
|
||||
"trimY": 1623,
|
||||
"width": 250,
|
||||
"height": 250,
|
||||
"rawWidth": 250,
|
||||
|
|
@ -525,8 +663,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 345,
|
||||
"trimY": 1411,
|
||||
"trimX": 2,
|
||||
"trimY": 1940,
|
||||
"width": 238,
|
||||
"height": 96,
|
||||
"rawWidth": 238,
|
||||
|
|
@ -568,15 +706,15 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 167,
|
||||
"trimY": 1451,
|
||||
"width": 176,
|
||||
"height": 62,
|
||||
"rawWidth": 176,
|
||||
"rawHeight": 62,
|
||||
"trimX": 1956,
|
||||
"trimY": 760,
|
||||
"width": 282,
|
||||
"height": 73,
|
||||
"rawWidth": 282,
|
||||
"rawHeight": 73,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -592,14 +730,14 @@
|
|||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 176,
|
||||
"trimY": 932,
|
||||
"width": 168,
|
||||
"height": 54,
|
||||
"rawWidth": 168,
|
||||
"rawHeight": 54,
|
||||
"offsetX": -2,
|
||||
"offsetY": 1,
|
||||
"trimX": 1724,
|
||||
"trimY": 801,
|
||||
"width": 208,
|
||||
"height": 39,
|
||||
"rawWidth": 282,
|
||||
"rawHeight": 73,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -640,12 +778,12 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1114,
|
||||
"trimY": 1768,
|
||||
"width": 188,
|
||||
"height": 198,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 198,
|
||||
"trimX": 746,
|
||||
"trimY": 1811,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -663,12 +801,12 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 924,
|
||||
"trimY": 1768,
|
||||
"width": 188,
|
||||
"height": 198,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 198,
|
||||
"trimX": 584,
|
||||
"trimY": 1811,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -686,12 +824,12 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1190,
|
||||
"trimY": 991,
|
||||
"width": 188,
|
||||
"height": 198,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 198,
|
||||
"trimX": 670,
|
||||
"trimY": 1397,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -709,12 +847,12 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1027,
|
||||
"trimY": 1243,
|
||||
"width": 188,
|
||||
"height": 198,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 198,
|
||||
"trimX": 422,
|
||||
"trimY": 1827,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -732,12 +870,12 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 585,
|
||||
"trimY": 1307,
|
||||
"width": 188,
|
||||
"height": 198,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 198,
|
||||
"trimX": 508,
|
||||
"trimY": 1397,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -752,15 +890,15 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1723,
|
||||
"trimY": 801,
|
||||
"width": 188,
|
||||
"height": 198,
|
||||
"rawWidth": 188,
|
||||
"rawHeight": 198,
|
||||
"trimX": 346,
|
||||
"trimY": 1397,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -778,8 +916,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 910,
|
||||
"trimY": 555,
|
||||
"trimX": 584,
|
||||
"trimY": 1973,
|
||||
"width": 66,
|
||||
"height": 66,
|
||||
"rawWidth": 66,
|
||||
|
|
@ -801,8 +939,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1217,
|
||||
"trimY": 1191,
|
||||
"trimX": 168,
|
||||
"trimY": 1397,
|
||||
"width": 176,
|
||||
"height": 176,
|
||||
"rawWidth": 176,
|
||||
|
|
@ -821,11 +959,11 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 991,
|
||||
"trimX": 462,
|
||||
"trimY": 947,
|
||||
"width": 475,
|
||||
"height": 163,
|
||||
"rawWidth": 475,
|
||||
|
|
@ -870,8 +1008,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1956,
|
||||
"trimY": 537,
|
||||
"trimX": 910,
|
||||
"trimY": 616,
|
||||
"width": 261,
|
||||
"height": 66,
|
||||
"rawWidth": 261,
|
||||
|
|
@ -893,12 +1031,12 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 267,
|
||||
"trimY": 1313,
|
||||
"width": 120,
|
||||
"height": 62,
|
||||
"rawWidth": 120,
|
||||
"rawHeight": 62,
|
||||
"trimX": 1956,
|
||||
"trimY": 476,
|
||||
"width": 282,
|
||||
"height": 73,
|
||||
"rawWidth": 282,
|
||||
"rawHeight": 73,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -913,15 +1051,15 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 346,
|
||||
"trimY": 932,
|
||||
"width": 112,
|
||||
"height": 54,
|
||||
"rawWidth": 112,
|
||||
"rawHeight": 54,
|
||||
"rotated": true,
|
||||
"offsetX": -2,
|
||||
"offsetY": 1,
|
||||
"trimX": 1912,
|
||||
"trimY": 842,
|
||||
"width": 168,
|
||||
"height": 39,
|
||||
"rawWidth": 282,
|
||||
"rawHeight": 73,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -939,8 +1077,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1380,
|
||||
"trimY": 991,
|
||||
"trimX": 260,
|
||||
"trimY": 1875,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
|
|
@ -962,8 +1100,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 434,
|
||||
"trimY": 1243,
|
||||
"trimX": 68,
|
||||
"trimY": 1875,
|
||||
"width": 62,
|
||||
"height": 62,
|
||||
"rawWidth": 62,
|
||||
|
|
@ -986,7 +1124,7 @@
|
|||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 932,
|
||||
"trimY": 1083,
|
||||
"width": 172,
|
||||
"height": 54,
|
||||
"rawWidth": 172,
|
||||
|
|
@ -1005,11 +1143,11 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 910,
|
||||
"trimY": 623,
|
||||
"trimX": 176,
|
||||
"trimY": 1049,
|
||||
"width": 261,
|
||||
"height": 65,
|
||||
"rawWidth": 261,
|
||||
|
|
@ -1031,8 +1169,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1994,
|
||||
"trimX": 422,
|
||||
"trimY": 1989,
|
||||
"width": 48,
|
||||
"height": 48,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -1054,8 +1192,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 368,
|
||||
"trimY": 991,
|
||||
"trimX": 2,
|
||||
"trimY": 1623,
|
||||
"width": 315,
|
||||
"height": 64,
|
||||
"rawWidth": 315,
|
||||
|
|
@ -1077,8 +1215,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1956,
|
||||
"trimY": 800,
|
||||
"trimX": 910,
|
||||
"trimY": 879,
|
||||
"width": 66,
|
||||
"height": 66,
|
||||
"rawWidth": 66,
|
||||
|
|
@ -1097,11 +1235,11 @@
|
|||
"rawTextureUuid": "ee292f53-ebf0-44c5-8d2b-6fdb1e6f468d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 331,
|
||||
"trimY": 1313,
|
||||
"trimX": 1626,
|
||||
"trimY": 843,
|
||||
"width": 238,
|
||||
"height": 96,
|
||||
"rawWidth": 238,
|
||||
|
|
@ -1146,7 +1284,7 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 977,
|
||||
"trimX": 978,
|
||||
"trimY": 801,
|
||||
"width": 744,
|
||||
"height": 40,
|
||||
|
|
@ -1169,8 +1307,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1956,
|
||||
"trimY": 476,
|
||||
"trimX": 910,
|
||||
"trimY": 555,
|
||||
"width": 59,
|
||||
"height": 73,
|
||||
"rawWidth": 59,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 224 KiB After Width: | Height: | Size: 278 KiB |
|
|
@ -8,7 +8,7 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 1024,
|
||||
"width": 2048,
|
||||
"height": 2048,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
|
|
|
|||
BIN
assets/action_bundle/Avatar/kuang_1.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
38
assets/action_bundle/Avatar/kuang_1.png.meta
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "dd71ede4-31ae-43ed-aedb-dab300e61fa2",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"kuang_1": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "7a197742-20c0-4720-88f6-8fcdd0c58518",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "dd71ede4-31ae-43ed-aedb-dab300e61fa2",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 160,
|
||||
"height": 160,
|
||||
"rawWidth": 160,
|
||||
"rawHeight": 160,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
<key>Black0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{769,1352},{33,35}}</string>
|
||||
<string>{{115,1600},{33,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -20,11 +20,11 @@
|
|||
<key>Black1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1416},{23,35}}</string>
|
||||
<string>{{493,1141},{23,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{4,0},{23,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -59,11 +59,11 @@
|
|||
<key>Black3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1385},{29,35}}</string>
|
||||
<string>{{150,1600},{29,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,1},{29,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -72,11 +72,11 @@
|
|||
<key>Black4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1350},{33,35}}</string>
|
||||
<string>{{80,1600},{33,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{33,35}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -85,11 +85,11 @@
|
|||
<key>Black5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{769,1389},{29,33}}</string>
|
||||
<string>{{518,1162},{29,33}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{2,2},{29,33}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -111,7 +111,7 @@
|
|||
<key>Black7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{510,1162},{33,35}}</string>
|
||||
<string>{{733,1350},{33,35}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -176,11 +176,11 @@
|
|||
<key>custom0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1488},{34,45}}</string>
|
||||
<string>{{446,1162},{34,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{34,45}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -215,11 +215,11 @@
|
|||
<key>custom3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{220,1725},{28,45}}</string>
|
||||
<string>{{2,2001},{28,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{2,1},{28,45}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -228,11 +228,11 @@
|
|||
<key>custom4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1441},{34,45}}</string>
|
||||
<string>{{399,1162},{34,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{34,45}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -267,7 +267,7 @@
|
|||
<key>custom7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{463,1162},{34,45}}</string>
|
||||
<string>{{352,1162},{34,45}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -280,11 +280,11 @@
|
|||
<key>custom8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{768,1469},{32,47}}</string>
|
||||
<string>{{721,1385},{32,47}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{32,47}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -293,7 +293,7 @@
|
|||
<key>custom9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{769,1420},{32,47}}</string>
|
||||
<string>{{770,1352},{32,47}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -410,41 +410,41 @@
|
|||
<key>icon_kuang1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1034},{274,316}}</string>
|
||||
<string>{{2,1034},{346,348}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{274,316}}</string>
|
||||
<string>{{0,0},{346,348}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{274,316}</string>
|
||||
<string>{346,348}</string>
|
||||
</dict>
|
||||
<key>icon_kuang2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1310},{242,299}}</string>
|
||||
<string>{{352,1198},{236,296}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,299}}</string>
|
||||
<string>{{0,0},{236,296}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,299}</string>
|
||||
<string>{236,296}</string>
|
||||
</dict>
|
||||
<key>icon_kuang3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{303,1337},{242,296}}</string>
|
||||
<string>{{2,1709},{230,290}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{242,296}}</string>
|
||||
<string>{{0,0},{230,290}}</string>
|
||||
<key>sourceSize</key>
|
||||
<string>{242,296}</string>
|
||||
<string>{230,290}</string>
|
||||
</dict>
|
||||
<key>jindut00.png</key>
|
||||
<dict>
|
||||
|
|
@ -475,7 +475,7 @@
|
|||
<key>max0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1978},{48,62}}</string>
|
||||
<string>{{100,1641},{48,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -488,7 +488,7 @@
|
|||
<key>max1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{571,1581},{28,62}}</string>
|
||||
<string>{{194,1641},{28,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -501,7 +501,7 @@
|
|||
<key>max2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{52,1978},{42,62}}</string>
|
||||
<string>{{150,1641},{42,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -527,11 +527,11 @@
|
|||
<key>max4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1581},{46,64}}</string>
|
||||
<string>{{2,1641},{46,64}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,1}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{46,64}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -540,11 +540,11 @@
|
|||
<key>max5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{320,1100},{42,62}}</string>
|
||||
<string>{{232,2001},{42,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{2,2},{42,62}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -553,11 +553,11 @@
|
|||
<key>max6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{320,1034},{42,64}}</string>
|
||||
<string>{{166,2001},{42,64}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{3,0},{42,64}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -566,11 +566,11 @@
|
|||
<key>max7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1675},{48,62}}</string>
|
||||
<string>{{50,1641},{48,62}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,1}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,1},{48,62}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -579,7 +579,7 @@
|
|||
<key>max8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1535},{44,66}}</string>
|
||||
<string>{{32,2001},{44,66}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -592,7 +592,7 @@
|
|||
<key>max9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{732,1629},{44,64}}</string>
|
||||
<string>{{100,2001},{44,64}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -605,7 +605,7 @@
|
|||
<key>one.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{803,1440},{216,216}}</string>
|
||||
<string>{{802,1440},{216,216}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -631,7 +631,7 @@
|
|||
<key>rank2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{320,1164},{141,32}}</string>
|
||||
<string>{{590,1350},{141,32}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -657,11 +657,11 @@
|
|||
<key>rank4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{220,1605},{89,29}}</string>
|
||||
<string>{{181,1600},{89,29}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{89,29}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -670,11 +670,11 @@
|
|||
<key>rankBg.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{601,1601},{129,122}}</string>
|
||||
<string>{{285,1709},{129,122}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{129,122}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -683,11 +683,11 @@
|
|||
<key>riqi.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{320,1198},{276,79}}</string>
|
||||
<string>{{721,1419},{276,79}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{276,79}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -735,11 +735,11 @@
|
|||
<key>three.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{601,1477},{129,122}}</string>
|
||||
<string>{{234,1849},{129,122}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{129,122}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -748,7 +748,7 @@
|
|||
<key>two.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{601,1350},{129,125}}</string>
|
||||
<string>{{590,1384},{129,125}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -761,7 +761,7 @@
|
|||
<key>white0.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{262,1696},{19,27}}</string>
|
||||
<string>{{206,1527},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -774,7 +774,7 @@
|
|||
<key>white1.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{241,1696},{19,27}}</string>
|
||||
<string>{{206,1498},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{-1,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -787,11 +787,11 @@
|
|||
<key>white2.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{393,1141},{21,27}}</string>
|
||||
<string>{{206,1411},{21,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{21,27}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -800,7 +800,7 @@
|
|||
<key>white3.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{220,1696},{19,27}}</string>
|
||||
<string>{{206,1469},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -813,11 +813,11 @@
|
|||
<key>white4.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{364,1141},{21,27}}</string>
|
||||
<string>{{206,1382},{21,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{21,27}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -826,7 +826,7 @@
|
|||
<key>white5.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{579,1308},{19,27}}</string>
|
||||
<string>{{206,1440},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -839,11 +839,11 @@
|
|||
<key>white6.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{579,1279},{19,27}}</string>
|
||||
<string>{{439,1141},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{1,0},{19,27}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -852,7 +852,7 @@
|
|||
<key>white7.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{480,1141},{19,27}}</string>
|
||||
<string>{{410,1141},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -865,7 +865,7 @@
|
|||
<key>white8.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{451,1141},{19,27}}</string>
|
||||
<string>{{381,1141},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -878,7 +878,7 @@
|
|||
<key>white9.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{422,1141},{19,27}}</string>
|
||||
<string>{{352,1141},{19,27}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -891,11 +891,11 @@
|
|||
<key>xiegang.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{260,1554},{25,39}}</string>
|
||||
<string>{{53,1600},{25,39}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{25,39}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -917,11 +917,11 @@
|
|||
<key>上海.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{104,1760},{216,49}}</string>
|
||||
<string>{{503,1613},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -930,11 +930,11 @@
|
|||
<key>云南省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{355,1760},{215,49}}</string>
|
||||
<string>{{513,1965},{215,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{215,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -943,7 +943,7 @@
|
|||
<key>其他.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{478,1581},{91,49}}</string>
|
||||
<string>{{409,1692},{91,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -956,11 +956,11 @@
|
|||
<key>内蒙古.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1554},{256,49}}</string>
|
||||
<string>{{2,1382},{256,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{256,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -982,7 +982,7 @@
|
|||
<key>吉林省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{96,1978},{216,49}}</string>
|
||||
<string>{{503,1562},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -995,11 +995,11 @@
|
|||
<key>四川省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{456,1760},{215,48}}</string>
|
||||
<string>{{730,1964},{215,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{215,48}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1021,7 +1021,7 @@
|
|||
<key>宁夏.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{314,1978},{215,49}}</string>
|
||||
<string>{{509,1914},{215,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1047,11 +1047,11 @@
|
|||
<key>山东省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{53,1760},{216,49}}</string>
|
||||
<string>{{503,1511},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1060,7 +1060,7 @@
|
|||
<key>山西省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{406,1760},{215,48}}</string>
|
||||
<string>{{944,1709},{215,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1073,7 +1073,7 @@
|
|||
<key>广东省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1707},{216,49}}</string>
|
||||
<string>{{285,1641},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1086,7 +1086,7 @@
|
|||
<key>广西.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1760},{216,49}}</string>
|
||||
<string>{{234,1631},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1138,11 +1138,11 @@
|
|||
<key>河北省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{305,1760},{216,48}}</string>
|
||||
<string>{{726,1914},{216,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,48}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1151,11 +1151,11 @@
|
|||
<key>河南省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1656},{216,49}}</string>
|
||||
<string>{{155,1382},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1164,7 +1164,7 @@
|
|||
<key>浙江省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{255,1760},{216,48}}</string>
|
||||
<string>{{459,1743},{216,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1177,11 +1177,11 @@
|
|||
<key>海南省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{2,1605},{216,49}}</string>
|
||||
<string>{{104,1382},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1203,7 +1203,7 @@
|
|||
<key>湖北省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{205,1760},{216,48}}</string>
|
||||
<string>{{409,1743},{216,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1216,11 +1216,11 @@
|
|||
<key>湖南省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{796,1709},{216,49}}</string>
|
||||
<string>{{53,1382},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1229,11 +1229,11 @@
|
|||
<key>甘肃省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{283,1696},{215,49}}</string>
|
||||
<string>{{721,1697},{215,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{215,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1255,7 +1255,7 @@
|
|||
<key>西藏.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{251,1645},{215,49}}</string>
|
||||
<string>{{296,1980},{215,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1268,11 +1268,11 @@
|
|||
<key>贵州省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{798,1658},{216,49}}</string>
|
||||
<string>{{234,1382},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1281,7 +1281,7 @@
|
|||
<key>辽宁省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{260,1581},{216,49}}</string>
|
||||
<string>{{802,1658},{216,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
|
|
@ -1307,11 +1307,11 @@
|
|||
<key>陕西省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{155,1760},{216,48}}</string>
|
||||
<string>{{503,1664},{216,48}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{216,48}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1333,11 +1333,11 @@
|
|||
<key>黑龙江省.png</key>
|
||||
<dict>
|
||||
<key>frame</key>
|
||||
<string>{{320,1279},{257,49}}</string>
|
||||
<string>{{296,1382},{257,49}}</string>
|
||||
<key>offset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>rotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
<key>sourceColorRect</key>
|
||||
<string>{{0,0},{257,49}}</string>
|
||||
<key>sourceSize</key>
|
||||
|
|
@ -1353,7 +1353,7 @@
|
|||
<key>size</key>
|
||||
<string>{1024,2048}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:df6197b8856ad4e9d1025d6385b60b9a$</string>
|
||||
<string>$TexturePacker:SmartUpdate:03be8f4a1a16ae40ac1a8071d3f2b303$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>careerUI.png</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -19,8 +19,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 769,
|
||||
"trimY": 1352,
|
||||
"trimX": 115,
|
||||
"trimY": 1600,
|
||||
"width": 33,
|
||||
"height": 35,
|
||||
"rawWidth": 33,
|
||||
|
|
@ -39,11 +39,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 1,
|
||||
"trimX": 732,
|
||||
"trimY": 1416,
|
||||
"trimX": 493,
|
||||
"trimY": 1141,
|
||||
"width": 23,
|
||||
"height": 35,
|
||||
"rawWidth": 33,
|
||||
|
|
@ -108,11 +108,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 732,
|
||||
"trimY": 1385,
|
||||
"trimX": 150,
|
||||
"trimY": 1600,
|
||||
"width": 29,
|
||||
"height": 35,
|
||||
"rawWidth": 33,
|
||||
|
|
@ -131,11 +131,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 732,
|
||||
"trimY": 1350,
|
||||
"trimX": 80,
|
||||
"trimY": 1600,
|
||||
"width": 33,
|
||||
"height": 35,
|
||||
"rawWidth": 33,
|
||||
|
|
@ -154,11 +154,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 769,
|
||||
"trimY": 1389,
|
||||
"trimX": 518,
|
||||
"trimY": 1162,
|
||||
"width": 29,
|
||||
"height": 33,
|
||||
"rawWidth": 33,
|
||||
|
|
@ -203,8 +203,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 1,
|
||||
"trimX": 510,
|
||||
"trimY": 1162,
|
||||
"trimX": 733,
|
||||
"trimY": 1350,
|
||||
"width": 33,
|
||||
"height": 35,
|
||||
"rawWidth": 33,
|
||||
|
|
@ -315,11 +315,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 1,
|
||||
"trimX": 732,
|
||||
"trimY": 1488,
|
||||
"trimX": 446,
|
||||
"trimY": 1162,
|
||||
"width": 34,
|
||||
"height": 45,
|
||||
"rawWidth": 34,
|
||||
|
|
@ -384,11 +384,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 220,
|
||||
"trimY": 1725,
|
||||
"trimX": 2,
|
||||
"trimY": 2001,
|
||||
"width": 28,
|
||||
"height": 45,
|
||||
"rawWidth": 34,
|
||||
|
|
@ -407,11 +407,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 732,
|
||||
"trimY": 1441,
|
||||
"trimX": 399,
|
||||
"trimY": 1162,
|
||||
"width": 34,
|
||||
"height": 45,
|
||||
"rawWidth": 34,
|
||||
|
|
@ -479,7 +479,7 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 1,
|
||||
"trimX": 463,
|
||||
"trimX": 352,
|
||||
"trimY": 1162,
|
||||
"width": 34,
|
||||
"height": 45,
|
||||
|
|
@ -499,11 +499,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 768,
|
||||
"trimY": 1469,
|
||||
"trimX": 721,
|
||||
"trimY": 1385,
|
||||
"width": 32,
|
||||
"height": 47,
|
||||
"rawWidth": 34,
|
||||
|
|
@ -525,8 +525,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 769,
|
||||
"trimY": 1420,
|
||||
"trimX": 770,
|
||||
"trimY": 1352,
|
||||
"width": 32,
|
||||
"height": 47,
|
||||
"rawWidth": 34,
|
||||
|
|
@ -734,10 +734,10 @@
|
|||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1034,
|
||||
"width": 274,
|
||||
"height": 316,
|
||||
"rawWidth": 274,
|
||||
"rawHeight": 316,
|
||||
"width": 346,
|
||||
"height": 348,
|
||||
"rawWidth": 346,
|
||||
"rawHeight": 348,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -752,15 +752,15 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1310,
|
||||
"width": 242,
|
||||
"height": 299,
|
||||
"rawWidth": 242,
|
||||
"rawHeight": 299,
|
||||
"trimX": 352,
|
||||
"trimY": 1198,
|
||||
"width": 236,
|
||||
"height": 296,
|
||||
"rawWidth": 236,
|
||||
"rawHeight": 296,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -775,15 +775,15 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 303,
|
||||
"trimY": 1337,
|
||||
"width": 242,
|
||||
"height": 296,
|
||||
"rawWidth": 242,
|
||||
"rawHeight": 296,
|
||||
"trimX": 2,
|
||||
"trimY": 1709,
|
||||
"width": 230,
|
||||
"height": 290,
|
||||
"rawWidth": 230,
|
||||
"rawHeight": 290,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
|
|
@ -847,8 +847,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1978,
|
||||
"trimX": 100,
|
||||
"trimY": 1641,
|
||||
"width": 48,
|
||||
"height": 62,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -870,8 +870,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 1,
|
||||
"trimX": 571,
|
||||
"trimY": 1581,
|
||||
"trimX": 194,
|
||||
"trimY": 1641,
|
||||
"width": 28,
|
||||
"height": 62,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -893,8 +893,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 52,
|
||||
"trimY": 1978,
|
||||
"trimX": 150,
|
||||
"trimY": 1641,
|
||||
"width": 42,
|
||||
"height": 62,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -936,11 +936,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 1,
|
||||
"trimX": 732,
|
||||
"trimY": 1581,
|
||||
"trimX": 2,
|
||||
"trimY": 1641,
|
||||
"width": 46,
|
||||
"height": 64,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -959,11 +959,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 320,
|
||||
"trimY": 1100,
|
||||
"trimX": 232,
|
||||
"trimY": 2001,
|
||||
"width": 42,
|
||||
"height": 62,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -982,11 +982,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 1,
|
||||
"trimX": 320,
|
||||
"trimY": 1034,
|
||||
"trimX": 166,
|
||||
"trimY": 2001,
|
||||
"width": 42,
|
||||
"height": 64,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -1005,11 +1005,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 1,
|
||||
"trimX": 732,
|
||||
"trimY": 1675,
|
||||
"trimX": 50,
|
||||
"trimY": 1641,
|
||||
"width": 48,
|
||||
"height": 62,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -1031,8 +1031,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 732,
|
||||
"trimY": 1535,
|
||||
"trimX": 32,
|
||||
"trimY": 2001,
|
||||
"width": 44,
|
||||
"height": 66,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -1054,8 +1054,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 732,
|
||||
"trimY": 1629,
|
||||
"trimX": 100,
|
||||
"trimY": 2001,
|
||||
"width": 44,
|
||||
"height": 64,
|
||||
"rawWidth": 48,
|
||||
|
|
@ -1077,7 +1077,7 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 803,
|
||||
"trimX": 802,
|
||||
"trimY": 1440,
|
||||
"width": 216,
|
||||
"height": 216,
|
||||
|
|
@ -1123,8 +1123,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 320,
|
||||
"trimY": 1164,
|
||||
"trimX": 590,
|
||||
"trimY": 1350,
|
||||
"width": 141,
|
||||
"height": 32,
|
||||
"rawWidth": 141,
|
||||
|
|
@ -1166,11 +1166,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 220,
|
||||
"trimY": 1605,
|
||||
"trimX": 181,
|
||||
"trimY": 1600,
|
||||
"width": 89,
|
||||
"height": 29,
|
||||
"rawWidth": 89,
|
||||
|
|
@ -1189,11 +1189,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 601,
|
||||
"trimY": 1601,
|
||||
"trimX": 285,
|
||||
"trimY": 1709,
|
||||
"width": 129,
|
||||
"height": 122,
|
||||
"rawWidth": 129,
|
||||
|
|
@ -1212,11 +1212,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 320,
|
||||
"trimY": 1198,
|
||||
"trimX": 721,
|
||||
"trimY": 1419,
|
||||
"width": 276,
|
||||
"height": 79,
|
||||
"rawWidth": 276,
|
||||
|
|
@ -1304,11 +1304,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 601,
|
||||
"trimY": 1477,
|
||||
"trimX": 234,
|
||||
"trimY": 1849,
|
||||
"width": 129,
|
||||
"height": 122,
|
||||
"rawWidth": 129,
|
||||
|
|
@ -1330,8 +1330,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 601,
|
||||
"trimY": 1350,
|
||||
"trimX": 590,
|
||||
"trimY": 1384,
|
||||
"width": 129,
|
||||
"height": 125,
|
||||
"rawWidth": 129,
|
||||
|
|
@ -1353,8 +1353,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 262,
|
||||
"trimY": 1696,
|
||||
"trimX": 206,
|
||||
"trimY": 1527,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1376,8 +1376,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": 0,
|
||||
"trimX": 241,
|
||||
"trimY": 1696,
|
||||
"trimX": 206,
|
||||
"trimY": 1498,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1396,11 +1396,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 393,
|
||||
"trimY": 1141,
|
||||
"trimX": 206,
|
||||
"trimY": 1411,
|
||||
"width": 21,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1422,8 +1422,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 220,
|
||||
"trimY": 1696,
|
||||
"trimX": 206,
|
||||
"trimY": 1469,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1442,11 +1442,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 364,
|
||||
"trimY": 1141,
|
||||
"trimX": 206,
|
||||
"trimY": 1382,
|
||||
"width": 21,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1468,8 +1468,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 579,
|
||||
"trimY": 1308,
|
||||
"trimX": 206,
|
||||
"trimY": 1440,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1488,11 +1488,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 579,
|
||||
"trimY": 1279,
|
||||
"trimX": 439,
|
||||
"trimY": 1141,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
"rawWidth": 21,
|
||||
|
|
@ -1514,7 +1514,7 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 480,
|
||||
"trimX": 410,
|
||||
"trimY": 1141,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
|
|
@ -1537,7 +1537,7 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 451,
|
||||
"trimX": 381,
|
||||
"trimY": 1141,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
|
|
@ -1560,7 +1560,7 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 422,
|
||||
"trimX": 352,
|
||||
"trimY": 1141,
|
||||
"width": 19,
|
||||
"height": 27,
|
||||
|
|
@ -1580,11 +1580,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 260,
|
||||
"trimY": 1554,
|
||||
"trimX": 53,
|
||||
"trimY": 1600,
|
||||
"width": 25,
|
||||
"height": 39,
|
||||
"rawWidth": 25,
|
||||
|
|
@ -1626,11 +1626,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 104,
|
||||
"trimY": 1760,
|
||||
"trimX": 503,
|
||||
"trimY": 1613,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -1649,11 +1649,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 355,
|
||||
"trimY": 1760,
|
||||
"trimX": 513,
|
||||
"trimY": 1965,
|
||||
"width": 215,
|
||||
"height": 49,
|
||||
"rawWidth": 215,
|
||||
|
|
@ -1675,8 +1675,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 478,
|
||||
"trimY": 1581,
|
||||
"trimX": 409,
|
||||
"trimY": 1692,
|
||||
"width": 91,
|
||||
"height": 49,
|
||||
"rawWidth": 91,
|
||||
|
|
@ -1695,11 +1695,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1554,
|
||||
"trimY": 1382,
|
||||
"width": 256,
|
||||
"height": 49,
|
||||
"rawWidth": 256,
|
||||
|
|
@ -1744,8 +1744,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 96,
|
||||
"trimY": 1978,
|
||||
"trimX": 503,
|
||||
"trimY": 1562,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -1764,11 +1764,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 456,
|
||||
"trimY": 1760,
|
||||
"trimX": 730,
|
||||
"trimY": 1964,
|
||||
"width": 215,
|
||||
"height": 48,
|
||||
"rawWidth": 215,
|
||||
|
|
@ -1813,8 +1813,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 314,
|
||||
"trimY": 1978,
|
||||
"trimX": 509,
|
||||
"trimY": 1914,
|
||||
"width": 215,
|
||||
"height": 49,
|
||||
"rawWidth": 215,
|
||||
|
|
@ -1856,11 +1856,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 53,
|
||||
"trimY": 1760,
|
||||
"trimX": 503,
|
||||
"trimY": 1511,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -1882,8 +1882,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 406,
|
||||
"trimY": 1760,
|
||||
"trimX": 944,
|
||||
"trimY": 1709,
|
||||
"width": 215,
|
||||
"height": 48,
|
||||
"rawWidth": 215,
|
||||
|
|
@ -1905,8 +1905,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1707,
|
||||
"trimX": 285,
|
||||
"trimY": 1641,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -1928,8 +1928,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1760,
|
||||
"trimX": 234,
|
||||
"trimY": 1631,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2017,11 +2017,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 305,
|
||||
"trimY": 1760,
|
||||
"trimX": 726,
|
||||
"trimY": 1914,
|
||||
"width": 216,
|
||||
"height": 48,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2040,11 +2040,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1656,
|
||||
"trimX": 155,
|
||||
"trimY": 1382,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2066,8 +2066,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 255,
|
||||
"trimY": 1760,
|
||||
"trimX": 459,
|
||||
"trimY": 1743,
|
||||
"width": 216,
|
||||
"height": 48,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2086,11 +2086,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 2,
|
||||
"trimY": 1605,
|
||||
"trimX": 104,
|
||||
"trimY": 1382,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2135,8 +2135,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 205,
|
||||
"trimY": 1760,
|
||||
"trimX": 409,
|
||||
"trimY": 1743,
|
||||
"width": 216,
|
||||
"height": 48,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2155,11 +2155,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 796,
|
||||
"trimY": 1709,
|
||||
"trimX": 53,
|
||||
"trimY": 1382,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2178,11 +2178,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 283,
|
||||
"trimY": 1696,
|
||||
"trimX": 721,
|
||||
"trimY": 1697,
|
||||
"width": 215,
|
||||
"height": 49,
|
||||
"rawWidth": 215,
|
||||
|
|
@ -2227,8 +2227,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 251,
|
||||
"trimY": 1645,
|
||||
"trimX": 296,
|
||||
"trimY": 1980,
|
||||
"width": 215,
|
||||
"height": 49,
|
||||
"rawWidth": 215,
|
||||
|
|
@ -2247,11 +2247,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 798,
|
||||
"trimY": 1658,
|
||||
"trimX": 234,
|
||||
"trimY": 1382,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2273,8 +2273,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 260,
|
||||
"trimY": 1581,
|
||||
"trimX": 802,
|
||||
"trimY": 1658,
|
||||
"width": 216,
|
||||
"height": 49,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2316,11 +2316,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 155,
|
||||
"trimY": 1760,
|
||||
"trimX": 503,
|
||||
"trimY": 1664,
|
||||
"width": 216,
|
||||
"height": 48,
|
||||
"rawWidth": 216,
|
||||
|
|
@ -2362,11 +2362,11 @@
|
|||
"rawTextureUuid": "a09565b9-062c-4900-80f9-f7c171c19447",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 320,
|
||||
"trimY": 1279,
|
||||
"trimX": 296,
|
||||
"trimY": 1382,
|
||||
"width": 257,
|
||||
"height": 49,
|
||||
"rawWidth": 257,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 122 KiB After Width: | Height: | Size: 146 KiB |
|
|
@ -72,7 +72,7 @@ export default class CareerItem extends cc.Component {
|
|||
if (length > 12) length = 12;
|
||||
for (let i = 4; i < length; i++) {
|
||||
this.randerChildren.push(this.node.children[i]);
|
||||
let username = cc.fx.GameTool.subName(this.data.rankingData[i - 4].username, 7);
|
||||
let username = cc.fx.GameTool.subName(this.data.rankingData[i - 4].username, 5);
|
||||
if (username == "user") username = "匿名玩家";
|
||||
// console.log("用户名字:", username);
|
||||
this.node.children[i].getChildByName("kong").active = false;
|
||||
|
|
|
|||
|
|
@ -441,7 +441,7 @@ export default class CareerList extends cc.Component {
|
|||
length = this.firstRender.children.length;
|
||||
for (let i = 3; i < length; i++) {
|
||||
this.randerChildren.push(this.firstRender.children[i]);
|
||||
let username = cc.fx.GameTool.subName(this.topData[i - 3].username, 7);
|
||||
let username = cc.fx.GameTool.subName(this.topData[i - 3].username, 5);
|
||||
if (username == "user") username = "匿名玩家";
|
||||
this.firstRender.children[i].getChildByName("name").getComponent(cc.Label).string = username + "";
|
||||
this.firstRender.children[i].getChildByName("rank").getComponent(cc.Label).string = this.topData[i - 3].addLevel;
|
||||
|
|
|
|||
|
|
@ -52,14 +52,14 @@ export default class Item extends cc.Component {
|
|||
}
|
||||
if (this.data.useravatar == "" || this.data.useravatar == null || this.data.useravatar == undefined
|
||||
) {
|
||||
this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
|
||||
this.node.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.defaultsprite;
|
||||
}
|
||||
else if (this.data.useravatar == "0" || this.data.useravatar == "1" || this.data.useravatar == "2"
|
||||
|| this.data.useravatar == "3") {
|
||||
let useravatar = this.data.useravatar;
|
||||
let useravatarTemp = "icon_" + useravatar;
|
||||
console.log("用户头像:", useravatarTemp);
|
||||
this.node.getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp);
|
||||
this.node.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp);
|
||||
}
|
||||
|
||||
else this.setPic();
|
||||
|
|
@ -75,7 +75,7 @@ export default class Item extends cc.Component {
|
|||
cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => {
|
||||
if (texture) {
|
||||
this.node.getChildByName("pic").active = true;
|
||||
var sprite = this.node.getChildByName("pic").getComponent(cc.Sprite);
|
||||
var sprite = this.node.getChildByName("pic").getChildByName("pic").getComponent(cc.Sprite);
|
||||
sprite.spriteFrame = new cc.SpriteFrame(texture);
|
||||
// console.log(this.data.rank,"设置头像成功",err);
|
||||
}
|
||||
|
|
|
|||
476
assets/custom/Json/level731.json
Normal file
|
|
@ -0,0 +1,476 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "731",
|
||||
"map": [
|
||||
11,
|
||||
13
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 11,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 10,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -660,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 7,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 6,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 732,
|
||||
"num": 1,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 733,
|
||||
"num": 2,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 3,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 4,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 5,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 18,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 20,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 22,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 24,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 41,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 42,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 43,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 39,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 40,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 25,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 17,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 19,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 21,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level731.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "c79f3410-e398-4ba9-870c-5aec1d4069fd",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
405
assets/custom/Json/level732.json
Normal file
|
|
@ -0,0 +1,405 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "732",
|
||||
"map": [
|
||||
9,
|
||||
12
|
||||
],
|
||||
"time": 60,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 5,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 15,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 11,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 15,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 5,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 7,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 733,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 734,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 11,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 13,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 15,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 19,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 23,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 29,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 30,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 27,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 28,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 18,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 20,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 12,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 14,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level732.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "aebfb646-a4e4-4c8c-9b45-f2a464bba889",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
535
assets/custom/Json/level733.json
Normal file
|
|
@ -0,0 +1,535 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "733",
|
||||
"map": [
|
||||
10,
|
||||
12
|
||||
],
|
||||
"time": 60,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 17,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 17,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 3,
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 510
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 734,
|
||||
"num": 0,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 735,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 2,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 3,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 4,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 7,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 8,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 21,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 33,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 34,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 35,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 31,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 32,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 26,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 27,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 28,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 18,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 20,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 16,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level733.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "2b45fd58-9e9a-4ce1-ac74-247cdcd20095",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
465
assets/custom/Json/level734.json
Normal file
|
|
@ -0,0 +1,465 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "734",
|
||||
"map": [
|
||||
9,
|
||||
10
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 21,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 440
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 735,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "464"
|
||||
},
|
||||
{
|
||||
"id": 736,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "464"
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 15,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 17,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 27,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 36,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 37,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 33,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "03"
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 34,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "03"
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 20,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 22,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 10,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 6
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level734.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "611b4e02-425c-47e5-ae24-06b47a5ac137",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
261
assets/custom/Json/level735.json
Normal file
|
|
@ -0,0 +1,261 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "735",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 80,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 1,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 2,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 3,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 7,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 9,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 6,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 11,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 13,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 14,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 15,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 16,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 17,
|
||||
"id": 380
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 736,
|
||||
"num": 12,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "108763952441739524"
|
||||
},
|
||||
{
|
||||
"id": 737,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "108763952441739524"
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 16,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "108763952441739524"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level735.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "5124ae8f-d10d-42a5-866b-517a74483b3b",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
336
assets/custom/Json/level736.json
Normal file
|
|
@ -0,0 +1,336 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "736",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 80,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 1,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 2,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 3,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 6,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 11,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 13,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 14,
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 737,
|
||||
"num": 10,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "3402402"
|
||||
},
|
||||
{
|
||||
"id": 738,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "3402402"
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 14,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "3402402"
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 18,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "17659765"
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 20,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "17659765"
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 26,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "17659765"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level736.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "3cabed00-3c6e-44b4-a06f-ecd0b86890e2",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
371
assets/custom/Json/level737.json
Normal file
|
|
@ -0,0 +1,371 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "737",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 18,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 7,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 8,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 11,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 15,
|
||||
"id": 380
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 738,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 739,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 5,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 7,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 17,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 19,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 25,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 26,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 22,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 23,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 20,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level737.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "8184aca0-fcaa-45bf-bcce-22bce48de804",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
384
assets/custom/Json/level738.json
Normal file
|
|
@ -0,0 +1,384 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "738",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 90,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 739,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 740,
|
||||
"num": 4,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 5,
|
||||
"color": 1,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 6,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 7,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 17,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 26,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 27,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 24,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 25,
|
||||
"color": 10,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 21,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 12,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 14,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level738.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "c1989ae7-d9f9-4c2d-9208-1a3c72ee686e",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
413
assets/custom/Json/level739.json
Normal file
|
|
@ -0,0 +1,413 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "739",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 160,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 4,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 8,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 6,
|
||||
"floor": 3,
|
||||
"floorTime": 10,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"floor": 3,
|
||||
"floorTime": 10,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 4,
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 740,
|
||||
"num": 1,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 741,
|
||||
"num": 2,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 3,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 32,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 4
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 29,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 30,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 31,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 22,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 20,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 6,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 16,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "67"
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 19,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "67"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level739.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "c5cc8ce8-28a7-4b14-ae93-250480090709",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
369
assets/custom/Json/level740.json
Normal file
|
|
@ -0,0 +1,369 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "740",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 165,
|
||||
"gap": [
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 6,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 2,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 7,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 1,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 741,
|
||||
"num": 4,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "71"
|
||||
},
|
||||
{
|
||||
"id": 742,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "71"
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 1,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "59"
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 2,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "59"
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 9,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 11,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 15,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 17,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 24,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "30"
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 25,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "30"
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 8,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "424"
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 10,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "424"
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 12,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "424"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level740.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "65045bff-0953-4202-bad0-681baae25320",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
439
assets/custom/Json/level741.json
Normal file
|
|
@ -0,0 +1,439 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "741",
|
||||
"map": [
|
||||
8,
|
||||
11
|
||||
],
|
||||
"time": 125,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 9,
|
||||
"color": 7,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 4,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 3,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -540,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 4,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 13,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 742,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 743,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 15,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 21,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 26,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 27,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 22,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 23,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 20,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 9,
|
||||
"color": 6,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 11,
|
||||
"color": 6,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 8,
|
||||
"color": 10,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 10,
|
||||
"color": 10,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 6,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level741.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "19cb68fd-4345-46fa-9d93-578cadb4b69b",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
392
assets/custom/Json/level742.json
Normal file
|
|
@ -0,0 +1,392 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "742",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 90,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 4,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 743,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 744,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 11,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 19,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 30,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 31,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 10,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 12,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 27,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 0,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "18"
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "18"
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 28,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "46"
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 29,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "46"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level742.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "dc54250f-582c-43ce-b521-5b55546c47ec",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
404
assets/custom/Json/level743.json
Normal file
|
|
@ -0,0 +1,404 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "743",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 7,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 3,
|
||||
"id": 420
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 744,
|
||||
"num": 2,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 745,
|
||||
"num": 3,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 4,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 8,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 10,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 16,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 18,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 24,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 27,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 28,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 9,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 11,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 15,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 17,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 19,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level743.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "aa814bb3-4002-4750-9ba2-12a8063d7888",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
388
assets/custom/Json/level744.json
Normal file
|
|
@ -0,0 +1,388 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "744",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"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": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 5,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 745,
|
||||
"num": 0,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 746,
|
||||
"num": 1,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 5
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 3,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 6,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 9,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 17,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 21,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 23,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 29,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 30,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 26,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 22,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 12,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 13,
|
||||
"order": false
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level744.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "8bdfa4a6-1ced-443c-a13d-104918681b3a",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
385
assets/custom/Json/level745.json
Normal file
|
|
@ -0,0 +1,385 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "745",
|
||||
"map": [
|
||||
10,
|
||||
8
|
||||
],
|
||||
"time": 120,
|
||||
"gap": [
|
||||
{
|
||||
"x": 4,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 9,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 4,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 9,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 7,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 746,
|
||||
"num": 0,
|
||||
"color": 7,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 12
|
||||
},
|
||||
{
|
||||
"id": 747,
|
||||
"num": 1,
|
||||
"color": 7,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 12
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 3,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 4,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 25,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 28,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 29,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 26,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 20,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 24,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 12,
|
||||
"color": 4,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 16,
|
||||
"color": 4,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 8,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 11
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 10,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 11
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level745.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "75dfe2ff-c5f9-4c27-9dd2-0b4dabf8ad2b",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
387
assets/custom/Json/level746.json
Normal file
|
|
@ -0,0 +1,387 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "746",
|
||||
"map": [
|
||||
8,
|
||||
9
|
||||
],
|
||||
"time": 105,
|
||||
"gap": [
|
||||
{
|
||||
"x": 6,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 14,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 747,
|
||||
"num": 1,
|
||||
"color": 7,
|
||||
"special": 4,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 748,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 3
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 5,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 8,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 10,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 16,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 23,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 26,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 27,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 24,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 25,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 17,
|
||||
"color": 2,
|
||||
"special": 4,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 7,
|
||||
"color": 6,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 6
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level746.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "803baf0b-b4d6-4763-ac6d-4effc31b70dc",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
314
assets/custom/Json/level747.json
Normal file
|
|
@ -0,0 +1,314 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "747",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 105,
|
||||
"gap": [
|
||||
{
|
||||
"x": 5,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 21,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 3,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"lockTime": 3,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 9,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 2,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 14,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 748,
|
||||
"num": 0,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 749,
|
||||
"num": 2,
|
||||
"color": 2,
|
||||
"special": 6,
|
||||
"length": 2,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 3,
|
||||
"color": 2,
|
||||
"special": 6,
|
||||
"length": 0,
|
||||
"lockTime": 4
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 9,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "644"
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 11,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "644"
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 20,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 8,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "788"
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "788"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level747.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "c2a5431f-66c4-4084-9214-f0fe6ccca2bc",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
700
assets/custom/Json/level748.json
Normal file
|
|
@ -0,0 +1,700 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "748",
|
||||
"map": [
|
||||
11,
|
||||
12
|
||||
],
|
||||
"time": 205,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 5,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 5,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 13,
|
||||
"id": 520
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 15,
|
||||
"id": 530
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 17,
|
||||
"id": 540
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 550
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 560
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 570
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 580
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 749,
|
||||
"num": 2,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 750,
|
||||
"num": 3,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 4,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 5,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 6,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 13,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 15,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 26,
|
||||
"color": 1,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 22
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 37,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 44,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 49,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 50,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 51,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 47,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 48,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 36,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 19
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 38,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 19
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 31,
|
||||
"color": 3,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 16,
|
||||
"color": 6,
|
||||
"special": 1,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 7,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 15
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 14,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 15
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level748.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "1b7f78a0-420c-4fef-97aa-8783ac801b69",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
371
assets/custom/Json/level749.json
Normal file
|
|
@ -0,0 +1,371 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "749",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 2,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 3,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 5,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 410
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 750,
|
||||
"num": 0,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 751,
|
||||
"num": 2,
|
||||
"color": 10,
|
||||
"special": 4,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 9,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 11,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 15,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 21,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 18,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 16,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 8,
|
||||
"color": 1,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level749.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "3134aede-d44e-4e5b-9f39-946df921075f",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
614
assets/custom/Json/level750.json
Normal file
|
|
@ -0,0 +1,614 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "750",
|
||||
"map": [
|
||||
11,
|
||||
12
|
||||
],
|
||||
"time": 145,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 10,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 9,
|
||||
"y": 9,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 14,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 450
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -600,
|
||||
"z": 0
|
||||
},
|
||||
"id": 460
|
||||
},
|
||||
{
|
||||
"block": 17,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 470
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 480
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 490
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 500
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 510
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 520
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 530
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 540
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 540,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 550
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 560
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 570
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 580
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 480,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 590
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 751,
|
||||
"num": 3,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 752,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 5,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 3,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 6,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 7,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 15,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 17,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 21,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 35,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 3,
|
||||
"freeze": 11
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 36,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 11
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 37,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 11
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 33,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 34,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 26,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 14
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 20,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 16,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 8,
|
||||
"color": 5,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level750.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "7cef81ad-eb3f-46b5-b2f9-14a368826fb9",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
313
assets/custom/Json/level751.json
Normal file
|
|
@ -0,0 +1,313 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "751",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 210,
|
||||
"gap": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 3,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 4,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"floor": 1,
|
||||
"floorTime": 5,
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 6,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 752,
|
||||
"num": 1,
|
||||
"color": 5,
|
||||
"special": 4,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 753,
|
||||
"num": 2,
|
||||
"color": 5,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 3,
|
||||
"color": 5,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 10,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "030"
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 13,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "030"
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 17,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "56"
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 23,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "56"
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 26,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 27,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 24,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 25,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 18,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 4,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 16,
|
||||
"color": 3,
|
||||
"special": 4,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 6,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level751.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "71f97e0e-a605-435c-95e2-0cf870c1ad40",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
385
assets/custom/Json/level752.json
Normal file
|
|
@ -0,0 +1,385 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "752",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"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": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 2,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 5,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 8,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 753,
|
||||
"num": 0,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 754,
|
||||
"num": 1,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 2,
|
||||
"color": 1,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 4,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 5,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 8,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 12
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 13,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 15,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 20,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 14
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 25,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 26,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 21,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 22,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 12,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level752.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "06a28fea-ff00-4228-9b93-ef3c8daa5015",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
316
assets/custom/Json/level753.json
Normal file
|
|
@ -0,0 +1,316 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 5,
|
||||
"color": "5"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"color": "5"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"color": "5"
|
||||
}
|
||||
],
|
||||
"id": "753",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 135,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 13,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 360
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 754,
|
||||
"num": 0,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 755,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 9,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 15,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 22,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 23,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 19,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 14,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 16,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 8,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 10,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level753.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "0f39d147-02a3-42ed-a0b4-80f7b2f3ef13",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
393
assets/custom/Json/level754.json
Normal file
|
|
@ -0,0 +1,393 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"color": "3"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"color": "3"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"color": "3"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"color": "3"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 5,
|
||||
"color": "3"
|
||||
},
|
||||
{
|
||||
"x": 5,
|
||||
"y": 4,
|
||||
"color": "3"
|
||||
}
|
||||
],
|
||||
"id": "754",
|
||||
"map": [
|
||||
9,
|
||||
8
|
||||
],
|
||||
"time": 125,
|
||||
"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
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 14,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 4,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"freezeTime": 12,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 7,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 15,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 11,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 8,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 6,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 1,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"stacking": 10,
|
||||
"id": 350
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 755,
|
||||
"num": 0,
|
||||
"color": 2,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 756,
|
||||
"num": 1,
|
||||
"color": 2,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 9,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 11,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 13,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 3,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 15,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 17,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 7
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 19,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 26,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 29,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 27,
|
||||
"color": 10,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 28,
|
||||
"color": 10,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 16,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 18,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 770,
|
||||
"num": 10,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 771,
|
||||
"num": 12,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level754.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "02b33511-18e4-4f70-9fe5-61d82585f751",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
350
assets/custom/Json/level755.json
Normal file
|
|
@ -0,0 +1,350 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [
|
||||
{
|
||||
"x": 3,
|
||||
"y": 5,
|
||||
"color": "2"
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 4,
|
||||
"color": "2"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 5,
|
||||
"color": "2"
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 4,
|
||||
"color": "2"
|
||||
}
|
||||
],
|
||||
"id": "755",
|
||||
"map": [
|
||||
8,
|
||||
9
|
||||
],
|
||||
"time": 120,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 4,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 7,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 756,
|
||||
"num": 2,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 757,
|
||||
"num": 3,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 4,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 5,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 6,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 12,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"colorArray": "2696"
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 14,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "2696"
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 24,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 25,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 21,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 22,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 23,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 15,
|
||||
"color": 4,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 11,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 770,
|
||||
"num": 13,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 771,
|
||||
"num": 9,
|
||||
"color": 8,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 5
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level755.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "0f176fb1-7d52-43e4-a80a-2fd65dc68273",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
318
assets/custom/Json/level756.json
Normal file
|
|
@ -0,0 +1,318 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "756",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 105,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 50,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 50,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 1,
|
||||
"type": 6,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"boomTime": 50,
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 757,
|
||||
"num": 0,
|
||||
"color": 5,
|
||||
"special": 4,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 758,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 4,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 9,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 11,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 15,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 18,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 22,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 20,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 12,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 6
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 3,
|
||||
"length": 1,
|
||||
"freeze": 9
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level756.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "dfe3a273-6812-46ec-9870-f5ef397b2473",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
341
assets/custom/Json/level757.json
Normal file
|
|
@ -0,0 +1,341 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "757",
|
||||
"map": [
|
||||
8,
|
||||
8
|
||||
],
|
||||
"time": 130,
|
||||
"gap": []
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 2,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 4,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 6,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 3,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 10,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 390
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 758,
|
||||
"num": 0,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 759,
|
||||
"num": 2,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 3,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 4,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 5,
|
||||
"color": 2,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 9,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 3
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 13,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 15,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 23,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 21,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 18,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 770,
|
||||
"num": 19,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 771,
|
||||
"num": 8,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 772,
|
||||
"num": 10,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level757.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "b44a38f0-32ab-4c9b-b8e0-212f08b0a37e",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
431
assets/custom/Json/level758.json
Normal file
|
|
@ -0,0 +1,431 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "758",
|
||||
"map": [
|
||||
10,
|
||||
8
|
||||
],
|
||||
"time": 105,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 8,
|
||||
"y": 1,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 7,
|
||||
"y": 2,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 1,
|
||||
"floorTime": 12,
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"floor": 2,
|
||||
"floorTime": 8,
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 3,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 9,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 480,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 759,
|
||||
"num": 0,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 760,
|
||||
"num": 2,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 3,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": false
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 9,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 2
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 13,
|
||||
"color": 9,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 2
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 15,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 17,
|
||||
"color": 6,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 21,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 24,
|
||||
"color": 2,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 8
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 25,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 770,
|
||||
"num": 14,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 2,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 771,
|
||||
"num": 16,
|
||||
"color": 10,
|
||||
"special": 3,
|
||||
"length": 0,
|
||||
"freeze": 10
|
||||
},
|
||||
{
|
||||
"id": 772,
|
||||
"num": 27,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 773,
|
||||
"num": 29,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 2,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
},
|
||||
{
|
||||
"id": 774,
|
||||
"num": 30,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"longAndShort": 12,
|
||||
"order": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level758.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "c4a7b431-4421-4b12-9921-4aa4ac289568",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
256
assets/custom/Json/level759.json
Normal file
|
|
@ -0,0 +1,256 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "759",
|
||||
"map": [
|
||||
9,
|
||||
9
|
||||
],
|
||||
"time": 130,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 7,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 1,
|
||||
"y": 6,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 18,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 16,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 9,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -300,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 2,
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 4,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 3,
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 5,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 4,
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 180,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 5,
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 2,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -60,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 6,
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 6,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 22,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": 180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 9,
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 8,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": -300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 11,
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 60,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 8,
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": 60,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 12,
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 10,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 420,
|
||||
"y": -180,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 14,
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 16,
|
||||
"position": {
|
||||
"x": 300,
|
||||
"y": -420,
|
||||
"z": 0
|
||||
},
|
||||
"questionTime": 16,
|
||||
"id": 370
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 760,
|
||||
"num": 23,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 3,
|
||||
"colorArray": "75861432975142974"
|
||||
},
|
||||
{
|
||||
"id": 761,
|
||||
"num": 24,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "75861432975142974"
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 25,
|
||||
"color": 8,
|
||||
"special": 0,
|
||||
"length": 0,
|
||||
"colorArray": "75861432975142974"
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level759.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "d9b4c823-90d5-4bd4-8fe2-2b93940ec930",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
426
assets/custom/Json/level760.json
Normal file
|
|
@ -0,0 +1,426 @@
|
|||
{
|
||||
"LEVEL_INFO": [
|
||||
{
|
||||
"risefall": [],
|
||||
"id": "760",
|
||||
"map": [
|
||||
8,
|
||||
10
|
||||
],
|
||||
"time": 110,
|
||||
"gap": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 3,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 4,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
},
|
||||
{
|
||||
"x": 6,
|
||||
"y": 8,
|
||||
"z": 0
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"BLOCK_INFO": [
|
||||
[
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 210
|
||||
},
|
||||
{
|
||||
"block": 23,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 220
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 230
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 240
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -240,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 250
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -480,
|
||||
"z": 0
|
||||
},
|
||||
"id": 260
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 9,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 270
|
||||
},
|
||||
{
|
||||
"block": 19,
|
||||
"color": 4,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 280
|
||||
},
|
||||
{
|
||||
"block": 20,
|
||||
"color": 7,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 290
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 300
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"id": 310
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 5,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 360,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 320
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 330
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 11,
|
||||
"type": 0,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -240,
|
||||
"z": 0
|
||||
},
|
||||
"id": 340
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 5,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 350
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 1,
|
||||
"type": 8,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"id": 360
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 8,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": -120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 370
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 380
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 390
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 10,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 400
|
||||
},
|
||||
{
|
||||
"block": 2,
|
||||
"color": 2,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 240,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 410
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -120,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 420
|
||||
},
|
||||
{
|
||||
"block": 1,
|
||||
"color": 8,
|
||||
"type": 7,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": 120,
|
||||
"z": 0
|
||||
},
|
||||
"id": 430
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 4,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 120,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 2,
|
||||
"id": 440
|
||||
},
|
||||
{
|
||||
"block": 0,
|
||||
"color": 3,
|
||||
"type": 9,
|
||||
"position": {
|
||||
"x": 0,
|
||||
"y": -360,
|
||||
"z": 0
|
||||
},
|
||||
"adhesiveTime": 1,
|
||||
"id": 450
|
||||
}
|
||||
]
|
||||
],
|
||||
"WALL_INFO": [
|
||||
[
|
||||
{
|
||||
"id": 761,
|
||||
"num": 2,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 762,
|
||||
"num": 3,
|
||||
"color": 7,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 763,
|
||||
"num": 4,
|
||||
"color": 3,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 764,
|
||||
"num": 5,
|
||||
"color": 3,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 765,
|
||||
"num": 6,
|
||||
"color": 10,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 766,
|
||||
"num": 11,
|
||||
"color": 5,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 767,
|
||||
"num": 19,
|
||||
"color": 1,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 768,
|
||||
"num": 29,
|
||||
"color": 9,
|
||||
"special": 0,
|
||||
"length": 1
|
||||
},
|
||||
{
|
||||
"id": 769,
|
||||
"num": 27,
|
||||
"color": 8,
|
||||
"special": 5,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 770,
|
||||
"num": 28,
|
||||
"color": 8,
|
||||
"special": 5,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 771,
|
||||
"num": 25,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 2
|
||||
},
|
||||
{
|
||||
"id": 772,
|
||||
"num": 26,
|
||||
"color": 4,
|
||||
"special": 0,
|
||||
"length": 0
|
||||
},
|
||||
{
|
||||
"id": 773,
|
||||
"num": 12,
|
||||
"color": 2,
|
||||
"special": 2,
|
||||
"length": 2,
|
||||
"lock": true
|
||||
},
|
||||
{
|
||||
"id": 774,
|
||||
"num": 15,
|
||||
"color": 2,
|
||||
"special": 2,
|
||||
"length": 0,
|
||||
"lock": true
|
||||
}
|
||||
]
|
||||
]
|
||||
}
|
||||
6
assets/custom/Json/level760.json.meta
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"ver": "1.0.2",
|
||||
"uuid": "3d5e4241-63d9-489b-b608-c8971b197575",
|
||||
"importer": "json",
|
||||
"subMetas": {}
|
||||
}
|
||||
84
assets/effect/paper.effect
Normal file
|
|
@ -0,0 +1,84 @@
|
|||
// Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
||||
|
||||
CCEffect %{
|
||||
techniques:
|
||||
- passes:
|
||||
- vert: vs
|
||||
frag: fs
|
||||
blendState:
|
||||
targets:
|
||||
- blend: true
|
||||
rasterizerState:
|
||||
cullMode: none
|
||||
properties:
|
||||
texture: { value: white }
|
||||
alphaThreshold: { value: 0.5 }
|
||||
}%
|
||||
|
||||
|
||||
CCProgram vs %{
|
||||
precision highp float;
|
||||
|
||||
#include <cc-global>
|
||||
#include <cc-local>
|
||||
|
||||
in vec3 a_position;
|
||||
in vec4 a_color;
|
||||
out vec4 v_color;
|
||||
|
||||
#if USE_TEXTURE
|
||||
in vec2 a_uv0;
|
||||
out vec2 v_uv0;
|
||||
#endif
|
||||
|
||||
void main () {
|
||||
vec4 pos = vec4(a_position, 1);
|
||||
|
||||
#if CC_USE_MODEL
|
||||
pos = cc_matViewProj * cc_matWorld * pos;
|
||||
#else
|
||||
pos = cc_matViewProj * pos;
|
||||
#endif
|
||||
|
||||
#if USE_TEXTURE
|
||||
v_uv0 = a_uv0;
|
||||
#endif
|
||||
|
||||
v_color = a_color;
|
||||
|
||||
gl_Position = pos;
|
||||
}
|
||||
}%
|
||||
|
||||
|
||||
CCProgram fs %{
|
||||
precision highp float;
|
||||
|
||||
#include <alpha-test>
|
||||
#include <texture>
|
||||
|
||||
in vec4 v_color;
|
||||
|
||||
#if USE_TEXTURE
|
||||
in vec2 v_uv0;
|
||||
uniform sampler2D texture;
|
||||
#endif
|
||||
|
||||
void main () {
|
||||
vec4 o = vec4(1, 1, 1, 1);
|
||||
|
||||
#if USE_TEXTURE
|
||||
CCTexture(texture, v_uv0, o);
|
||||
#endif
|
||||
|
||||
o *= v_color;
|
||||
|
||||
ALPHA_TEST(o);
|
||||
|
||||
#if USE_BGRA
|
||||
gl_FragColor = o.bgra;
|
||||
#else
|
||||
gl_FragColor = o.rgba;
|
||||
#endif
|
||||
}
|
||||
}%
|
||||
18
assets/effect/paper.effect.meta
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"ver": "1.0.27",
|
||||
"uuid": "7d93bea6-2059-44be-937c-7f540b4cebfd",
|
||||
"importer": "effect",
|
||||
"compiledShaders": [
|
||||
{
|
||||
"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 uniform float alphaThreshold;\n#endif\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nvarying vec4 v_color;\n#if USE_TEXTURE\nvarying vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n vec4 o = vec4(1, 1, 1, 1);\n #if USE_TEXTURE\n vec4 texture_tmp = texture2D(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture\n texture_tmp.a *= texture2D(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o.rgb *= (texture_tmp.rgb * texture_tmp.rgb);\n o.a *= texture_tmp.a;\n #else\n o *= texture_tmp;\n #endif\n #endif\n o *= v_color;\n ALPHA_TEST(o);\n #if USE_BGRA\n gl_FragColor = o.bgra;\n #else\n gl_FragColor = o.rgba;\n #endif\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\nvoid ALPHA_TEST (in vec4 color) {\n #if USE_ALPHA_TEST\n if (color.a < alphaThreshold) discard;\n #endif\n}\nvoid ALPHA_TEST (in float alpha) {\n #if USE_ALPHA_TEST\n if (alpha < alphaThreshold) discard;\n #endif\n}\nin vec4 v_color;\n#if USE_TEXTURE\nin vec2 v_uv0;\nuniform sampler2D texture;\n#endif\nvoid main () {\n vec4 o = vec4(1, 1, 1, 1);\n #if USE_TEXTURE\n vec4 texture_tmp = texture(texture, v_uv0);\n #if CC_USE_ALPHA_ATLAS_texture\n texture_tmp.a *= texture(texture, v_uv0 + vec2(0, 0.5)).r;\n #endif\n #if INPUT_IS_GAMMA\n o.rgb *= (texture_tmp.rgb * texture_tmp.rgb);\n o.a *= texture_tmp.a;\n #else\n o *= texture_tmp;\n #endif\n #endif\n o *= v_color;\n ALPHA_TEST(o);\n #if USE_BGRA\n gl_FragColor = o.bgra;\n #else\n gl_FragColor = o.rgba;\n #endif\n}"
|
||||
}
|
||||
}
|
||||
],
|
||||
"subMetas": {}
|
||||
}
|
||||
BIN
assets/resources/shili.png
Normal file
|
After Width: | Height: | Size: 213 KiB |
38
assets/resources/shili.png.meta
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "f2dac225-5251-4519-89ef-2157f0d8d03d",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 674,
|
||||
"height": 1044,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"shili": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "e030050c-7461-474d-8275-54d89072454a",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "f2dac225-5251-4519-89ef-2157f0d8d03d",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 674,
|
||||
"height": 1044,
|
||||
"rawWidth": 674,
|
||||
"rawHeight": 1044,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/shili2.png
Normal file
|
After Width: | Height: | Size: 13 KiB |
38
assets/resources/shili2.png.meta
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"ver": "2.3.7",
|
||||
"uuid": "c2e6d156-2275-4dc6-b8cb-9f47ccfdf1cd",
|
||||
"importer": "texture",
|
||||
"type": "sprite",
|
||||
"wrapMode": "clamp",
|
||||
"filterMode": "bilinear",
|
||||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 618,
|
||||
"height": 604,
|
||||
"platformSettings": {},
|
||||
"subMetas": {
|
||||
"shili2": {
|
||||
"ver": "1.0.6",
|
||||
"uuid": "140b8ce6-5340-4410-89b6-f1fb0db8829d",
|
||||
"importer": "sprite-frame",
|
||||
"rawTextureUuid": "c2e6d156-2275-4dc6-b8cb-9f47ccfdf1cd",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 0,
|
||||
"trimY": 0,
|
||||
"width": 618,
|
||||
"height": 604,
|
||||
"rawWidth": 618,
|
||||
"rawHeight": 604,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 0,
|
||||
"borderRight": 0,
|
||||
"subMetas": {}
|
||||
}
|
||||
}
|
||||
}
|
||||