diff --git a/assets/Game/Prefab/FeatureBuyPopUp.prefab b/assets/Game/Prefab/FeatureBuyPopUp.prefab index bcd6d2a..00ea797 100644 --- a/assets/Game/Prefab/FeatureBuyPopUp.prefab +++ b/assets/Game/Prefab/FeatureBuyPopUp.prefab @@ -467,7 +467,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "ef0vHgVmRPXKsAmgH3DxG6" + "fileId": "96LZuDoBNP+6qegZOp++Je" }, { "__type__": "sp.Skeleton", @@ -512,7 +512,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "24TQjxadlK3LgLd1rx0Ohr" + "fileId": "13zQuQcJxERaYB97zbxMNw" }, { "__type__": "cc.PrefabInfo", @@ -522,7 +522,7 @@ "asset": { "__id__": 0 }, - "fileId": "63b/FbdZZDgI8CHIKWf9bZ", + "fileId": "7en/thVdREoox32Kh3WWwU", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null diff --git a/assets/Game/Scripts/SlotBar.ts b/assets/Game/Scripts/SlotBar.ts index 9e7bbf9..6ed214b 100644 --- a/assets/Game/Scripts/SlotBar.ts +++ b/assets/Game/Scripts/SlotBar.ts @@ -417,7 +417,7 @@ export class SlotBar extends Component { onClickSpin(event, buyType: number = 0, changeDiff: boolean = false) { if (!this.hasClickSpin && !this.hasClickManualStop) { AudioManager.instance.playSFX("Click_Spin"); - this.node.emit(SLOT_BAR_EVENT.ON_SPIN_CLICK, buyType, changeDiff); + this.node.emit(SLOT_BAR_EVENT.ON_SPIN_CLICK, buyType, changeDiff, true); this.firstClickSpinState(); } // 第二次手动停止 diff --git a/assets/Game/Scripts/SlotGame.ts b/assets/Game/Scripts/SlotGame.ts index a150f6a..dc9754d 100644 --- a/assets/Game/Scripts/SlotGame.ts +++ b/assets/Game/Scripts/SlotGame.ts @@ -201,11 +201,17 @@ export class SlotGame extends Component { .start(); } + setFreeTotalMulti(mul: number) { + this.node.getChildByPath('FreeGameBg1/totalMulti').getComponent(Label).string = mul > 1 ? 'x' + mul : '' + } + updateGameBg(isFreeGame: boolean) { this.normalGameBg.active = !isFreeGame; this.freeGameBg.active = isFreeGame; this.node.getChildByName('NormalGameBg1').active = !isFreeGame; + this.node.getChildByName('FreeGameBg1').active = isFreeGame; + this.setFreeTotalMulti(this.spinData.WinMultiPlier) this.refreshBuyBtnState(isFreeGame); diff --git a/assets/Game/Scripts/SlotMsg.ts b/assets/Game/Scripts/SlotMsg.ts index 17ce901..bb4e9f9 100644 --- a/assets/Game/Scripts/SlotMsg.ts +++ b/assets/Game/Scripts/SlotMsg.ts @@ -114,8 +114,12 @@ export class SlotMsg extends Component { tweenFun(); } + setTotaleMulti(mul: number) { + this.currTotaleMulti = mul + } + showTotalWinAnimaiton(startScore: number, endScore: number, cb) { - this.currTotaleMulti = 0 + this.smallMsgSpine.node.active = false; this.middleMsgSpine.node.active = false; @@ -143,7 +147,7 @@ export class SlotMsg extends Component { .to(0.2, { scale: v3(1, 1, 1) }) .start() this.scheduleOnce(() => { - this.node.getChildByName('totalMulti').getComponent(Label).string = ''; + director.getScene()?.getComponentInChildren(SlotGame).setFreeTotalMulti(1) if (cb) cb(); }, 1) }) @@ -265,7 +269,7 @@ export class SlotMsg extends Component { // 这部分run内部就是完整的队列模式,所有动画/节点操作都是await同步执行 let run = async () => { // 1. 确认总倍率节点,并首先飞入信息栏 - let centerMulNode = this.node.getChildByName('totalMulti'); + let centerMulNode = slotGame.node.getChildByPath('FreeGameBg1/totalMulti'); // this.node.addChild(centerMulNode); // centerMulNode.setPosition(centerLocalPos); // centerMulNode.setScale(1, 1, 1); @@ -274,8 +278,8 @@ export class SlotMsg extends Component { //总倍率有值时要第一个参与倍率计算 if (this.currTotaleMulti > 0) { let flyNode = instantiate(centerMulNode) - this.node.addChild(flyNode) flyNode.setPosition(centerMulNode.getPosition()) + this.node.addChild(flyNode) await tweenToAsync(flyNode, centerLocalPos, 0.6); flyNode.destroy() this.showRoundWinMsg(1, this.currTotaleMulti) @@ -330,9 +334,22 @@ export class SlotMsg extends Component { // centerMulNode.destroy(); // 5. 展示最终总分获胜弹窗和新的总倍率 + let showCurrMulti = () => { + return new Promise((resolve) => { + this.setTotaleMulti(sumMul) + let totalMultiBgSpin = slotGame.node.getChildByPath('FreeGameBg1/qiu') + tween(totalMultiBgSpin) + .to(0.2, { scale: v3(1.2, 1.2, 1) }) + .to(0.2, { scale: v3(1, 1, 1) }) + .call(() => { + slotGame.setFreeTotalMulti(this.currTotaleMulti) + resolve() + }) + .start() + }); + } if (spinData.IsFree) { - this.currTotaleMulti = sumMul - setMulText(centerMulNode, this.currTotaleMulti) + await showCurrMulti() } this.showTotalWinMsg(multiedScore); diff --git a/assets/Game/Scripts/SlotScene.ts b/assets/Game/Scripts/SlotScene.ts index a950a12..dff6aa4 100644 --- a/assets/Game/Scripts/SlotScene.ts +++ b/assets/Game/Scripts/SlotScene.ts @@ -151,6 +151,8 @@ export class SlotScene extends Component { } async handleReconnect() { + this.slotMsg.setTotaleMulti(this.spinData.WinMultiPlier) + if (this.hasEliminate) { this.slotBar.manualStop(this.hasEliminate); this.slotGame.playIconWinAni(this.spinData); @@ -174,7 +176,7 @@ export class SlotScene extends Component { this.slotBar.setDisplayBet(displayBet); } - async onClickSpin(buyType: number = 0, changeDiff: boolean = false) { + async onClickSpin(buyType: number = 0, changeDiff: boolean = false, isNewSpin: boolean) { GameDataManager.instance.canClickIconMsg = false; this.nextSpinInfo = null; this.nextSpinInfoPromise = null; @@ -184,6 +186,9 @@ export class SlotScene extends Component { this.slotGame.startScroll(this.isFreeSpin); // 重置 this.slotMsg.hideWinSpine(); + if (isNewSpin) { + this.slotMsg.setTotaleMulti(0) + } if (!this.isFreeSpin) { this.slotBar.setWin(0); } let msg = !this.isFeatureBuySpin && buyType == 0 ? @@ -306,7 +311,7 @@ export class SlotScene extends Component { this.slotBar.setLeftAutoCount(this.autoSpinConfig.count); this.slotBar.hasClickSpin = false; this.slotBar.hasClickManualStop = false; - this.onClickSpin(0, false); + this.onClickSpin(0, false, true); if (this.autoSpinConfig.count === 0) { this.slotBar.closeAutoSpin(); } @@ -359,7 +364,7 @@ export class SlotScene extends Component { onFeatureBuy() { this.isFeatureBuySpin = true; this.slotBar.featureBuySpin(); - this.onClickSpin(1, false); + this.onClickSpin(1, false, true); } async allRollerStop() { @@ -708,7 +713,7 @@ export class SlotScene extends Component { this.isFreeSpin = true; this.slotBar.setLeftCount(leftCount); - this.onClickSpin(0, false); + this.onClickSpin(0, false, false); this.slotBar.node.getChildByName("stopBtn").active = true; } diff --git a/assets/Game/SlotScene.prefab b/assets/Game/SlotScene.prefab index 0dc0645..bfea9ca 100644 --- a/assets/Game/SlotScene.prefab +++ b/assets/Game/SlotScene.prefab @@ -22,29 +22,29 @@ "__id__": 2 }, { - "__id__": 662 + "__id__": 656 }, { - "__id__": 1187 + "__id__": 1181 }, { - "__id__": 1204 + "__id__": 1198 } ], "_active": true, "_components": [ { - "__id__": 1219 + "__id__": 1213 }, { - "__id__": 1221 + "__id__": 1215 }, { - "__id__": 1223 + "__id__": 1217 } ], "_prefab": { - "__id__": 1225 + "__id__": 1219 }, "_lpos": { "__type__": "cc.Vec3", @@ -103,35 +103,32 @@ "__id__": 122 }, { - "__id__": 345 + "__id__": 351 }, { - "__id__": 386 + "__id__": 392 }, { - "__id__": 396 + "__id__": 402 }, { "__id__": 546 - }, - { - "__id__": 649 } ], "_active": true, "_components": [ { - "__id__": 655 + "__id__": 649 }, { - "__id__": 657 + "__id__": 651 }, { - "__id__": 659 + "__id__": 653 } ], "_prefab": { - "__id__": 661 + "__id__": 655 }, "_lpos": { "__type__": "cc.Vec3", @@ -5994,16 +5991,19 @@ }, { "__id__": 336 + }, + { + "__id__": 342 } ], "_active": false, "_components": [ { - "__id__": 342 + "__id__": 348 } ], "_prefab": { - "__id__": 344 + "__id__": 350 }, "_lpos": { "__type__": "cc.Vec3", @@ -6442,4378 +6442,31 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 323 - }, - "_enabled": true, - "__prefab": { - "__id__": 343 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1000 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49PDHzVqJAPpO75dJlYz6f" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2dMsUe+U5E363k4FdunIJD", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "FeatureBuyBtn", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 346 - }, - { - "__id__": 352 - }, - { - "__id__": 358 - }, - { - "__id__": 364 - }, - { - "__id__": 370 - } - ], - "_active": true, - "_components": [ - { - "__id__": 378 - }, - { - "__id__": 380 - }, - { - "__id__": 383 - } - ], - "_prefab": { - "__id__": 385 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -382.995, - "y": -484.519, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "3_1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 345 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 347 - }, - { - "__id__": 349 - } - ], - "_prefab": { - "__id__": 351 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -2.997, - "y": 97.994, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 346 - }, - "_enabled": true, - "__prefab": { - "__id__": 348 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 1920 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.2244444387930411, - "y": 0.38250001271565753 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "98arVlMjZB3YAf0n79Ttii" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 346 - }, - "_enabled": true, - "__prefab": { - "__id__": 350 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "1", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f4z8xO2LpBrKPsgKqqqeP0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "bauiVFtCdN2ZwYBpoaTKV+", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 345 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 353 - }, - { - "__id__": 355 - } - ], - "_prefab": { - "__id__": 357 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 105.21, - "y": 93.77, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.5, - "y": 0.5, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 352 - }, - "_enabled": true, - "__prefab": { - "__id__": 354 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 180, - "height": 170 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b0yjravYtOibCDnvbf7B1U" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 352 - }, - "_enabled": true, - "__prefab": { - "__id__": 356 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "04c113f4-a4a4-4360-8378-7311a85c4b6f", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "animation", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "45Wca1LCZCq5lxvTV1jkSi" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "47FwAChGdNuZ2fpOg/Y+kI", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 345 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 359 - }, - { - "__id__": 361 - } - ], - "_prefab": { - "__id__": 363 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 358 - }, - "_enabled": true, - "__prefab": { - "__id__": 360 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 345, - "height": 301 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.49852507374631266, - "y": 0.49606299212598426 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "89R6H32ihFHZKaSUjVyMSv" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 358 - }, - "_enabled": true, - "__prefab": { - "__id__": 362 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7f1e28da-f220-457c-a899-6770a1890792@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "81j2wuNGtI+KwC8pVpLWrd" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "77QI2i/P9Jd4h8PKJFRiBS", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "3_4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 345 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 365 - }, - { - "__id__": 367 - } - ], - "_prefab": { - "__id__": 369 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 3.696, - "y": -119.51, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.5, - "y": 0.5, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 364 - }, - "_enabled": true, - "__prefab": { - "__id__": 366 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 180, - "height": 223 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.4977578475336323 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "777+elt2RDr6Hx71D36Ke9" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 364 - }, - "_enabled": true, - "__prefab": { - "__id__": 368 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "36013ef8-4b35-438e-a4d4-6ae05c6a20fa", - "__expectedType__": "sp.SkeletonData" - }, - "defaultSkin": "default", - "defaultAnimation": "animation", - "_premultipliedAlpha": false, - "_timeScale": 1, - "_preCacheMode": 0, - "_cacheMode": 0, - "_sockets": [], - "_useTint": false, - "_debugMesh": false, - "_debugBones": false, - "_debugSlots": false, - "_enableBatch": false, - "loop": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6cX2g/irFKvYdSorYSDGrO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e5sy8abXRIuqVZyUIx1uqj", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "sp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 345 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 371 - }, - { - "__id__": 373 - }, - { - "__id__": 375 - } - ], - "_prefab": { - "__id__": 377 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -34.079, - "y": -14.349, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 370 - }, - "_enabled": true, - "__prefab": { - "__id__": 372 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 197, - "height": 87 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f6FeJzs1tEoY7kw/dOyyhD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 370 - }, - "_enabled": true, - "__prefab": { - "__id__": 374 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "95b5bbad-ea24-440f-8665-284c1c3efc1b@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b7g3zt1StKgpeLyCOf6P03" - }, - { - "__type__": "e6c8d4szahIuLbtf6yx+hH6", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 370 - }, - "_enabled": true, - "__prefab": { - "__id__": 376 - }, - "spriteName": "Buy2", - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "81H4F3lD1P4bQA+LjKsZmM" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "23U4gsF/tAXJDEyuWIk12H", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 345 - }, - "_enabled": true, - "__prefab": { - "__id__": 379 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 339, - "height": 127 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1eHz8LBDJNi51o35u1Ed2b" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 345 - }, - "_enabled": true, - "__prefab": { - "__id__": 381 - }, - "clickEvents": [ - { - "__id__": 382 - } - ], - "_interactable": true, - "_transition": 1, - "_normalColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 211, - "g": 211, - "b": 211, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 211, - "g": 211, - "b": 211, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 - }, - "_normalSprite": null, - "_hoverSprite": null, - "_pressedSprite": null, - "_disabledSprite": null, - "_duration": 0.1, - "_zoomScale": 1.2, - "_target": { - "__id__": 345 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "43wR7zW99Ouq+2e/3xnCiN" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 2 - }, - "component": "", - "_componentId": "39da6NyIT5DFJ4+NN6m72aH", - "handler": "onClickFeatureBuy", - "customEventData": "" - }, - { - "__type__": "cc.UIOpacity", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 345 - }, - "_enabled": true, - "__prefab": { - "__id__": 384 - }, - "_opacity": 255, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "fb+IkzPwRGdJ9X+ViIUc1V" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "9dvbcatyVLRY8Q1vCu12Cd", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "NormalGameBg1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 387 - } - ], - "_active": true, - "_components": [ - { - "__id__": 393 - } - ], - "_prefab": { - "__id__": 395 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 288, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "dt_sl", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 386 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 388 - }, - { - "__id__": 390 - } - ], - "_prefab": { - "__id__": 392 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -476.572, - "y": -1131.409, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 387 - }, - "_enabled": true, - "__prefab": { - "__id__": 389 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 96, - "height": 186 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e5qjRd3fhDeZxwZaTrmDZR" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 387 - }, - "_enabled": true, - "__prefab": { - "__id__": 391 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "79T/QvkilBOa/5VGPJwZrT" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8dPPl/urJKQpi/T2bRJI9x", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 386 - }, - "_enabled": true, - "__prefab": { - "__id__": 394 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 979 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0bJwfUTFVOJ7Q+S9wYnIJz" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "eb1wg1429OVbiDCDbGWnB4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "SlotMsg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 397 - }, - { - "__id__": 493 - }, - { - "__id__": 533 - } - ], - "_active": true, - "_components": [ - { - "__id__": 539 - }, - { - "__id__": 541 - }, - { - "__id__": 543 - } - ], - "_prefab": { - "__id__": 545 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 150, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "msgSpine", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 396 - }, - "_children": [ - { - "__id__": 398 - }, - { - "__id__": 426 - }, - { - "__id__": 458 - } - ], - "_active": true, - "_components": [ - { - "__id__": 490 - } - ], - "_prefab": { - "__id__": 492 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "0", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 397 - }, - "_children": [ - { - "__id__": 399 - }, - { - "__id__": 415 - } - ], - "_active": true, - "_components": [ - { - "__id__": 421 - }, - { - "__id__": 423 - } - ], - "_prefab": { - "__id__": 425 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -503, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 398 - }, - "_children": [ - { - "__id__": 400 - } - ], - "_active": true, - "_components": [ - { - "__id__": 408 - }, - { - "__id__": 410 - }, - { - "__id__": 412 - } - ], - "_prefab": { - "__id__": 414 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 399 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 401 - }, - { - "__id__": 403 - }, - { - "__id__": 405 - } - ], - "_prefab": { - "__id__": 407 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -260, - "y": 5, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 400 - }, - "_enabled": true, - "__prefab": { - "__id__": 402 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 503, - "height": 75 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "99D8k0BrdD/Ip6BBmZGi8X" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 400 - }, - "_enabled": true, - "__prefab": { - "__id__": 404 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "c4b48ccc-6c05-469a-93b3-fc640cfff011@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "63H+2a+DJGPLoAnUgTW0FR" - }, - { - "__type__": "e6c8d4szahIuLbtf6yx+hH6", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 400 - }, - "_enabled": true, - "__prefab": { - "__id__": 406 - }, - "spriteName": "Normal9", - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "52KP45QypGrbHjIG3cQUmI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d8DDFYgaNJCLpsicP3meQN", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 399 - }, - "_enabled": true, - "__prefab": { - "__id__": 409 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 760, - "height": 117 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "60lb1kG61DOqDhEsMUuYDt" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 399 - }, - "_enabled": true, - "__prefab": { - "__id__": 411 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.8, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c5ABbb8/5NDIvY0CltWXfU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 399 - }, - "_enabled": true, - "__prefab": { - "__id__": 413 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4cpEiSn5FHX4bG/11DeJti" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "28l//w1FhKSLlhdNpOfmKa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pmd1_zz", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 398 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 416 - }, - { - "__id__": 418 - } - ], - "_prefab": { - "__id__": 420 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 4, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 415 - }, - "_enabled": true, - "__prefab": { - "__id__": 417 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 792, - "height": 108 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c8tHg+mOFBIpjawVmh1WiU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 415 - }, - "_enabled": true, - "__prefab": { - "__id__": 419 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b8CLPCxg1LaoiypmzSvCEB" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ae/TeSU6hPwZWFyfFCz508", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 398 - }, - "_enabled": true, - "__prefab": { - "__id__": 422 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 794, - "height": 117 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.49944437441816164, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5bl5M2C+5D47p6rDcXY3vn" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 398 - }, - "_enabled": true, - "__prefab": { - "__id__": 424 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cb7KiL85JOxLaPx2ZR7FH6" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "933h9+KPFHmo1CRPVAzAJ8", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 397 - }, - "_children": [ - { - "__id__": 427 - }, - { - "__id__": 447 - } - ], - "_active": false, - "_components": [ - { - "__id__": 453 - }, - { - "__id__": 455 - } - ], - "_prefab": { - "__id__": 457 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -503, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "msg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 426 - }, - "_children": [ - { - "__id__": 428 - }, - { - "__id__": 436 - } - ], - "_active": true, - "_components": [ - { - "__id__": 442 - }, - { - "__id__": 444 - } - ], - "_prefab": { - "__id__": 446 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "win", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 427 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 429 - }, - { - "__id__": 431 - }, - { - "__id__": 433 - } - ], - "_prefab": { - "__id__": 435 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -167.65499999999997, - "y": -5, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 428 - }, - "_enabled": true, - "__prefab": { - "__id__": 430 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 94, - "height": 44 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 1, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d7lkcgEZ1L17yUu6+b5rtJ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 428 - }, - "_enabled": true, - "__prefab": { - "__id__": 432 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "33RDJC0ZtN5aWXGL4XuKwk" - }, - { - "__type__": "e6c8d4szahIuLbtf6yx+hH6", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 428 - }, - "_enabled": true, - "__prefab": { - "__id__": 434 - }, - "spriteName": "Normal6", - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "50zP1rxrJHwL3obmy9qYik" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a8N5uXiWZA2Iochp9ns+Gp", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "winCount", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 427 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 437 - }, - { - "__id__": 439 - } - ], - "_prefab": { - "__id__": 441 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -137.65499999999997, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 436 - }, - "_enabled": true, - "__prefab": { - "__id__": 438 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 399.31, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a3uCeuU5BCJLuN9E6V69xL" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 436 - }, - "_enabled": true, - "__prefab": { - "__id__": 440 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "1,234,567,890.00", - "_horizontalAlign": 0, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 100, - "_overflow": 0, - "_enableWrapText": false, - "_font": { - "__uuid__": "4ee54a0c-b02d-4346-894e-93fad7650fd7", - "__expectedType__": "cc.BitmapFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "53uPKhL2tFaKQVd/vKaI8I" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d19SjR+idPQLJRjOo3kLLJ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 427 - }, - "_enabled": true, - "__prefab": { - "__id__": 443 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 523.31, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b3Tr3kKFhOJZ3w6QtLdw2s" - }, - { - "__type__": "cc.Layout", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 427 - }, - "_enabled": true, - "__prefab": { - "__id__": 445 - }, - "_resizeMode": 1, - "_layoutType": 1, - "_cellSize": { - "__type__": "cc.Size", - "width": 40, - "height": 40 - }, - "_startAxis": 0, - "_paddingLeft": 0, - "_paddingRight": 0, - "_paddingTop": 0, - "_paddingBottom": 0, - "_spacingX": 30, - "_spacingY": 0, - "_verticalDirection": 1, - "_horizontalDirection": 0, - "_constraint": 0, - "_constraintNum": 2, - "_affectedByScale": false, - "_isAlign": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "32XugeFcBF7Y80a4U7ZL+F" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "28qaHgwzJHD7QjtyoTOcws", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pmd2_zz", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 426 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 448 - }, - { - "__id__": 450 - } - ], - "_prefab": { - "__id__": 452 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 2, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 447 - }, - "_enabled": true, - "__prefab": { - "__id__": 449 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 815, - "height": 110 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cbgM5DGBlEgaEqRitiSo0L" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 447 - }, - "_enabled": true, - "__prefab": { - "__id__": 451 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e2kK8bDTZD2qfrUQTYDbtI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4bDMlDmUFOb404WcHyrhAv", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 426 - }, - "_enabled": true, - "__prefab": { - "__id__": 454 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 794, - "height": 117 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5029239766081871 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "faxvpP5NNN9LiP2/z7Wx0+" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 426 - }, - "_enabled": true, - "__prefab": { - "__id__": 456 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "fc9fad23-4ca6-4689-9f38-b09f337acecf@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1a6pUIhOJKUYckHbGgHVu/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "09IG+k6spLTKe62tM+Gqe5", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 397 - }, - "_children": [ - { - "__id__": 459 - }, - { - "__id__": 479 - } - ], - "_active": false, - "_components": [ - { - "__id__": 485 - }, - { - "__id__": 487 - } - ], - "_prefab": { - "__id__": 489 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -503, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "msg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 458 - }, - "_children": [ - { - "__id__": 460 - }, - { - "__id__": 468 - } - ], - "_active": true, - "_components": [ - { - "__id__": 474 - }, - { - "__id__": 476 - } - ], - "_prefab": { - "__id__": 478 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 10, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "totalWin", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 459 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 461 - }, - { - "__id__": 463 - }, - { - "__id__": 465 - } - ], - "_prefab": { - "__id__": 467 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -89.24000000000001, - "y": -5, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 460 - }, - "_enabled": true, - "__prefab": { - "__id__": 462 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 226, - "height": 43 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 1, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d3dtS+HxRGVJRtOBukx6LW" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 460 - }, - "_enabled": true, - "__prefab": { - "__id__": 464 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "ae4603c5-4824-4cd2-9978-cd767e21c269@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8835lvq6lFpp997vHUKQQA" - }, - { - "__type__": "e6c8d4szahIuLbtf6yx+hH6", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 460 - }, - "_enabled": true, - "__prefab": { - "__id__": 466 - }, - "spriteName": "Normal7", - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "95cKAdT99IR759e4E0iZZ9" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "519Lg618lB/5afaaI6qhXZ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "winCount", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 459 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 469 - }, - { - "__id__": 471 - } - ], - "_prefab": { - "__id__": 473 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -59.24000000000001, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 468 - }, - "_enabled": true, - "__prefab": { - "__id__": 470 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 374.48, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3crrUZOqJMmblPOQGvPkP5" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 468 - }, - "_enabled": true, - "__prefab": { - "__id__": 472 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "1,234,567,89.0x", - "_horizontalAlign": 0, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 100, - "_overflow": 0, - "_enableWrapText": false, - "_font": { - "__uuid__": "4ee54a0c-b02d-4346-894e-93fad7650fd7", - "__expectedType__": "cc.BitmapFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "21Nvrtkb9Ae5DHMHTXjIA2" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "98uv25eYZNBZmgEz7YGob/", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 459 - }, - "_enabled": true, - "__prefab": { - "__id__": 475 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 630.48, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1fhwBPIlZJRrBTZnstGm1U" - }, - { - "__type__": "cc.Layout", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 459 - }, - "_enabled": true, - "__prefab": { - "__id__": 477 - }, - "_resizeMode": 1, - "_layoutType": 1, - "_cellSize": { - "__type__": "cc.Size", - "width": 40, - "height": 40 - }, - "_startAxis": 0, - "_paddingLeft": 0, - "_paddingRight": 0, - "_paddingTop": 0, - "_paddingBottom": 0, - "_spacingX": 30, - "_spacingY": 0, - "_verticalDirection": 1, - "_horizontalDirection": 0, - "_constraint": 0, - "_constraintNum": 2, - "_affectedByScale": false, - "_isAlign": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "98R4iCygpKCYg0/g4i5iKI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "64okEfRNBJSZjlPm6XU1q9", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pmd3_zz", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 458 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 480 - }, - { - "__id__": 482 - } - ], - "_prefab": { - "__id__": 484 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 479 - }, - "_enabled": true, - "__prefab": { - "__id__": 481 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 817, - "height": 112 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cfsoED4TRIS71Ka3sCd0on" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 479 - }, - "_enabled": true, - "__prefab": { - "__id__": 483 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "79d66cae-992f-42db-93cc-6436356e6b1d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4dZSBow5BP1KtqCSOkaI9j" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d5iMPsRdBMKYI0qCuGYf9p", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 458 - }, - "_enabled": true, - "__prefab": { - "__id__": 486 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 794, - "height": 117 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f96aGOjU5KNZx6dHgWXsYz" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 458 - }, - "_enabled": true, - "__prefab": { - "__id__": 488 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "69MMg5tMZKBpZZO+arzrM8" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fdR2EmiKdCN45RiKSLiXwi", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 397 - }, - "_enabled": true, - "__prefab": { - "__id__": 491 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1dTWjrsAtGgYIFjUPQpb3d" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2egPNPUS5DW5OHzsFKerdo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "grayMsgNode", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 396 - }, - "_children": [ - { - "__id__": 494 - }, - { - "__id__": 500 - } - ], - "_active": false, - "_components": [ - { - "__id__": 530 - } - ], - "_prefab": { - "__id__": 532 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -438, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "sp", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 493 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 495 - }, - { - "__id__": 497 - } - ], - "_prefab": { - "__id__": 499 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 494 - }, - "_enabled": true, - "__prefab": { - "__id__": 496 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 532, - "height": 132 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "52TDyj6NdDipFAp0yE3HfN" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 494 - }, - "_enabled": true, - "__prefab": { - "__id__": 498 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 200 - }, - "_spriteFrame": { - "__uuid__": "5ce0669d-2fcb-4866-b622-c8ea4aa04f76@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "62TsxHWh1BVomJ41a7016A" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "feVqZdaBdDtrZpj4Z88T5H", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "layout", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 493 - }, - "_children": [ - { - "__id__": 501 - }, - { - "__id__": 517 - } - ], - "_active": true, - "_components": [ - { - "__id__": 525 - }, - { - "__id__": 527 - } - ], - "_prefab": { - "__id__": 529 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "fast", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 500 - }, - "_children": [ - { - "__id__": 502 - }, - { - "__id__": 508 - } - ], - "_active": true, - "_components": [ - { - "__id__": 514 - } - ], - "_prefab": { - "__id__": 516 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -171.376953125, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "toast_Turbooff", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 501 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 503 - }, - { - "__id__": 505 - } - ], - "_prefab": { - "__id__": 507 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 502 - }, - "_enabled": true, - "__prefab": { - "__id__": 504 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 42, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f3u4AWzrxJ9bi/v+DzULTt" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 502 - }, - "_enabled": true, - "__prefab": { - "__id__": 506 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "651d498c-744a-477e-8e54-d6ae73cf62e1@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7bVkQ361RHJ53D8jcIycRO" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d3wYNZno5Ed4M8p31rrds+", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "toast_Turboon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 501 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 509 - }, - { - "__id__": 511 - } - ], - "_prefab": { - "__id__": 513 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 508 - }, - "_enabled": true, - "__prefab": { - "__id__": 510 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 42, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c3yzwb7T5O96Ko9DawIvn5" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 508 - }, - "_enabled": true, - "__prefab": { - "__id__": 512 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "89cf32ea-9122-4ef2-a915-3b05c0a75ddf@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": false, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "94h0XCRr9BPqILSrlUxNly" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1bHAaVl19Jy5VArRoz+d/i", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 501 - }, - "_enabled": true, - "__prefab": { - "__id__": 515 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 42, - "height": 42 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ae66fOlVxEVqJ0ScMRbARL" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "076oUfUHlF5Iu/KgJiKjTn", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lab", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 500 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 518 - }, - { - "__id__": 520 - }, - { - "__id__": 522 - } - ], - "_prefab": { - "__id__": 524 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 23.5, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 517 - }, - "_enabled": true, - "__prefab": { - "__id__": 519 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 337.75390625, - "height": 75.6 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "005YsNgK1K6ozSAE3/PXH2" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 517 - }, - "_enabled": true, - "__prefab": { - "__id__": 521 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "Turbo Spin Disable", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, - "_fontFamily": "Arial", - "_lineHeight": 60, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "9f6944f9-a7bf-496b-859f-0b3789dea62d", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bbzuLFIQRP3Z0XNHC4B5uq" - }, - { - "__type__": "13604ZE7BdHT7nIlM/sbl+h", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 517 - }, - "_enabled": true, - "__prefab": { - "__id__": 523 - }, - "isBold": false, - "fontOther": { - "__uuid__": "9f6944f9-a7bf-496b-859f-0b3789dea62d", - "__expectedType__": "cc.TTFFont" - }, - "fontOtherBold": { - "__uuid__": "dc98ea2a-da8a-491e-bf52-158d7e0f6ecc", - "__expectedType__": "cc.TTFFont" - }, - "fontThVi": { - "__uuid__": "0d77e31d-ca2c-46b0-ae19-73d80ed8594d", - "__expectedType__": "cc.TTFFont" - }, - "fontThViBold": { - "__uuid__": "ab560c84-c685-4ee1-b869-5770e30c9e5e", - "__expectedType__": "cc.TTFFont" - }, - "fontMy": { - "__uuid__": "8256fee1-5ce7-438f-a392-b5e1d2ec38ab", - "__expectedType__": "cc.TTFFont" - }, - "fontMyBold": { - "__uuid__": "20c23edc-6c4e-43bb-b653-6e5684bf672e", - "__expectedType__": "cc.TTFFont" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "70F5eKWINJH70Fl7+5ClBo" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "32THvzRzNC4q46cHxg9isj", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 500 - }, - "_enabled": true, - "__prefab": { - "__id__": 526 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 384.75390625, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bceGX10xZGW62OJSMWO19i" - }, - { - "__type__": "cc.Layout", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 500 - }, - "_enabled": true, - "__prefab": { - "__id__": 528 - }, - "_resizeMode": 1, - "_layoutType": 1, - "_cellSize": { - "__type__": "cc.Size", - "width": 40, - "height": 40 - }, - "_startAxis": 0, - "_paddingLeft": 0, - "_paddingRight": 0, - "_paddingTop": 0, - "_paddingBottom": 0, - "_spacingX": 5, - "_spacingY": 0, - "_verticalDirection": 1, - "_horizontalDirection": 0, - "_constraint": 0, - "_constraintNum": 2, - "_affectedByScale": false, - "_isAlign": false, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "fd5veuwntNU4639S08SPzC" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "84Mo2K/w1A9Z0kqeEPmU15", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 493 - }, - "_enabled": true, - "__prefab": { - "__id__": 531 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 100 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6aY/wC5SFADaIcEFEZ42w0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "aeqnqO5/FJuJKmRArSobSl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "totalMulti", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 396 + "__id__": 323 }, "_children": [], "_active": true, "_components": [ { - "__id__": 534 + "__id__": 343 }, { - "__id__": 536 + "__id__": 345 } ], "_prefab": { - "__id__": 538 + "__id__": 347 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 455, + "y": 317, "z": 0 }, "_lrot": { @@ -10845,15 +6498,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 533 + "__id__": 342 }, "_enabled": true, "__prefab": { - "__id__": 535 + "__id__": 344 }, "_contentSize": { "__type__": "cc.Size", - "width": 0, + "width": 181.13, "height": 40 }, "_anchorPoint": { @@ -10873,11 +6526,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 533 + "__id__": 342 }, "_enabled": true, "__prefab": { - "__id__": 537 + "__id__": 346 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10957,7 +6610,4351 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 396 + "__id__": 323 + }, + "_enabled": true, + "__prefab": { + "__id__": 349 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1000 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49PDHzVqJAPpO75dJlYz6f" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2dMsUe+U5E363k4FdunIJD", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "FeatureBuyBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 352 + }, + { + "__id__": 358 + }, + { + "__id__": 364 + }, + { + "__id__": 370 + }, + { + "__id__": 376 + } + ], + "_active": true, + "_components": [ + { + "__id__": 384 + }, + { + "__id__": 386 + }, + { + "__id__": 389 + } + ], + "_prefab": { + "__id__": 391 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -382.995, + "y": -484.519, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "3_1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 353 + }, + { + "__id__": 355 + } + ], + "_prefab": { + "__id__": 357 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -2.997, + "y": 97.994, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 352 + }, + "_enabled": true, + "__prefab": { + "__id__": 354 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.2244444387930411, + "y": 0.38250001271565753 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "98arVlMjZB3YAf0n79Ttii" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 352 + }, + "_enabled": true, + "__prefab": { + "__id__": 356 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "9dc3eb6b-a86f-4c41-a242-53835025827a", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "1", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f4z8xO2LpBrKPsgKqqqeP0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bauiVFtCdN2ZwYBpoaTKV+", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "3_2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 359 + }, + { + "__id__": 361 + } + ], + "_prefab": { + "__id__": 363 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 105.21, + "y": 93.77, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 358 + }, + "_enabled": true, + "__prefab": { + "__id__": 360 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 170 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b0yjravYtOibCDnvbf7B1U" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 358 + }, + "_enabled": true, + "__prefab": { + "__id__": 362 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "04c113f4-a4a4-4360-8378-7311a85c4b6f", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "45Wca1LCZCq5lxvTV1jkSi" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47FwAChGdNuZ2fpOg/Y+kI", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "3_3", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 365 + }, + { + "__id__": 367 + } + ], + "_prefab": { + "__id__": 369 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 364 + }, + "_enabled": true, + "__prefab": { + "__id__": 366 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 345, + "height": 301 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.49852507374631266, + "y": 0.49606299212598426 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "89R6H32ihFHZKaSUjVyMSv" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 364 + }, + "_enabled": true, + "__prefab": { + "__id__": 368 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7f1e28da-f220-457c-a899-6770a1890792@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "81j2wuNGtI+KwC8pVpLWrd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77QI2i/P9Jd4h8PKJFRiBS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "3_4", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 371 + }, + { + "__id__": 373 + } + ], + "_prefab": { + "__id__": 375 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 3.696, + "y": -119.51, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 370 + }, + "_enabled": true, + "__prefab": { + "__id__": 372 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 180, + "height": 223 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.4977578475336323 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "777+elt2RDr6Hx71D36Ke9" + }, + { + "__type__": "sp.Skeleton", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 370 + }, + "_enabled": true, + "__prefab": { + "__id__": 374 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_skeletonData": { + "__uuid__": "36013ef8-4b35-438e-a4d4-6ae05c6a20fa", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_premultipliedAlpha": false, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6cX2g/irFKvYdSorYSDGrO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5sy8abXRIuqVZyUIx1uqj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 351 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 377 + }, + { + "__id__": 379 + }, + { + "__id__": 381 + } + ], + "_prefab": { + "__id__": 383 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -34.079, + "y": -14.349, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 376 + }, + "_enabled": true, + "__prefab": { + "__id__": 378 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 197, + "height": 87 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f6FeJzs1tEoY7kw/dOyyhD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 376 + }, + "_enabled": true, + "__prefab": { + "__id__": 380 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "95b5bbad-ea24-440f-8665-284c1c3efc1b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b7g3zt1StKgpeLyCOf6P03" + }, + { + "__type__": "e6c8d4szahIuLbtf6yx+hH6", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 376 + }, + "_enabled": true, + "__prefab": { + "__id__": 382 + }, + "spriteName": "Buy2", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "81H4F3lD1P4bQA+LjKsZmM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "23U4gsF/tAXJDEyuWIk12H", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 351 + }, + "_enabled": true, + "__prefab": { + "__id__": 385 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 339, + "height": 127 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1eHz8LBDJNi51o35u1Ed2b" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 351 + }, + "_enabled": true, + "__prefab": { + "__id__": 387 + }, + "clickEvents": [ + { + "__id__": 388 + } + ], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 351 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "43wR7zW99Ouq+2e/3xnCiN" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 2 + }, + "component": "", + "_componentId": "39da6NyIT5DFJ4+NN6m72aH", + "handler": "onClickFeatureBuy", + "customEventData": "" + }, + { + "__type__": "cc.UIOpacity", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 351 + }, + "_enabled": true, + "__prefab": { + "__id__": 390 + }, + "_opacity": 255, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fb+IkzPwRGdJ9X+ViIUc1V" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9dvbcatyVLRY8Q1vCu12Cd", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "NormalGameBg1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 393 + } + ], + "_active": true, + "_components": [ + { + "__id__": 399 + } + ], + "_prefab": { + "__id__": 401 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 288, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "dt_sl", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 392 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 394 + }, + { + "__id__": 396 + } + ], + "_prefab": { + "__id__": 398 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -476.572, + "y": -1131.409, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 393 + }, + "_enabled": true, + "__prefab": { + "__id__": 395 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 96, + "height": 186 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e5qjRd3fhDeZxwZaTrmDZR" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 393 + }, + "_enabled": true, + "__prefab": { + "__id__": 397 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "16d39d67-9f5e-4cc3-a95c-da3b91f913e4@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "79T/QvkilBOa/5VGPJwZrT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8dPPl/urJKQpi/T2bRJI9x", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 392 + }, + "_enabled": true, + "__prefab": { + "__id__": 400 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 979 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0bJwfUTFVOJ7Q+S9wYnIJz" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eb1wg1429OVbiDCDbGWnB4", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SlotMsg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 403 + }, + { + "__id__": 499 + } + ], + "_active": true, + "_components": [ + { + "__id__": 539 + }, + { + "__id__": 541 + }, + { + "__id__": 543 + } + ], + "_prefab": { + "__id__": 545 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 150, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "msgSpine", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 402 + }, + "_children": [ + { + "__id__": 404 + }, + { + "__id__": 432 + }, + { + "__id__": 464 + } + ], + "_active": true, + "_components": [ + { + "__id__": 496 + } + ], + "_prefab": { + "__id__": 498 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "0", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 403 + }, + "_children": [ + { + "__id__": 405 + }, + { + "__id__": 421 + } + ], + "_active": true, + "_components": [ + { + "__id__": 427 + }, + { + "__id__": 429 + } + ], + "_prefab": { + "__id__": 431 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -503, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 404 + }, + "_children": [ + { + "__id__": 406 + } + ], + "_active": true, + "_components": [ + { + "__id__": 414 + }, + { + "__id__": 416 + }, + { + "__id__": 418 + } + ], + "_prefab": { + "__id__": 420 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 405 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 407 + }, + { + "__id__": 409 + }, + { + "__id__": 411 + } + ], + "_prefab": { + "__id__": 413 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -260, + "y": 5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 406 + }, + "_enabled": true, + "__prefab": { + "__id__": 408 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 503, + "height": 75 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "99D8k0BrdD/Ip6BBmZGi8X" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 406 + }, + "_enabled": true, + "__prefab": { + "__id__": 410 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "c4b48ccc-6c05-469a-93b3-fc640cfff011@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "63H+2a+DJGPLoAnUgTW0FR" + }, + { + "__type__": "e6c8d4szahIuLbtf6yx+hH6", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 406 + }, + "_enabled": true, + "__prefab": { + "__id__": 412 + }, + "spriteName": "Normal9", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "52KP45QypGrbHjIG3cQUmI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d8DDFYgaNJCLpsicP3meQN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 405 + }, + "_enabled": true, + "__prefab": { + "__id__": 415 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 760, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "60lb1kG61DOqDhEsMUuYDt" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 405 + }, + "_enabled": true, + "__prefab": { + "__id__": 417 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.8, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c5ABbb8/5NDIvY0CltWXfU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 405 + }, + "_enabled": true, + "__prefab": { + "__id__": 419 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4cpEiSn5FHX4bG/11DeJti" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28l//w1FhKSLlhdNpOfmKa", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pmd1_zz", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 404 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 422 + }, + { + "__id__": 424 + } + ], + "_prefab": { + "__id__": 426 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 4, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 421 + }, + "_enabled": true, + "__prefab": { + "__id__": 423 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 792, + "height": 108 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c8tHg+mOFBIpjawVmh1WiU" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 421 + }, + "_enabled": true, + "__prefab": { + "__id__": 425 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b8CLPCxg1LaoiypmzSvCEB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ae/TeSU6hPwZWFyfFCz508", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 404 + }, + "_enabled": true, + "__prefab": { + "__id__": 428 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 794, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.49944437441816164, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bl5M2C+5D47p6rDcXY3vn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 404 + }, + "_enabled": true, + "__prefab": { + "__id__": 430 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "52629b52-adbd-486e-ac5b-8568d7414ed5@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cb7KiL85JOxLaPx2ZR7FH6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "933h9+KPFHmo1CRPVAzAJ8", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 403 + }, + "_children": [ + { + "__id__": 433 + }, + { + "__id__": 453 + } + ], + "_active": false, + "_components": [ + { + "__id__": 459 + }, + { + "__id__": 461 + } + ], + "_prefab": { + "__id__": 463 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -503, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "msg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 432 + }, + "_children": [ + { + "__id__": 434 + }, + { + "__id__": 442 + } + ], + "_active": true, + "_components": [ + { + "__id__": 448 + }, + { + "__id__": 450 + } + ], + "_prefab": { + "__id__": 452 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 10, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "win", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 433 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 435 + }, + { + "__id__": 437 + }, + { + "__id__": 439 + } + ], + "_prefab": { + "__id__": 441 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -167.65499999999997, + "y": -5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 434 + }, + "_enabled": true, + "__prefab": { + "__id__": 436 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 94, + "height": 44 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d7lkcgEZ1L17yUu6+b5rtJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 434 + }, + "_enabled": true, + "__prefab": { + "__id__": 438 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a0ec5bb0-1238-4af2-a9d6-86a8c8973d24@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "33RDJC0ZtN5aWXGL4XuKwk" + }, + { + "__type__": "e6c8d4szahIuLbtf6yx+hH6", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 434 + }, + "_enabled": true, + "__prefab": { + "__id__": 440 + }, + "spriteName": "Normal6", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "50zP1rxrJHwL3obmy9qYik" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8N5uXiWZA2Iochp9ns+Gp", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "winCount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 433 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 443 + }, + { + "__id__": 445 + } + ], + "_prefab": { + "__id__": 447 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -137.65499999999997, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 444 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 399.31, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a3uCeuU5BCJLuN9E6V69xL" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 446 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "1,234,567,890.00", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 100, + "_overflow": 0, + "_enableWrapText": false, + "_font": { + "__uuid__": "4ee54a0c-b02d-4346-894e-93fad7650fd7", + "__expectedType__": "cc.BitmapFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53uPKhL2tFaKQVd/vKaI8I" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d19SjR+idPQLJRjOo3kLLJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 433 + }, + "_enabled": true, + "__prefab": { + "__id__": 449 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 523.31, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b3Tr3kKFhOJZ3w6QtLdw2s" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 433 + }, + "_enabled": true, + "__prefab": { + "__id__": 451 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 30, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "32XugeFcBF7Y80a4U7ZL+F" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28qaHgwzJHD7QjtyoTOcws", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pmd2_zz", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 432 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 454 + }, + { + "__id__": 456 + } + ], + "_prefab": { + "__id__": 458 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 2, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 453 + }, + "_enabled": true, + "__prefab": { + "__id__": 455 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 815, + "height": 110 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cbgM5DGBlEgaEqRitiSo0L" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 453 + }, + "_enabled": true, + "__prefab": { + "__id__": 457 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e2kK8bDTZD2qfrUQTYDbtI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4bDMlDmUFOb404WcHyrhAv", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 432 + }, + "_enabled": true, + "__prefab": { + "__id__": 460 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 794, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5029239766081871 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "faxvpP5NNN9LiP2/z7Wx0+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 432 + }, + "_enabled": true, + "__prefab": { + "__id__": 462 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fc9fad23-4ca6-4689-9f38-b09f337acecf@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1a6pUIhOJKUYckHbGgHVu/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "09IG+k6spLTKe62tM+Gqe5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 403 + }, + "_children": [ + { + "__id__": 465 + }, + { + "__id__": 485 + } + ], + "_active": false, + "_components": [ + { + "__id__": 491 + }, + { + "__id__": 493 + } + ], + "_prefab": { + "__id__": 495 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -503, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "msg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 464 + }, + "_children": [ + { + "__id__": 466 + }, + { + "__id__": 474 + } + ], + "_active": true, + "_components": [ + { + "__id__": 480 + }, + { + "__id__": 482 + } + ], + "_prefab": { + "__id__": 484 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 10, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "totalWin", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 465 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 467 + }, + { + "__id__": 469 + }, + { + "__id__": 471 + } + ], + "_prefab": { + "__id__": 473 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -89.24000000000001, + "y": -5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 466 + }, + "_enabled": true, + "__prefab": { + "__id__": 468 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 226, + "height": 43 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d3dtS+HxRGVJRtOBukx6LW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 466 + }, + "_enabled": true, + "__prefab": { + "__id__": 470 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "ae4603c5-4824-4cd2-9978-cd767e21c269@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8835lvq6lFpp997vHUKQQA" + }, + { + "__type__": "e6c8d4szahIuLbtf6yx+hH6", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 466 + }, + "_enabled": true, + "__prefab": { + "__id__": 472 + }, + "spriteName": "Normal7", + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "95cKAdT99IR759e4E0iZZ9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "519Lg618lB/5afaaI6qhXZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "winCount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 465 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 475 + }, + { + "__id__": 477 + } + ], + "_prefab": { + "__id__": 479 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -59.24000000000001, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 474 + }, + "_enabled": true, + "__prefab": { + "__id__": 476 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 374.48, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3crrUZOqJMmblPOQGvPkP5" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 474 + }, + "_enabled": true, + "__prefab": { + "__id__": 478 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "1,234,567,89.0x", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 100, + "_overflow": 0, + "_enableWrapText": false, + "_font": { + "__uuid__": "4ee54a0c-b02d-4346-894e-93fad7650fd7", + "__expectedType__": "cc.BitmapFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "21Nvrtkb9Ae5DHMHTXjIA2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98uv25eYZNBZmgEz7YGob/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 465 + }, + "_enabled": true, + "__prefab": { + "__id__": 481 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 630.48, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1fhwBPIlZJRrBTZnstGm1U" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 465 + }, + "_enabled": true, + "__prefab": { + "__id__": 483 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 30, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "98R4iCygpKCYg0/g4i5iKI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "64okEfRNBJSZjlPm6XU1q9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pmd3_zz", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 464 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 486 + }, + { + "__id__": 488 + } + ], + "_prefab": { + "__id__": 490 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 485 + }, + "_enabled": true, + "__prefab": { + "__id__": 487 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 817, + "height": 112 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfsoED4TRIS71Ka3sCd0on" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 485 + }, + "_enabled": true, + "__prefab": { + "__id__": 489 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "79d66cae-992f-42db-93cc-6436356e6b1d@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4dZSBow5BP1KtqCSOkaI9j" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5iMPsRdBMKYI0qCuGYf9p", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 464 + }, + "_enabled": true, + "__prefab": { + "__id__": 492 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 794, + "height": 117 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f96aGOjU5KNZx6dHgWXsYz" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 464 + }, + "_enabled": true, + "__prefab": { + "__id__": 494 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "2cfbbf71-4ea5-4648-8d1f-558bdd756492@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "69MMg5tMZKBpZZO+arzrM8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fdR2EmiKdCN45RiKSLiXwi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 403 + }, + "_enabled": true, + "__prefab": { + "__id__": 497 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1dTWjrsAtGgYIFjUPQpb3d" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2egPNPUS5DW5OHzsFKerdo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "grayMsgNode", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 402 + }, + "_children": [ + { + "__id__": 500 + }, + { + "__id__": 506 + } + ], + "_active": false, + "_components": [ + { + "__id__": 536 + } + ], + "_prefab": { + "__id__": 538 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -438, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "sp", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 499 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 501 + }, + { + "__id__": 503 + } + ], + "_prefab": { + "__id__": 505 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 500 + }, + "_enabled": true, + "__prefab": { + "__id__": 502 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 532, + "height": 132 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "52TDyj6NdDipFAp0yE3HfN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 500 + }, + "_enabled": true, + "__prefab": { + "__id__": 504 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 200 + }, + "_spriteFrame": { + "__uuid__": "5ce0669d-2fcb-4866-b622-c8ea4aa04f76@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "62TsxHWh1BVomJ41a7016A" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "feVqZdaBdDtrZpj4Z88T5H", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "layout", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 499 + }, + "_children": [ + { + "__id__": 507 + }, + { + "__id__": 523 + } + ], + "_active": true, + "_components": [ + { + "__id__": 531 + }, + { + "__id__": 533 + } + ], + "_prefab": { + "__id__": 535 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "fast", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 506 + }, + "_children": [ + { + "__id__": 508 + }, + { + "__id__": 514 + } + ], + "_active": true, + "_components": [ + { + "__id__": 520 + } + ], + "_prefab": { + "__id__": 522 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -171.376953125, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "toast_Turbooff", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 507 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 509 + }, + { + "__id__": 511 + } + ], + "_prefab": { + "__id__": 513 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 508 + }, + "_enabled": true, + "__prefab": { + "__id__": 510 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 42, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3u4AWzrxJ9bi/v+DzULTt" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 508 + }, + "_enabled": true, + "__prefab": { + "__id__": 512 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "651d498c-744a-477e-8e54-d6ae73cf62e1@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7bVkQ361RHJ53D8jcIycRO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3wYNZno5Ed4M8p31rrds+", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "toast_Turboon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 507 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 515 + }, + { + "__id__": 517 + } + ], + "_prefab": { + "__id__": 519 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 514 + }, + "_enabled": true, + "__prefab": { + "__id__": 516 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 42, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c3yzwb7T5O96Ko9DawIvn5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 514 + }, + "_enabled": true, + "__prefab": { + "__id__": 518 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "89cf32ea-9122-4ef2-a915-3b05c0a75ddf@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": false, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "94h0XCRr9BPqILSrlUxNly" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1bHAaVl19Jy5VArRoz+d/i", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 507 + }, + "_enabled": true, + "__prefab": { + "__id__": 521 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 42, + "height": 42 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ae66fOlVxEVqJ0ScMRbARL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "076oUfUHlF5Iu/KgJiKjTn", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lab", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 506 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 524 + }, + { + "__id__": 526 + }, + { + "__id__": 528 + } + ], + "_prefab": { + "__id__": 530 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 23.5, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 523 + }, + "_enabled": true, + "__prefab": { + "__id__": 525 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 337.75390625, + "height": 75.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "005YsNgK1K6ozSAE3/PXH2" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 523 + }, + "_enabled": true, + "__prefab": { + "__id__": 527 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Turbo Spin Disable", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 40, + "_fontFamily": "Arial", + "_lineHeight": 60, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "9f6944f9-a7bf-496b-859f-0b3789dea62d", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bbzuLFIQRP3Z0XNHC4B5uq" + }, + { + "__type__": "13604ZE7BdHT7nIlM/sbl+h", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 523 + }, + "_enabled": true, + "__prefab": { + "__id__": 529 + }, + "isBold": false, + "fontOther": { + "__uuid__": "9f6944f9-a7bf-496b-859f-0b3789dea62d", + "__expectedType__": "cc.TTFFont" + }, + "fontOtherBold": { + "__uuid__": "dc98ea2a-da8a-491e-bf52-158d7e0f6ecc", + "__expectedType__": "cc.TTFFont" + }, + "fontThVi": { + "__uuid__": "0d77e31d-ca2c-46b0-ae19-73d80ed8594d", + "__expectedType__": "cc.TTFFont" + }, + "fontThViBold": { + "__uuid__": "ab560c84-c685-4ee1-b869-5770e30c9e5e", + "__expectedType__": "cc.TTFFont" + }, + "fontMy": { + "__uuid__": "8256fee1-5ce7-438f-a392-b5e1d2ec38ab", + "__expectedType__": "cc.TTFFont" + }, + "fontMyBold": { + "__uuid__": "20c23edc-6c4e-43bb-b653-6e5684bf672e", + "__expectedType__": "cc.TTFFont" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "70F5eKWINJH70Fl7+5ClBo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32THvzRzNC4q46cHxg9isj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 506 + }, + "_enabled": true, + "__prefab": { + "__id__": 532 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384.75390625, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bceGX10xZGW62OJSMWO19i" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 506 + }, + "_enabled": true, + "__prefab": { + "__id__": 534 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 5, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fd5veuwntNU4639S08SPzC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "84Mo2K/w1A9Z0kqeEPmU15", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 499 + }, + "_enabled": true, + "__prefab": { + "__id__": 537 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6aY/wC5SFADaIcEFEZ42w0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aeqnqO5/FJuJKmRArSobSl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 402 }, "_enabled": true, "__prefab": { @@ -10985,26 +10982,26 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 396 + "__id__": 402 }, "_enabled": true, "__prefab": { "__id__": 542 }, "smallMsgSpine": { - "__id__": 423 + "__id__": 429 }, "middleMsgSpine": { - "__id__": 455 + "__id__": 461 }, "largeMsgSpine": { - "__id__": 487 + "__id__": 493 }, "i18nSpriteMsg": { - "__id__": 403 + "__id__": 409 }, "grayMsgNode": { - "__id__": 493 + "__id__": 499 }, "multiNode": null, "_id": "" @@ -11019,7 +11016,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 396 + "__id__": 402 }, "_enabled": true, "__prefab": { @@ -13471,168 +13468,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "FreeGameTotalMulti", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 650 - }, - { - "__id__": 652 - } - ], - "_prefab": { - "__id__": 654 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 609.033, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 649 - }, - "_enabled": true, - "__prefab": { - "__id__": 651 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 0, - "height": 40 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2bwuQyRcpNHIhblYpUVtSg" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 649 - }, - "_enabled": true, - "__prefab": { - "__id__": 653 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 150, - "_fontSize": 150, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "15b4c190-22d9-481f-8673-044bec359b26", - "__expectedType__": "cc.BitmapFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "aeBrIY4SBOgboU+8YwlG/H" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3fMiYhxkRKBbMypG1B6ku4", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.UITransform", "_name": "", @@ -13643,7 +13478,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 656 + "__id__": 650 }, "_contentSize": { "__type__": "cc.Size", @@ -13671,7 +13506,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 658 + "__id__": 652 }, "_alignFlags": 45, "_target": null, @@ -13707,7 +13542,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 660 + "__id__": 654 }, "rollerManager": { "__id__": 282 @@ -13722,7 +13557,7 @@ "__id__": 57 }, "featureBuyNode": { - "__id__": 345 + "__id__": 351 }, "doubleWinBtnNode": { "__id__": 547 @@ -13756,38 +13591,38 @@ }, "_children": [ { - "__id__": 663 + "__id__": 657 }, { - "__id__": 759 + "__id__": 753 }, { - "__id__": 901 + "__id__": 895 }, { - "__id__": 1031 + "__id__": 1025 }, { - "__id__": 1067 + "__id__": 1061 }, { - "__id__": 1157 + "__id__": 1151 } ], "_active": true, "_components": [ { - "__id__": 1166 + "__id__": 1160 }, { - "__id__": 1168 + "__id__": 1162 }, { - "__id__": 1170 + "__id__": 1164 } ], "_prefab": { - "__id__": 1186 + "__id__": 1180 }, "_lpos": { "__type__": "cc.Vec3", @@ -13824,24 +13659,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 662 + "__id__": 656 }, "_children": [ { - "__id__": 664 + "__id__": 658 }, { - "__id__": 704 + "__id__": 698 } ], "_active": true, "_components": [ { - "__id__": 756 + "__id__": 750 } ], "_prefab": { - "__id__": 758 + "__id__": 752 }, "_lpos": { "__type__": "cc.Vec3", @@ -13878,27 +13713,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 657 }, "_children": [ { - "__id__": 665 + "__id__": 659 }, { - "__id__": 677 + "__id__": 671 }, { - "__id__": 689 + "__id__": 683 } ], "_active": true, "_components": [ { - "__id__": 701 + "__id__": 695 } ], "_prefab": { - "__id__": 703 + "__id__": 697 }, "_lpos": { "__type__": "cc.Vec3", @@ -13935,24 +13770,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 658 }, "_children": [ { - "__id__": 666 + "__id__": 660 } ], "_active": true, "_components": [ { - "__id__": 672 + "__id__": 666 }, { - "__id__": 674 + "__id__": 668 } ], "_prefab": { - "__id__": 676 + "__id__": 670 }, "_lpos": { "__type__": "cc.Vec3", @@ -13989,20 +13824,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 665 + "__id__": 659 }, "_children": [], "_active": true, "_components": [ { - "__id__": 667 + "__id__": 661 }, { - "__id__": 669 + "__id__": 663 } ], "_prefab": { - "__id__": 671 + "__id__": 665 }, "_lpos": { "__type__": "cc.Vec3", @@ -14039,11 +13874,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 666 + "__id__": 660 }, "_enabled": true, "__prefab": { - "__id__": 668 + "__id__": 662 }, "_contentSize": { "__type__": "cc.Size", @@ -14067,11 +13902,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 666 + "__id__": 660 }, "_enabled": true, "__prefab": { - "__id__": 670 + "__id__": 664 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14125,11 +13960,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 665 + "__id__": 659 }, "_enabled": true, "__prefab": { - "__id__": 673 + "__id__": 667 }, "_contentSize": { "__type__": "cc.Size", @@ -14153,11 +13988,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 665 + "__id__": 659 }, "_enabled": true, "__prefab": { - "__id__": 675 + "__id__": 669 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14211,24 +14046,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 658 }, "_children": [ { - "__id__": 678 + "__id__": 672 } ], "_active": true, "_components": [ { - "__id__": 684 + "__id__": 678 }, { - "__id__": 686 + "__id__": 680 } ], "_prefab": { - "__id__": 688 + "__id__": 682 }, "_lpos": { "__type__": "cc.Vec3", @@ -14265,20 +14100,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 677 + "__id__": 671 }, "_children": [], "_active": true, "_components": [ { - "__id__": 679 + "__id__": 673 }, { - "__id__": 681 + "__id__": 675 } ], "_prefab": { - "__id__": 683 + "__id__": 677 }, "_lpos": { "__type__": "cc.Vec3", @@ -14315,11 +14150,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 678 + "__id__": 672 }, "_enabled": true, "__prefab": { - "__id__": 680 + "__id__": 674 }, "_contentSize": { "__type__": "cc.Size", @@ -14343,11 +14178,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 678 + "__id__": 672 }, "_enabled": true, "__prefab": { - "__id__": 682 + "__id__": 676 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14401,11 +14236,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 677 + "__id__": 671 }, "_enabled": true, "__prefab": { - "__id__": 685 + "__id__": 679 }, "_contentSize": { "__type__": "cc.Size", @@ -14429,11 +14264,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 677 + "__id__": 671 }, "_enabled": true, "__prefab": { - "__id__": 687 + "__id__": 681 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14487,24 +14322,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 664 + "__id__": 658 }, "_children": [ { - "__id__": 690 + "__id__": 684 } ], "_active": true, "_components": [ { - "__id__": 696 + "__id__": 690 }, { - "__id__": 698 + "__id__": 692 } ], "_prefab": { - "__id__": 700 + "__id__": 694 }, "_lpos": { "__type__": "cc.Vec3", @@ -14541,20 +14376,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 689 + "__id__": 683 }, "_children": [], "_active": true, "_components": [ { - "__id__": 691 + "__id__": 685 }, { - "__id__": 693 + "__id__": 687 } ], "_prefab": { - "__id__": 695 + "__id__": 689 }, "_lpos": { "__type__": "cc.Vec3", @@ -14591,11 +14426,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 690 + "__id__": 684 }, "_enabled": true, "__prefab": { - "__id__": 692 + "__id__": 686 }, "_contentSize": { "__type__": "cc.Size", @@ -14619,11 +14454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 690 + "__id__": 684 }, "_enabled": true, "__prefab": { - "__id__": 694 + "__id__": 688 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14677,11 +14512,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 689 + "__id__": 683 }, "_enabled": true, "__prefab": { - "__id__": 697 + "__id__": 691 }, "_contentSize": { "__type__": "cc.Size", @@ -14705,11 +14540,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 689 + "__id__": 683 }, "_enabled": true, "__prefab": { - "__id__": 699 + "__id__": 693 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14763,11 +14598,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 664 + "__id__": 658 }, "_enabled": true, "__prefab": { - "__id__": 702 + "__id__": 696 }, "_contentSize": { "__type__": "cc.Size", @@ -14804,36 +14639,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 663 + "__id__": 657 }, "_children": [ { - "__id__": 705 + "__id__": 699 }, { - "__id__": 715 + "__id__": 709 }, { - "__id__": 725 + "__id__": 719 + }, + { + "__id__": 729 }, { "__id__": 735 }, { "__id__": 741 - }, - { - "__id__": 747 } ], "_active": true, "_components": [ { - "__id__": 753 + "__id__": 747 } ], "_prefab": { - "__id__": 755 + "__id__": 749 }, "_lpos": { "__type__": "cc.Vec3", @@ -14870,26 +14705,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 698 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 700 + }, + { + "__id__": 702 + }, + { + "__id__": 704 + }, { "__id__": 706 - }, - { - "__id__": 708 - }, - { - "__id__": 710 - }, - { - "__id__": 712 } ], "_prefab": { - "__id__": 714 + "__id__": 708 }, "_lpos": { "__type__": "cc.Vec3", @@ -14926,11 +14761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 699 }, "_enabled": true, "__prefab": { - "__id__": 707 + "__id__": 701 }, "_contentSize": { "__type__": "cc.Size", @@ -14954,11 +14789,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 699 }, "_enabled": true, "__prefab": { - "__id__": 709 + "__id__": 703 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15025,11 +14860,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 699 }, "_enabled": true, "__prefab": { - "__id__": 711 + "__id__": 705 }, "key": "AID_MAIN_SHOW_BALANCE", "_id": "" @@ -15044,11 +14879,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 705 + "__id__": 699 }, "_enabled": true, "__prefab": { - "__id__": 713 + "__id__": 707 }, "isBold": true, "fontOther": { @@ -15100,26 +14935,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 698 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 710 + }, + { + "__id__": 712 + }, + { + "__id__": 714 + }, { "__id__": 716 - }, - { - "__id__": 718 - }, - { - "__id__": 720 - }, - { - "__id__": 722 } ], "_prefab": { - "__id__": 724 + "__id__": 718 }, "_lpos": { "__type__": "cc.Vec3", @@ -15156,11 +14991,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 709 }, "_enabled": true, "__prefab": { - "__id__": 717 + "__id__": 711 }, "_contentSize": { "__type__": "cc.Size", @@ -15184,11 +15019,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 709 }, "_enabled": true, "__prefab": { - "__id__": 719 + "__id__": 713 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15255,11 +15090,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 709 }, "_enabled": true, "__prefab": { - "__id__": 721 + "__id__": 715 }, "key": "AID_MAIN_SHOW_BET", "_id": "" @@ -15274,11 +15109,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 709 }, "_enabled": true, "__prefab": { - "__id__": 723 + "__id__": 717 }, "isBold": true, "fontOther": { @@ -15330,26 +15165,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 698 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 720 + }, + { + "__id__": 722 + }, + { + "__id__": 724 + }, { "__id__": 726 - }, - { - "__id__": 728 - }, - { - "__id__": 730 - }, - { - "__id__": 732 } ], "_prefab": { - "__id__": 734 + "__id__": 728 }, "_lpos": { "__type__": "cc.Vec3", @@ -15386,11 +15221,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 727 + "__id__": 721 }, "_contentSize": { "__type__": "cc.Size", @@ -15414,11 +15249,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 729 + "__id__": 723 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15485,11 +15320,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 731 + "__id__": 725 }, "key": "AID_MAIN_SHOW_WIN", "_id": "" @@ -15504,11 +15339,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 725 + "__id__": 719 }, "_enabled": true, "__prefab": { - "__id__": 733 + "__id__": 727 }, "isBold": true, "fontOther": { @@ -15560,20 +15395,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 698 }, "_children": [], "_active": true, "_components": [ { - "__id__": 736 + "__id__": 730 }, { - "__id__": 738 + "__id__": 732 } ], "_prefab": { - "__id__": 740 + "__id__": 734 }, "_lpos": { "__type__": "cc.Vec3", @@ -15610,11 +15445,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 735 + "__id__": 729 }, "_enabled": true, "__prefab": { - "__id__": 737 + "__id__": 731 }, "_contentSize": { "__type__": "cc.Size", @@ -15638,11 +15473,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 735 + "__id__": 729 }, "_enabled": true, "__prefab": { - "__id__": 739 + "__id__": 733 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15722,20 +15557,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 698 }, "_children": [], "_active": true, "_components": [ { - "__id__": 742 + "__id__": 736 }, { - "__id__": 744 + "__id__": 738 } ], "_prefab": { - "__id__": 746 + "__id__": 740 }, "_lpos": { "__type__": "cc.Vec3", @@ -15772,11 +15607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 741 + "__id__": 735 }, "_enabled": true, "__prefab": { - "__id__": 743 + "__id__": 737 }, "_contentSize": { "__type__": "cc.Size", @@ -15800,11 +15635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 741 + "__id__": 735 }, "_enabled": true, "__prefab": { - "__id__": 745 + "__id__": 739 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15884,20 +15719,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 704 + "__id__": 698 }, "_children": [], "_active": true, "_components": [ { - "__id__": 748 + "__id__": 742 }, { - "__id__": 750 + "__id__": 744 } ], "_prefab": { - "__id__": 752 + "__id__": 746 }, "_lpos": { "__type__": "cc.Vec3", @@ -15934,11 +15769,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 747 + "__id__": 741 }, "_enabled": true, "__prefab": { - "__id__": 749 + "__id__": 743 }, "_contentSize": { "__type__": "cc.Size", @@ -15962,11 +15797,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 747 + "__id__": 741 }, "_enabled": true, "__prefab": { - "__id__": 751 + "__id__": 745 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16046,11 +15881,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 704 + "__id__": 698 }, "_enabled": true, "__prefab": { - "__id__": 754 + "__id__": 748 }, "_contentSize": { "__type__": "cc.Size", @@ -16087,11 +15922,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 663 + "__id__": 657 }, "_enabled": true, "__prefab": { - "__id__": 757 + "__id__": 751 }, "_contentSize": { "__type__": "cc.Size", @@ -16128,45 +15963,45 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 662 + "__id__": 656 }, "_children": [ { - "__id__": 760 + "__id__": 754 }, { - "__id__": 787 + "__id__": 781 }, { - "__id__": 802 + "__id__": 796 }, { - "__id__": 813 + "__id__": 807 }, { - "__id__": 824 + "__id__": 818 }, { - "__id__": 839 + "__id__": 833 }, { - "__id__": 854 + "__id__": 848 }, { - "__id__": 869 + "__id__": 863 } ], "_active": true, "_components": [ { - "__id__": 896 + "__id__": 890 }, { - "__id__": 898 + "__id__": 892 } ], "_prefab": { - "__id__": 900 + "__id__": 894 }, "_lpos": { "__type__": "cc.Vec3", @@ -16203,30 +16038,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 759 + "__id__": 753 }, "_children": [ { - "__id__": 761 + "__id__": 755 }, { - "__id__": 767 + "__id__": 761 } ], "_active": true, "_components": [ { - "__id__": 779 + "__id__": 773 }, { - "__id__": 781 + "__id__": 775 }, { - "__id__": 784 + "__id__": 778 } ], "_prefab": { - "__id__": 786 + "__id__": 780 }, "_lpos": { "__type__": "cc.Vec3", @@ -16263,20 +16098,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 760 + "__id__": 754 }, "_children": [], "_active": false, "_components": [ { - "__id__": 762 + "__id__": 756 }, { - "__id__": 764 + "__id__": 758 } ], "_prefab": { - "__id__": 766 + "__id__": 760 }, "_lpos": { "__type__": "cc.Vec3", @@ -16313,11 +16148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 761 + "__id__": 755 }, "_enabled": true, "__prefab": { - "__id__": 763 + "__id__": 757 }, "_contentSize": { "__type__": "cc.Size", @@ -16341,11 +16176,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 761 + "__id__": 755 }, "_enabled": true, "__prefab": { - "__id__": 765 + "__id__": 759 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16399,24 +16234,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 760 + "__id__": 754 }, "_children": [ { - "__id__": 768 + "__id__": 762 } ], "_active": true, "_components": [ { - "__id__": 774 + "__id__": 768 }, { - "__id__": 776 + "__id__": 770 } ], "_prefab": { - "__id__": 778 + "__id__": 772 }, "_lpos": { "__type__": "cc.Vec3", @@ -16453,20 +16288,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 767 + "__id__": 761 }, "_children": [], "_active": true, "_components": [ { - "__id__": 769 + "__id__": 763 }, { - "__id__": 771 + "__id__": 765 } ], "_prefab": { - "__id__": 773 + "__id__": 767 }, "_lpos": { "__type__": "cc.Vec3", @@ -16503,11 +16338,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 762 }, "_enabled": true, "__prefab": { - "__id__": 770 + "__id__": 764 }, "_contentSize": { "__type__": "cc.Size", @@ -16531,11 +16366,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 762 }, "_enabled": true, "__prefab": { - "__id__": 772 + "__id__": 766 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16589,11 +16424,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 761 }, "_enabled": true, "__prefab": { - "__id__": 775 + "__id__": 769 }, "_contentSize": { "__type__": "cc.Size", @@ -16617,11 +16452,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 767 + "__id__": 761 }, "_enabled": true, "__prefab": { - "__id__": 777 + "__id__": 771 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16675,11 +16510,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 760 + "__id__": 754 }, "_enabled": true, "__prefab": { - "__id__": 780 + "__id__": 774 }, "_contentSize": { "__type__": "cc.Size", @@ -16703,15 +16538,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 760 + "__id__": 754 }, "_enabled": true, "__prefab": { - "__id__": 782 + "__id__": 776 }, "clickEvents": [ { - "__id__": 783 + "__id__": 777 } ], "_interactable": true, @@ -16763,7 +16598,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 760 + "__id__": 754 }, "_id": "" }, @@ -16774,7 +16609,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -16787,11 +16622,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 760 + "__id__": 754 }, "_enabled": true, "__prefab": { - "__id__": 785 + "__id__": 779 }, "_opacity": 255, "_id": "" @@ -16819,27 +16654,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 759 + "__id__": 753 }, "_children": [ { - "__id__": 788 + "__id__": 782 } ], "_active": false, "_components": [ { - "__id__": 794 + "__id__": 788 }, { - "__id__": 796 + "__id__": 790 }, { - "__id__": 798 + "__id__": 792 } ], "_prefab": { - "__id__": 801 + "__id__": 795 }, "_lpos": { "__type__": "cc.Vec3", @@ -16876,20 +16711,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 787 + "__id__": 781 }, "_children": [], "_active": true, "_components": [ { - "__id__": 789 + "__id__": 783 }, { - "__id__": 791 + "__id__": 785 } ], "_prefab": { - "__id__": 793 + "__id__": 787 }, "_lpos": { "__type__": "cc.Vec3", @@ -16926,11 +16761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 788 + "__id__": 782 }, "_enabled": true, "__prefab": { - "__id__": 790 + "__id__": 784 }, "_contentSize": { "__type__": "cc.Size", @@ -16954,11 +16789,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 788 + "__id__": 782 }, "_enabled": true, "__prefab": { - "__id__": 792 + "__id__": 786 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17038,11 +16873,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 787 + "__id__": 781 }, "_enabled": true, "__prefab": { - "__id__": 795 + "__id__": 789 }, "_contentSize": { "__type__": "cc.Size", @@ -17066,11 +16901,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 787 + "__id__": 781 }, "_enabled": true, "__prefab": { - "__id__": 797 + "__id__": 791 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17111,15 +16946,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 787 + "__id__": 781 }, "_enabled": true, "__prefab": { - "__id__": 799 + "__id__": 793 }, "clickEvents": [ { - "__id__": 800 + "__id__": 794 } ], "_interactable": true, @@ -17168,7 +17003,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17194,26 +17029,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 759 + "__id__": 753 }, "_children": [], "_active": true, "_components": [ { - "__id__": 803 + "__id__": 797 }, { - "__id__": 805 + "__id__": 799 }, { - "__id__": 807 + "__id__": 801 }, { - "__id__": 810 + "__id__": 804 } ], "_prefab": { - "__id__": 812 + "__id__": 806 }, "_lpos": { "__type__": "cc.Vec3", @@ -17250,11 +17085,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 796 }, "_enabled": true, "__prefab": { - "__id__": 804 + "__id__": 798 }, "_contentSize": { "__type__": "cc.Size", @@ -17278,11 +17113,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 796 }, "_enabled": true, "__prefab": { - "__id__": 806 + "__id__": 800 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17323,15 +17158,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 796 }, "_enabled": true, "__prefab": { - "__id__": 808 + "__id__": 802 }, "clickEvents": [ { - "__id__": 809 + "__id__": 803 } ], "_interactable": true, @@ -17380,7 +17215,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17393,11 +17228,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 802 + "__id__": 796 }, "_enabled": true, "__prefab": { - "__id__": 811 + "__id__": 805 }, "_opacity": 255, "_id": "" @@ -17425,26 +17260,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 759 + "__id__": 753 }, "_children": [], "_active": true, "_components": [ { - "__id__": 814 + "__id__": 808 }, { - "__id__": 816 + "__id__": 810 }, { - "__id__": 818 + "__id__": 812 }, { - "__id__": 821 + "__id__": 815 } ], "_prefab": { - "__id__": 823 + "__id__": 817 }, "_lpos": { "__type__": "cc.Vec3", @@ -17481,11 +17316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 807 }, "_enabled": true, "__prefab": { - "__id__": 815 + "__id__": 809 }, "_contentSize": { "__type__": "cc.Size", @@ -17509,11 +17344,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 807 }, "_enabled": true, "__prefab": { - "__id__": 817 + "__id__": 811 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17554,15 +17389,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 807 }, "_enabled": true, "__prefab": { - "__id__": 819 + "__id__": 813 }, "clickEvents": [ { - "__id__": 820 + "__id__": 814 } ], "_interactable": true, @@ -17611,7 +17446,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17624,11 +17459,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 807 }, "_enabled": true, "__prefab": { - "__id__": 822 + "__id__": 816 }, "_opacity": 255, "_id": "" @@ -17656,27 +17491,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 759 + "__id__": 753 }, "_children": [ { - "__id__": 825 + "__id__": 819 } ], "_active": true, "_components": [ { - "__id__": 831 + "__id__": 825 }, { - "__id__": 833 + "__id__": 827 }, { - "__id__": 836 + "__id__": 830 } ], "_prefab": { - "__id__": 838 + "__id__": 832 }, "_lpos": { "__type__": "cc.Vec3", @@ -17713,20 +17548,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 824 + "__id__": 818 }, "_children": [], "_active": true, "_components": [ { - "__id__": 826 + "__id__": 820 }, { - "__id__": 828 + "__id__": 822 } ], "_prefab": { - "__id__": 830 + "__id__": 824 }, "_lpos": { "__type__": "cc.Vec3", @@ -17763,11 +17598,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 825 + "__id__": 819 }, "_enabled": true, "__prefab": { - "__id__": 827 + "__id__": 821 }, "_contentSize": { "__type__": "cc.Size", @@ -17791,11 +17626,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 825 + "__id__": 819 }, "_enabled": true, "__prefab": { - "__id__": 829 + "__id__": 823 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17849,11 +17684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 824 + "__id__": 818 }, "_enabled": true, "__prefab": { - "__id__": 832 + "__id__": 826 }, "_contentSize": { "__type__": "cc.Size", @@ -17877,15 +17712,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 824 + "__id__": 818 }, "_enabled": true, "__prefab": { - "__id__": 834 + "__id__": 828 }, "clickEvents": [ { - "__id__": 835 + "__id__": 829 } ], "_interactable": true, @@ -17934,7 +17769,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17947,11 +17782,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 824 + "__id__": 818 }, "_enabled": true, "__prefab": { - "__id__": 837 + "__id__": 831 }, "_opacity": 255, "_id": "" @@ -17977,17 +17812,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 759 + "__id__": 753 }, "_prefab": { - "__id__": 840 + "__id__": 834 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 839 + "__id__": 833 }, "asset": { "__uuid__": "5f59d76b-2bb8-429d-88ff-59ca11f5cc86", @@ -17995,7 +17830,7 @@ }, "fileId": "4bE1J8xTZFH7iCEqkhoCQD", "instance": { - "__id__": 841 + "__id__": 835 }, "targetOverrides": null }, @@ -18009,28 +17844,28 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 842 + "__id__": 836 }, { - "__id__": 844 + "__id__": 838 + }, + { + "__id__": 839 + }, + { + "__id__": 840 + }, + { + "__id__": 841 + }, + { + "__id__": 843 }, { "__id__": 845 }, { "__id__": 846 - }, - { - "__id__": 847 - }, - { - "__id__": 849 - }, - { - "__id__": 851 - }, - { - "__id__": 852 } ], "removedComponents": [] @@ -18038,7 +17873,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 843 + "__id__": 837 }, "propertyPath": [ "_name" @@ -18054,7 +17889,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 843 + "__id__": 837 }, "propertyPath": [ "_lpos" @@ -18069,7 +17904,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 843 + "__id__": 837 }, "propertyPath": [ "_lrot" @@ -18085,7 +17920,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 843 + "__id__": 837 }, "propertyPath": [ "_euler" @@ -18100,7 +17935,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 848 + "__id__": 842 }, "propertyPath": [ "clickEvents", @@ -18117,20 +17952,20 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 848 + "__id__": 842 }, "propertyPath": [ "clickEvents", "0" ], "value": { - "__id__": 850 + "__id__": 844 } }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18140,19 +17975,19 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 848 + "__id__": 842 }, "propertyPath": [ "_target" ], "value": { - "__id__": 839 + "__id__": 833 } }, { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 853 + "__id__": 847 }, "propertyPath": [ "_defaultClip" @@ -18172,17 +18007,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 759 + "__id__": 753 }, "_prefab": { - "__id__": 855 + "__id__": 849 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 854 + "__id__": 848 }, "asset": { "__uuid__": "b4e13e9b-1ee9-4811-8216-79bd4eeec776", @@ -18190,7 +18025,7 @@ }, "fileId": "a3vI+eIBhPnLnuNgWtjMLe", "instance": { - "__id__": 856 + "__id__": 850 }, "targetOverrides": null }, @@ -18204,28 +18039,28 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 857 + "__id__": 851 }, { - "__id__": 859 + "__id__": 853 + }, + { + "__id__": 854 + }, + { + "__id__": 855 + }, + { + "__id__": 856 + }, + { + "__id__": 858 }, { "__id__": 860 }, { "__id__": 861 - }, - { - "__id__": 862 - }, - { - "__id__": 864 - }, - { - "__id__": 866 - }, - { - "__id__": 867 } ], "removedComponents": [] @@ -18233,7 +18068,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 858 + "__id__": 852 }, "propertyPath": [ "_name" @@ -18249,7 +18084,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 858 + "__id__": 852 }, "propertyPath": [ "_lpos" @@ -18264,7 +18099,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 858 + "__id__": 852 }, "propertyPath": [ "_lrot" @@ -18280,7 +18115,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 858 + "__id__": 852 }, "propertyPath": [ "_euler" @@ -18295,7 +18130,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 863 + "__id__": 857 }, "propertyPath": [ "clickEvents", @@ -18312,20 +18147,20 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 863 + "__id__": 857 }, "propertyPath": [ "clickEvents", "0" ], "value": { - "__id__": 865 + "__id__": 859 } }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18335,19 +18170,19 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 863 + "__id__": 857 }, "propertyPath": [ "_target" ], "value": { - "__id__": 854 + "__id__": 848 } }, { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 868 + "__id__": 862 }, "propertyPath": [ "_defaultClip" @@ -18369,33 +18204,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 759 + "__id__": 753 }, "_children": [ + { + "__id__": 864 + }, { "__id__": 870 }, { "__id__": 876 - }, - { - "__id__": 882 } ], "_active": true, "_components": [ { - "__id__": 888 + "__id__": 882 }, { - "__id__": 890 + "__id__": 884 }, { - "__id__": 893 + "__id__": 887 } ], "_prefab": { - "__id__": 895 + "__id__": 889 }, "_lpos": { "__type__": "cc.Vec3", @@ -18432,10 +18267,146 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 869 + "__id__": 863 }, "_children": [], "_active": true, + "_components": [ + { + "__id__": 865 + }, + { + "__id__": 867 + } + ], + "_prefab": { + "__id__": 869 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 864 + }, + "_enabled": true, + "__prefab": { + "__id__": 866 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 47 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5aQJc5hQtPH5wegpCoFjsg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 864 + }, + "_enabled": true, + "__prefab": { + "__id__": 868 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 246, + "b": 187, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "31a15ac8-4248-4724-b78f-b1fcff0617c1@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "54ZVjHcF1D27HMcJyO7box" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5cdbK/en1N/o124vPvpM0F", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "IconDifficulty2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 863 + }, + "_children": [], + "_active": false, "_components": [ { "__id__": 871 @@ -18502,7 +18473,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "5aQJc5hQtPH5wegpCoFjsg" + "fileId": "ccBW9AQfVNuJEFnTCeou35" }, { "__type__": "cc.Sprite", @@ -18527,7 +18498,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "31a15ac8-4248-4724-b78f-b1fcff0617c1@f9941", + "__uuid__": "84253048-0179-445c-9ef4-8324a9b6a17c@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -18547,7 +18518,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "54ZVjHcF1D27HMcJyO7box" + "fileId": "04tMK9ZxFBSp1Ty8qBrZPi" }, { "__type__": "cc.PrefabInfo", @@ -18557,18 +18528,18 @@ "asset": { "__id__": 0 }, - "fileId": "5cdbK/en1N/o124vPvpM0F", + "fileId": "52tUBtdIxMD7sq8rRmJ/lD", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "IconDifficulty2", + "_name": "IconDifficulty3", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 869 + "__id__": 863 }, "_children": [], "_active": false, @@ -18638,7 +18609,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "ccBW9AQfVNuJEFnTCeou35" + "fileId": "e4CRhqZGBGzqxJBQdlvSBZ" }, { "__type__": "cc.Sprite", @@ -18662,142 +18633,6 @@ "b": 187, "a": 255 }, - "_spriteFrame": { - "__uuid__": "84253048-0179-445c-9ef4-8324a9b6a17c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "04tMK9ZxFBSp1Ty8qBrZPi" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "52tUBtdIxMD7sq8rRmJ/lD", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "IconDifficulty3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 869 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 883 - }, - { - "__id__": 885 - } - ], - "_prefab": { - "__id__": 887 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 882 - }, - "_enabled": true, - "__prefab": { - "__id__": 884 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 70, - "height": 47 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e4CRhqZGBGzqxJBQdlvSBZ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 882 - }, - "_enabled": true, - "__prefab": { - "__id__": 886 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 246, - "b": 187, - "a": 255 - }, "_spriteFrame": { "__uuid__": "5b575db7-d48c-4cec-8683-66b2ee63a4d1@f9941", "__expectedType__": "cc.SpriteFrame" @@ -18840,11 +18675,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 869 + "__id__": 863 }, "_enabled": true, "__prefab": { - "__id__": 889 + "__id__": 883 }, "_contentSize": { "__type__": "cc.Size", @@ -18868,15 +18703,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 869 + "__id__": 863 }, "_enabled": true, "__prefab": { - "__id__": 891 + "__id__": 885 }, "clickEvents": [ { - "__id__": 892 + "__id__": 886 } ], "_interactable": true, @@ -18938,11 +18773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 869 + "__id__": 863 }, "_enabled": true, "__prefab": { - "__id__": 894 + "__id__": 888 }, "_opacity": 255, "_id": "" @@ -18970,11 +18805,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 759 + "__id__": 753 }, "_enabled": true, "__prefab": { - "__id__": 897 + "__id__": 891 }, "_contentSize": { "__type__": "cc.Size", @@ -18998,11 +18833,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 759 + "__id__": 753 }, "_enabled": true, "__prefab": { - "__id__": 899 + "__id__": 893 }, "_opacity": 255, "_id": "" @@ -19030,39 +18865,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 662 + "__id__": 656 }, "_children": [ { - "__id__": 902 + "__id__": 896 }, { - "__id__": 921 + "__id__": 915 }, { - "__id__": 950 + "__id__": 944 }, { - "__id__": 969 + "__id__": 963 }, { - "__id__": 988 + "__id__": 982 }, { - "__id__": 1007 + "__id__": 1001 } ], "_active": false, "_components": [ { - "__id__": 1026 + "__id__": 1020 }, { - "__id__": 1028 + "__id__": 1022 } ], "_prefab": { - "__id__": 1030 + "__id__": 1024 }, "_lpos": { "__type__": "cc.Vec3", @@ -19099,27 +18934,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 901 + "__id__": 895 }, "_children": [ { - "__id__": 903 + "__id__": 897 } ], "_active": true, "_components": [ { - "__id__": 913 + "__id__": 907 }, { - "__id__": 915 + "__id__": 909 }, { - "__id__": 917 + "__id__": 911 } ], "_prefab": { - "__id__": 920 + "__id__": 914 }, "_lpos": { "__type__": "cc.Vec3", @@ -19156,26 +18991,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 902 + "__id__": 896 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 898 + }, + { + "__id__": 900 + }, + { + "__id__": 902 + }, { "__id__": 904 - }, - { - "__id__": 906 - }, - { - "__id__": 908 - }, - { - "__id__": 910 } ], "_prefab": { - "__id__": 912 + "__id__": 906 }, "_lpos": { "__type__": "cc.Vec3", @@ -19212,11 +19047,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 897 }, "_enabled": true, "__prefab": { - "__id__": 905 + "__id__": 899 }, "_contentSize": { "__type__": "cc.Size", @@ -19240,11 +19075,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 897 }, "_enabled": true, "__prefab": { - "__id__": 907 + "__id__": 901 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19311,11 +19146,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 897 }, "_enabled": true, "__prefab": { - "__id__": 909 + "__id__": 903 }, "key": "AID_MAIN_OPERATE_QUIT", "_id": "" @@ -19330,11 +19165,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 903 + "__id__": 897 }, "_enabled": true, "__prefab": { - "__id__": 911 + "__id__": 905 }, "isBold": false, "fontOther": { @@ -19386,11 +19221,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 902 + "__id__": 896 }, "_enabled": true, "__prefab": { - "__id__": 914 + "__id__": 908 }, "_contentSize": { "__type__": "cc.Size", @@ -19414,11 +19249,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 902 + "__id__": 896 }, "_enabled": true, "__prefab": { - "__id__": 916 + "__id__": 910 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19459,15 +19294,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 902 + "__id__": 896 }, "_enabled": true, "__prefab": { - "__id__": 918 + "__id__": 912 }, "clickEvents": [ { - "__id__": 919 + "__id__": 913 } ], "_interactable": true, @@ -19516,7 +19351,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -19542,30 +19377,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 901 + "__id__": 895 }, "_children": [ + { + "__id__": 916 + }, { "__id__": 922 }, { "__id__": 928 - }, - { - "__id__": 934 } ], "_active": true, "_components": [ { - "__id__": 944 + "__id__": 938 }, { - "__id__": 946 + "__id__": 940 } ], "_prefab": { - "__id__": 949 + "__id__": 943 }, "_lpos": { "__type__": "cc.Vec3", @@ -19602,10 +19437,146 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 921 + "__id__": 915 }, "_children": [], "_active": true, + "_components": [ + { + "__id__": 917 + }, + { + "__id__": 919 + } + ], + "_prefab": { + "__id__": 921 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 916 + }, + "_enabled": true, + "__prefab": { + "__id__": 918 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 84, + "height": 82 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6bzeDoEflFmLMUkJ4SvEBC" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 916 + }, + "_enabled": true, + "__prefab": { + "__id__": 920 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 246, + "b": 187, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "21e74a46-2d92-4de1-a7a4-6664d9c4fb73@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a598epwrpALZfnTSo2Nsv9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "88yCbT5BhLgK39jJi+VwZz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Btn_SoundOFF_01", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 915 + }, + "_children": [], + "_active": false, "_components": [ { "__id__": 923 @@ -19658,142 +19629,6 @@ "__prefab": { "__id__": 924 }, - "_contentSize": { - "__type__": "cc.Size", - "width": 84, - "height": 82 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6bzeDoEflFmLMUkJ4SvEBC" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 922 - }, - "_enabled": true, - "__prefab": { - "__id__": 926 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 246, - "b": 187, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "21e74a46-2d92-4de1-a7a4-6664d9c4fb73@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a598epwrpALZfnTSo2Nsv9" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "88yCbT5BhLgK39jJi+VwZz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Btn_SoundOFF_01", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 921 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 929 - }, - { - "__id__": 931 - } - ], - "_prefab": { - "__id__": 933 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 928 - }, - "_enabled": true, - "__prefab": { - "__id__": 930 - }, "_contentSize": { "__type__": "cc.Size", "width": 87, @@ -19816,11 +19651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 928 + "__id__": 922 }, "_enabled": true, "__prefab": { - "__id__": 932 + "__id__": 926 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19874,26 +19709,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 921 + "__id__": 915 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 929 + }, + { + "__id__": 931 + }, + { + "__id__": 933 + }, { "__id__": 935 - }, - { - "__id__": 937 - }, - { - "__id__": 939 - }, - { - "__id__": 941 } ], "_prefab": { - "__id__": 943 + "__id__": 937 }, "_lpos": { "__type__": "cc.Vec3", @@ -19930,11 +19765,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 934 + "__id__": 928 }, "_enabled": true, "__prefab": { - "__id__": 936 + "__id__": 930 }, "_contentSize": { "__type__": "cc.Size", @@ -19958,11 +19793,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 934 + "__id__": 928 }, "_enabled": true, "__prefab": { - "__id__": 938 + "__id__": 932 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20029,11 +19864,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 934 + "__id__": 928 }, "_enabled": true, "__prefab": { - "__id__": 940 + "__id__": 934 }, "key": "AID_MAIN_OPERATE_SOUND", "_id": "" @@ -20048,11 +19883,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 934 + "__id__": 928 }, "_enabled": true, "__prefab": { - "__id__": 942 + "__id__": 936 }, "isBold": false, "fontOther": { @@ -20104,11 +19939,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 915 }, "_enabled": true, "__prefab": { - "__id__": 945 + "__id__": 939 }, "_contentSize": { "__type__": "cc.Size", @@ -20132,15 +19967,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 921 + "__id__": 915 }, "_enabled": true, "__prefab": { - "__id__": 947 + "__id__": 941 }, "clickEvents": [ { - "__id__": 948 + "__id__": 942 } ], "_interactable": true, @@ -20189,7 +20024,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -20215,27 +20050,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 901 + "__id__": 895 }, "_children": [ { - "__id__": 951 + "__id__": 945 } ], "_active": true, "_components": [ { - "__id__": 961 + "__id__": 955 }, { - "__id__": 963 + "__id__": 957 }, { - "__id__": 965 + "__id__": 959 } ], "_prefab": { - "__id__": 968 + "__id__": 962 }, "_lpos": { "__type__": "cc.Vec3", @@ -20272,26 +20107,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 950 + "__id__": 944 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 946 + }, + { + "__id__": 948 + }, + { + "__id__": 950 + }, { "__id__": 952 - }, - { - "__id__": 954 - }, - { - "__id__": 956 - }, - { - "__id__": 958 } ], "_prefab": { - "__id__": 960 + "__id__": 954 }, "_lpos": { "__type__": "cc.Vec3", @@ -20328,11 +20163,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 945 }, "_enabled": true, "__prefab": { - "__id__": 953 + "__id__": 947 }, "_contentSize": { "__type__": "cc.Size", @@ -20356,11 +20191,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 945 }, "_enabled": true, "__prefab": { - "__id__": 955 + "__id__": 949 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20427,11 +20262,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 945 }, "_enabled": true, "__prefab": { - "__id__": 957 + "__id__": 951 }, "key": "AID_MAIN_OPERATE_PAYTABLE", "_id": "" @@ -20446,11 +20281,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 945 }, "_enabled": true, "__prefab": { - "__id__": 959 + "__id__": 953 }, "isBold": false, "fontOther": { @@ -20502,11 +20337,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 950 + "__id__": 944 }, "_enabled": true, "__prefab": { - "__id__": 962 + "__id__": 956 }, "_contentSize": { "__type__": "cc.Size", @@ -20530,11 +20365,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 950 + "__id__": 944 }, "_enabled": true, "__prefab": { - "__id__": 964 + "__id__": 958 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20575,15 +20410,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 950 + "__id__": 944 }, "_enabled": true, "__prefab": { - "__id__": 966 + "__id__": 960 }, "clickEvents": [ { - "__id__": 967 + "__id__": 961 } ], "_interactable": true, @@ -20632,7 +20467,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -20658,27 +20493,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 901 + "__id__": 895 }, "_children": [ { - "__id__": 970 + "__id__": 964 } ], "_active": true, "_components": [ { - "__id__": 980 + "__id__": 974 }, { - "__id__": 982 + "__id__": 976 }, { - "__id__": 984 + "__id__": 978 } ], "_prefab": { - "__id__": 987 + "__id__": 981 }, "_lpos": { "__type__": "cc.Vec3", @@ -20715,26 +20550,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 969 + "__id__": 963 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 965 + }, + { + "__id__": 967 + }, + { + "__id__": 969 + }, { "__id__": 971 - }, - { - "__id__": 973 - }, - { - "__id__": 975 - }, - { - "__id__": 977 } ], "_prefab": { - "__id__": 979 + "__id__": 973 }, "_lpos": { "__type__": "cc.Vec3", @@ -20771,11 +20606,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 964 }, "_enabled": true, "__prefab": { - "__id__": 972 + "__id__": 966 }, "_contentSize": { "__type__": "cc.Size", @@ -20799,11 +20634,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 964 }, "_enabled": true, "__prefab": { - "__id__": 974 + "__id__": 968 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20870,11 +20705,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 964 }, "_enabled": true, "__prefab": { - "__id__": 976 + "__id__": 970 }, "key": "AID_MAIN_OPERATE_RULES", "_id": "" @@ -20889,11 +20724,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 970 + "__id__": 964 }, "_enabled": true, "__prefab": { - "__id__": 978 + "__id__": 972 }, "isBold": false, "fontOther": { @@ -20945,11 +20780,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 963 }, "_enabled": true, "__prefab": { - "__id__": 981 + "__id__": 975 }, "_contentSize": { "__type__": "cc.Size", @@ -20973,11 +20808,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 963 }, "_enabled": true, "__prefab": { - "__id__": 983 + "__id__": 977 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21018,15 +20853,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 969 + "__id__": 963 }, "_enabled": true, "__prefab": { - "__id__": 985 + "__id__": 979 }, "clickEvents": [ { - "__id__": 986 + "__id__": 980 } ], "_interactable": true, @@ -21075,7 +20910,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -21101,27 +20936,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 901 + "__id__": 895 }, "_children": [ { - "__id__": 989 + "__id__": 983 } ], "_active": true, "_components": [ { - "__id__": 999 + "__id__": 993 }, { - "__id__": 1001 + "__id__": 995 }, { - "__id__": 1003 + "__id__": 997 } ], "_prefab": { - "__id__": 1006 + "__id__": 1000 }, "_lpos": { "__type__": "cc.Vec3", @@ -21158,26 +20993,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 988 + "__id__": 982 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 984 + }, + { + "__id__": 986 + }, + { + "__id__": 988 + }, { "__id__": 990 - }, - { - "__id__": 992 - }, - { - "__id__": 994 - }, - { - "__id__": 996 } ], "_prefab": { - "__id__": 998 + "__id__": 992 }, "_lpos": { "__type__": "cc.Vec3", @@ -21214,11 +21049,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 983 }, "_enabled": true, "__prefab": { - "__id__": 991 + "__id__": 985 }, "_contentSize": { "__type__": "cc.Size", @@ -21242,11 +21077,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 983 }, "_enabled": true, "__prefab": { - "__id__": 993 + "__id__": 987 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21313,11 +21148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 983 }, "_enabled": true, "__prefab": { - "__id__": 995 + "__id__": 989 }, "key": "AID_MAIN_OPERATE_HISTORY", "_id": "" @@ -21332,11 +21167,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 989 + "__id__": 983 }, "_enabled": true, "__prefab": { - "__id__": 997 + "__id__": 991 }, "isBold": false, "fontOther": { @@ -21388,11 +21223,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 988 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 1000 + "__id__": 994 }, "_contentSize": { "__type__": "cc.Size", @@ -21416,11 +21251,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 988 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 1002 + "__id__": 996 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21461,15 +21296,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 988 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 1004 + "__id__": 998 }, "clickEvents": [ { - "__id__": 1005 + "__id__": 999 } ], "_interactable": true, @@ -21518,7 +21353,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -21544,27 +21379,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 901 + "__id__": 895 }, "_children": [ { - "__id__": 1008 + "__id__": 1002 } ], "_active": true, "_components": [ { - "__id__": 1018 + "__id__": 1012 }, { - "__id__": 1020 + "__id__": 1014 }, { - "__id__": 1022 + "__id__": 1016 } ], "_prefab": { - "__id__": 1025 + "__id__": 1019 }, "_lpos": { "__type__": "cc.Vec3", @@ -21601,26 +21436,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1007 + "__id__": 1001 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 1003 + }, + { + "__id__": 1005 + }, + { + "__id__": 1007 + }, { "__id__": 1009 - }, - { - "__id__": 1011 - }, - { - "__id__": 1013 - }, - { - "__id__": 1015 } ], "_prefab": { - "__id__": 1017 + "__id__": 1011 }, "_lpos": { "__type__": "cc.Vec3", @@ -21657,11 +21492,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 1002 }, "_enabled": true, "__prefab": { - "__id__": 1010 + "__id__": 1004 }, "_contentSize": { "__type__": "cc.Size", @@ -21685,11 +21520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 1002 }, "_enabled": true, "__prefab": { - "__id__": 1012 + "__id__": 1006 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21756,11 +21591,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 1002 }, "_enabled": true, "__prefab": { - "__id__": 1014 + "__id__": 1008 }, "key": "AID_MAIN_OPERATE_CLOSE", "_id": "" @@ -21775,11 +21610,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1008 + "__id__": 1002 }, "_enabled": true, "__prefab": { - "__id__": 1016 + "__id__": 1010 }, "isBold": false, "fontOther": { @@ -21831,11 +21666,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1007 + "__id__": 1001 }, "_enabled": true, "__prefab": { - "__id__": 1019 + "__id__": 1013 }, "_contentSize": { "__type__": "cc.Size", @@ -21859,11 +21694,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1007 + "__id__": 1001 }, "_enabled": true, "__prefab": { - "__id__": 1021 + "__id__": 1015 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21904,15 +21739,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1007 + "__id__": 1001 }, "_enabled": true, "__prefab": { - "__id__": 1023 + "__id__": 1017 }, "clickEvents": [ { - "__id__": 1024 + "__id__": 1018 } ], "_interactable": true, @@ -21961,7 +21796,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -21987,11 +21822,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 901 + "__id__": 895 }, "_enabled": true, "__prefab": { - "__id__": 1027 + "__id__": 1021 }, "_contentSize": { "__type__": "cc.Size", @@ -22015,11 +21850,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 901 + "__id__": 895 }, "_enabled": true, "__prefab": { - "__id__": 1029 + "__id__": 1023 }, "_opacity": 255, "_id": "" @@ -22047,24 +21882,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 662 + "__id__": 656 }, "_children": [ { - "__id__": 1032 + "__id__": 1026 }, { - "__id__": 1040 + "__id__": 1034 } ], "_active": false, "_components": [ { - "__id__": 1064 + "__id__": 1058 } ], "_prefab": { - "__id__": 1066 + "__id__": 1060 }, "_lpos": { "__type__": "cc.Vec3", @@ -22101,23 +21936,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1031 + "__id__": 1025 }, "_children": [], "_active": false, "_components": [ { - "__id__": 1033 + "__id__": 1027 }, { - "__id__": 1035 + "__id__": 1029 }, { - "__id__": 1037 + "__id__": 1031 } ], "_prefab": { - "__id__": 1039 + "__id__": 1033 }, "_lpos": { "__type__": "cc.Vec3", @@ -22154,11 +21989,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1032 + "__id__": 1026 }, "_enabled": true, "__prefab": { - "__id__": 1034 + "__id__": 1028 }, "_contentSize": { "__type__": "cc.Size", @@ -22182,11 +22017,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1032 + "__id__": 1026 }, "_enabled": true, "__prefab": { - "__id__": 1036 + "__id__": 1030 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22227,11 +22062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1032 + "__id__": 1026 }, "_enabled": true, "__prefab": { - "__id__": 1038 + "__id__": 1032 }, "spriteName": "Free1", "_id": "" @@ -22259,27 +22094,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1031 + "__id__": 1025 }, "_children": [ { - "__id__": 1041 + "__id__": 1035 + }, + { + "__id__": 1043 }, { "__id__": 1049 - }, - { - "__id__": 1055 } ], "_active": true, "_components": [ { - "__id__": 1061 + "__id__": 1055 } ], "_prefab": { - "__id__": 1063 + "__id__": 1057 }, "_lpos": { "__type__": "cc.Vec3", @@ -22316,23 +22151,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1040 + "__id__": 1034 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1042 + "__id__": 1036 }, { - "__id__": 1044 + "__id__": 1038 }, { - "__id__": 1046 + "__id__": 1040 } ], "_prefab": { - "__id__": 1048 + "__id__": 1042 }, "_lpos": { "__type__": "cc.Vec3", @@ -22369,11 +22204,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1041 + "__id__": 1035 }, "_enabled": true, "__prefab": { - "__id__": 1043 + "__id__": 1037 }, "_contentSize": { "__type__": "cc.Size", @@ -22397,11 +22232,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1041 + "__id__": 1035 }, "_enabled": true, "__prefab": { - "__id__": 1045 + "__id__": 1039 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22442,11 +22277,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1041 + "__id__": 1035 }, "_enabled": true, "__prefab": { - "__id__": 1047 + "__id__": 1041 }, "spriteName": "Free", "_id": "" @@ -22474,20 +22309,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1040 + "__id__": 1034 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1050 + "__id__": 1044 }, { - "__id__": 1052 + "__id__": 1046 } ], "_prefab": { - "__id__": 1054 + "__id__": 1048 }, "_lpos": { "__type__": "cc.Vec3", @@ -22524,11 +22359,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1049 + "__id__": 1043 }, "_enabled": true, "__prefab": { - "__id__": 1051 + "__id__": 1045 }, "_contentSize": { "__type__": "cc.Size", @@ -22552,11 +22387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1049 + "__id__": 1043 }, "_enabled": false, "__prefab": { - "__id__": 1053 + "__id__": 1047 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22610,20 +22445,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1040 + "__id__": 1034 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1056 + "__id__": 1050 }, { - "__id__": 1058 + "__id__": 1052 } ], "_prefab": { - "__id__": 1060 + "__id__": 1054 }, "_lpos": { "__type__": "cc.Vec3", @@ -22660,11 +22495,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1055 + "__id__": 1049 }, "_enabled": true, "__prefab": { - "__id__": 1057 + "__id__": 1051 }, "_contentSize": { "__type__": "cc.Size", @@ -22688,11 +22523,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1055 + "__id__": 1049 }, "_enabled": true, "__prefab": { - "__id__": 1059 + "__id__": 1053 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22772,11 +22607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1040 + "__id__": 1034 }, "_enabled": true, "__prefab": { - "__id__": 1062 + "__id__": 1056 }, "_contentSize": { "__type__": "cc.Size", @@ -22813,11 +22648,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1031 + "__id__": 1025 }, "_enabled": true, "__prefab": { - "__id__": 1065 + "__id__": 1059 }, "_contentSize": { "__type__": "cc.Size", @@ -22854,24 +22689,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 662 + "__id__": 656 }, "_children": [ { - "__id__": 1068 + "__id__": 1062 }, { - "__id__": 1108 + "__id__": 1102 } ], "_active": false, "_components": [ { - "__id__": 1154 + "__id__": 1148 } ], "_prefab": { - "__id__": 1156 + "__id__": 1150 }, "_lpos": { "__type__": "cc.Vec3", @@ -22908,27 +22743,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1067 + "__id__": 1061 }, "_children": [ { - "__id__": 1069 + "__id__": 1063 }, { - "__id__": 1081 + "__id__": 1075 }, { - "__id__": 1093 + "__id__": 1087 } ], "_active": true, "_components": [ { - "__id__": 1105 + "__id__": 1099 } ], "_prefab": { - "__id__": 1107 + "__id__": 1101 }, "_lpos": { "__type__": "cc.Vec3", @@ -22965,24 +22800,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1068 + "__id__": 1062 }, "_children": [ { - "__id__": 1070 + "__id__": 1064 } ], "_active": true, "_components": [ { - "__id__": 1076 + "__id__": 1070 }, { - "__id__": 1078 + "__id__": 1072 } ], "_prefab": { - "__id__": 1080 + "__id__": 1074 }, "_lpos": { "__type__": "cc.Vec3", @@ -23019,20 +22854,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1069 + "__id__": 1063 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1071 + "__id__": 1065 }, { - "__id__": 1073 + "__id__": 1067 } ], "_prefab": { - "__id__": 1075 + "__id__": 1069 }, "_lpos": { "__type__": "cc.Vec3", @@ -23069,11 +22904,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1070 + "__id__": 1064 }, "_enabled": true, "__prefab": { - "__id__": 1072 + "__id__": 1066 }, "_contentSize": { "__type__": "cc.Size", @@ -23097,11 +22932,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1070 + "__id__": 1064 }, "_enabled": true, "__prefab": { - "__id__": 1074 + "__id__": 1068 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23155,11 +22990,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1069 + "__id__": 1063 }, "_enabled": true, "__prefab": { - "__id__": 1077 + "__id__": 1071 }, "_contentSize": { "__type__": "cc.Size", @@ -23183,11 +23018,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1069 + "__id__": 1063 }, "_enabled": true, "__prefab": { - "__id__": 1079 + "__id__": 1073 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23241,24 +23076,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1068 + "__id__": 1062 }, "_children": [ { - "__id__": 1082 + "__id__": 1076 } ], "_active": true, "_components": [ { - "__id__": 1088 + "__id__": 1082 }, { - "__id__": 1090 + "__id__": 1084 } ], "_prefab": { - "__id__": 1092 + "__id__": 1086 }, "_lpos": { "__type__": "cc.Vec3", @@ -23295,20 +23130,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1081 + "__id__": 1075 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1083 + "__id__": 1077 }, { - "__id__": 1085 + "__id__": 1079 } ], "_prefab": { - "__id__": 1087 + "__id__": 1081 }, "_lpos": { "__type__": "cc.Vec3", @@ -23345,11 +23180,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1082 + "__id__": 1076 }, "_enabled": true, "__prefab": { - "__id__": 1084 + "__id__": 1078 }, "_contentSize": { "__type__": "cc.Size", @@ -23373,11 +23208,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1082 + "__id__": 1076 }, "_enabled": true, "__prefab": { - "__id__": 1086 + "__id__": 1080 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23431,11 +23266,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1081 + "__id__": 1075 }, "_enabled": true, "__prefab": { - "__id__": 1089 + "__id__": 1083 }, "_contentSize": { "__type__": "cc.Size", @@ -23459,11 +23294,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1081 + "__id__": 1075 }, "_enabled": true, "__prefab": { - "__id__": 1091 + "__id__": 1085 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23517,24 +23352,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1068 + "__id__": 1062 }, "_children": [ { - "__id__": 1094 + "__id__": 1088 } ], "_active": true, "_components": [ { - "__id__": 1100 + "__id__": 1094 }, { - "__id__": 1102 + "__id__": 1096 } ], "_prefab": { - "__id__": 1104 + "__id__": 1098 }, "_lpos": { "__type__": "cc.Vec3", @@ -23571,20 +23406,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1093 + "__id__": 1087 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1095 + "__id__": 1089 }, { - "__id__": 1097 + "__id__": 1091 } ], "_prefab": { - "__id__": 1099 + "__id__": 1093 }, "_lpos": { "__type__": "cc.Vec3", @@ -23621,11 +23456,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1094 + "__id__": 1088 }, "_enabled": true, "__prefab": { - "__id__": 1096 + "__id__": 1090 }, "_contentSize": { "__type__": "cc.Size", @@ -23649,11 +23484,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1094 + "__id__": 1088 }, "_enabled": true, "__prefab": { - "__id__": 1098 + "__id__": 1092 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23707,11 +23542,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1093 + "__id__": 1087 }, "_enabled": true, "__prefab": { - "__id__": 1101 + "__id__": 1095 }, "_contentSize": { "__type__": "cc.Size", @@ -23735,11 +23570,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1093 + "__id__": 1087 }, "_enabled": true, "__prefab": { - "__id__": 1103 + "__id__": 1097 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23793,11 +23628,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1068 + "__id__": 1062 }, "_enabled": true, "__prefab": { - "__id__": 1106 + "__id__": 1100 }, "_contentSize": { "__type__": "cc.Size", @@ -23834,36 +23669,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1067 + "__id__": 1061 }, "_children": [ { - "__id__": 1109 + "__id__": 1103 }, { - "__id__": 1117 + "__id__": 1111 }, { - "__id__": 1125 + "__id__": 1119 + }, + { + "__id__": 1127 }, { "__id__": 1133 }, { "__id__": 1139 - }, - { - "__id__": 1145 } ], "_active": true, "_components": [ { - "__id__": 1151 + "__id__": 1145 } ], "_prefab": { - "__id__": 1153 + "__id__": 1147 }, "_lpos": { "__type__": "cc.Vec3", @@ -23900,23 +23735,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1102 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1110 + "__id__": 1104 }, { - "__id__": 1112 + "__id__": 1106 }, { - "__id__": 1114 + "__id__": 1108 } ], "_prefab": { - "__id__": 1116 + "__id__": 1110 }, "_lpos": { "__type__": "cc.Vec3", @@ -23953,11 +23788,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1109 + "__id__": 1103 }, "_enabled": true, "__prefab": { - "__id__": 1111 + "__id__": 1105 }, "_contentSize": { "__type__": "cc.Size", @@ -23981,11 +23816,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1109 + "__id__": 1103 }, "_enabled": true, "__prefab": { - "__id__": 1113 + "__id__": 1107 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24052,11 +23887,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1109 + "__id__": 1103 }, "_enabled": true, "__prefab": { - "__id__": 1115 + "__id__": 1109 }, "key": "AID_MAIN_SHOW_BALANCE", "_id": "" @@ -24084,23 +23919,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1102 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1118 + "__id__": 1112 }, { - "__id__": 1120 + "__id__": 1114 }, { - "__id__": 1122 + "__id__": 1116 } ], "_prefab": { - "__id__": 1124 + "__id__": 1118 }, "_lpos": { "__type__": "cc.Vec3", @@ -24137,11 +23972,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1117 + "__id__": 1111 }, "_enabled": true, "__prefab": { - "__id__": 1119 + "__id__": 1113 }, "_contentSize": { "__type__": "cc.Size", @@ -24165,11 +24000,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1117 + "__id__": 1111 }, "_enabled": true, "__prefab": { - "__id__": 1121 + "__id__": 1115 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24236,11 +24071,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1117 + "__id__": 1111 }, "_enabled": true, "__prefab": { - "__id__": 1123 + "__id__": 1117 }, "key": "AID_MAIN_SHOW_BET", "_id": "" @@ -24268,23 +24103,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1102 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1126 + "__id__": 1120 }, { - "__id__": 1128 + "__id__": 1122 }, { - "__id__": 1130 + "__id__": 1124 } ], "_prefab": { - "__id__": 1132 + "__id__": 1126 }, "_lpos": { "__type__": "cc.Vec3", @@ -24321,11 +24156,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1125 + "__id__": 1119 }, "_enabled": true, "__prefab": { - "__id__": 1127 + "__id__": 1121 }, "_contentSize": { "__type__": "cc.Size", @@ -24349,11 +24184,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1125 + "__id__": 1119 }, "_enabled": true, "__prefab": { - "__id__": 1129 + "__id__": 1123 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24420,11 +24255,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1125 + "__id__": 1119 }, "_enabled": true, "__prefab": { - "__id__": 1131 + "__id__": 1125 }, "key": "AID_MAIN_SHOW_WIN", "_id": "" @@ -24452,20 +24287,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1102 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1134 + "__id__": 1128 }, { - "__id__": 1136 + "__id__": 1130 } ], "_prefab": { - "__id__": 1138 + "__id__": 1132 }, "_lpos": { "__type__": "cc.Vec3", @@ -24502,11 +24337,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1127 }, "_enabled": true, "__prefab": { - "__id__": 1135 + "__id__": 1129 }, "_contentSize": { "__type__": "cc.Size", @@ -24530,11 +24365,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1133 + "__id__": 1127 }, "_enabled": true, "__prefab": { - "__id__": 1137 + "__id__": 1131 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24614,20 +24449,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1102 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1140 + "__id__": 1134 }, { - "__id__": 1142 + "__id__": 1136 } ], "_prefab": { - "__id__": 1144 + "__id__": 1138 }, "_lpos": { "__type__": "cc.Vec3", @@ -24664,11 +24499,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1139 + "__id__": 1133 }, "_enabled": true, "__prefab": { - "__id__": 1141 + "__id__": 1135 }, "_contentSize": { "__type__": "cc.Size", @@ -24692,11 +24527,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1139 + "__id__": 1133 }, "_enabled": true, "__prefab": { - "__id__": 1143 + "__id__": 1137 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24776,20 +24611,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1108 + "__id__": 1102 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1146 + "__id__": 1140 }, { - "__id__": 1148 + "__id__": 1142 } ], "_prefab": { - "__id__": 1150 + "__id__": 1144 }, "_lpos": { "__type__": "cc.Vec3", @@ -24826,11 +24661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1145 + "__id__": 1139 }, "_enabled": true, "__prefab": { - "__id__": 1147 + "__id__": 1141 }, "_contentSize": { "__type__": "cc.Size", @@ -24854,11 +24689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1145 + "__id__": 1139 }, "_enabled": true, "__prefab": { - "__id__": 1149 + "__id__": 1143 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -24938,11 +24773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1108 + "__id__": 1102 }, "_enabled": true, "__prefab": { - "__id__": 1152 + "__id__": 1146 }, "_contentSize": { "__type__": "cc.Size", @@ -24979,11 +24814,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1067 + "__id__": 1061 }, "_enabled": true, "__prefab": { - "__id__": 1155 + "__id__": 1149 }, "_contentSize": { "__type__": "cc.Size", @@ -25020,23 +24855,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 662 + "__id__": 656 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1158 + "__id__": 1152 }, { - "__id__": 1160 + "__id__": 1154 }, { - "__id__": 1163 + "__id__": 1157 } ], "_prefab": { - "__id__": 1165 + "__id__": 1159 }, "_lpos": { "__type__": "cc.Vec3", @@ -25073,11 +24908,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1157 + "__id__": 1151 }, "_enabled": true, "__prefab": { - "__id__": 1159 + "__id__": 1153 }, "_contentSize": { "__type__": "cc.Size", @@ -25101,15 +24936,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1157 + "__id__": 1151 }, "_enabled": true, "__prefab": { - "__id__": 1161 + "__id__": 1155 }, "clickEvents": [ { - "__id__": 1162 + "__id__": 1156 } ], "_interactable": true, @@ -25161,7 +24996,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1157 + "__id__": 1151 }, "_id": "" }, @@ -25172,7 +25007,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 662 + "__id__": 656 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -25185,11 +25020,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1157 + "__id__": 1151 }, "_enabled": true, "__prefab": { - "__id__": 1164 + "__id__": 1158 }, "_alignFlags": 45, "_target": null, @@ -25234,11 +25069,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 662 + "__id__": 656 }, "_enabled": true, "__prefab": { - "__id__": 1167 + "__id__": 1161 }, "_contentSize": { "__type__": "cc.Size", @@ -25262,11 +25097,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 662 + "__id__": 656 }, "_enabled": true, "__prefab": { - "__id__": 1169 + "__id__": 1163 }, "_alignFlags": 45, "_target": null, @@ -25298,13 +25133,31 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 662 + "__id__": 656 }, "_enabled": true, "__prefab": { - "__id__": 1171 + "__id__": 1165 }, "btnTable": [ + { + "__id__": 1166 + }, + { + "__id__": 1167 + }, + { + "__id__": 1168 + }, + { + "__id__": 1169 + }, + { + "__id__": 1170 + }, + { + "__id__": 1171 + }, { "__id__": 1172 }, @@ -25328,24 +25181,6 @@ }, { "__id__": 1179 - }, - { - "__id__": 1180 - }, - { - "__id__": 1181 - }, - { - "__id__": 1182 - }, - { - "__id__": 1183 - }, - { - "__id__": 1184 - }, - { - "__id__": 1185 } ], "_id": "" @@ -25358,98 +25193,98 @@ "__type__": "BtnConfig", "key": "SpinBtn", "btnNode": { - "__id__": 760 + "__id__": 754 } }, { "__type__": "BtnConfig", "key": "AddBetBtn", "btnNode": { - "__id__": 802 + "__id__": 796 } }, { "__type__": "BtnConfig", "key": "SubBetBtn", "btnNode": { - "__id__": 813 + "__id__": 807 } }, { "__type__": "BtnConfig", "key": "FastSpinBtn", "btnNode": { - "__id__": 854 + "__id__": 848 } }, { "__type__": "BtnConfig", "key": "AutoSpinBtn", "btnNode": { - "__id__": 839 + "__id__": 833 } }, { "__type__": "BtnConfig", "key": "MenuBtn", "btnNode": { - "__id__": 824 + "__id__": 818 } }, { "__type__": "BtnConfig", "key": "QuitBtn", "btnNode": { - "__id__": 902 + "__id__": 896 } }, { "__type__": "BtnConfig", "key": "SoundBtn", "btnNode": { - "__id__": 921 + "__id__": 915 } }, { "__type__": "BtnConfig", "key": "PaytableBtn", "btnNode": { - "__id__": 950 + "__id__": 944 } }, { "__type__": "BtnConfig", "key": "RuleBtn", "btnNode": { - "__id__": 969 + "__id__": 963 } }, { "__type__": "BtnConfig", "key": "HistoryBtn", "btnNode": { - "__id__": 988 + "__id__": 982 } }, { "__type__": "BtnConfig", "key": "CloseL2Btn", "btnNode": { - "__id__": 1007 + "__id__": 1001 } }, { "__type__": "BtnConfig", "key": "StopAutoSpinBtn", "btnNode": { - "__id__": 787 + "__id__": 781 } }, { "__type__": "BtnConfig", "key": "ChooseDiffBtn", "btnNode": { - "__id__": 869 + "__id__": 863 } }, { @@ -25472,14 +25307,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 1188 + "__id__": 1182 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 1187 + "__id__": 1181 }, "asset": { "__uuid__": "29fb0a1e-a12f-4c41-9000-815327a25730", @@ -25487,7 +25322,7 @@ }, "fileId": "c9QEC2alVDUrRXVFfYng3l", "instance": { - "__id__": 1189 + "__id__": 1183 }, "targetOverrides": null }, @@ -25500,32 +25335,32 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ + { + "__id__": 1184 + }, + { + "__id__": 1186 + }, + { + "__id__": 1187 + }, + { + "__id__": 1188 + }, + { + "__id__": 1189 + }, { "__id__": 1190 }, { "__id__": 1192 }, - { - "__id__": 1193 - }, { "__id__": 1194 }, - { - "__id__": 1195 - }, { "__id__": 1196 - }, - { - "__id__": 1198 - }, - { - "__id__": 1200 - }, - { - "__id__": 1202 } ], "removedComponents": [] @@ -25533,7 +25368,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1191 + "__id__": 1185 }, "propertyPath": [ "_name" @@ -25549,7 +25384,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1191 + "__id__": 1185 }, "propertyPath": [ "_lpos" @@ -25564,7 +25399,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1191 + "__id__": 1185 }, "propertyPath": [ "_lrot" @@ -25580,7 +25415,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1191 + "__id__": 1185 }, "propertyPath": [ "_euler" @@ -25595,7 +25430,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1191 + "__id__": 1185 }, "propertyPath": [ "_active" @@ -25605,7 +25440,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1197 + "__id__": 1191 }, "propertyPath": [ "_active" @@ -25621,7 +25456,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1199 + "__id__": 1193 }, "propertyPath": [ "_active" @@ -25637,7 +25472,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1201 + "__id__": 1195 }, "propertyPath": [ "_active" @@ -25653,7 +25488,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1203 + "__id__": 1197 }, "propertyPath": [ "_contentSize" @@ -25677,14 +25512,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 1205 + "__id__": 1199 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 1204 + "__id__": 1198 }, "asset": { "__uuid__": "93f49f19-92c8-468b-a67d-b423f3be55f9", @@ -25692,7 +25527,7 @@ }, "fileId": "0d6YCKuIdEs4y/XDNnFU5x", "instance": { - "__id__": 1206 + "__id__": 1200 }, "targetOverrides": [] }, @@ -25705,29 +25540,29 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ + { + "__id__": 1201 + }, + { + "__id__": 1203 + }, + { + "__id__": 1204 + }, + { + "__id__": 1205 + }, + { + "__id__": 1206 + }, { "__id__": 1207 }, { "__id__": 1209 }, - { - "__id__": 1210 - }, { "__id__": 1211 - }, - { - "__id__": 1212 - }, - { - "__id__": 1213 - }, - { - "__id__": 1215 - }, - { - "__id__": 1217 } ], "removedComponents": [] @@ -25735,7 +25570,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1208 + "__id__": 1202 }, "propertyPath": [ "_name" @@ -25751,7 +25586,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1208 + "__id__": 1202 }, "propertyPath": [ "_lpos" @@ -25766,7 +25601,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1208 + "__id__": 1202 }, "propertyPath": [ "_lrot" @@ -25782,7 +25617,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1208 + "__id__": 1202 }, "propertyPath": [ "_euler" @@ -25797,7 +25632,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1208 + "__id__": 1202 }, "propertyPath": [ "_active" @@ -25807,7 +25642,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1214 + "__id__": 1208 }, "propertyPath": [ "_active" @@ -25823,7 +25658,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1216 + "__id__": 1210 }, "propertyPath": [ "_active" @@ -25839,7 +25674,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1218 + "__id__": 1212 }, "propertyPath": [ "_contentSize" @@ -25866,7 +25701,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 1220 + "__id__": 1214 }, "_contentSize": { "__type__": "cc.Size", @@ -25894,7 +25729,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 1222 + "__id__": 1216 }, "_alignFlags": 45, "_target": null, @@ -25930,16 +25765,16 @@ }, "_enabled": true, "__prefab": { - "__id__": 1224 + "__id__": 1218 }, "slotGame": { - "__id__": 659 + "__id__": 653 }, "slotMsg": { "__id__": 541 }, "slotBar": { - "__id__": 1170 + "__id__": 1164 }, "sysGift": null, "slotRanking": null, @@ -25961,27 +25796,27 @@ "instance": null, "targetOverrides": [ { - "__id__": 1226 + "__id__": 1220 }, { - "__id__": 1228 + "__id__": 1222 }, { - "__id__": 1230 + "__id__": 1224 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 1204 + "__id__": 1198 }, { - "__id__": 1187 + "__id__": 1181 }, { - "__id__": 854 + "__id__": 848 }, { - "__id__": 839 + "__id__": 833 }, { "__id__": 263 @@ -26083,10 +25918,10 @@ "sysGift" ], "target": { - "__id__": 1187 + "__id__": 1181 }, "targetInfo": { - "__id__": 1227 + "__id__": 1221 } }, { @@ -26098,17 +25933,17 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 1223 + "__id__": 1217 }, "sourceInfo": null, "propertyPath": [ "sysGift" ], "target": { - "__id__": 1187 + "__id__": 1181 }, "targetInfo": { - "__id__": 1229 + "__id__": 1223 } }, { @@ -26120,17 +25955,17 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 1223 + "__id__": 1217 }, "sourceInfo": null, "propertyPath": [ "slotRanking" ], "target": { - "__id__": 1204 + "__id__": 1198 }, "targetInfo": { - "__id__": 1231 + "__id__": 1225 } }, { diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation.meta index 4f01146..9ad2c75 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation.meta @@ -2,7 +2,7 @@ "ver": "1.2.0", "importer": "directory", "imported": true, - "uuid": "e65f84fc-4bfd-413b-a14e-f95261e34bac", + "uuid": "7ff63d06-428f-490d-a4a0-119ad8c5464e", "files": [], "subMetas": {}, "userData": {} diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.atlas.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.atlas.meta index b8ddf4c..0e523e3 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.atlas.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.atlas.meta @@ -2,7 +2,7 @@ "ver": "1.0.0", "importer": "*", "imported": true, - "uuid": "a6ea9ccc-636d-4bb0-a88e-395eea5f78e2", + "uuid": "cc4cd8e2-52a9-466a-a3e7-63b564c5a4c3", "files": [ ".atlas", ".json" diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json index f26c9f8..6187d1c 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json @@ -1 +1 @@ -{"skeleton":{"hash":"1RbuYhqvEJdfxvaMZ21ii0QN8yw","spine":"3.8.99","x":-541,"y":-1181,"width":1082,"height":2362,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"35dcffff","attachment":"bs1-1"},{"name":"bs1","bone":"z","attachment":"bs1"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs1","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs1":{"width":174,"height":160}},"bs1-1":{"bs1-1":{"width":174,"height":160}},"bs2":{"bs1":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"bs1-1":{"color":[{"color":"33daff88"}]},"lz":{"color":[{"time":0.5,"color":"8de6ffff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}}}} \ No newline at end of file +{"skeleton":{"hash":"f4LFxBFY6kC5OULZBGqDcH0J6FI","spine":"3.8.99","x":-541,"y":-1181,"width":1082,"height":2362,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"},{"name":"z2","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"35dcffff","attachment":"bs1-1"},{"name":"bs1","bone":"z","attachment":"bs1"},{"name":"bs3","bone":"z2","color":"ffffff00","attachment":"bs1","blend":"additive"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs1","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs1":{"width":174,"height":160}},"bs1-1":{"bs1-1":{"width":174,"height":160}},"bs2":{"bs1":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"bs3":{"bs1":{"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"bs1-1":{"color":[{"color":"33daff88"}]},"lz":{"color":[{"time":0.5,"color":"8de6ffff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}},"zhongjiang":{"slots":{"bs1-1":{"color":[{"color":"33daff88"}]},"bs2":{"color":[{"time":0.5,"color":"ffffff00"},{"time":0.6667,"color":"ffffffca"},{"time":1,"color":"ffffff00"}]},"bs3":{"color":[{"time":0.5667,"color":"ffffff00"},{"time":0.6667,"color":"ffffff78"},{"time":1,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"8de6ffff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":1.018,"y":0.991}]},"z2":{"scale":[{"time":0.5667,"curve":0.494,"c2":0.72,"c3":0.75},{"time":1,"x":1.324,"y":1.324}]}}}}} \ No newline at end of file diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json.meta index d9c2f97..8ee44ae 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.json.meta @@ -2,7 +2,7 @@ "ver": "1.2.6", "importer": "spine-data", "imported": true, - "uuid": "d62a8256-af0c-4b19-881a-5b853fedc053", + "uuid": "99118768-e5f4-4766-a85f-31671b2d8f46", "files": [ ".json" ], diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.png.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.png.meta index cfd0b15..7f50490 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.png.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_1.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "bf545cb7-09c7-4060-bef5-2d1c1a4aad88", + "uuid": "06a97b00-2863-4826-a517-c33c0b601043", "files": [ ".json", ".png" @@ -10,14 +10,14 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "bf545cb7-09c7-4060-bef5-2d1c1a4aad88@6c48a", + "uuid": "06a97b00-2863-4826-a517-c33c0b601043@6c48a", "displayName": "multiplier_stack_animation_1", "id": "6c48a", "name": "texture", "userData": { "wrapModeS": "clamp-to-edge", "wrapModeT": "clamp-to-edge", - "imageUuidOrDatabaseUri": "bf545cb7-09c7-4060-bef5-2d1c1a4aad88", + "imageUuidOrDatabaseUri": "06a97b00-2863-4826-a517-c33c0b601043", "isUuid": true, "visible": false, "minfilter": "linear", @@ -34,7 +34,7 @@ }, "f9941": { "importer": "sprite-frame", - "uuid": "bf545cb7-09c7-4060-bef5-2d1c1a4aad88@f9941", + "uuid": "06a97b00-2863-4826-a517-c33c0b601043@f9941", "displayName": "multiplier_stack_animation_1", "id": "f9941", "name": "spriteFrame", @@ -114,7 +114,7 @@ ] }, "isUuid": true, - "imageUuidOrDatabaseUri": "bf545cb7-09c7-4060-bef5-2d1c1a4aad88@6c48a", + "imageUuidOrDatabaseUri": "06a97b00-2863-4826-a517-c33c0b601043@6c48a", "atlasUuid": "" }, "ver": "1.0.12", @@ -129,6 +129,6 @@ "type": "sprite-frame", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "bf545cb7-09c7-4060-bef5-2d1c1a4aad88@6c48a" + "redirect": "06a97b00-2863-4826-a517-c33c0b601043@6c48a" } } diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.atlas.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.atlas.meta index 2b5b686..b342fd0 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.atlas.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.atlas.meta @@ -2,7 +2,7 @@ "ver": "1.0.0", "importer": "*", "imported": true, - "uuid": "3c2c6589-2d31-4a29-82a3-8a44d01b6efc", + "uuid": "2c4c896f-1d04-4a22-b07b-d849084c40b8", "files": [ ".atlas", ".json" diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json index a0c6d60..91b66fb 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json @@ -1 +1 @@ -{"skeleton":{"hash":"0jtw4FnRXOVVk1xVkIa7mLV5idw","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"35dcffff","attachment":"bs2-2"},{"name":"bs1","bone":"z","attachment":"bs2"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs2","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs2":{"width":174,"height":160}},"bs1-1":{"bs2-2":{"width":174,"height":160}},"bs2":{"bs2":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"bs1-1":{"color":[{"color":"33daff88"}]},"lz":{"color":[{"time":0.5,"color":"8dffbdff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}}}} \ No newline at end of file +{"skeleton":{"hash":"PvVdvY9HSPBBeNFpz4NCpnsq8Nw","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"},{"name":"z2","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"35dcffff","attachment":"bs2-2"},{"name":"bs1","bone":"z","attachment":"bs2"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs2","blend":"additive"},{"name":"bs3","bone":"z2","color":"ffffff00","attachment":"bs2","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs2":{"width":174,"height":160}},"bs1-1":{"bs2-2":{"width":174,"height":160}},"bs2":{"bs2":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"bs3":{"bs2":{"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"bs1-1":{"color":[{"color":"33daff88"}]},"lz":{"color":[{"time":0.5,"color":"8dffbdff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}},"zhongjiang":{"slots":{"bs1-1":{"color":[{"color":"33daff88"}]},"bs3":{"color":[{"time":0.5667,"color":"ffffff00"},{"time":0.6667,"color":"ffffff78"},{"time":1,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"8dffbdff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":1.018,"y":0.991}]},"z2":{"scale":[{"time":0.5667,"curve":0.494,"c2":0.72,"c3":0.75},{"time":1,"x":1.324,"y":1.324}]}}}}} \ No newline at end of file diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json.meta index 18c4da4..a86632f 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.json.meta @@ -2,7 +2,7 @@ "ver": "1.2.6", "importer": "spine-data", "imported": true, - "uuid": "ca4781bc-b566-48cf-9fca-bc70569272dc", + "uuid": "a209929d-0be0-432f-b47e-d2e7e7b54337", "files": [ ".json" ], diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.png.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.png.meta index 48643a5..adce129 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.png.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_2.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "85ec3128-2378-4847-8ff5-494efd2ff347", + "uuid": "fe7e6801-dfd0-46c3-8d32-e2d7a79de008", "files": [ ".json", ".png" @@ -10,14 +10,14 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "85ec3128-2378-4847-8ff5-494efd2ff347@6c48a", + "uuid": "fe7e6801-dfd0-46c3-8d32-e2d7a79de008@6c48a", "displayName": "multiplier_stack_animation_2", "id": "6c48a", "name": "texture", "userData": { "wrapModeS": "clamp-to-edge", "wrapModeT": "clamp-to-edge", - "imageUuidOrDatabaseUri": "85ec3128-2378-4847-8ff5-494efd2ff347", + "imageUuidOrDatabaseUri": "fe7e6801-dfd0-46c3-8d32-e2d7a79de008", "isUuid": true, "visible": false, "minfilter": "linear", @@ -34,7 +34,7 @@ }, "f9941": { "importer": "sprite-frame", - "uuid": "85ec3128-2378-4847-8ff5-494efd2ff347@f9941", + "uuid": "fe7e6801-dfd0-46c3-8d32-e2d7a79de008@f9941", "displayName": "multiplier_stack_animation_2", "id": "f9941", "name": "spriteFrame", @@ -114,7 +114,7 @@ ] }, "isUuid": true, - "imageUuidOrDatabaseUri": "85ec3128-2378-4847-8ff5-494efd2ff347@6c48a", + "imageUuidOrDatabaseUri": "fe7e6801-dfd0-46c3-8d32-e2d7a79de008@6c48a", "atlasUuid": "" }, "ver": "1.0.12", @@ -129,6 +129,6 @@ "type": "sprite-frame", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "85ec3128-2378-4847-8ff5-494efd2ff347@6c48a" + "redirect": "fe7e6801-dfd0-46c3-8d32-e2d7a79de008@6c48a" } } diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.atlas.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.atlas.meta index 12efafa..f15b676 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.atlas.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.atlas.meta @@ -2,7 +2,7 @@ "ver": "1.0.0", "importer": "*", "imported": true, - "uuid": "15f4b63c-dfc7-468f-a4e2-a50cdf860bf1", + "uuid": "ca0dfc7d-6e1c-40af-82c5-963aa8f9513c", "files": [ ".atlas", ".json" diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json index b3ecb86..7496254 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json @@ -1 +1 @@ -{"skeleton":{"hash":"lBZ7fdD+XJHOaxBp4w9b3+Vz9dk","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"a534ffff","attachment":"bs3-1"},{"name":"bs1","bone":"z","attachment":"bs3"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs3","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs3":{"width":174,"height":160}},"bs1-1":{"bs3-1":{"width":174,"height":160}},"bs2":{"bs3":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"c18dffff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}}}} \ No newline at end of file +{"skeleton":{"hash":"xtXG4xoNRO36cNLEfpj+0OjWYzM","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"},{"name":"z2","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"a534ffff","attachment":"bs3-1"},{"name":"bs1","bone":"z","attachment":"bs3"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs3","blend":"additive"},{"name":"bs3","bone":"z2","color":"ffffff00","attachment":"bs3","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs3":{"width":174,"height":160}},"bs1-1":{"bs3-1":{"width":174,"height":160}},"bs2":{"bs3":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"bs3":{"bs3":{"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"c18dffff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}},"zhongjiang":{"slots":{"bs2":{"color":[{"time":0.5,"color":"ffffff00"},{"time":0.6667,"color":"ffffffca"},{"time":1,"color":"ffffff00"}]},"bs3":{"color":[{"time":0.5667,"color":"ffffff00"},{"time":0.6667,"color":"ffffff78"},{"time":1,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"c18dffff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":1.018,"y":0.991}]},"z2":{"scale":[{"time":0.5667,"curve":0.494,"c2":0.72,"c3":0.75},{"time":1,"x":1.324,"y":1.324}]}}}}} \ No newline at end of file diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json.meta index c7af51a..b21d9d8 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.json.meta @@ -2,7 +2,7 @@ "ver": "1.2.6", "importer": "spine-data", "imported": true, - "uuid": "4c13e3d0-fde8-414e-9eeb-8354dc49325f", + "uuid": "ac135226-de68-4371-bf95-8f215a208e1a", "files": [ ".json" ], diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.png.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.png.meta index cd69aeb..ae6d43b 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.png.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_3.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "a55d43c5-a7ae-4ff4-bb4a-4eff0aeb7759", + "uuid": "3bcbbf03-b67b-4cdb-b9ae-36dc561d2b6d", "files": [ ".json", ".png" @@ -10,14 +10,14 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "a55d43c5-a7ae-4ff4-bb4a-4eff0aeb7759@6c48a", + "uuid": "3bcbbf03-b67b-4cdb-b9ae-36dc561d2b6d@6c48a", "displayName": "multiplier_stack_animation_3", "id": "6c48a", "name": "texture", "userData": { "wrapModeS": "clamp-to-edge", "wrapModeT": "clamp-to-edge", - "imageUuidOrDatabaseUri": "a55d43c5-a7ae-4ff4-bb4a-4eff0aeb7759", + "imageUuidOrDatabaseUri": "3bcbbf03-b67b-4cdb-b9ae-36dc561d2b6d", "isUuid": true, "visible": false, "minfilter": "linear", @@ -34,7 +34,7 @@ }, "f9941": { "importer": "sprite-frame", - "uuid": "a55d43c5-a7ae-4ff4-bb4a-4eff0aeb7759@f9941", + "uuid": "3bcbbf03-b67b-4cdb-b9ae-36dc561d2b6d@f9941", "displayName": "multiplier_stack_animation_3", "id": "f9941", "name": "spriteFrame", @@ -114,7 +114,7 @@ ] }, "isUuid": true, - "imageUuidOrDatabaseUri": "a55d43c5-a7ae-4ff4-bb4a-4eff0aeb7759@6c48a", + "imageUuidOrDatabaseUri": "3bcbbf03-b67b-4cdb-b9ae-36dc561d2b6d@6c48a", "atlasUuid": "" }, "ver": "1.0.12", @@ -129,6 +129,6 @@ "type": "sprite-frame", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "a55d43c5-a7ae-4ff4-bb4a-4eff0aeb7759@6c48a" + "redirect": "3bcbbf03-b67b-4cdb-b9ae-36dc561d2b6d@6c48a" } } diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.atlas.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.atlas.meta index b9a1c11..f7ed3a7 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.atlas.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.atlas.meta @@ -2,7 +2,7 @@ "ver": "1.0.0", "importer": "*", "imported": true, - "uuid": "949e68ae-35d0-429b-be91-536040348017", + "uuid": "5ec8b67f-909d-4b5a-a9d2-9dc135121b8f", "files": [ ".atlas", ".json" diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json index f60576e..dca0f1a 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json @@ -1 +1 @@ -{"skeleton":{"hash":"S721i6mhlRiIKkfW/TI8VVIofo0","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"ff32c4ff","attachment":"bs4-1"},{"name":"bs1","bone":"z","attachment":"bs4"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs4","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs4":{"width":174,"height":160}},"bs1-1":{"bs4-1":{"width":174,"height":160}},"bs2":{"bs4":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"ff8ddcff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}}}} \ No newline at end of file +{"skeleton":{"hash":"Vvf2DJH0zf476i1v1wDu2fecV0U","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"},{"name":"z2","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"ff32c4ff","attachment":"bs4-1"},{"name":"bs1","bone":"z","attachment":"bs4"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs4","blend":"additive"},{"name":"bs3","bone":"z2","color":"ffffff00","attachment":"bs4","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs4":{"width":174,"height":160}},"bs1-1":{"bs4-1":{"width":174,"height":160}},"bs2":{"bs4":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"bs3":{"bs4":{"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"ff8ddcff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}},"zhongjiang":{"slots":{"bs2":{"color":[{"time":0.5,"color":"ffffff00"},{"time":0.6667,"color":"ffffffca"},{"time":1,"color":"ffffff00"}]},"bs3":{"color":[{"time":0.5667,"color":"ffffff00"},{"time":0.6667,"color":"ffffff78"},{"time":1,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"ff8ddcff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":1.018,"y":0.991}]},"z2":{"scale":[{"time":0.5667,"curve":0.494,"c2":0.72,"c3":0.75},{"time":1,"x":1.324,"y":1.324}]}}}}} \ No newline at end of file diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json.meta index 790793a..9e708ae 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.json.meta @@ -2,7 +2,7 @@ "ver": "1.2.6", "importer": "spine-data", "imported": true, - "uuid": "08b145b0-ca97-4c01-ac1a-d3b24aefe145", + "uuid": "688e668a-8498-455f-995c-937e692c04c6", "files": [ ".json" ], diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.png.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.png.meta index adb1864..493495b 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.png.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_4.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "1a77b236-0b32-4341-9fc7-9816afa33766", + "uuid": "05627019-88cb-46c5-82ec-87a6a5348f2a", "files": [ ".json", ".png" @@ -10,14 +10,14 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "1a77b236-0b32-4341-9fc7-9816afa33766@6c48a", + "uuid": "05627019-88cb-46c5-82ec-87a6a5348f2a@6c48a", "displayName": "multiplier_stack_animation_4", "id": "6c48a", "name": "texture", "userData": { "wrapModeS": "clamp-to-edge", "wrapModeT": "clamp-to-edge", - "imageUuidOrDatabaseUri": "1a77b236-0b32-4341-9fc7-9816afa33766", + "imageUuidOrDatabaseUri": "05627019-88cb-46c5-82ec-87a6a5348f2a", "isUuid": true, "visible": false, "minfilter": "linear", @@ -34,7 +34,7 @@ }, "f9941": { "importer": "sprite-frame", - "uuid": "1a77b236-0b32-4341-9fc7-9816afa33766@f9941", + "uuid": "05627019-88cb-46c5-82ec-87a6a5348f2a@f9941", "displayName": "multiplier_stack_animation_4", "id": "f9941", "name": "spriteFrame", @@ -114,7 +114,7 @@ ] }, "isUuid": true, - "imageUuidOrDatabaseUri": "1a77b236-0b32-4341-9fc7-9816afa33766@6c48a", + "imageUuidOrDatabaseUri": "05627019-88cb-46c5-82ec-87a6a5348f2a@6c48a", "atlasUuid": "" }, "ver": "1.0.12", @@ -129,6 +129,6 @@ "type": "sprite-frame", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "1a77b236-0b32-4341-9fc7-9816afa33766@6c48a" + "redirect": "05627019-88cb-46c5-82ec-87a6a5348f2a@6c48a" } } diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.atlas.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.atlas.meta index c185d84..f1da37c 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.atlas.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.atlas.meta @@ -2,7 +2,7 @@ "ver": "1.0.0", "importer": "*", "imported": true, - "uuid": "0c1841b8-f3b9-4fe2-a3d7-3cdc4eff41cd", + "uuid": "06e80cf9-1cf9-4ce7-a5f1-cc129d6781bb", "files": [ ".atlas", ".json" diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json index a344de5..ad00376 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json @@ -1 +1 @@ -{"skeleton":{"hash":"q88xTnH0BqCwBr0vsqlvPXF9qQg","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"ff3131ff","attachment":"bs5-1"},{"name":"bs1","bone":"z","attachment":"bs5"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs5","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs5":{"width":174,"height":160}},"bs1-1":{"bs5-1":{"width":174,"height":160}},"bs2":{"bs5":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"ff8d8dff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}}}} \ No newline at end of file +{"skeleton":{"hash":"jzjhHWX8ozW1+YsE6R6Yu6ycCQY","spine":"3.8.99","x":-125,"y":-125,"width":250,"height":250,"images":"./i/","audio":"E:/项目/Slot/阿拉丁神灯/源文件/multiplier_stack_animation/bs1"},"bones":[{"name":"root"},{"name":"骨骼","parent":"root"},{"name":"z","parent":"骨骼"},{"name":"lz","parent":"骨骼"},{"name":"z2","parent":"骨骼"}],"slots":[{"name":"普通界面","bone":"骨骼"},{"name":"lz","bone":"lz","attachment":"lz_01","blend":"additive"},{"name":"bs1-1","bone":"z","color":"ff3131ff","attachment":"bs5-1"},{"name":"bs1","bone":"z","attachment":"bs5"},{"name":"bs2","bone":"z","color":"ffffff00","attachment":"bs5","blend":"additive"},{"name":"bs3","bone":"z2","color":"ffffff00","attachment":"bs5","blend":"additive"}],"skins":[{"name":"default","attachments":{"bs1":{"bs5":{"width":174,"height":160}},"bs1-1":{"bs5-1":{"width":174,"height":160}},"bs2":{"bs5":{"type":"mesh","uvs":[0.59677,0.37358,0.58104,0.42192,0.57694,0.48663,0.58104,0.52828,0.60977,0.5677,0.64738,0.57588,0.69799,0.55877,0.71714,0.52233,0.70757,0.47398,0.68363,0.43977,0.64123,0.39961],"triangles":[1,0,10,10,2,1,2,8,3,9,2,10,8,2,9,3,5,4,7,6,8,3,8,5,6,5,8],"vertices":[16.84,20.23,14.1,12.49,13.39,2.14,14.1,-4.52,19.1,-10.83,25.64,-12.14,34.45,-9.4,37.78,-3.57,36.12,4.16,31.95,9.64,24.57,16.06],"hull":11,"edges":[0,2,2,4,4,6,6,8,8,10,10,12,12,14,14,16,16,18,18,20,0,20],"width":174,"height":160}},"bs3":{"bs5":{"width":174,"height":160}},"lz":{"lz_01":{"width":250,"height":250},"lz_02":{"width":250,"height":250},"lz_03":{"width":250,"height":250},"lz_04":{"width":250,"height":250},"lz_05":{"width":250,"height":250},"lz_06":{"width":250,"height":250},"lz_07":{"width":250,"height":250},"lz_08":{"width":250,"height":250},"lz_09":{"width":250,"height":250},"lz_10":{"width":250,"height":250},"lz_11":{"width":250,"height":250},"lz_12":{"width":250,"height":250},"lz_13":{"width":250,"height":250},"lz_14":{"width":250,"height":250},"lz_15":{"width":250,"height":250},"lz_16":{"width":250,"height":250},"lz_17":{"width":250,"height":250},"lz_18":{"width":250,"height":250},"lz_19":{"width":250,"height":250}}}}],"animations":{"idle":{"slots":{"bs1-1":{"color":[{"color":"33daff88","curve":0.25,"c3":0.75},{"time":1,"color":"35dcffff","curve":0.25,"c3":0.75},{"time":2,"color":"33daff88"}]},"bs2":{"color":[{"color":"ffffff00","curve":0.25,"c3":0.75},{"time":1,"color":"ffffff96","curve":0.25,"c3":0.75},{"time":2,"color":"ffffff00"}]}},"bones":{"z":{"rotate":[{"angle":-0.28,"curve":0.382,"c2":0.57,"c3":0.735},{"time":0.3333,"curve":0.25,"c3":0.75},{"time":1.3333,"angle":-0.99,"curve":0.243,"c3":0.649,"c4":0.6},{"time":2,"angle":-0.28}],"translate":[{"y":0.45,"curve":0.25,"c3":0.75},{"time":1,"x":0.9,"y":-4.97,"curve":0.25,"c3":0.75},{"time":2,"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.375,"c2":0.5,"c3":0.75},{"time":0.5,"x":0.995,"y":1.009,"curve":0.25,"c3":0.75},{"time":1.5,"x":1.041,"y":0.973,"curve":0.25,"c3":0.625,"c4":0.5},{"time":2,"x":1.018,"y":0.991}]}}},"xiaoshi":{"slots":{"bs1":{"color":[{"time":0.5667,"color":"ffffffff"},{"time":0.6,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"ff8d8dff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":0.075,"y":0.073}]}}},"zhongjiang":{"slots":{"bs2":{"color":[{"time":0.5,"color":"ffffff00"},{"time":0.6667,"color":"ffffffca"},{"time":1,"color":"ffffff00"}]},"bs3":{"color":[{"time":0.5667,"color":"ffffff00"},{"time":0.6667,"color":"ffffff78"},{"time":1,"color":"ffffff00"}]},"lz":{"color":[{"time":0.5,"color":"ff8d8dff"}],"attachment":[{"time":0.5333,"name":"lz_02"},{"time":0.5667,"name":"lz_03"},{"time":0.6,"name":"lz_04"},{"time":0.6333,"name":"lz_05"},{"time":0.6667,"name":"lz_06"},{"time":0.7,"name":"lz_07"},{"time":0.7333,"name":"lz_08"},{"time":0.7667,"name":"lz_09"},{"time":0.8,"name":"lz_10"},{"time":0.8333,"name":"lz_11"},{"time":0.8667,"name":"lz_12"},{"time":0.9,"name":"lz_13"},{"time":0.9333,"name":"lz_14"},{"time":0.9667,"name":"lz_15"},{"time":1,"name":"lz_16"},{"time":1.0333,"name":"lz_17"},{"time":1.0667,"name":"lz_18"},{"time":1.1,"name":"lz_19"},{"time":1.1333,"name":null}]}},"bones":{"lz":{"scale":[{"time":0.5,"x":5,"y":5},{"time":0.8667,"x":2.642,"y":2.642},{"time":1.1333,"x":1.7,"y":1.7}]},"z":{"rotate":[{"angle":-0.28,"curve":"stepped"},{"time":0.0667,"angle":-0.28},{"time":0.1,"angle":-1.91},{"time":0.1333,"angle":1.53},{"time":0.1667,"angle":-1.91},{"time":0.2,"angle":1.53},{"time":0.2333,"angle":-1.91},{"time":0.2667,"angle":1.53},{"time":0.3,"angle":-1.91},{"time":0.3333,"angle":1.53},{"time":0.3667,"angle":-1.91},{"time":0.4,"angle":1.53},{"time":0.4333,"angle":-1.91},{"time":0.4667,"angle":1.53},{"time":0.5,"angle":-0.28}],"translate":[{"y":0.45}],"scale":[{"x":1.018,"y":0.991,"curve":0.25,"c3":0.75},{"time":0.0667,"x":0.904,"y":0.879,"curve":0.25,"c3":0.311},{"time":0.5,"x":1.534,"y":1.493},{"time":0.6,"x":1.018,"y":0.991}]},"z2":{"scale":[{"time":0.5667,"curve":0.494,"c2":0.72,"c3":0.75},{"time":1,"x":1.324,"y":1.324}]}}}}} \ No newline at end of file diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json.meta index 969d4bd..c457f51 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.json.meta @@ -2,7 +2,7 @@ "ver": "1.2.6", "importer": "spine-data", "imported": true, - "uuid": "70ea8190-8a0c-41ef-805d-c9a28d71f491", + "uuid": "75443df4-2b37-44d8-b9e7-90e45d80e127", "files": [ ".json" ], diff --git a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.png.meta b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.png.meta index d1e7f34..3606d3b 100644 --- a/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.png.meta +++ b/assets/Game/阿拉丁神灯-资源/spin/multiplier_stack_animation/multiplier_stack_animation_5.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "4a33d740-6361-4453-a1c8-07754e05dd86", + "uuid": "816a6715-a681-4350-827d-3cdbf258945e", "files": [ ".json", ".png" @@ -10,14 +10,14 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "4a33d740-6361-4453-a1c8-07754e05dd86@6c48a", + "uuid": "816a6715-a681-4350-827d-3cdbf258945e@6c48a", "displayName": "multiplier_stack_animation_5", "id": "6c48a", "name": "texture", "userData": { "wrapModeS": "clamp-to-edge", "wrapModeT": "clamp-to-edge", - "imageUuidOrDatabaseUri": "4a33d740-6361-4453-a1c8-07754e05dd86", + "imageUuidOrDatabaseUri": "816a6715-a681-4350-827d-3cdbf258945e", "isUuid": true, "visible": false, "minfilter": "linear", @@ -34,7 +34,7 @@ }, "f9941": { "importer": "sprite-frame", - "uuid": "4a33d740-6361-4453-a1c8-07754e05dd86@f9941", + "uuid": "816a6715-a681-4350-827d-3cdbf258945e@f9941", "displayName": "multiplier_stack_animation_5", "id": "f9941", "name": "spriteFrame", @@ -114,7 +114,7 @@ ] }, "isUuid": true, - "imageUuidOrDatabaseUri": "4a33d740-6361-4453-a1c8-07754e05dd86@6c48a", + "imageUuidOrDatabaseUri": "816a6715-a681-4350-827d-3cdbf258945e@6c48a", "atlasUuid": "" }, "ver": "1.0.12", @@ -129,6 +129,6 @@ "type": "sprite-frame", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "4a33d740-6361-4453-a1c8-07754e05dd86@6c48a" + "redirect": "816a6715-a681-4350-827d-3cdbf258945e@6c48a" } } diff --git a/assets/Main/main.scene b/assets/Main/main.scene index f6f2dec..2147385 100644 --- a/assets/Main/main.scene +++ b/assets/Main/main.scene @@ -4896,7 +4896,7 @@ "__id__": 2 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 130 @@ -4909,7 +4909,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -155.04, + "y": 0, "z": 0 }, "_lrot": { @@ -4947,13 +4947,13 @@ "__prefab": null, "_contentSize": { "__type__": "cc.Size", - "width": 1082, - "height": 2362 + "width": 2258, + "height": 2530.5 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 + "x": 0.433348095659876, + "y": 0.603635645129421 }, "_id": "d7h41v8UxIZ4ItxMyPmPlz" }, @@ -4978,11 +4978,11 @@ "a": 255 }, "_skeletonData": { - "__uuid__": "d62a8256-af0c-4b19-881a-5b853fedc053", + "__uuid__": "d1890f1e-0118-4ca2-a363-c9e53337bc89", "__expectedType__": "sp.SkeletonData" }, "defaultSkin": "default", - "defaultAnimation": "xiaoshi", + "defaultAnimation": "", "_premultipliedAlpha": false, "_timeScale": 1, "_preCacheMode": 0,