diff --git a/assets/Game/Scripts/SlotBar.ts b/assets/Game/Scripts/SlotBar.ts index 14e4c51..7c6b1a6 100644 --- a/assets/Game/Scripts/SlotBar.ts +++ b/assets/Game/Scripts/SlotBar.ts @@ -126,9 +126,9 @@ export class SlotBar extends Component { updateChooseDiff() { let diff = GameDataManager.instance.chooseDiff; - // this.node.getChildByName('Btn_L1').getChildByName('Choose').children.forEach((child: Node, index: number) => { - // child.active = index == diff - 1; - // }) + this.node.getChildByName('Btn_L1').getChildByName('Choose').children.forEach((child: Node, index: number) => { + child.active = index == diff - 1; + }) // this.getBtnNode(Btn_Key.SpinBtn).children.forEach((child: Node, index: number) => { // child.getComponent(sp.Skeleton).setAnimation(0, '1', true); diff --git a/assets/Game/Scripts/SlotMsg.ts b/assets/Game/Scripts/SlotMsg.ts index bb4e9f9..c32351c 100644 --- a/assets/Game/Scripts/SlotMsg.ts +++ b/assets/Game/Scripts/SlotMsg.ts @@ -25,16 +25,16 @@ export class SlotMsg extends Component { // largeMsgSpine: sp.Skeleton = null; // 展示文字信息 - @property(Sprite) - smallMsgSpine: Sprite = null; + @property(Node) + smallMsgNode: Node = null; // 展示普通赢分信息 - @property(Sprite) - middleMsgSpine: Sprite = null; + @property(Node) + middleMsgNode: Node = null; // 展示总赢分信息 - @property(Sprite) - largeMsgSpine: Sprite = null; + @property(Node) + largeMsgNode: Node = null; @property(Sprite) i18nSpriteMsg: Sprite = null; @@ -42,9 +42,6 @@ export class SlotMsg extends Component { @property(Node) grayMsgNode: Node = null; - @property(Node) - multiNode: Node = null; - protected onLoad(): void { this.grayMsgNode.active = false; } @@ -55,14 +52,14 @@ export class SlotMsg extends Component { currRoundWinMsg: string = '' showLabelMsgForTween() { Tween.stopAllByTarget(this.i18nSpriteMsg.node); - this.smallMsgSpine.node.active = true; + this.smallMsgNode.active = true; // this.smallMsgSpine.setAnimation(0, '2', false); // this.smallMsgSpine.setCompleteListener(() => { // this.smallMsgSpine.setAnimation(0, '1', true); // this.smallMsgSpine.setCompleteListener(null); // }); - this.middleMsgSpine.node.active = false; - this.largeMsgSpine.node.active = false; + this.middleMsgNode.active = false; + this.largeMsgNode.active = false; let add = 0; let isFirst = true; @@ -121,16 +118,16 @@ export class SlotMsg extends Component { showTotalWinAnimaiton(startScore: number, endScore: number, cb) { - this.smallMsgSpine.node.active = false; - this.middleMsgSpine.node.active = false; - this.largeMsgSpine.node.active = true; + this.smallMsgNode.active = false; + this.middleMsgNode.active = false; + this.largeMsgNode.active = true; // this.largeMsgSpine.setAnimation(0, '2', false); // this.largeMsgSpine.setCompleteListener(() => { // this.largeMsgSpine.setAnimation(0, '1', true); // this.largeMsgSpine.setCompleteListener(null); // }); - let msg = this.largeMsgSpine.node.getChildByName('msg'); + let msg = this.largeMsgNode.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); winCount.getComponent(Label).string = gold2cash(startScore); @@ -156,16 +153,16 @@ export class SlotMsg extends Component { showRoundWinMsg(endScore: number, currMulti: number = 0) { if (endScore === 0) return; - this.smallMsgSpine.node.active = false; - this.middleMsgSpine.node.active = true; - this.largeMsgSpine.node.active = false; + this.smallMsgNode.active = false; + this.middleMsgNode.active = true; + this.largeMsgNode.active = false; // this.middleMsgSpine.setAnimation(0, '2', false); // this.middleMsgSpine.setCompleteListener(() => { // this.middleMsgSpine.setAnimation(0, '1', true); // this.middleMsgSpine.setCompleteListener(null); // }); - let msg = this.middleMsgSpine.node.getChildByName('msg'); + let msg = this.middleMsgNode.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); if (currMulti == 0) { winCount.getComponent(Label).string = gold2cash(endScore); @@ -179,25 +176,26 @@ export class SlotMsg extends Component { showTotalWinMsg(endScore: number) { if (endScore === 0) return; - this.smallMsgSpine.node.active = false; - this.middleMsgSpine.node.active = false; - this.largeMsgSpine.node.active = true; - // this.largeMsgSpine.setAnimation(0, '2', false); - // this.largeMsgSpine.setCompleteListener(() => { - // this.largeMsgSpine.setAnimation(0, '1', true); - // this.largeMsgSpine.setCompleteListener(null); + this.smallMsgNode.active = false; + this.middleMsgNode.active = false; + this.largeMsgNode.active = true; + this.largeMsgNode.getChildByName('pmd3_spine').getComponent(sp.Skeleton).setAnimation(0, 'animation', false) + // this.largeMsgNode.setAnimation(0, '2', false); + // this.largeMsgNode.setCompleteListener(() => { + // this.largeMsgNode.setAnimation(0, '1', true); + // this.largeMsgNode.setCompleteListener(null); // }); - let msg = this.largeMsgSpine.node.getChildByName('msg'); + let msg = this.largeMsgNode.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); winCount.getComponent(Label).string = gold2cash(endScore); AudioManager.instance.playSFX('Slot_Msg_Total_Win'); } hideWinSpine() { - this.smallMsgSpine.node.active = true; - this.middleMsgSpine.node.active = false; - this.largeMsgSpine.node.active = false; + this.smallMsgNode.active = true; + this.middleMsgNode.active = false; + this.largeMsgNode.active = false; } /** @@ -222,7 +220,7 @@ export class SlotMsg extends Component { } // 提示分数的spine节点和最终显示位置 - let msg = this.largeMsgSpine.node.getChildByName('msg'); + let msg = this.largeMsgNode.getChildByName('msg'); let winCount = msg.getChildByName('winCount'); let uiTf = this.node.getComponent(UITransform); let centerLocalPos = v3(50, -500, 0); // 信息栏坐标(本地) diff --git a/assets/Game/SlotScene.prefab b/assets/Game/SlotScene.prefab index f1ce2ba..35c962e 100644 --- a/assets/Game/SlotScene.prefab +++ b/assets/Game/SlotScene.prefab @@ -22,29 +22,29 @@ "__id__": 2 }, { - "__id__": 618 + "__id__": 624 }, { - "__id__": 1131 + "__id__": 1137 }, { - "__id__": 1148 + "__id__": 1154 } ], "_active": true, "_components": [ { - "__id__": 1163 + "__id__": 1169 }, { - "__id__": 1165 + "__id__": 1171 }, { - "__id__": 1167 + "__id__": 1173 } ], "_prefab": { - "__id__": 1169 + "__id__": 1175 }, "_lpos": { "__type__": "cc.Vec3", @@ -112,23 +112,23 @@ "__id__": 364 }, { - "__id__": 508 + "__id__": 514 } ], "_active": true, "_components": [ { - "__id__": 611 + "__id__": 617 }, { - "__id__": 613 + "__id__": 619 }, { - "__id__": 615 + "__id__": 621 } ], "_prefab": { - "__id__": 617 + "__id__": 623 }, "_lpos": { "__type__": "cc.Vec3", @@ -6916,23 +6916,23 @@ "__id__": 365 }, { - "__id__": 461 + "__id__": 467 } ], "_active": true, "_components": [ { - "__id__": 501 + "__id__": 507 }, { - "__id__": 503 + "__id__": 509 }, { - "__id__": 505 + "__id__": 511 } ], "_prefab": { - "__id__": 507 + "__id__": 513 }, "_lpos": { "__type__": "cc.Vec3", @@ -6985,11 +6985,11 @@ "_active": true, "_components": [ { - "__id__": 458 + "__id__": 464 } ], "_prefab": { - "__id__": 460 + "__id__": 466 }, "_lpos": { "__type__": "cc.Vec3", @@ -7464,13 +7464,13 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 792, - "height": 108 + "width": 796, + "height": 119 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 + "x": 0.49874371859296485, + "y": 0.5462184873949579 }, "_id": "" }, @@ -7479,7 +7479,7 @@ "fileId": "c8tHg+mOFBIpjawVmh1WiU" }, { - "__type__": "cc.Sprite", + "__type__": "sp.Skeleton", "_name": "", "_objFlags": 0, "__editorExtras__": {}, @@ -7500,28 +7500,28 @@ "b": 255, "a": 255 }, - "_spriteFrame": { - "__uuid__": "53ecb6f1-ce8d-4ece-8669-c4f2e7f9fc2c@f9941", - "__expectedType__": "cc.SpriteFrame" + "_skeletonData": { + "__uuid__": "06ffb3e0-e43a-4c4f-a1fc-1504d305ba5b", + "__expectedType__": "sp.SkeletonData" }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_premultipliedAlpha": true, + "_timeScale": 1, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "b8CLPCxg1LaoiypmzSvCEB" + "fileId": "3dyemsUpBIWId+whPe7F6Y" }, { "__type__": "cc.PrefabInfo", @@ -8159,7 +8159,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 2, + "y": 4, "z": 0 }, "_lrot": { @@ -8199,13 +8199,13 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 815, - "height": 110 + "width": 817, + "height": 222.3800048828125 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 + "x": 0.49938800489596086, + "y": 0.2922924659267501 }, "_id": "" }, @@ -8214,7 +8214,7 @@ "fileId": "cbgM5DGBlEgaEqRitiSo0L" }, { - "__type__": "cc.Sprite", + "__type__": "sp.Skeleton", "_name": "", "_objFlags": 0, "__editorExtras__": {}, @@ -8235,28 +8235,28 @@ "b": 255, "a": 255 }, - "_spriteFrame": { - "__uuid__": "d40e81b9-aba7-42d0-86e2-1efa9f42a294@f9941", - "__expectedType__": "cc.SpriteFrame" + "_skeletonData": { + "__uuid__": "4a208b24-7c3e-4c7e-b199-5a62190dfac2", + "__expectedType__": "sp.SkeletonData" }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, + "defaultSkin": "default", + "defaultAnimation": "animation", + "_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": "e2kK8bDTZD2qfrUQTYDbtI" + "fileId": "46gH7kb9NFML3nV6lfyji8" }, { "__type__": "cc.PrefabInfo", @@ -8342,7 +8342,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "1a6pUIhOJKUYckHbGgHVu/" + "fileId": "7aGy0hm7xFb7F9FDS/GEhF" }, { "__type__": "cc.PrefabInfo", @@ -8371,19 +8371,22 @@ }, { "__id__": 447 + }, + { + "__id__": 453 } ], "_active": false, "_components": [ { - "__id__": 453 + "__id__": 459 }, { - "__id__": 455 + "__id__": 461 } ], "_prefab": { - "__id__": 457 + "__id__": 463 }, "_lpos": { "__type__": "cc.Vec3", @@ -8872,7 +8875,7 @@ }, { "__type__": "cc.Node", - "_name": "pmd3_zz", + "_name": "pmd3_sprite", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -8894,7 +8897,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": -14, "z": 0 }, "_lrot": { @@ -8939,14 +8942,14 @@ }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 + "x": 0.4993894993894994, + "y": 0.3567302436327813 }, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "cfsoED4TRIS71Ka3sCd0on" + "fileId": "01JsoUC7NBird05lYYTD89" }, { "__type__": "cc.Sprite", @@ -8991,7 +8994,143 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "4dZSBow5BP1KtqCSOkaI9j" + "fileId": "164LfC3gtOW4QNMaoFbyKG" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eeVZH5PMZNMpGwfijtbA8a", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pmd3_spine", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 426 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 454 + }, + { + "__id__": 456 + } + ], + "_prefab": { + "__id__": 458 + }, + "_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__": 453 + }, + "_enabled": true, + "__prefab": { + "__id__": 455 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 819, + "height": 711.489990234375 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.4993894993894994, + "y": 0.3567302436327813 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfsoED4TRIS71Ka3sCd0on" + }, + { + "__type__": "sp.Skeleton", + "_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 + }, + "_skeletonData": { + "__uuid__": "f239db8d-3e11-4e07-a5e7-70308e19d181", + "__expectedType__": "sp.SkeletonData" + }, + "defaultSkin": "default", + "defaultAnimation": "", + "_premultipliedAlpha": false, + "_timeScale": 2, + "_preCacheMode": 0, + "_cacheMode": 0, + "_sockets": [], + "_useTint": false, + "_debugMesh": false, + "_debugBones": false, + "_debugSlots": false, + "_enableBatch": false, + "loop": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c4WouUXWtPq7GTne+Dm7c3" }, { "__type__": "cc.PrefabInfo", @@ -9016,7 +9155,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 454 + "__id__": 460 }, "_contentSize": { "__type__": "cc.Size", @@ -9044,7 +9183,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 456 + "__id__": 462 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9102,7 +9241,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 459 + "__id__": 465 }, "_contentSize": { "__type__": "cc.Size", @@ -9143,20 +9282,20 @@ }, "_children": [ { - "__id__": 462 + "__id__": 468 }, { - "__id__": 468 + "__id__": 474 } ], "_active": false, "_components": [ { - "__id__": 498 + "__id__": 504 } ], "_prefab": { - "__id__": 500 + "__id__": 506 }, "_lpos": { "__type__": "cc.Vec3", @@ -9193,20 +9332,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 461 + "__id__": 467 }, "_children": [], "_active": true, "_components": [ { - "__id__": 463 + "__id__": 469 }, { - "__id__": 465 + "__id__": 471 } ], "_prefab": { - "__id__": 467 + "__id__": 473 }, "_lpos": { "__type__": "cc.Vec3", @@ -9243,11 +9382,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 462 + "__id__": 468 }, "_enabled": true, "__prefab": { - "__id__": 464 + "__id__": 470 }, "_contentSize": { "__type__": "cc.Size", @@ -9271,11 +9410,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 462 + "__id__": 468 }, "_enabled": true, "__prefab": { - "__id__": 466 + "__id__": 472 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9329,27 +9468,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 461 + "__id__": 467 }, "_children": [ { - "__id__": 469 + "__id__": 475 }, { - "__id__": 485 + "__id__": 491 } ], "_active": true, "_components": [ { - "__id__": 493 + "__id__": 499 }, { - "__id__": 495 + "__id__": 501 } ], "_prefab": { - "__id__": 497 + "__id__": 503 }, "_lpos": { "__type__": "cc.Vec3", @@ -9386,24 +9525,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 468 + "__id__": 474 }, "_children": [ { - "__id__": 470 + "__id__": 476 }, { - "__id__": 476 + "__id__": 482 } ], "_active": true, "_components": [ { - "__id__": 482 + "__id__": 488 } ], "_prefab": { - "__id__": 484 + "__id__": 490 }, "_lpos": { "__type__": "cc.Vec3", @@ -9440,144 +9579,8 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 469 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 471 - }, - { - "__id__": 473 - } - ], - "_prefab": { "__id__": 475 }, - "_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__": 470 - }, - "_enabled": true, - "__prefab": { - "__id__": 472 - }, - "_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__": 470 - }, - "_enabled": true, - "__prefab": { - "__id__": 474 - }, - "_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__": 469 - }, "_children": [], "_active": true, "_components": [ @@ -9646,7 +9649,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "c3yzwb7T5O96Ko9DawIvn5" + "fileId": "f3u4AWzrxJ9bi/v+DzULTt" }, { "__type__": "cc.Sprite", @@ -9670,6 +9673,142 @@ "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__": 475 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 483 + }, + { + "__id__": 485 + } + ], + "_prefab": { + "__id__": 487 + }, + "_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__": 482 + }, + "_enabled": true, + "__prefab": { + "__id__": 484 + }, + "_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__": 482 + }, + "_enabled": true, + "__prefab": { + "__id__": 486 + }, + "_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" @@ -9712,11 +9851,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 475 }, "_enabled": true, "__prefab": { - "__id__": 483 + "__id__": 489 }, "_contentSize": { "__type__": "cc.Size", @@ -9753,23 +9892,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 468 + "__id__": 474 }, "_children": [], "_active": true, "_components": [ { - "__id__": 486 + "__id__": 492 }, { - "__id__": 488 + "__id__": 494 }, { - "__id__": 490 + "__id__": 496 } ], "_prefab": { - "__id__": 492 + "__id__": 498 }, "_lpos": { "__type__": "cc.Vec3", @@ -9806,11 +9945,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 491 }, "_enabled": true, "__prefab": { - "__id__": 487 + "__id__": 493 }, "_contentSize": { "__type__": "cc.Size", @@ -9834,11 +9973,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 491 }, "_enabled": true, "__prefab": { - "__id__": 489 + "__id__": 495 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9905,11 +10044,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 491 }, "_enabled": true, "__prefab": { - "__id__": 491 + "__id__": 497 }, "isBold": false, "fontOther": { @@ -9961,11 +10100,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 468 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 494 + "__id__": 500 }, "_contentSize": { "__type__": "cc.Size", @@ -9989,11 +10128,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 468 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 496 + "__id__": 502 }, "_resizeMode": 1, "_layoutType": 1, @@ -10040,11 +10179,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 467 }, "_enabled": true, "__prefab": { - "__id__": 499 + "__id__": 505 }, "_contentSize": { "__type__": "cc.Size", @@ -10085,7 +10224,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 502 + "__id__": 508 }, "_contentSize": { "__type__": "cc.Size", @@ -10113,24 +10252,23 @@ }, "_enabled": true, "__prefab": { - "__id__": 504 + "__id__": 510 }, - "smallMsgSpine": { - "__id__": 391 + "smallMsgNode": { + "__id__": 366 }, - "middleMsgSpine": { - "__id__": 423 + "middleMsgNode": { + "__id__": 394 }, - "largeMsgSpine": { - "__id__": 455 + "largeMsgNode": { + "__id__": 426 }, "i18nSpriteMsg": { "__id__": 371 }, "grayMsgNode": { - "__id__": 461 + "__id__": 467 }, - "multiNode": null, "_id": "" }, { @@ -10147,7 +10285,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 506 + "__id__": 512 }, "_alignFlags": 45, "_target": null, @@ -10196,17 +10334,17 @@ }, "_children": [ { - "__id__": 509 + "__id__": 515 } ], "_active": true, "_components": [ { - "__id__": 608 + "__id__": 614 } ], "_prefab": { - "__id__": 610 + "__id__": 616 }, "_lpos": { "__type__": "cc.Vec3", @@ -10243,27 +10381,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 508 + "__id__": 514 }, "_children": [ { - "__id__": 510 + "__id__": 516 }, { - "__id__": 554 + "__id__": 560 }, { - "__id__": 572 + "__id__": 578 } ], "_active": true, "_components": [ { - "__id__": 605 + "__id__": 611 } ], "_prefab": { - "__id__": 607 + "__id__": 613 }, "_lpos": { "__type__": "cc.Vec3", @@ -10300,33 +10438,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 509 + "__id__": 515 }, "_children": [ - { - "__id__": 511 - }, { "__id__": 517 }, { - "__id__": 525 + "__id__": 523 }, { - "__id__": 539 + "__id__": 531 }, { "__id__": 545 + }, + { + "__id__": 551 } ], "_active": false, "_components": [ { - "__id__": 551 + "__id__": 557 } ], "_prefab": { - "__id__": 553 + "__id__": 559 }, "_lpos": { "__type__": "cc.Vec3", @@ -10363,20 +10501,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 510 + "__id__": 516 }, "_children": [], "_active": true, "_components": [ { - "__id__": 512 + "__id__": 518 }, { - "__id__": 514 + "__id__": 520 } ], "_prefab": { - "__id__": 516 + "__id__": 522 }, "_lpos": { "__type__": "cc.Vec3", @@ -10413,11 +10551,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 517 }, "_enabled": true, "__prefab": { - "__id__": 513 + "__id__": 519 }, "_contentSize": { "__type__": "cc.Size", @@ -10441,11 +10579,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 517 }, "_enabled": true, "__prefab": { - "__id__": 515 + "__id__": 521 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10499,23 +10637,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 510 + "__id__": 516 }, "_children": [], "_active": true, "_components": [ { - "__id__": 518 + "__id__": 524 }, { - "__id__": 520 + "__id__": 526 }, { - "__id__": 522 + "__id__": 528 } ], "_prefab": { - "__id__": 524 + "__id__": 530 }, "_lpos": { "__type__": "cc.Vec3", @@ -10552,11 +10690,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 523 }, "_enabled": true, "__prefab": { - "__id__": 519 + "__id__": 525 }, "_contentSize": { "__type__": "cc.Size", @@ -10580,11 +10718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 523 }, "_enabled": true, "__prefab": { - "__id__": 521 + "__id__": 527 }, "isBold": true, "fontOther": { @@ -10623,11 +10761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 523 }, "_enabled": true, "__prefab": { - "__id__": 523 + "__id__": 529 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10704,24 +10842,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 510 + "__id__": 516 }, "_children": [ { - "__id__": 526 + "__id__": 532 } ], "_active": true, "_components": [ { - "__id__": 534 + "__id__": 540 }, { - "__id__": 536 + "__id__": 542 } ], "_prefab": { - "__id__": 538 + "__id__": 544 }, "_lpos": { "__type__": "cc.Vec3", @@ -10758,23 +10896,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 525 + "__id__": 531 }, "_children": [], "_active": true, "_components": [ { - "__id__": 527 + "__id__": 533 }, { - "__id__": 529 + "__id__": 535 }, { - "__id__": 531 + "__id__": 537 } ], "_prefab": { - "__id__": 533 + "__id__": 539 }, "_lpos": { "__type__": "cc.Vec3", @@ -10811,11 +10949,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 532 }, "_enabled": true, "__prefab": { - "__id__": 528 + "__id__": 534 }, "_contentSize": { "__type__": "cc.Size", @@ -10839,11 +10977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 532 }, "_enabled": true, "__prefab": { - "__id__": 530 + "__id__": 536 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10907,11 +11045,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 526 + "__id__": 532 }, "_enabled": true, "__prefab": { - "__id__": 532 + "__id__": 538 }, "isBold": true, "fontOther": { @@ -10963,11 +11101,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 531 }, "_enabled": true, "__prefab": { - "__id__": 535 + "__id__": 541 }, "_contentSize": { "__type__": "cc.Size", @@ -10991,11 +11129,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 531 }, "_enabled": true, "__prefab": { - "__id__": 537 + "__id__": 543 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11049,20 +11187,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 510 + "__id__": 516 }, "_children": [], "_active": true, "_components": [ { - "__id__": 540 + "__id__": 546 }, { - "__id__": 542 + "__id__": 548 } ], "_prefab": { - "__id__": 544 + "__id__": 550 }, "_lpos": { "__type__": "cc.Vec3", @@ -11099,11 +11237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 539 + "__id__": 545 }, "_enabled": true, "__prefab": { - "__id__": 541 + "__id__": 547 }, "_contentSize": { "__type__": "cc.Size", @@ -11127,11 +11265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 539 + "__id__": 545 }, "_enabled": true, "__prefab": { - "__id__": 543 + "__id__": 549 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11211,20 +11349,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 510 + "__id__": 516 }, "_children": [], "_active": true, "_components": [ { - "__id__": 546 + "__id__": 552 }, { - "__id__": 548 + "__id__": 554 } ], "_prefab": { - "__id__": 550 + "__id__": 556 }, "_lpos": { "__type__": "cc.Vec3", @@ -11261,11 +11399,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 545 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 547 + "__id__": 553 }, "_contentSize": { "__type__": "cc.Size", @@ -11289,11 +11427,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 545 + "__id__": 551 }, "_enabled": true, "__prefab": { - "__id__": 549 + "__id__": 555 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11347,11 +11485,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 510 + "__id__": 516 }, "_enabled": true, "__prefab": { - "__id__": 552 + "__id__": 558 }, "_contentSize": { "__type__": "cc.Size", @@ -11388,24 +11526,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 509 + "__id__": 515 }, "_children": [ { - "__id__": 555 + "__id__": 561 }, { - "__id__": 561 + "__id__": 567 } ], "_active": true, "_components": [ { - "__id__": 569 + "__id__": 575 } ], "_prefab": { - "__id__": 571 + "__id__": 577 }, "_lpos": { "__type__": "cc.Vec3", @@ -11442,20 +11580,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 554 + "__id__": 560 }, "_children": [], "_active": true, "_components": [ { - "__id__": 556 + "__id__": 562 }, { - "__id__": 558 + "__id__": 564 } ], "_prefab": { - "__id__": 560 + "__id__": 566 }, "_lpos": { "__type__": "cc.Vec3", @@ -11492,11 +11630,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 555 + "__id__": 561 }, "_enabled": true, "__prefab": { - "__id__": 557 + "__id__": 563 }, "_contentSize": { "__type__": "cc.Size", @@ -11520,11 +11658,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 555 + "__id__": 561 }, "_enabled": true, "__prefab": { - "__id__": 559 + "__id__": 565 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11578,23 +11716,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 554 + "__id__": 560 }, "_children": [], "_active": true, "_components": [ { - "__id__": 562 + "__id__": 568 }, { - "__id__": 564 + "__id__": 570 }, { - "__id__": 566 + "__id__": 572 } ], "_prefab": { - "__id__": 568 + "__id__": 574 }, "_lpos": { "__type__": "cc.Vec3", @@ -11631,11 +11769,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 561 + "__id__": 567 }, "_enabled": true, "__prefab": { - "__id__": 563 + "__id__": 569 }, "_contentSize": { "__type__": "cc.Size", @@ -11659,11 +11797,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 561 + "__id__": 567 }, "_enabled": true, "__prefab": { - "__id__": 565 + "__id__": 571 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11704,11 +11842,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 561 + "__id__": 567 }, "_enabled": true, "__prefab": { - "__id__": 567 + "__id__": 573 }, "spriteName": "Normal5", "_id": "" @@ -11736,11 +11874,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 554 + "__id__": 560 }, "_enabled": true, "__prefab": { - "__id__": 570 + "__id__": 576 }, "_contentSize": { "__type__": "cc.Size", @@ -11777,12 +11915,9 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 509 + "__id__": 515 }, "_children": [ - { - "__id__": 573 - }, { "__id__": 579 }, @@ -11791,22 +11926,25 @@ }, { "__id__": 591 + }, + { + "__id__": 597 } ], "_active": true, "_components": [ { - "__id__": 597 + "__id__": 603 }, { - "__id__": 599 + "__id__": 605 }, { - "__id__": 602 + "__id__": 608 } ], "_prefab": { - "__id__": 604 + "__id__": 610 }, "_lpos": { "__type__": "cc.Vec3", @@ -11843,146 +11981,10 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 572 + "__id__": 578 }, "_children": [], "_active": true, - "_components": [ - { - "__id__": 574 - }, - { - "__id__": 576 - } - ], - "_prefab": { - "__id__": 578 - }, - "_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__": 573 - }, - "_enabled": true, - "__prefab": { - "__id__": 575 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 123, - "height": 54 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a4XnbuPINDLIT1v0O8rVf2" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 573 - }, - "_enabled": true, - "__prefab": { - "__id__": 577 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@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": "47magF16BABpIAffYWwkUt" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b7f6HXTSRAgIHOtVSmAlB8", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "pt_13", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 572 - }, - "_children": [], - "_active": false, "_components": [ { "__id__": 580 @@ -12049,7 +12051,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "f5T3BPSNdO/pvX1hmX97RB" + "fileId": "a4XnbuPINDLIT1v0O8rVf2" }, { "__type__": "cc.Sprite", @@ -12073,6 +12075,142 @@ "b": 255, "a": 255 }, + "_spriteFrame": { + "__uuid__": "26dde885-3e57-4a69-8a26-a2eb4c904b7e@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": "47magF16BABpIAffYWwkUt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7f6HXTSRAgIHOtVSmAlB8", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pt_13", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 578 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 586 + }, + { + "__id__": 588 + } + ], + "_prefab": { + "__id__": 590 + }, + "_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__": 585 + }, + "_enabled": true, + "__prefab": { + "__id__": 587 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 123, + "height": 54 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f5T3BPSNdO/pvX1hmX97RB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 585 + }, + "_enabled": true, + "__prefab": { + "__id__": 589 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, "_spriteFrame": { "__uuid__": "bcdd2794-92bc-4204-ace8-3cb57366af3d@f9941", "__expectedType__": "cc.SpriteFrame" @@ -12115,20 +12253,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 572 + "__id__": 578 }, "_children": [], "_active": false, "_components": [ { - "__id__": 586 + "__id__": 592 }, { - "__id__": 588 + "__id__": 594 } ], "_prefab": { - "__id__": 590 + "__id__": 596 }, "_lpos": { "__type__": "cc.Vec3", @@ -12165,11 +12303,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 585 + "__id__": 591 }, "_enabled": true, "__prefab": { - "__id__": 587 + "__id__": 593 }, "_contentSize": { "__type__": "cc.Size", @@ -12193,11 +12331,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 585 + "__id__": 591 }, "_enabled": true, "__prefab": { - "__id__": 589 + "__id__": 595 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12251,20 +12389,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 572 + "__id__": 578 }, "_children": [], "_active": true, "_components": [ { - "__id__": 592 + "__id__": 598 }, { - "__id__": 594 + "__id__": 600 } ], "_prefab": { - "__id__": 596 + "__id__": 602 }, "_lpos": { "__type__": "cc.Vec3", @@ -12301,11 +12439,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 591 + "__id__": 597 }, "_enabled": true, "__prefab": { - "__id__": 593 + "__id__": 599 }, "_contentSize": { "__type__": "cc.Size", @@ -12329,11 +12467,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 591 + "__id__": 597 }, "_enabled": true, "__prefab": { - "__id__": 595 + "__id__": 601 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12387,11 +12525,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 572 + "__id__": 578 }, "_enabled": true, "__prefab": { - "__id__": 598 + "__id__": 604 }, "_contentSize": { "__type__": "cc.Size", @@ -12415,15 +12553,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 572 + "__id__": 578 }, "_enabled": true, "__prefab": { - "__id__": 600 + "__id__": 606 }, "clickEvents": [ { - "__id__": 601 + "__id__": 607 } ], "_interactable": true, @@ -12463,7 +12601,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 509 + "__id__": 515 }, "_id": "" }, @@ -12487,11 +12625,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 572 + "__id__": 578 }, "_enabled": true, "__prefab": { - "__id__": 603 + "__id__": 609 }, "_opacity": 255, "_id": "" @@ -12519,11 +12657,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 509 + "__id__": 515 }, "_enabled": true, "__prefab": { - "__id__": 606 + "__id__": 612 }, "_contentSize": { "__type__": "cc.Size", @@ -12560,11 +12698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 508 + "__id__": 514 }, "_enabled": true, "__prefab": { - "__id__": 609 + "__id__": 615 }, "_contentSize": { "__type__": "cc.Size", @@ -12605,7 +12743,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 612 + "__id__": 618 }, "_contentSize": { "__type__": "cc.Size", @@ -12633,7 +12771,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 614 + "__id__": 620 }, "_alignFlags": 45, "_target": null, @@ -12669,7 +12807,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 616 + "__id__": 622 }, "rollerManager": { "__id__": 262 @@ -12687,7 +12825,7 @@ "__id__": 331 }, "doubleWinBtnNode": { - "__id__": 509 + "__id__": 515 }, "_id": "" }, @@ -12718,38 +12856,38 @@ }, "_children": [ { - "__id__": 619 + "__id__": 625 }, { - "__id__": 715 + "__id__": 721 }, { - "__id__": 845 + "__id__": 851 }, { - "__id__": 975 + "__id__": 981 }, { - "__id__": 1011 + "__id__": 1017 }, { - "__id__": 1101 + "__id__": 1107 } ], "_active": true, "_components": [ { - "__id__": 1110 + "__id__": 1116 }, { - "__id__": 1112 + "__id__": 1118 }, { - "__id__": 1114 + "__id__": 1120 } ], "_prefab": { - "__id__": 1130 + "__id__": 1136 }, "_lpos": { "__type__": "cc.Vec3", @@ -12786,24 +12924,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 618 + "__id__": 624 }, "_children": [ { - "__id__": 620 + "__id__": 626 }, { - "__id__": 660 + "__id__": 666 } ], "_active": true, "_components": [ { - "__id__": 712 + "__id__": 718 } ], "_prefab": { - "__id__": 714 + "__id__": 720 }, "_lpos": { "__type__": "cc.Vec3", @@ -12840,27 +12978,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 619 + "__id__": 625 }, "_children": [ { - "__id__": 621 + "__id__": 627 }, { - "__id__": 633 + "__id__": 639 }, { - "__id__": 645 + "__id__": 651 } ], "_active": true, "_components": [ { - "__id__": 657 + "__id__": 663 } ], "_prefab": { - "__id__": 659 + "__id__": 665 }, "_lpos": { "__type__": "cc.Vec3", @@ -12897,24 +13035,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 620 + "__id__": 626 }, "_children": [ { - "__id__": 622 + "__id__": 628 } ], "_active": true, "_components": [ { - "__id__": 628 + "__id__": 634 }, { - "__id__": 630 + "__id__": 636 } ], "_prefab": { - "__id__": 632 + "__id__": 638 }, "_lpos": { "__type__": "cc.Vec3", @@ -12951,20 +13089,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 621 + "__id__": 627 }, "_children": [], "_active": true, "_components": [ { - "__id__": 623 + "__id__": 629 }, { - "__id__": 625 + "__id__": 631 } ], "_prefab": { - "__id__": 627 + "__id__": 633 }, "_lpos": { "__type__": "cc.Vec3", @@ -13001,11 +13139,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 622 + "__id__": 628 }, "_enabled": true, "__prefab": { - "__id__": 624 + "__id__": 630 }, "_contentSize": { "__type__": "cc.Size", @@ -13029,11 +13167,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 622 + "__id__": 628 }, "_enabled": true, "__prefab": { - "__id__": 626 + "__id__": 632 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13087,11 +13225,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 621 + "__id__": 627 }, "_enabled": true, "__prefab": { - "__id__": 629 + "__id__": 635 }, "_contentSize": { "__type__": "cc.Size", @@ -13115,11 +13253,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 621 + "__id__": 627 }, "_enabled": true, "__prefab": { - "__id__": 631 + "__id__": 637 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13173,24 +13311,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 620 + "__id__": 626 }, "_children": [ { - "__id__": 634 + "__id__": 640 } ], "_active": true, "_components": [ { - "__id__": 640 + "__id__": 646 }, { - "__id__": 642 + "__id__": 648 } ], "_prefab": { - "__id__": 644 + "__id__": 650 }, "_lpos": { "__type__": "cc.Vec3", @@ -13227,20 +13365,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 633 + "__id__": 639 }, "_children": [], "_active": true, "_components": [ { - "__id__": 635 + "__id__": 641 }, { - "__id__": 637 + "__id__": 643 } ], "_prefab": { - "__id__": 639 + "__id__": 645 }, "_lpos": { "__type__": "cc.Vec3", @@ -13277,11 +13415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 634 + "__id__": 640 }, "_enabled": true, "__prefab": { - "__id__": 636 + "__id__": 642 }, "_contentSize": { "__type__": "cc.Size", @@ -13305,11 +13443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 634 + "__id__": 640 }, "_enabled": true, "__prefab": { - "__id__": 638 + "__id__": 644 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13363,11 +13501,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 633 + "__id__": 639 }, "_enabled": true, "__prefab": { - "__id__": 641 + "__id__": 647 }, "_contentSize": { "__type__": "cc.Size", @@ -13391,11 +13529,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 633 + "__id__": 639 }, "_enabled": true, "__prefab": { - "__id__": 643 + "__id__": 649 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13449,24 +13587,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 620 + "__id__": 626 }, "_children": [ { - "__id__": 646 + "__id__": 652 } ], "_active": true, "_components": [ { - "__id__": 652 + "__id__": 658 }, { - "__id__": 654 + "__id__": 660 } ], "_prefab": { - "__id__": 656 + "__id__": 662 }, "_lpos": { "__type__": "cc.Vec3", @@ -13503,20 +13641,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 645 + "__id__": 651 }, "_children": [], "_active": true, "_components": [ { - "__id__": 647 + "__id__": 653 }, { - "__id__": 649 + "__id__": 655 } ], "_prefab": { - "__id__": 651 + "__id__": 657 }, "_lpos": { "__type__": "cc.Vec3", @@ -13553,11 +13691,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 646 + "__id__": 652 }, "_enabled": true, "__prefab": { - "__id__": 648 + "__id__": 654 }, "_contentSize": { "__type__": "cc.Size", @@ -13581,11 +13719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 646 + "__id__": 652 }, "_enabled": true, "__prefab": { - "__id__": 650 + "__id__": 656 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13639,11 +13777,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 645 + "__id__": 651 }, "_enabled": true, "__prefab": { - "__id__": 653 + "__id__": 659 }, "_contentSize": { "__type__": "cc.Size", @@ -13667,11 +13805,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 645 + "__id__": 651 }, "_enabled": true, "__prefab": { - "__id__": 655 + "__id__": 661 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13725,11 +13863,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 620 + "__id__": 626 }, "_enabled": true, "__prefab": { - "__id__": 658 + "__id__": 664 }, "_contentSize": { "__type__": "cc.Size", @@ -13766,36 +13904,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 619 + "__id__": 625 }, "_children": [ { - "__id__": 661 + "__id__": 667 }, { - "__id__": 671 + "__id__": 677 }, { - "__id__": 681 - }, - { - "__id__": 691 + "__id__": 687 }, { "__id__": 697 }, { "__id__": 703 + }, + { + "__id__": 709 } ], "_active": true, "_components": [ { - "__id__": 709 + "__id__": 715 } ], "_prefab": { - "__id__": 711 + "__id__": 717 }, "_lpos": { "__type__": "cc.Vec3", @@ -13832,26 +13970,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 660 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 662 - }, - { - "__id__": 664 - }, - { - "__id__": 666 - }, { "__id__": 668 + }, + { + "__id__": 670 + }, + { + "__id__": 672 + }, + { + "__id__": 674 } ], "_prefab": { - "__id__": 670 + "__id__": 676 }, "_lpos": { "__type__": "cc.Vec3", @@ -13888,11 +14026,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 661 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 663 + "__id__": 669 }, "_contentSize": { "__type__": "cc.Size", @@ -13916,11 +14054,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 661 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 665 + "__id__": 671 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13987,11 +14125,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 661 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 667 + "__id__": 673 }, "key": "AID_MAIN_SHOW_BALANCE", "_id": "" @@ -14006,11 +14144,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 661 + "__id__": 667 }, "_enabled": true, "__prefab": { - "__id__": 669 + "__id__": 675 }, "isBold": true, "fontOther": { @@ -14062,26 +14200,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 660 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 672 - }, - { - "__id__": 674 - }, - { - "__id__": 676 - }, { "__id__": 678 + }, + { + "__id__": 680 + }, + { + "__id__": 682 + }, + { + "__id__": 684 } ], "_prefab": { - "__id__": 680 + "__id__": 686 }, "_lpos": { "__type__": "cc.Vec3", @@ -14118,11 +14256,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 671 + "__id__": 677 }, "_enabled": true, "__prefab": { - "__id__": 673 + "__id__": 679 }, "_contentSize": { "__type__": "cc.Size", @@ -14146,11 +14284,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 671 + "__id__": 677 }, "_enabled": true, "__prefab": { - "__id__": 675 + "__id__": 681 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14217,11 +14355,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 671 + "__id__": 677 }, "_enabled": true, "__prefab": { - "__id__": 677 + "__id__": 683 }, "key": "AID_MAIN_SHOW_BET", "_id": "" @@ -14236,11 +14374,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 671 + "__id__": 677 }, "_enabled": true, "__prefab": { - "__id__": 679 + "__id__": 685 }, "isBold": true, "fontOther": { @@ -14292,26 +14430,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 660 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 682 - }, - { - "__id__": 684 - }, - { - "__id__": 686 - }, { "__id__": 688 + }, + { + "__id__": 690 + }, + { + "__id__": 692 + }, + { + "__id__": 694 } ], "_prefab": { - "__id__": 690 + "__id__": 696 }, "_lpos": { "__type__": "cc.Vec3", @@ -14348,11 +14486,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 687 }, "_enabled": true, "__prefab": { - "__id__": 683 + "__id__": 689 }, "_contentSize": { "__type__": "cc.Size", @@ -14376,11 +14514,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 687 }, "_enabled": true, "__prefab": { - "__id__": 685 + "__id__": 691 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14447,11 +14585,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 687 }, "_enabled": true, "__prefab": { - "__id__": 687 + "__id__": 693 }, "key": "AID_MAIN_SHOW_WIN", "_id": "" @@ -14466,11 +14604,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 681 + "__id__": 687 }, "_enabled": true, "__prefab": { - "__id__": 689 + "__id__": 695 }, "isBold": true, "fontOther": { @@ -14522,20 +14660,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 660 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 692 + "__id__": 698 }, { - "__id__": 694 + "__id__": 700 } ], "_prefab": { - "__id__": 696 + "__id__": 702 }, "_lpos": { "__type__": "cc.Vec3", @@ -14572,11 +14710,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 691 + "__id__": 697 }, "_enabled": true, "__prefab": { - "__id__": 693 + "__id__": 699 }, "_contentSize": { "__type__": "cc.Size", @@ -14600,11 +14738,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 691 + "__id__": 697 }, "_enabled": true, "__prefab": { - "__id__": 695 + "__id__": 701 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14684,20 +14822,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 660 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 698 + "__id__": 704 }, { - "__id__": 700 + "__id__": 706 } ], "_prefab": { - "__id__": 702 + "__id__": 708 }, "_lpos": { "__type__": "cc.Vec3", @@ -14734,11 +14872,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 697 + "__id__": 703 }, "_enabled": true, "__prefab": { - "__id__": 699 + "__id__": 705 }, "_contentSize": { "__type__": "cc.Size", @@ -14762,11 +14900,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 697 + "__id__": 703 }, "_enabled": true, "__prefab": { - "__id__": 701 + "__id__": 707 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14846,20 +14984,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 660 + "__id__": 666 }, "_children": [], "_active": true, "_components": [ { - "__id__": 704 + "__id__": 710 }, { - "__id__": 706 + "__id__": 712 } ], "_prefab": { - "__id__": 708 + "__id__": 714 }, "_lpos": { "__type__": "cc.Vec3", @@ -14896,11 +15034,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 703 + "__id__": 709 }, "_enabled": true, "__prefab": { - "__id__": 705 + "__id__": 711 }, "_contentSize": { "__type__": "cc.Size", @@ -14924,11 +15062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 703 + "__id__": 709 }, "_enabled": true, "__prefab": { - "__id__": 707 + "__id__": 713 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15008,11 +15146,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 660 + "__id__": 666 }, "_enabled": true, "__prefab": { - "__id__": 710 + "__id__": 716 }, "_contentSize": { "__type__": "cc.Size", @@ -15049,11 +15187,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 619 + "__id__": 625 }, "_enabled": true, "__prefab": { - "__id__": 713 + "__id__": 719 }, "_contentSize": { "__type__": "cc.Size", @@ -15090,45 +15228,45 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 618 + "__id__": 624 }, "_children": [ { - "__id__": 716 + "__id__": 722 }, { - "__id__": 731 + "__id__": 737 }, { - "__id__": 746 + "__id__": 752 }, { - "__id__": 757 + "__id__": 763 }, { - "__id__": 768 + "__id__": 774 }, { - "__id__": 783 + "__id__": 789 }, { - "__id__": 798 + "__id__": 804 }, { - "__id__": 813 + "__id__": 819 } ], "_active": true, "_components": [ { - "__id__": 840 + "__id__": 846 }, { - "__id__": 842 + "__id__": 848 } ], "_prefab": { - "__id__": 844 + "__id__": 850 }, "_lpos": { "__type__": "cc.Vec3", @@ -15165,27 +15303,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 721 }, "_children": [ { - "__id__": 717 + "__id__": 723 } ], "_active": true, "_components": [ { - "__id__": 723 + "__id__": 729 }, { - "__id__": 725 + "__id__": 731 }, { - "__id__": 728 + "__id__": 734 } ], "_prefab": { - "__id__": 730 + "__id__": 736 }, "_lpos": { "__type__": "cc.Vec3", @@ -15222,20 +15360,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 716 + "__id__": 722 }, "_children": [], "_active": true, "_components": [ { - "__id__": 718 + "__id__": 724 }, { - "__id__": 720 + "__id__": 726 } ], "_prefab": { - "__id__": 722 + "__id__": 728 }, "_lpos": { "__type__": "cc.Vec3", @@ -15272,11 +15410,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 717 + "__id__": 723 }, "_enabled": true, "__prefab": { - "__id__": 719 + "__id__": 725 }, "_contentSize": { "__type__": "cc.Size", @@ -15300,11 +15438,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 717 + "__id__": 723 }, "_enabled": true, "__prefab": { - "__id__": 721 + "__id__": 727 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15358,11 +15496,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 716 + "__id__": 722 }, "_enabled": true, "__prefab": { - "__id__": 724 + "__id__": 730 }, "_contentSize": { "__type__": "cc.Size", @@ -15386,15 +15524,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 716 + "__id__": 722 }, "_enabled": true, "__prefab": { - "__id__": 726 + "__id__": 732 }, "clickEvents": [ { - "__id__": 727 + "__id__": 733 } ], "_interactable": true, @@ -15446,7 +15584,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 716 + "__id__": 722 }, "_id": "" }, @@ -15457,7 +15595,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -15470,11 +15608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 716 + "__id__": 722 }, "_enabled": true, "__prefab": { - "__id__": 729 + "__id__": 735 }, "_opacity": 255, "_id": "" @@ -15502,27 +15640,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 721 }, "_children": [ { - "__id__": 732 + "__id__": 738 } ], "_active": false, "_components": [ { - "__id__": 738 + "__id__": 744 }, { - "__id__": 740 + "__id__": 746 }, { - "__id__": 742 + "__id__": 748 } ], "_prefab": { - "__id__": 745 + "__id__": 751 }, "_lpos": { "__type__": "cc.Vec3", @@ -15559,20 +15697,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 731 + "__id__": 737 }, "_children": [], "_active": true, "_components": [ { - "__id__": 733 + "__id__": 739 }, { - "__id__": 735 + "__id__": 741 } ], "_prefab": { - "__id__": 737 + "__id__": 743 }, "_lpos": { "__type__": "cc.Vec3", @@ -15609,11 +15747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 732 + "__id__": 738 }, "_enabled": true, "__prefab": { - "__id__": 734 + "__id__": 740 }, "_contentSize": { "__type__": "cc.Size", @@ -15637,11 +15775,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 732 + "__id__": 738 }, "_enabled": true, "__prefab": { - "__id__": 736 + "__id__": 742 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15721,11 +15859,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 731 + "__id__": 737 }, "_enabled": true, "__prefab": { - "__id__": 739 + "__id__": 745 }, "_contentSize": { "__type__": "cc.Size", @@ -15749,11 +15887,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 731 + "__id__": 737 }, "_enabled": true, "__prefab": { - "__id__": 741 + "__id__": 747 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -15794,15 +15932,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 731 + "__id__": 737 }, "_enabled": true, "__prefab": { - "__id__": 743 + "__id__": 749 }, "clickEvents": [ { - "__id__": 744 + "__id__": 750 } ], "_interactable": true, @@ -15851,7 +15989,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -15877,26 +16015,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 721 }, "_children": [], "_active": true, "_components": [ { - "__id__": 747 + "__id__": 753 }, { - "__id__": 749 + "__id__": 755 }, { - "__id__": 751 + "__id__": 757 }, { - "__id__": 754 + "__id__": 760 } ], "_prefab": { - "__id__": 756 + "__id__": 762 }, "_lpos": { "__type__": "cc.Vec3", @@ -15933,11 +16071,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 746 + "__id__": 752 }, "_enabled": true, "__prefab": { - "__id__": 748 + "__id__": 754 }, "_contentSize": { "__type__": "cc.Size", @@ -15961,11 +16099,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 746 + "__id__": 752 }, "_enabled": true, "__prefab": { - "__id__": 750 + "__id__": 756 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16006,15 +16144,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 746 + "__id__": 752 }, "_enabled": true, "__prefab": { - "__id__": 752 + "__id__": 758 }, "clickEvents": [ { - "__id__": 753 + "__id__": 759 } ], "_interactable": true, @@ -16063,7 +16201,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -16076,11 +16214,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 746 + "__id__": 752 }, "_enabled": true, "__prefab": { - "__id__": 755 + "__id__": 761 }, "_opacity": 255, "_id": "" @@ -16108,26 +16246,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 721 }, "_children": [], "_active": true, "_components": [ { - "__id__": 758 + "__id__": 764 }, { - "__id__": 760 + "__id__": 766 }, { - "__id__": 762 + "__id__": 768 }, { - "__id__": 765 + "__id__": 771 } ], "_prefab": { - "__id__": 767 + "__id__": 773 }, "_lpos": { "__type__": "cc.Vec3", @@ -16164,11 +16302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 763 }, "_enabled": true, "__prefab": { - "__id__": 759 + "__id__": 765 }, "_contentSize": { "__type__": "cc.Size", @@ -16192,11 +16330,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 763 }, "_enabled": true, "__prefab": { - "__id__": 761 + "__id__": 767 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16237,15 +16375,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 763 }, "_enabled": true, "__prefab": { - "__id__": 763 + "__id__": 769 }, "clickEvents": [ { - "__id__": 764 + "__id__": 770 } ], "_interactable": true, @@ -16294,7 +16432,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -16307,11 +16445,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 757 + "__id__": 763 }, "_enabled": true, "__prefab": { - "__id__": 766 + "__id__": 772 }, "_opacity": 255, "_id": "" @@ -16339,27 +16477,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 721 }, "_children": [ { - "__id__": 769 + "__id__": 775 } ], "_active": true, "_components": [ { - "__id__": 775 + "__id__": 781 }, { - "__id__": 777 + "__id__": 783 }, { - "__id__": 780 + "__id__": 786 } ], "_prefab": { - "__id__": 782 + "__id__": 788 }, "_lpos": { "__type__": "cc.Vec3", @@ -16396,20 +16534,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 768 + "__id__": 774 }, "_children": [], "_active": true, "_components": [ { - "__id__": 770 + "__id__": 776 }, { - "__id__": 772 + "__id__": 778 } ], "_prefab": { - "__id__": 774 + "__id__": 780 }, "_lpos": { "__type__": "cc.Vec3", @@ -16446,11 +16584,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 775 }, "_enabled": true, "__prefab": { - "__id__": 771 + "__id__": 777 }, "_contentSize": { "__type__": "cc.Size", @@ -16474,11 +16612,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 769 + "__id__": 775 }, "_enabled": true, "__prefab": { - "__id__": 773 + "__id__": 779 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -16532,11 +16670,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 774 }, "_enabled": true, "__prefab": { - "__id__": 776 + "__id__": 782 }, "_contentSize": { "__type__": "cc.Size", @@ -16560,15 +16698,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 774 }, "_enabled": true, "__prefab": { - "__id__": 778 + "__id__": 784 }, "clickEvents": [ { - "__id__": 779 + "__id__": 785 } ], "_interactable": true, @@ -16617,7 +16755,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -16630,11 +16768,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 768 + "__id__": 774 }, "_enabled": true, "__prefab": { - "__id__": 781 + "__id__": 787 }, "_opacity": 255, "_id": "" @@ -16660,17 +16798,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 715 + "__id__": 721 }, "_prefab": { - "__id__": 784 + "__id__": 790 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 783 + "__id__": 789 }, "asset": { "__uuid__": "5f59d76b-2bb8-429d-88ff-59ca11f5cc86", @@ -16678,7 +16816,7 @@ }, "fileId": "4bE1J8xTZFH7iCEqkhoCQD", "instance": { - "__id__": 785 + "__id__": 791 }, "targetOverrides": null }, @@ -16692,28 +16830,28 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 786 + "__id__": 792 }, { - "__id__": 788 - }, - { - "__id__": 789 - }, - { - "__id__": 790 - }, - { - "__id__": 791 - }, - { - "__id__": 793 + "__id__": 794 }, { "__id__": 795 }, { "__id__": 796 + }, + { + "__id__": 797 + }, + { + "__id__": 799 + }, + { + "__id__": 801 + }, + { + "__id__": 802 } ], "removedComponents": [] @@ -16721,7 +16859,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 787 + "__id__": 793 }, "propertyPath": [ "_name" @@ -16737,7 +16875,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 787 + "__id__": 793 }, "propertyPath": [ "_lpos" @@ -16752,7 +16890,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 787 + "__id__": 793 }, "propertyPath": [ "_lrot" @@ -16768,7 +16906,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 787 + "__id__": 793 }, "propertyPath": [ "_euler" @@ -16783,7 +16921,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 792 + "__id__": 798 }, "propertyPath": [ "clickEvents", @@ -16800,20 +16938,20 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 792 + "__id__": 798 }, "propertyPath": [ "clickEvents", "0" ], "value": { - "__id__": 794 + "__id__": 800 } }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -16823,19 +16961,19 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 792 + "__id__": 798 }, "propertyPath": [ "_target" ], "value": { - "__id__": 783 + "__id__": 789 } }, { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 797 + "__id__": 803 }, "propertyPath": [ "_defaultClip" @@ -16855,17 +16993,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 715 + "__id__": 721 }, "_prefab": { - "__id__": 799 + "__id__": 805 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 798 + "__id__": 804 }, "asset": { "__uuid__": "b4e13e9b-1ee9-4811-8216-79bd4eeec776", @@ -16873,7 +17011,7 @@ }, "fileId": "a3vI+eIBhPnLnuNgWtjMLe", "instance": { - "__id__": 800 + "__id__": 806 }, "targetOverrides": null }, @@ -16887,28 +17025,28 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 801 + "__id__": 807 }, { - "__id__": 803 - }, - { - "__id__": 804 - }, - { - "__id__": 805 - }, - { - "__id__": 806 - }, - { - "__id__": 808 + "__id__": 809 }, { "__id__": 810 }, { "__id__": 811 + }, + { + "__id__": 812 + }, + { + "__id__": 814 + }, + { + "__id__": 816 + }, + { + "__id__": 817 } ], "removedComponents": [] @@ -16916,7 +17054,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 802 + "__id__": 808 }, "propertyPath": [ "_name" @@ -16932,7 +17070,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 802 + "__id__": 808 }, "propertyPath": [ "_lpos" @@ -16947,7 +17085,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 802 + "__id__": 808 }, "propertyPath": [ "_lrot" @@ -16963,7 +17101,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 802 + "__id__": 808 }, "propertyPath": [ "_euler" @@ -16978,7 +17116,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 807 + "__id__": 813 }, "propertyPath": [ "clickEvents", @@ -16995,20 +17133,20 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 807 + "__id__": 813 }, "propertyPath": [ "clickEvents", "0" ], "value": { - "__id__": 809 + "__id__": 815 } }, { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -17018,19 +17156,19 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 807 + "__id__": 813 }, "propertyPath": [ "_target" ], "value": { - "__id__": 798 + "__id__": 804 } }, { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 812 + "__id__": 818 }, "propertyPath": [ "_defaultClip" @@ -17052,38 +17190,38 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 715 + "__id__": 721 }, "_children": [ - { - "__id__": 814 - }, { "__id__": 820 }, { "__id__": 826 + }, + { + "__id__": 832 } ], "_active": true, "_components": [ { - "__id__": 832 + "__id__": 838 }, { - "__id__": 834 + "__id__": 840 }, { - "__id__": 837 + "__id__": 843 } ], "_prefab": { - "__id__": 839 + "__id__": 845 }, "_lpos": { "__type__": "cc.Vec3", - "x": -468.519, - "y": 51.00699999999995, + "x": -486.721, + "y": -0.967, "z": 0 }, "_lrot": { @@ -17115,146 +17253,10 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 819 }, "_children": [], "_active": true, - "_components": [ - { - "__id__": 815 - }, - { - "__id__": 817 - } - ], - "_prefab": { - "__id__": 819 - }, - "_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__": 814 - }, - "_enabled": true, - "__prefab": { - "__id__": 816 - }, - "_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__": 814 - }, - "_enabled": true, - "__prefab": { - "__id__": 818 - }, - "_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__": 813 - }, - "_children": [], - "_active": false, "_components": [ { "__id__": 821 @@ -17321,7 +17323,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "ccBW9AQfVNuJEFnTCeou35" + "fileId": "5aQJc5hQtPH5wegpCoFjsg" }, { "__type__": "cc.Sprite", @@ -17346,7 +17348,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "84253048-0179-445c-9ef4-8324a9b6a17c@f9941", + "__uuid__": "31a15ac8-4248-4724-b78f-b1fcff0617c1@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -17366,7 +17368,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "04tMK9ZxFBSp1Ty8qBrZPi" + "fileId": "54ZVjHcF1D27HMcJyO7box" }, { "__type__": "cc.PrefabInfo", @@ -17376,18 +17378,18 @@ "asset": { "__id__": 0 }, - "fileId": "52tUBtdIxMD7sq8rRmJ/lD", + "fileId": "5cdbK/en1N/o124vPvpM0F", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "IconDifficulty3", + "_name": "IconDifficulty2", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 813 + "__id__": 819 }, "_children": [], "_active": false, @@ -17457,7 +17459,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "e4CRhqZGBGzqxJBQdlvSBZ" + "fileId": "ccBW9AQfVNuJEFnTCeou35" }, { "__type__": "cc.Sprite", @@ -17481,6 +17483,142 @@ "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__": 819 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 833 + }, + { + "__id__": 835 + } + ], + "_prefab": { + "__id__": 837 + }, + "_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__": 832 + }, + "_enabled": true, + "__prefab": { + "__id__": 834 + }, + "_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__": 832 + }, + "_enabled": true, + "__prefab": { + "__id__": 836 + }, + "_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" @@ -17523,11 +17661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 819 }, "_enabled": true, "__prefab": { - "__id__": 833 + "__id__": 839 }, "_contentSize": { "__type__": "cc.Size", @@ -17551,15 +17689,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 819 }, "_enabled": true, "__prefab": { - "__id__": 835 + "__id__": 841 }, "clickEvents": [ { - "__id__": 836 + "__id__": 842 } ], "_interactable": true, @@ -17621,11 +17759,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 813 + "__id__": 819 }, "_enabled": true, "__prefab": { - "__id__": 838 + "__id__": 844 }, "_opacity": 255, "_id": "" @@ -17653,11 +17791,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 721 }, "_enabled": true, "__prefab": { - "__id__": 841 + "__id__": 847 }, "_contentSize": { "__type__": "cc.Size", @@ -17681,11 +17819,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 715 + "__id__": 721 }, "_enabled": true, "__prefab": { - "__id__": 843 + "__id__": 849 }, "_opacity": 255, "_id": "" @@ -17713,39 +17851,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 618 + "__id__": 624 }, "_children": [ { - "__id__": 846 + "__id__": 852 }, { - "__id__": 865 + "__id__": 871 }, { - "__id__": 894 + "__id__": 900 }, { - "__id__": 913 + "__id__": 919 }, { - "__id__": 932 + "__id__": 938 }, { - "__id__": 951 + "__id__": 957 } ], "_active": false, "_components": [ { - "__id__": 970 + "__id__": 976 }, { - "__id__": 972 + "__id__": 978 } ], "_prefab": { - "__id__": 974 + "__id__": 980 }, "_lpos": { "__type__": "cc.Vec3", @@ -17782,27 +17920,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 845 + "__id__": 851 }, "_children": [ { - "__id__": 847 + "__id__": 853 } ], "_active": true, "_components": [ { - "__id__": 857 + "__id__": 863 }, { - "__id__": 859 + "__id__": 865 }, { - "__id__": 861 + "__id__": 867 } ], "_prefab": { - "__id__": 864 + "__id__": 870 }, "_lpos": { "__type__": "cc.Vec3", @@ -17839,26 +17977,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 846 + "__id__": 852 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 848 - }, - { - "__id__": 850 - }, - { - "__id__": 852 - }, { "__id__": 854 + }, + { + "__id__": 856 + }, + { + "__id__": 858 + }, + { + "__id__": 860 } ], "_prefab": { - "__id__": 856 + "__id__": 862 }, "_lpos": { "__type__": "cc.Vec3", @@ -17895,11 +18033,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 847 + "__id__": 853 }, "_enabled": true, "__prefab": { - "__id__": 849 + "__id__": 855 }, "_contentSize": { "__type__": "cc.Size", @@ -17923,11 +18061,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 847 + "__id__": 853 }, "_enabled": true, "__prefab": { - "__id__": 851 + "__id__": 857 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17994,11 +18132,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 847 + "__id__": 853 }, "_enabled": true, "__prefab": { - "__id__": 853 + "__id__": 859 }, "key": "AID_MAIN_OPERATE_QUIT", "_id": "" @@ -18013,11 +18151,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 847 + "__id__": 853 }, "_enabled": true, "__prefab": { - "__id__": 855 + "__id__": 861 }, "isBold": false, "fontOther": { @@ -18069,11 +18207,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 858 + "__id__": 864 }, "_contentSize": { "__type__": "cc.Size", @@ -18097,11 +18235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 860 + "__id__": 866 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18142,15 +18280,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 846 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 862 + "__id__": 868 }, "clickEvents": [ { - "__id__": 863 + "__id__": 869 } ], "_interactable": true, @@ -18199,7 +18337,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18225,30 +18363,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 845 + "__id__": 851 }, "_children": [ - { - "__id__": 866 - }, { "__id__": 872 }, { "__id__": 878 + }, + { + "__id__": 884 } ], "_active": true, "_components": [ { - "__id__": 888 + "__id__": 894 }, { - "__id__": 890 + "__id__": 896 } ], "_prefab": { - "__id__": 893 + "__id__": 899 }, "_lpos": { "__type__": "cc.Vec3", @@ -18285,146 +18423,10 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 865 + "__id__": 871 }, "_children": [], "_active": true, - "_components": [ - { - "__id__": 867 - }, - { - "__id__": 869 - } - ], - "_prefab": { - "__id__": 871 - }, - "_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__": 866 - }, - "_enabled": true, - "__prefab": { - "__id__": 868 - }, - "_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__": 866 - }, - "_enabled": true, - "__prefab": { - "__id__": 870 - }, - "_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__": 865 - }, - "_children": [], - "_active": false, "_components": [ { "__id__": 873 @@ -18477,6 +18479,142 @@ "__prefab": { "__id__": 874 }, + "_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__": 872 + }, + "_enabled": true, + "__prefab": { + "__id__": 876 + }, + "_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__": 871 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 879 + }, + { + "__id__": 881 + } + ], + "_prefab": { + "__id__": 883 + }, + "_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__": 878 + }, + "_enabled": true, + "__prefab": { + "__id__": 880 + }, "_contentSize": { "__type__": "cc.Size", "width": 87, @@ -18499,11 +18637,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 872 + "__id__": 878 }, "_enabled": true, "__prefab": { - "__id__": 876 + "__id__": 882 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18557,26 +18695,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 865 + "__id__": 871 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 879 - }, - { - "__id__": 881 - }, - { - "__id__": 883 - }, { "__id__": 885 + }, + { + "__id__": 887 + }, + { + "__id__": 889 + }, + { + "__id__": 891 } ], "_prefab": { - "__id__": 887 + "__id__": 893 }, "_lpos": { "__type__": "cc.Vec3", @@ -18613,11 +18751,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 884 }, "_enabled": true, "__prefab": { - "__id__": 880 + "__id__": 886 }, "_contentSize": { "__type__": "cc.Size", @@ -18641,11 +18779,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 884 }, "_enabled": true, "__prefab": { - "__id__": 882 + "__id__": 888 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18712,11 +18850,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 884 }, "_enabled": true, "__prefab": { - "__id__": 884 + "__id__": 890 }, "key": "AID_MAIN_OPERATE_SOUND", "_id": "" @@ -18731,11 +18869,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 884 }, "_enabled": true, "__prefab": { - "__id__": 886 + "__id__": 892 }, "isBold": false, "fontOther": { @@ -18787,11 +18925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 865 + "__id__": 871 }, "_enabled": true, "__prefab": { - "__id__": 889 + "__id__": 895 }, "_contentSize": { "__type__": "cc.Size", @@ -18815,15 +18953,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 865 + "__id__": 871 }, "_enabled": true, "__prefab": { - "__id__": 891 + "__id__": 897 }, "clickEvents": [ { - "__id__": 892 + "__id__": 898 } ], "_interactable": true, @@ -18872,7 +19010,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -18898,27 +19036,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 845 + "__id__": 851 }, "_children": [ { - "__id__": 895 + "__id__": 901 } ], "_active": true, "_components": [ { - "__id__": 905 + "__id__": 911 }, { - "__id__": 907 + "__id__": 913 }, { - "__id__": 909 + "__id__": 915 } ], "_prefab": { - "__id__": 912 + "__id__": 918 }, "_lpos": { "__type__": "cc.Vec3", @@ -18955,26 +19093,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 894 + "__id__": 900 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 896 - }, - { - "__id__": 898 - }, - { - "__id__": 900 - }, { "__id__": 902 + }, + { + "__id__": 904 + }, + { + "__id__": 906 + }, + { + "__id__": 908 } ], "_prefab": { - "__id__": 904 + "__id__": 910 }, "_lpos": { "__type__": "cc.Vec3", @@ -19011,11 +19149,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 895 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 897 + "__id__": 903 }, "_contentSize": { "__type__": "cc.Size", @@ -19039,11 +19177,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 895 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 899 + "__id__": 905 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19110,11 +19248,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 895 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 901 + "__id__": 907 }, "key": "AID_MAIN_OPERATE_PAYTABLE", "_id": "" @@ -19129,11 +19267,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 895 + "__id__": 901 }, "_enabled": true, "__prefab": { - "__id__": 903 + "__id__": 909 }, "isBold": false, "fontOther": { @@ -19185,11 +19323,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 900 }, "_enabled": true, "__prefab": { - "__id__": 906 + "__id__": 912 }, "_contentSize": { "__type__": "cc.Size", @@ -19213,11 +19351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 900 }, "_enabled": true, "__prefab": { - "__id__": 908 + "__id__": 914 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19258,15 +19396,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 894 + "__id__": 900 }, "_enabled": true, "__prefab": { - "__id__": 910 + "__id__": 916 }, "clickEvents": [ { - "__id__": 911 + "__id__": 917 } ], "_interactable": true, @@ -19315,7 +19453,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -19341,27 +19479,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 845 + "__id__": 851 }, "_children": [ { - "__id__": 914 + "__id__": 920 } ], "_active": true, "_components": [ { - "__id__": 924 + "__id__": 930 }, { - "__id__": 926 + "__id__": 932 }, { - "__id__": 928 + "__id__": 934 } ], "_prefab": { - "__id__": 931 + "__id__": 937 }, "_lpos": { "__type__": "cc.Vec3", @@ -19398,26 +19536,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 913 + "__id__": 919 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 915 - }, - { - "__id__": 917 - }, - { - "__id__": 919 - }, { "__id__": 921 + }, + { + "__id__": 923 + }, + { + "__id__": 925 + }, + { + "__id__": 927 } ], "_prefab": { - "__id__": 923 + "__id__": 929 }, "_lpos": { "__type__": "cc.Vec3", @@ -19454,11 +19592,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 914 + "__id__": 920 }, "_enabled": true, "__prefab": { - "__id__": 916 + "__id__": 922 }, "_contentSize": { "__type__": "cc.Size", @@ -19482,11 +19620,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 914 + "__id__": 920 }, "_enabled": true, "__prefab": { - "__id__": 918 + "__id__": 924 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19553,11 +19691,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 914 + "__id__": 920 }, "_enabled": true, "__prefab": { - "__id__": 920 + "__id__": 926 }, "key": "AID_MAIN_OPERATE_RULES", "_id": "" @@ -19572,11 +19710,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 914 + "__id__": 920 }, "_enabled": true, "__prefab": { - "__id__": 922 + "__id__": 928 }, "isBold": false, "fontOther": { @@ -19628,11 +19766,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 913 + "__id__": 919 }, "_enabled": true, "__prefab": { - "__id__": 925 + "__id__": 931 }, "_contentSize": { "__type__": "cc.Size", @@ -19656,11 +19794,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 913 + "__id__": 919 }, "_enabled": true, "__prefab": { - "__id__": 927 + "__id__": 933 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19701,15 +19839,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 913 + "__id__": 919 }, "_enabled": true, "__prefab": { - "__id__": 929 + "__id__": 935 }, "clickEvents": [ { - "__id__": 930 + "__id__": 936 } ], "_interactable": true, @@ -19758,7 +19896,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -19784,27 +19922,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 845 + "__id__": 851 }, "_children": [ { - "__id__": 933 + "__id__": 939 } ], "_active": true, "_components": [ { - "__id__": 943 + "__id__": 949 }, { - "__id__": 945 + "__id__": 951 }, { - "__id__": 947 + "__id__": 953 } ], "_prefab": { - "__id__": 950 + "__id__": 956 }, "_lpos": { "__type__": "cc.Vec3", @@ -19841,26 +19979,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 932 + "__id__": 938 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 934 - }, - { - "__id__": 936 - }, - { - "__id__": 938 - }, { "__id__": 940 + }, + { + "__id__": 942 + }, + { + "__id__": 944 + }, + { + "__id__": 946 } ], "_prefab": { - "__id__": 942 + "__id__": 948 }, "_lpos": { "__type__": "cc.Vec3", @@ -19897,11 +20035,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 939 }, "_enabled": true, "__prefab": { - "__id__": 935 + "__id__": 941 }, "_contentSize": { "__type__": "cc.Size", @@ -19925,11 +20063,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 939 }, "_enabled": true, "__prefab": { - "__id__": 937 + "__id__": 943 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19996,11 +20134,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 939 }, "_enabled": true, "__prefab": { - "__id__": 939 + "__id__": 945 }, "key": "AID_MAIN_OPERATE_HISTORY", "_id": "" @@ -20015,11 +20153,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 933 + "__id__": 939 }, "_enabled": true, "__prefab": { - "__id__": 941 + "__id__": 947 }, "isBold": false, "fontOther": { @@ -20071,11 +20209,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 932 + "__id__": 938 }, "_enabled": true, "__prefab": { - "__id__": 944 + "__id__": 950 }, "_contentSize": { "__type__": "cc.Size", @@ -20099,11 +20237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 932 + "__id__": 938 }, "_enabled": true, "__prefab": { - "__id__": 946 + "__id__": 952 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20144,15 +20282,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 932 + "__id__": 938 }, "_enabled": true, "__prefab": { - "__id__": 948 + "__id__": 954 }, "clickEvents": [ { - "__id__": 949 + "__id__": 955 } ], "_interactable": true, @@ -20201,7 +20339,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -20227,27 +20365,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 845 + "__id__": 851 }, "_children": [ { - "__id__": 952 + "__id__": 958 } ], "_active": true, "_components": [ { - "__id__": 962 + "__id__": 968 }, { - "__id__": 964 + "__id__": 970 }, { - "__id__": 966 + "__id__": 972 } ], "_prefab": { - "__id__": 969 + "__id__": 975 }, "_lpos": { "__type__": "cc.Vec3", @@ -20284,26 +20422,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 951 + "__id__": 957 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 953 - }, - { - "__id__": 955 - }, - { - "__id__": 957 - }, { "__id__": 959 + }, + { + "__id__": 961 + }, + { + "__id__": 963 + }, + { + "__id__": 965 } ], "_prefab": { - "__id__": 961 + "__id__": 967 }, "_lpos": { "__type__": "cc.Vec3", @@ -20340,11 +20478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 952 + "__id__": 958 }, "_enabled": true, "__prefab": { - "__id__": 954 + "__id__": 960 }, "_contentSize": { "__type__": "cc.Size", @@ -20368,11 +20506,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 952 + "__id__": 958 }, "_enabled": true, "__prefab": { - "__id__": 956 + "__id__": 962 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20439,11 +20577,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 952 + "__id__": 958 }, "_enabled": true, "__prefab": { - "__id__": 958 + "__id__": 964 }, "key": "AID_MAIN_OPERATE_CLOSE", "_id": "" @@ -20458,11 +20596,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 952 + "__id__": 958 }, "_enabled": true, "__prefab": { - "__id__": 960 + "__id__": 966 }, "isBold": false, "fontOther": { @@ -20514,11 +20652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 957 }, "_enabled": true, "__prefab": { - "__id__": 963 + "__id__": 969 }, "_contentSize": { "__type__": "cc.Size", @@ -20542,11 +20680,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 957 }, "_enabled": true, "__prefab": { - "__id__": 965 + "__id__": 971 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20587,15 +20725,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 951 + "__id__": 957 }, "_enabled": true, "__prefab": { - "__id__": 967 + "__id__": 973 }, "clickEvents": [ { - "__id__": 968 + "__id__": 974 } ], "_interactable": true, @@ -20644,7 +20782,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -20670,11 +20808,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 845 + "__id__": 851 }, "_enabled": true, "__prefab": { - "__id__": 971 + "__id__": 977 }, "_contentSize": { "__type__": "cc.Size", @@ -20698,11 +20836,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 845 + "__id__": 851 }, "_enabled": true, "__prefab": { - "__id__": 973 + "__id__": 979 }, "_opacity": 255, "_id": "" @@ -20730,24 +20868,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 618 + "__id__": 624 }, "_children": [ { - "__id__": 976 + "__id__": 982 }, { - "__id__": 984 + "__id__": 990 } ], "_active": false, "_components": [ { - "__id__": 1008 + "__id__": 1014 } ], "_prefab": { - "__id__": 1010 + "__id__": 1016 }, "_lpos": { "__type__": "cc.Vec3", @@ -20784,23 +20922,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 975 + "__id__": 981 }, "_children": [], "_active": false, "_components": [ { - "__id__": 977 + "__id__": 983 }, { - "__id__": 979 + "__id__": 985 }, { - "__id__": 981 + "__id__": 987 } ], "_prefab": { - "__id__": 983 + "__id__": 989 }, "_lpos": { "__type__": "cc.Vec3", @@ -20837,11 +20975,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 976 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 978 + "__id__": 984 }, "_contentSize": { "__type__": "cc.Size", @@ -20865,11 +21003,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 976 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 980 + "__id__": 986 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -20910,11 +21048,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 976 + "__id__": 982 }, "_enabled": true, "__prefab": { - "__id__": 982 + "__id__": 988 }, "spriteName": "Free1", "_id": "" @@ -20942,27 +21080,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 975 + "__id__": 981 }, "_children": [ { - "__id__": 985 - }, - { - "__id__": 993 + "__id__": 991 }, { "__id__": 999 + }, + { + "__id__": 1005 } ], "_active": true, "_components": [ { - "__id__": 1005 + "__id__": 1011 } ], "_prefab": { - "__id__": 1007 + "__id__": 1013 }, "_lpos": { "__type__": "cc.Vec3", @@ -20999,23 +21137,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 984 + "__id__": 990 }, "_children": [], "_active": true, "_components": [ { - "__id__": 986 + "__id__": 992 }, { - "__id__": 988 + "__id__": 994 }, { - "__id__": 990 + "__id__": 996 } ], "_prefab": { - "__id__": 992 + "__id__": 998 }, "_lpos": { "__type__": "cc.Vec3", @@ -21052,11 +21190,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 985 + "__id__": 991 }, "_enabled": true, "__prefab": { - "__id__": 987 + "__id__": 993 }, "_contentSize": { "__type__": "cc.Size", @@ -21080,11 +21218,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 985 + "__id__": 991 }, "_enabled": true, "__prefab": { - "__id__": 989 + "__id__": 995 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21125,11 +21263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 985 + "__id__": 991 }, "_enabled": true, "__prefab": { - "__id__": 991 + "__id__": 997 }, "spriteName": "Free", "_id": "" @@ -21157,20 +21295,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 984 + "__id__": 990 }, "_children": [], "_active": true, "_components": [ { - "__id__": 994 + "__id__": 1000 }, { - "__id__": 996 + "__id__": 1002 } ], "_prefab": { - "__id__": 998 + "__id__": 1004 }, "_lpos": { "__type__": "cc.Vec3", @@ -21207,11 +21345,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 999 }, "_enabled": true, "__prefab": { - "__id__": 995 + "__id__": 1001 }, "_contentSize": { "__type__": "cc.Size", @@ -21235,11 +21373,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 993 + "__id__": 999 }, "_enabled": false, "__prefab": { - "__id__": 997 + "__id__": 1003 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21293,20 +21431,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 984 + "__id__": 990 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1000 + "__id__": 1006 }, { - "__id__": 1002 + "__id__": 1008 } ], "_prefab": { - "__id__": 1004 + "__id__": 1010 }, "_lpos": { "__type__": "cc.Vec3", @@ -21343,11 +21481,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 1005 }, "_enabled": true, "__prefab": { - "__id__": 1001 + "__id__": 1007 }, "_contentSize": { "__type__": "cc.Size", @@ -21371,11 +21509,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 999 + "__id__": 1005 }, "_enabled": true, "__prefab": { - "__id__": 1003 + "__id__": 1009 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21455,11 +21593,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 984 + "__id__": 990 }, "_enabled": true, "__prefab": { - "__id__": 1006 + "__id__": 1012 }, "_contentSize": { "__type__": "cc.Size", @@ -21496,11 +21634,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 975 + "__id__": 981 }, "_enabled": true, "__prefab": { - "__id__": 1009 + "__id__": 1015 }, "_contentSize": { "__type__": "cc.Size", @@ -21537,24 +21675,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 618 + "__id__": 624 }, "_children": [ { - "__id__": 1012 + "__id__": 1018 }, { - "__id__": 1052 + "__id__": 1058 } ], "_active": false, "_components": [ { - "__id__": 1098 + "__id__": 1104 } ], "_prefab": { - "__id__": 1100 + "__id__": 1106 }, "_lpos": { "__type__": "cc.Vec3", @@ -21591,27 +21729,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1011 + "__id__": 1017 }, "_children": [ { - "__id__": 1013 + "__id__": 1019 }, { - "__id__": 1025 + "__id__": 1031 }, { - "__id__": 1037 + "__id__": 1043 } ], "_active": true, "_components": [ { - "__id__": 1049 + "__id__": 1055 } ], "_prefab": { - "__id__": 1051 + "__id__": 1057 }, "_lpos": { "__type__": "cc.Vec3", @@ -21648,24 +21786,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1012 + "__id__": 1018 }, "_children": [ { - "__id__": 1014 + "__id__": 1020 } ], "_active": true, "_components": [ { - "__id__": 1020 + "__id__": 1026 }, { - "__id__": 1022 + "__id__": 1028 } ], "_prefab": { - "__id__": 1024 + "__id__": 1030 }, "_lpos": { "__type__": "cc.Vec3", @@ -21702,20 +21840,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1013 + "__id__": 1019 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1015 + "__id__": 1021 }, { - "__id__": 1017 + "__id__": 1023 } ], "_prefab": { - "__id__": 1019 + "__id__": 1025 }, "_lpos": { "__type__": "cc.Vec3", @@ -21752,11 +21890,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1014 + "__id__": 1020 }, "_enabled": true, "__prefab": { - "__id__": 1016 + "__id__": 1022 }, "_contentSize": { "__type__": "cc.Size", @@ -21780,11 +21918,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1014 + "__id__": 1020 }, "_enabled": true, "__prefab": { - "__id__": 1018 + "__id__": 1024 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21838,11 +21976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1013 + "__id__": 1019 }, "_enabled": true, "__prefab": { - "__id__": 1021 + "__id__": 1027 }, "_contentSize": { "__type__": "cc.Size", @@ -21866,11 +22004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1013 + "__id__": 1019 }, "_enabled": true, "__prefab": { - "__id__": 1023 + "__id__": 1029 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -21924,24 +22062,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1012 + "__id__": 1018 }, "_children": [ { - "__id__": 1026 + "__id__": 1032 } ], "_active": true, "_components": [ { - "__id__": 1032 + "__id__": 1038 }, { - "__id__": 1034 + "__id__": 1040 } ], "_prefab": { - "__id__": 1036 + "__id__": 1042 }, "_lpos": { "__type__": "cc.Vec3", @@ -21978,20 +22116,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1025 + "__id__": 1031 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1027 + "__id__": 1033 }, { - "__id__": 1029 + "__id__": 1035 } ], "_prefab": { - "__id__": 1031 + "__id__": 1037 }, "_lpos": { "__type__": "cc.Vec3", @@ -22028,11 +22166,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1026 + "__id__": 1032 }, "_enabled": true, "__prefab": { - "__id__": 1028 + "__id__": 1034 }, "_contentSize": { "__type__": "cc.Size", @@ -22056,11 +22194,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1026 + "__id__": 1032 }, "_enabled": true, "__prefab": { - "__id__": 1030 + "__id__": 1036 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22114,11 +22252,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1025 + "__id__": 1031 }, "_enabled": true, "__prefab": { - "__id__": 1033 + "__id__": 1039 }, "_contentSize": { "__type__": "cc.Size", @@ -22142,11 +22280,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1025 + "__id__": 1031 }, "_enabled": true, "__prefab": { - "__id__": 1035 + "__id__": 1041 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22200,24 +22338,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1012 + "__id__": 1018 }, "_children": [ { - "__id__": 1038 + "__id__": 1044 } ], "_active": true, "_components": [ { - "__id__": 1044 + "__id__": 1050 }, { - "__id__": 1046 + "__id__": 1052 } ], "_prefab": { - "__id__": 1048 + "__id__": 1054 }, "_lpos": { "__type__": "cc.Vec3", @@ -22254,20 +22392,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1037 + "__id__": 1043 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1039 + "__id__": 1045 }, { - "__id__": 1041 + "__id__": 1047 } ], "_prefab": { - "__id__": 1043 + "__id__": 1049 }, "_lpos": { "__type__": "cc.Vec3", @@ -22304,11 +22442,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1038 + "__id__": 1044 }, "_enabled": true, "__prefab": { - "__id__": 1040 + "__id__": 1046 }, "_contentSize": { "__type__": "cc.Size", @@ -22332,11 +22470,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1038 + "__id__": 1044 }, "_enabled": true, "__prefab": { - "__id__": 1042 + "__id__": 1048 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22390,11 +22528,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1037 + "__id__": 1043 }, "_enabled": true, "__prefab": { - "__id__": 1045 + "__id__": 1051 }, "_contentSize": { "__type__": "cc.Size", @@ -22418,11 +22556,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1037 + "__id__": 1043 }, "_enabled": true, "__prefab": { - "__id__": 1047 + "__id__": 1053 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22476,11 +22614,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1012 + "__id__": 1018 }, "_enabled": true, "__prefab": { - "__id__": 1050 + "__id__": 1056 }, "_contentSize": { "__type__": "cc.Size", @@ -22517,36 +22655,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1011 + "__id__": 1017 }, "_children": [ { - "__id__": 1053 + "__id__": 1059 }, { - "__id__": 1061 + "__id__": 1067 }, { - "__id__": 1069 - }, - { - "__id__": 1077 + "__id__": 1075 }, { "__id__": 1083 }, { "__id__": 1089 + }, + { + "__id__": 1095 } ], "_active": true, "_components": [ { - "__id__": 1095 + "__id__": 1101 } ], "_prefab": { - "__id__": 1097 + "__id__": 1103 }, "_lpos": { "__type__": "cc.Vec3", @@ -22583,23 +22721,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1052 + "__id__": 1058 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1054 + "__id__": 1060 }, { - "__id__": 1056 + "__id__": 1062 }, { - "__id__": 1058 + "__id__": 1064 } ], "_prefab": { - "__id__": 1060 + "__id__": 1066 }, "_lpos": { "__type__": "cc.Vec3", @@ -22636,11 +22774,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1053 + "__id__": 1059 }, "_enabled": true, "__prefab": { - "__id__": 1055 + "__id__": 1061 }, "_contentSize": { "__type__": "cc.Size", @@ -22664,11 +22802,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1053 + "__id__": 1059 }, "_enabled": true, "__prefab": { - "__id__": 1057 + "__id__": 1063 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22735,11 +22873,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1053 + "__id__": 1059 }, "_enabled": true, "__prefab": { - "__id__": 1059 + "__id__": 1065 }, "key": "AID_MAIN_SHOW_BALANCE", "_id": "" @@ -22767,23 +22905,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1052 + "__id__": 1058 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1062 + "__id__": 1068 }, { - "__id__": 1064 + "__id__": 1070 }, { - "__id__": 1066 + "__id__": 1072 } ], "_prefab": { - "__id__": 1068 + "__id__": 1074 }, "_lpos": { "__type__": "cc.Vec3", @@ -22820,11 +22958,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1061 + "__id__": 1067 }, "_enabled": true, "__prefab": { - "__id__": 1063 + "__id__": 1069 }, "_contentSize": { "__type__": "cc.Size", @@ -22848,11 +22986,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1061 + "__id__": 1067 }, "_enabled": true, "__prefab": { - "__id__": 1065 + "__id__": 1071 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -22919,11 +23057,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1061 + "__id__": 1067 }, "_enabled": true, "__prefab": { - "__id__": 1067 + "__id__": 1073 }, "key": "AID_MAIN_SHOW_BET", "_id": "" @@ -22951,23 +23089,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1052 + "__id__": 1058 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1070 + "__id__": 1076 }, { - "__id__": 1072 + "__id__": 1078 }, { - "__id__": 1074 + "__id__": 1080 } ], "_prefab": { - "__id__": 1076 + "__id__": 1082 }, "_lpos": { "__type__": "cc.Vec3", @@ -23004,11 +23142,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1069 + "__id__": 1075 }, "_enabled": true, "__prefab": { - "__id__": 1071 + "__id__": 1077 }, "_contentSize": { "__type__": "cc.Size", @@ -23032,11 +23170,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1069 + "__id__": 1075 }, "_enabled": true, "__prefab": { - "__id__": 1073 + "__id__": 1079 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23103,11 +23241,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1069 + "__id__": 1075 }, "_enabled": true, "__prefab": { - "__id__": 1075 + "__id__": 1081 }, "key": "AID_MAIN_SHOW_WIN", "_id": "" @@ -23135,20 +23273,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1052 + "__id__": 1058 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1078 + "__id__": 1084 }, { - "__id__": 1080 + "__id__": 1086 } ], "_prefab": { - "__id__": 1082 + "__id__": 1088 }, "_lpos": { "__type__": "cc.Vec3", @@ -23185,11 +23323,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1077 + "__id__": 1083 }, "_enabled": true, "__prefab": { - "__id__": 1079 + "__id__": 1085 }, "_contentSize": { "__type__": "cc.Size", @@ -23213,11 +23351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1077 + "__id__": 1083 }, "_enabled": true, "__prefab": { - "__id__": 1081 + "__id__": 1087 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23297,20 +23435,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1052 + "__id__": 1058 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1084 + "__id__": 1090 }, { - "__id__": 1086 + "__id__": 1092 } ], "_prefab": { - "__id__": 1088 + "__id__": 1094 }, "_lpos": { "__type__": "cc.Vec3", @@ -23347,11 +23485,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1083 + "__id__": 1089 }, "_enabled": true, "__prefab": { - "__id__": 1085 + "__id__": 1091 }, "_contentSize": { "__type__": "cc.Size", @@ -23375,11 +23513,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1083 + "__id__": 1089 }, "_enabled": true, "__prefab": { - "__id__": 1087 + "__id__": 1093 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23459,20 +23597,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1052 + "__id__": 1058 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1090 + "__id__": 1096 }, { - "__id__": 1092 + "__id__": 1098 } ], "_prefab": { - "__id__": 1094 + "__id__": 1100 }, "_lpos": { "__type__": "cc.Vec3", @@ -23509,11 +23647,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1089 + "__id__": 1095 }, "_enabled": true, "__prefab": { - "__id__": 1091 + "__id__": 1097 }, "_contentSize": { "__type__": "cc.Size", @@ -23537,11 +23675,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1089 + "__id__": 1095 }, "_enabled": true, "__prefab": { - "__id__": 1093 + "__id__": 1099 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -23621,11 +23759,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1052 + "__id__": 1058 }, "_enabled": true, "__prefab": { - "__id__": 1096 + "__id__": 1102 }, "_contentSize": { "__type__": "cc.Size", @@ -23662,11 +23800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1011 + "__id__": 1017 }, "_enabled": true, "__prefab": { - "__id__": 1099 + "__id__": 1105 }, "_contentSize": { "__type__": "cc.Size", @@ -23703,23 +23841,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 618 + "__id__": 624 }, "_children": [], "_active": true, "_components": [ { - "__id__": 1102 + "__id__": 1108 }, { - "__id__": 1104 + "__id__": 1110 }, { - "__id__": 1107 + "__id__": 1113 } ], "_prefab": { - "__id__": 1109 + "__id__": 1115 }, "_lpos": { "__type__": "cc.Vec3", @@ -23756,11 +23894,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1101 + "__id__": 1107 }, "_enabled": true, "__prefab": { - "__id__": 1103 + "__id__": 1109 }, "_contentSize": { "__type__": "cc.Size", @@ -23784,15 +23922,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1101 + "__id__": 1107 }, "_enabled": true, "__prefab": { - "__id__": 1105 + "__id__": 1111 }, "clickEvents": [ { - "__id__": 1106 + "__id__": 1112 } ], "_interactable": true, @@ -23844,7 +23982,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 1101 + "__id__": 1107 }, "_id": "" }, @@ -23855,7 +23993,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 618 + "__id__": 624 }, "component": "", "_componentId": "b95476QoaZH66hYtUhlIWhd", @@ -23868,11 +24006,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 1101 + "__id__": 1107 }, "_enabled": true, "__prefab": { - "__id__": 1108 + "__id__": 1114 }, "_alignFlags": 45, "_target": null, @@ -23917,11 +24055,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 618 + "__id__": 624 }, "_enabled": true, "__prefab": { - "__id__": 1111 + "__id__": 1117 }, "_contentSize": { "__type__": "cc.Size", @@ -23945,11 +24083,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 618 + "__id__": 624 }, "_enabled": true, "__prefab": { - "__id__": 1113 + "__id__": 1119 }, "_alignFlags": 45, "_target": null, @@ -23981,31 +24119,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 618 + "__id__": 624 }, "_enabled": true, "__prefab": { - "__id__": 1115 + "__id__": 1121 }, "btnTable": [ - { - "__id__": 1116 - }, - { - "__id__": 1117 - }, - { - "__id__": 1118 - }, - { - "__id__": 1119 - }, - { - "__id__": 1120 - }, - { - "__id__": 1121 - }, { "__id__": 1122 }, @@ -24029,6 +24149,24 @@ }, { "__id__": 1129 + }, + { + "__id__": 1130 + }, + { + "__id__": 1131 + }, + { + "__id__": 1132 + }, + { + "__id__": 1133 + }, + { + "__id__": 1134 + }, + { + "__id__": 1135 } ], "_id": "" @@ -24041,98 +24179,98 @@ "__type__": "BtnConfig", "key": "SpinBtn", "btnNode": { - "__id__": 716 + "__id__": 722 } }, { "__type__": "BtnConfig", "key": "AddBetBtn", "btnNode": { - "__id__": 746 + "__id__": 752 } }, { "__type__": "BtnConfig", "key": "SubBetBtn", "btnNode": { - "__id__": 757 + "__id__": 763 } }, { "__type__": "BtnConfig", "key": "FastSpinBtn", "btnNode": { - "__id__": 798 + "__id__": 804 } }, { "__type__": "BtnConfig", "key": "AutoSpinBtn", "btnNode": { - "__id__": 783 + "__id__": 789 } }, { "__type__": "BtnConfig", "key": "MenuBtn", "btnNode": { - "__id__": 768 + "__id__": 774 } }, { "__type__": "BtnConfig", "key": "QuitBtn", "btnNode": { - "__id__": 846 + "__id__": 852 } }, { "__type__": "BtnConfig", "key": "SoundBtn", "btnNode": { - "__id__": 865 + "__id__": 871 } }, { "__type__": "BtnConfig", "key": "PaytableBtn", "btnNode": { - "__id__": 894 + "__id__": 900 } }, { "__type__": "BtnConfig", "key": "RuleBtn", "btnNode": { - "__id__": 913 + "__id__": 919 } }, { "__type__": "BtnConfig", "key": "HistoryBtn", "btnNode": { - "__id__": 932 + "__id__": 938 } }, { "__type__": "BtnConfig", "key": "CloseL2Btn", "btnNode": { - "__id__": 951 + "__id__": 957 } }, { "__type__": "BtnConfig", "key": "StopAutoSpinBtn", "btnNode": { - "__id__": 731 + "__id__": 737 } }, { "__type__": "BtnConfig", "key": "ChooseDiffBtn", "btnNode": { - "__id__": 813 + "__id__": 819 } }, { @@ -24155,14 +24293,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 1132 + "__id__": 1138 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 1131 + "__id__": 1137 }, "asset": { "__uuid__": "29fb0a1e-a12f-4c41-9000-815327a25730", @@ -24170,7 +24308,7 @@ }, "fileId": "c9QEC2alVDUrRXVFfYng3l", "instance": { - "__id__": 1133 + "__id__": 1139 }, "targetOverrides": null }, @@ -24183,32 +24321,32 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ - { - "__id__": 1134 - }, - { - "__id__": 1136 - }, - { - "__id__": 1137 - }, - { - "__id__": 1138 - }, - { - "__id__": 1139 - }, { "__id__": 1140 }, { "__id__": 1142 }, + { + "__id__": 1143 + }, { "__id__": 1144 }, + { + "__id__": 1145 + }, { "__id__": 1146 + }, + { + "__id__": 1148 + }, + { + "__id__": 1150 + }, + { + "__id__": 1152 } ], "removedComponents": [] @@ -24216,7 +24354,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1135 + "__id__": 1141 }, "propertyPath": [ "_name" @@ -24232,7 +24370,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1135 + "__id__": 1141 }, "propertyPath": [ "_lpos" @@ -24247,7 +24385,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1135 + "__id__": 1141 }, "propertyPath": [ "_lrot" @@ -24263,7 +24401,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1135 + "__id__": 1141 }, "propertyPath": [ "_euler" @@ -24278,7 +24416,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1135 + "__id__": 1141 }, "propertyPath": [ "_active" @@ -24288,7 +24426,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1141 + "__id__": 1147 }, "propertyPath": [ "_active" @@ -24304,7 +24442,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1143 + "__id__": 1149 }, "propertyPath": [ "_active" @@ -24320,7 +24458,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1145 + "__id__": 1151 }, "propertyPath": [ "_active" @@ -24336,7 +24474,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1147 + "__id__": 1153 }, "propertyPath": [ "_contentSize" @@ -24360,14 +24498,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 1149 + "__id__": 1155 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 1148 + "__id__": 1154 }, "asset": { "__uuid__": "93f49f19-92c8-468b-a67d-b423f3be55f9", @@ -24375,7 +24513,7 @@ }, "fileId": "0d6YCKuIdEs4y/XDNnFU5x", "instance": { - "__id__": 1150 + "__id__": 1156 }, "targetOverrides": [] }, @@ -24388,29 +24526,29 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ - { - "__id__": 1151 - }, - { - "__id__": 1153 - }, - { - "__id__": 1154 - }, - { - "__id__": 1155 - }, - { - "__id__": 1156 - }, { "__id__": 1157 }, { "__id__": 1159 }, + { + "__id__": 1160 + }, { "__id__": 1161 + }, + { + "__id__": 1162 + }, + { + "__id__": 1163 + }, + { + "__id__": 1165 + }, + { + "__id__": 1167 } ], "removedComponents": [] @@ -24418,7 +24556,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1152 + "__id__": 1158 }, "propertyPath": [ "_name" @@ -24434,7 +24572,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1152 + "__id__": 1158 }, "propertyPath": [ "_lpos" @@ -24449,7 +24587,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1152 + "__id__": 1158 }, "propertyPath": [ "_lrot" @@ -24465,7 +24603,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1152 + "__id__": 1158 }, "propertyPath": [ "_euler" @@ -24480,7 +24618,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1152 + "__id__": 1158 }, "propertyPath": [ "_active" @@ -24490,7 +24628,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1158 + "__id__": 1164 }, "propertyPath": [ "_active" @@ -24506,7 +24644,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1160 + "__id__": 1166 }, "propertyPath": [ "_active" @@ -24522,7 +24660,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 1162 + "__id__": 1168 }, "propertyPath": [ "_contentSize" @@ -24549,7 +24687,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 1164 + "__id__": 1170 }, "_contentSize": { "__type__": "cc.Size", @@ -24577,7 +24715,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 1166 + "__id__": 1172 }, "_alignFlags": 45, "_target": null, @@ -24613,16 +24751,16 @@ }, "_enabled": true, "__prefab": { - "__id__": 1168 + "__id__": 1174 }, "slotGame": { - "__id__": 615 + "__id__": 621 }, "slotMsg": { - "__id__": 503 + "__id__": 509 }, "slotBar": { - "__id__": 1114 + "__id__": 1120 }, "sysGift": null, "slotRanking": null, @@ -24644,27 +24782,27 @@ "instance": null, "targetOverrides": [ { - "__id__": 1170 + "__id__": 1176 }, { - "__id__": 1172 + "__id__": 1178 }, { - "__id__": 1174 + "__id__": 1180 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 1148 + "__id__": 1154 }, { - "__id__": 1131 + "__id__": 1137 }, { - "__id__": 798 + "__id__": 804 }, { - "__id__": 783 + "__id__": 789 }, { "__id__": 243 @@ -24766,10 +24904,10 @@ "sysGift" ], "target": { - "__id__": 1131 + "__id__": 1137 }, "targetInfo": { - "__id__": 1171 + "__id__": 1177 } }, { @@ -24781,17 +24919,17 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 1167 + "__id__": 1173 }, "sourceInfo": null, "propertyPath": [ "sysGift" ], "target": { - "__id__": 1131 + "__id__": 1137 }, "targetInfo": { - "__id__": 1173 + "__id__": 1179 } }, { @@ -24803,17 +24941,17 @@ { "__type__": "cc.TargetOverrideInfo", "source": { - "__id__": 1167 + "__id__": 1173 }, "sourceInfo": null, "propertyPath": [ "slotRanking" ], "target": { - "__id__": 1148 + "__id__": 1154 }, "targetInfo": { - "__id__": 1175 + "__id__": 1181 } }, { diff --git a/assets/Main/main.scene b/assets/Main/main.scene index 441a9fc..d960d39 100644 --- a/assets/Main/main.scene +++ b/assets/Main/main.scene @@ -23,7 +23,7 @@ "_active": true, "_components": [], "_prefab": { - "__id__": 136 + "__id__": 133 }, "_lpos": { "__type__": "cc.Vec3", @@ -54,7 +54,7 @@ }, "autoReleaseAssets": false, "_globals": { - "__id__": 137 + "__id__": 134 }, "_id": "047bc2a0-3759-4c52-a603-35f19f0b22ac" }, @@ -84,24 +84,21 @@ }, { "__id__": 117 - }, - { - "__id__": 129 } ], "_active": true, "_components": [ + { + "__id__": 129 + }, + { + "__id__": 130 + }, + { + "__id__": 131 + }, { "__id__": 132 - }, - { - "__id__": 133 - }, - { - "__id__": 134 - }, - { - "__id__": 135 } ], "_prefab": null, @@ -4887,115 +4884,6 @@ "_lockFlags": 0, "_id": "e0wy3m1ilD4amtkpxrqBwr" }, - { - "__type__": "cc.Node", - "_name": "test", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 130 - }, - { - "__id__": 131 - } - ], - "_prefab": null, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -267.445, - "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": "5atnW0IOFBf53Iro7J622Q" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 129 - }, - "_enabled": true, - "__prefab": null, - "_contentSize": { - "__type__": "cc.Size", - "width": 85.33000183105469, - "height": 85.33000183105469 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.49994139144488553, - "y": 0.49994139144488553 - }, - "_id": "d7h41v8UxIZ4ItxMyPmPlz" - }, - { - "__type__": "sp.Skeleton", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 129 - }, - "_enabled": true, - "__prefab": null, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_skeletonData": { - "__uuid__": "6e401c08-7ca6-43e4-8c4f-40efcc3c56ec", - "__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": true, - "_id": "b5b6i/lf9PTqOYinFrvgr8" - }, { "__type__": "cc.UITransform", "_name": "", @@ -5093,28 +4981,28 @@ { "__type__": "cc.SceneGlobals", "ambient": { - "__id__": 138 + "__id__": 135 }, "shadows": { - "__id__": 139 + "__id__": 136 }, "_skybox": { - "__id__": 140 + "__id__": 137 }, "fog": { - "__id__": 141 + "__id__": 138 }, "octree": { - "__id__": 142 + "__id__": 139 }, "skin": { - "__id__": 143 + "__id__": 140 }, "lightProbeInfo": { - "__id__": 144 + "__id__": 141 }, "postSettings": { - "__id__": 145 + "__id__": 142 }, "bakedWithStationaryMainLight": false, "bakedWithHighpLightmap": false