更改一些游戏配置
|
|
@ -93,10 +93,17 @@ export default class NewClass extends cc.Component {
|
|||
wx.setPreferredFramesPerSecond(60);
|
||||
// // 设置转发按钮点击后的回调
|
||||
|
||||
var img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0";
|
||||
if (Math.random() < 0.5) {
|
||||
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0";
|
||||
}
|
||||
let iphoneArr = [
|
||||
"https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/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 shareParams = {
|
||||
|
|
|
|||
|
|
@ -1892,8 +1892,8 @@ export default class MapConroler extends cc.Component {
|
|||
cc.fx.AudioManager._instance.playEffect("anniu_Big", null);
|
||||
console.log("下一关", cc.fx.GameConfig.GM_INFO.level);
|
||||
this.uploadToCloud(cc.fx.GameConfig.GM_INFO.level + 1);
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 373) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 374;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 399) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 400;
|
||||
MiniGameSdk.API.showToast("每周更新,敬请期待");
|
||||
setTimeout(() => {
|
||||
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;
|
||||
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;
|
||||
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)
|
||||
cc.fx.GameConfig.GM_INFO.reviewDoor += 1;
|
||||
}
|
||||
else if (data.type == "rotate") {
|
||||
else if (data.type == "revolving") {
|
||||
this.changeRevolvingWall();
|
||||
if (cc.fx.GameConfig.GM_INFO.reviewDoor < 2)
|
||||
cc.fx.GameConfig.GM_INFO.reviewDoor += 1;
|
||||
|
|
@ -2217,7 +2217,7 @@ export default class MapConroler extends cc.Component {
|
|||
this.stopTimeCutDown();
|
||||
let time = 0;
|
||||
this.gameOver = true;
|
||||
if (type == "boom" || type == "lock" || type == "rotate") {
|
||||
if (type == "boom" || type == "lock" || type == "revolving") {
|
||||
time = 2000;
|
||||
}
|
||||
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("Boom").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");
|
||||
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;
|
||||
|
|
@ -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("Boom").active = true;
|
||||
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");
|
||||
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;
|
||||
|
|
@ -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("Boom").active = false;
|
||||
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");
|
||||
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;
|
||||
|
|
@ -2284,8 +2287,9 @@ export default class MapConroler extends cc.Component {
|
|||
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("Boom").active = false;
|
||||
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = true;
|
||||
let buyBtn = this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").getChildByName("buyBtn");
|
||||
this.node.parent.parent.getChildByName("Lose").getChildByName("lose").getChildByName("Lock").active = false;
|
||||
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;
|
||||
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;
|
||||
|
|
|
|||
|
|
@ -719,10 +719,17 @@ export namespace MiniGameSdk {
|
|||
wx.setPreferredFramesPerSecond(60);
|
||||
// // 设置转发按钮点击后的回调
|
||||
|
||||
var img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0";
|
||||
if (Math.random() < 0.5) {
|
||||
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0";
|
||||
}
|
||||
let iphoneArr = [
|
||||
"https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/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 shareParams = {
|
||||
|
|
@ -1475,10 +1482,17 @@ export namespace MiniGameSdk {
|
|||
// 获取关卡信息和 UID
|
||||
const level = helpLevel;
|
||||
const uid = cc.fx.GameConfig.GM_INFO.uid;
|
||||
let img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0";
|
||||
if (Math.random() < 0.5) {
|
||||
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0";
|
||||
}
|
||||
let iphoneArr = [
|
||||
"https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/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 shareParams = {
|
||||
|
|
|
|||
|
|
@ -359,8 +359,8 @@ var GameTool = {
|
|||
//增加关卡数
|
||||
addLevel(time1, time2) {
|
||||
cc.fx.GameConfig.GM_INFO.level += 1;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 373) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 374;
|
||||
if (cc.fx.GameConfig.GM_INFO.level > 399) {
|
||||
cc.fx.GameConfig.GM_INFO.level = 400;
|
||||
}
|
||||
MiniGameSdk.API.setNewCloudlevel();
|
||||
const timestamp = Date.now();
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{844,956},{138,69}}</string>
|
||||
<string>{{931,848},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -30,9 +30,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1113},{258,69}}</string>
|
||||
<string>{{324,908},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>10color3.png</key>
|
||||
<dict>
|
||||
|
|
@ -60,7 +60,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{838,751},{61,146}}</string>
|
||||
<string>{{846,722},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -75,9 +75,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{578,482},{61,266}}</string>
|
||||
<string>{{395,908},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>10color6.png</key>
|
||||
<dict>
|
||||
|
|
@ -105,7 +105,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{698,747},{138,69}}</string>
|
||||
<string>{{647,774},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -120,7 +120,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,490},{258,69}}</string>
|
||||
<string>{{316,490},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -150,7 +150,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{655,967},{61,146}}</string>
|
||||
<string>{{532,1030},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -195,9 +195,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{700,818},{138,69}}</string>
|
||||
<string>{{848,356},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>2color2.png</key>
|
||||
<dict>
|
||||
|
|
@ -210,7 +210,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,561},{258,69}}</string>
|
||||
<string>{{577,419},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -240,7 +240,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{711,684},{61,146}}</string>
|
||||
<string>{{836,491},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -255,9 +255,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,632},{61,266}}</string>
|
||||
<string>{{316,561},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>2color6.png</key>
|
||||
<dict>
|
||||
|
|
@ -285,9 +285,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{771,818},{138,69}}</string>
|
||||
<string>{{851,554},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>3color2.png</key>
|
||||
<dict>
|
||||
|
|
@ -300,7 +300,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,695},{258,69}}</string>
|
||||
<string>{{576,490},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -330,9 +330,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{718,958},{61,146}}</string>
|
||||
<string>{{851,625},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>3color5.png</key>
|
||||
<dict>
|
||||
|
|
@ -345,7 +345,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,688},{61,267}}</string>
|
||||
<string>{{190,419},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -375,7 +375,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{718,1106},{138,69}}</string>
|
||||
<string>{{580,879},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -390,7 +390,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,766},{258,69}}</string>
|
||||
<string>{{379,561},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -420,7 +420,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{781,958},{61,146}}</string>
|
||||
<string>{{595,1021},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -435,7 +435,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{254,419},{61,267}}</string>
|
||||
<string>{{190,688},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -465,7 +465,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{718,1177},{138,69}}</string>
|
||||
<string>{{580,950},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -480,7 +480,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,837},{258,69}}</string>
|
||||
<string>{{379,632},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -510,7 +510,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{853,496},{61,146}}</string>
|
||||
<string>{{658,1021},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -525,7 +525,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{316,908},{61,266}}</string>
|
||||
<string>{{379,774},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -555,7 +555,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{848,356},{138,69}}</string>
|
||||
<string>{{720,879},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -570,9 +570,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,957},{258,69}}</string>
|
||||
<string>{{379,703},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>6color3.png</key>
|
||||
<dict>
|
||||
|
|
@ -600,7 +600,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{916,496},{61,146}}</string>
|
||||
<string>{{721,1019},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -615,7 +615,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{253,688},{61,267}}</string>
|
||||
<string>{{253,419},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -645,7 +645,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{859,680},{138,69}}</string>
|
||||
<string>{{791,848},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -660,9 +660,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,971},{258,69}}</string>
|
||||
<string>{{190,957},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>7color3.png</key>
|
||||
<dict>
|
||||
|
|
@ -690,9 +690,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{62,147}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{591,967},{62,147}}</string>
|
||||
<string>{{837,427},{62,147}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>7color5.png</key>
|
||||
<dict>
|
||||
|
|
@ -705,7 +705,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{62,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{190,419},{62,267}}</string>
|
||||
<string>{{951,1},{62,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -735,7 +735,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{842,814},{138,69}}</string>
|
||||
<string>{{791,919},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -750,7 +750,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{259,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{317,419},{259,69}}</string>
|
||||
<string>{{316,419},{259,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -780,7 +780,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,145}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{655,1115},{61,145}}</string>
|
||||
<string>{{917,990},{61,145}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -795,9 +795,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,266}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1184},{61,266}}</string>
|
||||
<string>{{261,957},{61,266}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>8color6.png</key>
|
||||
<dict>
|
||||
|
|
@ -825,9 +825,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{842,885},{138,69}}</string>
|
||||
<string>{{846,990},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>9color2.png</key>
|
||||
<dict>
|
||||
|
|
@ -840,7 +840,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{258,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,1042},{258,69}}</string>
|
||||
<string>{{316,837},{258,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -870,7 +870,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{60,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{921,1096},{60,146}}</string>
|
||||
<string>{{784,1019},{60,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -885,9 +885,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,267}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{578,419},{61,267}}</string>
|
||||
<string>{{253,688},{61,267}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>9color6.png</key>
|
||||
<dict>
|
||||
|
|
@ -915,7 +915,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{120,120}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{576,707},{120,120}}</string>
|
||||
<string>{{458,908},{120,120}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -930,9 +930,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{585,629},{76,124}}</string>
|
||||
<string>{{773,561},{76,124}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>downRight.png</key>
|
||||
<dict>
|
||||
|
|
@ -945,7 +945,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{576,829},{70,122}}</string>
|
||||
<string>{{735,1167},{70,122}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -960,9 +960,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{951,1},{140,72}}</string>
|
||||
<string>{{639,700},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>leftUp.png</key>
|
||||
<dict>
|
||||
|
|
@ -975,7 +975,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{584,901},{64,114}}</string>
|
||||
<string>{{466,1178},{64,114}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -990,7 +990,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{577,545},{140,82}}</string>
|
||||
<string>{{1,1168},{140,82}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -1005,9 +1005,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{529,1153},{64,108}}</string>
|
||||
<string>{{895,1137},{64,108}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl1.png</key>
|
||||
<dict>
|
||||
|
|
@ -1020,7 +1020,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{9,42}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{261,957},{9,42}}</string>
|
||||
<string>{{980,1110},{9,42}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -1035,9 +1035,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{58,34}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{919,427},{58,34}}</string>
|
||||
<string>{{951,270},{58,34}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl1_2.png</key>
|
||||
<dict>
|
||||
|
|
@ -1050,9 +1050,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{118,34}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{853,644},{118,34}}</string>
|
||||
<string>{{859,1130},{118,34}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl1_3.png</key>
|
||||
<dict>
|
||||
|
|
@ -1065,7 +1065,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{178,34}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{521,971},{178,34}}</string>
|
||||
<string>{{988,270},{178,34}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -1080,9 +1080,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{40,10}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1013,427},{40,10}}</string>
|
||||
<string>{{582,1240},{40,10}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl2_1.png</key>
|
||||
<dict>
|
||||
|
|
@ -1095,9 +1095,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,54}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{986,1052},{32,54}}</string>
|
||||
<string>{{961,1198},{32,54}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl2_11.png</key>
|
||||
<dict>
|
||||
|
|
@ -1110,9 +1110,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,59}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{591,1116},{32,59}}</string>
|
||||
<string>{{961,1137},{32,59}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>shu_zl2_2.png</key>
|
||||
<dict>
|
||||
|
|
@ -1125,9 +1125,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,114}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{986,936},{32,114}}</string>
|
||||
<string>{{143,1217},{32,114}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl2_22.png</key>
|
||||
<dict>
|
||||
|
|
@ -1140,7 +1140,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,120}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{982,814},{32,120}}</string>
|
||||
<string>{{980,988},{32,120}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -1155,9 +1155,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,175}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{979,427},{32,175}}</string>
|
||||
<string>{{846,688},{32,175}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>shu_zl2_33.png</key>
|
||||
<dict>
|
||||
|
|
@ -1170,9 +1170,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{32,180}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{557,971},{32,180}}</string>
|
||||
<string>{{576,845},{32,180}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>turn_arrow.png</key>
|
||||
<dict>
|
||||
|
|
@ -1185,9 +1185,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{36,24}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{979,604},{36,24}}</string>
|
||||
<string>{{986,450},{36,24}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>turn_bg.png</key>
|
||||
<dict>
|
||||
|
|
@ -1196,11 +1196,11 @@
|
|||
<key>spriteOffset</key>
|
||||
<string>{0,0}</string>
|
||||
<key>spriteSize</key>
|
||||
<string>{79,53}</string>
|
||||
<string>{80,54}</string>
|
||||
<key>spriteSourceSize</key>
|
||||
<string>{79,53}</string>
|
||||
<string>{80,54}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{1,1168},{79,53}}</string>
|
||||
<string>{{781,687},{80,54}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -1215,7 +1215,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{951,143},{140,72}}</string>
|
||||
<string>{{458,1030},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -1230,9 +1230,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{951,285},{140,72}}</string>
|
||||
<string>{{324,1178},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wal_up.png</key>
|
||||
<dict>
|
||||
|
|
@ -1245,7 +1245,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{584,901},{64,114}}</string>
|
||||
<string>{{466,1178},{64,114}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
</dict>
|
||||
|
|
@ -1260,9 +1260,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{138,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{915,956},{138,69}}</string>
|
||||
<string>{{595,1169},{138,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>wall2.png</key>
|
||||
<dict>
|
||||
|
|
@ -1275,9 +1275,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{858,1096},{61,146}}</string>
|
||||
<string>{{787,785},{61,146}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>wall7.png</key>
|
||||
<dict>
|
||||
|
|
@ -1290,9 +1290,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{61,69}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{127,1166},{61,69}}</string>
|
||||
<string>{{935,785},{61,69}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
<true/>
|
||||
</dict>
|
||||
<key>wall_down.png</key>
|
||||
<dict>
|
||||
|
|
@ -1305,9 +1305,9 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{146,146}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{951,1},{140,72}}</string>
|
||||
<string>{{639,700},{140,72}}</string>
|
||||
<key>textureRotated</key>
|
||||
<true/>
|
||||
<false/>
|
||||
</dict>
|
||||
<key>zhangai.png</key>
|
||||
<dict>
|
||||
|
|
@ -1320,7 +1320,7 @@
|
|||
<key>spriteSourceSize</key>
|
||||
<string>{132,137}</string>
|
||||
<key>textureRect</key>
|
||||
<string>{{719,545},{132,137}}</string>
|
||||
<string>{{639,561},{132,137}}</string>
|
||||
<key>textureRotated</key>
|
||||
<false/>
|
||||
</dict>
|
||||
|
|
@ -1336,9 +1336,9 @@
|
|||
<key>realTextureFileName</key>
|
||||
<string>door.png</string>
|
||||
<key>size</key>
|
||||
<string>{1024,1261}</string>
|
||||
<string>{1023,1251}</string>
|
||||
<key>smartupdate</key>
|
||||
<string>$TexturePacker:SmartUpdate:00c2049ea8fb2a3b9fb62eb65923d646:ad832604d65bd5cdf3210e3f1ed1919c:db7a2f380db9915dc051ce2c1170bc84$</string>
|
||||
<string>$TexturePacker:SmartUpdate:2eded28d713241c7369b069660a8de3a:6cea746c78d041116de22154e9ef312b:db7a2f380db9915dc051ce2c1170bc84$</string>
|
||||
<key>textureFileName</key>
|
||||
<string>door.png</string>
|
||||
</dict>
|
||||
|
|
|
|||
|
|
@ -4,8 +4,8 @@
|
|||
"importer": "asset",
|
||||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"size": {
|
||||
"width": 1024,
|
||||
"height": 1261
|
||||
"width": 1023,
|
||||
"height": 1251
|
||||
},
|
||||
"type": "Texture Packer",
|
||||
"subMetas": {
|
||||
|
|
@ -19,8 +19,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 844,
|
||||
"trimY": 956,
|
||||
"trimX": 931,
|
||||
"trimY": 848,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -39,11 +39,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 261,
|
||||
"trimY": 1113,
|
||||
"trimX": 324,
|
||||
"trimY": 908,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -88,8 +88,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 838,
|
||||
"trimY": 751,
|
||||
"trimX": 846,
|
||||
"trimY": 722,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -108,11 +108,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 578,
|
||||
"trimY": 482,
|
||||
"trimX": 395,
|
||||
"trimY": 908,
|
||||
"width": 61,
|
||||
"height": 266,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -157,8 +157,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 698,
|
||||
"trimY": 747,
|
||||
"trimX": 647,
|
||||
"trimY": 774,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -180,7 +180,7 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 317,
|
||||
"trimX": 316,
|
||||
"trimY": 490,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
|
|
@ -226,8 +226,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 655,
|
||||
"trimY": 967,
|
||||
"trimX": 532,
|
||||
"trimY": 1030,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -292,11 +292,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 700,
|
||||
"trimY": 818,
|
||||
"trimX": 848,
|
||||
"trimY": 356,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -318,8 +318,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 317,
|
||||
"trimY": 561,
|
||||
"trimX": 577,
|
||||
"trimY": 419,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -364,8 +364,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 711,
|
||||
"trimY": 684,
|
||||
"trimX": 836,
|
||||
"trimY": 491,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -384,11 +384,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 317,
|
||||
"trimY": 632,
|
||||
"trimX": 316,
|
||||
"trimY": 561,
|
||||
"width": 61,
|
||||
"height": 266,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -430,11 +430,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 771,
|
||||
"trimY": 818,
|
||||
"trimX": 851,
|
||||
"trimY": 554,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -456,8 +456,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 316,
|
||||
"trimY": 695,
|
||||
"trimX": 576,
|
||||
"trimY": 490,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -499,11 +499,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 718,
|
||||
"trimY": 958,
|
||||
"trimX": 851,
|
||||
"trimY": 625,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -526,7 +526,7 @@
|
|||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 190,
|
||||
"trimY": 688,
|
||||
"trimY": 419,
|
||||
"width": 61,
|
||||
"height": 267,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -571,8 +571,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 718,
|
||||
"trimY": 1106,
|
||||
"trimX": 580,
|
||||
"trimY": 879,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -594,8 +594,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 316,
|
||||
"trimY": 766,
|
||||
"trimX": 379,
|
||||
"trimY": 561,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -640,8 +640,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 781,
|
||||
"trimY": 958,
|
||||
"trimX": 595,
|
||||
"trimY": 1021,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -663,8 +663,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 254,
|
||||
"trimY": 419,
|
||||
"trimX": 190,
|
||||
"trimY": 688,
|
||||
"width": 61,
|
||||
"height": 267,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -709,8 +709,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 718,
|
||||
"trimY": 1177,
|
||||
"trimX": 580,
|
||||
"trimY": 950,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -732,8 +732,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 316,
|
||||
"trimY": 837,
|
||||
"trimX": 379,
|
||||
"trimY": 632,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -778,8 +778,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 853,
|
||||
"trimY": 496,
|
||||
"trimX": 658,
|
||||
"trimY": 1021,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -801,8 +801,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 316,
|
||||
"trimY": 908,
|
||||
"trimX": 379,
|
||||
"trimY": 774,
|
||||
"width": 61,
|
||||
"height": 266,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -847,8 +847,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 848,
|
||||
"trimY": 356,
|
||||
"trimX": 720,
|
||||
"trimY": 879,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -867,11 +867,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 190,
|
||||
"trimY": 957,
|
||||
"trimX": 379,
|
||||
"trimY": 703,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -916,8 +916,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 916,
|
||||
"trimY": 496,
|
||||
"trimX": 721,
|
||||
"trimY": 1019,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -940,7 +940,7 @@
|
|||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 253,
|
||||
"trimY": 688,
|
||||
"trimY": 419,
|
||||
"width": 61,
|
||||
"height": 267,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -985,8 +985,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 859,
|
||||
"trimY": 680,
|
||||
"trimX": 791,
|
||||
"trimY": 848,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -1005,11 +1005,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 261,
|
||||
"trimY": 971,
|
||||
"trimX": 190,
|
||||
"trimY": 957,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -1051,11 +1051,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 591,
|
||||
"trimY": 967,
|
||||
"trimX": 837,
|
||||
"trimY": 427,
|
||||
"width": 62,
|
||||
"height": 147,
|
||||
"rawWidth": 62,
|
||||
|
|
@ -1077,8 +1077,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 190,
|
||||
"trimY": 419,
|
||||
"trimX": 951,
|
||||
"trimY": 1,
|
||||
"width": 62,
|
||||
"height": 267,
|
||||
"rawWidth": 62,
|
||||
|
|
@ -1123,8 +1123,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 842,
|
||||
"trimY": 814,
|
||||
"trimX": 791,
|
||||
"trimY": 919,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -1146,7 +1146,7 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 317,
|
||||
"trimX": 316,
|
||||
"trimY": 419,
|
||||
"width": 259,
|
||||
"height": 69,
|
||||
|
|
@ -1192,8 +1192,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 655,
|
||||
"trimY": 1115,
|
||||
"trimX": 917,
|
||||
"trimY": 990,
|
||||
"width": 61,
|
||||
"height": 145,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -1212,11 +1212,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 261,
|
||||
"trimY": 1184,
|
||||
"trimY": 957,
|
||||
"width": 61,
|
||||
"height": 266,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -1258,11 +1258,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 842,
|
||||
"trimY": 885,
|
||||
"trimX": 846,
|
||||
"trimY": 990,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -1284,8 +1284,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 261,
|
||||
"trimY": 1042,
|
||||
"trimX": 316,
|
||||
"trimY": 837,
|
||||
"width": 258,
|
||||
"height": 69,
|
||||
"rawWidth": 258,
|
||||
|
|
@ -1330,8 +1330,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 921,
|
||||
"trimY": 1096,
|
||||
"trimX": 784,
|
||||
"trimY": 1019,
|
||||
"width": 60,
|
||||
"height": 146,
|
||||
"rawWidth": 60,
|
||||
|
|
@ -1350,11 +1350,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 578,
|
||||
"trimY": 419,
|
||||
"trimX": 253,
|
||||
"trimY": 688,
|
||||
"width": 61,
|
||||
"height": 267,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -1399,8 +1399,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 576,
|
||||
"trimY": 707,
|
||||
"trimX": 458,
|
||||
"trimY": 908,
|
||||
"width": 120,
|
||||
"height": 120,
|
||||
"rawWidth": 120,
|
||||
|
|
@ -1419,11 +1419,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -34,
|
||||
"offsetY": -11,
|
||||
"trimX": 585,
|
||||
"trimY": 629,
|
||||
"trimX": 773,
|
||||
"trimY": 561,
|
||||
"width": 76,
|
||||
"height": 124,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1445,8 +1445,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 33,
|
||||
"offsetY": -12,
|
||||
"trimX": 576,
|
||||
"trimY": 829,
|
||||
"trimX": 735,
|
||||
"trimY": 1167,
|
||||
"width": 70,
|
||||
"height": 122,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1465,11 +1465,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": -37,
|
||||
"trimX": 951,
|
||||
"trimY": 1,
|
||||
"trimX": 639,
|
||||
"trimY": 700,
|
||||
"width": 140,
|
||||
"height": 72,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1491,8 +1491,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": -39,
|
||||
"offsetY": 16,
|
||||
"trimX": 584,
|
||||
"trimY": 901,
|
||||
"trimX": 466,
|
||||
"trimY": 1178,
|
||||
"width": 64,
|
||||
"height": 114,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1514,8 +1514,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": -32,
|
||||
"trimX": 577,
|
||||
"trimY": 545,
|
||||
"trimX": 1,
|
||||
"trimY": 1168,
|
||||
"width": 140,
|
||||
"height": 82,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1534,11 +1534,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 36,
|
||||
"offsetY": 17,
|
||||
"trimX": 529,
|
||||
"trimY": 1153,
|
||||
"trimX": 895,
|
||||
"trimY": 1137,
|
||||
"width": 64,
|
||||
"height": 108,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1560,8 +1560,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 261,
|
||||
"trimY": 957,
|
||||
"trimX": 980,
|
||||
"trimY": 1110,
|
||||
"width": 9,
|
||||
"height": 42,
|
||||
"rawWidth": 9,
|
||||
|
|
@ -1580,11 +1580,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 919,
|
||||
"trimY": 427,
|
||||
"trimX": 951,
|
||||
"trimY": 270,
|
||||
"width": 58,
|
||||
"height": 34,
|
||||
"rawWidth": 58,
|
||||
|
|
@ -1603,11 +1603,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 853,
|
||||
"trimY": 644,
|
||||
"trimX": 859,
|
||||
"trimY": 1130,
|
||||
"width": 118,
|
||||
"height": 34,
|
||||
"rawWidth": 118,
|
||||
|
|
@ -1629,8 +1629,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 521,
|
||||
"trimY": 971,
|
||||
"trimX": 988,
|
||||
"trimY": 270,
|
||||
"width": 178,
|
||||
"height": 34,
|
||||
"rawWidth": 178,
|
||||
|
|
@ -1649,11 +1649,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1013,
|
||||
"trimY": 427,
|
||||
"trimX": 582,
|
||||
"trimY": 1240,
|
||||
"width": 40,
|
||||
"height": 10,
|
||||
"rawWidth": 40,
|
||||
|
|
@ -1672,11 +1672,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 986,
|
||||
"trimY": 1052,
|
||||
"trimX": 961,
|
||||
"trimY": 1198,
|
||||
"width": 32,
|
||||
"height": 54,
|
||||
"rawWidth": 32,
|
||||
|
|
@ -1695,11 +1695,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 591,
|
||||
"trimY": 1116,
|
||||
"trimX": 961,
|
||||
"trimY": 1137,
|
||||
"width": 32,
|
||||
"height": 59,
|
||||
"rawWidth": 32,
|
||||
|
|
@ -1718,11 +1718,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 986,
|
||||
"trimY": 936,
|
||||
"trimX": 143,
|
||||
"trimY": 1217,
|
||||
"width": 32,
|
||||
"height": 114,
|
||||
"rawWidth": 32,
|
||||
|
|
@ -1744,8 +1744,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 982,
|
||||
"trimY": 814,
|
||||
"trimX": 980,
|
||||
"trimY": 988,
|
||||
"width": 32,
|
||||
"height": 120,
|
||||
"rawWidth": 32,
|
||||
|
|
@ -1764,11 +1764,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 979,
|
||||
"trimY": 427,
|
||||
"trimX": 846,
|
||||
"trimY": 688,
|
||||
"width": 32,
|
||||
"height": 175,
|
||||
"rawWidth": 32,
|
||||
|
|
@ -1787,11 +1787,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 557,
|
||||
"trimY": 971,
|
||||
"trimX": 576,
|
||||
"trimY": 845,
|
||||
"width": 32,
|
||||
"height": 180,
|
||||
"rawWidth": 32,
|
||||
|
|
@ -1810,11 +1810,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 979,
|
||||
"trimY": 604,
|
||||
"trimX": 986,
|
||||
"trimY": 450,
|
||||
"width": 36,
|
||||
"height": 24,
|
||||
"rawWidth": 36,
|
||||
|
|
@ -1836,12 +1836,12 @@
|
|||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 1,
|
||||
"trimY": 1168,
|
||||
"width": 79,
|
||||
"height": 53,
|
||||
"rawWidth": 79,
|
||||
"rawHeight": 53,
|
||||
"trimX": 781,
|
||||
"trimY": 687,
|
||||
"width": 80,
|
||||
"height": 54,
|
||||
"rawWidth": 80,
|
||||
"rawHeight": 54,
|
||||
"borderTop": 0,
|
||||
"borderBottom": 0,
|
||||
"borderLeft": 30,
|
||||
|
|
@ -1859,8 +1859,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": -1,
|
||||
"offsetY": 34,
|
||||
"trimX": 951,
|
||||
"trimY": 143,
|
||||
"trimX": 458,
|
||||
"trimY": 1030,
|
||||
"width": 140,
|
||||
"height": 72,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1879,11 +1879,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -2,
|
||||
"offsetY": 35,
|
||||
"trimX": 951,
|
||||
"trimY": 285,
|
||||
"trimX": 324,
|
||||
"trimY": 1178,
|
||||
"width": 140,
|
||||
"height": 72,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1905,8 +1905,8 @@
|
|||
"rotated": true,
|
||||
"offsetX": -39,
|
||||
"offsetY": 16,
|
||||
"trimX": 584,
|
||||
"trimY": 901,
|
||||
"trimX": 466,
|
||||
"trimY": 1178,
|
||||
"width": 64,
|
||||
"height": 114,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -1925,11 +1925,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 915,
|
||||
"trimY": 956,
|
||||
"trimX": 595,
|
||||
"trimY": 1169,
|
||||
"width": 138,
|
||||
"height": 69,
|
||||
"rawWidth": 138,
|
||||
|
|
@ -1948,11 +1948,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 858,
|
||||
"trimY": 1096,
|
||||
"trimX": 787,
|
||||
"trimY": 785,
|
||||
"width": 61,
|
||||
"height": 146,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -1971,11 +1971,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": false,
|
||||
"rotated": true,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 127,
|
||||
"trimY": 1166,
|
||||
"trimX": 935,
|
||||
"trimY": 785,
|
||||
"width": 61,
|
||||
"height": 69,
|
||||
"rawWidth": 61,
|
||||
|
|
@ -1994,11 +1994,11 @@
|
|||
"rawTextureUuid": "d01519e3-ffe3-4b8f-980b-50811cc6eb58",
|
||||
"trimType": "auto",
|
||||
"trimThreshold": 1,
|
||||
"rotated": true,
|
||||
"rotated": false,
|
||||
"offsetX": -1,
|
||||
"offsetY": -37,
|
||||
"trimX": 951,
|
||||
"trimY": 1,
|
||||
"trimX": 639,
|
||||
"trimY": 700,
|
||||
"width": 140,
|
||||
"height": 72,
|
||||
"rawWidth": 146,
|
||||
|
|
@ -2020,8 +2020,8 @@
|
|||
"rotated": false,
|
||||
"offsetX": 0,
|
||||
"offsetY": 0,
|
||||
"trimX": 719,
|
||||
"trimY": 545,
|
||||
"trimX": 639,
|
||||
"trimY": 561,
|
||||
"width": 132,
|
||||
"height": 137,
|
||||
"rawWidth": 132,
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 141 KiB After Width: | Height: | Size: 129 KiB |
|
|
@ -8,8 +8,8 @@
|
|||
"premultiplyAlpha": false,
|
||||
"genMipmaps": false,
|
||||
"packable": true,
|
||||
"width": 1024,
|
||||
"height": 1261,
|
||||
"width": 1023,
|
||||
"height": 1251,
|
||||
"platformSettings": {},
|
||||
"subMetas": {}
|
||||
}
|
||||
BIN
assets/UI/UI/pop/Revolving.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
38
assets/UI/UI/pop/Revolving.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
assets/UI/UI/pop/Revolving_btn.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
38
assets/UI/UI/pop/Revolving_btn.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
assets/UI/UI/pop/Revolving_icon.png
Normal file
|
After Width: | Height: | Size: 3.5 KiB |
38
assets/UI/UI/pop/Revolving_icon.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
assets/UI/UI/pop/Revolving_title.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
38
assets/UI/UI/pop/Revolving_title.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -294,10 +294,17 @@ export default class DailyQuests extends cc.Component {
|
|||
}
|
||||
}
|
||||
else if (data == "share") {
|
||||
let img = "https://mmocgame.qpic.cn/wechatgame/OiaWk33I6QjgWiatrb5YVUq2p0QRmQgO6rLUWxEQDZ4ib9Ny4Pr8iaHnHI6WdxibY2nPL/0";
|
||||
if (Math.random() < 0.5) {
|
||||
img = "https://mmocgame.qpic.cn/wechatgame/CG5xBibollws251aYD4msEPWCiafrcn4Fgtic4T2wME6sWmdfAUtfibgsWoxm59VadDD/0";
|
||||
}
|
||||
let iphoneArr = [
|
||||
"https://mmocgame.qpic.cn/wechatgame/Lf3SBqy9XpNkakoIZygRzXqww3HTibq6VyibazqmicwibjCS3YpgqbZtkdyABm4Y1wAr/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 = {
|
||||
title: '如果你突然打了个喷嚏,那一定是我在等你帮忙过关!', // 分享标题
|
||||
imageUrl: img // 分享图片链接
|
||||
|
|
|
|||
|
|
@ -39,6 +39,16 @@
|
|||
"level": 70,
|
||||
"name": "daoju5",
|
||||
"tips": "炸弹方块第一次出现"
|
||||
},
|
||||
{
|
||||
"level": 375,
|
||||
"name": "daoju10",
|
||||
"tips": "旋转门第一次出现"
|
||||
},
|
||||
{
|
||||
"level": 396,
|
||||
"name": "daoju11",
|
||||
"tips": "灰色不可消除方块第一次出现"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -39,6 +39,21 @@
|
|||
"level": 70,
|
||||
"name": "daoju5",
|
||||
"tips": "炸弹方块第一次出现"
|
||||
},
|
||||
{
|
||||
"level": 120,
|
||||
"name": "daoju12",
|
||||
"tips": "单色通过地块"
|
||||
},
|
||||
{
|
||||
"level": 375,
|
||||
"name": "daoju10",
|
||||
"tips": "旋转门第一次出现"
|
||||
},
|
||||
{
|
||||
"level": 396,
|
||||
"name": "daoju11",
|
||||
"tips": "灰色不可消除方块第一次出现"
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
assets/resources/Window_Prop/daoju10.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
38
assets/resources/Window_Prop/daoju10.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/Window_Prop/daoju11.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
38
assets/resources/Window_Prop/daoju11.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
assets/resources/Window_Prop/daoju12.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
38
assets/resources/Window_Prop/daoju12.png.meta
Normal 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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||