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