diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts
index 002c8db..45ced9c 100644
--- a/assets/Script/JiaZai.ts
+++ b/assets/Script/JiaZai.ts
@@ -79,6 +79,9 @@ export default class JiaZai extends cc.Component {
@property(cc.Node)
cardTime: cc.Node = null;
// LIFE-CYCLE CALLBACKS:
+ private onShowListener: () => void;
+ private onHideListener: () => void;
+ // LIFE-CYCLE CALLBACKS:
onLoad() {
this.closeLoad();
@@ -173,24 +176,29 @@ export default class JiaZai extends cc.Component {
//console.log("音乐开关", cc.fx.GameConfig.GM_INFO.musicOpen);
AudioManager._instance.playMusicGame();
// this.openMonthCard();
+ this.onGames();
+ }
+ //监听后台
+ onGames() {
if (typeof wx !== 'undefined') {
- wx.onShow(() => {
- // 只有非首次启动时才调用 onGameShow
- if (!this.isFirstLaunch) {
- this.onGameShow();
- }
- // 标记首次启动已完成
+ this.onShowListener = null;
+ this.onHideListener = null;
+ // 定义监听函数
+ this.onShowListener = () => {
+ this.onGameShow();
- });
-
- wx.onHide(() => {
+ };
+ this.onHideListener = () => {
this.onGameHide();
- this.isFirstLaunch = false;
- });
+ };
+ wx.onShow(this.onShowListener);
+ wx.onHide(this.onHideListener);
+
}
}
onGameHide() {
console.log("执行onGameHide", cc.fx.GameConfig.GM_INFO.min_Time);
+ this.isFirstLaunch = false;
this.stopHeathTimeCutDown();
this.stopTimeCutDown();
this.stopPowerTime();
@@ -205,13 +213,16 @@ export default class JiaZai extends cc.Component {
});
console.log("执行on", cc.fx.GameConfig.GM_INFO.min_Time);
- if (this.node.getChildByName("heathpop") && this.node.getChildByName("heathpop").active == true) {
- const heathComponent = this.node.getChildByName("heathpop").getComponent("heathnum");
- if (heathComponent && heathComponent.timeNode &&
- cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
- this.startHeathTimeCutDown(heathComponent.timeNode);
+ if (this.node.getChildByName("heathpop")) {
+ if (this.node.getChildByName("heathpop").active == true) {
+ const heathComponent = this.node.getChildByName("heathpop").getComponent("heathnum");
+ if (heathComponent && heathComponent.timeNode &&
+ cc.fx.GameConfig.GM_INFO.hp < cc.fx.GameConfig.GM_INFO.hp_Max) {
+ this.startHeathTimeCutDown(heathComponent.timeNode);
+ }
}
+
}
}
@@ -491,6 +502,12 @@ export default class JiaZai extends cc.Component {
}, 500);
return;
}
+ if (typeof wx !== 'undefined') {
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ wx.offHide(this.onHideListener);
+ }
+
if (this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl")._touch) {
this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl").setTouch(false);
let version = cc.fx.GameTool.getWechatGameVersion();
@@ -550,6 +567,11 @@ export default class JiaZai extends cc.Component {
this.shopNode.active = true;
this.shopNode.getComponent("shop").init();
}
+ if (typeof wx !== 'undefined') {
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ wx.offHide(this.onHideListener);
+ }
// //console.log("shopNode parent:", this.shopNode.parent);
}
@@ -593,6 +615,11 @@ export default class JiaZai extends cc.Component {
this.monthlyCardNode.getComponent("monthlyCard").init();
this.monthlyCardNode.getComponent("monthlyCard").juwai = true;
}
+ if (typeof wx !== 'undefined') {
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ wx.offHide(this.onHideListener);
+ }
}
// 关闭商店
@@ -704,8 +731,8 @@ export default class JiaZai extends cc.Component {
console.log("需要补发数据", order);
if (order.itemid == "gold_1" || order.itemid == "gold_2" || order.itemid == "gold_3"
|| order.itemid == "gold_4" || order.itemid == "gold_5" || order.itemid == "gold_6"
- || order.itemid == "unlimited_health_bundle_1" || order.itemid == "unlimited_health_bundle_2"
- || order.itemid == "unlimited_health_bundle_3" || order.itemid == "month_Card" || "reborn_Gift"
+ || order.itemid == "unlimited_health_bundle_10" || order.itemid == "unlimited_health_bundle_20"
+ || order.itemid == "unlimited_health_bundle_30" || order.itemid == "month_Card" || "reborn_Gift"
) {
this.openLoad();
console.log("补发名称:", order.itemid);
@@ -723,9 +750,9 @@ export default class JiaZai extends cc.Component {
else if (order.itemid == "gold_4") { coinTemp = 32000; }
else if (order.itemid == "gold_5") { coinTemp = 100000; }
else if (order.itemid == "gold_6") { coinTemp = 240000; }
- else if (order.itemid == "unlimited_health_bundle_1") { coinTemp = 5000; }
- else if (order.itemid == "unlimited_health_bundle_2") { coinTemp = 12000; }
- else if (order.itemid == "unlimited_health_bundle_3") { coinTemp = 30000; }
+ else if (order.itemid == "unlimited_health_bundle_10") { coinTemp = 2500; }
+ else if (order.itemid == "unlimited_health_bundle_20") { coinTemp = 5000; }
+ else if (order.itemid == "unlimited_health_bundle_30") { coinTemp = 7500; }
else if (order.itemid == "month_Card") {
coinTemp = 6000;
cc.fx.GameConfig.GM_INFO.doubleCoin = 2;
diff --git a/assets/Script/module/Tool/GameTool.ts b/assets/Script/module/Tool/GameTool.ts
index 449e180..482ed8c 100644
--- a/assets/Script/module/Tool/GameTool.ts
+++ b/assets/Script/module/Tool/GameTool.ts
@@ -1031,21 +1031,21 @@ var GameTool = {
{ type: "coin", count: coin },
]
break;
- case "unlimited_health_bundle_1":
- cc.fx.GameTool.changeCoin(5000);
- coin = 5000;
- price = 1800;
- this.setUserPowerTime(1800);
+ case "unlimited_health_bundle_10":
+ cc.fx.GameTool.changeCoin(2500);
+ coin = 2500;
+ price = 1000;
+ this.setUserPowerTime(3600);
// MiniGameSdk.API.showToast("获得无限体力小组合包");
rewardData = [
{ type: "coin", count: coin },
- { type: "infinite_health", count: 1800 },
+ { type: "infinite_health", count: 3600 },
]
break;
- case "unlimited_health_bundle_2":
- cc.fx.GameTool.changeCoin(12000);
- coin = 12000;
- price = 6600;
+ case "unlimited_health_bundle_20":
+ cc.fx.GameTool.changeCoin(5000);
+ coin = 5000;
+ price = 2000;
let propData = {
"freeze": 2,
"hammer": 2,
@@ -1053,35 +1053,35 @@ var GameTool = {
"price": price
}
this.getShopProp(propData, compensate);
- this.setUserPowerTime(3600);
+ this.setUserPowerTime(7200);
// MiniGameSdk.API.showToast("获得无限体力大组合包");
rewardData = [
{ type: "coin", count: coin },
{ type: "freeze", count: 2 },
{ type: "hammer", count: 2 },
{ type: "magic", count: 2 },
- { type: "infinite_health", count: 3600 },
+ { type: "infinite_health", count: 7200 },
]
break;
- case "unlimited_health_bundle_3":
- cc.fx.GameTool.changeCoin(30000);
- coin = 30000;
- price = 10800;
+ case "unlimited_health_bundle_30":
+ cc.fx.GameTool.changeCoin(7500);
+ coin = 7500;
+ price = 3000;
let propData2 = {
- "freeze": 6,
- "hammer": 6,
- "magic_wand": 6,
+ "freeze": 5,
+ "hammer": 5,
+ "magic_wand": 5,
"price": price
}
this.getShopProp(propData2, compensate);
- this.setUserPowerTime(7200);
+ this.setUserPowerTime(14400);
// MiniGameSdk.API.showToast("获得无限体力超组合包");
rewardData = [
{ type: "coin", count: coin },
- { type: "freeze", count: 6 },
- { type: "hammer", count: 6 },
- { type: "magic", count: 6 },
- { type: "infinite_health", count: 7200 },
+ { type: "freeze", count: 5 },
+ { type: "hammer", count: 5 },
+ { type: "magic", count: 5 },
+ { type: "infinite_health", count: 14400 },
]
break;
case "month_Card":
diff --git a/assets/Script/monthlyCard.ts b/assets/Script/monthlyCard.ts
index c0a0e7c..4070500 100644
--- a/assets/Script/monthlyCard.ts
+++ b/assets/Script/monthlyCard.ts
@@ -285,6 +285,11 @@ export default class NewClass extends cc.Component {
jiazaiComp.rewarded();
console.log("123iiiii222")
}
+ if (jiazaiComp) {
+ jiazaiComp.onGames();
+ console.log("1222")
+ }
+
this.node.active = false;
}
diff --git a/assets/res/font/font.plist b/assets/res/font/font.plist
index 953f459..52c7685 100644
--- a/assets/res/font/font.plist
+++ b/assets/res/font/font.plist
@@ -15,9 +15,9 @@
spriteSourceSize
{25,39}
textureRect
- {{324,75},{25,39}}
+ {{180,1668},{25,39}}
textureRotated
-
+
big_1.png
@@ -30,7 +30,7 @@
spriteSourceSize
{20,38}
textureRect
- {{264,37},{20,38}}
+ {{109,1866},{20,38}}
textureRotated
@@ -45,7 +45,7 @@
spriteSourceSize
{24,37}
textureRect
- {{390,0},{24,37}}
+ {{191,1449},{24,37}}
textureRotated
@@ -60,9 +60,9 @@
spriteSourceSize
{23,38}
textureRect
- {{284,37},{23,38}}
+ {{131,1891},{23,38}}
textureRotated
-
+
big_4.png
@@ -75,9 +75,9 @@
spriteSourceSize
{26,38}
textureRect
- {{307,37},{26,38}}
+ {{38,1948},{26,38}}
textureRotated
-
+
big_5.png
@@ -90,7 +90,7 @@
spriteSourceSize
{24,38}
textureRect
- {{333,37},{24,38}}
+ {{191,1409},{24,38}}
textureRotated
@@ -105,7 +105,7 @@
spriteSourceSize
{25,38}
textureRect
- {{357,37},{25,38}}
+ {{190,1369},{25,38}}
textureRotated
@@ -120,7 +120,7 @@
spriteSourceSize
{25,39}
textureRect
- {{349,75},{25,39}}
+ {{194,1166},{25,39}}
textureRotated
@@ -135,9 +135,9 @@
spriteSourceSize
{24,38}
textureRect
- {{382,37},{24,38}}
+ {{171,1891},{24,38}}
textureRotated
-
+
big_9.png
@@ -150,9 +150,9 @@
spriteSourceSize
{25,38}
textureRect
- {{406,37},{25,38}}
+ {{78,1947},{25,38}}
textureRotated
-
+
button_0.png
@@ -165,22 +165,22 @@
spriteSourceSize
{37,40}
textureRect
- {{374,75},{37,40}}
+ {{144,997},{37,40}}
textureRotated
-
+
button_1.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {37,40}
+ {23,40}
spriteSourceSize
{37,40}
textureRect
- {{411,75},{37,40}}
+ {{186,994},{23,40}}
textureRotated
@@ -191,11 +191,11 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {33,40}
spriteSourceSize
{37,40}
textureRect
- {{448,75},{37,40}}
+ {{221,1658},{33,40}}
textureRotated
@@ -206,13 +206,13 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {31,40}
spriteSourceSize
{37,40}
textureRect
- {{0,115},{37,40}}
+ {{94,1687},{31,40}}
textureRotated
-
+
button_4.png
@@ -225,9 +225,9 @@
spriteSourceSize
{37,40}
textureRect
- {{37,115},{37,40}}
+ {{136,1691},{37,40}}
textureRotated
-
+
button_5.png
@@ -236,26 +236,26 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {33,40}
spriteSourceSize
{37,40}
textureRect
- {{74,115},{37,40}}
+ {{178,1695},{33,40}}
textureRotated
-
+
button_6.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {37,40}
+ {35,40}
spriteSourceSize
{37,40}
textureRect
- {{111,115},{37,40}}
+ {{220,1700},{35,40}}
textureRotated
@@ -270,7 +270,7 @@
spriteSourceSize
{37,40}
textureRect
- {{148,115},{37,40}}
+ {{181,1730},{37,40}}
textureRotated
@@ -281,11 +281,11 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {35,40}
spriteSourceSize
{37,40}
textureRect
- {{185,115},{37,40}}
+ {{220,1742},{35,40}}
textureRotated
@@ -296,11 +296,11 @@
spriteOffset
{0,0}
spriteSize
- {37,40}
+ {35,40}
spriteSourceSize
{37,40}
textureRect
- {{222,115},{37,40}}
+ {{96,1766},{35,40}}
textureRotated
@@ -315,9 +315,9 @@
spriteSourceSize
{36,38}
textureRect
- {{431,37},{36,38}}
+ {{54,1692},{36,38}}
textureRotated
-
+
coin_1.png
@@ -326,11 +326,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {26,38}
spriteSourceSize
{36,38}
textureRect
- {{467,37},{36,38}}
+ {{190,1329},{26,38}}
textureRotated
@@ -341,11 +341,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {16,30}
spriteSourceSize
{36,38}
textureRect
- {{288,75},{36,38}}
+ {{182,1086},{16,30}}
textureRotated
@@ -356,11 +356,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{0,75},{36,38}}
+ {{221,1214},{34,38}}
textureRotated
@@ -371,13 +371,13 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {32,38}
spriteSourceSize
{36,38}
textureRect
- {{36,75},{36,38}}
+ {{216,239},{32,38}}
textureRotated
-
+
coin_4.png
@@ -390,9 +390,9 @@
spriteSourceSize
{36,38}
textureRect
- {{72,75},{36,38}}
+ {{179,1772},{36,38}}
textureRotated
-
+
coin_5.png
@@ -401,11 +401,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{108,75},{36,38}}
+ {{221,1254},{34,38}}
textureRotated
@@ -416,11 +416,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{144,75},{36,38}}
+ {{221,1294},{34,38}}
textureRotated
@@ -435,7 +435,7 @@
spriteSourceSize
{36,38}
textureRect
- {{180,75},{36,38}}
+ {{219,1784},{36,38}}
textureRotated
@@ -446,11 +446,11 @@
spriteOffset
{0,0}
spriteSize
- {36,38}
+ {34,38}
spriteSourceSize
{36,38}
textureRect
- {{216,75},{36,38}}
+ {{221,1334},{34,38}}
textureRotated
@@ -465,7 +465,7 @@
spriteSourceSize
{36,38}
textureRect
- {{252,75},{36,38}}
+ {{219,1824},{36,38}}
textureRotated
@@ -480,7 +480,7 @@
spriteSourceSize
{47,59}
textureRect
- {{127,469},{47,59}}
+ {{105,545},{47,59}}
textureRotated
@@ -495,9 +495,9 @@
spriteSourceSize
{32,61}
textureRect
- {{385,469},{32,61}}
+ {{153,239},{32,61}}
textureRotated
-
+
coins2.png
@@ -510,7 +510,7 @@
spriteSourceSize
{45,60}
textureRect
- {{298,469},{45,60}}
+ {{1,1979},{45,60}}
textureRotated
@@ -525,9 +525,9 @@
spriteSourceSize
{42,60}
textureRect
- {{343,469},{42,60}}
+ {{151,433},{42,60}}
textureRotated
-
+
coins4.png
@@ -540,7 +540,7 @@
spriteSourceSize
{50,59}
textureRect
- {{174,469},{50,59}}
+ {{205,492},{50,59}}
textureRotated
@@ -555,7 +555,7 @@
spriteSourceSize
{44,59}
textureRect
- {{224,469},{44,59}}
+ {{137,936},{44,59}}
textureRotated
@@ -570,9 +570,9 @@
spriteSourceSize
{47,58}
textureRect
- {{335,411},{47,58}}
+ {{154,339},{47,58}}
textureRotated
-
+
coins7.png
@@ -585,9 +585,9 @@
spriteSourceSize
{43,58}
textureRect
- {{382,411},{43,58}}
+ {{154,388},{43,58}}
textureRotated
-
+
coins8.png
@@ -600,7 +600,7 @@
spriteSourceSize
{47,58}
textureRect
- {{425,411},{47,58}}
+ {{151,676},{47,58}}
textureRotated
@@ -615,9 +615,9 @@
spriteSourceSize
{44,58}
textureRect
- {{0,469},{44,58}}
+ {{62,1194},{44,58}}
textureRotated
-
+
coins_+.png
@@ -630,7 +630,7 @@
spriteSourceSize
{44,42}
textureRect
- {{259,115},{44,42}}
+ {{107,1475},{44,42}}
textureRotated
@@ -645,7 +645,7 @@
spriteSourceSize
{23,26}
textureRect
- {{89,0},{23,26}}
+ {{191,1207},{23,26}}
textureRotated
@@ -660,9 +660,9 @@
spriteSourceSize
{24,20}
textureRect
- {{22,0},{24,20}}
+ {{109,1906},{24,20}}
textureRotated
-
+
coins_x.png
@@ -675,9 +675,9 @@
spriteSourceSize
{43,49}
textureRect
- {{63,301},{43,49}}
+ {{100,673},{43,49}}
textureRotated
-
+
cost_0.png
@@ -690,7 +690,7 @@
spriteSourceSize
{43,46}
textureRect
- {{395,115},{43,46}}
+ {{212,789},{43,46}}
textureRotated
@@ -699,13 +699,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {43,46}
+ {29,46}
spriteSourceSize
{43,46}
textureRect
- {{438,115},{43,46}}
+ {{226,186},{29,46}}
textureRotated
@@ -720,7 +720,7 @@
spriteSourceSize
{47,42}
textureRect
- {{303,115},{47,42}}
+ {{58,1472},{47,42}}
textureRotated
@@ -731,11 +731,11 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {39,46}
spriteSourceSize
{43,46}
textureRect
- {{0,161},{43,46}}
+ {{216,933},{39,46}}
textureRotated
@@ -746,11 +746,11 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {37,46}
spriteSourceSize
{43,46}
textureRect
- {{43,161},{43,46}}
+ {{212,1562},{37,46}}
textureRotated
@@ -765,7 +765,7 @@
spriteSourceSize
{43,46}
textureRect
- {{86,161},{43,46}}
+ {{212,837},{43,46}}
textureRotated
@@ -776,11 +776,11 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {39,46}
spriteSourceSize
{43,46}
textureRect
- {{129,161},{43,46}}
+ {{216,981},{39,46}}
textureRotated
@@ -789,13 +789,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {43,46}
+ {41,46}
spriteSourceSize
{43,46}
textureRect
- {{172,161},{43,46}}
+ {{214,380},{41,46}}
textureRotated
@@ -810,7 +810,7 @@
spriteSourceSize
{43,46}
textureRect
- {{215,161},{43,46}}
+ {{212,885},{43,46}}
textureRotated
@@ -821,13 +821,13 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {41,46}
spriteSourceSize
{43,46}
textureRect
- {{258,161},{43,46}}
+ {{164,808},{41,46}}
textureRotated
-
+
cost_9.png
@@ -836,14 +836,164 @@
spriteOffset
{0,0}
spriteSize
- {43,46}
+ {41,46}
spriteSourceSize
{43,46}
textureRect
- {{301,161},{43,46}}
+ {{194,1118},{41,46}}
textureRotated
+ discount_0.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{211,1029},{40,44}}
+ textureRotated
+
+
+ discount_1.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {28,42}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{182,851},{28,42}}
+ textureRotated
+
+
+ discount_2.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {38,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{217,1422},{38,44}}
+ textureRotated
+
+
+ discount_3.png
+
+ aliases
+
+ spriteOffset
+ {-1,0}
+ spriteSize
+ {36,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{135,1730},{36,44}}
+ textureRotated
+
+
+ discount_4.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{53,1730},{40,44}}
+ textureRotated
+
+
+ discount_5.png
+
+ aliases
+
+ spriteOffset
+ {-1,0}
+ spriteSize
+ {38,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{217,1468},{38,44}}
+ textureRotated
+
+
+ discount_6.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {38,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{95,1720},{38,44}}
+ textureRotated
+
+
+ discount_7.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{54,1776},{40,44}}
+ textureRotated
+
+
+ discount_8.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{54,1822},{40,44}}
+ textureRotated
+
+
+ discount_9.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {40,44}
+ spriteSourceSize
+ {40,44}
+ textureRect
+ {{133,1768},{40,44}}
+ textureRotated
+
+
hp_,.png
aliases
@@ -855,7 +1005,7 @@
spriteSourceSize
{46,68}
textureRect
- {{0,661},{46,68}}
+ {{62,1124},{46,68}}
textureRotated
@@ -870,9 +1020,9 @@
spriteSourceSize
{66,29}
textureRect
- {{112,0},{66,29}}
+ {{38,1880},{66,29}}
textureRotated
-
+
hp_..png
@@ -885,22 +1035,22 @@
spriteSourceSize
{45,42}
textureRect
- {{350,115},{45,42}}
+ {{213,1071},{45,42}}
textureRotated
-
+
hp_0.png
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {97,108}
+ {97,104}
spriteSourceSize
{97,108}
textureRect
- {{301,753},{97,108}}
+ {{1,596},{97,104}}
textureRotated
@@ -909,13 +1059,13 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {97,108}
+ {57,104}
spriteSourceSize
{97,108}
textureRect
- {{398,753},{97,108}}
+ {{100,92},{57,104}}
textureRotated
@@ -926,11 +1076,11 @@
spriteOffset
{0,0}
spriteSize
- {97,108}
+ {85,104}
spriteSourceSize
{97,108}
textureRect
- {{0,861},{97,108}}
+ {{1,808},{85,104}}
textureRotated
@@ -939,13 +1089,13 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {97,108}
+ {81,104}
spriteSourceSize
{97,108}
textureRect
- {{97,861},{97,108}}
+ {{1,1018},{81,104}}
textureRotated
@@ -956,11 +1106,11 @@
spriteOffset
{0,0}
spriteSize
- {97,108}
+ {95,104}
spriteSourceSize
{97,108}
textureRect
- {{194,861},{97,108}}
+ {{1,702},{95,104}}
textureRotated
@@ -971,11 +1121,11 @@
spriteOffset
{0,0}
spriteSize
- {97,108}
+ {85,102}
spriteSourceSize
{97,108}
textureRect
- {{291,861},{97,108}}
+ {{1,914},{85,102}}
textureRotated
@@ -990,7 +1140,7 @@
spriteSourceSize
{98,128}
textureRect
- {{94,970},{98,128}}
+ {{1,228},{98,128}}
textureRotated
@@ -1005,7 +1155,7 @@
spriteSourceSize
{94,125}
textureRect
- {{0,970},{94,125}}
+ {{1,358},{94,125}}
textureRotated
@@ -1020,7 +1170,7 @@
spriteSourceSize
{97,134}
textureRect
- {{288,970},{97,134}}
+ {{1,92},{97,134}}
textureRotated
@@ -1035,7 +1185,7 @@
spriteSourceSize
{96,129}
textureRect
- {{192,970},{96,129}}
+ {{159,1},{96,129}}
textureRotated
@@ -1050,7 +1200,7 @@
spriteSourceSize
{102,109}
textureRect
- {{388,861},{102,109}}
+ {{1,485},{102,109}}
textureRotated
@@ -1065,7 +1215,7 @@
spriteSourceSize
{51,65}
textureRect
- {{104,596},{51,65}}
+ {{101,277},{51,65}}
textureRotated
@@ -1080,7 +1230,7 @@
spriteSourceSize
{27,64}
textureRect
- {{470,532},{27,64}}
+ {{88,808},{27,64}}
textureRotated
@@ -1095,9 +1245,9 @@
spriteSourceSize
{51,65}
textureRect
- {{155,596},{51,65}}
+ {{159,186},{51,65}}
textureRotated
-
+
ice_3.png
@@ -1110,7 +1260,7 @@
spriteSourceSize
{45,65}
textureRect
- {{206,596},{45,65}}
+ {{105,478},{45,65}}
textureRotated
@@ -1125,7 +1275,7 @@
spriteSourceSize
{52,65}
textureRect
- {{251,596},{52,65}}
+ {{97,411},{52,65}}
textureRotated
@@ -1140,7 +1290,7 @@
spriteSourceSize
{49,65}
textureRect
- {{303,596},{49,65}}
+ {{152,477},{49,65}}
textureRotated
@@ -1155,7 +1305,7 @@
spriteSourceSize
{49,65}
textureRect
- {{352,596},{49,65}}
+ {{100,606},{49,65}}
textureRotated
@@ -1170,7 +1320,7 @@
spriteSourceSize
{46,64}
textureRect
- {{0,596},{46,64}}
+ {{98,718},{46,64}}
textureRotated
@@ -1185,7 +1335,7 @@
spriteSourceSize
{51,65}
textureRect
- {{401,596},{51,65}}
+ {{101,344},{51,65}}
textureRotated
@@ -1200,7 +1350,7 @@
spriteSourceSize
{49,65}
textureRect
- {{452,596},{49,65}}
+ {{154,544},{49,65}}
textureRotated
@@ -1215,7 +1365,7 @@
spriteSourceSize
{42,54}
textureRect
- {{138,301},{42,54}}
+ {{94,1519},{42,54}}
textureRotated
@@ -1226,13 +1376,13 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {30,54}
spriteSourceSize
{42,54}
textureRect
- {{180,301},{42,54}}
+ {{88,1004},{30,54}}
textureRotated
-
+
level_2.png
@@ -1241,11 +1391,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {40,54}
spriteSourceSize
{42,54}
textureRect
- {{222,301},{42,54}}
+ {{138,1635},{40,54}}
textureRotated
@@ -1256,11 +1406,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {38,54}
spriteSourceSize
{42,54}
textureRect
- {{264,301},{42,54}}
+ {{128,1036},{38,54}}
textureRotated
@@ -1275,7 +1425,7 @@
spriteSourceSize
{42,54}
textureRect
- {{306,301},{42,54}}
+ {{94,1575},{42,54}}
textureRotated
@@ -1286,11 +1436,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {40,54}
spriteSourceSize
{42,54}
textureRect
- {{348,301},{42,54}}
+ {{148,1356},{40,54}}
textureRotated
@@ -1301,11 +1451,11 @@
spriteOffset
{0,0}
spriteSize
- {42,54}
+ {40,54}
spriteSourceSize
{42,54}
textureRect
- {{390,301},{42,54}}
+ {{149,1412},{40,54}}
textureRotated
@@ -1320,7 +1470,7 @@
spriteSourceSize
{42,54}
textureRect
- {{432,301},{42,54}}
+ {{94,1631},{42,54}}
textureRotated
@@ -1335,7 +1485,7 @@
spriteSourceSize
{42,54}
textureRect
- {{0,355},{42,54}}
+ {{84,1036},{42,54}}
textureRotated
@@ -1350,7 +1500,7 @@
spriteSourceSize
{42,54}
textureRect
- {{42,355},{42,54}}
+ {{150,1124},{42,54}}
textureRotated
@@ -1365,9 +1515,9 @@
spriteSourceSize
{22,32}
textureRect
- {{199,0},{22,32}}
+ {{98,784},{22,32}}
textureRotated
-
+
lock_1.png
@@ -1380,9 +1530,9 @@
spriteSourceSize
{17,32}
textureRect
- {{221,0},{17,32}}
+ {{96,1847},{17,32}}
textureRotated
-
+
lock_2.png
@@ -1395,9 +1545,9 @@
spriteSourceSize
{21,31}
textureRect
- {{178,0},{21,31}}
+ {{166,785},{21,31}}
textureRotated
-
+
lock_3.png
@@ -1410,9 +1560,9 @@
spriteSourceSize
{21,32}
textureRect
- {{238,0},{21,32}}
+ {{132,785},{21,32}}
textureRotated
-
+
lock_4.png
@@ -1425,9 +1575,9 @@
spriteSourceSize
{23,32}
textureRect
- {{259,0},{23,32}}
+ {{122,2013},{23,32}}
textureRotated
-
+
lock_5.png
@@ -1440,9 +1590,9 @@
spriteSourceSize
{21,32}
textureRect
- {{282,0},{21,32}}
+ {{118,1951},{21,32}}
textureRotated
-
+
lock_6.png
@@ -1455,7 +1605,7 @@
spriteSourceSize
{22,32}
textureRect
- {{303,0},{22,32}}
+ {{157,1967},{22,32}}
textureRotated
@@ -1470,7 +1620,7 @@
spriteSourceSize
{22,32}
textureRect
- {{325,0},{22,32}}
+ {{181,1952},{22,32}}
textureRotated
@@ -1485,9 +1635,9 @@
spriteSourceSize
{21,32}
textureRect
- {{347,0},{21,32}}
+ {{205,1967},{21,32}}
textureRotated
-
+
lock_9.png
@@ -1500,7 +1650,7 @@
spriteSourceSize
{22,32}
textureRect
- {{368,0},{22,32}}
+ {{181,1986},{22,32}}
textureRotated
@@ -1511,26 +1661,26 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{344,161},{40,46}}
+ {{131,1810},{40,44}}
textureRotated
-
+
month_1.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {26,44}
spriteSourceSize
{40,46}
textureRect
- {{384,161},{40,46}}
+ {{190,1283},{26,44}}
textureRotated
@@ -1541,11 +1691,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{424,161},{40,46}}
+ {{69,1868},{38,44}}
textureRotated
@@ -1556,11 +1706,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {34,44}
spriteSourceSize
{40,46}
textureRect
- {{0,207},{40,46}}
+ {{221,1168},{34,44}}
textureRotated
@@ -1575,7 +1725,7 @@
spriteSourceSize
{40,46}
textureRect
- {{40,207},{40,46}}
+ {{179,1235},{40,46}}
textureRotated
@@ -1584,13 +1734,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{80,207},{40,46}}
+ {{82,1974},{38,44}}
textureRotated
@@ -1601,11 +1751,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,46}
spriteSourceSize
{40,46}
textureRect
- {{120,207},{40,46}}
+ {{217,1374},{38,46}}
textureRotated
@@ -1616,11 +1766,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{160,207},{40,46}}
+ {{177,1810},{40,44}}
textureRotated
@@ -1635,7 +1785,7 @@
spriteSourceSize
{40,46}
textureRect
- {{200,207},{40,46}}
+ {{203,1514},{40,46}}
textureRotated
@@ -1650,7 +1800,7 @@
spriteSourceSize
{40,46}
textureRect
- {{240,207},{40,46}}
+ {{213,1610},{40,46}}
textureRotated
@@ -1665,7 +1815,7 @@
spriteSourceSize
{33,37}
textureRect
- {{414,0},{33,37}}
+ {{96,1808},{33,37}}
textureRotated
@@ -1674,15 +1824,15 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {33,37}
+ {25,37}
spriteSourceSize
{33,37}
textureRect
- {{447,0},{33,37}}
+ {{205,1864},{25,37}}
textureRotated
-
+
mul10.png
@@ -1695,7 +1845,7 @@
spriteSourceSize
{58,64}
textureRect
- {{46,596},{58,64}}
+ {{154,273},{58,64}}
textureRotated
@@ -1710,7 +1860,7 @@
spriteSourceSize
{33,37}
textureRect
- {{0,37},{33,37}}
+ {{131,1852},{33,37}}
textureRotated
@@ -1719,15 +1869,15 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {33,37}
+ {31,37}
spriteSourceSize
{33,37}
textureRect
- {{33,37},{33,37}}
+ {{69,1914},{31,37}}
textureRotated
-
+
mul4.png
@@ -1740,9 +1890,9 @@
spriteSourceSize
{33,37}
textureRect
- {{66,37},{33,37}}
+ {{166,1856},{33,37}}
textureRotated
-
+
mul5.png
@@ -1751,11 +1901,11 @@
spriteOffset
{0,0}
spriteSize
- {33,37}
+ {31,35}
spriteSourceSize
{33,37}
textureRect
- {{99,37},{33,37}}
+ {{211,1891},{31,35}}
textureRotated
@@ -1770,9 +1920,9 @@
spriteSourceSize
{33,37}
textureRect
- {{132,37},{33,37}}
+ {{131,1916},{33,37}}
textureRotated
-
+
mul7.png
@@ -1785,9 +1935,9 @@
spriteSourceSize
{33,37}
textureRect
- {{165,37},{33,37}}
+ {{170,1917},{33,37}}
textureRotated
-
+
mul8.png
@@ -1800,7 +1950,7 @@
spriteSourceSize
{33,37}
textureRect
- {{198,37},{33,37}}
+ {{209,1928},{33,37}}
textureRotated
@@ -1815,7 +1965,7 @@
spriteSourceSize
{33,37}
textureRect
- {{231,37},{33,37}}
+ {{122,1974},{33,37}}
textureRotated
@@ -1830,7 +1980,7 @@
spriteSourceSize
{55,93}
textureRect
- {{0,753},{55,93}}
+ {{1,1219},{55,93}}
textureRotated
@@ -1845,7 +1995,7 @@
spriteSourceSize
{35,97}
textureRect
- {{266,753},{35,97}}
+ {{1,1880},{35,97}}
textureRotated
@@ -1860,7 +2010,7 @@
spriteSourceSize
{50,77}
textureRect
- {{46,661},{50,77}}
+ {{101,198},{50,77}}
textureRotated
@@ -1875,9 +2025,9 @@
spriteSourceSize
{52,96}
textureRect
- {{214,753},{52,96}}
+ {{159,132},{52,96}}
textureRotated
-
+
mulo3.png
@@ -1890,7 +2040,7 @@
spriteSourceSize
{49,95}
textureRect
- {{165,753},{49,95}}
+ {{1,1501},{49,95}}
textureRotated
@@ -1905,7 +2055,7 @@
spriteSourceSize
{59,93}
textureRect
- {{55,753},{59,93}}
+ {{1,1124},{59,93}}
textureRotated
@@ -1920,7 +2070,7 @@
spriteSourceSize
{51,93}
textureRect
- {{114,753},{51,93}}
+ {{1,1598},{51,93}}
textureRotated
@@ -1935,7 +2085,7 @@
spriteSourceSize
{56,92}
textureRect
- {{358,661},{56,92}}
+ {{1,1314},{56,92}}
textureRotated
@@ -1950,7 +2100,7 @@
spriteSourceSize
{50,92}
textureRect
- {{414,661},{50,92}}
+ {{1,1693},{50,92}}
textureRotated
@@ -1965,7 +2115,7 @@
spriteSourceSize
{55,91}
textureRect
- {{252,661},{55,91}}
+ {{1,1408},{55,91}}
textureRotated
@@ -1980,7 +2130,7 @@
spriteSourceSize
{51,91}
textureRect
- {{307,661},{51,91}}
+ {{1,1787},{51,91}}
textureRotated
@@ -1995,7 +2145,7 @@
spriteSourceSize
{33,48}
textureRect
- {{431,253},{33,48}}
+ {{168,1519},{33,48}}
textureRotated
@@ -2010,7 +2160,7 @@
spriteSourceSize
{27,47}
textureRect
- {{240,253},{27,47}}
+ {{183,895},{27,47}}
textureRotated
@@ -2025,7 +2175,7 @@
spriteSourceSize
{31,47}
textureRect
- {{267,253},{31,47}}
+ {{180,1619},{31,47}}
textureRotated
@@ -2040,9 +2190,9 @@
spriteSourceSize
{30,47}
textureRect
- {{298,253},{30,47}}
+ {{84,1092},{30,47}}
textureRotated
-
+
rank_4.png
@@ -2055,7 +2205,7 @@
spriteSourceSize
{34,48}
textureRect
- {{464,253},{34,48}}
+ {{176,1569},{34,48}}
textureRotated
@@ -2070,9 +2220,9 @@
spriteSourceSize
{30,47}
textureRect
- {{328,253},{30,47}}
+ {{133,1092},{30,47}}
textureRotated
-
+
rank_6.png
@@ -2085,7 +2235,7 @@
spriteSourceSize
{32,47}
textureRect
- {{358,253},{32,47}}
+ {{48,1976},{32,47}}
textureRotated
@@ -2100,7 +2250,7 @@
spriteSourceSize
{32,49}
textureRect
- {{106,301},{32,49}}
+ {{153,1468},{32,49}}
textureRotated
@@ -2115,7 +2265,7 @@
spriteSourceSize
{31,48}
textureRect
- {{0,301},{31,48}}
+ {{183,944},{31,48}}
textureRotated
@@ -2130,7 +2280,7 @@
spriteSourceSize
{32,48}
textureRect
- {{31,301},{32,48}}
+ {{168,1036},{32,48}}
textureRotated
@@ -2145,7 +2295,7 @@
spriteSourceSize
{21,24}
textureRect
- {{68,0},{21,24}}
+ {{187,1488},{21,24}}
textureRotated
@@ -2160,7 +2310,7 @@
spriteSourceSize
{22,18}
textureRect
- {{0,0},{22,18}}
+ {{157,2001},{22,18}}
textureRotated
@@ -2175,7 +2325,7 @@
spriteSourceSize
{45,57}
textureRect
- {{200,411},{45,57}}
+ {{58,1240},{45,57}}
textureRotated
@@ -2190,7 +2340,7 @@
spriteSourceSize
{30,59}
textureRect
- {{268,469},{30,59}}
+ {{105,1240},{30,59}}
textureRotated
@@ -2205,7 +2355,7 @@
spriteSourceSize
{43,58}
textureRect
- {{44,469},{43,58}}
+ {{59,1299},{43,58}}
textureRotated
@@ -2220,7 +2370,7 @@
spriteSourceSize
{40,58}
textureRect
- {{87,469},{40,58}}
+ {{52,1516},{40,58}}
textureRotated
@@ -2235,7 +2385,7 @@
spriteSourceSize
{48,57}
textureRect
- {{245,411},{48,57}}
+ {{205,553},{48,57}}
textureRotated
@@ -2250,7 +2400,7 @@
spriteSourceSize
{42,57}
textureRect
- {{293,411},{42,57}}
+ {{213,433},{42,57}}
textureRotated
@@ -2265,9 +2415,9 @@
spriteSourceSize
{45,56}
textureRect
- {{84,355},{45,56}}
+ {{199,742},{45,56}}
textureRotated
-
+
result_7.png
@@ -2280,7 +2430,7 @@
spriteSourceSize
{41,56}
textureRect
- {{129,355},{41,56}}
+ {{214,273},{41,56}}
textureRotated
@@ -2295,7 +2445,7 @@
spriteSourceSize
{45,56}
textureRect
- {{170,355},{45,56}}
+ {{59,1359},{45,56}}
textureRotated
@@ -2310,7 +2460,7 @@
spriteSourceSize
{42,56}
textureRect
- {{215,355},{42,56}}
+ {{104,1301},{42,56}}
textureRotated
@@ -2325,7 +2475,7 @@
spriteSourceSize
{41,47}
textureRect
- {{390,253},{41,47}}
+ {{214,331},{41,47}}
textureRotated
@@ -2334,15 +2484,15 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {47,63}
+ {47,51}
spriteSourceSize
{47,63}
textureRect
- {{417,469},{47,63}}
+ {{146,736},{47,51}}
textureRotated
-
+
scoin_09.png
@@ -2351,11 +2501,11 @@
spriteOffset
{0,0}
spriteSize
- {47,63}
+ {45,63}
spriteSourceSize
{47,63}
textureRect
- {{376,532},{47,63}}
+ {{117,808},{45,63}}
textureRotated
@@ -2366,11 +2516,11 @@
spriteOffset
{0,0}
spriteSize
- {47,63}
+ {25,53}
spriteSourceSize
{47,63}
textureRect
- {{0,532},{47,63}}
+ {{164,1180},{25,53}}
textureRotated
@@ -2381,11 +2531,11 @@
spriteOffset
{0,0}
spriteSize
- {47,63}
+ {21,25}
spriteSourceSize
{47,63}
textureRect
- {{423,532},{47,63}}
+ {{205,1990},{21,25}}
textureRotated
@@ -2394,13 +2544,13 @@
aliases
spriteOffset
- {0,0}
+ {0,1}
spriteSize
- {47,63}
+ {47,53}
spriteSourceSize
{47,63}
textureRect
- {{47,532},{47,63}}
+ {{58,1417},{47,53}}
textureRotated
@@ -2415,7 +2565,7 @@
spriteSourceSize
{47,63}
textureRect
- {{94,532},{47,63}}
+ {{151,611},{47,63}}
textureRotated
@@ -2430,7 +2580,7 @@
spriteSourceSize
{47,63}
textureRect
- {{141,532},{47,63}}
+ {{200,612},{47,63}}
textureRotated
@@ -2439,13 +2589,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {47,63}
+ {45,63}
spriteSourceSize
{47,63}
textureRect
- {{188,532},{47,63}}
+ {{88,874},{45,63}}
textureRotated
@@ -2460,7 +2610,7 @@
spriteSourceSize
{47,63}
textureRect
- {{235,532},{47,63}}
+ {{200,677},{47,63}}
textureRotated
@@ -2469,13 +2619,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {47,63}
+ {45,61}
spriteSourceSize
{47,63}
textureRect
- {{282,532},{47,63}}
+ {{135,873},{45,61}}
textureRotated
@@ -2490,7 +2640,7 @@
spriteSourceSize
{47,63}
textureRect
- {{329,532},{47,63}}
+ {{88,939},{47,63}}
textureRotated
@@ -2501,26 +2651,26 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{280,207},{40,46}}
+ {{131,1810},{40,44}}
textureRotated
-
+
tili_1.png
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {26,44}
spriteSourceSize
{40,46}
textureRect
- {{320,207},{40,46}}
+ {{190,1283},{26,44}}
textureRotated
@@ -2531,11 +2681,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{360,207},{40,46}}
+ {{69,1868},{38,44}}
textureRotated
@@ -2546,11 +2696,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {34,44}
spriteSourceSize
{40,46}
textureRect
- {{400,207},{40,46}}
+ {{221,1168},{34,44}}
textureRotated
@@ -2565,7 +2715,7 @@
spriteSourceSize
{40,46}
textureRect
- {{440,207},{40,46}}
+ {{179,1235},{40,46}}
textureRotated
@@ -2574,13 +2724,13 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {38,44}
spriteSourceSize
{40,46}
textureRect
- {{0,253},{40,46}}
+ {{82,1974},{38,44}}
textureRotated
@@ -2591,11 +2741,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {38,46}
spriteSourceSize
{40,46}
textureRect
- {{40,253},{40,46}}
+ {{217,1374},{38,46}}
textureRotated
@@ -2606,11 +2756,11 @@
spriteOffset
{0,0}
spriteSize
- {40,46}
+ {40,44}
spriteSourceSize
{40,46}
textureRect
- {{80,253},{40,46}}
+ {{177,1810},{40,44}}
textureRotated
@@ -2625,7 +2775,7 @@
spriteSourceSize
{40,46}
textureRect
- {{120,253},{40,46}}
+ {{203,1514},{40,46}}
textureRotated
@@ -2640,7 +2790,7 @@
spriteSourceSize
{40,46}
textureRect
- {{160,253},{40,46}}
+ {{213,1610},{40,46}}
textureRotated
@@ -2649,15 +2799,15 @@
aliases
spriteOffset
- {0,0}
+ {-1,0}
spriteSize
- {40,46}
+ {16,32}
spriteSourceSize
{40,46}
textureRect
- {{200,253},{40,46}}
+ {{82,2020},{16,32}}
textureRotated
-
+
time_0.png
@@ -2670,7 +2820,7 @@
spriteSourceSize
{40,56}
textureRect
- {{257,355},{40,56}}
+ {{106,1359},{40,56}}
textureRotated
@@ -2681,11 +2831,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {28,56}
spriteSourceSize
{40,56}
textureRect
- {{297,355},{40,56}}
+ {{138,1519},{28,56}}
textureRotated
@@ -2696,11 +2846,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {18,48}
spriteSourceSize
{40,56}
textureRect
- {{160,411},{40,56}}
+ {{237,1118},{18,48}}
textureRotated
@@ -2711,11 +2861,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {38,56}
spriteSourceSize
{40,56}
textureRect
- {{337,355},{40,56}}
+ {{54,1576},{38,56}}
textureRotated
@@ -2726,11 +2876,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {36,56}
spriteSourceSize
{40,56}
textureRect
- {{377,355},{40,56}}
+ {{138,1577},{36,56}}
textureRotated
@@ -2745,7 +2895,7 @@
spriteSourceSize
{40,56}
textureRect
- {{417,355},{40,56}}
+ {{107,1417},{40,56}}
textureRotated
@@ -2756,11 +2906,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {38,56}
spriteSourceSize
{40,56}
textureRect
- {{457,355},{40,56}}
+ {{54,1634},{38,56}}
textureRotated
@@ -2771,11 +2921,11 @@
spriteOffset
{0,0}
spriteSize
- {40,56}
+ {38,56}
spriteSourceSize
{40,56}
textureRect
- {{0,411},{40,56}}
+ {{110,1124},{38,56}}
textureRotated
@@ -2790,7 +2940,7 @@
spriteSourceSize
{40,56}
textureRect
- {{40,411},{40,56}}
+ {{122,1182},{40,56}}
textureRotated
@@ -2805,7 +2955,7 @@
spriteSourceSize
{40,56}
textureRect
- {{80,411},{40,56}}
+ {{137,1240},{40,56}}
textureRotated
@@ -2820,7 +2970,7 @@
spriteSourceSize
{40,56}
textureRect
- {{120,411},{40,56}}
+ {{148,1298},{40,56}}
textureRotated
@@ -2835,7 +2985,7 @@
spriteSourceSize
{156,89}
textureRect
- {{96,661},{156,89}}
+ {{1,1},{156,89}}
textureRotated
@@ -2850,7 +3000,7 @@
spriteSourceSize
{22,22}
textureRect
- {{46,0},{22,22}}
+ {{205,2017},{22,22}}
textureRotated
@@ -2866,9 +3016,9 @@
realTextureFileName
font.png
size
- {503,1104}
+ {256,2040}
smartupdate
- $TexturePacker:SmartUpdate:3cab7c28b17bd3c8ee67b66490395a2a:f8c9d78b5a8f5cba8d47fdeb3aba3aaf:90bd8558f1bc1540882ee9b431362e98$
+ $TexturePacker:SmartUpdate:b43195dff15c8126595451a22022634e:038b722b3d3f0405b262c4249637d1ba:90bd8558f1bc1540882ee9b431362e98$
textureFileName
font.png
diff --git a/assets/res/font/font.plist.meta b/assets/res/font/font.plist.meta
index b51fae2..eb6829e 100644
--- a/assets/res/font/font.plist.meta
+++ b/assets/res/font/font.plist.meta
@@ -4,8 +4,8 @@
"importer": "asset",
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"size": {
- "width": 503,
- "height": 1104
+ "width": 256,
+ "height": 2040
},
"type": "Texture Packer",
"subMetas": {
@@ -16,11 +16,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 324,
- "trimY": 75,
+ "trimX": 180,
+ "trimY": 1668,
"width": 25,
"height": 39,
"rawWidth": 25,
@@ -42,8 +42,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 264,
- "trimY": 37,
+ "trimX": 109,
+ "trimY": 1866,
"width": 20,
"height": 38,
"rawWidth": 20,
@@ -65,8 +65,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 390,
- "trimY": 0,
+ "trimX": 191,
+ "trimY": 1449,
"width": 24,
"height": 37,
"rawWidth": 24,
@@ -85,11 +85,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 284,
- "trimY": 37,
+ "trimX": 131,
+ "trimY": 1891,
"width": 23,
"height": 38,
"rawWidth": 23,
@@ -108,11 +108,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 307,
- "trimY": 37,
+ "trimX": 38,
+ "trimY": 1948,
"width": 26,
"height": 38,
"rawWidth": 26,
@@ -134,8 +134,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 333,
- "trimY": 37,
+ "trimX": 191,
+ "trimY": 1409,
"width": 24,
"height": 38,
"rawWidth": 24,
@@ -157,8 +157,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 357,
- "trimY": 37,
+ "trimX": 190,
+ "trimY": 1369,
"width": 25,
"height": 38,
"rawWidth": 25,
@@ -180,8 +180,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 349,
- "trimY": 75,
+ "trimX": 194,
+ "trimY": 1166,
"width": 25,
"height": 39,
"rawWidth": 25,
@@ -200,11 +200,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 382,
- "trimY": 37,
+ "trimX": 171,
+ "trimY": 1891,
"width": 24,
"height": 38,
"rawWidth": 24,
@@ -223,11 +223,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 406,
- "trimY": 37,
+ "trimX": 78,
+ "trimY": 1947,
"width": 25,
"height": 38,
"rawWidth": 25,
@@ -246,11 +246,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 374,
- "trimY": 75,
+ "trimX": 144,
+ "trimY": 997,
"width": 37,
"height": 40,
"rawWidth": 37,
@@ -270,11 +270,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 411,
- "trimY": 75,
- "width": 37,
+ "trimX": 186,
+ "trimY": 994,
+ "width": 23,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -295,9 +295,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 448,
- "trimY": 75,
- "width": 37,
+ "trimX": 221,
+ "trimY": 1658,
+ "width": 33,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -315,12 +315,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 115,
- "width": 37,
+ "trimX": 94,
+ "trimY": 1687,
+ "width": 31,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -338,11 +338,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 37,
- "trimY": 115,
+ "trimX": 136,
+ "trimY": 1691,
"width": 37,
"height": 40,
"rawWidth": 37,
@@ -361,12 +361,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 74,
- "trimY": 115,
- "width": 37,
+ "trimX": 178,
+ "trimY": 1695,
+ "width": 33,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -385,11 +385,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 111,
- "trimY": 115,
- "width": 37,
+ "trimX": 220,
+ "trimY": 1700,
+ "width": 35,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -410,8 +410,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 148,
- "trimY": 115,
+ "trimX": 181,
+ "trimY": 1730,
"width": 37,
"height": 40,
"rawWidth": 37,
@@ -433,9 +433,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 185,
- "trimY": 115,
- "width": 37,
+ "trimX": 220,
+ "trimY": 1742,
+ "width": 35,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -456,9 +456,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 222,
- "trimY": 115,
- "width": 37,
+ "trimX": 96,
+ "trimY": 1766,
+ "width": 35,
"height": 40,
"rawWidth": 37,
"rawHeight": 40,
@@ -476,11 +476,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 431,
- "trimY": 37,
+ "trimX": 54,
+ "trimY": 1692,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -502,9 +502,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 467,
- "trimY": 37,
- "width": 36,
+ "trimX": 190,
+ "trimY": 1329,
+ "width": 26,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -525,10 +525,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 288,
- "trimY": 75,
- "width": 36,
- "height": 38,
+ "trimX": 182,
+ "trimY": 1086,
+ "width": 16,
+ "height": 30,
"rawWidth": 36,
"rawHeight": 38,
"borderTop": 0,
@@ -548,9 +548,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1214,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -568,12 +568,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 36,
- "trimY": 75,
- "width": 36,
+ "trimX": 216,
+ "trimY": 239,
+ "width": 32,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -591,11 +591,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 72,
- "trimY": 75,
+ "trimX": 179,
+ "trimY": 1772,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -617,9 +617,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 108,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1254,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -640,9 +640,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 144,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1294,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -663,8 +663,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 180,
- "trimY": 75,
+ "trimX": 219,
+ "trimY": 1784,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -686,9 +686,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 216,
- "trimY": 75,
- "width": 36,
+ "trimX": 221,
+ "trimY": 1334,
+ "width": 34,
"height": 38,
"rawWidth": 36,
"rawHeight": 38,
@@ -709,8 +709,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 252,
- "trimY": 75,
+ "trimX": 219,
+ "trimY": 1824,
"width": 36,
"height": 38,
"rawWidth": 36,
@@ -732,8 +732,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 127,
- "trimY": 469,
+ "trimX": 105,
+ "trimY": 545,
"width": 47,
"height": 59,
"rawWidth": 47,
@@ -752,11 +752,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 385,
- "trimY": 469,
+ "trimX": 153,
+ "trimY": 239,
"width": 32,
"height": 61,
"rawWidth": 32,
@@ -778,8 +778,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 298,
- "trimY": 469,
+ "trimX": 1,
+ "trimY": 1979,
"width": 45,
"height": 60,
"rawWidth": 45,
@@ -798,11 +798,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 343,
- "trimY": 469,
+ "trimX": 151,
+ "trimY": 433,
"width": 42,
"height": 60,
"rawWidth": 42,
@@ -824,8 +824,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 174,
- "trimY": 469,
+ "trimX": 205,
+ "trimY": 492,
"width": 50,
"height": 59,
"rawWidth": 50,
@@ -847,8 +847,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 224,
- "trimY": 469,
+ "trimX": 137,
+ "trimY": 936,
"width": 44,
"height": 59,
"rawWidth": 44,
@@ -867,11 +867,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 335,
- "trimY": 411,
+ "trimX": 154,
+ "trimY": 339,
"width": 47,
"height": 58,
"rawWidth": 47,
@@ -890,11 +890,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 382,
- "trimY": 411,
+ "trimX": 154,
+ "trimY": 388,
"width": 43,
"height": 58,
"rawWidth": 43,
@@ -916,8 +916,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 425,
- "trimY": 411,
+ "trimX": 151,
+ "trimY": 676,
"width": 47,
"height": 58,
"rawWidth": 47,
@@ -936,11 +936,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 469,
+ "trimX": 62,
+ "trimY": 1194,
"width": 44,
"height": 58,
"rawWidth": 44,
@@ -962,8 +962,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 259,
- "trimY": 115,
+ "trimX": 107,
+ "trimY": 1475,
"width": 44,
"height": 42,
"rawWidth": 44,
@@ -985,8 +985,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 89,
- "trimY": 0,
+ "trimX": 191,
+ "trimY": 1207,
"width": 23,
"height": 26,
"rawWidth": 23,
@@ -1005,11 +1005,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 22,
- "trimY": 0,
+ "trimX": 109,
+ "trimY": 1906,
"width": 24,
"height": 20,
"rawWidth": 24,
@@ -1028,11 +1028,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 63,
- "trimY": 301,
+ "trimX": 100,
+ "trimY": 673,
"width": 43,
"height": 49,
"rawWidth": 43,
@@ -1054,8 +1054,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 395,
- "trimY": 115,
+ "trimX": 212,
+ "trimY": 789,
"width": 43,
"height": 46,
"rawWidth": 43,
@@ -1075,11 +1075,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 438,
- "trimY": 115,
- "width": 43,
+ "trimX": 226,
+ "trimY": 186,
+ "width": 29,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1100,8 +1100,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 303,
- "trimY": 115,
+ "trimX": 58,
+ "trimY": 1472,
"width": 47,
"height": 42,
"rawWidth": 47,
@@ -1123,9 +1123,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 161,
- "width": 43,
+ "trimX": 216,
+ "trimY": 933,
+ "width": 39,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1146,9 +1146,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 43,
- "trimY": 161,
- "width": 43,
+ "trimX": 212,
+ "trimY": 1562,
+ "width": 37,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1169,8 +1169,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 86,
- "trimY": 161,
+ "trimX": 212,
+ "trimY": 837,
"width": 43,
"height": 46,
"rawWidth": 43,
@@ -1192,9 +1192,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 129,
- "trimY": 161,
- "width": 43,
+ "trimX": 216,
+ "trimY": 981,
+ "width": 39,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1213,11 +1213,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 172,
- "trimY": 161,
- "width": 43,
+ "trimX": 214,
+ "trimY": 380,
+ "width": 41,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1238,8 +1238,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 215,
- "trimY": 161,
+ "trimX": 212,
+ "trimY": 885,
"width": 43,
"height": 46,
"rawWidth": 43,
@@ -1258,12 +1258,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 258,
- "trimY": 161,
- "width": 43,
+ "trimX": 164,
+ "trimY": 808,
+ "width": 41,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1284,9 +1284,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 301,
- "trimY": 161,
- "width": 43,
+ "trimX": 194,
+ "trimY": 1118,
+ "width": 41,
"height": 46,
"rawWidth": 43,
"rawHeight": 46,
@@ -1297,6 +1297,236 @@
"spriteType": "normal",
"subMetas": {}
},
+ "discount_0.png": {
+ "ver": "1.0.6",
+ "uuid": "8bf71b2d-8110-4f80-b372-7664958fa972",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 211,
+ "trimY": 1029,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_1.png": {
+ "ver": "1.0.6",
+ "uuid": "573856d6-bcf2-4f74-a296-b938735b3a6e",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 182,
+ "trimY": 851,
+ "width": 28,
+ "height": 42,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_2.png": {
+ "ver": "1.0.6",
+ "uuid": "e81e3849-47b0-4002-8396-1c6890c56208",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 217,
+ "trimY": 1422,
+ "width": 38,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_3.png": {
+ "ver": "1.0.6",
+ "uuid": "d7e579d0-af4f-4a02-9c38-e1fe585db121",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": -1,
+ "offsetY": 0,
+ "trimX": 135,
+ "trimY": 1730,
+ "width": 36,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_4.png": {
+ "ver": "1.0.6",
+ "uuid": "7a51cfc8-dc08-482d-91e8-d851ed02b4d0",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 53,
+ "trimY": 1730,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_5.png": {
+ "ver": "1.0.6",
+ "uuid": "6143b77a-3c94-42ca-9026-dca9db58f56b",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": -1,
+ "offsetY": 0,
+ "trimX": 217,
+ "trimY": 1468,
+ "width": 38,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_6.png": {
+ "ver": "1.0.6",
+ "uuid": "e8659f41-d9d0-4e43-adc8-f13b0cbf66a1",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 95,
+ "trimY": 1720,
+ "width": 38,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_7.png": {
+ "ver": "1.0.6",
+ "uuid": "535a83dd-d70a-480e-9190-b8776cc97c65",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 54,
+ "trimY": 1776,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_8.png": {
+ "ver": "1.0.6",
+ "uuid": "d458276c-fa7a-452d-a01a-fa19cd196e1d",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 54,
+ "trimY": 1822,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "discount_9.png": {
+ "ver": "1.0.6",
+ "uuid": "e61fdba9-d3ad-47c9-ba96-14f843fc2f6b",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": true,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 133,
+ "trimY": 1768,
+ "width": 40,
+ "height": 44,
+ "rawWidth": 40,
+ "rawHeight": 44,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"hp_,.png": {
"ver": "1.0.6",
"uuid": "f1cb68b4-fc78-45bd-9786-d4e21fd02523",
@@ -1307,8 +1537,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 661,
+ "trimX": 62,
+ "trimY": 1124,
"width": 46,
"height": 68,
"rawWidth": 46,
@@ -1327,11 +1557,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 112,
- "trimY": 0,
+ "trimX": 38,
+ "trimY": 1880,
"width": 66,
"height": 29,
"rawWidth": 66,
@@ -1350,11 +1580,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 350,
- "trimY": 115,
+ "trimX": 213,
+ "trimY": 1071,
"width": 45,
"height": 42,
"rawWidth": 45,
@@ -1375,11 +1605,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 301,
- "trimY": 753,
+ "offsetY": 1,
+ "trimX": 1,
+ "trimY": 596,
"width": 97,
- "height": 108,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1398,11 +1628,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 398,
- "trimY": 753,
- "width": 97,
- "height": 108,
+ "offsetY": 1,
+ "trimX": 100,
+ "trimY": 92,
+ "width": 57,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1422,10 +1652,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "trimX": 1,
+ "trimY": 808,
+ "width": 85,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1444,11 +1674,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 97,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "offsetY": 1,
+ "trimX": 1,
+ "trimY": 1018,
+ "width": 81,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1468,10 +1698,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 194,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "trimX": 1,
+ "trimY": 702,
+ "width": 95,
+ "height": 104,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1491,10 +1721,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 291,
- "trimY": 861,
- "width": 97,
- "height": 108,
+ "trimX": 1,
+ "trimY": 914,
+ "width": 85,
+ "height": 102,
"rawWidth": 97,
"rawHeight": 108,
"borderTop": 0,
@@ -1514,8 +1744,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 94,
- "trimY": 970,
+ "trimX": 1,
+ "trimY": 228,
"width": 98,
"height": 128,
"rawWidth": 98,
@@ -1537,8 +1767,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 970,
+ "trimX": 1,
+ "trimY": 358,
"width": 94,
"height": 125,
"rawWidth": 94,
@@ -1560,8 +1790,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 288,
- "trimY": 970,
+ "trimX": 1,
+ "trimY": 92,
"width": 97,
"height": 134,
"rawWidth": 97,
@@ -1583,8 +1813,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 192,
- "trimY": 970,
+ "trimX": 159,
+ "trimY": 1,
"width": 96,
"height": 129,
"rawWidth": 96,
@@ -1606,8 +1836,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 388,
- "trimY": 861,
+ "trimX": 1,
+ "trimY": 485,
"width": 102,
"height": 109,
"rawWidth": 102,
@@ -1629,8 +1859,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 104,
- "trimY": 596,
+ "trimX": 101,
+ "trimY": 277,
"width": 51,
"height": 65,
"rawWidth": 51,
@@ -1652,8 +1882,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 470,
- "trimY": 532,
+ "trimX": 88,
+ "trimY": 808,
"width": 27,
"height": 64,
"rawWidth": 27,
@@ -1672,11 +1902,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 155,
- "trimY": 596,
+ "trimX": 159,
+ "trimY": 186,
"width": 51,
"height": 65,
"rawWidth": 51,
@@ -1698,8 +1928,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 206,
- "trimY": 596,
+ "trimX": 105,
+ "trimY": 478,
"width": 45,
"height": 65,
"rawWidth": 45,
@@ -1721,8 +1951,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 251,
- "trimY": 596,
+ "trimX": 97,
+ "trimY": 411,
"width": 52,
"height": 65,
"rawWidth": 52,
@@ -1744,8 +1974,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 303,
- "trimY": 596,
+ "trimX": 152,
+ "trimY": 477,
"width": 49,
"height": 65,
"rawWidth": 49,
@@ -1767,8 +1997,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 352,
- "trimY": 596,
+ "trimX": 100,
+ "trimY": 606,
"width": 49,
"height": 65,
"rawWidth": 49,
@@ -1790,8 +2020,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 596,
+ "trimX": 98,
+ "trimY": 718,
"width": 46,
"height": 64,
"rawWidth": 46,
@@ -1813,8 +2043,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 401,
- "trimY": 596,
+ "trimX": 101,
+ "trimY": 344,
"width": 51,
"height": 65,
"rawWidth": 51,
@@ -1836,8 +2066,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 452,
- "trimY": 596,
+ "trimX": 154,
+ "trimY": 544,
"width": 49,
"height": 65,
"rawWidth": 49,
@@ -1859,8 +2089,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 138,
- "trimY": 301,
+ "trimX": 94,
+ "trimY": 1519,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -1879,12 +2109,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 180,
- "trimY": 301,
- "width": 42,
+ "trimX": 88,
+ "trimY": 1004,
+ "width": 30,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1905,9 +2135,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 222,
- "trimY": 301,
- "width": 42,
+ "trimX": 138,
+ "trimY": 1635,
+ "width": 40,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1928,9 +2158,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 264,
- "trimY": 301,
- "width": 42,
+ "trimX": 128,
+ "trimY": 1036,
+ "width": 38,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1951,8 +2181,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 306,
- "trimY": 301,
+ "trimX": 94,
+ "trimY": 1575,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -1974,9 +2204,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 348,
- "trimY": 301,
- "width": 42,
+ "trimX": 148,
+ "trimY": 1356,
+ "width": 40,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -1997,9 +2227,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 390,
- "trimY": 301,
- "width": 42,
+ "trimX": 149,
+ "trimY": 1412,
+ "width": 40,
"height": 54,
"rawWidth": 42,
"rawHeight": 54,
@@ -2020,8 +2250,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 432,
- "trimY": 301,
+ "trimX": 94,
+ "trimY": 1631,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -2043,8 +2273,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 355,
+ "trimX": 84,
+ "trimY": 1036,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -2066,8 +2296,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 42,
- "trimY": 355,
+ "trimX": 150,
+ "trimY": 1124,
"width": 42,
"height": 54,
"rawWidth": 42,
@@ -2086,11 +2316,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 199,
- "trimY": 0,
+ "trimX": 98,
+ "trimY": 784,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2109,11 +2339,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 221,
- "trimY": 0,
+ "trimX": 96,
+ "trimY": 1847,
"width": 17,
"height": 32,
"rawWidth": 17,
@@ -2132,11 +2362,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 178,
- "trimY": 0,
+ "trimX": 166,
+ "trimY": 785,
"width": 21,
"height": 31,
"rawWidth": 21,
@@ -2155,11 +2385,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 238,
- "trimY": 0,
+ "trimX": 132,
+ "trimY": 785,
"width": 21,
"height": 32,
"rawWidth": 21,
@@ -2178,11 +2408,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 259,
- "trimY": 0,
+ "trimX": 122,
+ "trimY": 2013,
"width": 23,
"height": 32,
"rawWidth": 23,
@@ -2201,11 +2431,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 282,
- "trimY": 0,
+ "trimX": 118,
+ "trimY": 1951,
"width": 21,
"height": 32,
"rawWidth": 21,
@@ -2227,8 +2457,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 303,
- "trimY": 0,
+ "trimX": 157,
+ "trimY": 1967,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2250,8 +2480,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 325,
- "trimY": 0,
+ "trimX": 181,
+ "trimY": 1952,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2270,11 +2500,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 347,
- "trimY": 0,
+ "trimX": 205,
+ "trimY": 1967,
"width": 21,
"height": 32,
"rawWidth": 21,
@@ -2296,8 +2526,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 368,
- "trimY": 0,
+ "trimX": 181,
+ "trimY": 1986,
"width": 22,
"height": 32,
"rawWidth": 22,
@@ -2316,13 +2546,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 344,
- "trimY": 161,
+ "trimX": 131,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2340,12 +2570,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 384,
- "trimY": 161,
- "width": 40,
- "height": 46,
+ "trimX": 190,
+ "trimY": 1283,
+ "width": 26,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2365,10 +2595,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 424,
- "trimY": 161,
- "width": 40,
- "height": 46,
+ "trimX": 69,
+ "trimY": 1868,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2388,10 +2618,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 221,
+ "trimY": 1168,
+ "width": 34,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2411,8 +2641,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 40,
- "trimY": 207,
+ "trimX": 179,
+ "trimY": 1235,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -2432,12 +2662,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 80,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 82,
+ "trimY": 1974,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2457,9 +2687,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 120,
- "trimY": 207,
- "width": 40,
+ "trimX": 217,
+ "trimY": 1374,
+ "width": 38,
"height": 46,
"rawWidth": 40,
"rawHeight": 46,
@@ -2480,10 +2710,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 160,
- "trimY": 207,
+ "trimX": 177,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -2503,8 +2733,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 200,
- "trimY": 207,
+ "trimX": 203,
+ "trimY": 1514,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -2526,8 +2756,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 240,
- "trimY": 207,
+ "trimX": 213,
+ "trimY": 1610,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -2549,8 +2779,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 414,
- "trimY": 0,
+ "trimX": 96,
+ "trimY": 1808,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2569,12 +2799,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
+ "rotated": true,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 447,
- "trimY": 0,
- "width": 33,
+ "trimX": 205,
+ "trimY": 1864,
+ "width": 25,
"height": 37,
"rawWidth": 33,
"rawHeight": 37,
@@ -2595,8 +2825,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 46,
- "trimY": 596,
+ "trimX": 154,
+ "trimY": 273,
"width": 58,
"height": 64,
"rawWidth": 58,
@@ -2618,8 +2848,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 37,
+ "trimX": 131,
+ "trimY": 1852,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2638,12 +2868,12 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
+ "rotated": true,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 33,
- "trimY": 37,
- "width": 33,
+ "trimX": 69,
+ "trimY": 1914,
+ "width": 31,
"height": 37,
"rawWidth": 33,
"rawHeight": 37,
@@ -2661,11 +2891,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 66,
- "trimY": 37,
+ "trimX": 166,
+ "trimY": 1856,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2687,10 +2917,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 99,
- "trimY": 37,
- "width": 33,
- "height": 37,
+ "trimX": 211,
+ "trimY": 1891,
+ "width": 31,
+ "height": 35,
"rawWidth": 33,
"rawHeight": 37,
"borderTop": 0,
@@ -2707,11 +2937,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 132,
- "trimY": 37,
+ "trimX": 131,
+ "trimY": 1916,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2730,11 +2960,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 165,
- "trimY": 37,
+ "trimX": 170,
+ "trimY": 1917,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2756,8 +2986,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 198,
- "trimY": 37,
+ "trimX": 209,
+ "trimY": 1928,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2779,8 +3009,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 231,
- "trimY": 37,
+ "trimX": 122,
+ "trimY": 1974,
"width": 33,
"height": 37,
"rawWidth": 33,
@@ -2802,8 +3032,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1219,
"width": 55,
"height": 93,
"rawWidth": 55,
@@ -2825,8 +3055,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 266,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1880,
"width": 35,
"height": 97,
"rawWidth": 35,
@@ -2848,8 +3078,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 46,
- "trimY": 661,
+ "trimX": 101,
+ "trimY": 198,
"width": 50,
"height": 77,
"rawWidth": 50,
@@ -2868,11 +3098,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 214,
- "trimY": 753,
+ "trimX": 159,
+ "trimY": 132,
"width": 52,
"height": 96,
"rawWidth": 52,
@@ -2894,8 +3124,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 165,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1501,
"width": 49,
"height": 95,
"rawWidth": 49,
@@ -2917,8 +3147,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 55,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1124,
"width": 59,
"height": 93,
"rawWidth": 59,
@@ -2940,8 +3170,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 114,
- "trimY": 753,
+ "trimX": 1,
+ "trimY": 1598,
"width": 51,
"height": 93,
"rawWidth": 51,
@@ -2963,8 +3193,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 358,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1314,
"width": 56,
"height": 92,
"rawWidth": 56,
@@ -2986,8 +3216,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 414,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1693,
"width": 50,
"height": 92,
"rawWidth": 50,
@@ -3009,8 +3239,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 252,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1408,
"width": 55,
"height": 91,
"rawWidth": 55,
@@ -3032,8 +3262,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 307,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1787,
"width": 51,
"height": 91,
"rawWidth": 51,
@@ -3055,8 +3285,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 431,
- "trimY": 253,
+ "trimX": 168,
+ "trimY": 1519,
"width": 33,
"height": 48,
"rawWidth": 33,
@@ -3078,8 +3308,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 240,
- "trimY": 253,
+ "trimX": 183,
+ "trimY": 895,
"width": 27,
"height": 47,
"rawWidth": 27,
@@ -3101,8 +3331,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 267,
- "trimY": 253,
+ "trimX": 180,
+ "trimY": 1619,
"width": 31,
"height": 47,
"rawWidth": 31,
@@ -3121,11 +3351,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 298,
- "trimY": 253,
+ "trimX": 84,
+ "trimY": 1092,
"width": 30,
"height": 47,
"rawWidth": 30,
@@ -3147,8 +3377,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 464,
- "trimY": 253,
+ "trimX": 176,
+ "trimY": 1569,
"width": 34,
"height": 48,
"rawWidth": 34,
@@ -3167,11 +3397,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 328,
- "trimY": 253,
+ "trimX": 133,
+ "trimY": 1092,
"width": 30,
"height": 47,
"rawWidth": 30,
@@ -3193,8 +3423,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 358,
- "trimY": 253,
+ "trimX": 48,
+ "trimY": 1976,
"width": 32,
"height": 47,
"rawWidth": 32,
@@ -3216,8 +3446,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 106,
- "trimY": 301,
+ "trimX": 153,
+ "trimY": 1468,
"width": 32,
"height": 49,
"rawWidth": 32,
@@ -3239,8 +3469,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 301,
+ "trimX": 183,
+ "trimY": 944,
"width": 31,
"height": 48,
"rawWidth": 31,
@@ -3262,8 +3492,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 31,
- "trimY": 301,
+ "trimX": 168,
+ "trimY": 1036,
"width": 32,
"height": 48,
"rawWidth": 32,
@@ -3285,8 +3515,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 68,
- "trimY": 0,
+ "trimX": 187,
+ "trimY": 1488,
"width": 21,
"height": 24,
"rawWidth": 21,
@@ -3308,8 +3538,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 0,
+ "trimX": 157,
+ "trimY": 2001,
"width": 22,
"height": 18,
"rawWidth": 22,
@@ -3331,8 +3561,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 200,
- "trimY": 411,
+ "trimX": 58,
+ "trimY": 1240,
"width": 45,
"height": 57,
"rawWidth": 45,
@@ -3354,8 +3584,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 268,
- "trimY": 469,
+ "trimX": 105,
+ "trimY": 1240,
"width": 30,
"height": 59,
"rawWidth": 30,
@@ -3377,8 +3607,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 44,
- "trimY": 469,
+ "trimX": 59,
+ "trimY": 1299,
"width": 43,
"height": 58,
"rawWidth": 43,
@@ -3400,8 +3630,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 87,
- "trimY": 469,
+ "trimX": 52,
+ "trimY": 1516,
"width": 40,
"height": 58,
"rawWidth": 40,
@@ -3423,8 +3653,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 245,
- "trimY": 411,
+ "trimX": 205,
+ "trimY": 553,
"width": 48,
"height": 57,
"rawWidth": 48,
@@ -3446,8 +3676,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 293,
- "trimY": 411,
+ "trimX": 213,
+ "trimY": 433,
"width": 42,
"height": 57,
"rawWidth": 42,
@@ -3466,11 +3696,11 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 84,
- "trimY": 355,
+ "trimX": 199,
+ "trimY": 742,
"width": 45,
"height": 56,
"rawWidth": 45,
@@ -3492,8 +3722,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 129,
- "trimY": 355,
+ "trimX": 214,
+ "trimY": 273,
"width": 41,
"height": 56,
"rawWidth": 41,
@@ -3515,8 +3745,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 170,
- "trimY": 355,
+ "trimX": 59,
+ "trimY": 1359,
"width": 45,
"height": 56,
"rawWidth": 45,
@@ -3538,8 +3768,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 215,
- "trimY": 355,
+ "trimX": 104,
+ "trimY": 1301,
"width": 42,
"height": 56,
"rawWidth": 42,
@@ -3561,8 +3791,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 390,
- "trimY": 253,
+ "trimX": 214,
+ "trimY": 331,
"width": 41,
"height": 47,
"rawWidth": 41,
@@ -3581,13 +3811,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 417,
- "trimY": 469,
+ "offsetY": 1,
+ "trimX": 146,
+ "trimY": 736,
"width": 47,
- "height": 63,
+ "height": 51,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3607,9 +3837,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 376,
- "trimY": 532,
- "width": 47,
+ "trimX": 117,
+ "trimY": 808,
+ "width": 45,
"height": 63,
"rawWidth": 47,
"rawHeight": 63,
@@ -3630,10 +3860,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 532,
- "width": 47,
- "height": 63,
+ "trimX": 164,
+ "trimY": 1180,
+ "width": 25,
+ "height": 53,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3653,10 +3883,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 423,
- "trimY": 532,
- "width": 47,
- "height": 63,
+ "trimX": 205,
+ "trimY": 1990,
+ "width": 21,
+ "height": 25,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3675,11 +3905,11 @@
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
- "offsetY": 0,
- "trimX": 47,
- "trimY": 532,
+ "offsetY": 1,
+ "trimX": 58,
+ "trimY": 1417,
"width": 47,
- "height": 63,
+ "height": 53,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3699,8 +3929,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 94,
- "trimY": 532,
+ "trimX": 151,
+ "trimY": 611,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3722,8 +3952,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 141,
- "trimY": 532,
+ "trimX": 200,
+ "trimY": 612,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3743,11 +3973,11 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 188,
- "trimY": 532,
- "width": 47,
+ "trimX": 88,
+ "trimY": 874,
+ "width": 45,
"height": 63,
"rawWidth": 47,
"rawHeight": 63,
@@ -3768,8 +3998,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 235,
- "trimY": 532,
+ "trimX": 200,
+ "trimY": 677,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3789,12 +4019,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 282,
- "trimY": 532,
- "width": 47,
- "height": 63,
+ "trimX": 135,
+ "trimY": 873,
+ "width": 45,
+ "height": 61,
"rawWidth": 47,
"rawHeight": 63,
"borderTop": 0,
@@ -3814,8 +4044,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 329,
- "trimY": 532,
+ "trimX": 88,
+ "trimY": 939,
"width": 47,
"height": 63,
"rawWidth": 47,
@@ -3834,13 +4064,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
+ "rotated": true,
"offsetX": 0,
"offsetY": 0,
- "trimX": 280,
- "trimY": 207,
+ "trimX": 131,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3858,12 +4088,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 320,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 190,
+ "trimY": 1283,
+ "width": 26,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3883,10 +4113,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 360,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 69,
+ "trimY": 1868,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3906,10 +4136,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 400,
- "trimY": 207,
- "width": 40,
- "height": 46,
+ "trimX": 221,
+ "trimY": 1168,
+ "width": 34,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3929,8 +4159,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 440,
- "trimY": 207,
+ "trimX": 179,
+ "trimY": 1235,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -3950,12 +4180,12 @@
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
- "offsetX": 0,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 0,
- "trimY": 253,
- "width": 40,
- "height": 46,
+ "trimX": 82,
+ "trimY": 1974,
+ "width": 38,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -3975,9 +4205,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 40,
- "trimY": 253,
- "width": 40,
+ "trimX": 217,
+ "trimY": 1374,
+ "width": 38,
"height": 46,
"rawWidth": 40,
"rawHeight": 46,
@@ -3998,10 +4228,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 80,
- "trimY": 253,
+ "trimX": 177,
+ "trimY": 1810,
"width": 40,
- "height": 46,
+ "height": 44,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -4021,8 +4251,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 120,
- "trimY": 253,
+ "trimX": 203,
+ "trimY": 1514,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -4044,8 +4274,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 160,
- "trimY": 253,
+ "trimX": 213,
+ "trimY": 1610,
"width": 40,
"height": 46,
"rawWidth": 40,
@@ -4064,13 +4294,13 @@
"rawTextureUuid": "f8d067a0-98d0-4a97-8159-506946262d4b",
"trimType": "auto",
"trimThreshold": 1,
- "rotated": false,
- "offsetX": 0,
+ "rotated": true,
+ "offsetX": -1,
"offsetY": 0,
- "trimX": 200,
- "trimY": 253,
- "width": 40,
- "height": 46,
+ "trimX": 82,
+ "trimY": 2020,
+ "width": 16,
+ "height": 32,
"rawWidth": 40,
"rawHeight": 46,
"borderTop": 0,
@@ -4090,8 +4320,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 257,
- "trimY": 355,
+ "trimX": 106,
+ "trimY": 1359,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4113,9 +4343,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 297,
- "trimY": 355,
- "width": 40,
+ "trimX": 138,
+ "trimY": 1519,
+ "width": 28,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4136,10 +4366,10 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 160,
- "trimY": 411,
- "width": 40,
- "height": 56,
+ "trimX": 237,
+ "trimY": 1118,
+ "width": 18,
+ "height": 48,
"rawWidth": 40,
"rawHeight": 56,
"borderTop": 0,
@@ -4159,9 +4389,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 337,
- "trimY": 355,
- "width": 40,
+ "trimX": 54,
+ "trimY": 1576,
+ "width": 38,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4182,9 +4412,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 377,
- "trimY": 355,
- "width": 40,
+ "trimX": 138,
+ "trimY": 1577,
+ "width": 36,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4205,8 +4435,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 417,
- "trimY": 355,
+ "trimX": 107,
+ "trimY": 1417,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4228,9 +4458,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 457,
- "trimY": 355,
- "width": 40,
+ "trimX": 54,
+ "trimY": 1634,
+ "width": 38,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4251,9 +4481,9 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 411,
- "width": 40,
+ "trimX": 110,
+ "trimY": 1124,
+ "width": 38,
"height": 56,
"rawWidth": 40,
"rawHeight": 56,
@@ -4274,8 +4504,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 40,
- "trimY": 411,
+ "trimX": 122,
+ "trimY": 1182,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4297,8 +4527,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 80,
- "trimY": 411,
+ "trimX": 137,
+ "trimY": 1240,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4320,8 +4550,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 120,
- "trimY": 411,
+ "trimX": 148,
+ "trimY": 1298,
"width": 40,
"height": 56,
"rawWidth": 40,
@@ -4343,8 +4573,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 96,
- "trimY": 661,
+ "trimX": 1,
+ "trimY": 1,
"width": 156,
"height": 89,
"rawWidth": 156,
@@ -4366,8 +4596,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 46,
- "trimY": 0,
+ "trimX": 205,
+ "trimY": 2017,
"width": 22,
"height": 22,
"rawWidth": 22,
diff --git a/assets/res/font/font.png b/assets/res/font/font.png
index eb74180..58a2ca7 100644
Binary files a/assets/res/font/font.png and b/assets/res/font/font.png differ
diff --git a/assets/shop/img/chuji.png b/assets/shop/img/chuji.png
index db42d33..672018c 100644
Binary files a/assets/shop/img/chuji.png and b/assets/shop/img/chuji.png differ
diff --git a/assets/shop/img/gaoji.png b/assets/shop/img/gaoji.png
index 6d585b6..a44a113 100644
Binary files a/assets/shop/img/gaoji.png and b/assets/shop/img/gaoji.png differ
diff --git a/assets/shop/img/texture_atlas-1.plist b/assets/shop/img/texture_atlas-1.plist
index f37748a..dda8f6f 100644
--- a/assets/shop/img/texture_atlas-1.plist
+++ b/assets/shop/img/texture_atlas-1.plist
@@ -45,7 +45,7 @@
spriteSourceSize
{130,38}
textureRect
- {{292,0},{130,38}}
+ {{425,0},{130,38}}
textureRotated
@@ -60,7 +60,7 @@
spriteSourceSize
{135,38}
textureRect
- {{422,0},{135,38}}
+ {{555,0},{135,38}}
textureRotated
@@ -75,7 +75,22 @@
spriteSourceSize
{162,38}
textureRect
- {{557,0},{162,38}}
+ {{690,0},{162,38}}
+ textureRotated
+
+
+ 4h.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {133,38}
+ spriteSourceSize
+ {133,38}
+ textureRect
+ {{292,0},{133,38}}
textureRotated
@@ -90,7 +105,7 @@
spriteSourceSize
{1000,406}
textureRect
- {{492,516},{1000,406}}
+ {{492,490},{1000,406}}
textureRotated
@@ -120,7 +135,7 @@
spriteSourceSize
{464,132}
textureRect
- {{1176,96},{464,132}}
+ {{1382,96},{464,132}}
textureRotated
@@ -135,7 +150,7 @@
spriteSourceSize
{123,90}
textureRect
- {{1385,0},{123,90}}
+ {{1563,0},{123,90}}
textureRotated
@@ -150,7 +165,7 @@
spriteSourceSize
{322,96}
textureRect
- {{1508,0},{322,96}}
+ {{1686,0},{322,96}}
textureRotated
@@ -165,7 +180,7 @@
spriteSourceSize
{246,246}
textureRect
- {{188,270},{246,246}}
+ {{342,244},{246,246}}
textureRotated
@@ -180,7 +195,7 @@
spriteSourceSize
{246,246}
textureRect
- {{434,270},{246,246}}
+ {{588,244},{246,246}}
textureRotated
@@ -195,7 +210,7 @@
spriteSourceSize
{246,246}
textureRect
- {{680,270},{246,246}}
+ {{834,244},{246,246}}
textureRotated
@@ -210,7 +225,7 @@
spriteSourceSize
{246,246}
textureRect
- {{926,270},{246,246}}
+ {{1080,244},{246,246}}
textureRotated
@@ -225,7 +240,7 @@
spriteSourceSize
{246,246}
textureRect
- {{1172,270},{246,246}}
+ {{1326,244},{246,246}}
textureRotated
@@ -240,7 +255,7 @@
spriteSourceSize
{246,246}
textureRect
- {{1418,270},{246,246}}
+ {{1572,244},{246,246}}
textureRotated
@@ -255,7 +270,7 @@
spriteSourceSize
{246,246}
textureRect
- {{0,516},{246,246}}
+ {{0,490},{246,246}}
textureRotated
@@ -270,7 +285,7 @@
spriteSourceSize
{246,246}
textureRect
- {{246,516},{246,246}}
+ {{246,490},{246,246}}
textureRotated
@@ -285,7 +300,37 @@
spriteSourceSize
{304,448}
textureRect
- {{1492,516},{304,448}}
+ {{1492,490},{304,448}}
+ textureRotated
+
+
+ r_bq.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {148,148}
+ spriteSourceSize
+ {148,148}
+ textureRect
+ {{1846,96},{148,148}}
+ textureRotated
+
+
+ s_bq.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {206,122}
+ spriteSourceSize
+ {206,122}
+ textureRect
+ {{1176,96},{206,122}}
textureRotated
@@ -300,7 +345,7 @@
spriteSourceSize
{286,42}
textureRect
- {{800,0},{286,42}}
+ {{933,0},{286,42}}
textureRotated
@@ -315,7 +360,7 @@
spriteSourceSize
{44,40}
textureRect
- {{719,0},{44,40}}
+ {{852,0},{44,40}}
textureRotated
@@ -330,7 +375,7 @@
spriteSourceSize
{188,207}
textureRect
- {{0,270},{188,207}}
+ {{154,244},{188,207}}
textureRotated
@@ -360,7 +405,7 @@
spriteSourceSize
{148,65}
textureRect
- {{1086,0},{148,65}}
+ {{1264,0},{148,65}}
textureRotated
@@ -375,7 +420,7 @@
spriteSourceSize
{151,65}
textureRect
- {{1234,0},{151,65}}
+ {{1412,0},{151,65}}
textureRotated
@@ -405,7 +450,7 @@
spriteSourceSize
{154,174}
textureRect
- {{1640,96},{154,174}}
+ {{0,244},{154,174}}
textureRotated
@@ -420,7 +465,22 @@
spriteSourceSize
{37,40}
textureRect
- {{763,0},{37,40}}
+ {{896,0},{37,40}}
+ textureRotated
+
+
+ zhe.png
+
+ aliases
+
+ spriteOffset
+ {0,0}
+ spriteSize
+ {45,46}
+ spriteSourceSize
+ {45,46}
+ textureRect
+ {{1219,0},{45,46}}
textureRotated
@@ -436,9 +496,9 @@
realTextureFileName
texture_atlas-1.png
size
- {1830,964}
+ {2008,938}
smartupdate
- $TexturePacker:SmartUpdate:922b75cadd6e1a6365b192ddd2ada1b0:20640123229c1eef91916ad6809a7ed2:7574d8513b69ec3112d43152279b5c18$
+ $TexturePacker:SmartUpdate:451d50daa7daadaa9dd8412f5040c29d:21230410b68532ee0c6da2e54da431cb:7574d8513b69ec3112d43152279b5c18$
textureFileName
texture_atlas-1.png
diff --git a/assets/shop/img/texture_atlas-1.plist.meta b/assets/shop/img/texture_atlas-1.plist.meta
index d2bd90f..779c71d 100644
--- a/assets/shop/img/texture_atlas-1.plist.meta
+++ b/assets/shop/img/texture_atlas-1.plist.meta
@@ -4,8 +4,8 @@
"importer": "asset",
"rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
"size": {
- "width": 1830,
- "height": 964
+ "width": 2008,
+ "height": 938
},
"type": "Texture Packer",
"subMetas": {
@@ -65,7 +65,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 292,
+ "trimX": 425,
"trimY": 0,
"width": 130,
"height": 38,
@@ -88,7 +88,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 422,
+ "trimX": 555,
"trimY": 0,
"width": 135,
"height": 38,
@@ -111,7 +111,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 557,
+ "trimX": 690,
"trimY": 0,
"width": 162,
"height": 38,
@@ -124,6 +124,29 @@
"spriteType": "normal",
"subMetas": {}
},
+ "4h.png": {
+ "ver": "1.0.6",
+ "uuid": "75fc2652-6239-434e-b00b-bd2406dcf50a",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 292,
+ "trimY": 0,
+ "width": 133,
+ "height": 38,
+ "rawWidth": 133,
+ "rawHeight": 38,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"banre.png": {
"ver": "1.0.6",
"uuid": "295fa69f-086d-4229-8dcd-446292dc31b0",
@@ -135,7 +158,7 @@
"offsetX": 0,
"offsetY": 0,
"trimX": 492,
- "trimY": 516,
+ "trimY": 490,
"width": 1000,
"height": 406,
"rawWidth": 1000,
@@ -180,7 +203,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1176,
+ "trimX": 1382,
"trimY": 96,
"width": 464,
"height": 132,
@@ -203,7 +226,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1385,
+ "trimX": 1563,
"trimY": 0,
"width": 123,
"height": 90,
@@ -226,7 +249,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1508,
+ "trimX": 1686,
"trimY": 0,
"width": 322,
"height": 96,
@@ -249,8 +272,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 188,
- "trimY": 270,
+ "trimX": 342,
+ "trimY": 244,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -272,8 +295,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 434,
- "trimY": 270,
+ "trimX": 588,
+ "trimY": 244,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -295,8 +318,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 680,
- "trimY": 270,
+ "trimX": 834,
+ "trimY": 244,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -318,8 +341,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 926,
- "trimY": 270,
+ "trimX": 1080,
+ "trimY": 244,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -341,8 +364,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1172,
- "trimY": 270,
+ "trimX": 1326,
+ "trimY": 244,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -364,8 +387,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1418,
- "trimY": 270,
+ "trimX": 1572,
+ "trimY": 244,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -388,7 +411,7 @@
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
- "trimY": 516,
+ "trimY": 490,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -411,7 +434,7 @@
"offsetX": 0,
"offsetY": 0,
"trimX": 246,
- "trimY": 516,
+ "trimY": 490,
"width": 246,
"height": 246,
"rawWidth": 246,
@@ -434,7 +457,7 @@
"offsetX": 0,
"offsetY": 0,
"trimX": 1492,
- "trimY": 516,
+ "trimY": 490,
"width": 304,
"height": 448,
"rawWidth": 304,
@@ -446,6 +469,52 @@
"spriteType": "normal",
"subMetas": {}
},
+ "r_bq.png": {
+ "ver": "1.0.6",
+ "uuid": "e314ab10-ab70-4ff7-8513-4254be9264ee",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 1846,
+ "trimY": 96,
+ "width": 148,
+ "height": 148,
+ "rawWidth": 148,
+ "rawHeight": 148,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
+ "s_bq.png": {
+ "ver": "1.0.6",
+ "uuid": "3d3ea606-2949-41b9-a98f-86f6f3122b0c",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 1176,
+ "trimY": 96,
+ "width": 206,
+ "height": 122,
+ "rawWidth": 206,
+ "rawHeight": 122,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
+ },
"shengxiaozhong.png": {
"ver": "1.0.6",
"uuid": "af474d63-41a4-4bdd-a7f1-5666c397332a",
@@ -456,7 +525,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 800,
+ "trimX": 933,
"trimY": 0,
"width": 286,
"height": 42,
@@ -479,7 +548,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 719,
+ "trimX": 852,
"trimY": 0,
"width": 44,
"height": 40,
@@ -502,8 +571,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 0,
- "trimY": 270,
+ "trimX": 154,
+ "trimY": 244,
"width": 188,
"height": 207,
"rawWidth": 188,
@@ -548,7 +617,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1086,
+ "trimX": 1264,
"trimY": 0,
"width": 148,
"height": 65,
@@ -571,7 +640,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1234,
+ "trimX": 1412,
"trimY": 0,
"width": 151,
"height": 65,
@@ -617,8 +686,8 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 1640,
- "trimY": 96,
+ "trimX": 0,
+ "trimY": 244,
"width": 154,
"height": 174,
"rawWidth": 154,
@@ -640,7 +709,7 @@
"rotated": false,
"offsetX": 0,
"offsetY": 0,
- "trimX": 763,
+ "trimX": 896,
"trimY": 0,
"width": 37,
"height": 40,
@@ -652,6 +721,29 @@
"borderRight": 0,
"spriteType": "normal",
"subMetas": {}
+ },
+ "zhe.png": {
+ "ver": "1.0.6",
+ "uuid": "bd09a391-0f09-4dd6-a17e-29e44be01ed3",
+ "importer": "sprite-frame",
+ "rawTextureUuid": "6971355d-0542-42f6-96ec-4244dbcc5897",
+ "trimType": "auto",
+ "trimThreshold": 1,
+ "rotated": false,
+ "offsetX": 0,
+ "offsetY": 0,
+ "trimX": 1219,
+ "trimY": 0,
+ "width": 45,
+ "height": 46,
+ "rawWidth": 45,
+ "rawHeight": 46,
+ "borderTop": 0,
+ "borderBottom": 0,
+ "borderLeft": 0,
+ "borderRight": 0,
+ "spriteType": "normal",
+ "subMetas": {}
}
}
}
\ No newline at end of file
diff --git a/assets/shop/img/texture_atlas-1.png b/assets/shop/img/texture_atlas-1.png
index 88b8048..696d6c8 100644
Binary files a/assets/shop/img/texture_atlas-1.png and b/assets/shop/img/texture_atlas-1.png differ
diff --git a/assets/shop/img/texture_atlas-1.png.meta b/assets/shop/img/texture_atlas-1.png.meta
index d39ee09..844c6a3 100644
--- a/assets/shop/img/texture_atlas-1.png.meta
+++ b/assets/shop/img/texture_atlas-1.png.meta
@@ -8,8 +8,8 @@
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
- "width": 1830,
- "height": 964,
+ "width": 1966,
+ "height": 922,
"platformSettings": {},
"subMetas": {}
}
\ No newline at end of file
diff --git a/assets/shop/img/zhongji.png b/assets/shop/img/zhongji.png
index 9781fbe..566cd08 100644
Binary files a/assets/shop/img/zhongji.png and b/assets/shop/img/zhongji.png differ
diff --git a/assets/shop/prefab/shop.prefab b/assets/shop/prefab/shop.prefab
index 885b148..bb7d463 100644
--- a/assets/shop/prefab/shop.prefab
+++ b/assets/shop/prefab/shop.prefab
@@ -27,29 +27,29 @@
"__id__": 11
},
{
- "__id__": 304
+ "__id__": 346
},
{
- "__id__": 377
+ "__id__": 419
},
{
- "__id__": 380
+ "__id__": 422
},
{
- "__id__": 388
+ "__id__": 430
}
],
"_active": true,
"_components": [
{
- "__id__": 401
+ "__id__": 443
},
{
- "__id__": 402
+ "__id__": 444
}
],
"_prefab": {
- "__id__": 403
+ "__id__": 445
},
"_opacity": 255,
"_color": {
@@ -408,11 +408,11 @@
"__id__": 17
},
{
- "__id__": 302
+ "__id__": 344
}
],
"_prefab": {
- "__id__": 303
+ "__id__": 345
},
"_opacity": 255,
"_color": {
@@ -479,11 +479,11 @@
"__id__": 16
},
{
- "__id__": 300
+ "__id__": 342
}
],
"_prefab": {
- "__id__": 301
+ "__id__": 343
},
"_opacity": 255,
"_color": {
@@ -700,50 +700,50 @@
"__id__": 22
},
{
- "__id__": 41
+ "__id__": 53
},
{
- "__id__": 47
+ "__id__": 59
},
{
- "__id__": 63
+ "__id__": 75
},
{
- "__id__": 79
+ "__id__": 91
},
{
- "__id__": 95
+ "__id__": 107
},
{
- "__id__": 111
+ "__id__": 123
},
{
- "__id__": 127
- },
- {
- "__id__": 143
- },
- {
- "__id__": 149
- },
- {
- "__id__": 152
+ "__id__": 139
},
{
"__id__": 155
},
{
- "__id__": 158
+ "__id__": 161
+ },
+ {
+ "__id__": 173
+ },
+ {
+ "__id__": 188
+ },
+ {
+ "__id__": 200
}
],
"_active": true,
"_components": [
{
- "__id__": 298
+ "__id__": 340
}
],
"_prefab": {
- "__id__": 299
+ "__id__": 341
},
"_opacity": 255,
"_color": {
@@ -907,16 +907,19 @@
},
{
"__id__": 36
+ },
+ {
+ "__id__": 39
}
],
"_active": true,
"_components": [
{
- "__id__": 39
+ "__id__": 51
}
],
"_prefab": {
- "__id__": 40
+ "__id__": 52
},
"_opacity": 255,
"_color": {
@@ -1564,6 +1567,452 @@
"fileId": "6fxO9oPadNsrzAGOg1xJq5",
"sync": false
},
+ {
+ "__type__": "cc.Node",
+ "_name": "r_bq",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 22
+ },
+ "_children": [
+ {
+ "__id__": 40
+ },
+ {
+ "__id__": 43
+ },
+ {
+ "__id__": 46
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 49
+ }
+ ],
+ "_prefab": {
+ "__id__": 50
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 148,
+ "height": 148
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 19.41,
+ -93.764,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "discount_8",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 39
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 41
+ }
+ ],
+ "_prefab": {
+ "__id__": 42
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 40,
+ "height": 44
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -22.064,
+ 19.027,
+ 0,
+ 0,
+ 0,
+ 0.043619387365336,
+ 0.9990482215818578,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 5
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 40
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "d458276c-fa7a-452d-a01a-fa19cd196e1d"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "f6wjKbbFpGl7KPki1iIIe5",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "discount_8",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 39
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 44
+ }
+ ],
+ "_prefab": {
+ "__id__": 45
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 40,
+ "height": 44
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 13.641,
+ 21.769,
+ 0,
+ 0,
+ 0,
+ 0.043619387365336,
+ 0.9990482215818578,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 5
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 43
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "d458276c-fa7a-452d-a01a-fa19cd196e1d"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "2fmCwtNJhIVZikexQ4kso1",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "zhe",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 39
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 47
+ }
+ ],
+ "_prefab": {
+ "__id__": 48
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 45,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 8.627,
+ -25.161,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 46
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "25DOpRQR5PPZe/ppoS0q2l",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 39
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "e314ab10-ab70-4ff7-8513-4254be9264ee"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "cdU6kB5EtDeJb/mO064AEj",
+ "sync": false
+ },
{
"__type__": "cc.Sprite",
"_name": "",
@@ -1618,17 +2067,17 @@
},
"_children": [
{
- "__id__": 42
+ "__id__": 54
}
],
"_active": true,
"_components": [
{
- "__id__": 45
+ "__id__": 57
}
],
"_prefab": {
- "__id__": 46
+ "__id__": 58
},
"_opacity": 255,
"_color": {
@@ -1682,17 +2131,17 @@
"_name": "txt1",
"_objFlags": 0,
"_parent": {
- "__id__": 41
+ "__id__": 53
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 43
+ "__id__": 55
}
],
"_prefab": {
- "__id__": 44
+ "__id__": 56
},
"_opacity": 255,
"_color": {
@@ -1746,7 +2195,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 42
+ "__id__": 54
},
"_enabled": true,
"_materials": [
@@ -1791,7 +2240,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 41
+ "__id__": 53
},
"_enabled": true,
"_materials": [
@@ -1840,32 +2289,32 @@
},
"_children": [
{
- "__id__": 48
+ "__id__": 60
},
{
- "__id__": 51
+ "__id__": 63
},
{
- "__id__": 53
+ "__id__": 65
},
{
- "__id__": 55
+ "__id__": 67
}
],
"_active": true,
"_components": [
{
- "__id__": 58
+ "__id__": 70
},
{
- "__id__": 59
+ "__id__": 71
},
{
- "__id__": 61
+ "__id__": 73
}
],
"_prefab": {
- "__id__": 62
+ "__id__": 74
},
"_opacity": 255,
"_color": {
@@ -1919,17 +2368,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 59
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 49
+ "__id__": 61
}
],
"_prefab": {
- "__id__": 50
+ "__id__": 62
},
"_opacity": 255,
"_color": {
@@ -1983,7 +2432,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 48
+ "__id__": 60
},
"_enabled": true,
"_materials": [
@@ -2015,7 +2464,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 47
+ "__id__": 59
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2028,13 +2477,13 @@
"_name": "price",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 59
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 52
+ "__id__": 64
},
"_opacity": 255,
"_color": {
@@ -2086,7 +2535,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 47
+ "__id__": 59
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2099,13 +2548,13 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 59
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 54
+ "__id__": 66
},
"_opacity": 255,
"_color": {
@@ -2157,7 +2606,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 47
+ "__id__": 59
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2170,17 +2619,17 @@
"_name": "cost_yuan",
"_objFlags": 0,
"_parent": {
- "__id__": 47
+ "__id__": 59
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 56
+ "__id__": 68
}
],
"_prefab": {
- "__id__": 57
+ "__id__": 69
},
"_opacity": 255,
"_color": {
@@ -2234,7 +2683,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 55
+ "__id__": 67
},
"_enabled": true,
"_materials": [
@@ -2266,7 +2715,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 47
+ "__id__": 59
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2279,7 +2728,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 59
},
"_enabled": true,
"_materials": [
@@ -2313,7 +2762,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 59
},
"_enabled": true,
"_normalMaterial": null,
@@ -2322,7 +2771,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 60
+ "__id__": 72
}
],
"_N$interactable": true,
@@ -2378,7 +2827,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 47
+ "__id__": 59
},
"_id": ""
},
@@ -2397,7 +2846,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 47
+ "__id__": 59
},
"_enabled": true,
"label": null,
@@ -2407,7 +2856,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 47
+ "__id__": 59
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2424,32 +2873,32 @@
},
"_children": [
{
- "__id__": 64
+ "__id__": 76
},
{
- "__id__": 67
+ "__id__": 79
},
{
- "__id__": 69
+ "__id__": 81
},
{
- "__id__": 71
+ "__id__": 83
}
],
"_active": true,
"_components": [
{
- "__id__": 74
+ "__id__": 86
},
{
- "__id__": 75
+ "__id__": 87
},
{
- "__id__": 77
+ "__id__": 89
}
],
"_prefab": {
- "__id__": 78
+ "__id__": 90
},
"_opacity": 255,
"_color": {
@@ -2503,17 +2952,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 63
+ "__id__": 75
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 65
+ "__id__": 77
}
],
"_prefab": {
- "__id__": 66
+ "__id__": 78
},
"_opacity": 255,
"_color": {
@@ -2567,7 +3016,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 64
+ "__id__": 76
},
"_enabled": true,
"_materials": [
@@ -2599,7 +3048,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 63
+ "__id__": 75
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2612,13 +3061,13 @@
"_name": "price",
"_objFlags": 0,
"_parent": {
- "__id__": 63
+ "__id__": 75
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 68
+ "__id__": 80
},
"_opacity": 255,
"_color": {
@@ -2670,7 +3119,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 63
+ "__id__": 75
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2683,13 +3132,13 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 63
+ "__id__": 75
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 70
+ "__id__": 82
},
"_opacity": 255,
"_color": {
@@ -2741,7 +3190,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 63
+ "__id__": 75
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2754,17 +3203,17 @@
"_name": "cost_yuan",
"_objFlags": 0,
"_parent": {
- "__id__": 63
+ "__id__": 75
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 72
+ "__id__": 84
}
],
"_prefab": {
- "__id__": 73
+ "__id__": 85
},
"_opacity": 255,
"_color": {
@@ -2818,7 +3267,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 71
+ "__id__": 83
},
"_enabled": true,
"_materials": [
@@ -2850,7 +3299,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 63
+ "__id__": 75
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -2863,7 +3312,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 63
+ "__id__": 75
},
"_enabled": true,
"_materials": [
@@ -2897,7 +3346,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 63
+ "__id__": 75
},
"_enabled": true,
"_normalMaterial": null,
@@ -2906,7 +3355,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 76
+ "__id__": 88
}
],
"_N$interactable": true,
@@ -2962,7 +3411,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 63
+ "__id__": 75
},
"_id": ""
},
@@ -2981,7 +3430,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 63
+ "__id__": 75
},
"_enabled": true,
"label": null,
@@ -2991,7 +3440,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 63
+ "__id__": 75
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3008,32 +3457,32 @@
},
"_children": [
{
- "__id__": 80
+ "__id__": 92
},
{
- "__id__": 83
+ "__id__": 95
},
{
- "__id__": 85
+ "__id__": 97
},
{
- "__id__": 87
+ "__id__": 99
}
],
"_active": true,
"_components": [
{
- "__id__": 90
+ "__id__": 102
},
{
- "__id__": 91
+ "__id__": 103
},
{
- "__id__": 93
+ "__id__": 105
}
],
"_prefab": {
- "__id__": 94
+ "__id__": 106
},
"_opacity": 255,
"_color": {
@@ -3087,17 +3536,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 79
+ "__id__": 91
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 81
+ "__id__": 93
}
],
"_prefab": {
- "__id__": 82
+ "__id__": 94
},
"_opacity": 255,
"_color": {
@@ -3151,7 +3600,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 80
+ "__id__": 92
},
"_enabled": true,
"_materials": [
@@ -3183,7 +3632,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 79
+ "__id__": 91
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3196,13 +3645,13 @@
"_name": "price",
"_objFlags": 0,
"_parent": {
- "__id__": 79
+ "__id__": 91
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 84
+ "__id__": 96
},
"_opacity": 255,
"_color": {
@@ -3254,7 +3703,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 79
+ "__id__": 91
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3267,13 +3716,13 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 79
+ "__id__": 91
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 86
+ "__id__": 98
},
"_opacity": 255,
"_color": {
@@ -3325,7 +3774,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 79
+ "__id__": 91
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3338,17 +3787,17 @@
"_name": "cost_yuan",
"_objFlags": 0,
"_parent": {
- "__id__": 79
+ "__id__": 91
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 88
+ "__id__": 100
}
],
"_prefab": {
- "__id__": 89
+ "__id__": 101
},
"_opacity": 255,
"_color": {
@@ -3402,7 +3851,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 87
+ "__id__": 99
},
"_enabled": true,
"_materials": [
@@ -3434,7 +3883,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 79
+ "__id__": 91
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3447,7 +3896,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 79
+ "__id__": 91
},
"_enabled": true,
"_materials": [
@@ -3481,7 +3930,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 79
+ "__id__": 91
},
"_enabled": true,
"_normalMaterial": null,
@@ -3490,7 +3939,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 92
+ "__id__": 104
}
],
"_N$interactable": true,
@@ -3546,7 +3995,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 79
+ "__id__": 91
},
"_id": ""
},
@@ -3565,7 +4014,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 79
+ "__id__": 91
},
"_enabled": true,
"label": null,
@@ -3575,7 +4024,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 79
+ "__id__": 91
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3592,32 +4041,32 @@
},
"_children": [
{
- "__id__": 96
+ "__id__": 108
},
{
- "__id__": 99
+ "__id__": 111
},
{
- "__id__": 101
+ "__id__": 113
},
{
- "__id__": 103
+ "__id__": 115
}
],
"_active": true,
"_components": [
{
- "__id__": 106
+ "__id__": 118
},
{
- "__id__": 107
+ "__id__": 119
},
{
- "__id__": 109
+ "__id__": 121
}
],
"_prefab": {
- "__id__": 110
+ "__id__": 122
},
"_opacity": 255,
"_color": {
@@ -3671,17 +4120,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 95
+ "__id__": 107
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 97
+ "__id__": 109
}
],
"_prefab": {
- "__id__": 98
+ "__id__": 110
},
"_opacity": 255,
"_color": {
@@ -3735,7 +4184,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 96
+ "__id__": 108
},
"_enabled": true,
"_materials": [
@@ -3767,7 +4216,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 95
+ "__id__": 107
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3780,13 +4229,13 @@
"_name": "price",
"_objFlags": 0,
"_parent": {
- "__id__": 95
+ "__id__": 107
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 100
+ "__id__": 112
},
"_opacity": 255,
"_color": {
@@ -3838,7 +4287,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 95
+ "__id__": 107
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3851,13 +4300,13 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 95
+ "__id__": 107
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 102
+ "__id__": 114
},
"_opacity": 255,
"_color": {
@@ -3909,7 +4358,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 95
+ "__id__": 107
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -3922,17 +4371,17 @@
"_name": "cost_yuan",
"_objFlags": 0,
"_parent": {
- "__id__": 95
+ "__id__": 107
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 104
+ "__id__": 116
}
],
"_prefab": {
- "__id__": 105
+ "__id__": 117
},
"_opacity": 255,
"_color": {
@@ -3986,7 +4435,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 103
+ "__id__": 115
},
"_enabled": true,
"_materials": [
@@ -4018,7 +4467,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 95
+ "__id__": 107
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4031,7 +4480,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 95
+ "__id__": 107
},
"_enabled": true,
"_materials": [
@@ -4065,7 +4514,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 95
+ "__id__": 107
},
"_enabled": true,
"_normalMaterial": null,
@@ -4074,7 +4523,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 108
+ "__id__": 120
}
],
"_N$interactable": true,
@@ -4130,7 +4579,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 95
+ "__id__": 107
},
"_id": ""
},
@@ -4149,7 +4598,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 95
+ "__id__": 107
},
"_enabled": true,
"label": null,
@@ -4159,7 +4608,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 95
+ "__id__": 107
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4176,32 +4625,32 @@
},
"_children": [
{
- "__id__": 112
+ "__id__": 124
},
{
- "__id__": 115
+ "__id__": 127
},
{
- "__id__": 117
+ "__id__": 129
},
{
- "__id__": 119
+ "__id__": 131
}
],
"_active": true,
"_components": [
{
- "__id__": 122
+ "__id__": 134
},
{
- "__id__": 123
+ "__id__": 135
},
{
- "__id__": 125
+ "__id__": 137
}
],
"_prefab": {
- "__id__": 126
+ "__id__": 138
},
"_opacity": 255,
"_color": {
@@ -4255,17 +4704,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 111
+ "__id__": 123
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 113
+ "__id__": 125
}
],
"_prefab": {
- "__id__": 114
+ "__id__": 126
},
"_opacity": 255,
"_color": {
@@ -4319,7 +4768,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 112
+ "__id__": 124
},
"_enabled": true,
"_materials": [
@@ -4351,7 +4800,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 111
+ "__id__": 123
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4364,13 +4813,13 @@
"_name": "price",
"_objFlags": 0,
"_parent": {
- "__id__": 111
+ "__id__": 123
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 116
+ "__id__": 128
},
"_opacity": 255,
"_color": {
@@ -4422,7 +4871,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 111
+ "__id__": 123
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4435,13 +4884,13 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 111
+ "__id__": 123
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 118
+ "__id__": 130
},
"_opacity": 255,
"_color": {
@@ -4493,7 +4942,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 111
+ "__id__": 123
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4506,17 +4955,17 @@
"_name": "cost_yuan",
"_objFlags": 0,
"_parent": {
- "__id__": 111
+ "__id__": 123
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 120
+ "__id__": 132
}
],
"_prefab": {
- "__id__": 121
+ "__id__": 133
},
"_opacity": 255,
"_color": {
@@ -4570,7 +5019,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 119
+ "__id__": 131
},
"_enabled": true,
"_materials": [
@@ -4602,7 +5051,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 111
+ "__id__": 123
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4615,7 +5064,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 111
+ "__id__": 123
},
"_enabled": true,
"_materials": [
@@ -4649,7 +5098,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 111
+ "__id__": 123
},
"_enabled": true,
"_normalMaterial": null,
@@ -4658,7 +5107,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 124
+ "__id__": 136
}
],
"_N$interactable": true,
@@ -4714,7 +5163,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 111
+ "__id__": 123
},
"_id": ""
},
@@ -4733,7 +5182,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 111
+ "__id__": 123
},
"_enabled": true,
"label": null,
@@ -4743,7 +5192,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 111
+ "__id__": 123
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4760,32 +5209,32 @@
},
"_children": [
{
- "__id__": 128
+ "__id__": 140
},
{
- "__id__": 131
+ "__id__": 143
},
{
- "__id__": 133
+ "__id__": 145
},
{
- "__id__": 135
+ "__id__": 147
}
],
"_active": true,
"_components": [
{
- "__id__": 138
+ "__id__": 150
},
{
- "__id__": 139
+ "__id__": 151
},
{
- "__id__": 141
+ "__id__": 153
}
],
"_prefab": {
- "__id__": 142
+ "__id__": 154
},
"_opacity": 255,
"_color": {
@@ -4839,17 +5288,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 127
+ "__id__": 139
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 129
+ "__id__": 141
}
],
"_prefab": {
- "__id__": 130
+ "__id__": 142
},
"_opacity": 255,
"_color": {
@@ -4903,7 +5352,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 128
+ "__id__": 140
},
"_enabled": true,
"_materials": [
@@ -4935,7 +5384,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 127
+ "__id__": 139
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -4948,13 +5397,13 @@
"_name": "price",
"_objFlags": 0,
"_parent": {
- "__id__": 127
+ "__id__": 139
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 132
+ "__id__": 144
},
"_opacity": 255,
"_color": {
@@ -5006,7 +5455,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 127
+ "__id__": 139
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -5019,13 +5468,13 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 127
+ "__id__": 139
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 134
+ "__id__": 146
},
"_opacity": 255,
"_color": {
@@ -5077,7 +5526,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 127
+ "__id__": 139
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -5090,17 +5539,17 @@
"_name": "cost_yuan",
"_objFlags": 0,
"_parent": {
- "__id__": 127
+ "__id__": 139
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 136
+ "__id__": 148
}
],
"_prefab": {
- "__id__": 137
+ "__id__": 149
},
"_opacity": 255,
"_color": {
@@ -5154,7 +5603,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 135
+ "__id__": 147
},
"_enabled": true,
"_materials": [
@@ -5186,7 +5635,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 127
+ "__id__": 139
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -5199,7 +5648,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 127
+ "__id__": 139
},
"_enabled": true,
"_materials": [
@@ -5233,7 +5682,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 127
+ "__id__": 139
},
"_enabled": true,
"_normalMaterial": null,
@@ -5242,7 +5691,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 140
+ "__id__": 152
}
],
"_N$interactable": true,
@@ -5298,7 +5747,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 127
+ "__id__": 139
},
"_id": ""
},
@@ -5317,7 +5766,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 127
+ "__id__": 139
},
"_enabled": true,
"label": null,
@@ -5327,7 +5776,7 @@
{
"__type__": "cc.PrefabInfo",
"root": {
- "__id__": 127
+ "__id__": 139
},
"asset": {
"__uuid__": "a81d74d9-943b-4d0e-aad5-2999276d3447"
@@ -5344,17 +5793,17 @@
},
"_children": [
{
- "__id__": 144
+ "__id__": 156
}
],
"_active": true,
"_components": [
{
- "__id__": 147
+ "__id__": 159
}
],
"_prefab": {
- "__id__": 148
+ "__id__": 160
},
"_opacity": 255,
"_color": {
@@ -5408,17 +5857,17 @@
"_name": "txt2",
"_objFlags": 0,
"_parent": {
- "__id__": 143
+ "__id__": 155
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 145
+ "__id__": 157
}
],
"_prefab": {
- "__id__": 146
+ "__id__": 158
},
"_opacity": 255,
"_color": {
@@ -5472,7 +5921,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 144
+ "__id__": 156
},
"_enabled": true,
"_materials": [
@@ -5517,7 +5966,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 143
+ "__id__": 155
},
"_enabled": true,
"_materials": [
@@ -5564,15 +6013,19 @@
"_parent": {
"__id__": 18
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 162
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 150
+ "__id__": 171
}
],
"_prefab": {
- "__id__": 151
+ "__id__": 172
},
"_opacity": 255,
"_color": {
@@ -5621,12 +6074,346 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "s_bq",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 161
+ },
+ "_children": [
+ {
+ "__id__": 163
+ },
+ {
+ "__id__": 166
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 169
+ }
+ ],
+ "_prefab": {
+ "__id__": 170
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 206,
+ "height": 122
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -115.332,
+ 83.961,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "zhe",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 162
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 164
+ }
+ ],
+ "_prefab": {
+ "__id__": 165
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 45,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 58.252,
+ -16.479,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 149
+ "__id__": 163
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "00VqPSL2lKpKI94EexQU5+",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "discount_7",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 162
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 167
+ }
+ ],
+ "_prefab": {
+ "__id__": 168
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 40,
+ "height": 44
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -1.85,
+ 7.85,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 166
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "535a83dd-d70a-480e-9190-b8776cc97c65"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "bfcswQN0ZB8ZIE9G+jTz8z",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 162
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "3d3ea606-2949-41b9-a98f-86f6f3122b0c"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "9dHuw7Um5P/JUkXXouQ/wj",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 161
},
"_enabled": true,
"_materials": [
@@ -5671,15 +6458,19 @@
"_parent": {
"__id__": 18
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 174
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 153
+ "__id__": 186
}
],
"_prefab": {
- "__id__": 154
+ "__id__": 187
},
"_opacity": 255,
"_color": {
@@ -5728,12 +6519,458 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "s_bq",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 173
+ },
+ "_children": [
+ {
+ "__id__": 175
+ },
+ {
+ "__id__": 178
+ },
+ {
+ "__id__": 181
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 184
+ }
+ ],
+ "_prefab": {
+ "__id__": 185
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 206,
+ "height": 122
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -115.332,
+ 83.961,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "zhe",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 174
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 176
+ }
+ ],
+ "_prefab": {
+ "__id__": 177
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 45,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 58.252,
+ -16.479,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 152
+ "__id__": 175
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "3bbxGsNIlMLqXhXr9WFHwv",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "discount_7",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 174
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 179
+ }
+ ],
+ "_prefab": {
+ "__id__": 180
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 38,
+ "height": 44
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -18.381,
+ 11.059,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 178
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "6143b77a-3c94-42ca-9026-dca9db58f56b"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "89R5yfC+1KMYUkV1EetIw7",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "discount_7",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 174
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 182
+ }
+ ],
+ "_prefab": {
+ "__id__": 183
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 38,
+ "height": 44
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 15.54,
+ -3.262,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 181
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "6143b77a-3c94-42ca-9026-dca9db58f56b"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "11CaEHEPZNAb9YclpltqOj",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 174
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "3d3ea606-2949-41b9-a98f-86f6f3122b0c"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "87vVFE7edG1Jch2fn8dtGd",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 173
},
"_enabled": true,
"_materials": [
@@ -5778,15 +7015,19 @@
"_parent": {
"__id__": 18
},
- "_children": [],
+ "_children": [
+ {
+ "__id__": 189
+ }
+ ],
"_active": true,
"_components": [
{
- "__id__": 156
+ "__id__": 198
}
],
"_prefab": {
- "__id__": 157
+ "__id__": 199
},
"_opacity": 255,
"_color": {
@@ -5835,12 +7076,346 @@
"groupIndex": 0,
"_id": ""
},
+ {
+ "__type__": "cc.Node",
+ "_name": "s_bq",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 188
+ },
+ "_children": [
+ {
+ "__id__": 190
+ },
+ {
+ "__id__": 193
+ }
+ ],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 196
+ }
+ ],
+ "_prefab": {
+ "__id__": 197
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 206,
+ "height": 122
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -115.332,
+ 83.961,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "zhe",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 189
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 191
+ }
+ ],
+ "_prefab": {
+ "__id__": 192
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 45,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 58.252,
+ -16.479,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
{
"__type__": "cc.Sprite",
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 155
+ "__id__": 190
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "bd09a391-0f09-4dd6-a17e-29e44be01ed3"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "52PdGmNepLQba3V7uL1jcf",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "discount_7",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 189
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 194
+ }
+ ],
+ "_prefab": {
+ "__id__": 195
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 40,
+ "height": 44
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -0.923,
+ 9.751,
+ 0,
+ 0,
+ 0,
+ -0.224951054343865,
+ 0.9743700647852352,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": -26
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 193
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "7a51cfc8-dc08-482d-91e8-d851ed02b4d0"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "fa9a438e-1f24-47fe-bbcd-b75abcff2ea8"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "c1c3m23eNH0IhUwy6/emvS",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 189
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "3d3ea606-2949-41b9-a98f-86f6f3122b0c"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "88f4116d-72c2-46cc-9f06-d164a85a9275"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "89O//cZstL9oI7N8PfLByU",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 188
},
"_enabled": true,
"_materials": [
@@ -5887,85 +7462,85 @@
},
"_children": [
{
- "__id__": 159
+ "__id__": 201
},
{
- "__id__": 161
+ "__id__": 203
},
{
- "__id__": 164
+ "__id__": 206
},
{
- "__id__": 167
+ "__id__": 209
},
{
- "__id__": 170
+ "__id__": 212
},
{
- "__id__": 173
+ "__id__": 215
},
{
- "__id__": 190
+ "__id__": 232
},
{
- "__id__": 193
+ "__id__": 235
},
{
- "__id__": 196
+ "__id__": 238
},
{
- "__id__": 199
+ "__id__": 241
},
{
- "__id__": 202
+ "__id__": 244
},
{
- "__id__": 205
+ "__id__": 247
},
{
- "__id__": 208
+ "__id__": 250
},
{
- "__id__": 225
+ "__id__": 267
},
{
- "__id__": 228
+ "__id__": 270
},
{
- "__id__": 231
+ "__id__": 273
},
{
- "__id__": 234
+ "__id__": 276
},
{
- "__id__": 237
+ "__id__": 279
},
{
- "__id__": 240
+ "__id__": 282
},
{
- "__id__": 243
+ "__id__": 285
},
{
- "__id__": 246
+ "__id__": 288
},
{
- "__id__": 249
+ "__id__": 291
},
{
- "__id__": 252
+ "__id__": 294
},
{
- "__id__": 266
+ "__id__": 308
},
{
- "__id__": 280
+ "__id__": 322
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 297
+ "__id__": 339
},
"_opacity": 255,
"_color": {
@@ -6019,13 +7594,13 @@
"_name": "coin",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 160
+ "__id__": 202
},
"_opacity": 255,
"_color": {
@@ -6090,17 +7665,17 @@
"_name": "cost_5",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 162
+ "__id__": 204
}
],
"_prefab": {
- "__id__": 163
+ "__id__": 205
},
"_opacity": 255,
"_color": {
@@ -6154,7 +7729,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 161
+ "__id__": 203
},
"_enabled": true,
"_materials": [
@@ -6165,7 +7740,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
+ "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
},
"_type": 0,
"_sizeMode": 1,
@@ -6199,17 +7774,17 @@
"_name": "cost_0",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 165
+ "__id__": 207
}
],
"_prefab": {
- "__id__": 166
+ "__id__": 208
},
"_opacity": 255,
"_color": {
@@ -6263,7 +7838,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 164
+ "__id__": 206
},
"_enabled": true,
"_materials": [
@@ -6274,7 +7849,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
+ "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
},
"_type": 0,
"_sizeMode": 1,
@@ -6308,17 +7883,17 @@
"_name": "cost_0",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 168
+ "__id__": 210
}
],
"_prefab": {
- "__id__": 169
+ "__id__": 211
},
"_opacity": 255,
"_color": {
@@ -6372,7 +7947,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 167
+ "__id__": 209
},
"_enabled": true,
"_materials": [
@@ -6417,1587 +7992,7 @@
"_name": "cost_0",
"_objFlags": 0,
"_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 171
- }
- ],
- "_prefab": {
- "__id__": 172
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -144.34,
- -2182.017,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0.7,
- 0.7,
- 0.7
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 170
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "b9B+ndSYFGLbzmRnSsmRgX",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "coin",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [
- {
- "__id__": 174
- },
- {
- "__id__": 177
- },
- {
- "__id__": 180
- },
- {
- "__id__": 183
- },
- {
- "__id__": 186
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 189
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 300,
- "height": 200
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -159.613,
- -2652.498,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0.7,
- 0.7,
- 0.7
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 173
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 175
- }
- ],
- "_prefab": {
- "__id__": 176
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -116.487,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 174
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "c56C/bVv9NHLtsR2mmdJx6",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 173
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 178
- }
- ],
- "_prefab": {
- "__id__": 179
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -85.4,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 177
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "a0PFqgVXFNZLLOWLbPIcIr",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_0",
- "_objFlags": 0,
- "_parent": {
- "__id__": 173
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 181
- }
- ],
- "_prefab": {
- "__id__": 182
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -48.5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 180
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "d1AMagBzJNmJJqeG8Gelv0",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_0",
- "_objFlags": 0,
- "_parent": {
- "__id__": 173
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 184
- }
- ],
- "_prefab": {
- "__id__": 185
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -8.5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 183
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "22A4teavFE+Kl/QCWYDqt2",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_0",
- "_objFlags": 0,
- "_parent": {
- "__id__": 173
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 187
- }
- ],
- "_prefab": {
- "__id__": 188
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- 31.5,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 186
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "b0/jQCs+xGboAt0JF1vrmb",
- "sync": false
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "78xPPvcyBBU4GGwHlZb/v/",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "x",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 191
- }
- ],
- "_prefab": {
- "__id__": 192
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 22,
- "height": 22
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -63.825,
- -2654.028,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 190
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "bbhk1ejKZH8YbRjCSZNVRO",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 194
- }
- ],
- "_prefab": {
- "__id__": 195
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -34.863,
- -2655.607,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0.7,
- 0.7,
- 0.7
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 193
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "b0MaAw+nlIiYNxMcYleB6Q",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "x",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 197
- }
- ],
- "_prefab": {
- "__id__": 198
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 22,
- "height": 22
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- 53.33,
- -2654.028,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 196
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "f8XM1m3bVC6L6W4xC/3CFQ",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 200
- }
- ],
- "_prefab": {
- "__id__": 201
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- 82.292,
- -2655.607,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0.7,
- 0.7,
- 0.7
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 199
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "e5UKH6XwRAyb9m6JSHyHba",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "x",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 203
- }
- ],
- "_prefab": {
- "__id__": 204
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 22,
- "height": 22
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- 164.093,
- -2654.028,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 202
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "f5J7+o/15NEp+TsyMUM1lc",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 206
- }
- ],
- "_prefab": {
- "__id__": 207
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- 193.055,
- -2655.607,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0.7,
- 0.7,
- 0.7
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 205
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "27WCWtbz1PoLwXBSCFi9fT",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "coin",
- "_objFlags": 0,
- "_parent": {
- "__id__": 158
- },
- "_children": [
- {
- "__id__": 209
- },
- {
- "__id__": 212
- },
- {
- "__id__": 215
- },
- {
- "__id__": 218
- },
- {
- "__id__": 221
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 224
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 300,
- "height": 200
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -156.867,
- -3128.161,
- 0,
- 0,
- 0,
- 0,
- 1,
- 0.7,
- 0.7,
- 0.7
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_5",
- "_objFlags": 0,
- "_parent": {
- "__id__": 208
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 210
- }
- ],
- "_prefab": {
- "__id__": 211
- },
- "_opacity": 255,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_contentSize": {
- "__type__": "cc.Size",
- "width": 43,
- "height": 46
- },
- "_anchorPoint": {
- "__type__": "cc.Vec2",
- "x": 0.5,
- "y": 0.5
- },
- "_trs": {
- "__type__": "TypedArray",
- "ctor": "Float64Array",
- "array": [
- -126.431,
- 0,
- 0,
- 0,
- 0,
- 0,
- 1,
- 1,
- 1,
- 1
- ]
- },
- "_eulerAngles": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_skewX": 0,
- "_skewY": 0,
- "_is3DNode": false,
- "_groupIndex": 0,
- "groupIndex": 0,
- "_id": ""
- },
- {
- "__type__": "cc.Sprite",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 209
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
- }
- ],
- "_srcBlendFactor": 770,
- "_dstBlendFactor": 771,
- "_spriteFrame": {
- "__uuid__": "0474e049-57c0-451a-ba18-17d624cb4aef"
- },
- "_type": 0,
- "_sizeMode": 1,
- "_fillType": 0,
- "_fillCenter": {
- "__type__": "cc.Vec2",
- "x": 0,
- "y": 0
- },
- "_fillStart": 0,
- "_fillRange": 0,
- "_isTrimmedMode": true,
- "_atlas": {
- "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
- },
- "_id": ""
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 1
- },
- "asset": {
- "__id__": 0
- },
- "fileId": "84A97yHd5FQq1Vu1oF2po1",
- "sync": false
- },
- {
- "__type__": "cc.Node",
- "_name": "cost_0",
- "_objFlags": 0,
- "_parent": {
- "__id__": 208
+ "__id__": 200
},
"_children": [],
"_active": true,
@@ -8031,16 +8026,16 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -88.5,
- 6.496390726949488e-13,
+ -144.34,
+ -2182.017,
0,
0,
0,
0,
1,
- 1,
- 1,
- 1
+ 0.7,
+ 0.7,
+ 0.7
]
},
"_eulerAngles": {
@@ -8090,6 +8085,1586 @@
},
"_id": ""
},
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "b9B+ndSYFGLbzmRnSsmRgX",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "coin",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [
+ {
+ "__id__": 216
+ },
+ {
+ "__id__": 219
+ },
+ {
+ "__id__": 222
+ },
+ {
+ "__id__": 225
+ },
+ {
+ "__id__": 228
+ }
+ ],
+ "_active": true,
+ "_components": [],
+ "_prefab": {
+ "__id__": 231
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 300,
+ "height": 200
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -181.113,
+ -2652.498,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0.7,
+ 0.7,
+ 0.7
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_5",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 215
+ },
+ "_children": [],
+ "_active": false,
+ "_components": [
+ {
+ "__id__": 217
+ }
+ ],
+ "_prefab": {
+ "__id__": 218
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -116.487,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 216
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "3ae58373-6b26-4cad-9373-d00a87902b60"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "c56C/bVv9NHLtsR2mmdJx6",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_5",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 215
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 220
+ }
+ ],
+ "_prefab": {
+ "__id__": 221
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -85.4,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 219
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "a0PFqgVXFNZLLOWLbPIcIr",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_0",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 215
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 223
+ }
+ ],
+ "_prefab": {
+ "__id__": 224
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -48.5,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 222
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "d1AMagBzJNmJJqeG8Gelv0",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_0",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 215
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 226
+ }
+ ],
+ "_prefab": {
+ "__id__": 227
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -8.5,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 225
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "22A4teavFE+Kl/QCWYDqt2",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_0",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 215
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 229
+ }
+ ],
+ "_prefab": {
+ "__id__": 230
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 31.5,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 228
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "b0/jQCs+xGboAt0JF1vrmb",
+ "sync": false
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "78xPPvcyBBU4GGwHlZb/v/",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "x",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 233
+ }
+ ],
+ "_prefab": {
+ "__id__": 234
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 22,
+ "height": 22
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -63.825,
+ -2654.028,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 232
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "bbhk1ejKZH8YbRjCSZNVRO",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_5",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 236
+ }
+ ],
+ "_prefab": {
+ "__id__": 237
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -34.863,
+ -2655.607,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0.7,
+ 0.7,
+ 0.7
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 235
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "b0MaAw+nlIiYNxMcYleB6Q",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "x",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 239
+ }
+ ],
+ "_prefab": {
+ "__id__": 240
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 22,
+ "height": 22
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 53.33,
+ -2654.028,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 238
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "f8XM1m3bVC6L6W4xC/3CFQ",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_5",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 242
+ }
+ ],
+ "_prefab": {
+ "__id__": 243
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 82.292,
+ -2655.607,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0.7,
+ 0.7,
+ 0.7
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 241
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "e5UKH6XwRAyb9m6JSHyHba",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "x",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 245
+ }
+ ],
+ "_prefab": {
+ "__id__": 246
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 22,
+ "height": 22
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 164.093,
+ -2654.028,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 244
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "39d7fe7c-990b-45b0-8693-88548695278b"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "f5J7+o/15NEp+TsyMUM1lc",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_5",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 248
+ }
+ ],
+ "_prefab": {
+ "__id__": 249
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ 193.055,
+ -2655.607,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0.7,
+ 0.7,
+ 0.7
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 247
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "27WCWtbz1PoLwXBSCFi9fT",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "coin",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 200
+ },
+ "_children": [
+ {
+ "__id__": 251
+ },
+ {
+ "__id__": 254
+ },
+ {
+ "__id__": 257
+ },
+ {
+ "__id__": 260
+ },
+ {
+ "__id__": 263
+ }
+ ],
+ "_active": true,
+ "_components": [],
+ "_prefab": {
+ "__id__": 266
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 300,
+ "height": 200
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -178.367,
+ -3128.161,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 0.7,
+ 0.7,
+ 0.7
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_5",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 250
+ },
+ "_children": [],
+ "_active": false,
+ "_components": [
+ {
+ "__id__": 252
+ }
+ ],
+ "_prefab": {
+ "__id__": 253
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -126.431,
+ 0,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 251
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "0474e049-57c0-451a-ba18-17d624cb4aef"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
+ {
+ "__type__": "cc.PrefabInfo",
+ "root": {
+ "__id__": 1
+ },
+ "asset": {
+ "__id__": 0
+ },
+ "fileId": "84A97yHd5FQq1Vu1oF2po1",
+ "sync": false
+ },
+ {
+ "__type__": "cc.Node",
+ "_name": "cost_0",
+ "_objFlags": 0,
+ "_parent": {
+ "__id__": 250
+ },
+ "_children": [],
+ "_active": true,
+ "_components": [
+ {
+ "__id__": 255
+ }
+ ],
+ "_prefab": {
+ "__id__": 256
+ },
+ "_opacity": 255,
+ "_color": {
+ "__type__": "cc.Color",
+ "r": 255,
+ "g": 255,
+ "b": 255,
+ "a": 255
+ },
+ "_contentSize": {
+ "__type__": "cc.Size",
+ "width": 43,
+ "height": 46
+ },
+ "_anchorPoint": {
+ "__type__": "cc.Vec2",
+ "x": 0.5,
+ "y": 0.5
+ },
+ "_trs": {
+ "__type__": "TypedArray",
+ "ctor": "Float64Array",
+ "array": [
+ -88.5,
+ 6.496390726949488e-13,
+ 0,
+ 0,
+ 0,
+ 0,
+ 1,
+ 1,
+ 1,
+ 1
+ ]
+ },
+ "_eulerAngles": {
+ "__type__": "cc.Vec3",
+ "x": 0,
+ "y": 0,
+ "z": 0
+ },
+ "_skewX": 0,
+ "_skewY": 0,
+ "_is3DNode": false,
+ "_groupIndex": 0,
+ "groupIndex": 0,
+ "_id": ""
+ },
+ {
+ "__type__": "cc.Sprite",
+ "_name": "",
+ "_objFlags": 0,
+ "node": {
+ "__id__": 254
+ },
+ "_enabled": true,
+ "_materials": [
+ {
+ "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
+ }
+ ],
+ "_srcBlendFactor": 770,
+ "_dstBlendFactor": 771,
+ "_spriteFrame": {
+ "__uuid__": "478f346f-7aa8-4f88-bb46-877d0e27e9f6"
+ },
+ "_type": 0,
+ "_sizeMode": 1,
+ "_fillType": 0,
+ "_fillCenter": {
+ "__type__": "cc.Vec2",
+ "x": 0,
+ "y": 0
+ },
+ "_fillStart": 0,
+ "_fillRange": 0,
+ "_isTrimmedMode": true,
+ "_atlas": {
+ "__uuid__": "569f5a4d-beff-465f-be16-fc3bcf467850"
+ },
+ "_id": ""
+ },
{
"__type__": "cc.PrefabInfo",
"root": {
@@ -8106,17 +9681,17 @@
"_name": "cost_0",
"_objFlags": 0,
"_parent": {
- "__id__": 208
+ "__id__": 250
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 216
+ "__id__": 258
}
],
"_prefab": {
- "__id__": 217
+ "__id__": 259
},
"_opacity": 255,
"_color": {
@@ -8170,7 +9745,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 215
+ "__id__": 257
},
"_enabled": true,
"_materials": [
@@ -8181,7 +9756,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
+ "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
},
"_type": 0,
"_sizeMode": 1,
@@ -8215,17 +9790,17 @@
"_name": "cost_0",
"_objFlags": 0,
"_parent": {
- "__id__": 208
+ "__id__": 250
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 219
+ "__id__": 261
}
],
"_prefab": {
- "__id__": 220
+ "__id__": 262
},
"_opacity": 255,
"_color": {
@@ -8279,7 +9854,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 218
+ "__id__": 260
},
"_enabled": true,
"_materials": [
@@ -8324,17 +9899,17 @@
"_name": "cost_0",
"_objFlags": 0,
"_parent": {
- "__id__": 208
+ "__id__": 250
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 222
+ "__id__": 264
}
],
"_prefab": {
- "__id__": 223
+ "__id__": 265
},
"_opacity": 255,
"_color": {
@@ -8388,7 +9963,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 221
+ "__id__": 263
},
"_enabled": true,
"_materials": [
@@ -8444,17 +10019,17 @@
"_name": "x",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 226
+ "__id__": 268
}
],
"_prefab": {
- "__id__": 227
+ "__id__": 269
},
"_opacity": 255,
"_color": {
@@ -8508,7 +10083,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 225
+ "__id__": 267
},
"_enabled": true,
"_materials": [
@@ -8553,17 +10128,17 @@
"_name": "cost_5",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 229
+ "__id__": 271
}
],
"_prefab": {
- "__id__": 230
+ "__id__": 272
},
"_opacity": 255,
"_color": {
@@ -8617,7 +10192,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 228
+ "__id__": 270
},
"_enabled": true,
"_materials": [
@@ -8628,7 +10203,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6"
+ "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
},
"_type": 0,
"_sizeMode": 1,
@@ -8662,17 +10237,17 @@
"_name": "x",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 232
+ "__id__": 274
}
],
"_prefab": {
- "__id__": 233
+ "__id__": 275
},
"_opacity": 255,
"_color": {
@@ -8726,7 +10301,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 231
+ "__id__": 273
},
"_enabled": true,
"_materials": [
@@ -8771,17 +10346,17 @@
"_name": "cost_5",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 235
+ "__id__": 277
}
],
"_prefab": {
- "__id__": 236
+ "__id__": 278
},
"_opacity": 255,
"_color": {
@@ -8835,7 +10410,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 234
+ "__id__": 276
},
"_enabled": true,
"_materials": [
@@ -8846,7 +10421,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6"
+ "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
},
"_type": 0,
"_sizeMode": 1,
@@ -8880,17 +10455,17 @@
"_name": "x",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 238
+ "__id__": 280
}
],
"_prefab": {
- "__id__": 239
+ "__id__": 281
},
"_opacity": 255,
"_color": {
@@ -8944,7 +10519,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 237
+ "__id__": 279
},
"_enabled": true,
"_materials": [
@@ -8989,17 +10564,17 @@
"_name": "cost_5",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 241
+ "__id__": 283
}
],
"_prefab": {
- "__id__": 242
+ "__id__": 284
},
"_opacity": 255,
"_color": {
@@ -9053,7 +10628,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 240
+ "__id__": 282
},
"_enabled": true,
"_materials": [
@@ -9064,7 +10639,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6"
+ "__uuid__": "c27b90ef-5231-40ff-9c47-380561e1cc77"
},
"_type": 0,
"_sizeMode": 1,
@@ -9098,17 +10673,17 @@
"_name": "30min",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 244
+ "__id__": 286
}
],
"_prefab": {
- "__id__": 245
+ "__id__": 287
},
"_opacity": 255,
"_color": {
@@ -9120,7 +10695,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 162,
+ "width": 135,
"height": 38
},
"_anchorPoint": {
@@ -9162,7 +10737,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 243
+ "__id__": 285
},
"_enabled": true,
"_materials": [
@@ -9173,7 +10748,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "bb238782-ccf7-4b3f-89e7-7ec99a5e39b2"
+ "__uuid__": "af15d004-82c1-403a-99f8-a2e703a2781d"
},
"_type": 0,
"_sizeMode": 1,
@@ -9207,17 +10782,17 @@
"_name": "30min",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 247
+ "__id__": 289
}
],
"_prefab": {
- "__id__": 248
+ "__id__": 290
},
"_opacity": 255,
"_color": {
@@ -9271,7 +10846,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 246
+ "__id__": 288
},
"_enabled": true,
"_materials": [
@@ -9282,7 +10857,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "af15d004-82c1-403a-99f8-a2e703a2781d"
+ "__uuid__": "636ed2f1-50bf-4d66-a5b1-9dd7509fc277"
},
"_type": 0,
"_sizeMode": 1,
@@ -9316,17 +10891,17 @@
"_name": "30min",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 250
+ "__id__": 292
}
],
"_prefab": {
- "__id__": 251
+ "__id__": 293
},
"_opacity": 255,
"_color": {
@@ -9338,7 +10913,7 @@
},
"_contentSize": {
"__type__": "cc.Size",
- "width": 135,
+ "width": 133,
"height": 38
},
"_anchorPoint": {
@@ -9380,7 +10955,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 249
+ "__id__": 291
},
"_enabled": true,
"_materials": [
@@ -9391,7 +10966,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "636ed2f1-50bf-4d66-a5b1-9dd7509fc277"
+ "__uuid__": "75fc2652-6239-434e-b00b-bd2406dcf50a"
},
"_type": 0,
"_sizeMode": 1,
@@ -9425,30 +11000,30 @@
"_name": "buy",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [
{
- "__id__": 253
+ "__id__": 295
},
{
- "__id__": 256
+ "__id__": 298
},
{
- "__id__": 259
+ "__id__": 301
}
],
"_active": true,
"_components": [
{
- "__id__": 262
+ "__id__": 304
},
{
- "__id__": 263
+ "__id__": 305
}
],
"_prefab": {
- "__id__": 265
+ "__id__": 307
},
"_opacity": 255,
"_color": {
@@ -9502,17 +11077,17 @@
"_name": "cost_1",
"_objFlags": 0,
"_parent": {
- "__id__": 252
+ "__id__": 294
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 254
+ "__id__": 296
}
],
"_prefab": {
- "__id__": 255
+ "__id__": 297
},
"_opacity": 255,
"_color": {
@@ -9566,7 +11141,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 253
+ "__id__": 295
},
"_enabled": true,
"_materials": [
@@ -9611,17 +11186,17 @@
"_name": "cost_6",
"_objFlags": 0,
"_parent": {
- "__id__": 252
+ "__id__": 294
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 257
+ "__id__": 299
}
],
"_prefab": {
- "__id__": 258
+ "__id__": 300
},
"_opacity": 255,
"_color": {
@@ -9675,7 +11250,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 256
+ "__id__": 298
},
"_enabled": true,
"_materials": [
@@ -9686,7 +11261,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "3ad60e42-8744-4068-b7dd-24ef792c21fe"
+ "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
},
"_type": 0,
"_sizeMode": 1,
@@ -9720,17 +11295,17 @@
"_name": "cost_10",
"_objFlags": 0,
"_parent": {
- "__id__": 252
+ "__id__": 294
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 260
+ "__id__": 302
}
],
"_prefab": {
- "__id__": 261
+ "__id__": 303
},
"_opacity": 255,
"_color": {
@@ -9784,7 +11359,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 259
+ "__id__": 301
},
"_enabled": true,
"_materials": [
@@ -9829,7 +11404,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 252
+ "__id__": 294
},
"_enabled": true,
"_materials": [
@@ -9863,7 +11438,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 252
+ "__id__": 294
},
"_enabled": true,
"_normalMaterial": null,
@@ -9872,7 +11447,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 264
+ "__id__": 306
}
],
"_N$interactable": true,
@@ -9928,7 +11503,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 252
+ "__id__": 294
},
"_id": ""
},
@@ -9940,7 +11515,7 @@
"component": "",
"_componentId": "48bfeZuYFZE2qmgxbW2IigB",
"handler": "buyProduct",
- "customEventData": "unlimited_health_bundle_1"
+ "customEventData": "unlimited_health_bundle_10"
},
{
"__type__": "cc.PrefabInfo",
@@ -9958,30 +11533,30 @@
"_name": "buy",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [
{
- "__id__": 267
+ "__id__": 309
},
{
- "__id__": 270
+ "__id__": 312
},
{
- "__id__": 273
+ "__id__": 315
}
],
"_active": true,
"_components": [
{
- "__id__": 276
+ "__id__": 318
},
{
- "__id__": 277
+ "__id__": 319
}
],
"_prefab": {
- "__id__": 279
+ "__id__": 321
},
"_opacity": 255,
"_color": {
@@ -10035,17 +11610,17 @@
"_name": "cost_6",
"_objFlags": 0,
"_parent": {
- "__id__": 266
+ "__id__": 308
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 268
+ "__id__": 310
}
],
"_prefab": {
- "__id__": 269
+ "__id__": 311
},
"_opacity": 255,
"_color": {
@@ -10099,7 +11674,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 267
+ "__id__": 309
},
"_enabled": true,
"_materials": [
@@ -10110,7 +11685,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6"
+ "__uuid__": "1ced933d-f1a4-404f-893e-46a0e0a8b47f"
},
"_type": 0,
"_sizeMode": 1,
@@ -10144,17 +11719,17 @@
"_name": "cost_6",
"_objFlags": 0,
"_parent": {
- "__id__": 266
+ "__id__": 308
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 271
+ "__id__": 313
}
],
"_prefab": {
- "__id__": 272
+ "__id__": 314
},
"_opacity": 255,
"_color": {
@@ -10208,7 +11783,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 270
+ "__id__": 312
},
"_enabled": true,
"_materials": [
@@ -10219,7 +11794,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "30b3ef49-bd7e-47a6-84b2-da05678348a6"
+ "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
},
"_type": 0,
"_sizeMode": 1,
@@ -10253,17 +11828,17 @@
"_name": "cost_10",
"_objFlags": 0,
"_parent": {
- "__id__": 266
+ "__id__": 308
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 274
+ "__id__": 316
}
],
"_prefab": {
- "__id__": 275
+ "__id__": 317
},
"_opacity": 255,
"_color": {
@@ -10317,7 +11892,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 273
+ "__id__": 315
},
"_enabled": true,
"_materials": [
@@ -10362,7 +11937,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 266
+ "__id__": 308
},
"_enabled": true,
"_materials": [
@@ -10396,7 +11971,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 266
+ "__id__": 308
},
"_enabled": true,
"_normalMaterial": null,
@@ -10405,7 +11980,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 278
+ "__id__": 320
}
],
"_N$interactable": true,
@@ -10461,7 +12036,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 266
+ "__id__": 308
},
"_id": ""
},
@@ -10473,7 +12048,7 @@
"component": "",
"_componentId": "48bfeZuYFZE2qmgxbW2IigB",
"handler": "buyProduct",
- "customEventData": "unlimited_health_bundle_2"
+ "customEventData": "unlimited_health_bundle_20"
},
{
"__type__": "cc.PrefabInfo",
@@ -10491,33 +12066,33 @@
"_name": "buy",
"_objFlags": 0,
"_parent": {
- "__id__": 158
+ "__id__": 200
},
"_children": [
{
- "__id__": 281
+ "__id__": 323
},
{
- "__id__": 284
+ "__id__": 326
},
{
- "__id__": 287
+ "__id__": 329
},
{
- "__id__": 290
+ "__id__": 332
}
],
"_active": true,
"_components": [
{
- "__id__": 293
+ "__id__": 335
},
{
- "__id__": 294
+ "__id__": 336
}
],
"_prefab": {
- "__id__": 296
+ "__id__": 338
},
"_opacity": 255,
"_color": {
@@ -10571,17 +12146,17 @@
"_name": "cost_6",
"_objFlags": 0,
"_parent": {
- "__id__": 280
+ "__id__": 322
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 282
+ "__id__": 324
}
],
"_prefab": {
- "__id__": 283
+ "__id__": 325
},
"_opacity": 255,
"_color": {
@@ -10605,7 +12180,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -117.841,
+ -132.505,
5,
0,
0,
@@ -10635,7 +12210,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 281
+ "__id__": 323
},
"_enabled": true,
"_materials": [
@@ -10646,7 +12221,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
+ "__uuid__": "0474e049-57c0-451a-ba18-17d624cb4aef"
},
"_type": 0,
"_sizeMode": 1,
@@ -10680,17 +12255,17 @@
"_name": "cost_10",
"_objFlags": 0,
"_parent": {
- "__id__": 280
+ "__id__": 322
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 285
+ "__id__": 327
}
],
"_prefab": {
- "__id__": 286
+ "__id__": 328
},
"_opacity": 255,
"_color": {
@@ -10714,7 +12289,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -45.045,
+ -59.709,
5,
0,
0,
@@ -10744,7 +12319,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 284
+ "__id__": 326
},
"_enabled": true,
"_materials": [
@@ -10789,17 +12364,17 @@
"_name": "cost_1",
"_objFlags": 0,
"_parent": {
- "__id__": 280
+ "__id__": 322
},
"_children": [],
- "_active": true,
+ "_active": false,
"_components": [
{
- "__id__": 288
+ "__id__": 330
}
],
"_prefab": {
- "__id__": 289
+ "__id__": 331
},
"_opacity": 255,
"_color": {
@@ -10853,7 +12428,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 287
+ "__id__": 329
},
"_enabled": true,
"_materials": [
@@ -10898,17 +12473,17 @@
"_name": "cost_6",
"_objFlags": 0,
"_parent": {
- "__id__": 280
+ "__id__": 322
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 291
+ "__id__": 333
}
],
"_prefab": {
- "__id__": 292
+ "__id__": 334
},
"_opacity": 255,
"_color": {
@@ -10932,7 +12507,7 @@
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
- -83.109,
+ -97.773,
5.414,
0,
0,
@@ -10962,7 +12537,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 290
+ "__id__": 332
},
"_enabled": true,
"_materials": [
@@ -10973,7 +12548,7 @@
"_srcBlendFactor": 770,
"_dstBlendFactor": 771,
"_spriteFrame": {
- "__uuid__": "3ad60e42-8744-4068-b7dd-24ef792c21fe"
+ "__uuid__": "eda6def7-3f41-4e71-b328-27b858a8f167"
},
"_type": 0,
"_sizeMode": 1,
@@ -11007,7 +12582,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 280
+ "__id__": 322
},
"_enabled": true,
"_materials": [
@@ -11041,7 +12616,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 280
+ "__id__": 322
},
"_enabled": true,
"_normalMaterial": null,
@@ -11050,7 +12625,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 295
+ "__id__": 337
}
],
"_N$interactable": true,
@@ -11106,7 +12681,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 280
+ "__id__": 322
},
"_id": ""
},
@@ -11118,7 +12693,7 @@
"component": "",
"_componentId": "48bfeZuYFZE2qmgxbW2IigB",
"handler": "buyProduct",
- "customEventData": "unlimited_health_bundle_3"
+ "customEventData": "unlimited_health_bundle_30"
},
{
"__type__": "cc.PrefabInfo",
@@ -11272,32 +12847,32 @@
},
"_children": [
{
- "__id__": 305
+ "__id__": 347
},
{
- "__id__": 309
+ "__id__": 351
},
{
- "__id__": 313
+ "__id__": 355
},
{
- "__id__": 319
+ "__id__": 361
},
{
- "__id__": 356
+ "__id__": 398
},
{
- "__id__": 369
+ "__id__": 411
}
],
"_active": true,
"_components": [
{
- "__id__": 375
+ "__id__": 417
}
],
"_prefab": {
- "__id__": 376
+ "__id__": 418
},
"_opacity": 255,
"_color": {
@@ -11351,20 +12926,20 @@
"_name": "shop_1",
"_objFlags": 0,
"_parent": {
- "__id__": 304
+ "__id__": 346
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 306
+ "__id__": 348
},
{
- "__id__": 307
+ "__id__": 349
}
],
"_prefab": {
- "__id__": 308
+ "__id__": 350
},
"_opacity": 255,
"_color": {
@@ -11418,7 +12993,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 305
+ "__id__": 347
},
"_enabled": true,
"_materials": [
@@ -11450,7 +13025,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 305
+ "__id__": 347
},
"_enabled": true,
"alignMode": 1,
@@ -11490,20 +13065,20 @@
"_name": "shop_1",
"_objFlags": 0,
"_parent": {
- "__id__": 304
+ "__id__": 346
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 310
+ "__id__": 352
},
{
- "__id__": 311
+ "__id__": 353
}
],
"_prefab": {
- "__id__": 312
+ "__id__": 354
},
"_opacity": 255,
"_color": {
@@ -11557,7 +13132,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 309
+ "__id__": 351
},
"_enabled": true,
"_materials": [
@@ -11589,7 +13164,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 309
+ "__id__": 351
},
"_enabled": true,
"alignMode": 1,
@@ -11629,21 +13204,21 @@
"_name": "tx",
"_objFlags": 0,
"_parent": {
- "__id__": 304
+ "__id__": 346
},
"_children": [
{
- "__id__": 314
+ "__id__": 356
}
],
"_active": true,
"_components": [
{
- "__id__": 317
+ "__id__": 359
}
],
"_prefab": {
- "__id__": 318
+ "__id__": 360
},
"_opacity": 255,
"_color": {
@@ -11697,17 +13272,17 @@
"_name": "icon",
"_objFlags": 0,
"_parent": {
- "__id__": 313
+ "__id__": 355
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 315
+ "__id__": 357
}
],
"_prefab": {
- "__id__": 316
+ "__id__": 358
},
"_opacity": 255,
"_color": {
@@ -11761,7 +13336,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 314
+ "__id__": 356
},
"_enabled": true,
"_materials": [
@@ -11804,7 +13379,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 313
+ "__id__": 355
},
"_enabled": true,
"_materials": [
@@ -11849,39 +13424,39 @@
"_name": "Stamina",
"_objFlags": 0,
"_parent": {
- "__id__": 304
+ "__id__": 346
},
"_children": [
{
- "__id__": 320
+ "__id__": 362
},
{
- "__id__": 323
+ "__id__": 365
},
{
- "__id__": 326
+ "__id__": 368
},
{
- "__id__": 329
+ "__id__": 371
},
{
- "__id__": 332
+ "__id__": 374
},
{
- "__id__": 334
+ "__id__": 376
},
{
- "__id__": 337
+ "__id__": 379
}
],
"_active": true,
"_components": [
{
- "__id__": 353
+ "__id__": 395
}
],
"_prefab": {
- "__id__": 355
+ "__id__": 397
},
"_opacity": 255,
"_color": {
@@ -11935,17 +13510,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 321
+ "__id__": 363
}
],
"_prefab": {
- "__id__": 322
+ "__id__": 364
},
"_opacity": 255,
"_color": {
@@ -11999,7 +13574,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 320
+ "__id__": 362
},
"_enabled": true,
"_materials": [
@@ -12044,17 +13619,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 324
+ "__id__": 366
}
],
"_prefab": {
- "__id__": 325
+ "__id__": 367
},
"_opacity": 255,
"_color": {
@@ -12108,7 +13683,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 323
+ "__id__": 365
},
"_enabled": true,
"_materials": [
@@ -12153,17 +13728,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 327
+ "__id__": 369
}
],
"_prefab": {
- "__id__": 328
+ "__id__": 370
},
"_opacity": 255,
"_color": {
@@ -12217,7 +13792,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 326
+ "__id__": 368
},
"_enabled": true,
"_materials": [
@@ -12262,17 +13837,17 @@
"_name": "man",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 330
+ "__id__": 372
}
],
"_prefab": {
- "__id__": 331
+ "__id__": 373
},
"_opacity": 255,
"_color": {
@@ -12326,7 +13901,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 329
+ "__id__": 371
},
"_enabled": true,
"_materials": [
@@ -12371,13 +13946,13 @@
"_name": "health",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 333
+ "__id__": 375
},
"_opacity": 255,
"_color": {
@@ -12442,17 +14017,17 @@
"_name": "time",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 335
+ "__id__": 377
}
],
"_prefab": {
- "__id__": 336
+ "__id__": 378
},
"_opacity": 255,
"_color": {
@@ -12506,7 +14081,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 334
+ "__id__": 376
},
"_enabled": true,
"_materials": [
@@ -12550,23 +14125,23 @@
"_name": "skyLine",
"_objFlags": 0,
"_parent": {
- "__id__": 319
+ "__id__": 361
},
"_children": [
{
- "__id__": 338
+ "__id__": 380
},
{
- "__id__": 341
+ "__id__": 383
},
{
- "__id__": 344
+ "__id__": 386
}
],
"_active": false,
"_components": [],
"_prefab": {
- "__id__": 352
+ "__id__": 394
},
"_opacity": 255,
"_color": {
@@ -12620,17 +14195,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 337
+ "__id__": 379
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 339
+ "__id__": 381
}
],
"_prefab": {
- "__id__": 340
+ "__id__": 382
},
"_opacity": 255,
"_color": {
@@ -12684,7 +14259,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 338
+ "__id__": 380
},
"_enabled": true,
"_materials": [
@@ -12727,17 +14302,17 @@
"_name": "skyTime",
"_objFlags": 0,
"_parent": {
- "__id__": 337
+ "__id__": 379
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 342
+ "__id__": 384
}
],
"_prefab": {
- "__id__": 343
+ "__id__": 385
},
"_opacity": 255,
"_color": {
@@ -12791,7 +14366,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 341
+ "__id__": 383
},
"_enabled": true,
"_materials": [
@@ -12835,20 +14410,20 @@
"_name": "up",
"_objFlags": 0,
"_parent": {
- "__id__": 337
+ "__id__": 379
},
"_children": [
{
- "__id__": 345
+ "__id__": 387
},
{
- "__id__": 348
+ "__id__": 390
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 351
+ "__id__": 393
},
"_opacity": 255,
"_color": {
@@ -12902,17 +14477,17 @@
"_name": "tili",
"_objFlags": 0,
"_parent": {
- "__id__": 344
+ "__id__": 386
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 346
+ "__id__": 388
}
],
"_prefab": {
- "__id__": 347
+ "__id__": 389
},
"_opacity": 255,
"_color": {
@@ -12966,7 +14541,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 345
+ "__id__": 387
},
"_enabled": true,
"_materials": [
@@ -13019,17 +14594,17 @@
"_name": "light",
"_objFlags": 0,
"_parent": {
- "__id__": 344
+ "__id__": 386
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 349
+ "__id__": 391
}
],
"_prefab": {
- "__id__": 350
+ "__id__": 392
},
"_opacity": 255,
"_color": {
@@ -13083,7 +14658,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 348
+ "__id__": 390
},
"_enabled": true,
"_materials": [
@@ -13158,7 +14733,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 319
+ "__id__": 361
},
"_enabled": false,
"_normalMaterial": null,
@@ -13167,7 +14742,7 @@
"zoomScale": 1.1,
"clickEvents": [
{
- "__id__": 354
+ "__id__": 396
}
],
"_N$interactable": true,
@@ -13249,26 +14824,26 @@
"_name": "Coin",
"_objFlags": 0,
"_parent": {
- "__id__": 304
+ "__id__": 346
},
"_children": [
{
- "__id__": 357
+ "__id__": 399
},
{
- "__id__": 360
+ "__id__": 402
},
{
- "__id__": 363
+ "__id__": 405
},
{
- "__id__": 366
+ "__id__": 408
}
],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 368
+ "__id__": 410
},
"_opacity": 255,
"_color": {
@@ -13322,17 +14897,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 356
+ "__id__": 398
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 358
+ "__id__": 400
}
],
"_prefab": {
- "__id__": 359
+ "__id__": 401
},
"_opacity": 255,
"_color": {
@@ -13386,7 +14961,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 357
+ "__id__": 399
},
"_enabled": true,
"_materials": [
@@ -13431,17 +15006,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 356
+ "__id__": 398
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 361
+ "__id__": 403
}
],
"_prefab": {
- "__id__": 362
+ "__id__": 404
},
"_opacity": 255,
"_color": {
@@ -13495,7 +15070,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 360
+ "__id__": 402
},
"_enabled": true,
"_materials": [
@@ -13540,17 +15115,17 @@
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
- "__id__": 356
+ "__id__": 398
},
"_children": [],
"_active": false,
"_components": [
{
- "__id__": 364
+ "__id__": 406
}
],
"_prefab": {
- "__id__": 365
+ "__id__": 407
},
"_opacity": 255,
"_color": {
@@ -13604,7 +15179,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 363
+ "__id__": 405
},
"_enabled": true,
"_materials": [
@@ -13649,13 +15224,13 @@
"_name": "Coin",
"_objFlags": 0,
"_parent": {
- "__id__": 356
+ "__id__": 398
},
"_children": [],
"_active": true,
"_components": [],
"_prefab": {
- "__id__": 367
+ "__id__": 409
},
"_opacity": 255,
"_color": {
@@ -13731,23 +15306,23 @@
"_name": "btn1",
"_objFlags": 0,
"_parent": {
- "__id__": 304
+ "__id__": 346
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 370
+ "__id__": 412
},
{
- "__id__": 371
+ "__id__": 413
},
{
- "__id__": 372
+ "__id__": 414
}
],
"_prefab": {
- "__id__": 374
+ "__id__": 416
},
"_opacity": 255,
"_color": {
@@ -13801,7 +15376,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 369
+ "__id__": 411
},
"_enabled": true,
"_materials": [
@@ -13835,7 +15410,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 369
+ "__id__": 411
},
"_enabled": true,
"alignMode": 1,
@@ -13864,7 +15439,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 369
+ "__id__": 411
},
"_enabled": true,
"_normalMaterial": null,
@@ -13873,7 +15448,7 @@
"zoomScale": 1.2,
"clickEvents": [
{
- "__id__": 373
+ "__id__": 415
}
],
"_N$interactable": true,
@@ -13929,7 +15504,7 @@
"hoverSprite": null,
"_N$disabledSprite": null,
"_N$target": {
- "__id__": 369
+ "__id__": 411
},
"_id": ""
},
@@ -13959,7 +15534,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 304
+ "__id__": 346
},
"_enabled": true,
"alignMode": 1,
@@ -14005,11 +15580,11 @@
"_active": false,
"_components": [
{
- "__id__": 378
+ "__id__": 420
}
],
"_prefab": {
- "__id__": 379
+ "__id__": 421
},
"_opacity": 255,
"_color": {
@@ -14063,7 +15638,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 377
+ "__id__": 419
},
"_enabled": true,
"_materials": [
@@ -14120,17 +15695,17 @@
},
"_children": [
{
- "__id__": 381
+ "__id__": 423
}
],
"_active": false,
"_components": [
{
- "__id__": 385
+ "__id__": 427
}
],
"_prefab": {
- "__id__": 387
+ "__id__": 429
},
"_opacity": 255,
"_color": {
@@ -14184,20 +15759,20 @@
"_name": "Background",
"_objFlags": 512,
"_parent": {
- "__id__": 380
+ "__id__": 422
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 382
+ "__id__": 424
},
{
- "__id__": 383
+ "__id__": 425
}
],
"_prefab": {
- "__id__": 384
+ "__id__": 426
},
"_opacity": 255,
"_color": {
@@ -14251,7 +15826,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 381
+ "__id__": 423
},
"_enabled": true,
"_materials": [
@@ -14285,7 +15860,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 381
+ "__id__": 423
},
"_enabled": true,
"alignMode": 0,
@@ -14323,7 +15898,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 380
+ "__id__": 422
},
"_enabled": true,
"_normalMaterial": null,
@@ -14332,7 +15907,7 @@
"zoomScale": 1.2,
"clickEvents": [
{
- "__id__": 386
+ "__id__": 428
}
],
"_N$interactable": true,
@@ -14400,7 +15975,7 @@
"__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
},
"_N$target": {
- "__id__": 381
+ "__id__": 423
},
"_id": ""
},
@@ -14434,23 +16009,23 @@
},
"_children": [
{
- "__id__": 389
+ "__id__": 431
},
{
- "__id__": 393
+ "__id__": 435
},
{
- "__id__": 396
+ "__id__": 438
}
],
"_active": false,
"_components": [
{
- "__id__": 399
+ "__id__": 441
}
],
"_prefab": {
- "__id__": 400
+ "__id__": 442
},
"_opacity": 255,
"_color": {
@@ -14504,20 +16079,20 @@
"_name": "New Sprite(Splash)",
"_objFlags": 0,
"_parent": {
- "__id__": 388
+ "__id__": 430
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 390
+ "__id__": 432
},
{
- "__id__": 391
+ "__id__": 433
}
],
"_prefab": {
- "__id__": 392
+ "__id__": 434
},
"_opacity": 120,
"_color": {
@@ -14571,7 +16146,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 389
+ "__id__": 431
},
"_enabled": true,
"_materials": [
@@ -14603,7 +16178,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 389
+ "__id__": 431
},
"_enabled": true,
"_id": ""
@@ -14624,17 +16199,17 @@
"_name": "load",
"_objFlags": 0,
"_parent": {
- "__id__": 388
+ "__id__": 430
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 394
+ "__id__": 436
}
],
"_prefab": {
- "__id__": 395
+ "__id__": 437
},
"_opacity": 255,
"_color": {
@@ -14688,7 +16263,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 393
+ "__id__": 435
},
"_enabled": true,
"_materials": [
@@ -14731,17 +16306,17 @@
"_name": "New Label",
"_objFlags": 0,
"_parent": {
- "__id__": 388
+ "__id__": 430
},
"_children": [],
"_active": true,
"_components": [
{
- "__id__": 397
+ "__id__": 439
}
],
"_prefab": {
- "__id__": 398
+ "__id__": 440
},
"_opacity": 255,
"_color": {
@@ -14795,7 +16370,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 396
+ "__id__": 438
},
"_enabled": true,
"_materials": [
@@ -14839,7 +16414,7 @@
"_name": "",
"_objFlags": 0,
"node": {
- "__id__": 388
+ "__id__": 430
},
"_enabled": true,
"alignMode": 1,
@@ -14887,16 +16462,16 @@
"__id__": 18
},
"coin": {
- "__id__": 366
+ "__id__": 408
},
"Stamina": {
- "__id__": 319
+ "__id__": 361
},
"monthCardTime": {
"__id__": 28
},
"coinAnim": {
- "__id__": 377
+ "__id__": 419
},
"_id": ""
},
diff --git a/assets/shop/script/shop.ts b/assets/shop/script/shop.ts
index e94d1c6..b8c5b8a 100644
--- a/assets/shop/script/shop.ts
+++ b/assets/shop/script/shop.ts
@@ -1,4 +1,5 @@
import JiaZai from "../../Script/JiaZai";
+import MapConroler from "../../Script/Map";
import Utils from "../../Script/module/Pay/Utils";
import List from "../../Script/module/RankList/List";
import NumberToImage from "../../Script/NumberToImage";
@@ -9,712 +10,714 @@ const { ccclass, property } = cc._decorator;
@ccclass
export default class NewClass extends cc.Component {
- //商店界面
- @property(cc.Node)
- shop: cc.Node = null;
- //商品列表
- @property(cc.Node)
- itemList: cc.Node = null;
+ //商店界面
+ @property(cc.Node)
+ shop: cc.Node = null;
+ //商品列表
+ @property(cc.Node)
+ itemList: cc.Node = null;
- //金币数量
- @property(cc.Node)
- coin: cc.Node = null;
- //体力信息
- @property(cc.Node)
- Stamina: cc.Node = null;
- //月卡信息
- @property(cc.Node)
- monthCardTime: cc.Node = null;
- btn_Touch: boolean = true;
- private onShowListener: () => void;
- private scheduleCallback: Function = null;
- private currentCoin: number = 0;
- private coinAnimTime: number = 0;
- private coinAnimDuration: number = 1.5; // 1.5秒
- private coinStart: number = 0;
- private coinEnd: number = 0;
- private coinAnimating: boolean = false;
- //飞金币动画
- @property(cc.Node)
- coinAnim: cc.Node = null;
- private buy: boolean = false;
+ //金币数量
+ @property(cc.Node)
+ coin: cc.Node = null;
+ //体力信息
+ @property(cc.Node)
+ Stamina: cc.Node = null;
+ //月卡信息
+ @property(cc.Node)
+ monthCardTime: cc.Node = null;
+ btn_Touch: boolean = true;
+ private onShowListener: () => void;
+ private scheduleCallback: Function = null;
+ private currentCoin: number = 0;
+ private coinAnimTime: number = 0;
+ private coinAnimDuration: number = 1.5; // 1.5秒
+ private coinStart: number = 0;
+ private coinEnd: number = 0;
+ private coinAnimating: boolean = false;
+ //飞金币动画
+ @property(cc.Node)
+ coinAnim: cc.Node = null;
+ private buy: boolean = false;
- private iosPrice: number = 0;
- private iosProductId: string = "";
- private iosCount: number = 1;
- scheduleCallback3: any;
- scheduleCallback2: Function;
- reward: boolean = false;
- private monthCard: boolean = false;
+ private iosPrice: number = 0;
+ private iosProductId: string = "";
+ private iosCount: number = 1;
+ scheduleCallback3: any;
+ scheduleCallback2: Function;
+ reward: boolean = false;
+ private monthCard: boolean = false;
- onLoad() {
- this.btn_Touch = true;
- this.monthCard = false;
- // 检测微信小游戏切到后台
+ onLoad() {
+ this.btn_Touch = true;
+ this.monthCard = false;
+ // 检测微信小游戏切到后台
- }
- start() {
- this.btn_Touch = true;
- this.openShop();
- this.init();
- }
+ }
+ start() {
+ this.btn_Touch = true;
+ this.openShop();
+ this.init();
+ }
- init() {
- this.onShowListener = null;
- if (cc.sys.platform === cc.sys.WECHAT_GAME) {
- // 定义监听函数
- this.onShowListener = () => {
- console.log("回到前台");
- this.onShow();
- };
- //@ts-ignore
- wx.onShow(this.onShowListener);
- }
- this.btn_Touch = true;
- var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
- // 同步显示
- // if (this.Stamina && this.Stamina.getChildByName("time")) {
- // this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
- // }
- this.stopTimeCutDown();
- this.stopPowerTime();
- this.updatePower();
- this.setHealthInfo(true);
- this.updateIcon();
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
- }
- //打开商店界面
- openShop() {
- Utils.outTradeNo = null;
- // 商品数据数组
- const products = [
- { product_id: "gold_1", price: 600, coin: 1200, title: "3x2六档金币" },
- { product_id: "gold_1", price: 600, coin: 1200, title: "3x2六档金币" },
- { product_id: "gold_2", price: 3600, coin: 8000, title: "" },
- { product_id: "gold_3", price: 6800, coin: 16000, title: "" },
- { product_id: "gold_4", price: 12800, coin: 32000, title: "" },
- { product_id: "gold_5", price: 32800, coin: 100000, title: "" },
- { product_id: "gold_6", price: 64800, coin: 240000, title: "" },
- ];
- for (let i = 2; i <= 7 && i < this.itemList.children.length; i++) {
- const spriteComp = this.itemList.children[i].children[0].getComponent(cc.Sprite);
- const price = this.itemList.children[i].children[1];
- const title = this.itemList.children[i].children[2];
- const product = products[i - 1];
+ init() {
+ this.onShowListener = null;
+ if (cc.sys.platform === cc.sys.WECHAT_GAME) {
+ // 定义监听函数
+ this.onShowListener = () => {
+ console.log("回到前台");
+ this.onShow();
+ };
+ //@ts-ignore
+ wx.onShow(this.onShowListener);
+ }
+ this.btn_Touch = true;
+ var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
+ // 同步显示
+ // if (this.Stamina && this.Stamina.getChildByName("time")) {
+ // this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
+ // }
+ this.stopTimeCutDown();
+ this.stopPowerTime();
+ this.updatePower();
+ this.setHealthInfo(true);
+ this.updateIcon();
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
+ }
+ //打开商店界面
+ openShop() {
+ Utils.outTradeNo = null;
+ // 商品数据数组
+ const products = [
+ { product_id: "gold_1", price: 600, coin: 1200, title: "3x2六档金币" },
+ { product_id: "gold_1", price: 600, coin: 1200, title: "3x2六档金币" },
+ { product_id: "gold_2", price: 3600, coin: 8000, title: "" },
+ { product_id: "gold_3", price: 6800, coin: 16000, title: "" },
+ { product_id: "gold_4", price: 12800, coin: 32000, title: "" },
+ { product_id: "gold_5", price: 32800, coin: 100000, title: "" },
+ { product_id: "gold_6", price: 64800, coin: 240000, title: "" },
+ ];
+ for (let i = 2; i <= 7 && i < this.itemList.children.length; i++) {
+ const spriteComp = this.itemList.children[i].children[0].getComponent(cc.Sprite);
+ const price = this.itemList.children[i].children[1];
+ const title = this.itemList.children[i].children[2];
+ const product = products[i - 1];
- if (spriteComp && product) {
- // TODO: 根据 product_id 或 name 设置 spriteComp.spriteFrame
- }
+ if (spriteComp && product) {
+ // TODO: 根据 product_id 或 name 设置 spriteComp.spriteFrame
+ }
- if (price && product) {
- NumberToImage.numberToImageNodes(product.price / 100, 35, 20, "cost_", price, false)
- }
- if (title && product) {
- NumberToImage.numberToImageNodes(product.coin, 40, 25, "scoin_", title, true)
- }
- }
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
- this.updateIcon();
- }
+ if (price && product) {
+ NumberToImage.numberToImageNodes(product.price / 100, 35, 20, "cost_", price, false)
+ }
+ if (title && product) {
+ NumberToImage.numberToImageNodes(product.coin, 40, 25, "scoin_", title, true)
+ }
+ }
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
+ this.updateIcon();
+ }
- startCoinAnim(target: number) {
- if (this.coinAnimating && this.coinEnd === target) return;
- this.coinStart = this.currentCoin;
- this.coinEnd = target;
- this.coinAnimTime = 0;
- this.coinAnimating = true;
- }
- //优化
- protected update(dt: number): void {
- if (this.coin && this.coinAnimating) {
- this.coinAnimTime += dt;
- let t = this.coinAnimTime / this.coinAnimDuration;
- if (t >= 1) {
- this.currentCoin = this.coinEnd;
- this.coinAnimating = false;
- NumberToImage.numberToImageNodes(this.currentCoin, 30, 15, "coin_", this.coin, true);
- } else {
- this.currentCoin = Math.floor(this.coinStart + (this.coinEnd - this.coinStart) * t);
- NumberToImage.numberToImageNodes(this.currentCoin, 30, 15, "coin_", this.coin, true);
- }
- }
- }
+ startCoinAnim(target: number) {
+ if (this.coinAnimating && this.coinEnd === target) return;
+ this.coinStart = this.currentCoin;
+ this.coinEnd = target;
+ this.coinAnimTime = 0;
+ this.coinAnimating = true;
+ }
+ //优化
+ protected update(dt: number): void {
+ if (this.coin && this.coinAnimating) {
+ this.coinAnimTime += dt;
+ let t = this.coinAnimTime / this.coinAnimDuration;
+ if (t >= 1) {
+ this.currentCoin = this.coinEnd;
+ this.coinAnimating = false;
+ NumberToImage.numberToImageNodes(this.currentCoin, 30, 15, "coin_", this.coin, true);
+ } else {
+ this.currentCoin = Math.floor(this.coinStart + (this.coinEnd - this.coinStart) * t);
+ NumberToImage.numberToImageNodes(this.currentCoin, 30, 15, "coin_", this.coin, true);
+ }
+ }
+ }
- playCoinAnim(target?: number) {
- this.coinAnim.active = true;
- this.coinAnim.getComponent(sp.Skeleton).setAnimation(0, "feijinbi", false);
- // 监听动画完成事件
- this.coinAnim.getComponent(sp.Skeleton).setCompleteListener(() => {
- // 动画播放完成后销毁节点
- this.coinAnim.active = false;
- });
- this.startCoinAnim(5000);
- }
- //关闭商店界面
- closeShop(data, currentCoin) {
- // 移除 wx.onShow 监听器
- if (cc.sys.platform === cc.sys.WECHAT_GAME && this.onShowListener) {
- console.log("!!!!!!!!!!移除onshow");
- console.log(currentCoin);
- //@ts-ignore
- wx.offShow(this.onShowListener);
- }
- Utils.outTradeNo = null;
- //销毁预制体
- if (this.node.parent.getComponent("JiaZai")) {
- this.node.parent.getComponent("JiaZai").closeShop();
- }
- else if (this.node.parent.getComponent("SceneManager")) {
- this.node.parent.getComponent("SceneManager").closeShop();
- }
- // this.shop.destroy();
- if (this.reward) {
- this.reward = false;
- const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
- if (winCOIN) {
- const wincoin1 = winCOIN.getComponent(JiaZai);
- if (wincoin1) {
- if (wincoin1) {
- wincoin1.rewarded();
- }
- }
- }
- }
- }
-
- onShow() {
- console.log("从后台进入前台 onShow");
- //如果月卡打开就return
- if (this.monthCard) {
- return;
- }
- const systemInfo = wx.getSystemInfoSync();
- if (systemInfo.platform === 'ios') {
- if (cc.sys.platform === cc.sys.WECHAT_GAME) {
- console.log("从后台进入前台订单号:", cc.fx.GameConfig.GM_INFO.iosOutTradeNo);
- this.closeLoad();
- if (cc.fx.GameConfig.GM_INFO.iosOutTradeNo != null && cc.fx.GameConfig.GM_INFO.iosOutTradeNo != "") {
- console.log("有苹果订单号,开始轮训");
- const iosOutTradeNo = cc.fx.GameConfig.GM_INFO.iosOutTradeNo;
- cc.fx.GameConfig.GM_INFO.iosOutTradeNo = "";
- this.openLoad();
- this.btn_Touch = true;
- Utils.getIosPayInfo(iosOutTradeNo,
- (data) => {
- console.log("获得轮训结果:", data);
- const iosID = data.data?.payment_name || this.iosProductId;
- let iosAmount = data.data?.goodsPrice || this.iosPrice;
- iosAmount = parseInt(iosAmount);
- if (data.code == 1) {
- console.log("购买成功");
- console.log("商品id:", iosID);
- const dataSuccess = {
- outTradeNo: iosOutTradeNo,
- pay_amount: iosAmount,
- payment_name: iosID,
- payment_num: this.iosCount,
- type: "ios",
- }
- cc.fx.GameTool.shushu_Track("payment", dataSuccess);
- let name = "购买金币道具:" + iosID;
- let version = cc.fx.GameTool.getWechatGameVersion();
- if (version == "正式版") {
- MiniGameSdk.API.yinli_Pay(iosAmount, iosOutTradeNo, name)
- }
-
- Utils.setPayInfo(
- (res) => {
- this.closeLoad();
- //console.log("设置轮训结果:", res);
- if (res.code === 1) {
- console.log("_________正式发货", iosID);
- MiniGameSdk.API.showToast("充值成功");
- cc.fx.GameTool.shopBuy(iosID, false);
- if (iosID == "unlimited_health_bundle_1" ||
- iosID == "unlimited_health_bundle_2" ||
- iosID == "unlimited_health_bundle_3"
- ) {
- this.updatePower();
- }
- //console.log("充值成功获得金币");
- }
- else {
- MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放");
- const dataFail4 = {
- outTradeNo: iosOutTradeNo,
- pay_amount: iosAmount,
- payment_name: iosID,
- payment_num: this.iosCount,
- type: "ios",
- fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail4);
- }
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
- if (this.node.parent.getComponent("JiaZai"))
- this.node.parent.getComponent("JiaZai").updateCoin();
- else if (this.node.parent.getComponent("SceneManager")) {
- this.node.parent.getComponent("SceneManager").updateCoin();
- }
- }, iosOutTradeNo)
- }
- else if (data.code == 0) {
- console.log("用户自己取消充值");
- MiniGameSdk.API.showToast("充值失败");
- this.closeLoad();
- this.btn_Touch = true;
- const dataFail = {
- outTradeNo: iosOutTradeNo,
- pay_amount: iosAmount,
- payment_name: iosID,
- payment_num: this.iosCount,
- type: "ios",
- fail_reason: "用户取消充值",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
- }
- else if (data.code == 2) {
- this.closeLoad();
- console.log("轮训超时");
- MiniGameSdk.API.showToast("订单已关闭");
- const dataFail = {
- outTradeNo: iosOutTradeNo,
- pay_amount: iosAmount,
- payment_name: iosID,
- payment_num: this.iosCount,
- type: "ios",
- fail_reason: "用户充值后,轮训结果超时",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
- }
-
- this.btn_Touch = true;
- cc.fx.GameConfig.GM_INFO.iosOutTradeNo = null;
- })
- }
- else {
- this.closeLoad();
- }
- }
- }
-
-
- }
-
- openLoad() {
- this.node.getChildByName("Loading").active = true;
- this.node.getChildByName("Loading").getChildByName("load").stopAllActions();
- this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever());
- }
-
- closeLoad() {
- this.node.getChildByName("Loading").active = false;
- }
-
- setHealthInfo(type) {
- if (cc.fx.GameConfig.GM_INFO.hp >= cc.fx.GameConfig.GM_INFO.hp_Max) {
- this.Stamina.getChildByName("man").active = true;
- this.Stamina.getChildByName("health").active = true;
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false);
- this.Stamina.getChildByName("time").active = false;
- }
- else {
- this.Stamina.getChildByName("man").active = false;
- this.Stamina.getChildByName("health").active = true;
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false);
- this.Stamina.getChildByName("time").active = true;
- if (cc.fx.GameConfig.GM_INFO.min_Time != 0) {
- let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
- this.Stamina.getChildByName("time").getComponent(cc.Label).string = time;
- let power = cc.fx.GameTool.getUserPowerTime();
- if (!power) this.Stamina.getChildByName("time").opacity = 255;
- else this.Stamina.getChildByName("time").opacity = 0;
- this.stopTimeCutDown();
- this.startTimeCutDown();
- }
- }
- }
-
- startTimeCutDown() {
- this.stopTimeCutDown();
- if (this.scheduleCallback3) {
- this.unschedule(this.scheduleCallback3);
- }
- this.scheduleCallback3 = function () {
- if (this.pause) return;
- if (cc.fx.GameConfig.GM_INFO.min_Time <= 0) {
- this.stopTimeCutDown();
- var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
- // 同步显示
- if (this.Stamina && this.Stamina.getChildByName("time")) {
- this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
- }
- MiniGameSdk.API.showToast("恢复一点滴点体力");
- cc.fx.GameTool.setUserHealth(1, (data) => {
- cc.fx.GameTool.getHealth(null);
- this.setHealthInfo(true);
- }, true)
- }
- else {
- if (this.node.parent.getComponent("JiaZai")) {
- }
- else cc.fx.GameConfig.GM_INFO.min_Time -= 1;
- var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
- // 同步显示
- if (this.Stamina && this.Stamina.getChildByName("time")) {
- let power = cc.fx.GameTool.getUserPowerTime();
- if (!power) this.Stamina.getChildByName("time").opacity = 255;
- else this.Stamina.getChildByName("time").opacity = 0;
- this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
- }
- }
- }.bind(this);
- this.schedule(this.scheduleCallback3, 1);
- }
-
- // 停止倒计时
- stopTimeCutDown() {
- if (this.scheduleCallback3) {
- this.unschedule(this.scheduleCallback3);
- this.scheduleCallback3 = null;
- }
- }
-
- //点击充值购买
-
- buyProduct(event, customData) {
- if (!this.btn_Touch) {
- return;
- }
- this.btn_Touch = false;
- const productId = customData;
- let id = "10011";
- let price = 100;
- let count = 1;
- id = productId;
- console.log("购买商品id:", productId);
- switch (productId) {
- case "gold_1":
- price = 600;
- break;
- case "gold_2":
- price = 3600;
- break;
- case "gold_3":
- price = 6800;
- break;
- case "gold_4":
- price = 12800;
- break;
- case "gold_5":
- price = 32800;
- break;
- case "gold_6":
- price = 64800;
- break;
- case "unlimited_health_bundle_1":
- price = 1800;
- break;
- case "unlimited_health_bundle_2":
- price = 6600;
- break;
- case "unlimited_health_bundle_3":
- price = 10800;
- break;
- case "month_Card":
- price = 3000;
- break;
- }
- //console.log("获得商品id:", id, count, price);
- // 判断设备系统
- let systemType = "Android";
- try {
- //@ts-ignore
- const systemInfo = wx.getSystemInfoSync();
- if (systemInfo.platform === 'ios') {
- systemType = "ios";
- }
- } catch (e) {
- console.error('获取系统信息失败', e);
- }
-
- // Utils.GoKEFu();
- if (systemType == "ios") {
- // MiniGameSdk.API.showToast("IOS系统暂不支持支付");
- // this.btn_Touch = true;
- this.openLoad();
- this.btn_Touch = true;
- let iosPayInfo = {
- price: price,
- payment_name: productId,
- payment_count: 1,
- }
- this.iosPrice = price;
- this.iosProductId = productId;
- this.iosCount = 1;
- console.log("准备跳客服回话:");
- console.log(this.iosProductId);
- Utils.GoKEFu(iosPayInfo, (res) => {
- this.closeLoad();
- });
- }
- else {
- // MiniGameSdk.API.showToast("充值成功");
- // cc.fx.GameTool.shopBuy(productId, false);
- // setTimeout(() => {
- // if (productId == "unlimited_health_bundle_1" ||
- // productId == "unlimited_health_bundle_2" ||
- // productId == "unlimited_health_bundle_3"
- // ) {
- // console.log("触发————————updatePower");
- // this.updatePower();
- // }
- // }, 500);
-
- this.openLoad();
- this.btn_Touch = true;
- //console.log("7.14_____________________", "调用充值接口");
- Utils.buyProp(id, count, price, systemType, productId, (res) => {
- //console.log("获得充值结果", res);
- if (res == null) {
- MiniGameSdk.API.showToast("充值失败");
- this.btn_Touch = true;
- const dataFail = {
- outTradeNo: Utils.outTradeNo,
- pay_amount: price,
- payment_name: productId,
- payment_num: 1,
- type: systemType,
- fail_reason: "网络异常,没有拉起支付",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
- this.closeLoad();
- return;
- }
- else if (res.err) {
- MiniGameSdk.API.showToast("充值失败");
- //console.log(res);
- this.btn_Touch = true;
- let name = "支付拉起失败";
- if (res.errCode == -2) {
- name = "用户取消充值";
- }
- const dataFail = {
- outTradeNo: Utils.outTradeNo,
- pay_amount: price,
- payment_name: productId,
- payment_num: 1,
- type: systemType,
- fail_reason: name,
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
- this.closeLoad();
- return;
- }
- else {
- Utils.getPayInfo((data) => {
- // MiniGameSdk.API.showToast("充值成功");
- console.log("7.28_______________充值成功,准备轮训", data);
- //console.log("获得轮训结果:", data);
- this.closeLoad();
- if (data.data.pay_state == 1) {
- this.btn_Touch = true;
- MiniGameSdk.API.showToast("取消充值");
- const dataFail2 = {
- outTradeNo: Utils.outTradeNo,
- pay_amount: price,
- payment_name: productId,
- payment_num: 1,
- type: systemType,
- fail_reason: "用户取消支付",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail2);
- }
- else if (data.data.pay_state == 2) {
- this.btn_Touch = true;
- const dataSuccess = {
- outTradeNo: Utils.outTradeNo,
- pay_amount: price,
- payment_name: productId,
- payment_num: 1,
- type: systemType,
- }
- cc.fx.GameTool.shushu_Track("payment", dataSuccess);
- let name = "购买金币道具:" + productId;
- let version = cc.fx.GameTool.getWechatGameVersion();
- if (version == "正式版") {
- MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name);
- }
-
- console.log("7.14_______________充值成功,轮训成功,准备发货");
- Utils.setPayInfo(
- (res) => {
- console.log("设置轮训结果:", res);
- if (res.code === 1) {
- console.log("7.14_________正式发货");
- MiniGameSdk.API.showToast("充值成功");
- cc.fx.GameTool.shopBuy(productId, false);
- if (productId == "unlimited_health_bundle_1" ||
- productId == "unlimited_health_bundle_2" ||
- productId == "unlimited_health_bundle_3"
- ) {
- this.updatePower();
- }
- //console.log("充值成功获得金币");
- }
- else {
- MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放");
- const dataFail4 = {
- outTradeNo: Utils.outTradeNo,
- pay_amount: price,
- payment_name: productId,
- payment_num: 1,
- type: systemType,
- fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail4);
- }
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
- if (this.node.parent.getComponent("JiaZai"))
- this.node.parent.getComponent("JiaZai").updateCoin();
- else if (this.node.parent.getComponent("SceneManager")) {
- this.node.parent.getComponent("SceneManager").updateCoin();
- }
- }, Utils.outTradeNo)
- }
- else {
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
- const dataFail3 = {
- outTradeNo: Utils.outTradeNo,
- pay_amount: price,
- payment_name: productId,
- payment_num: 1,
- type: systemType,
- fail_reason: "拉起支付后,付款时网络异常付款失败",
- }
- cc.fx.GameTool.shushu_Track("payment_fail", dataFail3);
- this.btn_Touch = true;
- if (this.node.parent.getComponent("JiaZai"))
- this.node.parent.getComponent("JiaZai").updateCoin();
- else if (this.node.parent.getComponent("SceneManager")) {
- this.node.parent.getComponent("SceneManager").updateCoin();
- }
- }
- })
- }
- });
- }
-
- }
-
-
- //无限体力刷新功能
- updatePower() {
- console.log("无限体力时间戳:", cc.fx.GameConfig.GM_INFO.userPowerTime)
- if (cc.fx.GameConfig.GM_INFO.userPowerTime != 0) {
- let nowTime = Math.floor(Date.now() / 1000);
- if (cc.fx.GameConfig.GM_INFO.userPowerTime > nowTime) {
- this.stopPowerTime();
- this.startPowerTime();
- console.log("还有无限体力时间_____________", (cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime));
- this.Stamina.getChildByName("skyLine").active = true;
- this.Stamina.getChildByName("time").opacity = 0;
- this.Stamina.getChildByName("man").active = false;
- }
- else {
- this.Stamina.getChildByName("skyLine").active = false;
- console.log("无限体力时间已过期");
- this.setHealthInfo(true);
- }
- }
- else {
- this.Stamina.getChildByName("skyLine").active = false;
- this.setHealthInfo(true);
- console.log("没有无限体力时间");
- }
- }
-
- startPowerTime() {
- this.stopPowerTime();
- this.scheduleCallback2 = function () {
- let nowTime = Math.floor(Date.now() / 1000);
- if (cc.fx.GameConfig.GM_INFO.userPowerTime < nowTime) {
- this.Stamina.getChildByName("skyLine").active = false;
- this.stopPowerTime();
- this.setHealthInfo(true);
- return;
- }
- else {
- this.Stamina.getChildByName("skyLine").active = true;
- this.Stamina.getChildByName("time").opacity = 0;
- this.Stamina.getChildByName("man").active = false;
- }
- let time = cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime;
- if (time <= 0) {
- time = 0;
- this.Stamina.getChildByName("skyLine").active = false;
- this.stopPowerTime();
- this.setHealthInfo(true);
- var timeTemp = cc.fx.GameTool.getTimeMargin2(time);
- // 同步显示
- if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) {
- this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp;
- }
- }
- else {
- var timeTemp = cc.fx.GameTool.getTimeMargin2(time);
- // 同步显示
- if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) {
- this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp;
- }
- }
- }.bind(this);
- this.schedule(this.scheduleCallback2, 1);
- }
-
- stopPowerTime() {
- cc.fx.GameTool.getUserPowerTime();
- if (this.scheduleCallback2) {
- this.unschedule(this.scheduleCallback2);
- this.scheduleCallback2 = null;
- }
- }
- openmonthCard() {
-
- const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
- if (winCOIN) {
- const wincoin = winCOIN.getComponent(SceneManager);
- if (wincoin) {
- wincoin.openMonthlyCard();
- console.log("局内")
- };
+ playCoinAnim(target?: number) {
+ this.coinAnim.active = true;
+ this.coinAnim.getComponent(sp.Skeleton).setAnimation(0, "feijinbi", false);
+ // 监听动画完成事件
+ this.coinAnim.getComponent(sp.Skeleton).setCompleteListener(() => {
+ // 动画播放完成后销毁节点
+ this.coinAnim.active = false;
+ });
+ this.startCoinAnim(5000);
+ }
+ //关闭商店界面
+ closeShop(data, currentCoin) {
+ // 移除 wx.onShow 监听器
+ if (cc.sys.platform === cc.sys.WECHAT_GAME && this.onShowListener) {
+ console.log("!!!!!!!!!!移除onshow");
+ console.log(currentCoin);
+ //@ts-ignore
+ wx.offShow(this.onShowListener);
+ }
+ Utils.outTradeNo = null;
+ //销毁预制体
+ if (this.node.parent.getComponent("JiaZai")) {
+ this.node.parent.getComponent("JiaZai").closeShop();
+ }
+ else if (this.node.parent.getComponent("SceneManager")) {
+ this.node.parent.getComponent("SceneManager").closeShop();
+ }
+ // this.shop.destroy();
+ if (this.reward) {
+ this.reward = false;
+ const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
+ if (winCOIN) {
const wincoin1 = winCOIN.getComponent(JiaZai);
if (wincoin1) {
- if (wincoin1) {
- wincoin1.openMonthlyCard();
- this.reward = true;
- console.log("局外")
- }
+ if (wincoin1) {
+ wincoin1.onGames();
+ wincoin1.rewarded();
+ }
}
- }
- this.monthCard = true;
- this.updateIcon()
- }
- //更新图标
- updateIcon() {
- if (cc.fx.GameConfig.GM_INFO.hp_Max == 7) {
- this.monthCardTime.active = true;
+ }
+ }
+ }
- } else {
- this.monthCardTime.active = false;
+ onShow() {
+ console.log("从后台进入前台 onShow");
+ //如果月卡打开就return
+ if (this.monthCard) {
+ return;
+ }
+ const systemInfo = wx.getSystemInfoSync();
+ if (systemInfo.platform === 'ios') {
+ if (cc.sys.platform === cc.sys.WECHAT_GAME) {
+ console.log("从后台进入前台订单号:", cc.fx.GameConfig.GM_INFO.iosOutTradeNo);
+ this.closeLoad();
+ if (cc.fx.GameConfig.GM_INFO.iosOutTradeNo != null && cc.fx.GameConfig.GM_INFO.iosOutTradeNo != "") {
+ console.log("有苹果订单号,开始轮训");
+ const iosOutTradeNo = cc.fx.GameConfig.GM_INFO.iosOutTradeNo;
+ cc.fx.GameConfig.GM_INFO.iosOutTradeNo = "";
+ this.openLoad();
+ this.btn_Touch = true;
+ Utils.getIosPayInfo(iosOutTradeNo,
+ (data) => {
+ console.log("获得轮训结果:", data);
+ const iosID = data.data?.payment_name || this.iosProductId;
+ let iosAmount = data.data?.goodsPrice || this.iosPrice;
+ iosAmount = parseInt(iosAmount);
+ if (data.code == 1) {
+ console.log("购买成功");
+ console.log("商品id:", iosID);
+ const dataSuccess = {
+ outTradeNo: iosOutTradeNo,
+ pay_amount: iosAmount,
+ payment_name: iosID,
+ payment_num: this.iosCount,
+ type: "ios",
+ }
+ cc.fx.GameTool.shushu_Track("payment", dataSuccess);
+ let name = "购买金币道具:" + iosID;
+ let version = cc.fx.GameTool.getWechatGameVersion();
+ if (version == "正式版") {
+ MiniGameSdk.API.yinli_Pay(iosAmount, iosOutTradeNo, name)
+ }
- }
- NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.monthTime, 35, 15, "button_", this.monthCardTime.children[1], true);
- }
+ Utils.setPayInfo(
+ (res) => {
+ this.closeLoad();
+ //console.log("设置轮训结果:", res);
+ if (res.code === 1) {
+ console.log("_________正式发货", iosID);
+ MiniGameSdk.API.showToast("充值成功");
+ cc.fx.GameTool.shopBuy(iosID, false);
+ if (iosID == "unlimited_health_bundle_10" ||
+ iosID == "unlimited_health_bundle_20" ||
+ iosID == "unlimited_health_bundle_30"
+ ) {
+ this.updatePower();
+ }
+ //console.log("充值成功获得金币");
+ }
+ else {
+ MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放");
+ const dataFail4 = {
+ outTradeNo: iosOutTradeNo,
+ pay_amount: iosAmount,
+ payment_name: iosID,
+ payment_num: this.iosCount,
+ type: "ios",
+ fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail4);
+ }
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
+ if (this.node.parent.getComponent("JiaZai"))
+ this.node.parent.getComponent("JiaZai").updateCoin();
+ else if (this.node.parent.getComponent("SceneManager")) {
+ this.node.parent.getComponent("SceneManager").updateCoin();
+ }
+ }, iosOutTradeNo)
+ }
+ else if (data.code == 0) {
+ console.log("用户自己取消充值");
+ MiniGameSdk.API.showToast("充值失败");
+ this.closeLoad();
+ this.btn_Touch = true;
+ const dataFail = {
+ outTradeNo: iosOutTradeNo,
+ pay_amount: iosAmount,
+ payment_name: iosID,
+ payment_num: this.iosCount,
+ type: "ios",
+ fail_reason: "用户取消充值",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
+ }
+ else if (data.code == 2) {
+ this.closeLoad();
+ console.log("轮训超时");
+ MiniGameSdk.API.showToast("订单已关闭");
+ const dataFail = {
+ outTradeNo: iosOutTradeNo,
+ pay_amount: iosAmount,
+ payment_name: iosID,
+ payment_num: this.iosCount,
+ type: "ios",
+ fail_reason: "用户充值后,轮训结果超时",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
+ }
- // update (dt) {}
+ this.btn_Touch = true;
+ cc.fx.GameConfig.GM_INFO.iosOutTradeNo = null;
+ })
+ }
+ else {
+ this.closeLoad();
+ }
+ }
+ }
+
+
+ }
+
+ openLoad() {
+ this.node.getChildByName("Loading").active = true;
+ this.node.getChildByName("Loading").getChildByName("load").stopAllActions();
+ this.node.getChildByName("Loading").getChildByName("load").runAction(cc.rotateTo(2, 1080).repeatForever());
+ }
+
+ closeLoad() {
+ this.node.getChildByName("Loading").active = false;
+ }
+
+ setHealthInfo(type) {
+ if (cc.fx.GameConfig.GM_INFO.hp >= cc.fx.GameConfig.GM_INFO.hp_Max) {
+ this.Stamina.getChildByName("man").active = true;
+ this.Stamina.getChildByName("health").active = true;
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false);
+ this.Stamina.getChildByName("time").active = false;
+ }
+ else {
+ this.Stamina.getChildByName("man").active = false;
+ this.Stamina.getChildByName("health").active = true;
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.hp, 25, 15, "hp_", this.Stamina.getChildByName("health"), false);
+ this.Stamina.getChildByName("time").active = true;
+ if (cc.fx.GameConfig.GM_INFO.min_Time != 0) {
+ let time = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
+ this.Stamina.getChildByName("time").getComponent(cc.Label).string = time;
+ let power = cc.fx.GameTool.getUserPowerTime();
+ if (!power) this.Stamina.getChildByName("time").opacity = 255;
+ else this.Stamina.getChildByName("time").opacity = 0;
+ this.stopTimeCutDown();
+ this.startTimeCutDown();
+ }
+ }
+ }
+
+ startTimeCutDown() {
+ this.stopTimeCutDown();
+ if (this.scheduleCallback3) {
+ this.unschedule(this.scheduleCallback3);
+ }
+ this.scheduleCallback3 = function () {
+ if (this.pause) return;
+ if (cc.fx.GameConfig.GM_INFO.min_Time <= 0) {
+ this.stopTimeCutDown();
+ var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
+ // 同步显示
+ if (this.Stamina && this.Stamina.getChildByName("time")) {
+ this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
+ }
+ MiniGameSdk.API.showToast("恢复一点滴点体力");
+ cc.fx.GameTool.setUserHealth(1, (data) => {
+ cc.fx.GameTool.getHealth(null);
+ this.setHealthInfo(true);
+ }, true)
+ }
+ else {
+ if (this.node.parent.getComponent("JiaZai")) {
+ }
+ else cc.fx.GameConfig.GM_INFO.min_Time -= 1;
+ var timeTemp = cc.fx.GameTool.getTimeMargin(cc.fx.GameConfig.GM_INFO.min_Time);
+ // 同步显示
+ if (this.Stamina && this.Stamina.getChildByName("time")) {
+ let power = cc.fx.GameTool.getUserPowerTime();
+ if (!power) this.Stamina.getChildByName("time").opacity = 255;
+ else this.Stamina.getChildByName("time").opacity = 0;
+ this.Stamina.getChildByName("time").getComponent(cc.Label).string = timeTemp;
+ }
+ }
+ }.bind(this);
+ this.schedule(this.scheduleCallback3, 1);
+ }
+
+ // 停止倒计时
+ stopTimeCutDown() {
+ if (this.scheduleCallback3) {
+ this.unschedule(this.scheduleCallback3);
+ this.scheduleCallback3 = null;
+ }
+ }
+
+ //点击充值购买
+
+ buyProduct(event, customData) {
+ if (!this.btn_Touch) {
+ return;
+ }
+ this.btn_Touch = false;
+ const productId = customData;
+ let id = "10011";
+ let price = 100;
+ let count = 1;
+ id = productId;
+ console.log("购买商品id:", productId);
+ switch (productId) {
+ case "gold_1":
+ price = 600;
+ break;
+ case "gold_2":
+ price = 3600;
+ break;
+ case "gold_3":
+ price = 6800;
+ break;
+ case "gold_4":
+ price = 12800;
+ break;
+ case "gold_5":
+ price = 32800;
+ break;
+ case "gold_6":
+ price = 64800;
+ break;
+ case "unlimited_health_bundle_10":
+ price = 1000;
+ break;
+ case "unlimited_health_bundle_20":
+ price = 2000;
+ break;
+ case "unlimited_health_bundle_30":
+ price = 3000;
+ break;
+ case "month_Card":
+ price = 3000;
+ break;
+ }
+ //console.log("获得商品id:", id, count, price);
+ // 判断设备系统
+ let systemType = "Android";
+ try {
+ //@ts-ignore
+ const systemInfo = wx.getSystemInfoSync();
+ if (systemInfo.platform === 'ios') {
+ systemType = "ios";
+ }
+ } catch (e) {
+ console.error('获取系统信息失败', e);
+ }
+
+ // Utils.GoKEFu();
+ if (systemType == "ios") {
+ // MiniGameSdk.API.showToast("IOS系统暂不支持支付");
+ // this.btn_Touch = true;
+ this.openLoad();
+ this.btn_Touch = true;
+ let iosPayInfo = {
+ price: price,
+ payment_name: productId,
+ payment_count: 1,
+ }
+ this.iosPrice = price;
+ this.iosProductId = productId;
+ this.iosCount = 1;
+ console.log("准备跳客服回话:");
+ console.log(this.iosProductId);
+ Utils.GoKEFu(iosPayInfo, (res) => {
+ this.closeLoad();
+ });
+ }
+ else {
+ // MiniGameSdk.API.showToast("充值成功");
+ // cc.fx.GameTool.shopBuy(productId, false);
+ // setTimeout(() => {
+ // if (productId == "unlimited_health_bundle_10" ||
+ // productId == "unlimited_health_bundle_20" ||
+ // productId == "unlimited_health_bundle_30"
+ // ) {
+ // console.log("触发————————updatePower");
+ // this.updatePower();
+ // }
+ // }, 500);
+
+ this.openLoad();
+ this.btn_Touch = true;
+ //console.log("7.14_____________________", "调用充值接口");
+ Utils.buyProp(id, count, price, systemType, productId, (res) => {
+ //console.log("获得充值结果", res);
+ if (res == null) {
+ MiniGameSdk.API.showToast("充值失败");
+ this.btn_Touch = true;
+ const dataFail = {
+ outTradeNo: Utils.outTradeNo,
+ pay_amount: price,
+ payment_name: productId,
+ payment_num: 1,
+ type: systemType,
+ fail_reason: "网络异常,没有拉起支付",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
+ this.closeLoad();
+ return;
+ }
+ else if (res.err) {
+ MiniGameSdk.API.showToast("充值失败");
+ //console.log(res);
+ this.btn_Touch = true;
+ let name = "支付拉起失败";
+ if (res.errCode == -2) {
+ name = "用户取消充值";
+ }
+ const dataFail = {
+ outTradeNo: Utils.outTradeNo,
+ pay_amount: price,
+ payment_name: productId,
+ payment_num: 1,
+ type: systemType,
+ fail_reason: name,
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail);
+ this.closeLoad();
+ return;
+ }
+ else {
+ Utils.getPayInfo((data) => {
+ // MiniGameSdk.API.showToast("充值成功");
+ console.log("7.28_______________充值成功,准备轮训", data);
+ //console.log("获得轮训结果:", data);
+ this.closeLoad();
+ if (data.data.pay_state == 1) {
+ this.btn_Touch = true;
+ MiniGameSdk.API.showToast("取消充值");
+ const dataFail2 = {
+ outTradeNo: Utils.outTradeNo,
+ pay_amount: price,
+ payment_name: productId,
+ payment_num: 1,
+ type: systemType,
+ fail_reason: "用户取消支付",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail2);
+ }
+ else if (data.data.pay_state == 2) {
+ this.btn_Touch = true;
+ const dataSuccess = {
+ outTradeNo: Utils.outTradeNo,
+ pay_amount: price,
+ payment_name: productId,
+ payment_num: 1,
+ type: systemType,
+ }
+ cc.fx.GameTool.shushu_Track("payment", dataSuccess);
+ let name = "购买金币道具:" + productId;
+ let version = cc.fx.GameTool.getWechatGameVersion();
+ if (version == "正式版") {
+ MiniGameSdk.API.yinli_Pay(price, Utils.outTradeNo, name);
+ }
+
+ console.log("7.14_______________充值成功,轮训成功,准备发货");
+ Utils.setPayInfo(
+ (res) => {
+ console.log("设置轮训结果:", res);
+ if (res.code === 1) {
+ console.log("7.14_________正式发货");
+ MiniGameSdk.API.showToast("充值成功");
+ cc.fx.GameTool.shopBuy(productId, false);
+ if (productId == "unlimited_health_bundle_10" ||
+ productId == "unlimited_health_bundle_20" ||
+ productId == "unlimited_health_bundle_30"
+ ) {
+ this.updatePower();
+ }
+ //console.log("充值成功获得金币");
+ }
+ else {
+ MiniGameSdk.API.showToast("网络异常,充值奖励将在登录后再次发放");
+ const dataFail4 = {
+ outTradeNo: Utils.outTradeNo,
+ pay_amount: price,
+ payment_name: productId,
+ payment_num: 1,
+ type: systemType,
+ fail_reason: "成功付款,但是发货时请求服务器失败,充值成功未发货",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail4);
+ }
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
+ if (this.node.parent.getComponent("JiaZai"))
+ this.node.parent.getComponent("JiaZai").updateCoin();
+ else if (this.node.parent.getComponent("SceneManager")) {
+ this.node.parent.getComponent("SceneManager").updateCoin();
+ }
+ }, Utils.outTradeNo)
+ }
+ else {
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.coin, 30, 15, "coin_", this.coin, true);
+ const dataFail3 = {
+ outTradeNo: Utils.outTradeNo,
+ pay_amount: price,
+ payment_name: productId,
+ payment_num: 1,
+ type: systemType,
+ fail_reason: "拉起支付后,付款时网络异常付款失败",
+ }
+ cc.fx.GameTool.shushu_Track("payment_fail", dataFail3);
+ this.btn_Touch = true;
+ if (this.node.parent.getComponent("JiaZai"))
+ this.node.parent.getComponent("JiaZai").updateCoin();
+ else if (this.node.parent.getComponent("SceneManager")) {
+ this.node.parent.getComponent("SceneManager").updateCoin();
+ }
+ }
+ })
+ }
+ });
+ }
+
+ }
+
+
+ //无限体力刷新功能
+ updatePower() {
+ console.log("无限体力时间戳:", cc.fx.GameConfig.GM_INFO.userPowerTime)
+ MapConroler._instance.setPropNum();
+ if (cc.fx.GameConfig.GM_INFO.userPowerTime != 0) {
+ let nowTime = Math.floor(Date.now() / 1000);
+ if (cc.fx.GameConfig.GM_INFO.userPowerTime > nowTime) {
+ this.stopPowerTime();
+ this.startPowerTime();
+ console.log("还有无限体力时间_____________", (cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime));
+ this.Stamina.getChildByName("skyLine").active = true;
+ this.Stamina.getChildByName("time").opacity = 0;
+ this.Stamina.getChildByName("man").active = false;
+ }
+ else {
+ this.Stamina.getChildByName("skyLine").active = false;
+ console.log("无限体力时间已过期");
+ this.setHealthInfo(true);
+ }
+ }
+ else {
+ this.Stamina.getChildByName("skyLine").active = false;
+ this.setHealthInfo(true);
+ console.log("没有无限体力时间");
+ }
+ }
+
+ startPowerTime() {
+ this.stopPowerTime();
+ this.scheduleCallback2 = function () {
+ let nowTime = Math.floor(Date.now() / 1000);
+ if (cc.fx.GameConfig.GM_INFO.userPowerTime < nowTime) {
+ this.Stamina.getChildByName("skyLine").active = false;
+ this.stopPowerTime();
+ this.setHealthInfo(true);
+ return;
+ }
+ else {
+ this.Stamina.getChildByName("skyLine").active = true;
+ this.Stamina.getChildByName("time").opacity = 0;
+ this.Stamina.getChildByName("man").active = false;
+ }
+ let time = cc.fx.GameConfig.GM_INFO.userPowerTime - nowTime;
+ if (time <= 0) {
+ time = 0;
+ this.Stamina.getChildByName("skyLine").active = false;
+ this.stopPowerTime();
+ this.setHealthInfo(true);
+ var timeTemp = cc.fx.GameTool.getTimeMargin2(time);
+ // 同步显示
+ if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) {
+ this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp;
+ }
+ }
+ else {
+ var timeTemp = cc.fx.GameTool.getTimeMargin2(time);
+ // 同步显示
+ if (this.Stamina && this.Stamina.getChildByName("skyLine").getChildByName("skyTime")) {
+ this.Stamina.getChildByName("skyLine").getChildByName("skyTime").getComponent(cc.Label).string = timeTemp;
+ }
+ }
+ }.bind(this);
+ this.schedule(this.scheduleCallback2, 1);
+ }
+
+ stopPowerTime() {
+ cc.fx.GameTool.getUserPowerTime();
+ if (this.scheduleCallback2) {
+ this.unschedule(this.scheduleCallback2);
+ this.scheduleCallback2 = null;
+ }
+ }
+ openmonthCard() {
+
+ const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
+ if (winCOIN) {
+ const wincoin = winCOIN.getComponent(SceneManager);
+ if (wincoin) {
+ wincoin.openMonthlyCard();
+ console.log("局内")
+ };
+ const wincoin1 = winCOIN.getComponent(JiaZai);
+ if (wincoin1) {
+ if (wincoin1) {
+ wincoin1.openMonthlyCard();
+ this.reward = true;
+ console.log("局外")
+ }
+ }
+ }
+ this.monthCard = true;
+ this.updateIcon()
+ }
+ //更新图标
+ updateIcon() {
+ if (cc.fx.GameConfig.GM_INFO.hp_Max == 7) {
+ this.monthCardTime.active = true;
+
+ } else {
+ this.monthCardTime.active = false;
+
+ }
+ NumberToImage.numberToImageNodes(cc.fx.GameConfig.GM_INFO.monthTime, 35, 15, "button_", this.monthCardTime.children[1], true);
+ }
+
+ // update (dt) {}
}