更改一些游戏配置

This commit is contained in:
COMPUTER\EDY 2025-09-19 17:10:11 +08:00
parent fb9db04aa5
commit 5be9389b92
26 changed files with 8094 additions and 4601 deletions

File diff suppressed because it is too large Load Diff

View File

@ -93,10 +93,17 @@ export default class NewClass extends cc.Component {
wx.setPreferredFramesPerSecond(60); wx.setPreferredFramesPerSecond(60);
// // 设置转发按钮点击后的回调 // // 设置转发按钮点击后的回调
var img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0"; let iphoneArr = [
if (Math.random() < 0.5) { "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0",
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"; "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0",
} "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0",
"https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0",
"https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0",
"https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0",
"https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"
]
let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)];
let img = randomIphone;
// const title = // const title =
// 构建分享参数 // 构建分享参数
const shareParams = { const shareParams = {

View File

@ -1892,8 +1892,8 @@ export default class MapConroler extends cc.Component {
cc.fx.AudioManager._instance.playEffect("anniu_Big", null); cc.fx.AudioManager._instance.playEffect("anniu_Big", null);
console.log("下一关", cc.fx.GameConfig.GM_INFO.level); console.log("下一关", cc.fx.GameConfig.GM_INFO.level);
this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1); this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1);
if (cc.fx.GameConfig.GM_INFO.level > 373) { if (cc.fx.GameConfig.GM_INFO.level > 399) {
cc.fx.GameConfig.GM_INFO.level = 374; cc.fx.GameConfig.GM_INFO.level = 400;
MiniGameSdk.API.showToast("每周更新,敬请期待"); MiniGameSdk.API.showToast("每周更新,敬请期待");
setTimeout(() => { setTimeout(() => {
this.node.parent.parent.getChildByName("Win").getChildByName("tween"). this.node.parent.parent.getChildByName("Win").getChildByName("tween").
@ -1992,7 +1992,7 @@ export default class MapConroler extends cc.Component {
if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) coin = 1000; if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) coin = 1000;
else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) coin = 1500; else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) coin = 1500;
} }
else if (type == "rotate") { else if (type == "revolving") {
if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) coin = 1000; if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) coin = 1000;
else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) coin = 1500; else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 2) coin = 1500;
} }
@ -2039,7 +2039,7 @@ export default class MapConroler extends cc.Component {
if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2) if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2)
cc.fx.GameConfig.GM_INFO.reviewDoor += 1; cc.fx.GameConfig.GM_INFO.reviewDoor += 1;
} }
else if (data.type == "rotate") { else if (data.type == "revolving") {
this.changeRevolvingWall(); this.changeRevolvingWall();
if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2) if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2)
cc.fx.GameConfig.GM_INFO.reviewDoor += 1; cc.fx.GameConfig.GM_INFO.reviewDoor += 1;
@ -2217,7 +2217,7 @@ export default class MapConroler extends cc.Component {
this.stopTimeCutDown(); this.stopTimeCutDown();
let time = 0; let time = 0;
this.gameOver = true; this.gameOver = true;
if (type == "boom" || type == "lock" || type == "rotate") { if (type == "boom" || type == "lock" || type == "revolving") {
time = 2000; time = 2000;
} }
if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) {
@ -2255,6 +2255,7 @@ export default class MapConroler extends cc.Component {
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = true; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = true;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false;
let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").getChildByName("buyBtn"); let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").getChildByName("buyBtn");
buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false;
if (cc.fx.GameConfig.GM_INFO.review == 0) buyBtn.getChildByName("coin1").active = true; if (cc.fx.GameConfig.GM_INFO.review == 0) buyBtn.getChildByName("coin1").active = true;
@ -2265,6 +2266,7 @@ export default class MapConroler extends cc.Component {
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = true; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = true;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false;
let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").getChildByName("buyBtn"); let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").getChildByName("buyBtn");
buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false;
if (cc.fx.GameConfig.GM_INFO.reviewBoom == 0) buyBtn.getChildByName("coin1").active = true; if (cc.fx.GameConfig.GM_INFO.reviewBoom == 0) buyBtn.getChildByName("coin1").active = true;
@ -2275,6 +2277,7 @@ export default class MapConroler extends cc.Component {
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = true; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = true;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = false;
let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").getChildByName("buyBtn"); let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").getChildByName("buyBtn");
buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false;
if (cc.fx.GameConfig.GM_INFO.reviewDoor == 0) buyBtn.getChildByName("coin1").active = true; if (cc.fx.GameConfig.GM_INFO.reviewDoor == 0) buyBtn.getChildByName("coin1").active = true;
@ -2284,8 +2287,9 @@ export default class MapConroler extends cc.Component {
else if (type == "rotate") { else if (type == "rotate") {
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Time").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Boom").active = false;
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = true; this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false;
let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").getChildByName("buyBtn"); this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").active = true;
let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Revolving").getChildByName("buyBtn");
buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false; buyBtn.getChildByName("coin1").active = buyBtn.getChildByName("coin2").active = buyBtn.getChildByName("coin3").active = false;
if (cc.fx.GameConfig.GM_INFO.reviewDoor == 0) buyBtn.getChildByName("coin1").active = true; if (cc.fx.GameConfig.GM_INFO.reviewDoor == 0) buyBtn.getChildByName("coin1").active = true;
else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) buyBtn.getChildByName("coin2").active = true; else if (cc.fx.GameConfig.GM_INFO.reviewDoor == 1) buyBtn.getChildByName("coin2").active = true;

View File

@ -719,10 +719,17 @@ export namespace MiniGameSdk {
wx.setPreferredFramesPerSecond(60); wx.setPreferredFramesPerSecond(60);
// // 设置转发按钮点击后的回调 // // 设置转发按钮点击后的回调
var img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0"; let iphoneArr = [
if (Math.random() < 0.5) { "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0",
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"; "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0",
} "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0",
"https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0",
"https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0",
"https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0",
"https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"
]
let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)];
let img = randomIphone;
// const title = // const title =
// 构建分享参数 // 构建分享参数
const shareParams = { const shareParams = {
@ -1475,10 +1482,17 @@ export namespace MiniGameSdk {
// 获取关卡信息和 UID // 获取关卡信息和 UID
const level = helpLevel; const level = helpLevel;
const uid = cc.fx.GameConfig.GM_INFO.uid; const uid = cc.fx.GameConfig.GM_INFO.uid;
let img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0"; let iphoneArr = [
if (Math.random() < 0.5) { "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0",
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"; "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0",
} "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0",
"https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0",
"https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0",
"https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0",
"https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"
]
let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)];
let img = randomIphone;
// const title = // const title =
// 构建分享参数 // 构建分享参数
const shareParams = { const shareParams = {

View File

@ -359,8 +359,8 @@ var GameTool = {
//增加关卡数 //增加关卡数
addLevel(time1, time2) { addLevel(time1, time2) {
cc.fx.GameConfig.GM_INFO.level += 1; cc.fx.GameConfig.GM_INFO.level += 1;
if (cc.fx.GameConfig.GM_INFO.level > 373) { if (cc.fx.GameConfig.GM_INFO.level > 399) {
cc.fx.GameConfig.GM_INFO.level = 374; cc.fx.GameConfig.GM_INFO.level = 400;
} }
MiniGameSdk.API.setNewCloudlevel(); MiniGameSdk.API.setNewCloudlevel();
const timestamp = Date.now(); const timestamp = Date.now();

View File

@ -15,7 +15,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{844,956},{138,69}}</string> <string>{{931,848},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -30,9 +30,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{261,1113},{258,69}}</string> <string>{{324,908},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>10color3.png</key> <key>10color3.png</key>
<dict> <dict>
@ -60,7 +60,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{838,751},{61,146}}</string> <string>{{846,722},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -75,9 +75,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,266}</string> <string>{61,266}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{578,482},{61,266}}</string> <string>{{395,908},{61,266}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>10color6.png</key> <key>10color6.png</key>
<dict> <dict>
@ -105,7 +105,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{698,747},{138,69}}</string> <string>{{647,774},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -120,7 +120,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{317,490},{258,69}}</string> <string>{{316,490},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -150,7 +150,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{655,967},{61,146}}</string> <string>{{532,1030},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -195,9 +195,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{700,818},{138,69}}</string> <string>{{848,356},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>2color2.png</key> <key>2color2.png</key>
<dict> <dict>
@ -210,7 +210,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{317,561},{258,69}}</string> <string>{{577,419},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -240,7 +240,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{711,684},{61,146}}</string> <string>{{836,491},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -255,9 +255,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,266}</string> <string>{61,266}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{317,632},{61,266}}</string> <string>{{316,561},{61,266}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>2color6.png</key> <key>2color6.png</key>
<dict> <dict>
@ -285,9 +285,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{771,818},{138,69}}</string> <string>{{851,554},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>3color2.png</key> <key>3color2.png</key>
<dict> <dict>
@ -300,7 +300,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{316,695},{258,69}}</string> <string>{{576,490},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -330,9 +330,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{718,958},{61,146}}</string> <string>{{851,625},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>3color5.png</key> <key>3color5.png</key>
<dict> <dict>
@ -345,7 +345,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,267}</string> <string>{61,267}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{190,688},{61,267}}</string> <string>{{190,419},{61,267}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -375,7 +375,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{718,1106},{138,69}}</string> <string>{{580,879},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -390,7 +390,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{316,766},{258,69}}</string> <string>{{379,561},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -420,7 +420,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{781,958},{61,146}}</string> <string>{{595,1021},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -435,7 +435,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,267}</string> <string>{61,267}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{254,419},{61,267}}</string> <string>{{190,688},{61,267}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -465,7 +465,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{718,1177},{138,69}}</string> <string>{{580,950},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -480,7 +480,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{316,837},{258,69}}</string> <string>{{379,632},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -510,7 +510,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{853,496},{61,146}}</string> <string>{{658,1021},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -525,7 +525,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,266}</string> <string>{61,266}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{316,908},{61,266}}</string> <string>{{379,774},{61,266}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -555,7 +555,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{848,356},{138,69}}</string> <string>{{720,879},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -570,9 +570,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{190,957},{258,69}}</string> <string>{{379,703},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>6color3.png</key> <key>6color3.png</key>
<dict> <dict>
@ -600,7 +600,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{916,496},{61,146}}</string> <string>{{721,1019},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -615,7 +615,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,267}</string> <string>{61,267}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{253,688},{61,267}}</string> <string>{{253,419},{61,267}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -645,7 +645,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{859,680},{138,69}}</string> <string>{{791,848},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -660,9 +660,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{261,971},{258,69}}</string> <string>{{190,957},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>7color3.png</key> <key>7color3.png</key>
<dict> <dict>
@ -690,9 +690,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{62,147}</string> <string>{62,147}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{591,967},{62,147}}</string> <string>{{837,427},{62,147}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>7color5.png</key> <key>7color5.png</key>
<dict> <dict>
@ -705,7 +705,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{62,267}</string> <string>{62,267}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{190,419},{62,267}}</string> <string>{{951,1},{62,267}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -735,7 +735,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{842,814},{138,69}}</string> <string>{{791,919},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -750,7 +750,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{259,69}</string> <string>{259,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{317,419},{259,69}}</string> <string>{{316,419},{259,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -780,7 +780,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,145}</string> <string>{61,145}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{655,1115},{61,145}}</string> <string>{{917,990},{61,145}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -795,9 +795,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,266}</string> <string>{61,266}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{261,1184},{61,266}}</string> <string>{{261,957},{61,266}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>8color6.png</key> <key>8color6.png</key>
<dict> <dict>
@ -825,9 +825,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{842,885},{138,69}}</string> <string>{{846,990},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>9color2.png</key> <key>9color2.png</key>
<dict> <dict>
@ -840,7 +840,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{258,69}</string> <string>{258,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{261,1042},{258,69}}</string> <string>{{316,837},{258,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -870,7 +870,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{60,146}</string> <string>{60,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{921,1096},{60,146}}</string> <string>{{784,1019},{60,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -885,9 +885,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,267}</string> <string>{61,267}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{578,419},{61,267}}</string> <string>{{253,688},{61,267}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>9color6.png</key> <key>9color6.png</key>
<dict> <dict>
@ -915,7 +915,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{120,120}</string> <string>{120,120}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{576,707},{120,120}}</string> <string>{{458,908},{120,120}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -930,9 +930,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{585,629},{76,124}}</string> <string>{{773,561},{76,124}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>downRight.png</key> <key>downRight.png</key>
<dict> <dict>
@ -945,7 +945,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{576,829},{70,122}}</string> <string>{{735,1167},{70,122}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -960,9 +960,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{951,1},{140,72}}</string> <string>{{639,700},{140,72}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>leftUp.png</key> <key>leftUp.png</key>
<dict> <dict>
@ -975,7 +975,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{584,901},{64,114}}</string> <string>{{466,1178},{64,114}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -990,7 +990,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{577,545},{140,82}}</string> <string>{{1,1168},{140,82}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -1005,9 +1005,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{529,1153},{64,108}}</string> <string>{{895,1137},{64,108}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>shu_zl1.png</key> <key>shu_zl1.png</key>
<dict> <dict>
@ -1020,7 +1020,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{9,42}</string> <string>{9,42}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{261,957},{9,42}}</string> <string>{{980,1110},{9,42}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -1035,9 +1035,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{58,34}</string> <string>{58,34}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{919,427},{58,34}}</string> <string>{{951,270},{58,34}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>shu_zl1_2.png</key> <key>shu_zl1_2.png</key>
<dict> <dict>
@ -1050,9 +1050,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{118,34}</string> <string>{118,34}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{853,644},{118,34}}</string> <string>{{859,1130},{118,34}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>shu_zl1_3.png</key> <key>shu_zl1_3.png</key>
<dict> <dict>
@ -1065,7 +1065,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{178,34}</string> <string>{178,34}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{521,971},{178,34}}</string> <string>{{988,270},{178,34}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -1080,9 +1080,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{40,10}</string> <string>{40,10}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1013,427},{40,10}}</string> <string>{{582,1240},{40,10}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>shu_zl2_1.png</key> <key>shu_zl2_1.png</key>
<dict> <dict>
@ -1095,9 +1095,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{32,54}</string> <string>{32,54}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{986,1052},{32,54}}</string> <string>{{961,1198},{32,54}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>shu_zl2_11.png</key> <key>shu_zl2_11.png</key>
<dict> <dict>
@ -1110,9 +1110,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{32,59}</string> <string>{32,59}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{591,1116},{32,59}}</string> <string>{{961,1137},{32,59}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>shu_zl2_2.png</key> <key>shu_zl2_2.png</key>
<dict> <dict>
@ -1125,9 +1125,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{32,114}</string> <string>{32,114}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{986,936},{32,114}}</string> <string>{{143,1217},{32,114}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>shu_zl2_22.png</key> <key>shu_zl2_22.png</key>
<dict> <dict>
@ -1140,7 +1140,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{32,120}</string> <string>{32,120}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{982,814},{32,120}}</string> <string>{{980,988},{32,120}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -1155,9 +1155,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{32,175}</string> <string>{32,175}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{979,427},{32,175}}</string> <string>{{846,688},{32,175}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>shu_zl2_33.png</key> <key>shu_zl2_33.png</key>
<dict> <dict>
@ -1170,9 +1170,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{32,180}</string> <string>{32,180}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{557,971},{32,180}}</string> <string>{{576,845},{32,180}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>turn_arrow.png</key> <key>turn_arrow.png</key>
<dict> <dict>
@ -1185,9 +1185,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{36,24}</string> <string>{36,24}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{979,604},{36,24}}</string> <string>{{986,450},{36,24}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>turn_bg.png</key> <key>turn_bg.png</key>
<dict> <dict>
@ -1196,11 +1196,11 @@
<key>spriteOffset</key> <key>spriteOffset</key>
<string>{0,0}</string> <string>{0,0}</string>
<key>spriteSize</key> <key>spriteSize</key>
<string>{79,53}</string> <string>{80,54}</string>
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{79,53}</string> <string>{80,54}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{1,1168},{79,53}}</string> <string>{{781,687},{80,54}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -1215,7 +1215,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{951,143},{140,72}}</string> <string>{{458,1030},{140,72}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -1230,9 +1230,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{951,285},{140,72}}</string> <string>{{324,1178},{140,72}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>wal_up.png</key> <key>wal_up.png</key>
<dict> <dict>
@ -1245,7 +1245,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{584,901},{64,114}}</string> <string>{{466,1178},{64,114}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <true/>
</dict> </dict>
@ -1260,9 +1260,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{138,69}</string> <string>{138,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{915,956},{138,69}}</string> <string>{{595,1169},{138,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>wall2.png</key> <key>wall2.png</key>
<dict> <dict>
@ -1275,9 +1275,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,146}</string> <string>{61,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{858,1096},{61,146}}</string> <string>{{787,785},{61,146}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>wall7.png</key> <key>wall7.png</key>
<dict> <dict>
@ -1290,9 +1290,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{61,69}</string> <string>{61,69}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{127,1166},{61,69}}</string> <string>{{935,785},{61,69}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <true/>
</dict> </dict>
<key>wall_down.png</key> <key>wall_down.png</key>
<dict> <dict>
@ -1305,9 +1305,9 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{146,146}</string> <string>{146,146}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{951,1},{140,72}}</string> <string>{{639,700},{140,72}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<true/> <false/>
</dict> </dict>
<key>zhangai.png</key> <key>zhangai.png</key>
<dict> <dict>
@ -1320,7 +1320,7 @@
<key>spriteSourceSize</key> <key>spriteSourceSize</key>
<string>{132,137}</string> <string>{132,137}</string>
<key>textureRect</key> <key>textureRect</key>
<string>{{719,545},{132,137}}</string> <string>{{639,561},{132,137}}</string>
<key>textureRotated</key> <key>textureRotated</key>
<false/> <false/>
</dict> </dict>
@ -1336,9 +1336,9 @@
<key>realTextureFileName</key> <key>realTextureFileName</key>
<string>door.png</string> <string>door.png</string>
<key>size</key> <key>size</key>
<string>{1024,1261}</string> <string>{1023,1251}</string>
<key>smartupdate</key> <key>smartupdate</key>
<string>$TexturePacker:SmartUpdate:00c2049ea8fb2a3b9fb62eb65923d646:ad832604d65bd5cdf3210e3f1ed1919c:db7a2f380db9915dc051ce2c1170bc84$</string> <string>$TexturePacker:SmartUpdate:2eded28d713241c7369b069660a8de3a:6cea746c78d041116de22154e9ef312b:db7a2f380db9915dc051ce2c1170bc84$</string>
<key>textureFileName</key> <key>textureFileName</key>
<string>door.png</string> <string>door.png</string>
</dict> </dict>

View File

@ -4,8 +4,8 @@
"importer": "asset", "importer": "asset",
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"size": { "size": {
"width": 1024, "width": 1023,
"height": 1261 "height": 1251
}, },
"type": "Texture Packer", "type": "Texture Packer",
"subMetas": { "subMetas": {
@ -19,8 +19,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 844, "trimX": 931,
"trimY": 956, "trimY": 848,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -39,11 +39,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 261, "trimX": 324,
"trimY": 1113, "trimY": 908,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -88,8 +88,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 838, "trimX": 846,
"trimY": 751, "trimY": 722,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -108,11 +108,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 578, "trimX": 395,
"trimY": 482, "trimY": 908,
"width": 61, "width": 61,
"height": 266, "height": 266,
"rawWidth": 61, "rawWidth": 61,
@ -157,8 +157,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 698, "trimX": 647,
"trimY": 747, "trimY": 774,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -180,7 +180,7 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 317, "trimX": 316,
"trimY": 490, "trimY": 490,
"width": 258, "width": 258,
"height": 69, "height": 69,
@ -226,8 +226,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 655, "trimX": 532,
"trimY": 967, "trimY": 1030,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -292,11 +292,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 700, "trimX": 848,
"trimY": 818, "trimY": 356,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -318,8 +318,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 317, "trimX": 577,
"trimY": 561, "trimY": 419,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -364,8 +364,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 711, "trimX": 836,
"trimY": 684, "trimY": 491,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -384,11 +384,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 317, "trimX": 316,
"trimY": 632, "trimY": 561,
"width": 61, "width": 61,
"height": 266, "height": 266,
"rawWidth": 61, "rawWidth": 61,
@ -430,11 +430,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 771, "trimX": 851,
"trimY": 818, "trimY": 554,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -456,8 +456,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 316, "trimX": 576,
"trimY": 695, "trimY": 490,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -499,11 +499,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 718, "trimX": 851,
"trimY": 958, "trimY": 625,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -526,7 +526,7 @@
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 190, "trimX": 190,
"trimY": 688, "trimY": 419,
"width": 61, "width": 61,
"height": 267, "height": 267,
"rawWidth": 61, "rawWidth": 61,
@ -571,8 +571,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 718, "trimX": 580,
"trimY": 1106, "trimY": 879,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -594,8 +594,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 316, "trimX": 379,
"trimY": 766, "trimY": 561,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -640,8 +640,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 781, "trimX": 595,
"trimY": 958, "trimY": 1021,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -663,8 +663,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 254, "trimX": 190,
"trimY": 419, "trimY": 688,
"width": 61, "width": 61,
"height": 267, "height": 267,
"rawWidth": 61, "rawWidth": 61,
@ -709,8 +709,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 718, "trimX": 580,
"trimY": 1177, "trimY": 950,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -732,8 +732,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 316, "trimX": 379,
"trimY": 837, "trimY": 632,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -778,8 +778,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 853, "trimX": 658,
"trimY": 496, "trimY": 1021,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -801,8 +801,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 316, "trimX": 379,
"trimY": 908, "trimY": 774,
"width": 61, "width": 61,
"height": 266, "height": 266,
"rawWidth": 61, "rawWidth": 61,
@ -847,8 +847,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 848, "trimX": 720,
"trimY": 356, "trimY": 879,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -867,11 +867,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 190, "trimX": 379,
"trimY": 957, "trimY": 703,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -916,8 +916,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 916, "trimX": 721,
"trimY": 496, "trimY": 1019,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -940,7 +940,7 @@
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 253, "trimX": 253,
"trimY": 688, "trimY": 419,
"width": 61, "width": 61,
"height": 267, "height": 267,
"rawWidth": 61, "rawWidth": 61,
@ -985,8 +985,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 859, "trimX": 791,
"trimY": 680, "trimY": 848,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -1005,11 +1005,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 261, "trimX": 190,
"trimY": 971, "trimY": 957,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -1051,11 +1051,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 591, "trimX": 837,
"trimY": 967, "trimY": 427,
"width": 62, "width": 62,
"height": 147, "height": 147,
"rawWidth": 62, "rawWidth": 62,
@ -1077,8 +1077,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 190, "trimX": 951,
"trimY": 419, "trimY": 1,
"width": 62, "width": 62,
"height": 267, "height": 267,
"rawWidth": 62, "rawWidth": 62,
@ -1123,8 +1123,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 842, "trimX": 791,
"trimY": 814, "trimY": 919,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -1146,7 +1146,7 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 317, "trimX": 316,
"trimY": 419, "trimY": 419,
"width": 259, "width": 259,
"height": 69, "height": 69,
@ -1192,8 +1192,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 655, "trimX": 917,
"trimY": 1115, "trimY": 990,
"width": 61, "width": 61,
"height": 145, "height": 145,
"rawWidth": 61, "rawWidth": 61,
@ -1212,11 +1212,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 261, "trimX": 261,
"trimY": 1184, "trimY": 957,
"width": 61, "width": 61,
"height": 266, "height": 266,
"rawWidth": 61, "rawWidth": 61,
@ -1258,11 +1258,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 842, "trimX": 846,
"trimY": 885, "trimY": 990,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -1284,8 +1284,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 261, "trimX": 316,
"trimY": 1042, "trimY": 837,
"width": 258, "width": 258,
"height": 69, "height": 69,
"rawWidth": 258, "rawWidth": 258,
@ -1330,8 +1330,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 921, "trimX": 784,
"trimY": 1096, "trimY": 1019,
"width": 60, "width": 60,
"height": 146, "height": 146,
"rawWidth": 60, "rawWidth": 60,
@ -1350,11 +1350,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 578, "trimX": 253,
"trimY": 419, "trimY": 688,
"width": 61, "width": 61,
"height": 267, "height": 267,
"rawWidth": 61, "rawWidth": 61,
@ -1399,8 +1399,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 576, "trimX": 458,
"trimY": 707, "trimY": 908,
"width": 120, "width": 120,
"height": 120, "height": 120,
"rawWidth": 120, "rawWidth": 120,
@ -1419,11 +1419,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": -34, "offsetX": -34,
"offsetY": -11, "offsetY": -11,
"trimX": 585, "trimX": 773,
"trimY": 629, "trimY": 561,
"width": 76, "width": 76,
"height": 124, "height": 124,
"rawWidth": 146, "rawWidth": 146,
@ -1445,8 +1445,8 @@
"rotated": true, "rotated": true,
"offsetX": 33, "offsetX": 33,
"offsetY": -12, "offsetY": -12,
"trimX": 576, "trimX": 735,
"trimY": 829, "trimY": 1167,
"width": 70, "width": 70,
"height": 122, "height": 122,
"rawWidth": 146, "rawWidth": 146,
@ -1465,11 +1465,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": -37, "offsetY": -37,
"trimX": 951, "trimX": 639,
"trimY": 1, "trimY": 700,
"width": 140, "width": 140,
"height": 72, "height": 72,
"rawWidth": 146, "rawWidth": 146,
@ -1491,8 +1491,8 @@
"rotated": true, "rotated": true,
"offsetX": -39, "offsetX": -39,
"offsetY": 16, "offsetY": 16,
"trimX": 584, "trimX": 466,
"trimY": 901, "trimY": 1178,
"width": 64, "width": 64,
"height": 114, "height": 114,
"rawWidth": 146, "rawWidth": 146,
@ -1514,8 +1514,8 @@
"rotated": false, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": -32, "offsetY": -32,
"trimX": 577, "trimX": 1,
"trimY": 545, "trimY": 1168,
"width": 140, "width": 140,
"height": 82, "height": 82,
"rawWidth": 146, "rawWidth": 146,
@ -1534,11 +1534,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 36, "offsetX": 36,
"offsetY": 17, "offsetY": 17,
"trimX": 529, "trimX": 895,
"trimY": 1153, "trimY": 1137,
"width": 64, "width": 64,
"height": 108, "height": 108,
"rawWidth": 146, "rawWidth": 146,
@ -1560,8 +1560,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 261, "trimX": 980,
"trimY": 957, "trimY": 1110,
"width": 9, "width": 9,
"height": 42, "height": 42,
"rawWidth": 9, "rawWidth": 9,
@ -1580,11 +1580,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 919, "trimX": 951,
"trimY": 427, "trimY": 270,
"width": 58, "width": 58,
"height": 34, "height": 34,
"rawWidth": 58, "rawWidth": 58,
@ -1603,11 +1603,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 853, "trimX": 859,
"trimY": 644, "trimY": 1130,
"width": 118, "width": 118,
"height": 34, "height": 34,
"rawWidth": 118, "rawWidth": 118,
@ -1629,8 +1629,8 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 521, "trimX": 988,
"trimY": 971, "trimY": 270,
"width": 178, "width": 178,
"height": 34, "height": 34,
"rawWidth": 178, "rawWidth": 178,
@ -1649,11 +1649,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1013, "trimX": 582,
"trimY": 427, "trimY": 1240,
"width": 40, "width": 40,
"height": 10, "height": 10,
"rawWidth": 40, "rawWidth": 40,
@ -1672,11 +1672,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 986, "trimX": 961,
"trimY": 1052, "trimY": 1198,
"width": 32, "width": 32,
"height": 54, "height": 54,
"rawWidth": 32, "rawWidth": 32,
@ -1695,11 +1695,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 591, "trimX": 961,
"trimY": 1116, "trimY": 1137,
"width": 32, "width": 32,
"height": 59, "height": 59,
"rawWidth": 32, "rawWidth": 32,
@ -1718,11 +1718,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 986, "trimX": 143,
"trimY": 936, "trimY": 1217,
"width": 32, "width": 32,
"height": 114, "height": 114,
"rawWidth": 32, "rawWidth": 32,
@ -1744,8 +1744,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 982, "trimX": 980,
"trimY": 814, "trimY": 988,
"width": 32, "width": 32,
"height": 120, "height": 120,
"rawWidth": 32, "rawWidth": 32,
@ -1764,11 +1764,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 979, "trimX": 846,
"trimY": 427, "trimY": 688,
"width": 32, "width": 32,
"height": 175, "height": 175,
"rawWidth": 32, "rawWidth": 32,
@ -1787,11 +1787,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 557, "trimX": 576,
"trimY": 971, "trimY": 845,
"width": 32, "width": 32,
"height": 180, "height": 180,
"rawWidth": 32, "rawWidth": 32,
@ -1810,11 +1810,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 979, "trimX": 986,
"trimY": 604, "trimY": 450,
"width": 36, "width": 36,
"height": 24, "height": 24,
"rawWidth": 36, "rawWidth": 36,
@ -1836,12 +1836,12 @@
"rotated": true, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 1, "trimX": 781,
"trimY": 1168, "trimY": 687,
"width": 79, "width": 80,
"height": 53, "height": 54,
"rawWidth": 79, "rawWidth": 80,
"rawHeight": 53, "rawHeight": 54,
"borderTop": 0, "borderTop": 0,
"borderBottom": 0, "borderBottom": 0,
"borderLeft": 30, "borderLeft": 30,
@ -1859,8 +1859,8 @@
"rotated": true, "rotated": true,
"offsetX": -1, "offsetX": -1,
"offsetY": 34, "offsetY": 34,
"trimX": 951, "trimX": 458,
"trimY": 143, "trimY": 1030,
"width": 140, "width": 140,
"height": 72, "height": 72,
"rawWidth": 146, "rawWidth": 146,
@ -1879,11 +1879,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": -2, "offsetX": -2,
"offsetY": 35, "offsetY": 35,
"trimX": 951, "trimX": 324,
"trimY": 285, "trimY": 1178,
"width": 140, "width": 140,
"height": 72, "height": 72,
"rawWidth": 146, "rawWidth": 146,
@ -1905,8 +1905,8 @@
"rotated": true, "rotated": true,
"offsetX": -39, "offsetX": -39,
"offsetY": 16, "offsetY": 16,
"trimX": 584, "trimX": 466,
"trimY": 901, "trimY": 1178,
"width": 64, "width": 64,
"height": 114, "height": 114,
"rawWidth": 146, "rawWidth": 146,
@ -1925,11 +1925,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 915, "trimX": 595,
"trimY": 956, "trimY": 1169,
"width": 138, "width": 138,
"height": 69, "height": 69,
"rawWidth": 138, "rawWidth": 138,
@ -1948,11 +1948,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 858, "trimX": 787,
"trimY": 1096, "trimY": 785,
"width": 61, "width": 61,
"height": 146, "height": 146,
"rawWidth": 61, "rawWidth": 61,
@ -1971,11 +1971,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": false, "rotated": true,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 127, "trimX": 935,
"trimY": 1166, "trimY": 785,
"width": 61, "width": 61,
"height": 69, "height": 69,
"rawWidth": 61, "rawWidth": 61,
@ -1994,11 +1994,11 @@
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58", "rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
"trimType": "auto", "trimType": "auto",
"trimThreshold": 1, "trimThreshold": 1,
"rotated": true, "rotated": false,
"offsetX": -1, "offsetX": -1,
"offsetY": -37, "offsetY": -37,
"trimX": 951, "trimX": 639,
"trimY": 1, "trimY": 700,
"width": 140, "width": 140,
"height": 72, "height": 72,
"rawWidth": 146, "rawWidth": 146,
@ -2020,8 +2020,8 @@
"rotated": false, "rotated": false,
"offsetX": 0, "offsetX": 0,
"offsetY": 0, "offsetY": 0,
"trimX": 719, "trimX": 639,
"trimY": 545, "trimY": 561,
"width": 132, "width": 132,
"height": 137, "height": 137,
"rawWidth": 132, "rawWidth": 132,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 141 KiB

After

Width:  |  Height:  |  Size: 129 KiB

View File

@ -8,8 +8,8 @@
"premultiplyAlpha": false, "premultiplyAlpha": false,
"genMipmaps": false, "genMipmaps": false,
"packable": true, "packable": true,
"width": 1024, "width": 1023,
"height": 1261, "height": 1251,
"platformSettings": {}, "platformSettings": {},
"subMetas": {} "subMetas": {}
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "5f345ff4-7953-40a2-81ce-79b58f18f2ca",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 300,
"height": 215,
"platformSettings": {},
"subMetas": {
"Revolving": {
"ver": "1.0.6",
"uuid": "3021f5d4-c725-4a26-bf66-a91367f77e91",
"importer": "sprite-frame",
"rawTextureUuid": "5f345ff4-7953-40a2-81ce-79b58f18f2ca",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 300,
"height": 215,
"rawWidth": 300,
"rawHeight": 215,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "f92fff73-5f2a-412c-9bf0-0202d6f2b0a2",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 316,
"height": 78,
"platformSettings": {},
"subMetas": {
"Revolving_btn": {
"ver": "1.0.6",
"uuid": "93ff2036-0218-4ff8-a9e8-7f4dbde68650",
"importer": "sprite-frame",
"rawTextureUuid": "f92fff73-5f2a-412c-9bf0-0202d6f2b0a2",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 316,
"height": 78,
"rawWidth": 316,
"rawHeight": 78,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "1e1e84b8-433e-4535-b1fa-9a001c7b60fb",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 582,
"height": 57,
"platformSettings": {},
"subMetas": {
"Revolving_icon": {
"ver": "1.0.6",
"uuid": "33eaf1fc-018f-46b0-9494-0761ae8aa86a",
"importer": "sprite-frame",
"rawTextureUuid": "1e1e84b8-433e-4535-b1fa-9a001c7b60fb",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 582,
"height": 57,
"rawWidth": 582,
"rawHeight": 57,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "31c1327f-a89a-48c0-adfc-b1c41b228652",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 312,
"height": 66,
"platformSettings": {},
"subMetas": {
"Revolving_title": {
"ver": "1.0.6",
"uuid": "d0858e7d-9fce-4ad8-96b7-d3f205f7553b",
"importer": "sprite-frame",
"rawTextureUuid": "31c1327f-a89a-48c0-adfc-b1c41b228652",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 312,
"height": 66,
"rawWidth": 312,
"rawHeight": 66,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

View File

@ -294,10 +294,17 @@ export default class DailyQuests extends cc.Component {
} }
} }
else if (data == "share") { else if (data == "share") {
let img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0"; let iphoneArr = [
if (Math.random() < 0.5) { "https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/0",
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"; "https://mmocgame.qpic.cn/wechatgame/TWKuFxnCn7ksT3KXfhCC4yOfZeD4b0hrptDSJ2DFmwz02Yc8SppcwyPAOoS1MsMr/0",
} "https://mmocgame.qpic.cn/wechatgame/dibaH2x79o1wSwBDymhyzXwfcyicaDb6R5icrFIO7251T4NgxIzXRXErHvAvn50vXFA/0",
"https://mmocgame.qpic.cn/wechatgame/Pgxad80d8ws3o69OicV3DTuTkcP81upQeJ0JBNS1xib3pzYLTF1ZqGY3niciaI7ICKlL/0",
"https://mmocgame.qpic.cn/wechatgame/SfB1vrRBIHKn9ffKFt5sib62yPLE31m2rCvk6DKlEicJNVZSoryEObD6ItwsQn4xibR/0",
"https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0",
"https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0"
]
let randomIphone = iphoneArr[Math.floor(Math.random() * iphoneArr.length)];
let img = randomIphone;
const shareParams = { const shareParams = {
title: '如果你突然打了个喷嚏,那一定是我在等你帮忙过关!', // 分享标题 title: '如果你突然打了个喷嚏,那一定是我在等你帮忙过关!', // 分享标题
imageUrl: img // 分享图片链接 imageUrl: img // 分享图片链接

View File

@ -39,6 +39,16 @@
"level": 70, "level": 70,
"name": "daoju5", "name": "daoju5",
"tips": "炸弹方块第一次出现" "tips": "炸弹方块第一次出现"
},
{
"level": 375,
"name": "daoju10",
"tips": "旋转门第一次出现"
},
{
"level": 396,
"name": "daoju11",
"tips": "灰色不可消除方块第一次出现"
} }
] ]
} }

View File

@ -39,6 +39,21 @@
"level": 70, "level": 70,
"name": "daoju5", "name": "daoju5",
"tips": "炸弹方块第一次出现" "tips": "炸弹方块第一次出现"
},
{
"level": 120,
"name": "daoju12",
"tips": "单色通过地块"
},
{
"level": 375,
"name": "daoju10",
"tips": "旋转门第一次出现"
},
{
"level": 396,
"name": "daoju11",
"tips": "灰色不可消除方块第一次出现"
} }
] ]
} }

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 689,
"height": 528,
"platformSettings": {},
"subMetas": {
"daoju10": {
"ver": "1.0.6",
"uuid": "2692332a-ba65-4e13-bb54-40af830a664f",
"importer": "sprite-frame",
"rawTextureUuid": "56bb68cb-b9e7-4e96-b7de-2a974e468856",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 689,
"height": 528,
"rawWidth": 689,
"rawHeight": 528,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 591,
"height": 721,
"platformSettings": {},
"subMetas": {
"daoju11": {
"ver": "1.0.6",
"uuid": "dc936637-2ef4-40b6-95a3-f67a000803f7",
"importer": "sprite-frame",
"rawTextureUuid": "ca324a72-c9a6-4539-be8a-9db36b7f4952",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 591,
"height": 721,
"rawWidth": 591,
"rawHeight": 721,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,38 @@
{
"ver": "2.3.7",
"uuid": "9c437e8d-6a67-483f-829b-859d339ee270",
"importer": "texture",
"type": "sprite",
"wrapMode": "clamp",
"filterMode": "bilinear",
"premultiplyAlpha": false,
"genMipmaps": false,
"packable": true,
"width": 676,
"height": 566,
"platformSettings": {},
"subMetas": {
"daoju12": {
"ver": "1.0.6",
"uuid": "44f93c2f-a775-4468-a0c9-ec58e9acd9e8",
"importer": "sprite-frame",
"rawTextureUuid": "9c437e8d-6a67-483f-829b-859d339ee270",
"trimType": "auto",
"trimThreshold": 1,
"rotated": false,
"offsetX": 0,
"offsetY": 0,
"trimX": 0,
"trimY": 0,
"width": 676,
"height": 566,
"rawWidth": 676,
"rawHeight": 566,
"borderTop": 0,
"borderBottom": 0,
"borderLeft": 0,
"borderRight": 0,
"subMetas": {}
}
}
}