diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index db685707..7168e162 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -12,7 +12,11 @@ import { import li_BaseView from "db://assets/Scripts/Main/Common/li_BaseView"; import ResManager from "db://assets/Scripts/Main/Manager/ResManager"; import { DetailImageItem } from "../../uiitems/DetailImageItem"; -import { NavigationManager, PanelType } from "../../manager/NavigationManager"; +import { + NavigationManager, + PageTransitionType, + PanelType, +} from "../../manager/NavigationManager"; import { DetailImageItemPool } from "../../manager/DetailImageItemPool"; import { ConfigManager } from "../../manager/ConfigManager"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; @@ -315,11 +319,13 @@ export class GirlDetailPanel extends li_BaseView { PanelType.PAST_GIRL_LIST, false, (base) => { - const chatData = { girlId: this.id ,base:base}; - NavigationManager.Instance.openSubPanel("ChatPanel", base, chatData); + const chatData = { girlId: this.id, base: base }; + NavigationManager.Instance.openSubPanel("ChatPanel", base, chatData, { + openAnimation: PageTransitionType.SLIDE_LEFT, + closeAnimation: PageTransitionType.SLIDE_RIGHT, + }); } ); - } returnBtn() { diff --git a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts index c776982e..29e53a95 100644 --- a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts @@ -14,6 +14,7 @@ import { PaymentService } from "db://assets/Scripts/chat18x/payment/PaymentServi import proto from "db://assets/Scripts/proto/proto.pb.js"; import { NavigationManager, PanelType } from "../../manager/NavigationManager"; import { Web3PopPanel } from "./Web3PopPanel"; +import { TipsPanel } from "./TipsPanel"; const { ccclass, property } = _decorator; @@ -280,11 +281,16 @@ export class PurchasePanel extends li_BaseView { let status = res.status; if (status === -1) { console.log("支付失败!!!,错误码:", res.retCode); + + const key = "error_code_" + res.retCode; + TipsPanel.show(LanguageUtils.getText(key)); } else if (status === 0) { console.log("支付成功!!!"); const walletData = DataManager.I.getDataById(DataId.Wallet); walletData.balance = Number(res.balance); walletData.vipExpire = Number(res.vipExpire); + + TipsPanel.show(LanguageUtils.getText("payment.succeed")); } } } diff --git a/assets/Scripts/chat18x/uiitems/PastGirlListItem.ts b/assets/Scripts/chat18x/uiitems/PastGirlListItem.ts index 3bf794e6..bc5487bb 100644 --- a/assets/Scripts/chat18x/uiitems/PastGirlListItem.ts +++ b/assets/Scripts/chat18x/uiitems/PastGirlListItem.ts @@ -2,7 +2,11 @@ import { _decorator, Component, Label, Node, Sprite, UITransform } from "cc"; import { ViewManager } from "db://assets/Scripts/Main/Manager/ViewManager"; import ResManager from "db://assets/Scripts/Main/Manager/ResManager"; import Utils from "db://assets/Scripts/Main/Common/Utils"; -import { NavigationManager, PanelType } from "../manager/NavigationManager"; +import { + NavigationManager, + PageTransitionType, + PanelType, +} from "../manager/NavigationManager"; import LanguageUtils from "../../Main/Common/LanguageUtils"; import { InnerMsgCode } from "../../Main/Config/InnerMsgCode"; import { DataManager, DataId } from "../data/DataManager"; @@ -64,7 +68,7 @@ export class PastGirlListItem extends Component { ); } - refreshData(girlId: number, baseNode: Node):number { + refreshData(girlId: number, baseNode: Node): number { if (!this.stars) { this.stars = this.starParent.getComponentsInChildren(Sprite); } @@ -126,7 +130,7 @@ export class PastGirlListItem extends Component { } // 更新最近聊天时间显示 - private updateLastChatTime():number { + private updateLastChatTime(): number { const lastTime = this.getLastChatTime(this.id); this.lastChatTime.string = Utils.formatChatTime(lastTime); return lastTime; @@ -174,7 +178,11 @@ export class PastGirlListItem extends Component { NavigationManager.Instance.openSubPanel( "ChatPanel", this.baseNode, - chatData + chatData, + { + openAnimation: PageTransitionType.SLIDE_LEFT, + closeAnimation: PageTransitionType.SLIDE_RIGHT, + } ); } } diff --git a/assets/bundles/Chat18x/PurchasePanel.prefab b/assets/bundles/Chat18x/PurchasePanel.prefab index 0f95c14d..bb6225f5 100644 --- a/assets/bundles/Chat18x/PurchasePanel.prefab +++ b/assets/bundles/Chat18x/PurchasePanel.prefab @@ -24,21 +24,21 @@ ], "_active": true, "_components": [ - { - "__id__": 421 - }, - { - "__id__": 423 - }, - { - "__id__": 425 - }, { "__id__": 427 + }, + { + "__id__": 429 + }, + { + "__id__": 431 + }, + { + "__id__": 433 } ], "_prefab": { - "__id__": 429 + "__id__": 435 }, "_lpos": { "__type__": "cc.Vec3", @@ -82,23 +82,23 @@ "__id__": 3 }, { - "__id__": 30 + "__id__": 36 } ], "_active": true, "_components": [ { - "__id__": 414 + "__id__": 420 }, { - "__id__": 416 + "__id__": 422 }, { - "__id__": 418 + "__id__": 424 } ], "_prefab": { - "__id__": 420 + "__id__": 426 }, "_lpos": { "__type__": "cc.Vec3", @@ -142,23 +142,23 @@ "__id__": 4 }, { - "__id__": 15 + "__id__": 21 } ], "_active": true, "_components": [ { - "__id__": 23 + "__id__": 29 }, { - "__id__": 25 + "__id__": 31 }, { - "__id__": 27 + "__id__": 33 } ], "_prefab": { - "__id__": 29 + "__id__": 35 }, "_lpos": { "__type__": "cc.Vec3", @@ -197,29 +197,83 @@ "_parent": { "__id__": 3 }, + "_children": [ + { + "__id__": 5 + } + ], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + }, + { + "__id__": 15 + }, + { + "__id__": 18 + } + ], + "_prefab": { + "__id__": 20 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -486.076, + "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": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 4 + }, "_children": [], "_active": true, "_components": [ { - "__id__": 5 + "__id__": 6 }, { - "__id__": 7 - }, - { - "__id__": 9 - }, - { - "__id__": 12 + "__id__": 8 } ], "_prefab": { - "__id__": 14 + "__id__": 10 }, "_lpos": { "__type__": "cc.Vec3", - "x": -501.576, - "y": -28, + "x": 0, + "y": 0, "z": 0 }, "_lrot": { @@ -251,11 +305,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 4 + "__id__": 5 }, "_enabled": true, "__prefab": { - "__id__": 6 + "__id__": 7 }, "_contentSize": { "__type__": "cc.Size", @@ -263,10 +317,96 @@ "height": 56 }, "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "74A71XYrVKPrJB322Foyac" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 5 + }, + "_enabled": true, + "__prefab": { + "__id__": 9 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "baf0b09a-7e5c-4e7f-8468-fc117bb6d0ce@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": "77fKwlzxFLBaPdHcdmFSgn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "95iwsvyPRBKL6rBO5zfxp6", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 4 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, "_id": "" }, { @@ -283,7 +423,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 8 + "__id__": 14 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -295,10 +435,7 @@ "b": 255, "a": 255 }, - "_spriteFrame": { - "__uuid__": "baf0b09a-7e5c-4e7f-8468-fc117bb6d0ce@f9941", - "__expectedType__": "cc.SpriteFrame" - }, + "_spriteFrame": null, "_type": 0, "_fillType": 0, "_sizeMode": 0, @@ -328,11 +465,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 10 + "__id__": 16 }, "clickEvents": [ { - "__id__": 11 + "__id__": 17 } ], "_interactable": true, @@ -400,11 +537,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 13 + "__id__": 19 }, "_alignFlags": 10, "_target": null, - "_left": 38.42399999999998, + "_left": 3.923999999999978, "_right": 0, "_top": 55.16199999999981, "_bottom": 30, @@ -451,17 +588,17 @@ "_active": true, "_components": [ { - "__id__": 16 + "__id__": 22 }, { - "__id__": 18 + "__id__": 24 }, { - "__id__": 20 + "__id__": 26 } ], "_prefab": { - "__id__": 22 + "__id__": 28 }, "_lpos": { "__type__": "cc.Vec3", @@ -498,11 +635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 15 + "__id__": 21 }, "_enabled": true, "__prefab": { - "__id__": 17 + "__id__": 23 }, "_contentSize": { "__type__": "cc.Size", @@ -526,11 +663,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 15 + "__id__": 21 }, "_enabled": true, "__prefab": { - "__id__": 19 + "__id__": 25 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -597,11 +734,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 15 + "__id__": 21 }, "_enabled": true, "__prefab": { - "__id__": 21 + "__id__": 27 }, "_alignFlags": 18, "_target": null, @@ -650,7 +787,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 30 }, "_contentSize": { "__type__": "cc.Size", @@ -678,7 +815,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 32 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -723,7 +860,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 28 + "__id__": 34 }, "_alignFlags": 41, "_target": null, @@ -772,31 +909,31 @@ }, "_children": [ { - "__id__": 31 + "__id__": 37 } ], "_active": true, "_components": [ - { - "__id__": 405 - }, - { - "__id__": 407 - }, - { - "__id__": 409 - }, { "__id__": 411 + }, + { + "__id__": 413 + }, + { + "__id__": 415 + }, + { + "__id__": 417 } ], "_prefab": { - "__id__": 413 + "__id__": 419 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -75, + "y": 40.30000000000007, "z": 0 }, "_lrot": { @@ -828,30 +965,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 30 + "__id__": 36 }, "_children": [ { - "__id__": 32 + "__id__": 38 } ], "_active": true, "_components": [ - { - "__id__": 396 - }, - { - "__id__": 398 - }, - { - "__id__": 400 - }, { "__id__": 402 + }, + { + "__id__": 404 + }, + { + "__id__": 406 + }, + { + "__id__": 408 } ], "_prefab": { - "__id__": 404 + "__id__": 410 }, "_lpos": { "__type__": "cc.Vec3", @@ -888,32 +1025,32 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 31 + "__id__": 37 }, "_children": [ { - "__id__": 33 + "__id__": 39 }, { - "__id__": 137 + "__id__": 143 } ], "_active": true, "_components": [ { - "__id__": 391 + "__id__": 397 }, { - "__id__": 393 + "__id__": 399 } ], "_prefab": { - "__id__": 395 + "__id__": 401 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 978.083, + "y": 854.9869999999999, "z": 0 }, "_lrot": { @@ -945,36 +1082,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 32 + "__id__": 38 }, "_children": [ { - "__id__": 34 + "__id__": 40 }, { - "__id__": 50 + "__id__": 56 }, { - "__id__": 74 + "__id__": 80 }, { - "__id__": 92 + "__id__": 98 }, { - "__id__": 112 + "__id__": 118 } ], "_active": true, "_components": [ { - "__id__": 132 + "__id__": 138 }, { - "__id__": 134 + "__id__": 140 } ], "_prefab": { - "__id__": 136 + "__id__": 142 }, "_lpos": { "__type__": "cc.Vec3", @@ -1011,27 +1148,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 39 }, "_children": [ { - "__id__": 35 + "__id__": 41 } ], "_active": true, "_components": [ { - "__id__": 43 + "__id__": 49 }, { - "__id__": 45 + "__id__": 51 }, { - "__id__": 47 + "__id__": 53 } ], "_prefab": { - "__id__": 49 + "__id__": 55 }, "_lpos": { "__type__": "cc.Vec3", @@ -1068,23 +1205,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 34 + "__id__": 40 }, "_children": [], "_active": true, "_components": [ { - "__id__": 36 + "__id__": 42 }, { - "__id__": 38 + "__id__": 44 }, { - "__id__": 40 + "__id__": 46 } ], "_prefab": { - "__id__": 42 + "__id__": 48 }, "_lpos": { "__type__": "cc.Vec3", @@ -1121,11 +1258,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 37 + "__id__": 43 }, "_contentSize": { "__type__": "cc.Size", @@ -1149,11 +1286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 39 + "__id__": 45 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1220,11 +1357,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 47 }, "_alignFlags": 10, "_target": null, @@ -1269,11 +1406,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "__prefab": { - "__id__": 44 + "__id__": 50 }, "_contentSize": { "__type__": "cc.Size", @@ -1297,11 +1434,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "__prefab": { - "__id__": 46 + "__id__": 52 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1342,11 +1479,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 40 }, "_enabled": true, "__prefab": { - "__id__": 48 + "__id__": 54 }, "_alignFlags": 32, "_target": null, @@ -1391,30 +1528,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 39 }, "_children": [ { - "__id__": 51 + "__id__": 57 }, { - "__id__": 59 + "__id__": 65 } ], "_active": true, "_components": [ { - "__id__": 67 + "__id__": 73 }, { - "__id__": 69 + "__id__": 75 }, { - "__id__": 71 + "__id__": 77 } ], "_prefab": { - "__id__": 73 + "__id__": 79 }, "_lpos": { "__type__": "cc.Vec3", @@ -1451,23 +1588,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 50 + "__id__": 56 }, "_children": [], "_active": true, "_components": [ { - "__id__": 52 + "__id__": 58 }, { - "__id__": 54 + "__id__": 60 }, { - "__id__": 56 + "__id__": 62 } ], "_prefab": { - "__id__": 58 + "__id__": 64 }, "_lpos": { "__type__": "cc.Vec3", @@ -1504,11 +1641,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 59 }, "_contentSize": { "__type__": "cc.Size", @@ -1532,11 +1669,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 55 + "__id__": 61 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1603,11 +1740,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 57 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 63 }, "_alignFlags": 34, "_target": null, @@ -1652,23 +1789,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 50 + "__id__": 56 }, "_children": [], "_active": false, "_components": [ { - "__id__": 60 + "__id__": 66 }, { - "__id__": 62 + "__id__": 68 }, { - "__id__": 64 + "__id__": 70 } ], "_prefab": { - "__id__": 66 + "__id__": 72 }, "_lpos": { "__type__": "cc.Vec3", @@ -1705,11 +1842,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 65 }, "_enabled": true, "__prefab": { - "__id__": 61 + "__id__": 67 }, "_contentSize": { "__type__": "cc.Size", @@ -1733,11 +1870,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 65 }, "_enabled": true, "__prefab": { - "__id__": 63 + "__id__": 69 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1801,11 +1938,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 65 }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 71 }, "_alignFlags": 34, "_target": null, @@ -1850,11 +1987,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 74 }, "_contentSize": { "__type__": "cc.Size", @@ -1878,11 +2015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 70 + "__id__": 76 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1923,11 +2060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 72 + "__id__": 78 }, "_alignFlags": 32, "_target": null, @@ -1972,27 +2109,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 39 }, "_children": [ { - "__id__": 75 + "__id__": 81 } ], "_active": true, "_components": [ { - "__id__": 85 + "__id__": 91 }, { - "__id__": 87 + "__id__": 93 }, { - "__id__": 89 + "__id__": 95 } ], "_prefab": { - "__id__": 91 + "__id__": 97 }, "_lpos": { "__type__": "cc.Vec3", @@ -2029,26 +2166,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 74 + "__id__": 80 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 76 - }, - { - "__id__": 78 - }, - { - "__id__": 80 - }, { "__id__": 82 + }, + { + "__id__": 84 + }, + { + "__id__": 86 + }, + { + "__id__": 88 } ], "_prefab": { - "__id__": 84 + "__id__": 90 }, "_lpos": { "__type__": "cc.Vec3", @@ -2085,11 +2222,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 83 }, "_contentSize": { "__type__": "cc.Size", @@ -2113,11 +2250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 85 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2181,11 +2318,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 81 + "__id__": 87 }, "_alignFlags": 36, "_target": null, @@ -2217,11 +2354,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 89 }, "languageKey": "purchasepanel.vip_desc", "defaultText": "", @@ -2251,11 +2388,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 80 }, "_enabled": true, "__prefab": { - "__id__": 86 + "__id__": 92 }, "_contentSize": { "__type__": "cc.Size", @@ -2279,11 +2416,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 80 }, "_enabled": true, "__prefab": { - "__id__": 88 + "__id__": 94 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2324,11 +2461,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 74 + "__id__": 80 }, "_enabled": true, "__prefab": { - "__id__": 90 + "__id__": 96 }, "_alignFlags": 40, "_target": null, @@ -2373,30 +2510,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 39 }, "_children": [ { - "__id__": 93 + "__id__": 99 }, { - "__id__": 99 + "__id__": 105 } ], "_active": true, "_components": [ { - "__id__": 105 + "__id__": 111 }, { - "__id__": 107 + "__id__": 113 }, { - "__id__": 109 + "__id__": 115 } ], "_prefab": { - "__id__": 111 + "__id__": 117 }, "_lpos": { "__type__": "cc.Vec3", @@ -2433,20 +2570,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 92 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ { - "__id__": 94 + "__id__": 100 }, { - "__id__": 96 + "__id__": 102 } ], "_prefab": { - "__id__": 98 + "__id__": 104 }, "_lpos": { "__type__": "cc.Vec3", @@ -2483,11 +2620,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 101 }, "_contentSize": { "__type__": "cc.Size", @@ -2511,11 +2648,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 103 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2595,20 +2732,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 92 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ { - "__id__": 100 + "__id__": 106 }, { - "__id__": 102 + "__id__": 108 } ], "_prefab": { - "__id__": 104 + "__id__": 110 }, "_lpos": { "__type__": "cc.Vec3", @@ -2645,11 +2782,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 107 }, "_contentSize": { "__type__": "cc.Size", @@ -2673,11 +2810,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 109 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2754,11 +2891,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 106 + "__id__": 112 }, "_contentSize": { "__type__": "cc.Size", @@ -2782,11 +2919,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 114 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2827,11 +2964,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 116 }, "clickEvents": [], "_interactable": true, @@ -2874,7 +3011,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 92 + "__id__": 98 }, "_id": "" }, @@ -2901,30 +3038,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 39 }, "_children": [ { - "__id__": 113 + "__id__": 119 }, { - "__id__": 119 + "__id__": 125 } ], "_active": true, "_components": [ { - "__id__": 125 + "__id__": 131 }, { - "__id__": 127 + "__id__": 133 }, { - "__id__": 129 + "__id__": 135 } ], "_prefab": { - "__id__": 131 + "__id__": 137 }, "_lpos": { "__type__": "cc.Vec3", @@ -2961,20 +3098,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 118 }, "_children": [], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 120 }, { - "__id__": 116 + "__id__": 122 } ], "_prefab": { - "__id__": 118 + "__id__": 124 }, "_lpos": { "__type__": "cc.Vec3", @@ -3011,11 +3148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 121 }, "_contentSize": { "__type__": "cc.Size", @@ -3039,11 +3176,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 117 + "__id__": 123 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3123,20 +3260,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 118 }, "_children": [], "_active": true, "_components": [ { - "__id__": 120 + "__id__": 126 }, { - "__id__": 122 + "__id__": 128 } ], "_prefab": { - "__id__": 124 + "__id__": 130 }, "_lpos": { "__type__": "cc.Vec3", @@ -3173,11 +3310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 125 }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 127 }, "_contentSize": { "__type__": "cc.Size", @@ -3201,11 +3338,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 125 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 129 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3282,11 +3419,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 132 }, "_contentSize": { "__type__": "cc.Size", @@ -3310,11 +3447,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 134 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3355,11 +3492,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 130 + "__id__": 136 }, "clickEvents": [], "_interactable": true, @@ -3399,7 +3536,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 112 + "__id__": 118 }, "_id": "" }, @@ -3426,11 +3563,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 139 }, "_contentSize": { "__type__": "cc.Size", @@ -3454,11 +3591,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 141 }, "_alignFlags": 0, "_target": null, @@ -3503,33 +3640,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 32 + "__id__": 38 }, "_children": [ { - "__id__": 138 + "__id__": 144 }, { - "__id__": 146 + "__id__": 152 }, { - "__id__": 172 + "__id__": 178 }, { - "__id__": 198 + "__id__": 204 } ], "_active": true, "_components": [ { - "__id__": 386 + "__id__": 392 }, { - "__id__": 388 + "__id__": 394 } ], "_prefab": { - "__id__": 390 + "__id__": 396 }, "_lpos": { "__type__": "cc.Vec3", @@ -3566,23 +3703,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 143 }, "_children": [], "_active": true, "_components": [ { - "__id__": 139 + "__id__": 145 }, { - "__id__": 141 + "__id__": 147 }, { - "__id__": 143 + "__id__": 149 } ], "_prefab": { - "__id__": 145 + "__id__": 151 }, "_lpos": { "__type__": "cc.Vec3", @@ -3619,11 +3756,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 144 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 146 }, "_contentSize": { "__type__": "cc.Size", @@ -3647,11 +3784,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 144 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 148 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3715,11 +3852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 144 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 150 }, "languageKey": "purchasepanel.getdollars", "defaultText": "", @@ -3749,33 +3886,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 143 }, "_children": [ - { - "__id__": 147 - }, { "__id__": 153 }, { "__id__": 159 + }, + { + "__id__": 165 } ], "_active": true, "_components": [ { - "__id__": 165 + "__id__": 171 }, { - "__id__": 167 + "__id__": 173 }, { - "__id__": 169 + "__id__": 175 } ], "_prefab": { - "__id__": 171 + "__id__": 177 }, "_lpos": { "__type__": "cc.Vec3", @@ -3812,144 +3949,8 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 148 - }, - { - "__id__": 150 - } - ], - "_prefab": { "__id__": 152 }, - "_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": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 147 - }, - "_enabled": true, - "__prefab": { - "__id__": 149 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 217, - "height": 71 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5fLlAYDElDxrPU9p6lotAU" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 147 - }, - "_enabled": true, - "__prefab": { - "__id__": 151 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "66fb67c4-7251-4a4b-ae66-2195b32565de@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": "0dZxrw5kZGP7oupttB5IAl" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "20qMLf/vVOlpAEVgi0LIqz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "selecting", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 146 - }, "_children": [], "_active": true, "_components": [ @@ -4018,7 +4019,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "5ePZABzZdANp4UXEFm2J9b" + "fileId": "5fLlAYDElDxrPU9p6lotAU" }, { "__type__": "cc.Sprite", @@ -4043,7 +4044,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "362515cf-8079-4f8c-a3e7-29e89360a329@f9941", + "__uuid__": "66fb67c4-7251-4a4b-ae66-2195b32565de@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -4063,7 +4064,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "canyfY8E9Ij6PTpfUhioqB" + "fileId": "0dZxrw5kZGP7oupttB5IAl" }, { "__type__": "cc.PrefabInfo", @@ -4073,18 +4074,18 @@ "asset": { "__id__": 0 }, - "fileId": "e1qjoJL4VAMpQ6XOfIBaa1", + "fileId": "20qMLf/vVOlpAEVgi0LIqz", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, + "_name": "selecting", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 + "__id__": 152 }, "_children": [], "_active": true, @@ -4140,6 +4141,142 @@ "__prefab": { "__id__": 161 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 217, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5ePZABzZdANp4UXEFm2J9b" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 159 + }, + "_enabled": true, + "__prefab": { + "__id__": 163 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "362515cf-8079-4f8c-a3e7-29e89360a329@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": "canyfY8E9Ij6PTpfUhioqB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e1qjoJL4VAMpQ6XOfIBaa1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 152 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 166 + }, + { + "__id__": 168 + } + ], + "_prefab": { + "__id__": 170 + }, + "_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": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 165 + }, + "_enabled": true, + "__prefab": { + "__id__": 167 + }, "_contentSize": { "__type__": "cc.Size", "width": 100, @@ -4162,11 +4299,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 159 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 169 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4243,11 +4380,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 172 }, "_contentSize": { "__type__": "cc.Size", @@ -4271,11 +4408,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 168 + "__id__": 174 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4313,11 +4450,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 170 + "__id__": 176 }, "clickEvents": [], "_interactable": true, @@ -4357,7 +4494,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 146 + "__id__": 152 }, "_id": "" }, @@ -4384,33 +4521,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 143 }, "_children": [ - { - "__id__": 173 - }, { "__id__": 179 }, { "__id__": 185 + }, + { + "__id__": 191 } ], "_active": true, "_components": [ { - "__id__": 191 + "__id__": 197 }, { - "__id__": 193 + "__id__": 199 }, { - "__id__": 195 + "__id__": 201 } ], "_prefab": { - "__id__": 197 + "__id__": 203 }, "_lpos": { "__type__": "cc.Vec3", @@ -4447,144 +4584,8 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 172 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 174 - }, - { - "__id__": 176 - } - ], - "_prefab": { "__id__": 178 }, - "_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": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 173 - }, - "_enabled": true, - "__prefab": { - "__id__": 175 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 217, - "height": 71 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "10EyIYb/VLH5NManc2pBKq" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 173 - }, - "_enabled": true, - "__prefab": { - "__id__": 177 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "66fb67c4-7251-4a4b-ae66-2195b32565de@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": "785Prnat9H1KoKQdddqwUE" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "18ZQp5pvZLlKrpHp1O4aLi", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "selecting", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 172 - }, "_children": [], "_active": true, "_components": [ @@ -4653,7 +4654,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "8cF8usPVJPRbmtSPQVqycP" + "fileId": "10EyIYb/VLH5NManc2pBKq" }, { "__type__": "cc.Sprite", @@ -4678,7 +4679,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "362515cf-8079-4f8c-a3e7-29e89360a329@f9941", + "__uuid__": "66fb67c4-7251-4a4b-ae66-2195b32565de@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -4698,7 +4699,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "f6956/q0dDlaMttV94dDWo" + "fileId": "785Prnat9H1KoKQdddqwUE" }, { "__type__": "cc.PrefabInfo", @@ -4708,18 +4709,18 @@ "asset": { "__id__": 0 }, - "fileId": "f1JzEQngFEeb4k5hPUlIVu", + "fileId": "18ZQp5pvZLlKrpHp1O4aLi", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, + "_name": "selecting", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 172 + "__id__": 178 }, "_children": [], "_active": true, @@ -4775,6 +4776,142 @@ "__prefab": { "__id__": 187 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 217, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8cF8usPVJPRbmtSPQVqycP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 185 + }, + "_enabled": true, + "__prefab": { + "__id__": 189 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "362515cf-8079-4f8c-a3e7-29e89360a329@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": "f6956/q0dDlaMttV94dDWo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f1JzEQngFEeb4k5hPUlIVu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 178 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 192 + }, + { + "__id__": 194 + } + ], + "_prefab": { + "__id__": 196 + }, + "_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": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 193 + }, "_contentSize": { "__type__": "cc.Size", "width": 159.2, @@ -4797,11 +4934,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 185 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 189 + "__id__": 195 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4878,11 +5015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 172 + "__id__": 178 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 198 }, "_contentSize": { "__type__": "cc.Size", @@ -4906,11 +5043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 172 + "__id__": 178 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 200 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4948,11 +5085,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 172 + "__id__": 178 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 202 }, "clickEvents": [], "_interactable": true, @@ -4992,7 +5129,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 172 + "__id__": 178 }, "_id": "" }, @@ -5019,42 +5156,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 137 + "__id__": 143 }, "_children": [ { - "__id__": 199 + "__id__": 205 }, { - "__id__": 229 + "__id__": 235 }, { - "__id__": 259 + "__id__": 265 }, { - "__id__": 289 + "__id__": 295 }, { - "__id__": 319 + "__id__": 325 }, { - "__id__": 349 + "__id__": 355 } ], "_active": true, "_components": [ { - "__id__": 379 + "__id__": 385 }, { - "__id__": 381 + "__id__": 387 }, { - "__id__": 383 + "__id__": 389 } ], "_prefab": { - "__id__": 385 + "__id__": 391 }, "_lpos": { "__type__": "cc.Vec3", @@ -5091,36 +5228,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 204 }, "_children": [ - { - "__id__": 200 - }, { "__id__": 206 }, { "__id__": 212 + }, + { + "__id__": 218 } ], "_active": true, "_components": [ - { - "__id__": 220 - }, - { - "__id__": 222 - }, - { - "__id__": 224 - }, { "__id__": 226 + }, + { + "__id__": 228 + }, + { + "__id__": 230 + }, + { + "__id__": 232 } ], "_prefab": { - "__id__": 228 + "__id__": 234 }, "_lpos": { "__type__": "cc.Vec3", @@ -5157,20 +5294,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 205 }, "_children": [], "_active": true, "_components": [ { - "__id__": 201 + "__id__": 207 }, { - "__id__": 203 + "__id__": 209 } ], "_prefab": { - "__id__": 205 + "__id__": 211 }, "_lpos": { "__type__": "cc.Vec3", @@ -5207,11 +5344,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 208 }, "_contentSize": { "__type__": "cc.Size", @@ -5235,11 +5372,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 210 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5293,20 +5430,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 205 }, "_children": [], "_active": true, "_components": [ { - "__id__": 207 + "__id__": 213 }, { - "__id__": 209 + "__id__": 215 } ], "_prefab": { - "__id__": 211 + "__id__": 217 }, "_lpos": { "__type__": "cc.Vec3", @@ -5343,11 +5480,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 208 + "__id__": 214 }, "_contentSize": { "__type__": "cc.Size", @@ -5371,11 +5508,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 216 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5452,23 +5589,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 205 }, "_children": [], "_active": true, "_components": [ { - "__id__": 213 + "__id__": 219 }, { - "__id__": 215 + "__id__": 221 }, { - "__id__": 217 + "__id__": 223 } ], "_prefab": { - "__id__": 219 + "__id__": 225 }, "_lpos": { "__type__": "cc.Vec3", @@ -5505,11 +5642,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 218 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 220 }, "_contentSize": { "__type__": "cc.Size", @@ -5533,11 +5670,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 218 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 222 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5601,11 +5738,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 218 }, "_enabled": true, "__prefab": { - "__id__": 218 + "__id__": 224 }, "_alignFlags": 4, "_target": null, @@ -5650,11 +5787,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 227 }, "_contentSize": { "__type__": "cc.Size", @@ -5678,11 +5815,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 229 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5723,11 +5860,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 225 + "__id__": 231 }, "clickEvents": [], "_interactable": true, @@ -5767,7 +5904,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 199 + "__id__": 205 }, "_id": "" }, @@ -5781,20 +5918,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 233 }, "count": { - "__id__": 209 - }, - "price": { "__id__": 215 }, + "price": { + "__id__": 221 + }, "icon": { - "__id__": 203 + "__id__": 209 }, "_id": "" }, @@ -5821,36 +5958,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 204 }, "_children": [ - { - "__id__": 230 - }, { "__id__": 236 }, { "__id__": 242 + }, + { + "__id__": 248 } ], "_active": true, "_components": [ - { - "__id__": 250 - }, - { - "__id__": 252 - }, - { - "__id__": 254 - }, { "__id__": 256 + }, + { + "__id__": 258 + }, + { + "__id__": 260 + }, + { + "__id__": 262 } ], "_prefab": { - "__id__": 258 + "__id__": 264 }, "_lpos": { "__type__": "cc.Vec3", @@ -5887,20 +6024,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 229 + "__id__": 235 }, "_children": [], "_active": true, "_components": [ { - "__id__": 231 + "__id__": 237 }, { - "__id__": 233 + "__id__": 239 } ], "_prefab": { - "__id__": 235 + "__id__": 241 }, "_lpos": { "__type__": "cc.Vec3", @@ -5937,11 +6074,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 238 }, "_contentSize": { "__type__": "cc.Size", @@ -5965,11 +6102,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 234 + "__id__": 240 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6023,20 +6160,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 229 + "__id__": 235 }, "_children": [], "_active": true, "_components": [ { - "__id__": 237 + "__id__": 243 }, { - "__id__": 239 + "__id__": 245 } ], "_prefab": { - "__id__": 241 + "__id__": 247 }, "_lpos": { "__type__": "cc.Vec3", @@ -6073,11 +6210,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 242 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 244 }, "_contentSize": { "__type__": "cc.Size", @@ -6101,11 +6238,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 242 }, "_enabled": true, "__prefab": { - "__id__": 240 + "__id__": 246 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6182,23 +6319,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 229 + "__id__": 235 }, "_children": [], "_active": true, "_components": [ { - "__id__": 243 + "__id__": 249 }, { - "__id__": 245 + "__id__": 251 }, { - "__id__": 247 + "__id__": 253 } ], "_prefab": { - "__id__": 249 + "__id__": 255 }, "_lpos": { "__type__": "cc.Vec3", @@ -6235,11 +6372,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 248 }, "_enabled": true, "__prefab": { - "__id__": 244 + "__id__": 250 }, "_contentSize": { "__type__": "cc.Size", @@ -6263,11 +6400,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 248 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 252 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6331,11 +6468,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 248 }, "_enabled": true, "__prefab": { - "__id__": 248 + "__id__": 254 }, "_alignFlags": 4, "_target": null, @@ -6380,11 +6517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 229 + "__id__": 235 }, "_enabled": true, "__prefab": { - "__id__": 251 + "__id__": 257 }, "_contentSize": { "__type__": "cc.Size", @@ -6408,11 +6545,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 229 + "__id__": 235 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 259 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6453,11 +6590,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 229 + "__id__": 235 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 261 }, "clickEvents": [], "_interactable": true, @@ -6497,7 +6634,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 229 + "__id__": 235 }, "_id": "" }, @@ -6511,20 +6648,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 229 + "__id__": 235 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 263 }, "count": { - "__id__": 239 - }, - "price": { "__id__": 245 }, + "price": { + "__id__": 251 + }, "icon": { - "__id__": 233 + "__id__": 239 }, "_id": "" }, @@ -6551,36 +6688,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 204 }, "_children": [ - { - "__id__": 260 - }, { "__id__": 266 }, { "__id__": 272 + }, + { + "__id__": 278 } ], "_active": true, "_components": [ - { - "__id__": 280 - }, - { - "__id__": 282 - }, - { - "__id__": 284 - }, { "__id__": 286 + }, + { + "__id__": 288 + }, + { + "__id__": 290 + }, + { + "__id__": 292 } ], "_prefab": { - "__id__": 288 + "__id__": 294 }, "_lpos": { "__type__": "cc.Vec3", @@ -6617,20 +6754,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 259 + "__id__": 265 }, "_children": [], "_active": true, "_components": [ { - "__id__": 261 + "__id__": 267 }, { - "__id__": 263 + "__id__": 269 } ], "_prefab": { - "__id__": 265 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", @@ -6667,11 +6804,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 260 + "__id__": 266 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 268 }, "_contentSize": { "__type__": "cc.Size", @@ -6695,11 +6832,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 260 + "__id__": 266 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 270 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6753,20 +6890,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 259 + "__id__": 265 }, "_children": [], "_active": true, "_components": [ { - "__id__": 267 + "__id__": 273 }, { - "__id__": 269 + "__id__": 275 } ], "_prefab": { - "__id__": 271 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -6803,11 +6940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 274 }, "_contentSize": { "__type__": "cc.Size", @@ -6831,11 +6968,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 270 + "__id__": 276 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6912,23 +7049,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 259 + "__id__": 265 }, "_children": [], "_active": true, "_components": [ { - "__id__": 273 + "__id__": 279 }, { - "__id__": 275 + "__id__": 281 }, { - "__id__": 277 + "__id__": 283 } ], "_prefab": { - "__id__": 279 + "__id__": 285 }, "_lpos": { "__type__": "cc.Vec3", @@ -6965,11 +7102,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 272 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 280 }, "_contentSize": { "__type__": "cc.Size", @@ -6993,11 +7130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 272 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 276 + "__id__": 282 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7061,11 +7198,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 272 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 278 + "__id__": 284 }, "_alignFlags": 4, "_target": null, @@ -7110,11 +7247,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 287 }, "_contentSize": { "__type__": "cc.Size", @@ -7138,11 +7275,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 289 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7183,11 +7320,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 291 }, "clickEvents": [], "_interactable": true, @@ -7227,7 +7364,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 259 + "__id__": 265 }, "_id": "" }, @@ -7241,20 +7378,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 293 }, "count": { - "__id__": 269 - }, - "price": { "__id__": 275 }, + "price": { + "__id__": 281 + }, "icon": { - "__id__": 263 + "__id__": 269 }, "_id": "" }, @@ -7281,36 +7418,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 204 }, "_children": [ - { - "__id__": 290 - }, { "__id__": 296 }, { "__id__": 302 + }, + { + "__id__": 308 } ], "_active": true, "_components": [ - { - "__id__": 310 - }, - { - "__id__": 312 - }, - { - "__id__": 314 - }, { "__id__": 316 + }, + { + "__id__": 318 + }, + { + "__id__": 320 + }, + { + "__id__": 322 } ], "_prefab": { - "__id__": 318 + "__id__": 324 }, "_lpos": { "__type__": "cc.Vec3", @@ -7347,20 +7484,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 289 + "__id__": 295 }, "_children": [], "_active": true, "_components": [ { - "__id__": 291 + "__id__": 297 }, { - "__id__": 293 + "__id__": 299 } ], "_prefab": { - "__id__": 295 + "__id__": 301 }, "_lpos": { "__type__": "cc.Vec3", @@ -7397,11 +7534,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 290 + "__id__": 296 }, "_enabled": true, "__prefab": { - "__id__": 292 + "__id__": 298 }, "_contentSize": { "__type__": "cc.Size", @@ -7425,11 +7562,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 290 + "__id__": 296 }, "_enabled": true, "__prefab": { - "__id__": 294 + "__id__": 300 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7483,20 +7620,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 289 + "__id__": 295 }, "_children": [], "_active": true, "_components": [ { - "__id__": 297 + "__id__": 303 }, { - "__id__": 299 + "__id__": 305 } ], "_prefab": { - "__id__": 301 + "__id__": 307 }, "_lpos": { "__type__": "cc.Vec3", @@ -7533,11 +7670,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 296 + "__id__": 302 }, "_enabled": true, "__prefab": { - "__id__": 298 + "__id__": 304 }, "_contentSize": { "__type__": "cc.Size", @@ -7561,11 +7698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 296 + "__id__": 302 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 306 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7642,23 +7779,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 289 + "__id__": 295 }, "_children": [], "_active": true, "_components": [ { - "__id__": 303 + "__id__": 309 }, { - "__id__": 305 + "__id__": 311 }, { - "__id__": 307 + "__id__": 313 } ], "_prefab": { - "__id__": 309 + "__id__": 315 }, "_lpos": { "__type__": "cc.Vec3", @@ -7695,11 +7832,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 310 }, "_contentSize": { "__type__": "cc.Size", @@ -7723,11 +7860,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 312 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7791,11 +7928,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 308 + "__id__": 314 }, "_alignFlags": 4, "_target": null, @@ -7840,11 +7977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 295 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 317 }, "_contentSize": { "__type__": "cc.Size", @@ -7868,11 +8005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 295 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 319 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7913,11 +8050,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 295 }, "_enabled": true, "__prefab": { - "__id__": 315 + "__id__": 321 }, "clickEvents": [], "_interactable": true, @@ -7957,7 +8094,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 289 + "__id__": 295 }, "_id": "" }, @@ -7971,20 +8108,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 295 }, "_enabled": true, "__prefab": { - "__id__": 317 + "__id__": 323 }, "count": { - "__id__": 299 - }, - "price": { "__id__": 305 }, + "price": { + "__id__": 311 + }, "icon": { - "__id__": 293 + "__id__": 299 }, "_id": "" }, @@ -8011,36 +8148,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 204 }, "_children": [ - { - "__id__": 320 - }, { "__id__": 326 }, { "__id__": 332 + }, + { + "__id__": 338 } ], "_active": true, "_components": [ - { - "__id__": 340 - }, - { - "__id__": 342 - }, - { - "__id__": 344 - }, { "__id__": 346 + }, + { + "__id__": 348 + }, + { + "__id__": 350 + }, + { + "__id__": 352 } ], "_prefab": { - "__id__": 348 + "__id__": 354 }, "_lpos": { "__type__": "cc.Vec3", @@ -8077,20 +8214,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 319 + "__id__": 325 }, "_children": [], "_active": true, "_components": [ { - "__id__": 321 + "__id__": 327 }, { - "__id__": 323 + "__id__": 329 } ], "_prefab": { - "__id__": 325 + "__id__": 331 }, "_lpos": { "__type__": "cc.Vec3", @@ -8127,11 +8264,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 322 + "__id__": 328 }, "_contentSize": { "__type__": "cc.Size", @@ -8155,11 +8292,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 324 + "__id__": 330 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8213,20 +8350,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 319 + "__id__": 325 }, "_children": [], "_active": true, "_components": [ { - "__id__": 327 + "__id__": 333 }, { - "__id__": 329 + "__id__": 335 } ], "_prefab": { - "__id__": 331 + "__id__": 337 }, "_lpos": { "__type__": "cc.Vec3", @@ -8263,11 +8400,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 332 }, "_enabled": true, "__prefab": { - "__id__": 328 + "__id__": 334 }, "_contentSize": { "__type__": "cc.Size", @@ -8291,11 +8428,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 332 }, "_enabled": true, "__prefab": { - "__id__": 330 + "__id__": 336 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8372,23 +8509,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 319 + "__id__": 325 }, "_children": [], "_active": true, "_components": [ { - "__id__": 333 + "__id__": 339 }, { - "__id__": 335 + "__id__": 341 }, { - "__id__": 337 + "__id__": 343 } ], "_prefab": { - "__id__": 339 + "__id__": 345 }, "_lpos": { "__type__": "cc.Vec3", @@ -8425,11 +8562,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 338 }, "_enabled": true, "__prefab": { - "__id__": 334 + "__id__": 340 }, "_contentSize": { "__type__": "cc.Size", @@ -8453,11 +8590,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 338 }, "_enabled": true, "__prefab": { - "__id__": 336 + "__id__": 342 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8521,11 +8658,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 338 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 344 }, "_alignFlags": 4, "_target": null, @@ -8570,11 +8707,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 341 + "__id__": 347 }, "_contentSize": { "__type__": "cc.Size", @@ -8598,11 +8735,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 343 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8643,11 +8780,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 351 }, "clickEvents": [], "_interactable": true, @@ -8687,7 +8824,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 319 + "__id__": 325 }, "_id": "" }, @@ -8701,20 +8838,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 353 }, "count": { - "__id__": 329 - }, - "price": { "__id__": 335 }, + "price": { + "__id__": 341 + }, "icon": { - "__id__": 323 + "__id__": 329 }, "_id": "" }, @@ -8741,36 +8878,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 204 }, "_children": [ - { - "__id__": 350 - }, { "__id__": 356 }, { "__id__": 362 + }, + { + "__id__": 368 } ], "_active": true, "_components": [ - { - "__id__": 370 - }, - { - "__id__": 372 - }, - { - "__id__": 374 - }, { "__id__": 376 + }, + { + "__id__": 378 + }, + { + "__id__": 380 + }, + { + "__id__": 382 } ], "_prefab": { - "__id__": 378 + "__id__": 384 }, "_lpos": { "__type__": "cc.Vec3", @@ -8807,20 +8944,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 355 }, "_children": [], "_active": true, "_components": [ { - "__id__": 351 + "__id__": 357 }, { - "__id__": 353 + "__id__": 359 } ], "_prefab": { - "__id__": 355 + "__id__": 361 }, "_lpos": { "__type__": "cc.Vec3", @@ -8857,11 +8994,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 356 }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 358 }, "_contentSize": { "__type__": "cc.Size", @@ -8885,11 +9022,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 356 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 360 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8943,20 +9080,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 355 }, "_children": [], "_active": true, "_components": [ { - "__id__": 357 + "__id__": 363 }, { - "__id__": 359 + "__id__": 365 } ], "_prefab": { - "__id__": 361 + "__id__": 367 }, "_lpos": { "__type__": "cc.Vec3", @@ -8993,11 +9130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 362 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 364 }, "_contentSize": { "__type__": "cc.Size", @@ -9021,11 +9158,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 362 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 366 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9102,23 +9239,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 355 }, "_children": [], "_active": true, "_components": [ { - "__id__": 363 + "__id__": 369 }, { - "__id__": 365 + "__id__": 371 }, { - "__id__": 367 + "__id__": 373 } ], "_prefab": { - "__id__": 369 + "__id__": 375 }, "_lpos": { "__type__": "cc.Vec3", @@ -9155,11 +9292,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 368 }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 370 }, "_contentSize": { "__type__": "cc.Size", @@ -9183,11 +9320,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 368 }, "_enabled": true, "__prefab": { - "__id__": 366 + "__id__": 372 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9251,11 +9388,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 368 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 374 }, "_alignFlags": 4, "_target": null, @@ -9300,11 +9437,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 371 + "__id__": 377 }, "_contentSize": { "__type__": "cc.Size", @@ -9328,11 +9465,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 379 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9373,11 +9510,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 375 + "__id__": 381 }, "clickEvents": [], "_interactable": true, @@ -9417,7 +9554,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 349 + "__id__": 355 }, "_id": "" }, @@ -9431,20 +9568,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 377 + "__id__": 383 }, "count": { - "__id__": 359 - }, - "price": { "__id__": 365 }, + "price": { + "__id__": 371 + }, "icon": { - "__id__": 353 + "__id__": 359 }, "_id": "" }, @@ -9471,11 +9608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 380 + "__id__": 386 }, "_contentSize": { "__type__": "cc.Size", @@ -9499,11 +9636,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 382 + "__id__": 388 }, "_resizeMode": 1, "_layoutType": 3, @@ -9537,11 +9674,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 384 + "__id__": 390 }, "_alignFlags": 16, "_target": null, @@ -9586,11 +9723,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 393 }, "_contentSize": { "__type__": "cc.Size", @@ -9614,11 +9751,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 389 + "__id__": 395 }, "_alignFlags": 0, "_target": null, @@ -9663,11 +9800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 392 + "__id__": 398 }, "_contentSize": { "__type__": "cc.Size", @@ -9691,11 +9828,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 394 + "__id__": 400 }, "_resizeMode": 1, "_layoutType": 2, @@ -9742,16 +9879,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 397 + "__id__": 403 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1965 + "height": 1734.4 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -9770,11 +9907,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 399 + "__id__": 405 }, "_type": 0, "_inverted": false, @@ -9792,11 +9929,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 401 + "__id__": 407 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9838,11 +9975,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 403 + "__id__": 409 }, "_alignFlags": 45, "_target": null, @@ -9887,16 +10024,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 406 + "__id__": 412 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 1965 + "height": 1734.4 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -9915,11 +10052,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 408 + "__id__": 414 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9957,11 +10094,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 410 + "__id__": 416 }, "bounceDuration": 0.23, "brake": 0.75, @@ -9972,7 +10109,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 32 + "__id__": 38 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -9988,18 +10125,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 412 + "__id__": 418 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, "_top": 150, - "_bottom": 0, + "_bottom": 230.6, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -10027,8 +10164,6 @@ "__id__": 0 }, "fileId": "f45hS/4sFIq6wcy5xYXjo8", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -10041,7 +10176,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 415 + "__id__": 421 }, "_contentSize": { "__type__": "cc.Size", @@ -10069,7 +10204,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 417 + "__id__": 423 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10114,7 +10249,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 419 + "__id__": 425 }, "_alignFlags": 45, "_target": null, @@ -10163,7 +10298,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 422 + "__id__": 428 }, "_contentSize": { "__type__": "cc.Size", @@ -10191,7 +10326,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 424 + "__id__": 430 }, "_alignFlags": 45, "_target": null, @@ -10227,7 +10362,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 426 + "__id__": 432 }, "_id": "" }, @@ -10245,27 +10380,27 @@ }, "_enabled": true, "__prefab": { - "__id__": 428 + "__id__": 434 }, "m_rootNode": null, "items": [ { - "__id__": 226 + "__id__": 232 }, { - "__id__": 256 + "__id__": 262 }, { - "__id__": 286 + "__id__": 292 }, { - "__id__": 316 + "__id__": 322 }, { - "__id__": 346 + "__id__": 352 }, { - "__id__": 376 + "__id__": 382 } ], "_id": ""