Commit f7ae4da7 authored by Master Q's avatar Master Q

游戏页面loading 动效替换

parent d46f91bd
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
<!-- <script src="libs/svgaParser.min1.js"></script> --> <!-- <script src="libs/svgaParser.min1.js"></script> -->
<script src="//yun.duiba.com.cn/js-libs/vConsole/3.3.4/vconsole.min.js"></script> <script src="//yun.duiba.com.cn/js-libs/vConsole/3.3.4/vconsole.min.js"></script>
<script> <script>
var vConsole = new VConsole(); // var vConsole = new VConsole();
</script> </script>
<style> <style>
html, html,
......
{
"success": true
}
\ No newline at end of file
{
"success": true
}
\ No newline at end of file
...@@ -3,6 +3,7 @@ import { RES } from "../RES"; ...@@ -3,6 +3,7 @@ import { RES } from "../RES";
import { layers } from "../views/layers"; import { layers } from "../views/layers";
import { showAlert } from "."; import { showAlert } from ".";
import { sendTbNet, TbNetName } from "../../src/TaoBaoNet";
let inited = false; let inited = false;
let _waiting: Waiting; let _waiting: Waiting;
...@@ -28,21 +29,29 @@ const initWaiting = () => { ...@@ -28,21 +29,29 @@ const initWaiting = () => {
_waiting.addChildAt(bg, 0); _waiting.addChildAt(bg, 0);
} }
} }
let customLoadingClose: Function // 小程序loading 关闭方法
/** /**
* 显示菊花圈 * 显示菊花圈
* @param msg 尽量三个字 * @param msg 尽量三个字
*/ */
export const showWaiting = (msg?: string) => { export const showWaiting = async (msg?: string) => {
initWaiting(); // initWaiting();
_waiting.show(msg) // _waiting.show(msg)
_parent.addChild(_waiting); // _parent.addChild(_waiting);
sendTbNet(TbNetName.showCustomLoading, {}, (s, d) => {
if (s) {
customLoadingClose = d.data
}
} , null, true)
} }
/** /**
* 隐藏菊花圈 * 隐藏菊花圈
*/ */
export const hideWaiting = () => { export const hideWaiting = () => {
_parent.removeChild(_waiting); // _parent.removeChild(_waiting);
typeof customLoadingClose == 'function' && customLoadingClose()
} }
export const destroyWaiting = () => { export const destroyWaiting = () => {
......
resource/GameOver/back-home.png

1.55 KB | W: | H:

resource/GameOver/back-home.png

1.4 KB | W: | H:

resource/GameOver/back-home.png
resource/GameOver/back-home.png
resource/GameOver/back-home.png
resource/GameOver/back-home.png
  • 2-up
  • Swipe
  • Onion skin
resource/common/count-start.png

3.44 KB | W: | H:

resource/common/count-start.png

4.22 KB | W: | H:

resource/common/count-start.png
resource/common/count-start.png
resource/common/count-start.png
resource/common/count-start.png
  • 2-up
  • Swipe
  • Onion skin
resource/common/count1.png

298 Bytes | W: | H:

resource/common/count1.png

658 Bytes | W: | H:

resource/common/count1.png
resource/common/count1.png
resource/common/count1.png
resource/common/count1.png
  • 2-up
  • Swipe
  • Onion skin
resource/common/count2.png

2.23 KB | W: | H:

resource/common/count2.png

1.67 KB | W: | H:

resource/common/count2.png
resource/common/count2.png
resource/common/count2.png
resource/common/count2.png
  • 2-up
  • Swipe
  • Onion skin
resource/common/count3.png

2.54 KB | W: | H:

resource/common/count3.png

2.13 KB | W: | H:

resource/common/count3.png
resource/common/count3.png
resource/common/count3.png
resource/common/count3.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
"name": "NewCompletePanel" "name": "NewCompletePanel"
}, },
{ {
"keys": "confirm-btn.png,prize-back.png", "keys": "confirm-btn.png,prize-back-title.png,prize-back.png",
"name": "PrizeShowPanel" "name": "PrizeShowPanel"
}, },
{ {
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
"name": "blank_shoe" "name": "blank_shoe"
}, },
{ {
"keys": "back.png,back_jordan.png,comCloseBtn.png,com_light.png,count-start.png,count1.png,count2.png,count3.png,music-off.png,music-on.png,toastBg.png,waitingBg.png,waitingRot.png,跳过按钮.png", "keys": "comCloseBtn.png,com_light.png,count-start.png,count1.png,count2.png,count3.png,jordan-icon.png,music-off.png,music-on.png,nike-icon.png,percennt0.png,percennt1.png,percennt2.png,percennt3.png,percennt4.png,percennt5.png,percennt6.png,percennt7.png,percennt8.png,percennt9.png,percenntp.png,ruready.png,toastBg.png,waitingBg.png,waitingRot.png,跳过按钮.png",
"name": "common" "name": "common"
}, },
{ {
......
...@@ -3,7 +3,7 @@ import { GameScene } from './scenes/GameScene/GameScene'; ...@@ -3,7 +3,7 @@ import { GameScene } from './scenes/GameScene/GameScene';
import { NewGuyScene } from './scenes/NewGuyScene/NewGuyScene'; import { NewGuyScene } from './scenes/NewGuyScene/NewGuyScene';
import { destroyLayers, layers } from "../module/views/layers"; import { destroyLayers, layers } from "../module/views/layers";
import { RES } from "../module/RES"; import { RES } from "../module/RES";
import { changeScene, destroyAllCtrls, showPanel, showToast } from "../module/ctrls"; import { changeScene, destroyAllCtrls, hideWaiting, showPanel, showToast, showWaiting } from "../module/ctrls";
import MusicBtn from "./common/MusicBtn"; import MusicBtn from "./common/MusicBtn";
import { ResJson } from "./ResJson"; import { ResJson } from "./ResJson";
...@@ -152,6 +152,7 @@ export class Main { ...@@ -152,6 +152,7 @@ export class Main {
} }
private async onAddToStage() { private async onAddToStage() {
showWaiting()
//初始化层级 //初始化层级
layers.init(this.stage); layers.init(this.stage);
console.log("初始化层级完成") console.log("初始化层级完成")
...@@ -161,18 +162,18 @@ export class Main { ...@@ -161,18 +162,18 @@ export class Main {
// 皮肤配置加载 // 皮肤配置加载
RES.loadSkinConfig(SkinJson); RES.loadSkinConfig(SkinJson);
console.log("初始化皮肤配置完成") console.log("初始化皮肤配置完成")
// 加载完美 icon 资源
await RES.loadGroup('excellent_icon')
// 加载通用资源 // 加载通用资源
await RES.loadGroup("common"); await RES.loadGroup("common");
console.log("通用资源加载完成") console.log("通用资源加载完成")
hideWaiting()
// h5环境时,隐藏加载中 // h5环境时,隐藏加载中
if (FYGE.getEnv() == "web" && document.getElementById("__loading__")) document.getElementById("__loading__").style.display = "none"; if (FYGE.getEnv() == "web" && document.getElementById("__loading__")) document.getElementById("__loading__").style.display = "none";
console.log('getGlobalData') console.log('getGlobalData')
await Tools.getGlobalData() await Tools.getGlobalData()
// 加载完美 icon 资源
await RES.loadGroup('excellent_icon')
// const baseSuccess = await Tools.getActivityBaseInfo(); // const baseSuccess = await Tools.getActivityBaseInfo();
// if (!baseSuccess) { // if (!baseSuccess) {
// showToast("获取活动信息失败"); // showToast("获取活动信息失败");
......
...@@ -2,68 +2,3829 @@ export const ResJson = { ...@@ -2,68 +2,3829 @@ export const ResJson = {
"groups": [ "groups": [
{ {
"keys": "countdown-back.png", "keys": "countdown-back.png",
"name": "CountDownComp" "name": "CountDownComp",
"atlas": {
"countdown-back.png": {
"x": 2,
"y": 2,
"w": 147,
"h": 57,
"ox": 0,
"oy": 0,
"sw": 147,
"sh": 57,
"ro": false
}
}
}, },
{ {
"keys": "back-home.png,jump-icon.png,more-btn.png,new-record-icon.png,product-link__icon.png,share-btn.png", "keys": "back-home.png,jump-icon.png,more-btn.png,new-record-icon.png,product-link__icon.png,share-btn.png",
"name": "GameOver" "name": "GameOver",
"atlas": {
"more-btn.png": {
"x": 2,
"y": 2,
"w": 655,
"h": 120,
"ox": 0,
"oy": 0,
"sw": 655,
"sh": 120,
"ro": false
},
"share-btn.png": {
"x": 2,
"y": 124,
"w": 655,
"h": 120,
"ox": 0,
"oy": 0,
"sw": 655,
"sh": 120,
"ro": false
},
"back-home.png": {
"x": 2,
"y": 246,
"w": 114,
"h": 40,
"ox": 0,
"oy": 0,
"sw": 114,
"sh": 40,
"ro": false
},
"jump-icon.png": {
"x": 2,
"y": 288,
"w": 102,
"h": 54,
"ox": 0,
"oy": 0,
"sw": 102,
"sh": 54,
"ro": false
},
"new-record-icon.png": {
"x": 106,
"y": 288,
"w": 102,
"h": 37,
"ox": 0,
"oy": 0,
"sw": 102,
"sh": 37,
"ro": false
},
"product-link__icon.png": {
"x": 210,
"y": 246,
"w": 87,
"h": 87,
"ox": 0,
"oy": 0,
"sw": 87,
"sh": 87,
"ro": false
}
}
}, },
{ {
"keys": "over-back.png,over-tipsicon.png,prize-icon1.png,prize-icon2.png,prize-icon3.png", "keys": "over-back.png,over-tipsicon.png,prize-icon1.png,prize-icon2.png,prize-icon3.png",
"name": "GameOverPanel" "name": "GameOverPanel",
"atlas": {
"over-back.png": {
"x": 2,
"y": 2,
"w": 590,
"h": 804,
"ox": 0,
"oy": 0,
"sw": 590,
"sh": 804,
"ro": false
},
"prize-icon3.png": {
"x": 594,
"y": 2,
"w": 464,
"h": 220,
"ox": 0,
"oy": 0,
"sw": 464,
"sh": 220,
"ro": true
},
"prize-icon2.png": {
"x": 594,
"y": 468,
"w": 463,
"h": 220,
"ox": 0,
"oy": 0,
"sw": 463,
"sh": 220,
"ro": true
},
"prize-icon1.png": {
"x": 2,
"y": 808,
"w": 412,
"h": 195,
"ox": 0,
"oy": 0,
"sw": 412,
"sh": 195,
"ro": false
},
"over-tipsicon.png": {
"x": 416,
"y": 808,
"w": 172,
"h": 37,
"ox": 0,
"oy": 0,
"sw": 172,
"sh": 37,
"ro": false
}
}
}, },
{ {
"keys": "num0.png,num1.png,num2.png,num3.png,num4.png,num5.png,num6.png,num7.png,num8.png,num9.png,numb0.png,numb1.png,numb2.png,numb3.png,numb4.png,numb5.png,numb6.png,numb7.png,numb8.png,numb9.png,numbp.png,nump.png,p1-b.png,p10-b.png,p11-b.png,p12-b.png,p13-b.png,p14-b.png,p15-b.png,p16-b.png,p17-b.png,p18-b.png,p19-b.png,p2-b.png,p20-b.png,p3-b.png,p4-b.png,p5-b.png,p6-b.png,p7-b.png,p8-b.png,p9-b.png", "keys": "num0.png,num1.png,num2.png,num3.png,num4.png,num5.png,num6.png,num7.png,num8.png,num9.png,numb0.png,numb1.png,numb2.png,numb3.png,numb4.png,numb5.png,numb6.png,numb7.png,numb8.png,numb9.png,numbp.png,nump.png,p1-b.png,p10-b.png,p11-b.png,p12-b.png,p13-b.png,p14-b.png,p15-b.png,p16-b.png,p17-b.png,p18-b.png,p19-b.png,p2-b.png,p20-b.png,p3-b.png,p4-b.png,p5-b.png,p6-b.png,p7-b.png,p8-b.png,p9-b.png",
"name": "GameScene" "name": "GameScene",
"atlas": {
"p13-b.png": {
"x": 2,
"y": 2,
"w": 438,
"h": 410,
"ox": 0,
"oy": 0,
"sw": 438,
"sh": 410,
"ro": false
},
"p4-b.png": {
"x": 2,
"y": 414,
"w": 343,
"h": 438,
"ox": 0,
"oy": 0,
"sw": 343,
"sh": 438,
"ro": true
},
"p6-b.png": {
"x": 442,
"y": 2,
"w": 425,
"h": 377,
"ox": 0,
"oy": 0,
"sw": 425,
"sh": 377,
"ro": true
},
"p17-b.png": {
"x": 2,
"y": 759,
"w": 416,
"h": 298,
"ox": 0,
"oy": 0,
"sw": 416,
"sh": 298,
"ro": false
},
"p9-b.png": {
"x": 442,
"y": 429,
"w": 410,
"h": 299,
"ox": 0,
"oy": 0,
"sw": 410,
"sh": 299,
"ro": true
},
"p15-b.png": {
"x": 821,
"y": 2,
"w": 401,
"h": 373,
"ox": 0,
"oy": 0,
"sw": 401,
"sh": 373,
"ro": true
},
"p5-b.png": {
"x": 821,
"y": 405,
"w": 337,
"h": 397,
"ox": 0,
"oy": 0,
"sw": 337,
"sh": 397,
"ro": false
},
"p18-b.png": {
"x": 2,
"y": 1059,
"w": 270,
"h": 394,
"ox": 0,
"oy": 0,
"sw": 270,
"sh": 394,
"ro": true
},
"p10-b.png": {
"x": 743,
"y": 804,
"w": 390,
"h": 367,
"ox": 0,
"oy": 0,
"sw": 390,
"sh": 367,
"ro": false
},
"p19-b.png": {
"x": 420,
"y": 841,
"w": 272,
"h": 390,
"ox": 0,
"oy": 0,
"sw": 272,
"sh": 390,
"ro": false
},
"p12-b.png": {
"x": 1196,
"y": 2,
"w": 345,
"h": 387,
"ox": 0,
"oy": 0,
"sw": 345,
"sh": 387,
"ro": false
},
"p8-b.png": {
"x": 1135,
"y": 804,
"w": 382,
"h": 318,
"ox": 0,
"oy": 0,
"sw": 382,
"sh": 318,
"ro": false
},
"p7-b.png": {
"x": 1160,
"y": 405,
"w": 381,
"h": 332,
"ox": 0,
"oy": 0,
"sw": 381,
"sh": 332,
"ro": false
},
"p3-b.png": {
"x": 2,
"y": 1331,
"w": 374,
"h": 380,
"ox": 0,
"oy": 0,
"sw": 374,
"sh": 380,
"ro": true
},
"p2-b.png": {
"x": 1135,
"y": 1124,
"w": 378,
"h": 342,
"ox": 0,
"oy": 0,
"sw": 378,
"sh": 342,
"ro": false
},
"p14-b.png": {
"x": 384,
"y": 1331,
"w": 373,
"h": 333,
"ox": 0,
"oy": 0,
"sw": 373,
"sh": 333,
"ro": true
},
"p1-b.png": {
"x": 719,
"y": 1173,
"w": 324,
"h": 372,
"ox": 0,
"oy": 0,
"sw": 324,
"sh": 372,
"ro": true
},
"p16-b.png": {
"x": 1543,
"y": 2,
"w": 251,
"h": 371,
"ox": 0,
"oy": 0,
"sw": 251,
"sh": 371,
"ro": false
},
"p11-b.png": {
"x": 2,
"y": 1707,
"w": 326,
"h": 356,
"ox": 0,
"oy": 0,
"sw": 326,
"sh": 356,
"ro": true
},
"p20-b.png": {
"x": 360,
"y": 1707,
"w": 300,
"h": 343,
"ox": 0,
"oy": 0,
"sw": 300,
"sh": 343,
"ro": true
},
"num0.png": {
"x": 1543,
"y": 375,
"w": 160,
"h": 226,
"ox": 0,
"oy": 0,
"sw": 160,
"sh": 226,
"ro": true
},
"num3.png": {
"x": 1543,
"y": 537,
"w": 151,
"h": 226,
"ox": 0,
"oy": 0,
"sw": 151,
"sh": 226,
"ro": true
},
"num8.png": {
"x": 1543,
"y": 690,
"w": 154,
"h": 226,
"ox": 0,
"oy": 0,
"sw": 154,
"sh": 226,
"ro": true
},
"numb0.png": {
"x": 1519,
"y": 846,
"w": 160,
"h": 226,
"ox": 0,
"oy": 0,
"sw": 160,
"sh": 226,
"ro": true
},
"numb3.png": {
"x": 1519,
"y": 1008,
"w": 151,
"h": 226,
"ox": 0,
"oy": 0,
"sw": 151,
"sh": 226,
"ro": true
},
"numb8.png": {
"x": 1515,
"y": 1161,
"w": 154,
"h": 226,
"ox": 0,
"oy": 0,
"sw": 154,
"sh": 226,
"ro": true
},
"num2.png": {
"x": 1515,
"y": 1317,
"w": 155,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 155,
"sh": 222,
"ro": true
},
"num5.png": {
"x": 705,
"y": 1706,
"w": 148,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 148,
"sh": 222,
"ro": false
},
"num6.png": {
"x": 719,
"y": 1499,
"w": 153,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 153,
"sh": 222,
"ro": true
},
"num9.png": {
"x": 855,
"y": 1654,
"w": 153,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 153,
"sh": 222,
"ro": false
},
"numb2.png": {
"x": 855,
"y": 1878,
"w": 155,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 155,
"sh": 222,
"ro": true
},
"numb5.png": {
"x": 943,
"y": 1499,
"w": 148,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 148,
"sh": 222,
"ro": true
},
"numb6.png": {
"x": 1010,
"y": 1649,
"w": 153,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 153,
"sh": 222,
"ro": false
},
"numb9.png": {
"x": 1079,
"y": 1873,
"w": 153,
"h": 222,
"ox": 0,
"oy": 0,
"sw": 153,
"sh": 222,
"ro": true
},
"num1.png": {
"x": 398,
"y": 1233,
"w": 94,
"h": 218,
"ox": 0,
"oy": 0,
"sw": 94,
"sh": 218,
"ro": true
},
"num4.png": {
"x": 1165,
"y": 1649,
"w": 162,
"h": 218,
"ox": 0,
"oy": 0,
"sw": 162,
"sh": 218,
"ro": false
},
"num7.png": {
"x": 1303,
"y": 1869,
"w": 163,
"h": 218,
"ox": 0,
"oy": 0,
"sw": 163,
"sh": 218,
"ro": true
},
"numb1.png": {
"x": 1523,
"y": 1474,
"w": 94,
"h": 218,
"ox": 0,
"oy": 0,
"sw": 94,
"sh": 218,
"ro": true
},
"numb4.png": {
"x": 1167,
"y": 1474,
"w": 162,
"h": 218,
"ox": 0,
"oy": 0,
"sw": 162,
"sh": 218,
"ro": true
},
"numb7.png": {
"x": 1329,
"y": 1638,
"w": 163,
"h": 218,
"ox": 0,
"oy": 0,
"sw": 163,
"sh": 218,
"ro": false
},
"numbp.png": {
"x": 1387,
"y": 1474,
"w": 118,
"h": 128,
"ox": 0,
"oy": 0,
"sw": 118,
"sh": 128,
"ro": true
},
"nump.png": {
"x": 1523,
"y": 1570,
"w": 118,
"h": 128,
"ox": 0,
"oy": 0,
"sw": 118,
"sh": 128,
"ro": true
}
}
}, },
{ {
"keys": "confirm-btn-1.png,newcp-back.png", "keys": "confirm-btn-1.png,newcp-back.png",
"name": "NewCompletePanel" "name": "NewCompletePanel",
"atlas": {
"newcp-back.png": {
"x": 2,
"y": 2,
"w": 589,
"h": 393,
"ox": 0,
"oy": 0,
"sw": 589,
"sh": 393,
"ro": false
},
"confirm-btn-1.png": {
"x": 2,
"y": 397,
"w": 510,
"h": 94,
"ox": 0,
"oy": 0,
"sw": 510,
"sh": 94,
"ro": false
}
}
}, },
{ {
"keys": "confirm-btn.png,prize-back.png", "keys": "confirm-btn.png,prize-back-title.png,prize-back.png",
"name": "PrizeShowPanel" "name": "PrizeShowPanel",
"atlas": {
"prize-back.png": {
"x": 2,
"y": 2,
"w": 590,
"h": 741,
"ox": 0,
"oy": 0,
"sw": 590,
"sh": 741,
"ro": false
},
"confirm-btn.png": {
"x": 594,
"y": 2,
"w": 510,
"h": 94,
"ox": 0,
"oy": 0,
"sw": 510,
"sh": 94,
"ro": true
},
"prize-back-title.png": {
"x": 690,
"y": 2,
"w": 289,
"h": 66,
"ox": 0,
"oy": 0,
"sw": 289,
"sh": 66,
"ro": true
}
}
}, },
{ {
"keys": "0538f9077d06efad323df05b04e7662e.png,0b5fa6df9b5a26d539e77c2608608d8b.png,0b8805ae-138d-4397-ba2e-78c631199ce0.png,12ec8054b8c348ae7d1e958d1cd2588a.png,1ca73db4-7b05-4b0e-a0fb-8b8554ade130.png,25a820fd42aef3ebf647fa8a8f1b6d97.png,28d56a3f5babaecfd5f73e5813945b5f.png,293052b6-b434-43d0-9ab8-28b6186bd5ca.png,29d49776-b18b-4c9d-a753-82aaaa888624.png,2cf13601-7f36-49cc-8699-2a212858725f.png,359747a74903ade247a702ed9b9229e1.png,39f071fb61eea4b15c28ee87f9a42ab9.png,41178870-b275-495b-8c72-9badb88d9f8c.png,4b8809c43f465d648d826696fa6f402a.png,56b3e456-868a-49a1-bef9-029dc148ed5a.png,6a6640c7-6455-4901-b39c-6b326a1bedbe.png,6e2c9e1567421038ba7a35d5acc53cd5.png,73d6a8ce-2d10-48c1-9d98-6e9b9edf14cb.png,7c52769b370035c2ed3d45c4575899f6.png,8bc5a36a8dbf1a26043a75b265b4b1eb.png,96c45192-0b3e-4bb9-a56b-c8a6f02efef1.png,a0f816ef-8021-4202-a478-1e5c05dde786.png,a92d32f9a8c52dcc79d0c99de311474e.png,ad8b5041-5fdb-4947-8b91-be70e6227ce9.png,adf0dae232a9ffa6a9ce1352a7360980.png,b280118e-fcdf-4d8f-b2fd-357bd153c425.png,b75f6509-258d-4058-8ddc-382c082e5cd7.png,b901f16e009de3b207787382b611a267.png,beaa8224-6905-4ced-96eb-4f89d5896199.png,c2d234e2-dea6-44fd-bdf7-58d932204772.png,c3192272-4150-4f33-8e76-110355f09831.png,ce491a6c44cb6e60d7cc705630d719e1.png,d44c0d0dbb74647e3d1f3114e89a18fa.png,d5a8f96f100df42fd094915c7e70f625.png,d9e2bfe5ede84f7f53e57e6796cb54b2.png,da8a31673c7f5b4c68f4d4dc44ba8faf.png,dc51d376-f884-45fa-a76f-ca96f2f4d028.png,df583b9d-9a9c-4f47-90f1-67bcfa9fb308.png,e2feb63adef7d65f3d56dc84d5b59e65.png,e68dfb4b-2a63-43f2-a476-7445d80a0853.png,f992a7bf1bceafbc97fece72e04bcea9.png,ffc1d98f-d69e-43b1-8554-315276aa1322.png", "keys": "0538f9077d06efad323df05b04e7662e.png,0b5fa6df9b5a26d539e77c2608608d8b.png,0b8805ae-138d-4397-ba2e-78c631199ce0.png,12ec8054b8c348ae7d1e958d1cd2588a.png,1ca73db4-7b05-4b0e-a0fb-8b8554ade130.png,25a820fd42aef3ebf647fa8a8f1b6d97.png,28d56a3f5babaecfd5f73e5813945b5f.png,293052b6-b434-43d0-9ab8-28b6186bd5ca.png,29d49776-b18b-4c9d-a753-82aaaa888624.png,2cf13601-7f36-49cc-8699-2a212858725f.png,359747a74903ade247a702ed9b9229e1.png,39f071fb61eea4b15c28ee87f9a42ab9.png,41178870-b275-495b-8c72-9badb88d9f8c.png,4b8809c43f465d648d826696fa6f402a.png,56b3e456-868a-49a1-bef9-029dc148ed5a.png,6a6640c7-6455-4901-b39c-6b326a1bedbe.png,6e2c9e1567421038ba7a35d5acc53cd5.png,73d6a8ce-2d10-48c1-9d98-6e9b9edf14cb.png,7c52769b370035c2ed3d45c4575899f6.png,8bc5a36a8dbf1a26043a75b265b4b1eb.png,96c45192-0b3e-4bb9-a56b-c8a6f02efef1.png,a0f816ef-8021-4202-a478-1e5c05dde786.png,a92d32f9a8c52dcc79d0c99de311474e.png,ad8b5041-5fdb-4947-8b91-be70e6227ce9.png,adf0dae232a9ffa6a9ce1352a7360980.png,b280118e-fcdf-4d8f-b2fd-357bd153c425.png,b75f6509-258d-4058-8ddc-382c082e5cd7.png,b901f16e009de3b207787382b611a267.png,beaa8224-6905-4ced-96eb-4f89d5896199.png,c2d234e2-dea6-44fd-bdf7-58d932204772.png,c3192272-4150-4f33-8e76-110355f09831.png,ce491a6c44cb6e60d7cc705630d719e1.png,d44c0d0dbb74647e3d1f3114e89a18fa.png,d5a8f96f100df42fd094915c7e70f625.png,d9e2bfe5ede84f7f53e57e6796cb54b2.png,da8a31673c7f5b4c68f4d4dc44ba8faf.png,dc51d376-f884-45fa-a76f-ca96f2f4d028.png,df583b9d-9a9c-4f47-90f1-67bcfa9fb308.png,e2feb63adef7d65f3d56dc84d5b59e65.png,e68dfb4b-2a63-43f2-a476-7445d80a0853.png,f992a7bf1bceafbc97fece72e04bcea9.png,ffc1d98f-d69e-43b1-8554-315276aa1322.png",
"name": "balance_guidance" "name": "balance_guidance",
"atlas": {
"6e2c9e1567421038ba7a35d5acc53cd5.png": {
"x": 2,
"y": 2,
"w": 186,
"h": 127,
"ox": 0,
"oy": 0,
"sw": 186,
"sh": 127,
"ro": false
},
"96c45192-0b3e-4bb9-a56b-c8a6f02efef1.png": {
"x": 2,
"y": 131,
"w": 186,
"h": 124,
"ox": 0,
"oy": 0,
"sw": 186,
"sh": 124,
"ro": false
},
"b75f6509-258d-4058-8ddc-382c082e5cd7.png": {
"x": 190,
"y": 2,
"w": 186,
"h": 127,
"ox": 0,
"oy": 0,
"sw": 186,
"sh": 127,
"ro": true
},
"d44c0d0dbb74647e3d1f3114e89a18fa.png": {
"x": 2,
"y": 257,
"w": 186,
"h": 124,
"ox": 0,
"oy": 0,
"sw": 186,
"sh": 124,
"ro": false
},
"12ec8054b8c348ae7d1e958d1cd2588a.png": {
"x": 319,
"y": 2,
"w": 185,
"h": 129,
"ox": 0,
"oy": 1,
"sw": 185,
"sh": 130,
"ro": true
},
"25a820fd42aef3ebf647fa8a8f1b6d97.png": {
"x": 190,
"y": 190,
"w": 185,
"h": 122,
"ox": 0,
"oy": 0,
"sw": 185,
"sh": 122,
"ro": true
},
"29d49776-b18b-4c9d-a753-82aaaa888624.png": {
"x": 319,
"y": 189,
"w": 185,
"h": 129,
"ox": 0,
"oy": 1,
"sw": 185,
"sh": 130,
"ro": true
},
"ffc1d98f-d69e-43b1-8554-315276aa1322.png": {
"x": 2,
"y": 383,
"w": 185,
"h": 122,
"ox": 0,
"oy": 0,
"sw": 185,
"sh": 122,
"ro": false
},
"0b5fa6df9b5a26d539e77c2608608d8b.png": {
"x": 450,
"y": 2,
"w": 182,
"h": 134,
"ox": 0,
"oy": 0,
"sw": 182,
"sh": 134,
"ro": true
},
"1ca73db4-7b05-4b0e-a0fb-8b8554ade130.png": {
"x": 189,
"y": 383,
"w": 94,
"h": 182,
"ox": 0,
"oy": 0,
"sw": 94,
"sh": 182,
"ro": true
},
"359747a74903ade247a702ed9b9229e1.png": {
"x": 373,
"y": 376,
"w": 92,
"h": 182,
"ox": 0,
"oy": 0,
"sw": 92,
"sh": 182,
"ro": true
},
"a0f816ef-8021-4202-a478-1e5c05dde786.png": {
"x": 450,
"y": 186,
"w": 182,
"h": 125,
"ox": 0,
"oy": 0,
"sw": 182,
"sh": 125,
"ro": true
},
"a92d32f9a8c52dcc79d0c99de311474e.png": {
"x": 2,
"y": 507,
"w": 94,
"h": 182,
"ox": 0,
"oy": 0,
"sw": 94,
"sh": 182,
"ro": true
},
"adf0dae232a9ffa6a9ce1352a7360980.png": {
"x": 373,
"y": 470,
"w": 182,
"h": 125,
"ox": 0,
"oy": 0,
"sw": 182,
"sh": 125,
"ro": false
},
"b280118e-fcdf-4d8f-b2fd-357bd153c425.png": {
"x": 586,
"y": 2,
"w": 182,
"h": 134,
"ox": 0,
"oy": 0,
"sw": 182,
"sh": 134,
"ro": true
},
"c3192272-4150-4f33-8e76-110355f09831.png": {
"x": 189,
"y": 479,
"w": 92,
"h": 182,
"ox": 0,
"oy": 0,
"sw": 92,
"sh": 182,
"ro": true
},
"8bc5a36a8dbf1a26043a75b265b4b1eb.png": {
"x": 577,
"y": 186,
"w": 94,
"h": 181,
"ox": 0,
"oy": 0,
"sw": 94,
"sh": 181,
"ro": false
},
"dc51d376-f884-45fa-a76f-ca96f2f4d028.png": {
"x": 577,
"y": 369,
"w": 94,
"h": 181,
"ox": 0,
"oy": 0,
"sw": 94,
"sh": 181,
"ro": false
},
"4b8809c43f465d648d826696fa6f402a.png": {
"x": 2,
"y": 603,
"w": 179,
"h": 126,
"ox": 0,
"oy": 0,
"sw": 179,
"sh": 126,
"ro": false
},
"c2d234e2-dea6-44fd-bdf7-58d932204772.png": {
"x": 183,
"y": 603,
"w": 179,
"h": 126,
"ox": 0,
"oy": 0,
"sw": 179,
"sh": 126,
"ro": false
},
"0538f9077d06efad323df05b04e7662e.png": {
"x": 557,
"y": 552,
"w": 177,
"h": 129,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 129,
"ro": true
},
"0b8805ae-138d-4397-ba2e-78c631199ce0.png": {
"x": 722,
"y": 2,
"w": 177,
"h": 141,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 141,
"ro": true
},
"28d56a3f5babaecfd5f73e5813945b5f.png": {
"x": 722,
"y": 181,
"w": 177,
"h": 137,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 137,
"ro": true
},
"41178870-b275-495b-8c72-9badb88d9f8c.png": {
"x": 673,
"y": 360,
"w": 177,
"h": 137,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 137,
"ro": false
},
"6a6640c7-6455-4901-b39c-6b326a1bedbe.png": {
"x": 688,
"y": 499,
"w": 177,
"h": 142,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 142,
"ro": true
},
"beaa8224-6905-4ced-96eb-4f89d5896199.png": {
"x": 364,
"y": 597,
"w": 177,
"h": 129,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 129,
"ro": false
},
"d9e2bfe5ede84f7f53e57e6796cb54b2.png": {
"x": 2,
"y": 731,
"w": 177,
"h": 129,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 129,
"ro": false
},
"da8a31673c7f5b4c68f4d4dc44ba8faf.png": {
"x": 688,
"y": 678,
"w": 177,
"h": 141,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 141,
"ro": true
},
"e2feb63adef7d65f3d56dc84d5b59e65.png": {
"x": 2,
"y": 862,
"w": 177,
"h": 142,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 142,
"ro": false
},
"e68dfb4b-2a63-43f2-a476-7445d80a0853.png": {
"x": 364,
"y": 728,
"w": 177,
"h": 129,
"ox": 0,
"oy": 0,
"sw": 177,
"sh": 129,
"ro": false
},
"2cf13601-7f36-49cc-8699-2a212858725f.png": {
"x": 181,
"y": 731,
"w": 98,
"h": 174,
"ox": 0,
"oy": 0,
"sw": 98,
"sh": 174,
"ro": true
},
"b901f16e009de3b207787382b611a267.png": {
"x": 181,
"y": 831,
"w": 98,
"h": 174,
"ox": 0,
"oy": 0,
"sw": 98,
"sh": 174,
"ro": true
},
"73d6a8ce-2d10-48c1-9d98-6e9b9edf14cb.png": {
"x": 865,
"y": 2,
"w": 170,
"h": 151,
"ox": 0,
"oy": 0,
"sw": 170,
"sh": 151,
"ro": true
},
"f992a7bf1bceafbc97fece72e04bcea9.png": {
"x": 865,
"y": 174,
"w": 170,
"h": 151,
"ox": 0,
"oy": 0,
"sw": 170,
"sh": 151,
"ro": true
},
"ce491a6c44cb6e60d7cc705630d719e1.png": {
"x": 852,
"y": 360,
"w": 100,
"h": 163,
"ox": 0,
"oy": 0,
"sw": 100,
"sh": 163,
"ro": true
},
"df583b9d-9a9c-4f47-90f1-67bcfa9fb308.png": {
"x": 852,
"y": 462,
"w": 100,
"h": 163,
"ox": 0,
"oy": 0,
"sw": 100,
"sh": 163,
"ro": true
},
"293052b6-b434-43d0-9ab8-28b6186bd5ca.png": {
"x": 543,
"y": 731,
"w": 106,
"h": 94,
"ox": 0,
"oy": 0,
"sw": 106,
"sh": 94,
"ro": false
},
"39f071fb61eea4b15c28ee87f9a42ab9.png": {
"x": 543,
"y": 827,
"w": 106,
"h": 94,
"ox": 0,
"oy": 0,
"sw": 106,
"sh": 94,
"ro": false
},
"56b3e456-868a-49a1-bef9-029dc148ed5a.png": {
"x": 357,
"y": 859,
"w": 106,
"h": 94,
"ox": 0,
"oy": 0,
"sw": 106,
"sh": 94,
"ro": true
},
"7c52769b370035c2ed3d45c4575899f6.png": {
"x": 651,
"y": 857,
"w": 106,
"h": 95,
"ox": 0,
"oy": 0,
"sw": 106,
"sh": 95,
"ro": true
},
"ad8b5041-5fdb-4947-8b91-be70e6227ce9.png": {
"x": 748,
"y": 857,
"w": 106,
"h": 95,
"ox": 0,
"oy": 0,
"sw": 106,
"sh": 95,
"ro": true
},
"d5a8f96f100df42fd094915c7e70f625.png": {
"x": 845,
"y": 564,
"w": 106,
"h": 94,
"ox": 0,
"oy": 0,
"sw": 106,
"sh": 94,
"ro": false
}
}
}, },
{ {
"keys": "0272a464df7d9c1ca7bcd240ff5b6ff1.png,0339f8cec366210e1895bb822005f5ca.png,0471fa62dfb977981f0bbcbf03d5364c.png,0521db775413790e5754d0a359a26c05.png,056b70b501ad2bb9de96fe5a40ec244c.png,0960016b2a4b0945ae1a504cf05d58b5.png,1366e0dc8765778425bc3612c5a02991.png,16794fd2bb051adab7cf54b7e36d2c87.png,1cb1e4d2fa9e520728a397f33dc41e85.png,1daa260b-4ad6-453a-bf2f-3f67fa4ee58d.png,23a5d1a88f781623a16727e8defbe5f2.png,243da2df1403d966f345a1bf61310276.png,2592ff4846d8e05ea9280a9206b2b765.png,2b774e8e40d7eeb4f56565090fcf1a1f.png,3845b99169cdf2ffd89eec33629236b2.png,3965e139993e5072b687ba1e944ae568.png,4947993d9e0c86dd197cab056f32b26e.png,4f7efec7932532041668f88e5eaa6485.png,55223ef0f41017b272998afbf097e11c.png,643f90f77b7858c5a54f1f2d2371a396.png,6a9d7e1fce8bc7e9b014add6ba3a40a6.png,6b5ba368fd1b35b4f7ae7d0941983b5f.png,6eab818514531d8dd0aff35576e834fe.png,70fcb05422163afdc827b4c7aa421932.png,7454ffe7-f273-42da-a8f3-56dcda5eb90c.png,7acaef1cbaa854fcc731bf08b137faaa.png,8e2a1bf2cfd857dae69edb9d70820e23.png,9da9f6301aab3bb530cc6f45520c8ad5.png,9e4c70df3c98f66fc402e0e5e64e1f0b.png,9f874f56586024e4c873b6237d027558.png,a2a8d4e441d527d8fbd8f1d1b6ec237d.png,a4e1f9ed07a40359eaf255394e272272.png,aef93a72f0db18e2c6fbc356d101bac0.png,b18be206e2cfcc766695779607b91e33.png,b7cc11169a1c2980ff1f543adc5e83fb.png,b8bcfabb7cb1690133fbc53df818a86e.png,c6d5f14a2986660aec470230367eb3d3.png,c78db3f7c109f9cf731d5045c4886854.png,c7d57022-9cec-4af2-bcb3-faf33977b271.png,c9cef93be7451b685edbd1fcd8f61732.png,e0c229e262c34b128c0f50ecac33369b.png,e8e4ae26-a99e-4a79-9261-e5fcac395fb0.png", "keys": "0272a464df7d9c1ca7bcd240ff5b6ff1.png,0339f8cec366210e1895bb822005f5ca.png,0471fa62dfb977981f0bbcbf03d5364c.png,0521db775413790e5754d0a359a26c05.png,056b70b501ad2bb9de96fe5a40ec244c.png,0960016b2a4b0945ae1a504cf05d58b5.png,1366e0dc8765778425bc3612c5a02991.png,16794fd2bb051adab7cf54b7e36d2c87.png,1cb1e4d2fa9e520728a397f33dc41e85.png,1daa260b-4ad6-453a-bf2f-3f67fa4ee58d.png,23a5d1a88f781623a16727e8defbe5f2.png,243da2df1403d966f345a1bf61310276.png,2592ff4846d8e05ea9280a9206b2b765.png,2b774e8e40d7eeb4f56565090fcf1a1f.png,3845b99169cdf2ffd89eec33629236b2.png,3965e139993e5072b687ba1e944ae568.png,4947993d9e0c86dd197cab056f32b26e.png,4f7efec7932532041668f88e5eaa6485.png,55223ef0f41017b272998afbf097e11c.png,643f90f77b7858c5a54f1f2d2371a396.png,6a9d7e1fce8bc7e9b014add6ba3a40a6.png,6b5ba368fd1b35b4f7ae7d0941983b5f.png,6eab818514531d8dd0aff35576e834fe.png,70fcb05422163afdc827b4c7aa421932.png,7454ffe7-f273-42da-a8f3-56dcda5eb90c.png,7acaef1cbaa854fcc731bf08b137faaa.png,8e2a1bf2cfd857dae69edb9d70820e23.png,9da9f6301aab3bb530cc6f45520c8ad5.png,9e4c70df3c98f66fc402e0e5e64e1f0b.png,9f874f56586024e4c873b6237d027558.png,a2a8d4e441d527d8fbd8f1d1b6ec237d.png,a4e1f9ed07a40359eaf255394e272272.png,aef93a72f0db18e2c6fbc356d101bac0.png,b18be206e2cfcc766695779607b91e33.png,b7cc11169a1c2980ff1f543adc5e83fb.png,b8bcfabb7cb1690133fbc53df818a86e.png,c6d5f14a2986660aec470230367eb3d3.png,c78db3f7c109f9cf731d5045c4886854.png,c7d57022-9cec-4af2-bcb3-faf33977b271.png,c9cef93be7451b685edbd1fcd8f61732.png,e0c229e262c34b128c0f50ecac33369b.png,e8e4ae26-a99e-4a79-9261-e5fcac395fb0.png",
"name": "blank_shoe" "name": "blank_shoe",
"atlas": {
"7454ffe7-f273-42da-a8f3-56dcda5eb90c.png": {
"x": 2,
"y": 2,
"w": 463,
"h": 82,
"ox": 0,
"oy": 0,
"sw": 463,
"sh": 82,
"ro": false
},
"9da9f6301aab3bb530cc6f45520c8ad5.png": {
"x": 2,
"y": 86,
"w": 463,
"h": 82,
"ox": 0,
"oy": 0,
"sw": 463,
"sh": 82,
"ro": false
},
"1cb1e4d2fa9e520728a397f33dc41e85.png": {
"x": 2,
"y": 170,
"w": 461,
"h": 13,
"ox": 0,
"oy": 0,
"sw": 461,
"sh": 13,
"ro": false
},
"c7d57022-9cec-4af2-bcb3-faf33977b271.png": {
"x": 2,
"y": 185,
"w": 461,
"h": 13,
"ox": 0,
"oy": 0,
"sw": 461,
"sh": 13,
"ro": false
},
"1daa260b-4ad6-453a-bf2f-3f67fa4ee58d.png": {
"x": 2,
"y": 200,
"w": 443,
"h": 174,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 174,
"ro": false
},
"3845b99169cdf2ffd89eec33629236b2.png": {
"x": 2,
"y": 376,
"w": 443,
"h": 175,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 175,
"ro": false
},
"b8bcfabb7cb1690133fbc53df818a86e.png": {
"x": 467,
"y": 2,
"w": 443,
"h": 174,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 174,
"ro": true
},
"e8e4ae26-a99e-4a79-9261-e5fcac395fb0.png": {
"x": 2,
"y": 553,
"w": 443,
"h": 175,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 175,
"ro": false
},
"55223ef0f41017b272998afbf097e11c.png": {
"x": 447,
"y": 447,
"w": 110,
"h": 155,
"ox": 0,
"oy": 0,
"sw": 110,
"sh": 155,
"ro": true
},
"2b774e8e40d7eeb4f56565090fcf1a1f.png": {
"x": 447,
"y": 559,
"w": 85,
"h": 115,
"ox": 0,
"oy": 0,
"sw": 85,
"sh": 115,
"ro": false
},
"e0c229e262c34b128c0f50ecac33369b.png": {
"x": 534,
"y": 559,
"w": 107,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 107,
"sh": 56,
"ro": false
},
"8e2a1bf2cfd857dae69edb9d70820e23.png": {
"x": 534,
"y": 617,
"w": 60,
"h": 90,
"ox": 0,
"oy": 0,
"sw": 60,
"sh": 90,
"ro": true
},
"b7cc11169a1c2980ff1f543adc5e83fb.png": {
"x": 643,
"y": 2,
"w": 88,
"h": 54,
"ox": 0,
"oy": 0,
"sw": 88,
"sh": 54,
"ro": true
},
"0339f8cec366210e1895bb822005f5ca.png": {
"x": 447,
"y": 676,
"w": 72,
"h": 27,
"ox": 0,
"oy": 0,
"sw": 72,
"sh": 27,
"ro": false
},
"3965e139993e5072b687ba1e944ae568.png": {
"x": 604,
"y": 447,
"w": 26,
"h": 72,
"ox": 0,
"oy": 0,
"sw": 26,
"sh": 72,
"ro": true
},
"23a5d1a88f781623a16727e8defbe5f2.png": {
"x": 626,
"y": 617,
"w": 69,
"h": 30,
"ox": 0,
"oy": 0,
"sw": 69,
"sh": 30,
"ro": false
},
"c6d5f14a2986660aec470230367eb3d3.png": {
"x": 626,
"y": 649,
"w": 34,
"h": 68,
"ox": 0,
"oy": 0,
"sw": 34,
"sh": 68,
"ro": true
},
"16794fd2bb051adab7cf54b7e36d2c87.png": {
"x": 447,
"y": 200,
"w": 51,
"h": 15,
"ox": 0,
"oy": 0,
"sw": 51,
"sh": 15,
"ro": true
},
"4947993d9e0c86dd197cab056f32b26e.png": {
"x": 521,
"y": 679,
"w": 49,
"h": 42,
"ox": 0,
"oy": 0,
"sw": 49,
"sh": 42,
"ro": true
},
"c78db3f7c109f9cf731d5045c4886854.png": {
"x": 565,
"y": 679,
"w": 31,
"h": 47,
"ox": 0,
"oy": 0,
"sw": 31,
"sh": 47,
"ro": false
},
"aef93a72f0db18e2c6fbc356d101bac0.png": {
"x": 598,
"y": 679,
"w": 25,
"h": 46,
"ox": 0,
"oy": 0,
"sw": 25,
"sh": 46,
"ro": false
},
"643f90f77b7858c5a54f1f2d2371a396.png": {
"x": 625,
"y": 685,
"w": 43,
"h": 40,
"ox": 0,
"oy": 0,
"sw": 43,
"sh": 40,
"ro": true
},
"9e4c70df3c98f66fc402e0e5e64e1f0b.png": {
"x": 643,
"y": 92,
"w": 35,
"h": 43,
"ox": 0,
"oy": 0,
"sw": 35,
"sh": 43,
"ro": true
},
"1366e0dc8765778425bc3612c5a02991.png": {
"x": 643,
"y": 475,
"w": 41,
"h": 33,
"ox": 0,
"oy": 0,
"sw": 41,
"sh": 33,
"ro": false
},
"2592ff4846d8e05ea9280a9206b2b765.png": {
"x": 667,
"y": 685,
"w": 28,
"h": 39,
"ox": 0,
"oy": 0,
"sw": 28,
"sh": 39,
"ro": false
},
"056b70b501ad2bb9de96fe5a40ec244c.png": {
"x": 604,
"y": 475,
"w": 28,
"h": 37,
"ox": 0,
"oy": 0,
"sw": 28,
"sh": 37,
"ro": true
},
"b18be206e2cfcc766695779607b91e33.png": {
"x": 604,
"y": 505,
"w": 25,
"h": 29,
"ox": 0,
"oy": 0,
"sw": 25,
"sh": 29,
"ro": true
},
"7acaef1cbaa854fcc731bf08b137faaa.png": {
"x": 688,
"y": 92,
"w": 24,
"h": 9,
"ox": 0,
"oy": 0,
"sw": 24,
"sh": 9,
"ro": true
},
"c9cef93be7451b685edbd1fcd8f61732.png": {
"x": 604,
"y": 532,
"w": 14,
"h": 24,
"ox": 0,
"oy": 0,
"sw": 14,
"sh": 24,
"ro": false
},
"0471fa62dfb977981f0bbcbf03d5364c.png": {
"x": 447,
"y": 705,
"w": 23,
"h": 14,
"ox": 0,
"oy": 0,
"sw": 23,
"sh": 14,
"ro": true
},
"243da2df1403d966f345a1bf61310276.png": {
"x": 463,
"y": 705,
"w": 23,
"h": 23,
"ox": 0,
"oy": 0,
"sw": 23,
"sh": 23,
"ro": false
},
"9f874f56586024e4c873b6237d027558.png": {
"x": 447,
"y": 253,
"w": 22,
"h": 18,
"ox": 0,
"oy": 0,
"sw": 22,
"sh": 18,
"ro": true
},
"a4e1f9ed07a40359eaf255394e272272.png": {
"x": 447,
"y": 277,
"w": 20,
"h": 18,
"ox": 0,
"oy": 0,
"sw": 20,
"sh": 18,
"ro": true
},
"6b5ba368fd1b35b4f7ae7d0941983b5f.png": {
"x": 678,
"y": 129,
"w": 19,
"h": 19,
"ox": 0,
"oy": 0,
"sw": 19,
"sh": 19,
"ro": false
},
"6a9d7e1fce8bc7e9b014add6ba3a40a6.png": {
"x": 447,
"y": 299,
"w": 15,
"h": 16,
"ox": 0,
"oy": 0,
"sw": 15,
"sh": 16,
"ro": true
},
"70fcb05422163afdc827b4c7aa421932.png": {
"x": 447,
"y": 316,
"w": 16,
"h": 16,
"ox": 0,
"oy": 0,
"sw": 16,
"sh": 16,
"ro": false
},
"0272a464df7d9c1ca7bcd240ff5b6ff1.png": {
"x": 447,
"y": 334,
"w": 14,
"h": 15,
"ox": 0,
"oy": 0,
"sw": 14,
"sh": 15,
"ro": true
},
"0960016b2a4b0945ae1a504cf05d58b5.png": {
"x": 447,
"y": 350,
"w": 15,
"h": 14,
"ox": 0,
"oy": 0,
"sw": 15,
"sh": 14,
"ro": false
},
"a2a8d4e441d527d8fbd8f1d1b6ec237d.png": {
"x": 686,
"y": 150,
"w": 11,
"h": 11,
"ox": 0,
"oy": 0,
"sw": 11,
"sh": 11,
"ro": false
},
"0521db775413790e5754d0a359a26c05.png": {
"x": 686,
"y": 163,
"w": 10,
"h": 10,
"ox": 0,
"oy": 0,
"sw": 10,
"sh": 10,
"ro": false
},
"4f7efec7932532041668f88e5eaa6485.png": {
"x": 686,
"y": 175,
"w": 10,
"h": 10,
"ox": 0,
"oy": 0,
"sw": 10,
"sh": 10,
"ro": false
},
"6eab818514531d8dd0aff35576e834fe.png": {
"x": 688,
"y": 118,
"w": 9,
"h": 9,
"ox": 0,
"oy": 0,
"sw": 9,
"sh": 9,
"ro": false
}
}
}, },
{ {
"keys": "back.png,back_jordan.png,comCloseBtn.png,com_light.png,count-start.png,count1.png,count2.png,count3.png,music-off.png,music-on.png,toastBg.png,waitingBg.png,waitingRot.png,跳过按钮.png", "keys": "comCloseBtn.png,com_light.png,count-start.png,count1.png,count2.png,count3.png,jordan-icon.png,music-off.png,music-on.png,nike-icon.png,percennt0.png,percennt1.png,percennt2.png,percennt3.png,percennt4.png,percennt5.png,percennt6.png,percennt7.png,percennt8.png,percennt9.png,percenntp.png,ruready.png,toastBg.png,waitingBg.png,waitingRot.png,跳过按钮.png",
"name": "common" "name": "common",
"atlas": {
"com_light.png": {
"x": 2,
"y": 2,
"w": 746,
"h": 756,
"ox": 0,
"oy": 0,
"sw": 746,
"sh": 756,
"ro": false
},
"toastBg.png": {
"x": 750,
"y": 2,
"w": 460,
"h": 130,
"ox": 0,
"oy": 0,
"sw": 460,
"sh": 130,
"ro": true
},
"count-start.png": {
"x": 2,
"y": 760,
"w": 340,
"h": 168,
"ox": 0,
"oy": 0,
"sw": 340,
"sh": 168,
"ro": false
},
"waitingBg.png": {
"x": 344,
"y": 760,
"w": 160,
"h": 180,
"ox": 0,
"oy": 0,
"sw": 160,
"sh": 180,
"ro": true
},
"ruready.png": {
"x": 526,
"y": 760,
"w": 156,
"h": 38,
"ox": 0,
"oy": 0,
"sw": 156,
"sh": 38,
"ro": true
},
"count3.png": {
"x": 566,
"y": 760,
"w": 105,
"h": 150,
"ox": 0,
"oy": 0,
"sw": 105,
"sh": 150,
"ro": false
},
"count2.png": {
"x": 673,
"y": 760,
"w": 101,
"h": 148,
"ox": 0,
"oy": 0,
"sw": 101,
"sh": 148,
"ro": false
},
"count1.png": {
"x": 776,
"y": 464,
"w": 56,
"h": 145,
"ox": 0,
"oy": 0,
"sw": 56,
"sh": 145,
"ro": false
},
"nike-icon.png": {
"x": 834,
"y": 464,
"w": 138,
"h": 46,
"ox": 0,
"oy": 0,
"sw": 138,
"sh": 46,
"ro": true
},
"跳过按钮.png": {
"x": 750,
"y": 611,
"w": 123,
"h": 57,
"ox": 0,
"oy": 0,
"sw": 123,
"sh": 57,
"ro": false
},
"comCloseBtn.png": {
"x": 750,
"y": 670,
"w": 72,
"h": 72,
"ox": 0,
"oy": 0,
"sw": 72,
"sh": 72,
"ro": false
},
"jordan-icon.png": {
"x": 776,
"y": 744,
"w": 71,
"h": 65,
"ox": 0,
"oy": 0,
"sw": 71,
"sh": 65,
"ro": false
},
"music-off.png": {
"x": 776,
"y": 811,
"w": 60,
"h": 60,
"ox": 0,
"oy": 0,
"sw": 60,
"sh": 60,
"ro": false
},
"music-on.png": {
"x": 882,
"y": 2,
"w": 60,
"h": 60,
"ox": 0,
"oy": 0,
"sw": 60,
"sh": 60,
"ro": false
},
"percenntp.png": {
"x": 882,
"y": 64,
"w": 53,
"h": 59,
"ox": 0,
"oy": 0,
"sw": 53,
"sh": 59,
"ro": true
},
"percennt0.png": {
"x": 882,
"y": 119,
"w": 40,
"h": 57,
"ox": 0,
"oy": 0,
"sw": 40,
"sh": 57,
"ro": true
},
"percennt3.png": {
"x": 882,
"y": 161,
"w": 37,
"h": 57,
"ox": 0,
"oy": 0,
"sw": 37,
"sh": 57,
"ro": true
},
"percennt8.png": {
"x": 882,
"y": 200,
"w": 38,
"h": 57,
"ox": 0,
"oy": 0,
"sw": 38,
"sh": 57,
"ro": true
},
"percennt2.png": {
"x": 882,
"y": 240,
"w": 39,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 39,
"sh": 56,
"ro": true
},
"percennt5.png": {
"x": 882,
"y": 281,
"w": 37,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 37,
"sh": 56,
"ro": true
},
"percennt6.png": {
"x": 882,
"y": 320,
"w": 38,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 38,
"sh": 56,
"ro": true
},
"percennt9.png": {
"x": 882,
"y": 360,
"w": 38,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 38,
"sh": 56,
"ro": true
},
"waitingRot.png": {
"x": 882,
"y": 400,
"w": 56,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 56,
"sh": 56,
"ro": false
},
"percennt1.png": {
"x": 776,
"y": 873,
"w": 22,
"h": 55,
"ox": 0,
"oy": 0,
"sw": 22,
"sh": 55,
"ro": false
},
"percennt4.png": {
"x": 800,
"y": 873,
"w": 40,
"h": 55,
"ox": 0,
"oy": 0,
"sw": 40,
"sh": 55,
"ro": false
},
"percennt7.png": {
"x": 882,
"y": 458,
"w": 41,
"h": 55,
"ox": 0,
"oy": 0,
"sw": 41,
"sh": 55,
"ro": true
}
}
}, },
{ {
"keys": "c9a24fed01170dc61854098b7f6e50af.png", "keys": "c9a24fed01170dc61854098b7f6e50af.png",
"name": "excellent_icon" "name": "excellent_icon",
"atlas": {
"c9a24fed01170dc61854098b7f6e50af.png": {
"x": 2,
"y": 2,
"w": 343,
"h": 179,
"ox": 0,
"oy": 0,
"sw": 343,
"sh": 179,
"ro": false
}
}
}, },
{ {
"keys": "009ed41bfa913bd15c5dda62716e608c.png,02f26c4510df27a5acb8ce26b9c5b0ba.png,1d202725fd410588dfa8b3e1ccf810ce.png,2027bc3879e8f06799f1759fa914f426.png,245201acb5b065e60711e402277d4908.png,24cbb272ca0595390a65d16269acc141.png,28c9a63f6e33fbc7b7f9c51db5752ac9.png,32f6ae97f854c575c7130c9c2896a287.png,47d38d653cd78676a3ca3b4e7b6a7044.png,4fd8362250aa1555a1cb6352a10ac312.png,5cf06ed99e90cd0e4464cac6dbb29dc3.png,5d19c027ad8778f99a3f0950acdd2739.png,6c0fa5d1972318368c48f4c09418459d.png,71b5a61c46ec88c372180e56cbc0fb3d.png,722612e4c34ae14ba427382557a0c9cb.png,73ef3d3454a074c9decb1ecb7909105e.png,76d230aac3001933de45c949a9140889.png,77a0ae8dd94043602811479e935beafb.png,84f82a9ec12dd316f44382818fe0553c.png,9ac140216cfe3e2ba0c5f9dcb8de4856.png,a06938c7a7105be8ffd0e68c82527be5.png,a0f9249750bdd4bd9aa3f628c7f47c67.png,a3196dffd24bec4ceeb78c40e789411d.png,a811ad9246c54b177ae8c5a211ecbf02.png,a856a0dae3018ef19512f88849596579.png,addea92ee44e85d3b5c4ad97c67e0bbb.png,b7b9e7b3a43aff9ec5b46f0d253d69cc.png,ba494e2790eab1b74233301f7a6e68e2.png,bf2712c0db9cb0e2d408a529cd2421ec.png,bf3c7702119ae821578eb99c069617a3.png,c08f4c1bceb6c129da183349eaa18702.png,c111333453e0bb104a4c0d89c20c4472.png,c5aab24b86fe3182b1285f85eaec5bfe.png,ca3be215bf1c00d85f491a5ee971554f.png,cbb3cb0886f45f3e42e31b635ac2f13d.png,d024b2620af9a5f440a611167f596457.png,d77eb6d84abf89c0d276de9c598e4c58.png,d82e528b29ad71b09e0be5681959a789.png,db8bdb142b802b126523cfccf4d6a503.png,dfa3f688ec9fdd0a465f9417bd43ebf2.png,dfdbfa372b9183cb08d320aa3cc43a11.png,e0913099d595c5bc06c3d3daa62d2083.png,e1c091647a039b1c089709a81c4cd379.png,e3e8798120c483a49384a4fcc52c099c.png,e8b1bf3e159712ea403845a373fbf92e.png,f52e180cd79bcf8658830bc0c54942b9.png,f782b72f25909b59f23d0cad704f5eb4.png,ff5c46f42d987a67da838ff09c183a93.png", "keys": "009ed41bfa913bd15c5dda62716e608c.png,02f26c4510df27a5acb8ce26b9c5b0ba.png,1d202725fd410588dfa8b3e1ccf810ce.png,2027bc3879e8f06799f1759fa914f426.png,245201acb5b065e60711e402277d4908.png,24cbb272ca0595390a65d16269acc141.png,28c9a63f6e33fbc7b7f9c51db5752ac9.png,32f6ae97f854c575c7130c9c2896a287.png,47d38d653cd78676a3ca3b4e7b6a7044.png,4fd8362250aa1555a1cb6352a10ac312.png,5cf06ed99e90cd0e4464cac6dbb29dc3.png,5d19c027ad8778f99a3f0950acdd2739.png,6c0fa5d1972318368c48f4c09418459d.png,71b5a61c46ec88c372180e56cbc0fb3d.png,722612e4c34ae14ba427382557a0c9cb.png,73ef3d3454a074c9decb1ecb7909105e.png,76d230aac3001933de45c949a9140889.png,77a0ae8dd94043602811479e935beafb.png,84f82a9ec12dd316f44382818fe0553c.png,9ac140216cfe3e2ba0c5f9dcb8de4856.png,a06938c7a7105be8ffd0e68c82527be5.png,a0f9249750bdd4bd9aa3f628c7f47c67.png,a3196dffd24bec4ceeb78c40e789411d.png,a811ad9246c54b177ae8c5a211ecbf02.png,a856a0dae3018ef19512f88849596579.png,addea92ee44e85d3b5c4ad97c67e0bbb.png,b7b9e7b3a43aff9ec5b46f0d253d69cc.png,ba494e2790eab1b74233301f7a6e68e2.png,bf2712c0db9cb0e2d408a529cd2421ec.png,bf3c7702119ae821578eb99c069617a3.png,c08f4c1bceb6c129da183349eaa18702.png,c111333453e0bb104a4c0d89c20c4472.png,c5aab24b86fe3182b1285f85eaec5bfe.png,ca3be215bf1c00d85f491a5ee971554f.png,cbb3cb0886f45f3e42e31b635ac2f13d.png,d024b2620af9a5f440a611167f596457.png,d77eb6d84abf89c0d276de9c598e4c58.png,d82e528b29ad71b09e0be5681959a789.png,db8bdb142b802b126523cfccf4d6a503.png,dfa3f688ec9fdd0a465f9417bd43ebf2.png,dfdbfa372b9183cb08d320aa3cc43a11.png,e0913099d595c5bc06c3d3daa62d2083.png,e1c091647a039b1c089709a81c4cd379.png,e3e8798120c483a49384a4fcc52c099c.png,e8b1bf3e159712ea403845a373fbf92e.png,f52e180cd79bcf8658830bc0c54942b9.png,f782b72f25909b59f23d0cad704f5eb4.png,ff5c46f42d987a67da838ff09c183a93.png",
"name": "guidan_360" "name": "guidan_360",
"atlas": {
"a811ad9246c54b177ae8c5a211ecbf02.png": {
"x": 2,
"y": 2,
"w": 95,
"h": 208,
"ox": 35,
"oy": 18,
"sw": 150,
"sh": 240,
"ro": false
},
"f782b72f25909b59f23d0cad704f5eb4.png": {
"x": 99,
"y": 2,
"w": 94,
"h": 208,
"ox": 35,
"oy": 18,
"sw": 150,
"sh": 240,
"ro": false
},
"dfdbfa372b9183cb08d320aa3cc43a11.png": {
"x": 195,
"y": 2,
"w": 96,
"h": 207,
"ox": 35,
"oy": 19,
"sw": 150,
"sh": 240,
"ro": false
},
"a06938c7a7105be8ffd0e68c82527be5.png": {
"x": 2,
"y": 212,
"w": 98,
"h": 205,
"ox": 34,
"oy": 20,
"sw": 150,
"sh": 240,
"ro": true
},
"d82e528b29ad71b09e0be5681959a789.png": {
"x": 293,
"y": 2,
"w": 98,
"h": 204,
"ox": 35,
"oy": 20,
"sw": 150,
"sh": 240,
"ro": false
},
"47d38d653cd78676a3ca3b4e7b6a7044.png": {
"x": 209,
"y": 211,
"w": 100,
"h": 201,
"ox": 34,
"oy": 22,
"sw": 150,
"sh": 240,
"ro": false
},
"84f82a9ec12dd316f44382818fe0553c.png": {
"x": 2,
"y": 312,
"w": 100,
"h": 201,
"ox": 34,
"oy": 21,
"sw": 150,
"sh": 240,
"ro": true
},
"e3e8798120c483a49384a4fcc52c099c.png": {
"x": 393,
"y": 2,
"w": 81,
"h": 201,
"ox": 30,
"oy": 21,
"sw": 150,
"sh": 240,
"ro": false
},
"5cf06ed99e90cd0e4464cac6dbb29dc3.png": {
"x": 311,
"y": 208,
"w": 84,
"h": 200,
"ox": 28,
"oy": 22,
"sw": 150,
"sh": 240,
"ro": false
},
"71b5a61c46ec88c372180e56cbc0fb3d.png": {
"x": 2,
"y": 414,
"w": 84,
"h": 199,
"ox": 27,
"oy": 22,
"sw": 150,
"sh": 240,
"ro": true
},
"ca3be215bf1c00d85f491a5ee971554f.png": {
"x": 476,
"y": 2,
"w": 102,
"h": 198,
"ox": 33,
"oy": 24,
"sw": 150,
"sh": 240,
"ro": false
},
"c08f4c1bceb6c129da183349eaa18702.png": {
"x": 311,
"y": 410,
"w": 88,
"h": 197,
"ox": 25,
"oy": 24,
"sw": 150,
"sh": 240,
"ro": true
},
"c5aab24b86fe3182b1285f85eaec5bfe.png": {
"x": 397,
"y": 205,
"w": 87,
"h": 197,
"ox": 25,
"oy": 23,
"sw": 150,
"sh": 240,
"ro": false
},
"a0f9249750bdd4bd9aa3f628c7f47c67.png": {
"x": 2,
"y": 500,
"w": 101,
"h": 196,
"ox": 33,
"oy": 23,
"sw": 150,
"sh": 240,
"ro": true
},
"db8bdb142b802b126523cfccf4d6a503.png": {
"x": 486,
"y": 202,
"w": 91,
"h": 195,
"ox": 23,
"oy": 25,
"sw": 150,
"sh": 240,
"ro": false
},
"dfa3f688ec9fdd0a465f9417bd43ebf2.png": {
"x": 200,
"y": 500,
"w": 91,
"h": 195,
"ox": 23,
"oy": 24,
"sw": 150,
"sh": 240,
"ro": true
},
"a3196dffd24bec4ceeb78c40e789411d.png": {
"x": 580,
"y": 2,
"w": 103,
"h": 194,
"ox": 32,
"oy": 27,
"sw": 150,
"sh": 240,
"ro": false
},
"2027bc3879e8f06799f1759fa914f426.png": {
"x": 579,
"y": 202,
"w": 104,
"h": 192,
"ox": 32,
"oy": 25,
"sw": 150,
"sh": 240,
"ro": false
},
"1d202725fd410588dfa8b3e1ccf810ce.png": {
"x": 397,
"y": 500,
"w": 93,
"h": 191,
"ox": 21,
"oy": 26,
"sw": 150,
"sh": 240,
"ro": true
},
"f52e180cd79bcf8658830bc0c54942b9.png": {
"x": 2,
"y": 603,
"w": 94,
"h": 191,
"ox": 21,
"oy": 27,
"sw": 150,
"sh": 240,
"ro": true
},
"e1c091647a039b1c089709a81c4cd379.png": {
"x": 685,
"y": 2,
"w": 106,
"h": 190,
"ox": 30,
"oy": 30,
"sw": 150,
"sh": 240,
"ro": false
},
"32f6ae97f854c575c7130c9c2896a287.png": {
"x": 510,
"y": 399,
"w": 97,
"h": 188,
"ox": 20,
"oy": 29,
"sw": 150,
"sh": 240,
"ro": true
},
"722612e4c34ae14ba427382557a0c9cb.png": {
"x": 200,
"y": 595,
"w": 96,
"h": 188,
"ox": 19,
"oy": 27,
"sw": 150,
"sh": 240,
"ro": true
},
"73ef3d3454a074c9decb1ecb7909105e.png": {
"x": 685,
"y": 194,
"w": 106,
"h": 188,
"ox": 31,
"oy": 26,
"sw": 150,
"sh": 240,
"ro": false
},
"4fd8362250aa1555a1cb6352a10ac312.png": {
"x": 390,
"y": 595,
"w": 99,
"h": 185,
"ox": 19,
"oy": 31,
"sw": 150,
"sh": 240,
"ro": true
},
"cbb3cb0886f45f3e42e31b635ac2f13d.png": {
"x": 590,
"y": 498,
"w": 109,
"h": 185,
"ox": 29,
"oy": 33,
"sw": 150,
"sh": 240,
"ro": false
},
"24cbb272ca0595390a65d16269acc141.png": {
"x": 2,
"y": 699,
"w": 101,
"h": 184,
"ox": 17,
"oy": 29,
"sw": 150,
"sh": 240,
"ro": true
},
"9ac140216cfe3e2ba0c5f9dcb8de4856.png": {
"x": 577,
"y": 685,
"w": 109,
"h": 183,
"ox": 29,
"oy": 28,
"sw": 150,
"sh": 240,
"ro": true
},
"02f26c4510df27a5acb8ce26b9c5b0ba.png": {
"x": 793,
"y": 2,
"w": 111,
"h": 181,
"ox": 27,
"oy": 36,
"sw": 150,
"sh": 240,
"ro": false
},
"77a0ae8dd94043602811479e935beafb.png": {
"x": 195,
"y": 696,
"w": 102,
"h": 181,
"ox": 18,
"oy": 34,
"sw": 150,
"sh": 240,
"ro": true
},
"bf2712c0db9cb0e2d408a529cd2421ec.png": {
"x": 378,
"y": 696,
"w": 103,
"h": 181,
"ox": 16,
"oy": 30,
"sw": 150,
"sh": 240,
"ro": true
},
"245201acb5b065e60711e402277d4908.png": {
"x": 793,
"y": 185,
"w": 110,
"h": 178,
"ox": 28,
"oy": 30,
"sw": 150,
"sh": 240,
"ro": false
},
"c111333453e0bb104a4c0d89c20c4472.png": {
"x": 793,
"y": 365,
"w": 107,
"h": 178,
"ox": 17,
"oy": 36,
"sw": 150,
"sh": 240,
"ro": false
},
"a856a0dae3018ef19512f88849596579.png": {
"x": 701,
"y": 545,
"w": 112,
"h": 176,
"ox": 25,
"oy": 39,
"sw": 150,
"sh": 240,
"ro": true
},
"d77eb6d84abf89c0d276de9c598e4c58.png": {
"x": 2,
"y": 802,
"w": 106,
"h": 176,
"ox": 15,
"oy": 32,
"sw": 150,
"sh": 240,
"ro": true
},
"b7b9e7b3a43aff9ec5b46f0d253d69cc.png": {
"x": 561,
"y": 796,
"w": 109,
"h": 174,
"ox": 17,
"oy": 39,
"sw": 150,
"sh": 240,
"ro": true
},
"76d230aac3001933de45c949a9140889.png": {
"x": 762,
"y": 659,
"w": 111,
"h": 173,
"ox": 26,
"oy": 32,
"sw": 150,
"sh": 240,
"ro": false
},
"009ed41bfa913bd15c5dda62716e608c.png": {
"x": 906,
"y": 2,
"w": 109,
"h": 172,
"ox": 15,
"oy": 33,
"sw": 150,
"sh": 240,
"ro": false
},
"bf3c7702119ae821578eb99c069617a3.png": {
"x": 879,
"y": 545,
"w": 114,
"h": 171,
"ox": 23,
"oy": 42,
"sw": 150,
"sh": 240,
"ro": false
},
"28c9a63f6e33fbc7b7f9c51db5752ac9.png": {
"x": 902,
"y": 365,
"w": 112,
"h": 170,
"ox": 17,
"oy": 42,
"sw": 150,
"sh": 240,
"ro": false
},
"6c0fa5d1972318368c48f4c09418459d.png": {
"x": 875,
"y": 718,
"w": 114,
"h": 168,
"ox": 23,
"oy": 34,
"sw": 150,
"sh": 240,
"ro": false
},
"addea92ee44e85d3b5c4ad97c67e0bbb.png": {
"x": 2,
"y": 910,
"w": 112,
"h": 168,
"ox": 15,
"oy": 34,
"sw": 150,
"sh": 240,
"ro": true
},
"e8b1bf3e159712ea403845a373fbf92e.png": {
"x": 180,
"y": 907,
"w": 115,
"h": 167,
"ox": 21,
"oy": 45,
"sw": 150,
"sh": 240,
"ro": true
},
"5d19c027ad8778f99a3f0950acdd2739.png": {
"x": 737,
"y": 888,
"w": 116,
"h": 166,
"ox": 17,
"oy": 45,
"sw": 150,
"sh": 240,
"ro": true
},
"d024b2620af9a5f440a611167f596457.png": {
"x": 349,
"y": 907,
"w": 114,
"h": 164,
"ox": 16,
"oy": 35,
"sw": 150,
"sh": 240,
"ro": true
},
"ff5c46f42d987a67da838ff09c183a93.png": {
"x": 1017,
"y": 2,
"w": 116,
"h": 164,
"ox": 20,
"oy": 35,
"sw": 150,
"sh": 240,
"ro": false
},
"e0913099d595c5bc06c3d3daa62d2083.png": {
"x": 1016,
"y": 176,
"w": 117,
"h": 162,
"ox": 18,
"oy": 48,
"sw": 150,
"sh": 240,
"ro": false
},
"ba494e2790eab1b74233301f7a6e68e2.png": {
"x": 1016,
"y": 340,
"w": 117,
"h": 160,
"ox": 17,
"oy": 36,
"sw": 150,
"sh": 240,
"ro": false
}
}
}, },
{ {
"keys": "p1.png,p10.png,p11.png,p12.png,p13.png,p14.png,p15.png,p16.png,p17.png,p18.png,p19.png,p2.png,p20.png,p3.png,p4.png,p5.png,p6.png,p7.png,p8.png,p9.png", "keys": "p1.png,p10.png,p11.png,p12.png,p13.png,p14.png,p15.png,p16.png,p17.png,p18.png,p19.png,p2.png,p20.png,p3.png,p4.png,p5.png,p6.png,p7.png,p8.png,p9.png",
"name": "jordan_eles" "name": "jordan_eles",
"atlas": {
"p13.png": {
"x": 2,
"y": 2,
"w": 438,
"h": 410,
"ox": 0,
"oy": 0,
"sw": 438,
"sh": 410,
"ro": false
},
"p4.png": {
"x": 2,
"y": 414,
"w": 343,
"h": 438,
"ox": 0,
"oy": 0,
"sw": 343,
"sh": 438,
"ro": true
},
"p6.png": {
"x": 442,
"y": 2,
"w": 425,
"h": 377,
"ox": 0,
"oy": 0,
"sw": 425,
"sh": 377,
"ro": true
},
"p17.png": {
"x": 2,
"y": 759,
"w": 416,
"h": 298,
"ox": 0,
"oy": 0,
"sw": 416,
"sh": 298,
"ro": false
},
"p9.png": {
"x": 442,
"y": 429,
"w": 410,
"h": 299,
"ox": 0,
"oy": 0,
"sw": 410,
"sh": 299,
"ro": true
},
"p15.png": {
"x": 821,
"y": 2,
"w": 401,
"h": 373,
"ox": 0,
"oy": 0,
"sw": 401,
"sh": 373,
"ro": true
},
"p5.png": {
"x": 821,
"y": 405,
"w": 337,
"h": 397,
"ox": 0,
"oy": 0,
"sw": 337,
"sh": 397,
"ro": false
},
"p18.png": {
"x": 2,
"y": 1059,
"w": 270,
"h": 394,
"ox": 0,
"oy": 0,
"sw": 270,
"sh": 394,
"ro": true
},
"p10.png": {
"x": 743,
"y": 804,
"w": 390,
"h": 367,
"ox": 0,
"oy": 0,
"sw": 390,
"sh": 367,
"ro": false
},
"p19.png": {
"x": 420,
"y": 841,
"w": 272,
"h": 390,
"ox": 0,
"oy": 0,
"sw": 272,
"sh": 390,
"ro": false
},
"p12.png": {
"x": 1196,
"y": 2,
"w": 345,
"h": 387,
"ox": 0,
"oy": 0,
"sw": 345,
"sh": 387,
"ro": false
},
"p8.png": {
"x": 1135,
"y": 804,
"w": 382,
"h": 318,
"ox": 0,
"oy": 0,
"sw": 382,
"sh": 318,
"ro": false
},
"p7.png": {
"x": 1160,
"y": 405,
"w": 381,
"h": 332,
"ox": 0,
"oy": 0,
"sw": 381,
"sh": 332,
"ro": false
},
"p3.png": {
"x": 2,
"y": 1331,
"w": 374,
"h": 380,
"ox": 0,
"oy": 0,
"sw": 374,
"sh": 380,
"ro": true
},
"p2.png": {
"x": 1135,
"y": 1124,
"w": 378,
"h": 342,
"ox": 0,
"oy": 0,
"sw": 378,
"sh": 342,
"ro": false
},
"p14.png": {
"x": 384,
"y": 1331,
"w": 373,
"h": 333,
"ox": 0,
"oy": 0,
"sw": 373,
"sh": 333,
"ro": true
},
"p1.png": {
"x": 719,
"y": 1173,
"w": 324,
"h": 372,
"ox": 0,
"oy": 0,
"sw": 324,
"sh": 372,
"ro": true
},
"p16.png": {
"x": 1543,
"y": 2,
"w": 251,
"h": 371,
"ox": 0,
"oy": 0,
"sw": 251,
"sh": 371,
"ro": false
},
"p11.png": {
"x": 2,
"y": 1707,
"w": 326,
"h": 356,
"ox": 0,
"oy": 0,
"sw": 326,
"sh": 356,
"ro": true
},
"p20.png": {
"x": 360,
"y": 1707,
"w": 300,
"h": 343,
"ox": 0,
"oy": 0,
"sw": 300,
"sh": 343,
"ro": true
}
}
}, },
{ {
"keys": "p1.png,p10.png,p11.png,p12.png,p13.png,p14.png,p15.png,p16.png,p17.png,p18.png,p19.png,p2.png,p20.png,p3.png,p4.png,p5.png,p6.png,p7.png,p8.png,p9.png", "keys": "p1.png,p10.png,p11.png,p12.png,p13.png,p14.png,p15.png,p16.png,p17.png,p18.png,p19.png,p2.png,p20.png,p3.png,p4.png,p5.png,p6.png,p7.png,p8.png,p9.png",
"name": "nike_eles" "name": "nike_eles",
"atlas": {
"p13.png": {
"x": 2,
"y": 2,
"w": 438,
"h": 410,
"ox": 0,
"oy": 0,
"sw": 438,
"sh": 410,
"ro": false
},
"p4.png": {
"x": 2,
"y": 414,
"w": 343,
"h": 438,
"ox": 0,
"oy": 0,
"sw": 343,
"sh": 438,
"ro": true
},
"p6.png": {
"x": 442,
"y": 2,
"w": 425,
"h": 377,
"ox": 0,
"oy": 0,
"sw": 425,
"sh": 377,
"ro": true
},
"p17.png": {
"x": 2,
"y": 759,
"w": 416,
"h": 298,
"ox": 0,
"oy": 0,
"sw": 416,
"sh": 298,
"ro": false
},
"p9.png": {
"x": 442,
"y": 429,
"w": 410,
"h": 299,
"ox": 0,
"oy": 0,
"sw": 410,
"sh": 299,
"ro": true
},
"p15.png": {
"x": 821,
"y": 2,
"w": 401,
"h": 373,
"ox": 0,
"oy": 0,
"sw": 401,
"sh": 373,
"ro": true
},
"p5.png": {
"x": 821,
"y": 405,
"w": 337,
"h": 397,
"ox": 0,
"oy": 0,
"sw": 337,
"sh": 397,
"ro": false
},
"p18.png": {
"x": 2,
"y": 1059,
"w": 270,
"h": 394,
"ox": 0,
"oy": 0,
"sw": 270,
"sh": 394,
"ro": true
},
"p10.png": {
"x": 743,
"y": 804,
"w": 390,
"h": 367,
"ox": 0,
"oy": 0,
"sw": 390,
"sh": 367,
"ro": false
},
"p19.png": {
"x": 420,
"y": 841,
"w": 272,
"h": 390,
"ox": 0,
"oy": 0,
"sw": 272,
"sh": 390,
"ro": false
},
"p12.png": {
"x": 1196,
"y": 2,
"w": 345,
"h": 387,
"ox": 0,
"oy": 0,
"sw": 345,
"sh": 387,
"ro": false
},
"p8.png": {
"x": 1135,
"y": 804,
"w": 382,
"h": 318,
"ox": 0,
"oy": 0,
"sw": 382,
"sh": 318,
"ro": false
},
"p7.png": {
"x": 1160,
"y": 405,
"w": 381,
"h": 332,
"ox": 0,
"oy": 0,
"sw": 381,
"sh": 332,
"ro": false
},
"p3.png": {
"x": 2,
"y": 1331,
"w": 374,
"h": 380,
"ox": 0,
"oy": 0,
"sw": 374,
"sh": 380,
"ro": true
},
"p2.png": {
"x": 1135,
"y": 1124,
"w": 378,
"h": 342,
"ox": 0,
"oy": 0,
"sw": 378,
"sh": 342,
"ro": false
},
"p14.png": {
"x": 384,
"y": 1331,
"w": 373,
"h": 333,
"ox": 0,
"oy": 0,
"sw": 373,
"sh": 333,
"ro": true
},
"p1.png": {
"x": 719,
"y": 1173,
"w": 324,
"h": 372,
"ox": 0,
"oy": 0,
"sw": 324,
"sh": 372,
"ro": true
},
"p16.png": {
"x": 1543,
"y": 2,
"w": 251,
"h": 371,
"ox": 0,
"oy": 0,
"sw": 251,
"sh": 371,
"ro": false
},
"p11.png": {
"x": 2,
"y": 1707,
"w": 326,
"h": 356,
"ox": 0,
"oy": 0,
"sw": 326,
"sh": 356,
"ro": true
},
"p20.png": {
"x": 360,
"y": 1707,
"w": 300,
"h": 343,
"ox": 0,
"oy": 0,
"sw": 300,
"sh": 343,
"ro": true
}
}
}, },
{ {
"keys": "0272a464df7d9c1ca7bcd240ff5b6ff1.png,0339f8cec366210e1895bb822005f5ca.png,0471fa62dfb977981f0bbcbf03d5364c.png,0521db775413790e5754d0a359a26c05.png,056b70b501ad2bb9de96fe5a40ec244c.png,0960016b2a4b0945ae1a504cf05d58b5.png,1366e0dc8765778425bc3612c5a02991.png,16794fd2bb051adab7cf54b7e36d2c87.png,1cb1e4d2fa9e520728a397f33dc41e85.png,23a5d1a88f781623a16727e8defbe5f2.png,243da2df1403d966f345a1bf61310276.png,2592ff4846d8e05ea9280a9206b2b765.png,2b774e8e40d7eeb4f56565090fcf1a1f.png,3965e139993e5072b687ba1e944ae568.png,3d5139ce-fcfd-4604-b6da-282230f8afee.png,4947993d9e0c86dd197cab056f32b26e.png,4f7efec7932532041668f88e5eaa6485.png,55223ef0f41017b272998afbf097e11c.png,643f90f77b7858c5a54f1f2d2371a396.png,6a9d7e1fce8bc7e9b014add6ba3a40a6.png,6b5ba368fd1b35b4f7ae7d0941983b5f.png,6eab818514531d8dd0aff35576e834fe.png,70fcb05422163afdc827b4c7aa421932.png,7acaef1cbaa854fcc731bf08b137faaa.png,7f2a9fd9bb5aa175e606246dd843aed9.png,8e2a1bf2cfd857dae69edb9d70820e23.png,9e4c70df3c98f66fc402e0e5e64e1f0b.png,9f874f56586024e4c873b6237d027558.png,a2a8d4e441d527d8fbd8f1d1b6ec237d.png,a4e1f9ed07a40359eaf255394e272272.png,aef93a72f0db18e2c6fbc356d101bac0.png,b18be206e2cfcc766695779607b91e33.png,b7cc11169a1c2980ff1f543adc5e83fb.png,b9689750-84db-4dc3-9bba-70c6e86ff2ca.png,bbd780a01510cbc706a71d5f96f52dcb.png,c6d5f14a2986660aec470230367eb3d3.png,c78db3f7c109f9cf731d5045c4886854.png,c7d57022-9cec-4af2-bcb3-faf33977b271.png,c9cef93be7451b685edbd1fcd8f61732.png,ddde1ae50b039bf96ef7737d5708f7dd.png,e0c229e262c34b128c0f50ecac33369b.png,eb51f7d9-1919-48e8-8a5b-5e2ee8cf3075.png", "keys": "0272a464df7d9c1ca7bcd240ff5b6ff1.png,0339f8cec366210e1895bb822005f5ca.png,0471fa62dfb977981f0bbcbf03d5364c.png,0521db775413790e5754d0a359a26c05.png,056b70b501ad2bb9de96fe5a40ec244c.png,0960016b2a4b0945ae1a504cf05d58b5.png,1366e0dc8765778425bc3612c5a02991.png,16794fd2bb051adab7cf54b7e36d2c87.png,1cb1e4d2fa9e520728a397f33dc41e85.png,23a5d1a88f781623a16727e8defbe5f2.png,243da2df1403d966f345a1bf61310276.png,2592ff4846d8e05ea9280a9206b2b765.png,2b774e8e40d7eeb4f56565090fcf1a1f.png,3965e139993e5072b687ba1e944ae568.png,3d5139ce-fcfd-4604-b6da-282230f8afee.png,4947993d9e0c86dd197cab056f32b26e.png,4f7efec7932532041668f88e5eaa6485.png,55223ef0f41017b272998afbf097e11c.png,643f90f77b7858c5a54f1f2d2371a396.png,6a9d7e1fce8bc7e9b014add6ba3a40a6.png,6b5ba368fd1b35b4f7ae7d0941983b5f.png,6eab818514531d8dd0aff35576e834fe.png,70fcb05422163afdc827b4c7aa421932.png,7acaef1cbaa854fcc731bf08b137faaa.png,7f2a9fd9bb5aa175e606246dd843aed9.png,8e2a1bf2cfd857dae69edb9d70820e23.png,9e4c70df3c98f66fc402e0e5e64e1f0b.png,9f874f56586024e4c873b6237d027558.png,a2a8d4e441d527d8fbd8f1d1b6ec237d.png,a4e1f9ed07a40359eaf255394e272272.png,aef93a72f0db18e2c6fbc356d101bac0.png,b18be206e2cfcc766695779607b91e33.png,b7cc11169a1c2980ff1f543adc5e83fb.png,b9689750-84db-4dc3-9bba-70c6e86ff2ca.png,bbd780a01510cbc706a71d5f96f52dcb.png,c6d5f14a2986660aec470230367eb3d3.png,c78db3f7c109f9cf731d5045c4886854.png,c7d57022-9cec-4af2-bcb3-faf33977b271.png,c9cef93be7451b685edbd1fcd8f61732.png,ddde1ae50b039bf96ef7737d5708f7dd.png,e0c229e262c34b128c0f50ecac33369b.png,eb51f7d9-1919-48e8-8a5b-5e2ee8cf3075.png",
"name": "red_shoe" "name": "red_shoe",
"atlas": {
"7f2a9fd9bb5aa175e606246dd843aed9.png": {
"x": 2,
"y": 2,
"w": 463,
"h": 82,
"ox": 0,
"oy": 0,
"sw": 463,
"sh": 82,
"ro": false
},
"b9689750-84db-4dc3-9bba-70c6e86ff2ca.png": {
"x": 2,
"y": 86,
"w": 463,
"h": 82,
"ox": 0,
"oy": 0,
"sw": 463,
"sh": 82,
"ro": false
},
"1cb1e4d2fa9e520728a397f33dc41e85.png": {
"x": 2,
"y": 170,
"w": 461,
"h": 13,
"ox": 0,
"oy": 0,
"sw": 461,
"sh": 13,
"ro": false
},
"c7d57022-9cec-4af2-bcb3-faf33977b271.png": {
"x": 2,
"y": 185,
"w": 461,
"h": 13,
"ox": 0,
"oy": 0,
"sw": 461,
"sh": 13,
"ro": false
},
"3d5139ce-fcfd-4604-b6da-282230f8afee.png": {
"x": 2,
"y": 200,
"w": 443,
"h": 174,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 174,
"ro": false
},
"bbd780a01510cbc706a71d5f96f52dcb.png": {
"x": 2,
"y": 376,
"w": 443,
"h": 175,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 175,
"ro": false
},
"ddde1ae50b039bf96ef7737d5708f7dd.png": {
"x": 467,
"y": 2,
"w": 443,
"h": 174,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 174,
"ro": true
},
"eb51f7d9-1919-48e8-8a5b-5e2ee8cf3075.png": {
"x": 2,
"y": 553,
"w": 443,
"h": 175,
"ox": 0,
"oy": 0,
"sw": 443,
"sh": 175,
"ro": false
},
"55223ef0f41017b272998afbf097e11c.png": {
"x": 447,
"y": 447,
"w": 110,
"h": 155,
"ox": 0,
"oy": 0,
"sw": 110,
"sh": 155,
"ro": true
},
"2b774e8e40d7eeb4f56565090fcf1a1f.png": {
"x": 447,
"y": 559,
"w": 85,
"h": 115,
"ox": 0,
"oy": 0,
"sw": 85,
"sh": 115,
"ro": false
},
"e0c229e262c34b128c0f50ecac33369b.png": {
"x": 534,
"y": 559,
"w": 107,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 107,
"sh": 56,
"ro": false
},
"8e2a1bf2cfd857dae69edb9d70820e23.png": {
"x": 534,
"y": 617,
"w": 60,
"h": 90,
"ox": 0,
"oy": 0,
"sw": 60,
"sh": 90,
"ro": true
},
"b7cc11169a1c2980ff1f543adc5e83fb.png": {
"x": 643,
"y": 2,
"w": 88,
"h": 54,
"ox": 0,
"oy": 0,
"sw": 88,
"sh": 54,
"ro": true
},
"0339f8cec366210e1895bb822005f5ca.png": {
"x": 447,
"y": 676,
"w": 72,
"h": 27,
"ox": 0,
"oy": 0,
"sw": 72,
"sh": 27,
"ro": false
},
"3965e139993e5072b687ba1e944ae568.png": {
"x": 604,
"y": 447,
"w": 26,
"h": 72,
"ox": 0,
"oy": 0,
"sw": 26,
"sh": 72,
"ro": true
},
"23a5d1a88f781623a16727e8defbe5f2.png": {
"x": 626,
"y": 617,
"w": 69,
"h": 30,
"ox": 0,
"oy": 0,
"sw": 69,
"sh": 30,
"ro": false
},
"c6d5f14a2986660aec470230367eb3d3.png": {
"x": 626,
"y": 649,
"w": 34,
"h": 68,
"ox": 0,
"oy": 0,
"sw": 34,
"sh": 68,
"ro": true
},
"16794fd2bb051adab7cf54b7e36d2c87.png": {
"x": 447,
"y": 200,
"w": 51,
"h": 15,
"ox": 0,
"oy": 0,
"sw": 51,
"sh": 15,
"ro": true
},
"4947993d9e0c86dd197cab056f32b26e.png": {
"x": 521,
"y": 679,
"w": 49,
"h": 42,
"ox": 0,
"oy": 0,
"sw": 49,
"sh": 42,
"ro": true
},
"c78db3f7c109f9cf731d5045c4886854.png": {
"x": 565,
"y": 679,
"w": 31,
"h": 47,
"ox": 0,
"oy": 0,
"sw": 31,
"sh": 47,
"ro": false
},
"aef93a72f0db18e2c6fbc356d101bac0.png": {
"x": 598,
"y": 679,
"w": 25,
"h": 46,
"ox": 0,
"oy": 0,
"sw": 25,
"sh": 46,
"ro": false
},
"643f90f77b7858c5a54f1f2d2371a396.png": {
"x": 625,
"y": 685,
"w": 43,
"h": 40,
"ox": 0,
"oy": 0,
"sw": 43,
"sh": 40,
"ro": true
},
"9e4c70df3c98f66fc402e0e5e64e1f0b.png": {
"x": 643,
"y": 92,
"w": 35,
"h": 43,
"ox": 0,
"oy": 0,
"sw": 35,
"sh": 43,
"ro": true
},
"1366e0dc8765778425bc3612c5a02991.png": {
"x": 643,
"y": 475,
"w": 41,
"h": 33,
"ox": 0,
"oy": 0,
"sw": 41,
"sh": 33,
"ro": false
},
"2592ff4846d8e05ea9280a9206b2b765.png": {
"x": 667,
"y": 685,
"w": 28,
"h": 39,
"ox": 0,
"oy": 0,
"sw": 28,
"sh": 39,
"ro": false
},
"056b70b501ad2bb9de96fe5a40ec244c.png": {
"x": 604,
"y": 475,
"w": 28,
"h": 37,
"ox": 0,
"oy": 0,
"sw": 28,
"sh": 37,
"ro": true
},
"b18be206e2cfcc766695779607b91e33.png": {
"x": 604,
"y": 505,
"w": 25,
"h": 29,
"ox": 0,
"oy": 0,
"sw": 25,
"sh": 29,
"ro": true
},
"7acaef1cbaa854fcc731bf08b137faaa.png": {
"x": 688,
"y": 92,
"w": 24,
"h": 9,
"ox": 0,
"oy": 0,
"sw": 24,
"sh": 9,
"ro": true
},
"c9cef93be7451b685edbd1fcd8f61732.png": {
"x": 604,
"y": 532,
"w": 14,
"h": 24,
"ox": 0,
"oy": 0,
"sw": 14,
"sh": 24,
"ro": false
},
"0471fa62dfb977981f0bbcbf03d5364c.png": {
"x": 447,
"y": 705,
"w": 23,
"h": 14,
"ox": 0,
"oy": 0,
"sw": 23,
"sh": 14,
"ro": true
},
"243da2df1403d966f345a1bf61310276.png": {
"x": 463,
"y": 705,
"w": 23,
"h": 23,
"ox": 0,
"oy": 0,
"sw": 23,
"sh": 23,
"ro": false
},
"9f874f56586024e4c873b6237d027558.png": {
"x": 447,
"y": 253,
"w": 22,
"h": 18,
"ox": 0,
"oy": 0,
"sw": 22,
"sh": 18,
"ro": true
},
"a4e1f9ed07a40359eaf255394e272272.png": {
"x": 447,
"y": 277,
"w": 20,
"h": 18,
"ox": 0,
"oy": 0,
"sw": 20,
"sh": 18,
"ro": true
},
"6b5ba368fd1b35b4f7ae7d0941983b5f.png": {
"x": 678,
"y": 129,
"w": 19,
"h": 19,
"ox": 0,
"oy": 0,
"sw": 19,
"sh": 19,
"ro": false
},
"6a9d7e1fce8bc7e9b014add6ba3a40a6.png": {
"x": 447,
"y": 299,
"w": 15,
"h": 16,
"ox": 0,
"oy": 0,
"sw": 15,
"sh": 16,
"ro": true
},
"70fcb05422163afdc827b4c7aa421932.png": {
"x": 447,
"y": 316,
"w": 16,
"h": 16,
"ox": 0,
"oy": 0,
"sw": 16,
"sh": 16,
"ro": false
},
"0272a464df7d9c1ca7bcd240ff5b6ff1.png": {
"x": 447,
"y": 334,
"w": 14,
"h": 15,
"ox": 0,
"oy": 0,
"sw": 14,
"sh": 15,
"ro": true
},
"0960016b2a4b0945ae1a504cf05d58b5.png": {
"x": 447,
"y": 350,
"w": 15,
"h": 14,
"ox": 0,
"oy": 0,
"sw": 15,
"sh": 14,
"ro": false
},
"a2a8d4e441d527d8fbd8f1d1b6ec237d.png": {
"x": 686,
"y": 150,
"w": 11,
"h": 11,
"ox": 0,
"oy": 0,
"sw": 11,
"sh": 11,
"ro": false
},
"0521db775413790e5754d0a359a26c05.png": {
"x": 686,
"y": 163,
"w": 10,
"h": 10,
"ox": 0,
"oy": 0,
"sw": 10,
"sh": 10,
"ro": false
},
"4f7efec7932532041668f88e5eaa6485.png": {
"x": 686,
"y": 175,
"w": 10,
"h": 10,
"ox": 0,
"oy": 0,
"sw": 10,
"sh": 10,
"ro": false
},
"6eab818514531d8dd0aff35576e834fe.png": {
"x": 688,
"y": 118,
"w": 9,
"h": 9,
"ox": 0,
"oy": 0,
"sw": 9,
"sh": 9,
"ro": false
}
}
}, },
{ {
"keys": "0272a464df7d9c1ca7bcd240ff5b6ff1.png,0339f8cec366210e1895bb822005f5ca.png,0471fa62dfb977981f0bbcbf03d5364c.png,0521db775413790e5754d0a359a26c05.png,056b70b501ad2bb9de96fe5a40ec244c.png,0960016b2a4b0945ae1a504cf05d58b5.png,1366e0dc8765778425bc3612c5a02991.png,16794fd2bb051adab7cf54b7e36d2c87.png,1cb1e4d2fa9e520728a397f33dc41e85.png,23a5d1a88f781623a16727e8defbe5f2.png,243da2df1403d966f345a1bf61310276.png,2592ff4846d8e05ea9280a9206b2b765.png,2b774e8e40d7eeb4f56565090fcf1a1f.png,3965e139993e5072b687ba1e944ae568.png,4947993d9e0c86dd197cab056f32b26e.png,4f7efec7932532041668f88e5eaa6485.png,55223ef0f41017b272998afbf097e11c.png,643f90f77b7858c5a54f1f2d2371a396.png,6a9d7e1fce8bc7e9b014add6ba3a40a6.png,6b5ba368fd1b35b4f7ae7d0941983b5f.png,6eab818514531d8dd0aff35576e834fe.png,70fcb05422163afdc827b4c7aa421932.png,75040919584435153d89b059a3df0bb3.png,77dbe8db0f6b44bf93b5033f3bfcf309.png,7acaef1cbaa854fcc731bf08b137faaa.png,8e2a1bf2cfd857dae69edb9d70820e23.png,9e4c70df3c98f66fc402e0e5e64e1f0b.png,9f874f56586024e4c873b6237d027558.png,a2a8d4e441d527d8fbd8f1d1b6ec237d.png,a4e1f9ed07a40359eaf255394e272272.png,aef93a72f0db18e2c6fbc356d101bac0.png,b18be206e2cfcc766695779607b91e33.png,b7cc11169a1c2980ff1f543adc5e83fb.png,c6d5f14a2986660aec470230367eb3d3.png,c78db3f7c109f9cf731d5045c4886854.png,c9cef93be7451b685edbd1fcd8f61732.png,e0c229e262c34b128c0f50ecac33369b.png,fd59bf6380de3ea52dcbbbec373bb1b4.png", "keys": "0272a464df7d9c1ca7bcd240ff5b6ff1.png,0339f8cec366210e1895bb822005f5ca.png,0471fa62dfb977981f0bbcbf03d5364c.png,0521db775413790e5754d0a359a26c05.png,056b70b501ad2bb9de96fe5a40ec244c.png,0960016b2a4b0945ae1a504cf05d58b5.png,1366e0dc8765778425bc3612c5a02991.png,16794fd2bb051adab7cf54b7e36d2c87.png,1cb1e4d2fa9e520728a397f33dc41e85.png,23a5d1a88f781623a16727e8defbe5f2.png,243da2df1403d966f345a1bf61310276.png,2592ff4846d8e05ea9280a9206b2b765.png,2b774e8e40d7eeb4f56565090fcf1a1f.png,3965e139993e5072b687ba1e944ae568.png,4947993d9e0c86dd197cab056f32b26e.png,4f7efec7932532041668f88e5eaa6485.png,55223ef0f41017b272998afbf097e11c.png,643f90f77b7858c5a54f1f2d2371a396.png,6a9d7e1fce8bc7e9b014add6ba3a40a6.png,6b5ba368fd1b35b4f7ae7d0941983b5f.png,6eab818514531d8dd0aff35576e834fe.png,70fcb05422163afdc827b4c7aa421932.png,75040919584435153d89b059a3df0bb3.png,77dbe8db0f6b44bf93b5033f3bfcf309.png,7acaef1cbaa854fcc731bf08b137faaa.png,8e2a1bf2cfd857dae69edb9d70820e23.png,9e4c70df3c98f66fc402e0e5e64e1f0b.png,9f874f56586024e4c873b6237d027558.png,a2a8d4e441d527d8fbd8f1d1b6ec237d.png,a4e1f9ed07a40359eaf255394e272272.png,aef93a72f0db18e2c6fbc356d101bac0.png,b18be206e2cfcc766695779607b91e33.png,b7cc11169a1c2980ff1f543adc5e83fb.png,c6d5f14a2986660aec470230367eb3d3.png,c78db3f7c109f9cf731d5045c4886854.png,c9cef93be7451b685edbd1fcd8f61732.png,e0c229e262c34b128c0f50ecac33369b.png,fd59bf6380de3ea52dcbbbec373bb1b4.png",
"name": "white_shoe" "name": "white_shoe",
"atlas": {
"77dbe8db0f6b44bf93b5033f3bfcf309.png": {
"x": 2,
"y": 2,
"w": 464,
"h": 83,
"ox": 0,
"oy": 0,
"sw": 464,
"sh": 83,
"ro": false
},
"1cb1e4d2fa9e520728a397f33dc41e85.png": {
"x": 2,
"y": 87,
"w": 461,
"h": 13,
"ox": 0,
"oy": 0,
"sw": 461,
"sh": 13,
"ro": false
},
"75040919584435153d89b059a3df0bb3.png": {
"x": 2,
"y": 102,
"w": 444,
"h": 175,
"ox": 0,
"oy": 0,
"sw": 444,
"sh": 175,
"ro": false
},
"fd59bf6380de3ea52dcbbbec373bb1b4.png": {
"x": 2,
"y": 279,
"w": 444,
"h": 189,
"ox": 0,
"oy": 0,
"sw": 444,
"sh": 189,
"ro": false
},
"55223ef0f41017b272998afbf097e11c.png": {
"x": 468,
"y": 2,
"w": 110,
"h": 155,
"ox": 0,
"oy": 0,
"sw": 110,
"sh": 155,
"ro": false
},
"2b774e8e40d7eeb4f56565090fcf1a1f.png": {
"x": 448,
"y": 159,
"w": 85,
"h": 115,
"ox": 0,
"oy": 0,
"sw": 85,
"sh": 115,
"ro": true
},
"e0c229e262c34b128c0f50ecac33369b.png": {
"x": 448,
"y": 246,
"w": 107,
"h": 56,
"ox": 0,
"oy": 0,
"sw": 107,
"sh": 56,
"ro": false
},
"8e2a1bf2cfd857dae69edb9d70820e23.png": {
"x": 448,
"y": 304,
"w": 60,
"h": 90,
"ox": 0,
"oy": 0,
"sw": 60,
"sh": 90,
"ro": true
},
"b7cc11169a1c2980ff1f543adc5e83fb.png": {
"x": 448,
"y": 366,
"w": 88,
"h": 54,
"ox": 0,
"oy": 0,
"sw": 88,
"sh": 54,
"ro": true
},
"0339f8cec366210e1895bb822005f5ca.png": {
"x": 504,
"y": 366,
"w": 72,
"h": 27,
"ox": 0,
"oy": 0,
"sw": 72,
"sh": 27,
"ro": false
},
"3965e139993e5072b687ba1e944ae568.png": {
"x": 504,
"y": 395,
"w": 26,
"h": 72,
"ox": 0,
"oy": 0,
"sw": 26,
"sh": 72,
"ro": false
},
"23a5d1a88f781623a16727e8defbe5f2.png": {
"x": 532,
"y": 395,
"w": 69,
"h": 30,
"ox": 0,
"oy": 0,
"sw": 69,
"sh": 30,
"ro": true
},
"c6d5f14a2986660aec470230367eb3d3.png": {
"x": 2,
"y": 470,
"w": 34,
"h": 68,
"ox": 0,
"oy": 0,
"sw": 34,
"sh": 68,
"ro": true
},
"16794fd2bb051adab7cf54b7e36d2c87.png": {
"x": 448,
"y": 102,
"w": 51,
"h": 15,
"ox": 0,
"oy": 0,
"sw": 51,
"sh": 15,
"ro": true
},
"4947993d9e0c86dd197cab056f32b26e.png": {
"x": 448,
"y": 456,
"w": 49,
"h": 42,
"ox": 0,
"oy": 0,
"sw": 49,
"sh": 42,
"ro": false
},
"c78db3f7c109f9cf731d5045c4886854.png": {
"x": 72,
"y": 470,
"w": 31,
"h": 47,
"ox": 0,
"oy": 0,
"sw": 31,
"sh": 47,
"ro": true
},
"aef93a72f0db18e2c6fbc356d101bac0.png": {
"x": 532,
"y": 466,
"w": 25,
"h": 46,
"ox": 0,
"oy": 0,
"sw": 25,
"sh": 46,
"ro": true
},
"643f90f77b7858c5a54f1f2d2371a396.png": {
"x": 72,
"y": 503,
"w": 43,
"h": 40,
"ox": 0,
"oy": 0,
"sw": 43,
"sh": 40,
"ro": true
},
"9e4c70df3c98f66fc402e0e5e64e1f0b.png": {
"x": 114,
"y": 503,
"w": 35,
"h": 43,
"ox": 0,
"oy": 0,
"sw": 35,
"sh": 43,
"ro": false
},
"1366e0dc8765778425bc3612c5a02991.png": {
"x": 540,
"y": 304,
"w": 41,
"h": 33,
"ox": 0,
"oy": 0,
"sw": 41,
"sh": 33,
"ro": true
},
"2592ff4846d8e05ea9280a9206b2b765.png": {
"x": 2,
"y": 506,
"w": 28,
"h": 39,
"ox": 0,
"oy": 0,
"sw": 28,
"sh": 39,
"ro": false
},
"056b70b501ad2bb9de96fe5a40ec244c.png": {
"x": 32,
"y": 506,
"w": 28,
"h": 37,
"ox": 0,
"oy": 0,
"sw": 28,
"sh": 37,
"ro": true
},
"b18be206e2cfcc766695779607b91e33.png": {
"x": 499,
"y": 469,
"w": 25,
"h": 29,
"ox": 0,
"oy": 0,
"sw": 25,
"sh": 29,
"ro": true
},
"7acaef1cbaa854fcc731bf08b137faaa.png": {
"x": 32,
"y": 536,
"w": 24,
"h": 9,
"ox": 0,
"oy": 0,
"sw": 24,
"sh": 9,
"ro": false
},
"c9cef93be7451b685edbd1fcd8f61732.png": {
"x": 564,
"y": 395,
"w": 14,
"h": 24,
"ox": 0,
"oy": 0,
"sw": 14,
"sh": 24,
"ro": false
},
"0471fa62dfb977981f0bbcbf03d5364c.png": {
"x": 564,
"y": 421,
"w": 23,
"h": 14,
"ox": 0,
"oy": 0,
"sw": 23,
"sh": 14,
"ro": true
},
"243da2df1403d966f345a1bf61310276.png": {
"x": 121,
"y": 470,
"w": 23,
"h": 23,
"ox": 0,
"oy": 0,
"sw": 23,
"sh": 23,
"ro": false
},
"9f874f56586024e4c873b6237d027558.png": {
"x": 557,
"y": 246,
"w": 22,
"h": 18,
"ox": 0,
"oy": 0,
"sw": 22,
"sh": 18,
"ro": true
},
"a4e1f9ed07a40359eaf255394e272272.png": {
"x": 557,
"y": 270,
"w": 20,
"h": 18,
"ox": 0,
"oy": 0,
"sw": 20,
"sh": 18,
"ro": false
},
"6b5ba368fd1b35b4f7ae7d0941983b5f.png": {
"x": 146,
"y": 470,
"w": 19,
"h": 19,
"ox": 0,
"oy": 0,
"sw": 19,
"sh": 19,
"ro": false
},
"6a9d7e1fce8bc7e9b014add6ba3a40a6.png": {
"x": 540,
"y": 347,
"w": 15,
"h": 16,
"ox": 0,
"oy": 0,
"sw": 15,
"sh": 16,
"ro": false
},
"70fcb05422163afdc827b4c7aa421932.png": {
"x": 557,
"y": 347,
"w": 16,
"h": 16,
"ox": 0,
"oy": 0,
"sw": 16,
"sh": 16,
"ro": false
},
"0272a464df7d9c1ca7bcd240ff5b6ff1.png": {
"x": 564,
"y": 446,
"w": 14,
"h": 15,
"ox": 0,
"oy": 0,
"sw": 14,
"sh": 15,
"ro": false
},
"0960016b2a4b0945ae1a504cf05d58b5.png": {
"x": 151,
"y": 500,
"w": 15,
"h": 14,
"ox": 0,
"oy": 0,
"sw": 15,
"sh": 14,
"ro": true
},
"a2a8d4e441d527d8fbd8f1d1b6ec237d.png": {
"x": 557,
"y": 290,
"w": 11,
"h": 11,
"ox": 0,
"oy": 0,
"sw": 11,
"sh": 11,
"ro": false
},
"0521db775413790e5754d0a359a26c05.png": {
"x": 58,
"y": 536,
"w": 10,
"h": 10,
"ox": 0,
"oy": 0,
"sw": 10,
"sh": 10,
"ro": false
},
"4f7efec7932532041668f88e5eaa6485.png": {
"x": 565,
"y": 159,
"w": 10,
"h": 10,
"ox": 0,
"oy": 0,
"sw": 10,
"sh": 10,
"ro": false
},
"6eab818514531d8dd0aff35576e834fe.png": {
"x": 565,
"y": 171,
"w": 9,
"h": 9,
"ox": 0,
"oy": 0,
"sw": 9,
"sh": 9,
"ro": false
}
}
}, },
{ {
"keys": "0513a2914668b008516adc921b90e29e.png", "keys": "0513a2914668b008516adc921b90e29e.png",
"name": "yoga_fail" "name": "yoga_fail",
"atlas": {
"0513a2914668b008516adc921b90e29e.png": {
"x": 2,
"y": 2,
"w": 250,
"h": 172,
"ox": 0,
"oy": 0,
"sw": 250,
"sh": 172,
"ro": false
}
}
} }
], ],
"path": "./resource/" "path": "https://yun.duiba.com.cn/db_games/activity/template/1629962165/resource/"
} }
\ No newline at end of file
...@@ -97,7 +97,16 @@ export enum TbNetName { ...@@ -97,7 +97,16 @@ export enum TbNetName {
*/ */
openMusic = "mine.openMusic", openMusic = "mine.openMusic",
complteGuidance = 'yoga.complateGuide' complteGuidance = 'yoga.complateGuide',
/**
* 添加 生命周期 事件
*/
addLifiCycleEvent = 'mine.addLifiCycleEvent',
// 显示 小程序的loading 记得注视下 自带的 菊花图
showCustomLoading = 'mine.showCustomLoading',
closeCustomLoading = 'mine.closeCustomLoading'
} }
export enum TBBgm { export enum TBBgm {
......
...@@ -11,7 +11,7 @@ import { red_shoe } from '../lotties/red_shoe'; ...@@ -11,7 +11,7 @@ import { red_shoe } from '../lotties/red_shoe';
import { blank_shoe } from '../lotties/blank_shoe'; import { blank_shoe } from '../lotties/blank_shoe';
import { white_shoe } from '../lotties/white_shoe'; import { white_shoe } from '../lotties/white_shoe';
import { balance_guidance } from '../lotties/balance_guidance'; import { balance_guidance } from '../lotties/balance_guidance';
import { sleep } from '../utils/utils'; import { onceFnc, sleep } from '../utils/utils';
export class GameOverPanel extends Panel { export class GameOverPanel extends Panel {
get groupNames() { get groupNames() {
...@@ -48,7 +48,7 @@ export class GameOverPanel extends Panel { ...@@ -48,7 +48,7 @@ export class GameOverPanel extends Panel {
var bitMapc = Tools.getNumTextures('num') var bitMapc = Tools.getNumTextures('num')
var bitMapc2 = Tools.getNumTextures('numb') var bitMapc2 = Tools.getNumTextures('numb')
var bitmapTextCount = this.bitmapTextCount = panelCtn.addChild(new FYGE.BitmapText(bitMapc)) var bitmapTextCount = this.bitmapTextCount = panelCtn.addChild(new FYGE.BitmapText(bitMapc))
if (this.data.score < 3) { if (this.data.score <= 3) {
this.bitmapTextCount.textures = bitMapc2 this.bitmapTextCount.textures = bitMapc2
} }
this.bitmapTextCount.position.set(panelCtn.width / 2, 210) this.bitmapTextCount.position.set(panelCtn.width / 2, 210)
...@@ -69,14 +69,14 @@ export class GameOverPanel extends Panel { ...@@ -69,14 +69,14 @@ export class GameOverPanel extends Panel {
}) })
FYGE.Tween.get(o) FYGE.Tween.get(o)
.to({ score: +this.data.score }, 500) .to({ score: +this.data.score }, +this.data.score > 3 ? 500 : 300)
.call(() => { .call(() => {
this.showGiftIcon() this.showGiftIcon()
}) })
// this.bitmapTextCount.text = this.data.score + '' // this.bitmapTextCount.text = this.data.score + ''
UI.Txt(panelCtn, '本次得分', 30, '#e95d2a', FYGE.TEXT_ALIGN.CENTER, panelCtn.width, 0, 285) UI.Txt(panelCtn, '本次得分', 30, '#e95d2a', FYGE.TEXT_ALIGN.CENTER, panelCtn.width, 0, 285, true)
} }
...@@ -84,7 +84,7 @@ export class GameOverPanel extends Panel { ...@@ -84,7 +84,7 @@ export class GameOverPanel extends Panel {
drawBtn: FYGE.Lottie drawBtn: FYGE.Lottie
showGiftIcon() { showGiftIcon() {
var panelCtn = this.panelCtn var panelCtn = this.panelCtn
var tips = UI.Sp(panelCtn, 'over-tipsicon.png', panelCtn.width / 2 - 86, 415.5) var tips = UI.Sp(panelCtn, 'over-tipsicon.png', panelCtn.width / 2 - 86, 435.5)
tips.alpha = 0 tips.alpha = 0
tips.anchorTexture.set(0, 1) tips.anchorTexture.set(0, 1)
FYGE.Tween.get(tips) FYGE.Tween.get(tips)
...@@ -95,18 +95,18 @@ export class GameOverPanel extends Panel { ...@@ -95,18 +95,18 @@ export class GameOverPanel extends Panel {
switch(+this.data.level) { switch(+this.data.level) {
case 1: case 1:
this.drawBtn = UI.Lottie(panelCtn, red_shoe, 0, 185) this.drawBtn = UI.Lottie(panelCtn, red_shoe, 0, 205)
break break
case 2: case 2:
this.drawBtn = UI.Lottie(panelCtn, blank_shoe, 0, 185) this.drawBtn = UI.Lottie(panelCtn, blank_shoe, 0, 205)
break break
case 3: case 3:
this.drawBtn = UI.Lottie(panelCtn, white_shoe, 0, 185) this.drawBtn = UI.Lottie(panelCtn, white_shoe, 0, 205)
break break
} }
this.drawBtn.startAniRange(0, 80, 1) this.drawBtn.startAniRange(0, 80, 1)
this.drawBtn.addEventListener(FYGE.MouseEvent.CLICK, async function() { this.drawBtn.addEventListener(FYGE.MouseEvent.CLICK, onceFnc(async function() {
this.btnDelay(this) this.btnDelay(this)
await sendTbNet(TbNetName.openMusic, { await sendTbNet(TbNetName.openMusic, {
...@@ -139,6 +139,6 @@ export class GameOverPanel extends Panel { ...@@ -139,6 +139,6 @@ export class GameOverPanel extends Panel {
changeScene(GameOverScene, this.data) changeScene(GameOverScene, this.data)
} }
} }
}, this) }, 1), this)
} }
} }
\ No newline at end of file
...@@ -4,6 +4,8 @@ import { layers } from '../../module/views/layers'; ...@@ -4,6 +4,8 @@ import { layers } from '../../module/views/layers';
import UI from '../UI'; import UI from '../UI';
import { Panel } from './../../module/views/Panel'; import { Panel } from './../../module/views/Panel';
import { GameOverScene } from '../scenes/GameOverScene/GameOverScene'; import { GameOverScene } from '../scenes/GameOverScene/GameOverScene';
import { sendTbNet, TBBgm, TbNetName } from '../TaoBaoNet';
import { GDispatcher } from '../Main';
export class PrizeShowPanel extends Panel { export class PrizeShowPanel extends Panel {
get groupNames(): string[] { get groupNames(): string[] {
...@@ -13,24 +15,32 @@ export class PrizeShowPanel extends Panel { ...@@ -13,24 +15,32 @@ export class PrizeShowPanel extends Panel {
initUi() { initUi() {
var panelCtn = UI.Ctn(this) var panelCtn = UI.Ctn(this)
UI.Sp(panelCtn, 'prize-back.png') UI.Sp(panelCtn, 'prize-back.png')
UI.Sp(panelCtn, 'prize-back-title.png', this.width / 2, 115).anchorTexture.set(.5,.5)
panelCtn.position.set(layers.stageCenterX - panelCtn.width / 2, layers.stageCenterY - panelCtn.height / 2) panelCtn.position.set(layers.stageCenterX - panelCtn.width / 2, layers.stageCenterY - panelCtn.height / 2)
UI.Txt(panelCtn, this.data.name, 30, '#757575', FYGE.TEXT_ALIGN.CENTER, panelCtn.width - 60, 30, 170) UI.Txt(panelCtn, this.data.name, 30, '#757575', FYGE.TEXT_ALIGN.CENTER, panelCtn.width - 60, 30, 175, true)
var preview = UI.Sp(panelCtn, decodeURI(this.data.image)) var preview = UI.Sp(panelCtn, decodeURI(this.data.image))
preview.width = 300 preview.width = 300
preview.height = 300 preview.height = 300
preview.position.set(150, 230) preview.position.set(150, 236)
preview.mask = panelCtn.addChild(new FYGE.Graphics()) preview.mask = panelCtn.addChild(new FYGE.Graphics())
.beginFill() .beginFill()
.drawRoundedRect(150, 230, 300, 300, 20) .drawRoundedRect(150, 236, 300, 300, 20)
.endFill() .endFill()
UI.Btn(panelCtn, 'confirm-btn.png', function() { UI.Btn(panelCtn, 'confirm-btn.png', function() {
this.btnDelay(this) this.btnDelay(this)
if (this.data.type == 3) { if (this.data.type == 3) {
this.hidePanel() this.hidePanel()
changeScene(GameOverScene, this.data) sendTbNet(TbNetName.addLifiCycleEvent, {
type: 'show',
func: () => {
GDispatcher.dispatchEvent('init-score')
},
once: true
})
changeScene(GameOverScene, Object.assign({}, this.data, {hideMusic: true}))
//@ts-ignore //@ts-ignore
my && my.navigateTo({ my && my.navigateTo({
url: `/pages/rewardinfofill/rewardinfofill?id=${this.data.id}&prizeId=${this.data.prizeId}` url: `/pages/rewardinfofill/rewardinfofill?id=${this.data.id}&prizeId=${this.data.prizeId}`
...@@ -41,6 +51,6 @@ export class PrizeShowPanel extends Panel { ...@@ -41,6 +51,6 @@ export class PrizeShowPanel extends Panel {
this.hidePanel() this.hidePanel()
changeScene(GameOverScene, this.data) changeScene(GameOverScene, this.data)
} }
}, this, 40, 580) }, this, 40, 575)
} }
} }
\ No newline at end of file
...@@ -4,10 +4,10 @@ import { Scene } from "../../../module/views/Scene"; ...@@ -4,10 +4,10 @@ import { Scene } from "../../../module/views/Scene";
import { addData, sendTbNet, TbNetName } from "../../TaoBaoNet"; import { addData, sendTbNet, TbNetName } from "../../TaoBaoNet";
import { Tools } from "../../Tools"; import { Tools } from "../../Tools";
import UI from "../../UI"; import UI from "../../UI";
import { GDispatcher } from '../../Main';
export class GameOverScene extends Scene { export class GameOverScene extends Scene {
bitmapTextCount: FYGE.BitmapText bitmapTextCount: FYGE.BitmapText
scrollPage: FYGE.ScrollPage
get groupNames():string[] { get groupNames():string[] {
return ['GameOver', 'GameScene'] return ['GameOver', 'GameScene']
...@@ -18,62 +18,56 @@ export class GameOverScene extends Scene { ...@@ -18,62 +18,56 @@ export class GameOverScene extends Scene {
} }
async initUi() { async initUi() {
UI.Sp(this, 'back.png') UI.Rect(this, 750, 1624, 0xf1ebdd, 0, 0, 0)
var icon = UI.Sp(this, getApp().isNike ? 'nike-icon.png' : 'jordan-icon.png', 41, 220)
if (getApp().isLarge) {
icon.position.set(41, -layers.stageOffsetY + 90 + 1624 - layers.stage.viewRect.height + 68)
} else {
icon.position.set(41, -layers.stageOffsetY + 90 + 1624 - layers.stage.viewRect.height + 98)
}
this.y -= layers.stageOffsetY - 90
this.scrollPage = this.addChild(new FYGE.ScrollPage(layers.stageWidth,layers.stageHeight-130, 1500))
this.scrollPage.position.set(0, layers.stageOffsetY)
var scrollPageView = this.scrollPage.view
var bitMapc = Tools.getNumTextures('num') var bitMapc = Tools.getNumTextures('num')
var bitMapc2 = Tools.getNumTextures('numb') var bitMapc2 = Tools.getNumTextures('numb')
var bitmapTextCount = this.bitmapTextCount = scrollPageView.addChild(new FYGE.BitmapText(bitMapc)) var bitmapTextCount = this.bitmapTextCount = this.addChild(new FYGE.BitmapText(bitMapc))
if (this.data.score < 3) { if (this.data.score <= 3) {
this.bitmapTextCount.textures = bitMapc2 this.bitmapTextCount.textures = bitMapc2
} } else {
this.bitmapTextCount.position.set(layers.stageCenterX, 500) if (!this.data.hideMusic) {
// this.bitmapTextCount.text = this.data.score + ''
var o = { _score: 1}
Object.defineProperty(o, 'score', {
configurable: true,
enumerable: true,
get() {
return o._score
},
set(n:number) {
o._score = n
bitmapTextCount.text = ~~n + ''
}
})
await sendTbNet(TbNetName.openMusic, { await sendTbNet(TbNetName.openMusic, {
isOn: true, isOn: true,
kurl: TBBgm.scoreBgm, kurl: TBBgm.scoreBgm,
loop: false loop: false
}, null, null, true) }, null, null, true)
FYGE.Tween.get(o) this.showNumberUp()
.to({ score: +this.data.score }, 500) }
}
this.bitmapTextCount.position.set(layers.stageCenterX, 500)
// this.bitmapTextCount.text = this.data.score + ''
bitmapTextCount.text = '0'
var desc = UI.Ctn(scrollPageView, 0, 700) var desc = UI.Ctn(this, 0, 700)
UI.Txt(desc, '本局连续完成', 36, '#111111', FYGE.TEXT_ALIGN.CENTER, layers.stageWidth, 0, 0) UI.Txt(desc, '本局连续完成', 40, '#111111', FYGE.TEXT_ALIGN.CENTER, layers.stageWidth, 0, 10, true)
UI.Txt(desc, '游戏结束', 30, '#757575', FYGE.TEXT_ALIGN.CENTER, layers.stageWidth, 0, 50) UI.Txt(desc, '游戏结束', 40, '#757575', FYGE.TEXT_ALIGN.CENTER, layers.stageWidth, 0, 62, true)
this.data.isNewRecord && UI.Sp(desc, 'new-record-icon.png', 490, -30) this.data.isNewRecord && UI.Sp(desc, 'new-record-icon.png', 490, -30)
UI.Btn(scrollPageView, 'share-btn.png', function() { UI.Btn(this, 'share-btn.png', function() {
// @ts-ignore todo 分享 // @ts-ignore todo 分享
my && my.showSharePanel() my && my.showSharePanel()
addData(2) addData(2)
}, this, 45, 950) }, this, 45, 930)
UI.Btn(scrollPageView, 'more-btn.png', function() { UI.Btn(this, 'more-btn.png', function() {
this.btnDelay(this) this.btnDelay(this)
// @ts-ignore // @ts-ignore
my.reLaunch({ my.reLaunch({
url: '/pages/mainscene/mainscene' url: '/pages/mainscene/mainscene'
}) })
}, this, 45, 1110) }, this, 45, 1090)
var _s = UI.Sp(scrollPageView, 'back-home.png', layers.stageCenterX, 1350) var _s = UI.Sp(this, 'back-home.png', layers.stageCenterX, 1310)
_s.addEventListener(FYGE.MouseEvent.CLICK, function() { _s.addEventListener(FYGE.MouseEvent.CLICK, function() {
this.btnDelay(this) this.btnDelay(this)
addData(8) addData(8)
...@@ -83,12 +77,12 @@ export class GameOverScene extends Scene { ...@@ -83,12 +77,12 @@ export class GameOverScene extends Scene {
_s.anchorTexture.set(0.5, 0.5) _s.anchorTexture.set(0.5, 0.5)
var bottomCont = UI.Ctn(this) var bottomCont = UI.Ctn(this)
bottomCont.position.set(0, layers.stageOffsetY + layers.stageHeight - 130) bottomCont.position.set(0, layers.stageOffsetY + layers.stageHeight - 130 + layers.stageOffsetY - 90)
var isJordan = Tools.globalData.shopId == 10003 var isJordan = Tools.globalData.shopId == 10003
UI.Rect(bottomCont, layers.stageWidth, 130, 0xffffff) UI.Rect(bottomCont, layers.stageWidth, 130, 0xffffff)
UI.Sp(bottomCont, 'product-link__icon.png', 50, 25) UI.Sp(bottomCont, 'product-link__icon.png', 50, 25)
UI.Txt(bottomCont, `${isJordan ? 'Jordan': 'Nike'} 瑜伽商品`, 28, '#111111', FYGE.TEXT_ALIGN.LEFT, 500, 160, 35) UI.Txt(bottomCont, `${isJordan ? 'Jordan': 'Nike'} 瑜伽商品`, 24, '#111111', FYGE.TEXT_ALIGN.LEFT, 500, 160, 40, true)
UI.Txt(bottomCont, '让你的体态更加健康', 26, '#111111', FYGE.TEXT_ALIGN.LEFT, 500, 160, 75) UI.Txt(bottomCont, '让你的体态更加健康', 22, '#111111', FYGE.TEXT_ALIGN.LEFT, 500, 160, 70, true)
UI.Sp(bottomCont, 'jump-icon.png', 600, 40) UI.Sp(bottomCont, 'jump-icon.png', 600, 40)
.addEventListener(FYGE.MouseEvent.CLICK, function() { .addEventListener(FYGE.MouseEvent.CLICK, function() {
this.btnDelay(this) this.btnDelay(this)
...@@ -100,4 +94,38 @@ export class GameOverScene extends Scene { ...@@ -100,4 +94,38 @@ export class GameOverScene extends Scene {
}, this) }, this)
} }
showNumberUp() {
var o = { _score: 0}
var bitmapTextCount = this.bitmapTextCount
Object.defineProperty(o, 'score', {
configurable: true,
enumerable: true,
get() {
return o._score
},
set(n:number) {
o._score = n
bitmapTextCount.text = ~~n + ''
}
})
FYGE.Tween.get(o)
.set({ score: 0 })
.to({ score: +this.data.score }, +this.data.score > 3 ? 500 : 300)
}
initEvents() {
GDispatcher.once('init-score', async function() {
if (this.data.score > 3) {
await sendTbNet(TbNetName.openMusic, {
isOn: true,
kurl: TBBgm.scoreBgm,
loop: false
}, null, null, true)
}
this.showNumberUp()
}, this)
}
} }
\ No newline at end of file
...@@ -158,13 +158,15 @@ export class GameScene extends MotionInitScene { ...@@ -158,13 +158,15 @@ export class GameScene extends MotionInitScene {
} }
async initUi() { async initUi() {
UI.Sp(this, this.isJordan ? 'back_jordan.png' : 'back.png')
super.initUi()
this.score = 0 this.score = 0
// 开背景音乐 // 开背景音乐
// this.musicBoolean = true // this.musicBoolean = true
var cdp = this.cdp = this.addChild(new CountDownComp(GameCfg.iTime)) var cdp = this.cdp = this.addChild(new CountDownComp(GameCfg.iTime))
this.setChildIndex(this.cdp, 2)
this.cdp.addTimeoutFunc(() => { this.cdp.addTimeoutFunc(() => {
this.cdp.destory() this.cdp.destory()
// 销毁 instance // 销毁 instance
...@@ -186,7 +188,6 @@ export class GameScene extends MotionInitScene { ...@@ -186,7 +188,6 @@ export class GameScene extends MotionInitScene {
}) })
cdp.position.set(layers.stageCenterX - 65, layers.stageOffsetY + 340) cdp.position.set(layers.stageCenterX - 65, layers.stageOffsetY + 340)
super.initUi()
} }
onMusicClick() { onMusicClick() {
......
...@@ -91,13 +91,77 @@ export class MotionInitFunc extends Container { ...@@ -91,13 +91,77 @@ export class MotionInitFunc extends Container {
DeviceMotion.instance.off(this.deviceOritationChange) DeviceMotion.instance.off(this.deviceOritationChange)
} }
// startTips:FYGE.Sprite
// onStepDown1() {
// this.startTips = this.timerBox.addChild(Tools.getSprite("倒计时开始.png", 205, 730))
// this.startTips.alpha = 0
// this.timerBoxTxt = this.timerBox.addChild(Tools.getBitmapText(cdTextures, "3", 375, 800, FYGE.TEXT_ALIGN.CENTER, 1, 1))
// this.timerBoxTxt.text = "3"
// sendTbNet(TbNetName.vibrateShort)
// if (Tools.playMusic) {
// sendTbNet(TbNetName.openMusic, { isOn: true, name: "cd" })
// }
// FYGE.Tween.get(this.timerBoxTxt)
// .set({ alpha: 0, y: 800 })
// .to({ alpha: 1, y: 750 }, 300)
// .wait(700)
// .call(() => {
// sendTbNet(TbNetName.vibrateShort)
// this.timerBoxTxt.text = "2"
// if (Tools.playMusic) {
// sendTbNet(TbNetName.openMusic, { isOn: true, name: "cd" })
// }
// FYGE.Tween.get(this.timerBoxTxt)
// .set({ alpha: 0, y: 800 })
// .to({ alpha: 1, y: 750 }, 300)
// .wait(700)
// .call(() => {
// sendTbNet(TbNetName.vibrateShort)
// this.timerBoxTxt.text = "1"
// if (Tools.playMusic) {
// sendTbNet(TbNetName.openMusic, { isOn: true, name: "cd" })
// }
// FYGE.Tween.get(this.timerBoxTxt)
// .set({ alpha: 0, y: 800 })
// .to({ alpha: 1, y: 750 }, 300)
// .wait(700)
// .call(() => {
// sendTbNet(TbNetName.vibrateLong)
// if (Tools.playMusic) {
// sendTbNet(TbNetName.openMusic, { isOn: true, name: "cd" })
// }
// this.timerBoxTxt.alpha = 0
// FYGE.Tween.get(this.startTips)
// .set({ alpha: 0, y: 730 })
// .to({ alpha: 1, y: 680 }, 300)
// .wait(700)
// .call(() => {
// this.timerBox.visible = false
// this.startTimer()
// setTimeout(() => {
// if (Tools.playMusic) {
// sendTbNet(TbNetName.openMusic, { isOn: true, name: "bg", loop: true })
// }
// }, 1000)
// })
// })
// })
// })
// }
// 倒计时 // 倒计时
onStepDwon() { onStepDwon() {
var stepDownCtn = UI.Ctn(this) var stepDownCtn = UI.Ctn(this)
// UI.Rect(stepDownCtn, 750, 1624, 0x1b1a1a, 0).alpha=0.8 // UI.Rect(stepDownCtn, 750, 1624, 0x1b1a1a, 0).alpha=0.8
var box1 = UI.Ctn(stepDownCtn) var box1 = UI.Ctn(stepDownCtn)
var desc = UI.Txt(box1, '准备开始', 40, '#ffffff', FYGE.TEXT_ALIGN.CENTER, layers.stageWidth, 0, layers.stageCenterY - 100) var desc = UI.Sp(box1, 'ruready.png', layers.stageCenterX, layers.stageCenterY)
desc.anchorTexture.set(0.5, 0.5);
// UI.Txt(box1, '准备开始', 40, '#ffffff', FYGE.TEXT_ALIGN.CENTER, layers.stageWidth, 0, layers.stageCenterY - 100)
desc.alpha = 0 desc.alpha = 0
var timerBoxTxtSp = UI.Sp(box1, 'count3.png', layers.stageCenterX, layers.stageCenterY) var timerBoxTxtSp = UI.Sp(box1, 'count3.png', layers.stageCenterX, layers.stageCenterY)
...@@ -114,7 +178,7 @@ export class MotionInitFunc extends Container { ...@@ -114,7 +178,7 @@ export class MotionInitFunc extends Container {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
FYGE.Tween.get(desc) FYGE.Tween.get(desc)
.set({ alpha:0, y: layers.stageCenterY}) .set({ alpha:0, y: layers.stageCenterY})
.to({ alpha: 1, y: layers.stageCenterY - 280 }, 600 ,FYGE.Ease.quadInOut) .to({ alpha: 1, y: layers.stageCenterY - 150 }, 600 ,FYGE.Ease.quadInOut)
.wait(300) .wait(300)
.call(() => { .call(() => {
...@@ -234,6 +298,9 @@ export class MotionInitScene extends Scene { ...@@ -234,6 +298,9 @@ export class MotionInitScene extends Scene {
excellentIcon: FYGE.Lottie excellentIcon: FYGE.Lottie
initUi() { initUi() {
UI.Rect(this, 750, 1624, 0xf1ebdd, 0, 0, 0)
UI.Sp(this, getApp().isNike ? 'nike-icon.png' : 'jordan-icon.png', 41, 220)
// 中间的小圆 // 中间的小圆
var c = this.addChild(new FYGE.Shape()) var c = this.addChild(new FYGE.Shape())
.beginFill(0xf0e4ce) .beginFill(0xf0e4ce)
...@@ -252,11 +319,11 @@ export class MotionInitScene extends Scene { ...@@ -252,11 +319,11 @@ export class MotionInitScene extends Scene {
this.centerp = setCenterPos(UI.Sp(this, 'p1-b.png')) this.centerp = setCenterPos(UI.Sp(this, 'p1-b.png'))
var bitMapc = Tools.getNumTextures('num') var bitMapc = Tools.getNumTextures('percennt')
bitMapc['%'] = RES.getRes('nump.png') bitMapc['%'] = RES.getRes('percenntp.png')
this.bitmapTextCount = this.addChild(new FYGE.BitmapText(bitMapc)) this.bitmapTextCount = this.addChild(new FYGE.BitmapText(bitMapc))
this.bitmapTextCount.scaleY = 0.33 // this.bitmapTextCount.scaleY = 0.33
this.bitmapTextCount.scaleX = 0.33 // this.bitmapTextCount.scaleX = 0.33
this.bitmapTextCount.position.set(layers.stageCenterX, layers.stageCenterY + 380) this.bitmapTextCount.position.set(layers.stageCenterX, layers.stageCenterY + 380)
// @ts-ignore // @ts-ignore
...@@ -265,10 +332,9 @@ export class MotionInitScene extends Scene { ...@@ -265,10 +332,9 @@ export class MotionInitScene extends Scene {
this.holdOnTxt.anchorX = layers.stageWidth / 2 this.holdOnTxt.anchorX = layers.stageWidth / 2
this.holdOnTxt.anchorY = 30 this.holdOnTxt.anchorY = 30
this.setChildIndex(c, 1)
var cb = this.initGame.bind(this) var cb = this.initGame.bind(this)
this.motionInitFunc = this.addChild(new MotionInitFunc(this.data?.type, cb)) this.motionInitFunc = this.addChild(new MotionInitFunc(this.data?.type, cb))
this.setChildIndex(this.motionInitFunc, 1000)
super.initUi() super.initUi()
} }
...@@ -381,6 +447,7 @@ export class MotionInitScene extends Scene { ...@@ -381,6 +447,7 @@ export class MotionInitScene extends Scene {
} }
FYGE.Tween.removeTweens(this.holdOnTxt) FYGE.Tween.removeTweens(this.holdOnTxt)
this.holdOnTxt.position.set(30, layers.stageOffsetY + 340) // 重新设置一下
this.holdOnTxt.visible = false this.holdOnTxt.visible = false
// @ts-ignore // @ts-ignore
......
...@@ -33,7 +33,6 @@ export class NewGuyScene extends MotionInitScene { ...@@ -33,7 +33,6 @@ export class NewGuyScene extends MotionInitScene {
} }
async initUi() { async initUi() {
UI.Sp(this, this.isJordan ? 'back_jordan.png' : 'back.png')
super.initUi() super.initUi()
......
var a = 1
a = ''
export function test() {
console.log(233)
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment