加载界面loadbg修改,艺术字修改
This commit is contained in:
parent
b3a08b364a
commit
54950b0c94
File diff suppressed because it is too large
Load Diff
|
@ -72,6 +72,7 @@ export default class MapConroler extends cc.Component {
|
||||||
|
|
||||||
timeLabel: cc.Node = null;
|
timeLabel: cc.Node = null;
|
||||||
levelLabel: cc.Node = null;
|
levelLabel: cc.Node = null;
|
||||||
|
coin: cc.Node = null;
|
||||||
|
|
||||||
new_mode: number = 0;
|
new_mode: number = 0;
|
||||||
mapWidth: number = 0;
|
mapWidth: number = 0;
|
||||||
|
@ -184,15 +185,18 @@ export default class MapConroler extends cc.Component {
|
||||||
}
|
}
|
||||||
|
|
||||||
initMap() {
|
initMap() {
|
||||||
|
|
||||||
// this.node.getChildByName("Wall").zIndex = 10;
|
// this.node.getChildByName("Wall").zIndex = 10;
|
||||||
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
|
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
|
||||||
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
|
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
|
||||||
|
this.coin = this.node.parent.getChildByName("Top").getChildByName("coin");
|
||||||
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
|
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
|
||||||
console.log("当前关卡时间", this.timeNumber);
|
console.log("当前关卡时间", this.timeNumber);
|
||||||
|
|
||||||
this.count_Time = 0;
|
this.count_Time = 0;
|
||||||
this.add_Time = 0;
|
this.add_Time = 0;
|
||||||
NumberToImage.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel)
|
NumberToImage.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel)
|
||||||
|
NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
||||||
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
|
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
|
||||||
// this.timeLabel.string = timeTemp.toString();
|
// this.timeLabel.string = timeTemp.toString();
|
||||||
NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 50, 20, "level_", this.levelLabel, false)
|
NumberToImage.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 50, 20, "level_", this.levelLabel, false)
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
// Learn life-cycle callbacks:
|
// Learn life-cycle callbacks:
|
||||||
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
|
// - https://docs.cocos.com/creator/manual/en/scripting/life-cycle-callbacks.html
|
||||||
|
|
||||||
const {ccclass, property} = cc._decorator;
|
const { ccclass, property } = cc._decorator;
|
||||||
|
|
||||||
@ccclass
|
@ccclass
|
||||||
export default class NumberToImage extends cc.Component {
|
export default class NumberToImage extends cc.Component {
|
||||||
|
@ -13,22 +13,22 @@ export default class NumberToImage extends cc.Component {
|
||||||
@property(cc.SpriteAtlas)
|
@property(cc.SpriteAtlas)
|
||||||
fontUI: cc.SpriteAtlas = null;
|
fontUI: cc.SpriteAtlas = null;
|
||||||
|
|
||||||
static font:any = null;
|
static font: any = null;
|
||||||
// LIFE-CYCLE CALLBACKS:
|
// LIFE-CYCLE CALLBACKS:
|
||||||
|
|
||||||
onLoad () {
|
onLoad() {
|
||||||
if(this.fontUI != null){
|
if (this.fontUI != null) {
|
||||||
NumberToImage.font = this.fontUI;
|
NumberToImage.font = this.fontUI;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//第一个参数 数字, 第二个参数 数字间距 第三个参数 占位宽度 第四个参数 目标节点
|
//第一个参数 数字, 第二个参数 数字间距 第三个参数 占位宽度 第四个参数 目标节点
|
||||||
static numberToImageNodes(number, width, posX, name ,targetNode:cc.Node,middle:boolean = false) {
|
static numberToImageNodes(number, width, posX, name, targetNode: cc.Node, middle: boolean = false) {
|
||||||
const numStr = number.toString();
|
const numStr = number.toString();
|
||||||
let cha = 0;
|
let cha = 0;
|
||||||
if(number > 99) cha = -posX
|
if (number > 99) cha = -posX
|
||||||
else if(number < 10) cha = posX
|
else if (number < 10) cha = posX
|
||||||
if(targetNode.children.length > 0)
|
if (targetNode.children.length > 0)
|
||||||
targetNode.removeAllChildren();
|
targetNode.removeAllChildren();
|
||||||
for (let i = 0; i < numStr.length; i++) {
|
for (let i = 0; i < numStr.length; i++) {
|
||||||
const digit = parseInt(numStr[i], 10);
|
const digit = parseInt(numStr[i], 10);
|
||||||
|
@ -40,39 +40,40 @@ export default class NumberToImage extends cc.Component {
|
||||||
node.x = i * width + cha;
|
node.x = i * width + cha;
|
||||||
node.parent = targetNode;
|
node.parent = targetNode;
|
||||||
}
|
}
|
||||||
if(middle){
|
if (middle) {
|
||||||
targetNode.x = targetNode.x - targetNode.children.length * (width-15) / 2;
|
targetNode.x = targetNode.x - targetNode.children.length * (width - 15) / 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static getTimeMargin(number, width, name ,targetNode:cc.Node) {
|
|
||||||
|
static getTimeMargin(number, width, name, targetNode: cc.Node) {
|
||||||
let timeArr = [];
|
let timeArr = [];
|
||||||
let total = 0;
|
let total = 0;
|
||||||
total = number;
|
total = number;
|
||||||
let hour = 0;
|
let hour = 0;
|
||||||
hour = parseInt((total / 3600) + "");//计算整数小时数
|
hour = parseInt((total / 3600) + "");//计算整数小时数
|
||||||
let afterHour = total - hour * 60 * 60;//取得算出小时数后剩余的秒数
|
let afterHour = total - hour * 60 * 60;//取得算出小时数后剩余的秒数
|
||||||
let min = parseInt((afterHour / 60)+"");//计算整数分
|
let min = parseInt((afterHour / 60) + "");//计算整数分
|
||||||
let m = "" + min;
|
let m = "" + min;
|
||||||
|
|
||||||
if(min < 10) m = "0"+min;
|
if (min < 10) m = "0" + min;
|
||||||
let afterMin = total - hour * 60 * 60 - min * 60;//取得算出分后剩余的秒数
|
let afterMin = total - hour * 60 * 60 - min * 60;//取得算出分后剩余的秒数
|
||||||
let miao = afterMin + "";
|
let miao = afterMin + "";
|
||||||
|
|
||||||
if(afterMin < 10) miao = "0" + afterMin;
|
if (afterMin < 10) miao = "0" + afterMin;
|
||||||
|
|
||||||
let result = m + miao;
|
let result = m + miao;
|
||||||
for (let i = 0; i < result.length; i++) {
|
for (let i = 0; i < result.length; i++) {
|
||||||
const digit = parseInt(result[i], 10);
|
const digit = parseInt(result[i], 10);
|
||||||
timeArr.push(digit);
|
timeArr.push(digit);
|
||||||
}
|
}
|
||||||
|
|
||||||
if(targetNode.children.length > 0){
|
if (targetNode.children.length > 0) {
|
||||||
for (let i = 0; i < targetNode.children.length; i++) {
|
for (let i = 0; i < targetNode.children.length; i++) {
|
||||||
targetNode.children[i].getComponent(cc.Sprite).spriteFrame = this.font._spriteFrames[name + timeArr[i] + ""];
|
targetNode.children[i].getComponent(cc.Sprite).spriteFrame = this.font._spriteFrames[name + timeArr[i] + ""];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else {
|
||||||
for (let i = 0; i < 4; i++) {
|
for (let i = 0; i < 4; i++) {
|
||||||
const node = new cc.Node();
|
const node = new cc.Node();
|
||||||
const sprite = node.addComponent(cc.Sprite);
|
const sprite = node.addComponent(cc.Sprite);
|
||||||
|
@ -81,7 +82,7 @@ export default class NumberToImage extends cc.Component {
|
||||||
sprite.spriteFrame = this.font._spriteFrames[name + digit + ""];
|
sprite.spriteFrame = this.font._spriteFrames[name + digit + ""];
|
||||||
// 将节点添加到目标节点下
|
// 将节点添加到目标节点下
|
||||||
node.x = i * width;
|
node.x = i * width;
|
||||||
if(i > 1) node.x += 35;
|
if (i > 1) node.x += 35;
|
||||||
node.parent = targetNode;
|
node.parent = targetNode;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 308 KiB |
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Before Width: | Height: | Size: 234 KiB After Width: | Height: | Size: 229 KiB |
|
@ -8,7 +8,7 @@
|
||||||
"premultiplyAlpha": false,
|
"premultiplyAlpha": false,
|
||||||
"genMipmaps": false,
|
"genMipmaps": false,
|
||||||
"packable": true,
|
"packable": true,
|
||||||
"width": 1549,
|
"width": 1757,
|
||||||
"height": 254,
|
"height": 254,
|
||||||
"platformSettings": {},
|
"platformSettings": {},
|
||||||
"subMetas": {}
|
"subMetas": {}
|
||||||
|
|
|
@ -8927,6 +8927,9 @@
|
||||||
"itemList": {
|
"itemList": {
|
||||||
"__id__": 73
|
"__id__": 73
|
||||||
},
|
},
|
||||||
|
"coin": {
|
||||||
|
"__id__": 60
|
||||||
|
},
|
||||||
"_id": ""
|
"_id": ""
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -13,6 +13,9 @@ export default class NewClass extends cc.Component {
|
||||||
itemList: cc.Node = null;
|
itemList: cc.Node = null;
|
||||||
// onLoad () {}
|
// onLoad () {}
|
||||||
|
|
||||||
|
//金币数量
|
||||||
|
@property(cc.Node)
|
||||||
|
coin: cc.Node = null;
|
||||||
start() {
|
start() {
|
||||||
this.openShop();
|
this.openShop();
|
||||||
}
|
}
|
||||||
|
@ -47,6 +50,7 @@ export default class NewClass extends cc.Component {
|
||||||
NumberToImage.numberToImageNodes(product.price / 100, 40, 25, "scoin_", title, false)
|
NumberToImage.numberToImageNodes(product.price / 100, 40, 25, "scoin_", title, false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1314,
|
219,
|
||||||
91,
|
1115,
|
||||||
32,
|
32,
|
||||||
61
|
61
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
951,
|
100,
|
||||||
98,
|
1045,
|
||||||
50,
|
50,
|
||||||
59
|
59
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1474,
|
138,
|
||||||
143,
|
1539,
|
||||||
45,
|
45,
|
||||||
56
|
56
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
45,
|
45,
|
||||||
56
|
56
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1049,
|
1,
|
||||||
98,
|
1394,
|
||||||
42,
|
42,
|
||||||
59
|
59
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
42,
|
42,
|
||||||
59
|
59
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1261,
|
147,
|
||||||
158,
|
1224,
|
||||||
40,
|
40,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
40,
|
40,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1648,
|
95,
|
||||||
75,
|
1341,
|
||||||
33,
|
33,
|
||||||
48
|
48
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
33,
|
33,
|
||||||
48
|
48
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
431,
|
59,
|
||||||
132,
|
1702,
|
||||||
25,
|
25,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
25,
|
25,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
|
157,
|
||||||
849,
|
849,
|
||||||
159,
|
|
||||||
64,
|
64,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
64,
|
64,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 308 KiB |
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1188,
|
112,
|
||||||
1,
|
618,
|
||||||
43,
|
43,
|
||||||
64
|
64
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1272,
|
68,
|
||||||
223,
|
885,
|
||||||
30,
|
30,
|
||||||
59
|
59
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
30,
|
30,
|
||||||
59
|
59
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1172,
|
168,
|
||||||
226,
|
1699,
|
||||||
25,
|
25,
|
||||||
37
|
37
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
25,
|
25,
|
||||||
37
|
37
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
848,
|
|
||||||
1,
|
1,
|
||||||
|
848,
|
||||||
35,
|
35,
|
||||||
97
|
97
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
35,
|
35,
|
||||||
97
|
97
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1321,
|
|
||||||
1,
|
1,
|
||||||
|
1274,
|
||||||
36,
|
36,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
36,
|
36,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
156,
|
156,
|
||||||
89
|
89
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
207,
|
228,
|
||||||
135,
|
729,
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1490,
|
|
||||||
1,
|
1,
|
||||||
33,
|
1622,
|
||||||
57
|
40,
|
||||||
|
56
|
||||||
],
|
],
|
||||||
"offset": [
|
"offset": [
|
||||||
0,
|
0,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"originalSize": [
|
"originalSize": [
|
||||||
33,
|
40,
|
||||||
57
|
56
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
606,
|
110,
|
||||||
112,
|
747,
|
||||||
45,
|
45,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
45,
|
45,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1511,
|
220,
|
||||||
60,
|
1092,
|
||||||
21,
|
21,
|
||||||
31
|
31
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1093,
|
146,
|
||||||
96,
|
1266,
|
||||||
44,
|
44,
|
||||||
61
|
61
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
44,
|
44,
|
||||||
61
|
61
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1669,
|
196,
|
||||||
186,
|
1563,
|
||||||
45,
|
45,
|
||||||
42
|
42
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
45,
|
45,
|
||||||
42
|
42
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1213,
|
109,
|
||||||
159,
|
814,
|
||||||
46,
|
46,
|
||||||
64
|
64
|
||||||
],
|
],
|
||||||
|
|
|
@ -56,6 +56,7 @@ var MapConroler = /** @class */ (function (_super) {
|
||||||
_this.coinPop = null;
|
_this.coinPop = null;
|
||||||
_this.timeLabel = null;
|
_this.timeLabel = null;
|
||||||
_this.levelLabel = null;
|
_this.levelLabel = null;
|
||||||
|
_this.coin = null;
|
||||||
_this.new_mode = 0;
|
_this.new_mode = 0;
|
||||||
_this.mapWidth = 0;
|
_this.mapWidth = 0;
|
||||||
_this.mapHeight = 0;
|
_this.mapHeight = 0;
|
||||||
|
@ -144,11 +145,13 @@ var MapConroler = /** @class */ (function (_super) {
|
||||||
// this.node.getChildByName("Wall").zIndex = 10;
|
// this.node.getChildByName("Wall").zIndex = 10;
|
||||||
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
|
this.timeLabel = this.node.parent.getChildByName("Top").getChildByName("time");
|
||||||
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
|
this.levelLabel = this.node.parent.getChildByName("Top").getChildByName("level");
|
||||||
|
this.coin = this.node.parent.getChildByName("Top").getChildByName("coin");
|
||||||
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
|
this.timeNumber = cc.fx.GameConfig.LEVEL_INFO[0].time;
|
||||||
console.log("当前关卡时间", this.timeNumber);
|
console.log("当前关卡时间", this.timeNumber);
|
||||||
this.count_Time = 0;
|
this.count_Time = 0;
|
||||||
this.add_Time = 0;
|
this.add_Time = 0;
|
||||||
NumberToImage_1.default.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel);
|
NumberToImage_1.default.getTimeMargin(this.timeNumber, 50, "time_", this.timeLabel);
|
||||||
|
NumberToImage_1.default.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
||||||
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
|
// var timeTemp = cc.fx.GameTool.getTimeMargin(this.timeNumber);
|
||||||
// this.timeLabel.string = timeTemp.toString();
|
// this.timeLabel.string = timeTemp.toString();
|
||||||
NumberToImage_1.default.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 50, 20, "level_", this.levelLabel, false);
|
NumberToImage_1.default.numberToImageNodes((cc.fx.GameConfig.GM_INFO.level + 1), 50, 20, "level_", this.levelLabel, false);
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1683,
|
68,
|
||||||
50,
|
1044,
|
||||||
30,
|
30,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
30,
|
30,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1069,
|
62,
|
||||||
226,
|
1425,
|
||||||
27,
|
27,
|
||||||
36
|
36
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
27,
|
27,
|
||||||
36
|
36
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1443,
|
222,
|
||||||
61,
|
1692,
|
||||||
21,
|
21,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
21,
|
21,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
487,
|
|
||||||
159,
|
159,
|
||||||
|
59,
|
||||||
50,
|
50,
|
||||||
92
|
92
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
50,
|
50,
|
||||||
92
|
92
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1481,
|
89,
|
||||||
83,
|
1547,
|
||||||
45,
|
45,
|
||||||
56
|
56
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
796,
|
96,
|
||||||
109,
|
1246,
|
||||||
48,
|
48,
|
||||||
57
|
57
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
48,
|
48,
|
||||||
57
|
57
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1521,
|
194,
|
||||||
141,
|
1607,
|
||||||
41,
|
41,
|
||||||
56
|
56
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
41,
|
41,
|
||||||
56
|
56
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1375,
|
129,
|
||||||
63,
|
1672,
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,20 +5,19 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
510,
|
66,
|
||||||
131,
|
1161,
|
||||||
26,
|
28,
|
||||||
54
|
56
|
||||||
],
|
],
|
||||||
"offset": [
|
"offset": [
|
||||||
0,
|
0,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"originalSize": [
|
"originalSize": [
|
||||||
26,
|
40,
|
||||||
54
|
56
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
590,
|
|
||||||
112,
|
112,
|
||||||
|
590,
|
||||||
9,
|
9,
|
||||||
10
|
10
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1263,
|
227,
|
||||||
66,
|
797,
|
||||||
24,
|
24,
|
||||||
37
|
37
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
24,
|
24,
|
||||||
37
|
37
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1429,
|
1,
|
||||||
147,
|
1533,
|
||||||
43,
|
43,
|
||||||
58
|
58
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
43,
|
43,
|
||||||
58
|
58
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
794,
|
131,
|
||||||
229,
|
498,
|
||||||
24,
|
24,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
24,
|
24,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1409,
|
145,
|
||||||
61,
|
1706,
|
||||||
21,
|
21,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
21,
|
21,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
969,
|
1,
|
||||||
159,
|
939,
|
||||||
51,
|
51,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
51,
|
51,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
191,
|
|
||||||
1,
|
1,
|
||||||
|
191,
|
||||||
99,
|
99,
|
||||||
132
|
132
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
99,
|
99,
|
||||||
132
|
132
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
275,
|
121,
|
||||||
135,
|
1707,
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
|
157,
|
||||||
818,
|
818,
|
||||||
159,
|
|
||||||
66,
|
66,
|
||||||
29
|
29
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
66,
|
66,
|
||||||
29
|
29
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1348,
|
145,
|
||||||
91,
|
1359,
|
||||||
42,
|
42,
|
||||||
60
|
60
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
42,
|
42,
|
||||||
60
|
60
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1230,
|
150,
|
||||||
93,
|
1181,
|
||||||
41,
|
41,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
41,
|
41,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1443,
|
198,
|
||||||
207,
|
1518,
|
||||||
46,
|
46,
|
||||||
43
|
43
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
46,
|
46,
|
||||||
43
|
43
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1147,
|
228,
|
||||||
226,
|
701,
|
||||||
23,
|
23,
|
||||||
26
|
26
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1022,
|
100,
|
||||||
159,
|
978,
|
||||||
51,
|
51,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
|
|
@ -33,10 +33,12 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
_this.shop = null;
|
_this.shop = null;
|
||||||
//商品列表
|
//商品列表
|
||||||
_this.itemList = null;
|
_this.itemList = null;
|
||||||
|
// onLoad () {}
|
||||||
|
//金币数量
|
||||||
|
_this.coin = null;
|
||||||
return _this;
|
return _this;
|
||||||
// update (dt) {}
|
// update (dt) {}
|
||||||
}
|
}
|
||||||
// onLoad () {}
|
|
||||||
NewClass.prototype.start = function () {
|
NewClass.prototype.start = function () {
|
||||||
this.openShop();
|
this.openShop();
|
||||||
};
|
};
|
||||||
|
@ -68,6 +70,7 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
NumberToImage_1.default.numberToImageNodes(product.price / 100, 40, 25, "scoin_", title, false);
|
NumberToImage_1.default.numberToImageNodes(product.price / 100, 40, 25, "scoin_", title, false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
NumberToImage_1.default.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
|
||||||
};
|
};
|
||||||
//关闭商店界面
|
//关闭商店界面
|
||||||
NewClass.prototype.closeShop = function () {
|
NewClass.prototype.closeShop = function () {
|
||||||
|
@ -80,6 +83,9 @@ var NewClass = /** @class */ (function (_super) {
|
||||||
__decorate([
|
__decorate([
|
||||||
property(cc.Node)
|
property(cc.Node)
|
||||||
], NewClass.prototype, "itemList", void 0);
|
], NewClass.prototype, "itemList", void 0);
|
||||||
|
__decorate([
|
||||||
|
property(cc.Node)
|
||||||
|
], NewClass.prototype, "coin", void 0);
|
||||||
NewClass = __decorate([
|
NewClass = __decorate([
|
||||||
ccclass
|
ccclass
|
||||||
], NewClass);
|
], NewClass);
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
566,
|
225,
|
||||||
131,
|
836,
|
||||||
26,
|
26,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
26,
|
26,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
|
157,
|
||||||
596,
|
596,
|
||||||
159,
|
|
||||||
51,
|
51,
|
||||||
91
|
91
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
51,
|
51,
|
||||||
91
|
91
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1223,
|
131,
|
||||||
67,
|
578,
|
||||||
24,
|
24,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
24,
|
24,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1126,
|
1,
|
||||||
159,
|
1096,
|
||||||
42,
|
42,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
42,
|
42,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1107,
|
61,
|
||||||
226,
|
1503,
|
||||||
26,
|
26,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
26,
|
26,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1592,
|
135,
|
||||||
59,
|
257,
|
||||||
17,
|
17,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
17,
|
17,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -5,19 +5,20 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1454,
|
192,
|
||||||
1,
|
1650,
|
||||||
34,
|
40,
|
||||||
57
|
56
|
||||||
],
|
],
|
||||||
"offset": [
|
"offset": [
|
||||||
0,
|
0,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"originalSize": [
|
"originalSize": [
|
||||||
34,
|
40,
|
||||||
57
|
56
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
490,
|
|
||||||
1,
|
1,
|
||||||
|
490,
|
||||||
98,
|
98,
|
||||||
128
|
128
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
98,
|
98,
|
||||||
128
|
128
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1170,
|
152,
|
||||||
159,
|
1095,
|
||||||
41,
|
41,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
41,
|
41,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1534,
|
117,
|
||||||
199,
|
1742,
|
||||||
33,
|
38,
|
||||||
54
|
56
|
||||||
],
|
],
|
||||||
"offset": [
|
"offset": [
|
||||||
0,
|
0,
|
||||||
0
|
0
|
||||||
],
|
],
|
||||||
"originalSize": [
|
"originalSize": [
|
||||||
33,
|
40,
|
||||||
54
|
56
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1637,
|
68,
|
||||||
179,
|
995,
|
||||||
30,
|
30,
|
||||||
47
|
47
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
292,
|
|
||||||
1,
|
1,
|
||||||
|
292,
|
||||||
98,
|
98,
|
||||||
129
|
129
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
98,
|
98,
|
||||||
129
|
129
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1680,
|
89,
|
||||||
1,
|
1470,
|
||||||
41,
|
41,
|
||||||
47
|
47
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
41,
|
41,
|
||||||
47
|
47
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
241,
|
228,
|
||||||
135,
|
763,
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
22,
|
22,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
376,
|
157,
|
||||||
159,
|
543,
|
||||||
51,
|
51,
|
||||||
93
|
93
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
51,
|
51,
|
||||||
93
|
93
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1722,
|
220,
|
||||||
85,
|
1043,
|
||||||
31,
|
31,
|
||||||
47
|
47
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
131,
|
157,
|
||||||
159,
|
359,
|
||||||
94,
|
94,
|
||||||
125
|
125
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
94,
|
94,
|
||||||
125
|
125
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
391,
|
59,
|
||||||
132,
|
1662,
|
||||||
25,
|
25,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
25,
|
25,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
350,
|
60,
|
||||||
132,
|
1621,
|
||||||
25,
|
25,
|
||||||
39
|
39
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
25,
|
25,
|
||||||
39
|
39
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1030,
|
62,
|
||||||
226,
|
1386,
|
||||||
27,
|
27,
|
||||||
37
|
37
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
27,
|
27,
|
||||||
37
|
37
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1279,
|
|
||||||
1,
|
1,
|
||||||
|
1232,
|
||||||
40,
|
40,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
40,
|
40,
|
||||||
63
|
63
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1359,
|
207,
|
||||||
1,
|
1356,
|
||||||
44,
|
44,
|
||||||
60
|
60
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1067,
|
61,
|
||||||
68,
|
1543,
|
||||||
26,
|
26,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
26,
|
26,
|
||||||
38
|
38
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1599,
|
219,
|
||||||
129,
|
1178,
|
||||||
32,
|
32,
|
||||||
49
|
49
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
885,
|
100,
|
||||||
1,
|
880,
|
||||||
52,
|
52,
|
||||||
96
|
96
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1249,
|
195,
|
||||||
225,
|
915,
|
||||||
21,
|
21,
|
||||||
24
|
24
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
748,
|
|
||||||
1,
|
1,
|
||||||
|
748,
|
||||||
98,
|
98,
|
||||||
106
|
106
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
98,
|
98,
|
||||||
106
|
106
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
158,
|
|
||||||
137,
|
137,
|
||||||
|
158,
|
||||||
19,
|
19,
|
||||||
23
|
23
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
19,
|
19,
|
||||||
23
|
23
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
855,
|
206,
|
||||||
100,
|
1418,
|
||||||
45,
|
45,
|
||||||
57
|
57
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
392,
|
|
||||||
1,
|
1,
|
||||||
|
392,
|
||||||
96,
|
96,
|
||||||
129
|
129
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
96,
|
96,
|
||||||
129
|
129
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1477,
|
222,
|
||||||
60,
|
1726,
|
||||||
21,
|
21,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
21,
|
21,
|
||||||
32
|
32
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
989,
|
66,
|
||||||
226,
|
1345,
|
||||||
27,
|
27,
|
||||||
39
|
39
|
||||||
],
|
],
|
||||||
|
@ -18,7 +18,6 @@
|
||||||
27,
|
27,
|
||||||
39
|
39
|
||||||
],
|
],
|
||||||
"rotated": 1,
|
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1603,
|
95,
|
||||||
198,
|
1376,
|
||||||
32,
|
32,
|
||||||
48
|
48
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
32,
|
32,
|
||||||
48
|
48
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
673,
|
145,
|
||||||
112,
|
1312,
|
||||||
45,
|
45,
|
||||||
60
|
60
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1139,
|
112,
|
||||||
96,
|
684,
|
||||||
43,
|
43,
|
||||||
61
|
61
|
||||||
],
|
],
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
319,
|
157,
|
||||||
159,
|
486,
|
||||||
55,
|
55,
|
||||||
93
|
93
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
55,
|
55,
|
||||||
93
|
93
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1075,
|
153,
|
||||||
159,
|
993,
|
||||||
49,
|
49,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
49,
|
49,
|
||||||
65
|
65
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
1723,
|
89,
|
||||||
36,
|
1513,
|
||||||
32,
|
32,
|
||||||
47
|
47
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
32,
|
32,
|
||||||
47
|
47
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
"texture": "f8d067a0-98d0-4a97-8159-506946262d4b",
|
||||||
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
"atlas": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8",
|
||||||
"rect": [
|
"rect": [
|
||||||
92,
|
|
||||||
1,
|
1,
|
||||||
|
92,
|
||||||
97,
|
97,
|
||||||
134
|
134
|
||||||
],
|
],
|
||||||
|
@ -18,6 +18,7 @@
|
||||||
97,
|
97,
|
||||||
134
|
134
|
||||||
],
|
],
|
||||||
|
"rotated": 1,
|
||||||
"capInsets": [
|
"capInsets": [
|
||||||
0,
|
0,
|
||||||
0,
|
0,
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user