diff --git a/assets/Scenes/LoginScene.scene b/assets/Scenes/LoginScene.scene index a919e60e..00d67e56 100644 --- a/assets/Scenes/LoginScene.scene +++ b/assets/Scenes/LoginScene.scene @@ -841,14 +841,17 @@ "_string": "All characters, places, or organizations depicted in this app are fictitious. Any resemblance to real persons, living or dead, is purely coincidental.", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 46, - "_fontSize": 46, + "_actualFontSize": 48, + "_fontSize": 48, "_fontFamily": "NotoSans-Regular", "_lineHeight": 54.6, "_overflow": 1, "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, "_spacingX": 0, "_isItalic": false, "_isBold": false, @@ -964,7 +967,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -470.13199999999995, + "y": -511.273, "z": 0 }, "_lrot": { @@ -1198,7 +1201,7 @@ "_left": 0, "_right": 0, "_top": 0, - "_bottom": -489.13199999999995, + "_bottom": -530.273, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, diff --git a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts index 2d6ee0e2..5b0c35da 100644 --- a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts @@ -1,21 +1,18 @@ import { _decorator, Component, Label, Node } from "cc"; import li_BaseView from "../../../Main/Common/li_BaseView"; import Utils from "../../../Main/Common/Utils"; -import { CommercialData } from "../../data/CommercialData"; -import { ConfigManager } from "../../manager/ConfigManager"; import { GButton } from "../../../Main/Common/GButton"; import { PurchasePanelItem } from "../../uiitems/PurchasePanelItem"; -import { ViewManager } from "../../../Main/Manager/ViewManager"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; -import { InnerEventCode, InnerMsgCode } from "../../../Main/Config/InnerMsgCode"; +import { InnerMsgCode } from "../../../Main/Config/InnerMsgCode"; import { DataManager, DataId } from "../../data/DataManager"; import { WalletData } from "../../data/WalletData"; import { ShopData } from "../../data/ShopData"; import { GirlData } from "../../data/GirlData"; import { ShopService } from "db://assets/Scripts/chat18x/network/services/ShopService"; import { PaymentService } from "db://assets/Scripts/chat18x/payment/PaymentService"; -import proto from 'db://assets/Scripts/proto/proto.pb.js'; -import GameRootUI from "../../../Main/Common/GameRootUI"; +import proto from "db://assets/Scripts/proto/proto.pb.js"; +import { NavigationManager } from "../../manager/NavigationManager"; const { ccclass, property } = _decorator; @@ -45,11 +42,15 @@ export class PurchasePanel extends li_BaseView { //订阅商业化数据事件 Utils.addInnerEL(InnerMsgCode.BalanceChange, this, () => { this.onBalanceChange(); - }); + }); Utils.addInnerEL(InnerMsgCode.VipExpireChange, this, () => { this.onVipExpireChange(); - }); + }); + for (let index = 0; index < this.items.length; index++) { + const element = this.items[index]; + element.init(this); + } this.Show(); } @@ -70,10 +71,10 @@ export class PurchasePanel extends li_BaseView { // 购买30天会员 const shopData = DataManager.I.getDataById(DataId.Shop); const memberId = shopData.get30DayMemberId(); - this.reqBuyGood(memberId); + this.reqBuyGood(memberId); }, this - ); + ); GButton.BandClick( this._nodeTab.ReturnBtn, () => { @@ -86,9 +87,7 @@ export class PurchasePanel extends li_BaseView { async Show() { // 请求商城数据 - const reqData = { - - }; + const reqData = {}; let res = await ShopService.I.reqShopList(reqData); if (res && res.code === proto.cs.EnmRetCode.SUCCESS) { // 保存数据 @@ -96,27 +95,32 @@ export class PurchasePanel extends li_BaseView { shopData.goods = res.data; // 根据数据,刷新界面 this.updateView(); + this.updateShops(); } } + shopData: ShopData; updateView() { this.getPlayerMerData(); - const shopData = DataManager.I.getDataById(DataId.Shop); + this.shopData = DataManager.I.getDataById(DataId.Shop); // VIP会员 - const memberId7 = shopData.get7DayMemberId(); - const price7 = shopData.getOriginalPriceById(memberId7); + const memberId7 = this.shopData.get7DayMemberId(); + const price7 = this.shopData.getOriginalPriceById(memberId7); this.vipPrice7.string = `$ ${price7}`; - const memberId30 = shopData.get30DayMemberId(); - const price30 = shopData.getOriginalPriceById(memberId30); + const memberId30 = this.shopData.get30DayMemberId(); + const price30 = this.shopData.getOriginalPriceById(memberId30); this.vipPrice30.string = `$ ${price30}`; - // 充值商品 - const rechargeIds = shopData.getRechargeIds(); + } + + // 0:cash 1:web3 + updateShops(type: number = 0) { + // 充值商品 缺:分开获取现金充值或者web3币充值 + const rechargeIds = this.shopData.getRechargeIds(); for (let index = 0; index < this.items.length; index++) { const element = this.items[index]; - element.init(this, rechargeIds[index]); + element.refresh(rechargeIds[index]); } - this.items.forEach((item) => item.show()); } setDiamondTag(id: number) { @@ -125,6 +129,9 @@ export class PurchasePanel extends li_BaseView { if (isRechargeId) { // 需要外部支付进行购买 this.startPayment(id); + } else { + //是u币充值,打开页面 + NavigationManager.Instance.openSubPanel("Web3PopPanel", this.node); } } @@ -143,7 +150,7 @@ export class PurchasePanel extends li_BaseView { const walletData = DataManager.I.getDataById(DataId.Wallet); const balance = walletData.getOriginalBalance(); this.coinNum.string = balance.toString(); - } + } onVipExpireChange() { this.refreshVipExpire(); @@ -156,8 +163,8 @@ export class PurchasePanel extends li_BaseView { const leftTime = Utils.formatVipLeftTime(vipExpire); this.vipLeftTime.string = LanguageUtils.getText( "purchasepanel.vip_left" - ).replace("${leftTime}", leftTime); - } + ).replace("${leftTime}", leftTime); + } // 使用余额购买商品 async reqBuyGood(goodId: number) { @@ -176,15 +183,14 @@ export class PurchasePanel extends li_BaseView { walletData.balance = Number(resData.balance); walletData.vipExpire = Number(resData.vipExpire); // 刷新界面 - } - } + } // 创建订单 async startPayment(goodId: number) { // 请求数据 const reqData = { - goodId + goodId, }; let res = await PaymentService.I.startPayment(reqData); console.log("支付完成的响应数据:", res); @@ -196,18 +202,21 @@ export class PurchasePanel extends li_BaseView { console.log("支付成功!!!"); const walletData = DataManager.I.getDataById(DataId.Wallet); walletData.balance = Number(res.balance); - walletData.vipExpire = Number(res.vipExpire); + walletData.vipExpire = Number(res.vipExpire); } } - } + } + + onClickCashBtn() { + this.updateShops(0); + } + onClickWeb3Btn() { + this.updateShops(1); + } onDestroy() { - Utils.removeInnerEL(InnerMsgCode.BalanceChange, this, () => { - - }); - Utils.removeInnerEL(InnerMsgCode.VipExpireChange, this, () => { - - }); + Utils.removeInnerEL(InnerMsgCode.BalanceChange, this, () => {}); + Utils.removeInnerEL(InnerMsgCode.VipExpireChange, this, () => {}); super.onDestroy(); } } diff --git a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts index b224eedd..c8dc2e3a 100644 --- a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts @@ -43,7 +43,6 @@ export class ThemePanel extends li_BaseView { private _nodeTab: any = {}; coinNum: Label; - uid: Label; itemInst: ThemeItem; content: Node; private vipLeftTime: Label; @@ -65,7 +64,6 @@ export class ThemePanel extends li_BaseView { Utils.parseNode(this.node, this._nodeTab); this.coinNum = this._nodeTab.coinNum.getComponent(Label); - this.uid = this._nodeTab.uid.getComponent(Label); this.recName = this._nodeTab.characterNameText.getComponent(Label); this.recSprite = this._nodeTab.recPic.getComponent(Sprite); this.vipLeftTime = this._nodeTab.vipText.getComponent(Label); @@ -113,7 +111,7 @@ export class ThemePanel extends li_BaseView { const accountData = DataManager.I.getDataById( DataId.Account ); - this.uid.string = "uid: " + accountData.accId; + //this.uid.string = "uid: " + accountData.accId; this.recId = 1; // 检查是否已被取消 @@ -253,19 +251,15 @@ export class ThemePanel extends li_BaseView { this.recName.string = LanguageUtils.getText(this.rectNameKey); // 加载远程资源 const envData = DataManager.I.getDataById(DataId.Env); - let newPath = envData.cdn + "/" + "Girls/" + avatarPath + ".png"; - ResManager.I.changeRemoteSpriteFrame( - this.recSprite, - newPath, - () => { - let sizeTran = this.recSprite.node.parent.getComponent(UITransform); - Utils.adjustBgPixelRatioToSize( - sizeTran.contentSize, - this.recSprite.node, - 1 - ); - } - ); + let newPath = envData.cdn + "/" + "Girls/" + avatarPath + ".png"; + ResManager.I.changeRemoteSpriteFrame(this.recSprite, newPath, () => { + let sizeTran = this.recSprite.node.parent.getComponent(UITransform); + Utils.adjustBgPixelRatioToSize( + sizeTran.contentSize, + this.recSprite.node, + 1 + ); + }); } /** diff --git a/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts new file mode 100644 index 00000000..0f2c523b --- /dev/null +++ b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts @@ -0,0 +1,89 @@ +import { _decorator, Component, Label, Node, Sprite, Vec3 } from "cc"; +import li_BaseView from "../../../Main/Common/li_BaseView"; +import Utils from "../../../Main/Common/Utils"; +import { GButton } from "../../../Main/Common/GButton"; +const { ccclass, property } = _decorator; + +@ccclass("Web3PopPanel") +export class Web3PopPanel extends li_BaseView { + private _nodeTab: any = {}; + + private coinIcon: Sprite; + private coinText: Label; + private selection: Node; + + private curType: number; + onLoadCT(): void { + Utils.parseNode(this.node, this._nodeTab); + + this.selection = this._nodeTab.Selection; + this.coinIcon = this._nodeTab.SelectedCoinIcon; + this.coinText = this._nodeTab._SelectedCoinText; + this.registerListener(); + + this.selection.setScale(new Vec3(1, 0, 1)); + } + registerListener() { + GButton.BandClick(this._nodeTab.closeBtn, this.onClickClose, this); + GButton.BandClick( + this._nodeTab.CoinTypeSelectBtn, + this.onClickCoinTypeSelectBtn, + this + ); + GButton.BandClick(this._nodeTab.CopyBtn, this.onClickCopy, this); + + GButton.BandClick( + this._nodeTab.CoinType1, + () => { + this.onClickCoinType(1); + }, + this + ); + GButton.BandClick( + this._nodeTab.CoinType2, + () => { + this.onClickCoinType(2); + }, + this + ); + GButton.BandClick( + this._nodeTab.CoinType3, + () => { + this.onClickCoinType(3); + }, + this + ); + } + + init() { + this.curType = 1; + } + refresh() { + //this.coinIcon + } + + updateSelectNetwork() {} + + onClickCoinTypeSelectBtn() { + this.selection.scale = new Vec3(1, 1, 1); + } + + onClickCoinType(type: number) { + this.curType = type; + if (type == 1) { + } else if (type == 2) { + } else if (type == 3) { + } else { + } + + this.selection.scale = new Vec3(1, 0, 1); + } + + onClickCopy() { + //todo:copy 功能 + } + + onClickClose() { + this.close(); + } +} diff --git a/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts.meta b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts.meta new file mode 100644 index 00000000..74a36255 --- /dev/null +++ b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "5a5ef9db-cc78-49c6-9dc9-4a6af5005ee6", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts b/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts index 5ab0d526..01176924 100644 --- a/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts +++ b/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts @@ -1,9 +1,10 @@ -import { _decorator, Component, Label, Node } from "cc"; +import { _decorator, Component, Label, Node, Sprite } from "cc"; import { PurchasePanel } from "../ui/panels/PurchasePanel"; import { PurchaseConfig } from "../../schema/schema"; import { DataManager, DataId } from "../data/DataManager"; import { ShopData } from "../data/ShopData"; import { GButton } from "db://assets/Scripts/Main/Common/GButton"; +import ResManager from "../../Main/Manager/ResManager"; const { ccclass, property } = _decorator; @@ -14,21 +15,40 @@ export class PurchasePanelItem extends Component { @property(Label) price: Label; + @property(Sprite) + icon: Sprite; + baseView: PurchasePanel; goodId: number; - public init(base: PurchasePanel, goodId: number) { + public init(base: PurchasePanel) { this.baseView = base; - this.goodId = goodId; GButton.BandClick(this.node, this.onClickThis, this); } + public refresh(goodId: number) { + this.goodId = goodId; + this.show(); + } + public show() { const shopData = DataManager.I.getDataById(DataId.Shop); const count = shopData.getCountById(this.goodId); this.count.string = count.toString(); const price = shopData.getOriginalPriceById(this.goodId); this.price.string = price.toString(); + + let path = ""; + if (this.goodId > 2000) { + // web3币 + path += "ui/shop/coin/"; + } //cash + else { + path += "ui/shop/cash/"; + } + path += this.goodId; + + ResManager.I.changeResourceSpriteFrame(this.icon, path); } async onClickThis() { diff --git a/assets/Scripts/chat18x/uiitems/ThemeItem.ts b/assets/Scripts/chat18x/uiitems/ThemeItem.ts index 323f7a81..c1f981e5 100644 --- a/assets/Scripts/chat18x/uiitems/ThemeItem.ts +++ b/assets/Scripts/chat18x/uiitems/ThemeItem.ts @@ -2,7 +2,10 @@ import { _decorator, Component, Label, Node, Sprite, UITransform } from "cc"; import { GButton } from "db://assets/Scripts/Main/Common/GButton"; import ResManager from "db://assets/Scripts/Main/Manager/ResManager"; import Utils from "db://assets/Scripts/Main/Common/Utils"; -import { NavigationManager, PageTransitionType } from "../manager/NavigationManager"; +import { + NavigationManager, + PageTransitionType, +} from "../manager/NavigationManager"; import LanguageUtils from "../../Main/Common/LanguageUtils"; import { InnerMsgCode } from "../../Main/Config/InnerMsgCode"; import { DataManager, DataId } from "../data/DataManager"; @@ -18,6 +21,8 @@ export class ThemeItem extends Component { lockCover: Sprite; @property(Label) titleName: Label; + @property(UITransform) + titleNameBg: UITransform; @property(Node) loading: Node; @@ -34,17 +39,28 @@ export class ThemeItem extends Component { key: string; protected onLoad(): void { Utils.addInnerEL(InnerMsgCode.LanguageChange, this, () => { - this.titleName.string = LanguageUtils.getText(this.key); + this.updateTitle(); }); } protected onDestroy(): void { Utils.removeInnerEL(InnerMsgCode.LanguageChange, this, () => { - this.titleName.string = LanguageUtils.getText(this.key); + this.updateTitle(); }); } + updateTitle() { + this.titleName.string = LanguageUtils.getText(this.key); + this.scheduleOnce(() => { + const size = this.titleName.getComponent(UITransform).contentSize; + this.titleNameBg.setContentSize( + size.x + 65, + this.titleNameBg.contentSize.y + ); + }, 0); + } + refresh(themeId: number, parentPanel?: any) { - this.loading.active = true; + if (this.loading) this.loading.active = true; this.parentPanel = parentPanel; // 主题数据 const themeData = DataManager.I.getDataById(DataId.Theme); @@ -52,9 +68,7 @@ export class ThemeItem extends Component { !themeData.getIsReleaseById(themeId); this.isLocked = !themeData.getIsReleaseById(themeId); this.key = themeData.getLanKeyById(themeId); - this.titleName.string = LanguageUtils.getText( - themeData.getLanKeyById(themeId) - ); + this.updateTitle(); this.category = themeData.getCategoryById(themeId); ResManager.I.changeBundleSpriteFrame( this.img, @@ -63,7 +77,7 @@ export class ThemeItem extends Component { () => { let sizeTran = this.img.node.parent.getComponent(UITransform); Utils.adjustBgPixelRatioToSize(sizeTran.contentSize, this.img.node, 3); - this.loading.active = false; + if (this.loading) this.loading.active = false; } ); GButton.RemoveAndBandClick(this.node, this.OnClickThis, this); @@ -74,7 +88,10 @@ export class ThemeItem extends Component { return; } - console.log("[ThemeItem] Opening GirlListPanel for category:", this.category); + console.log( + "[ThemeItem] Opening GirlListPanel for category:", + this.category + ); // 不使用过渡动画,直接打开 NavigationManager.Instance.navigateToGirlList(this.category); } diff --git a/assets/bundles/Chat18x/Image/Theme/1001.png b/assets/bundles/Chat18x/Image/Theme/1001.png index 34a8150a..f16b3bd5 100644 Binary files a/assets/bundles/Chat18x/Image/Theme/1001.png and b/assets/bundles/Chat18x/Image/Theme/1001.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1001.png.meta b/assets/bundles/Chat18x/Image/Theme/1001.png.meta index 83116edb..9417a6df 100644 --- a/assets/bundles/Chat18x/Image/Theme/1001.png.meta +++ b/assets/bundles/Chat18x/Image/Theme/1001.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 460, - "height": 460, - "rawWidth": 460, - "rawHeight": 460, + "width": 444, + "height": 330, + "rawWidth": 444, + "rawHeight": 330, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -230, - -230, + -222, + -165, 0, - 230, - -230, + 222, + -165, 0, - -230, - 230, + -222, + 165, 0, - 230, - 230, + 222, + 165, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 460, - 460, - 460, + 330, + 444, + 330, 0, 0, - 460, + 444, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -230, - -230, + -222, + -165, 0 ], "maxPos": [ - 230, - 230, + 222, + 165, 0 ] }, diff --git a/assets/bundles/Chat18x/Image/Theme/1002.png b/assets/bundles/Chat18x/Image/Theme/1002.png index d9b8340f..4bdd1755 100644 Binary files a/assets/bundles/Chat18x/Image/Theme/1002.png and b/assets/bundles/Chat18x/Image/Theme/1002.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1002.png.meta b/assets/bundles/Chat18x/Image/Theme/1002.png.meta index e2512f8c..0db8ffbb 100644 --- a/assets/bundles/Chat18x/Image/Theme/1002.png.meta +++ b/assets/bundles/Chat18x/Image/Theme/1002.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 460, - "height": 460, - "rawWidth": 460, - "rawHeight": 460, + "width": 444, + "height": 330, + "rawWidth": 444, + "rawHeight": 330, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -230, - -230, + -222, + -165, 0, - 230, - -230, + 222, + -165, 0, - -230, - 230, + -222, + 165, 0, - 230, - 230, + 222, + 165, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 460, - 460, - 460, + 330, + 444, + 330, 0, 0, - 460, + 444, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -230, - -230, + -222, + -165, 0 ], "maxPos": [ - 230, - 230, + 222, + 165, 0 ] }, diff --git a/assets/bundles/Chat18x/Image/Theme/1003.png b/assets/bundles/Chat18x/Image/Theme/1003.png index 371e5a19..8b6aa4ed 100644 Binary files a/assets/bundles/Chat18x/Image/Theme/1003.png and b/assets/bundles/Chat18x/Image/Theme/1003.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1003.png.meta b/assets/bundles/Chat18x/Image/Theme/1003.png.meta index 94508c39..2e9db948 100644 --- a/assets/bundles/Chat18x/Image/Theme/1003.png.meta +++ b/assets/bundles/Chat18x/Image/Theme/1003.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 460, - "height": 460, - "rawWidth": 460, - "rawHeight": 460, + "width": 444, + "height": 330, + "rawWidth": 444, + "rawHeight": 330, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -230, - -230, + -222, + -165, 0, - 230, - -230, + 222, + -165, 0, - -230, - 230, + -222, + 165, 0, - 230, - 230, + 222, + 165, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 460, - 460, - 460, + 330, + 444, + 330, 0, 0, - 460, + 444, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -230, - -230, + -222, + -165, 0 ], "maxPos": [ - 230, - 230, + 222, + 165, 0 ] }, diff --git a/assets/bundles/Chat18x/Image/Theme/1004.png b/assets/bundles/Chat18x/Image/Theme/1004.png index 9cd96c9c..8be86e08 100644 Binary files a/assets/bundles/Chat18x/Image/Theme/1004.png and b/assets/bundles/Chat18x/Image/Theme/1004.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1004.png.meta b/assets/bundles/Chat18x/Image/Theme/1004.png.meta index 2e25bc2d..09711144 100644 --- a/assets/bundles/Chat18x/Image/Theme/1004.png.meta +++ b/assets/bundles/Chat18x/Image/Theme/1004.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 460, - "height": 460, - "rawWidth": 460, - "rawHeight": 460, + "width": 444, + "height": 329, + "rawWidth": 444, + "rawHeight": 329, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -230, - -230, + -222, + -164.5, 0, - 230, - -230, + 222, + -164.5, 0, - -230, - 230, + -222, + 164.5, 0, - 230, - 230, + 222, + 164.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 460, - 460, - 460, + 329, + 444, + 329, 0, 0, - 460, + 444, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -230, - -230, + -222, + -164.5, 0 ], "maxPos": [ - 230, - 230, + 222, + 164.5, 0 ] }, diff --git a/assets/bundles/Chat18x/Image/Theme/1005.png b/assets/bundles/Chat18x/Image/Theme/1005.png index 246744d3..6a6224f8 100644 Binary files a/assets/bundles/Chat18x/Image/Theme/1005.png and b/assets/bundles/Chat18x/Image/Theme/1005.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1005.png.meta b/assets/bundles/Chat18x/Image/Theme/1005.png.meta index 9aa37160..3bcf5664 100644 --- a/assets/bundles/Chat18x/Image/Theme/1005.png.meta +++ b/assets/bundles/Chat18x/Image/Theme/1005.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 460, - "height": 460, - "rawWidth": 460, - "rawHeight": 460, + "width": 444, + "height": 327, + "rawWidth": 444, + "rawHeight": 327, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -230, - -230, + -222, + -163.5, 0, - 230, - -230, + 222, + -163.5, 0, - -230, - 230, + -222, + 163.5, 0, - 230, - 230, + 222, + 163.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 460, - 460, - 460, + 327, + 444, + 327, 0, 0, - 460, + 444, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -230, - -230, + -222, + -163.5, 0 ], "maxPos": [ - 230, - 230, + 222, + 163.5, 0 ] }, diff --git a/assets/bundles/Chat18x/Image/Theme/1006.png b/assets/bundles/Chat18x/Image/Theme/1006.png index 4bf50345..462c2504 100644 Binary files a/assets/bundles/Chat18x/Image/Theme/1006.png and b/assets/bundles/Chat18x/Image/Theme/1006.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1006.png.meta b/assets/bundles/Chat18x/Image/Theme/1006.png.meta index 07f768e5..862bfdb5 100644 --- a/assets/bundles/Chat18x/Image/Theme/1006.png.meta +++ b/assets/bundles/Chat18x/Image/Theme/1006.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 460, - "height": 460, - "rawWidth": 460, - "rawHeight": 460, + "width": 444, + "height": 329, + "rawWidth": 444, + "rawHeight": 329, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -230, - -230, + -222, + -164.5, 0, - 230, - -230, + 222, + -164.5, 0, - -230, - 230, + -222, + 164.5, 0, - 230, - 230, + 222, + 164.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 460, - 460, - 460, + 329, + 444, + 329, 0, 0, - 460, + 444, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -230, - -230, + -222, + -164.5, 0 ], "maxPos": [ - 230, - 230, + 222, + 164.5, 0 ] }, diff --git a/assets/bundles/Chat18x/NavigationPanel.prefab b/assets/bundles/Chat18x/NavigationPanel.prefab index 0abbbfa4..7ed6cec3 100644 --- a/assets/bundles/Chat18x/NavigationPanel.prefab +++ b/assets/bundles/Chat18x/NavigationPanel.prefab @@ -25,26 +25,26 @@ "__id__": 32 }, { - "__id__": 138 + "__id__": 186 }, { - "__id__": 144 + "__id__": 192 } ], "_active": true, "_components": [ { - "__id__": 160 + "__id__": 208 }, { - "__id__": 162 + "__id__": 210 }, { - "__id__": 164 + "__id__": 212 } ], "_prefab": { - "__id__": 166 + "__id__": 214 }, "_lpos": { "__type__": "cc.Vec3", @@ -720,32 +720,32 @@ "__id__": 33 }, { - "__id__": 57 - }, - { - "__id__": 81 + "__id__": 69 }, { "__id__": 105 + }, + { + "__id__": 141 } ], "_active": true, "_components": [ { - "__id__": 129 + "__id__": 177 }, { - "__id__": 131 + "__id__": 179 }, { - "__id__": 133 + "__id__": 181 }, { - "__id__": 135 + "__id__": 183 } ], "_prefab": { - "__id__": 137 + "__id__": 185 }, "_lpos": { "__type__": "cc.Vec3", @@ -789,34 +789,34 @@ "__id__": 34 }, { - "__id__": 40 + "__id__": 46 } ], "_active": true, "_components": [ { - "__id__": 46 + "__id__": 58 }, { - "__id__": 48 + "__id__": 60 }, { - "__id__": 50 + "__id__": 62 }, { - "__id__": 52 + "__id__": 64 }, { - "__id__": 54 + "__id__": 66 } ], "_prefab": { - "__id__": 56 + "__id__": 68 }, "_lpos": { "__type__": "cc.Vec3", "x": -407.1, - "y": 130.25, + "y": 96.767, "z": 0 }, "_lrot": { @@ -850,18 +850,22 @@ "_parent": { "__id__": 33 }, - "_children": [], + "_children": [ + { + "__id__": 35 + } + ], "_active": true, "_components": [ { - "__id__": 35 + "__id__": 41 }, { - "__id__": 37 + "__id__": 43 } ], "_prefab": { - "__id__": 39 + "__id__": 45 }, "_lpos": { "__type__": "cc.Vec3", @@ -892,6 +896,165 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 36 + }, + { + "__id__": 38 + } + ], + "_prefab": { + "__id__": 40 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 8.526512829121202e-14, + "y": -59.17100000000001, + "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__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 37 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2cLK27MdFH2rS73TE/fqaC" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 39 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "Home", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5b8XafpKNHCqq6M7uMfQdW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9aeed8KgdIOYdFxgm/5/rp", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -902,12 +1065,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 36 + "__id__": 42 }, "_contentSize": { "__type__": "cc.Size", - "width": 90, - "height": 90 + "width": 81, + "height": 81 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -930,7 +1093,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 38 + "__id__": 44 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -986,18 +1149,22 @@ "_parent": { "__id__": 33 }, - "_children": [], + "_children": [ + { + "__id__": 47 + } + ], "_active": true, "_components": [ { - "__id__": 41 + "__id__": 53 }, { - "__id__": 43 + "__id__": 55 } ], "_prefab": { - "__id__": 45 + "__id__": 57 }, "_lpos": { "__type__": "cc.Vec3", @@ -1028,22 +1195,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 46 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 48 + }, + { + "__id__": 50 + } + ], + "_prefab": { + "__id__": 52 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 8.526512829121202e-14, + "y": -59.17100000000001, + "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__": 40 + "__id__": 47 }, "_enabled": true, "__prefab": { - "__id__": 42 + "__id__": 49 }, "_contentSize": { "__type__": "cc.Size", - "width": 90, - "height": 90 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3dMlGdLilAKLoTySGIYztm" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 47 + }, + "_enabled": true, + "__prefab": { + "__id__": 51 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "Home", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a4FOQU3VNNm6AV6QDkk4+a" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "31nEOFoRVPWZLCYFljw3cD", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 46 + }, + "_enabled": true, + "__prefab": { + "__id__": 54 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 81, + "height": 81 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1062,11 +1388,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 40 + "__id__": 46 }, "_enabled": true, "__prefab": { - "__id__": 44 + "__id__": 56 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1124,12 +1450,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 47 + "__id__": 59 }, "_contentSize": { "__type__": "cc.Size", "width": 261.8, - "height": 222.3 + "height": 192 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1152,7 +1478,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 61 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1194,7 +1520,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 51 + "__id__": 63 }, "clickEvents": [], "_interactable": true, @@ -1252,13 +1578,13 @@ }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 65 }, "_alignFlags": 1, "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 44.23299999999999, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -1288,7 +1614,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 55 + "__id__": 67 }, "_id": "" }, @@ -1319,37 +1645,37 @@ }, "_children": [ { - "__id__": 58 + "__id__": 70 }, { - "__id__": 64 + "__id__": 82 } ], "_active": true, "_components": [ { - "__id__": 70 + "__id__": 94 }, { - "__id__": 72 + "__id__": 96 }, { - "__id__": 74 + "__id__": 98 }, { - "__id__": 76 + "__id__": 100 }, { - "__id__": 78 + "__id__": 102 } ], "_prefab": { - "__id__": 80 + "__id__": 104 }, "_lpos": { "__type__": "cc.Vec3", - "x": -136.70000000000005, - "y": 130.25, + "x": -136.7, + "y": 96.617, "z": 0 }, "_lrot": { @@ -1381,20 +1707,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 69 }, - "_children": [], + "_children": [ + { + "__id__": 71 + } + ], "_active": true, "_components": [ { - "__id__": 59 + "__id__": 77 }, { - "__id__": 61 + "__id__": 79 } ], "_prefab": { - "__id__": 63 + "__id__": 81 }, "_lpos": { "__type__": "cc.Vec3", @@ -1425,22 +1755,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 70 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 72 + }, + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 76 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -59.171, + "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__": 58 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 73 }, "_contentSize": { "__type__": "cc.Size", - "width": 34, - "height": 90 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "82+j/nKMlOE7YBYXn3C1Wg" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_enabled": true, + "__prefab": { + "__id__": 75 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "chat", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a8Q6thqdtGX6TZWeYYmK9s" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7cFClaQvpCHoVV5eWpzxS0", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 70 + }, + "_enabled": true, + "__prefab": { + "__id__": 78 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 31, + "height": 81 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1459,11 +1948,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 70 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 80 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1517,20 +2006,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 69 }, - "_children": [], + "_children": [ + { + "__id__": 83 + } + ], "_active": true, "_components": [ { - "__id__": 65 + "__id__": 89 }, { - "__id__": 67 + "__id__": 91 } ], "_prefab": { - "__id__": 69 + "__id__": 93 }, "_lpos": { "__type__": "cc.Vec3", @@ -1561,22 +2054,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 82 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + }, + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 88 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": -59.17100000000001, + "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__": 64 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 85 }, "_contentSize": { "__type__": "cc.Size", - "width": 34, - "height": 90 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b7PqXPv4tMVraCgfhWYGNV" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 83 + }, + "_enabled": true, + "__prefab": { + "__id__": 87 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "chat", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6brtdgarxAs6MgCk0I89bs" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "90qmlQaw1KS6XeJv+lBATJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 82 + }, + "_enabled": true, + "__prefab": { + "__id__": 90 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 31, + "height": 81 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1595,11 +2247,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 92 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1653,16 +2305,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 95 }, "_contentSize": { "__type__": "cc.Size", "width": 261.8, - "height": 222.3 + "height": 192 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1681,11 +2333,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 97 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1723,11 +2375,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 99 }, "clickEvents": [], "_interactable": true, @@ -1767,7 +2419,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 57 + "__id__": 69 }, "_id": "" }, @@ -1781,17 +2433,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 101 }, "_alignFlags": 1, "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 44.382999999999996, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -1817,11 +2469,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 103 }, "_id": "" }, @@ -1852,37 +2504,37 @@ }, "_children": [ { - "__id__": 82 + "__id__": 106 }, { - "__id__": 88 + "__id__": 118 } ], "_active": true, "_components": [ { - "__id__": 94 + "__id__": 130 }, { - "__id__": 96 + "__id__": 132 }, { - "__id__": 98 + "__id__": 134 }, { - "__id__": 100 + "__id__": 136 }, { - "__id__": 102 + "__id__": 138 } ], "_prefab": { - "__id__": 104 + "__id__": 140 }, "_lpos": { "__type__": "cc.Vec3", - "x": 133.69999999999996, - "y": 130.25, + "x": 133.70000000000005, + "y": 96.717, "z": 0 }, "_lrot": { @@ -1914,20 +2566,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 81 + "__id__": 105 }, - "_children": [], + "_children": [ + { + "__id__": 107 + } + ], "_active": true, "_components": [ { - "__id__": 83 + "__id__": 113 }, { - "__id__": 85 + "__id__": 115 } ], "_prefab": { - "__id__": 87 + "__id__": 117 }, "_lpos": { "__type__": "cc.Vec3", @@ -1958,22 +2614,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 106 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 108 + }, + { + "__id__": 110 + } + ], + "_prefab": { + "__id__": 112 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -1.1368683772161603e-13, + "y": -59.171, + "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__": 82 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 84 + "__id__": 109 }, "_contentSize": { "__type__": "cc.Size", - "width": 80, - "height": 70 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "01qsTuOtJEfqhBVFGsOlaD" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 111 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "chat", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cdYxCf2ZxM/49Z1REQn4sp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f43awLlp1FyaXmpxfKmeOe", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 114 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 63 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1992,11 +2807,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 86 + "__id__": 116 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2050,20 +2865,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 81 + "__id__": 105 }, - "_children": [], + "_children": [ + { + "__id__": 119 + } + ], "_active": true, "_components": [ { - "__id__": 89 + "__id__": 125 }, { - "__id__": 91 + "__id__": 127 } ], "_prefab": { - "__id__": 93 + "__id__": 129 }, "_lpos": { "__type__": "cc.Vec3", @@ -2094,22 +2913,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 118 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 120 + }, + { + "__id__": 122 + } + ], + "_prefab": { + "__id__": 124 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -59.17100000000001, + "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__": 88 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 90 + "__id__": 121 }, "_contentSize": { "__type__": "cc.Size", - "width": 80, - "height": 70 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fdZ/Y5cQlDkJpvhBUQt08d" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 123 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "chat", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "78LqF7A5tM8pmX1uIkgKWs" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9cbsUXpkBFxLwdFRyxuZwF", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 118 + }, + "_enabled": true, + "__prefab": { + "__id__": 126 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 73, + "height": 63 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2128,11 +3106,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 88 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 92 + "__id__": 128 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2186,16 +3164,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 131 }, "_contentSize": { "__type__": "cc.Size", "width": 261.8, - "height": 222.3 + "height": 192 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2214,11 +3192,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 133 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2256,11 +3234,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 99 + "__id__": 135 }, "clickEvents": [], "_interactable": true, @@ -2300,7 +3278,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 81 + "__id__": 105 }, "_id": "" }, @@ -2314,17 +3292,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 137 }, "_alignFlags": 1, "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 44.28299999999999, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2350,11 +3328,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 139 }, "_id": "" }, @@ -2385,37 +3363,37 @@ }, "_children": [ { - "__id__": 106 + "__id__": 142 }, { - "__id__": 112 + "__id__": 154 } ], "_active": true, "_components": [ { - "__id__": 118 + "__id__": 166 }, { - "__id__": 120 + "__id__": 168 }, { - "__id__": 122 + "__id__": 170 }, { - "__id__": 124 + "__id__": 172 }, { - "__id__": 126 + "__id__": 174 } ], "_prefab": { - "__id__": 128 + "__id__": 176 }, "_lpos": { "__type__": "cc.Vec3", - "x": 404.09999999999997, - "y": 130.25, + "x": 404.1, + "y": 95.767, "z": 0 }, "_lrot": { @@ -2447,20 +3425,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 105 + "__id__": 141 }, - "_children": [], + "_children": [ + { + "__id__": 143 + } + ], "_active": true, "_components": [ { - "__id__": 107 + "__id__": 149 }, { - "__id__": 109 + "__id__": 151 } ], "_prefab": { - "__id__": 111 + "__id__": 153 }, "_lpos": { "__type__": "cc.Vec3", @@ -2491,22 +3473,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 142 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 144 + }, + { + "__id__": 146 + } + ], + "_prefab": { + "__id__": 148 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -59.17100000000001, + "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__": 106 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 145 }, "_contentSize": { "__type__": "cc.Size", - "width": 65, - "height": 79 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bezZGj6RJFhZ/7fL16FHn5" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 143 + }, + "_enabled": true, + "__prefab": { + "__id__": 147 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "chat", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2aymafsbRF8YDZ2y8bWsAN" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "68bhOf5/JLD5mtf3Wxfw6a", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 142 + }, + "_enabled": true, + "__prefab": { + "__id__": 150 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 70 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2525,11 +3666,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 142 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 152 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2583,20 +3724,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 105 + "__id__": 141 }, - "_children": [], + "_children": [ + { + "__id__": 155 + } + ], "_active": true, "_components": [ { - "__id__": 113 + "__id__": 161 }, { - "__id__": 115 + "__id__": 163 } ], "_prefab": { - "__id__": 117 + "__id__": 165 }, "_lpos": { "__type__": "cc.Vec3", @@ -2627,22 +3772,181 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 154 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 156 + }, + { + "__id__": 158 + } + ], + "_prefab": { + "__id__": 160 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -59.17100000000001, + "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__": 112 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 157 }, "_contentSize": { "__type__": "cc.Size", - "width": 65, - "height": 79 + "width": 148.384375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f4rvJdYZhALbfWc51Tx/Xe" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 155 + }, + "_enabled": true, + "__prefab": { + "__id__": 159 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 89, + "g": 71, + "b": 105, + "a": 255 + }, + "_string": "chat", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 33, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5by226NBFHF4EujAV06jU3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d0RfB7OrNKAbUq6xKa8A3L", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 154 + }, + "_enabled": true, + "__prefab": { + "__id__": 162 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58, + "height": 70 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2661,11 +3965,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 164 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2719,16 +4023,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 141 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 167 }, "_contentSize": { "__type__": "cc.Size", "width": 261.8, - "height": 222.3 + "height": 192 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2747,11 +4051,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 141 }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 169 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2789,11 +4093,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 141 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 171 }, "clickEvents": [], "_interactable": true, @@ -2833,7 +4137,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 105 + "__id__": 141 }, "_id": "" }, @@ -2847,17 +4151,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 141 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 173 }, "_alignFlags": 1, "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 45.23299999999999, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2883,11 +4187,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 141 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 175 }, "_id": "" }, @@ -2918,12 +4222,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 130 + "__id__": 178 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 241.4 + "height": 237 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2946,20 +4250,20 @@ }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 180 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 33, - "g": 27, - "b": 39, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "06d82c9b-5158-4296-97bb-2be0cdf5c924@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -2991,7 +4295,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 134 + "__id__": 182 }, "_alignFlags": 44, "_target": null, @@ -3027,7 +4331,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 136 + "__id__": 184 }, "_resizeMode": 0, "_layoutType": 1, @@ -3080,14 +4384,14 @@ "_active": false, "_components": [ { - "__id__": 139 + "__id__": 187 }, { - "__id__": 141 + "__id__": 189 } ], "_prefab": { - "__id__": 143 + "__id__": 191 }, "_lpos": { "__type__": "cc.Vec3", @@ -3124,11 +4428,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 188 }, "_contentSize": { "__type__": "cc.Size", @@ -3152,11 +4456,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 190 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3237,26 +4541,26 @@ }, "_children": [ { - "__id__": 145 + "__id__": 193 } ], "_active": false, "_components": [ { - "__id__": 151 + "__id__": 199 }, { - "__id__": 153 + "__id__": 201 }, { - "__id__": 155 + "__id__": 203 }, { - "__id__": 157 + "__id__": 205 } ], "_prefab": { - "__id__": 159 + "__id__": 207 }, "_lpos": { "__type__": "cc.Vec3", @@ -3293,20 +4597,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 192 }, "_children": [], "_active": true, "_components": [ { - "__id__": 146 + "__id__": 194 }, { - "__id__": 148 + "__id__": 196 } ], "_prefab": { - "__id__": 150 + "__id__": 198 }, "_lpos": { "__type__": "cc.Vec3", @@ -3343,11 +4647,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 195 }, "_contentSize": { "__type__": "cc.Size", @@ -3371,11 +4675,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 197 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3452,11 +4756,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -3480,11 +4784,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 202 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3525,11 +4829,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 204 }, "clickEvents": [], "_interactable": true, @@ -3581,7 +4885,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 144 + "__id__": 192 }, "_id": "" }, @@ -3595,11 +4899,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 158 + "__id__": 206 }, "_alignFlags": 12, "_target": null, @@ -3648,7 +4952,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 209 }, "_contentSize": { "__type__": "cc.Size", @@ -3676,7 +4980,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 211 }, "_alignFlags": 45, "_target": null, @@ -3712,7 +5016,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 213 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/PurchasePanel.prefab b/assets/bundles/Chat18x/PurchasePanel.prefab index aec4a5ca..b08caa44 100644 --- a/assets/bundles/Chat18x/PurchasePanel.prefab +++ b/assets/bundles/Chat18x/PurchasePanel.prefab @@ -20,37 +20,25 @@ "_children": [ { "__id__": 2 - }, - { - "__id__": 93 - }, - { - "__id__": 109 - }, - { - "__id__": 133 - }, - { - "__id__": 139 } ], "_active": true, "_components": [ { - "__id__": 315 + "__id__": 355 }, { - "__id__": 317 + "__id__": 357 }, { - "__id__": 319 + "__id__": 359 }, { - "__id__": 321 + "__id__": 361 } ], "_prefab": { - "__id__": 323 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -100,23 +88,41 @@ "__id__": 46 }, { - "__id__": 66 + "__id__": 70 + }, + { + "__id__": 86 + }, + { + "__id__": 106 + }, + { + "__id__": 126 + }, + { + "__id__": 132 + }, + { + "__id__": 146 + }, + { + "__id__": 160 } ], "_active": true, "_components": [ { - "__id__": 86 + "__id__": 348 }, { - "__id__": 88 + "__id__": 350 }, { - "__id__": 90 + "__id__": 352 } ], "_prefab": { - "__id__": 92 + "__id__": 354 }, "_lpos": { "__type__": "cc.Vec3", @@ -782,7 +788,7 @@ }, { "__type__": "cc.Node", - "_name": "VipArea", + "_name": "Coin", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -810,8 +816,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 735, + "x": -101.37, + "y": 803.454, "z": 0 }, "_lrot": { @@ -839,7 +845,7 @@ }, { "__type__": "cc.Node", - "_name": "vipDesc", + "_name": "coinNum", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -863,8 +869,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 171.8, - "y": -355.8, + "x": 70.62900000000002, + "y": 0, "z": 0 }, "_lrot": { @@ -902,1561 +908,6 @@ "__prefab": { "__id__": 33 }, - "_contentSize": { - "__type__": "cc.Size", - "width": 596, - "height": 203.6 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "19B8ODxXdLzoemxYvuKT/p" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 233, - "g": 200, - "b": 185, - "a": 255 - }, - "_string": "After purchasing a VlP card,you can chat with anyone within the specified time frame, and the number of chats is unlimited.", - "_horizontalAlign": 0, - "_verticalAlign": 1, - "_actualFontSize": 42, - "_fontSize": 42, - "_fontFamily": "Arial", - "_lineHeight": 45.9, - "_overflow": 2, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "97i3b4MVlLwYFdzijGi+FW" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 37 - }, - "_alignFlags": 36, - "_target": null, - "_left": 0, - "_right": 28.7, - "_top": 0, - "_bottom": 16.4, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 36, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "91v7luUl1P8qblFKngFJ8B" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "7c67TA145DEYqlCLURJStk", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 30 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 997, - "height": 474 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 1 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0fTwJrojtGurFoVaicI8NK" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 30 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "711a2349-6449-4849-9256-1eaab342913d@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0anRqBPidDQ5zWE+yZIHz4" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 30 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "_alignFlags": 41, - "_target": null, - "_left": 41.5, - "_right": 41.5, - "_top": 435, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 40, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f5fL0wDrJK7LZrRT/tvRKd" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "08qMom1pRAoo8+nT5WQGKZ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Buy30DayVipBtn", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 47 - }, - { - "__id__": 53 - } - ], - "_active": true, - "_components": [ - { - "__id__": 59 - }, - { - "__id__": 61 - }, - { - "__id__": 63 - } - ], - "_prefab": { - "__id__": 65 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 214.394, - "y": 121.73800000000006, - "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": "vipPrice30", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 46 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 48 - }, - { - "__id__": 50 - } - ], - "_prefab": { - "__id__": 52 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 88.229, - "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__": 47 - }, - "_enabled": true, - "__prefab": { - "__id__": 49 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 325.6, - "height": 111.3 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3cFwmadBVLX7GeEH/GK5wn" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 47 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 154, - "g": 101, - "b": 96, - "a": 255 - }, - "_string": "$38.88", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 60, - "_fontSize": 60, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 1, - "_enableWrapText": false, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49LJo9a4BHZ5YCOX1f+kS1" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "08n8WVKrhHN4KMg9IeIWCU", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "vipTime30", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 46 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 54 - }, - { - "__id__": 56 - } - ], - "_prefab": { - "__id__": 58 - }, - "_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__": 53 - }, - "_enabled": true, - "__prefab": { - "__id__": 55 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 325.6, - "height": 111.3 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "71ndFIa+pLPqkY7CkPOAAs" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 53 - }, - "_enabled": true, - "__prefab": { - "__id__": 57 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 62, - "g": 32, - "b": 29, - "a": 255 - }, - "_string": "30 days", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 60, - "_fontSize": 60, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 1, - "_enableWrapText": false, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "abxMiCjB5Bj5J+n31NIEq1" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "adS/1Ih3BGk4M+gyLsFxEz", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 46 - }, - "_enabled": true, - "__prefab": { - "__id__": 60 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 361, - "height": 108 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dao452IfxMAo6jNgOMiYNy" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 46 - }, - "_enabled": true, - "__prefab": { - "__id__": 62 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "27d0d01d-3b1b-4abe-aefb-caeabd202003@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e7+Fzyf3JBOozfAASMtYjM" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 46 - }, - "_enabled": true, - "__prefab": { - "__id__": 64 - }, - "clickEvents": [], - "_interactable": true, - "_transition": 1, - "_normalColor": { - "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 211, - "g": 211, - "b": 211, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 - }, - "_normalSprite": { - "__uuid__": "27d0d01d-3b1b-4abe-aefb-caeabd202003@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_hoverSprite": { - "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_pressedSprite": { - "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_disabledSprite": { - "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_duration": 0.1, - "_zoomScale": 1.2, - "_target": { - "__id__": 46 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a2bmx1iU1Oiq8dY3Fb+71/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "60Mj74M25N4ZQU7ErWttIL", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Buy7DayVipBt", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [ - { - "__id__": 67 - }, - { - "__id__": 73 - } - ], - "_active": true, - "_components": [ - { - "__id__": 79 - }, - { - "__id__": 81 - }, - { - "__id__": 83 - } - ], - "_prefab": { - "__id__": 85 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -206.026, - "y": 121.73800000000006, - "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": "vipPrice7", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 68 - }, - { - "__id__": 70 - } - ], - "_prefab": { - "__id__": 72 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 88.22900000000004, - "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__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 69 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 325.6, - "height": 83.7 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "515AfdCdlH1q1NXoouWGm/" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 67 - }, - "_enabled": true, - "__prefab": { - "__id__": 71 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 90, - "g": 141, - "b": 138, - "a": 255 - }, - "_string": "$38.88", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 60, - "_fontSize": 60, - "_fontFamily": "Arial", - "_lineHeight": 32.5, - "_overflow": 1, - "_enableWrapText": false, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "879uLY/IlI+oQzpWSl9pm0" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "96wJnCXmRMzK5KgVlzI6wB", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "vipTime7", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 66 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 74 - }, - { - "__id__": 76 - } - ], - "_prefab": { - "__id__": 78 - }, - "_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__": 73 - }, - "_enabled": true, - "__prefab": { - "__id__": 75 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 325.6, - "height": 111.3 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d146HzePZMQZRM0QFPCWkP" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 73 - }, - "_enabled": true, - "__prefab": { - "__id__": 77 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 22, - "g": 49, - "b": 39, - "a": 255 - }, - "_string": "7 days", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 60, - "_fontSize": 60, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 1, - "_enableWrapText": false, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f3be4qGZlGiKZxIwlvAbRa" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "64eRIz4thCjKT0jUljW8bi", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 80 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 361, - "height": 108 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3aX22V8+JATKL7tDiqxGeD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 82 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "95BLX4hzBFy6gqo5XPwJjD" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 66 - }, - "_enabled": true, - "__prefab": { - "__id__": 84 - }, - "clickEvents": [], - "_interactable": true, - "_transition": 1, - "_normalColor": { - "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 211, - "g": 211, - "b": 211, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 - }, - "_normalSprite": null, - "_hoverSprite": null, - "_pressedSprite": null, - "_disabledSprite": null, - "_duration": 0.1, - "_zoomScale": 1.2, - "_target": { - "__id__": 66 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "56JtIILz5J+LX404vzeuZW" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "94hJlzk39BkZyv4RB4zXBV", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 87 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 2340 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "12JdonxidLEYIxdtEnCUPF" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 24, - "g": 15, - "b": 32, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a8m4bWFVVGDI+nxgpbjHXR" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 100, - "_originalHeight": 100, - "_alignMode": 2, - "_lockFlags": 45, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "64e+o+Xq1J0Zju0tFoFCWo" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "8dc0NuR9RL2Z5AGk4CecAE", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Coin", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 94 - } - ], - "_active": true, - "_components": [ - { - "__id__": 102 - }, - { - "__id__": 104 - }, - { - "__id__": 106 - } - ], - "_prefab": { - "__id__": 108 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -51.02800000000002, - "y": 803.454, - "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": "coinNum", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 93 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 95 - }, - { - "__id__": 97 - }, - { - "__id__": 99 - } - ], - "_prefab": { - "__id__": 101 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 57.565000000000055, - "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__": 94 - }, - "_enabled": true, - "__prefab": { - "__id__": 96 - }, "_contentSize": { "__type__": "cc.Size", "width": 170.745508, @@ -2479,11 +930,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 98 + "__id__": 35 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2550,15 +1001,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 37 }, "_alignFlags": 10, "_target": null, - "_left": 108.56500000000005, + "_left": 129.12900000000002, "_right": -120.41744140624996, "_top": 0, "_bottom": 0, @@ -2599,16 +1050,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 30 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 40 }, "_contentSize": { "__type__": "cc.Size", - "width": 102, - "height": 89 + "width": 117, + "height": 59 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2627,11 +1078,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 30 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 42 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2644,7 +1095,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941", + "__uuid__": "e42051cb-525e-48e1-9303-6c85a1b70661@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -2672,17 +1123,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 30 }, "_enabled": true, "__prefab": { - "__id__": 107 + "__id__": 44 }, - "_alignFlags": 36, + "_alignFlags": 33, "_target": null, "_left": 194.1, - "_right": 540.028, - "_top": 0, + "_right": 582.87, + "_top": 337.04600000000005, "_bottom": 1928.954, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2693,7 +1144,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 89, "_alignMode": 2, "_lockFlags": 8, "_id": "" @@ -2721,34 +1172,34 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 2 }, "_children": [ { - "__id__": 110 + "__id__": 47 }, { - "__id__": 118 + "__id__": 55 } ], "_active": true, "_components": [ { - "__id__": 126 + "__id__": 63 }, { - "__id__": 128 + "__id__": 65 }, { - "__id__": 130 + "__id__": 67 } ], "_prefab": { - "__id__": 132 + "__id__": 69 }, "_lpos": { "__type__": "cc.Vec3", - "x": 278.40200000000004, + "x": 254.16600000000005, "y": 803.454, "z": 0 }, @@ -2781,23 +1232,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 109 + "__id__": 46 }, "_children": [], "_active": true, "_components": [ { - "__id__": 111 + "__id__": 48 }, { - "__id__": 113 + "__id__": 50 }, { - "__id__": 115 + "__id__": 52 } ], "_prefab": { - "__id__": 117 + "__id__": 54 }, "_lpos": { "__type__": "cc.Vec3", @@ -2834,11 +1285,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 110 + "__id__": 47 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 49 }, "_contentSize": { "__type__": "cc.Size", @@ -2862,11 +1313,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 110 + "__id__": 47 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 51 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2933,11 +1384,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 110 + "__id__": 47 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 53 }, "_alignFlags": 34, "_target": null, @@ -2982,23 +1433,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 109 + "__id__": 46 }, "_children": [], "_active": false, "_components": [ { - "__id__": 119 + "__id__": 56 }, { - "__id__": 121 + "__id__": 58 }, { - "__id__": 123 + "__id__": 60 } ], "_prefab": { - "__id__": 125 + "__id__": 62 }, "_lpos": { "__type__": "cc.Vec3", @@ -3035,11 +1486,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 57 }, "_contentSize": { "__type__": "cc.Size", @@ -3063,11 +1514,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 59 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3131,11 +1582,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 124 + "__id__": 61 }, "_alignFlags": 34, "_target": null, @@ -3180,11 +1631,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 46 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 64 }, "_contentSize": { "__type__": "cc.Size", @@ -3208,11 +1659,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 46 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 66 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3253,17 +1704,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 109 + "__id__": 46 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 68 }, - "_alignFlags": 36, + "_alignFlags": 33, "_target": null, "_left": 194.1, - "_right": 201.59799999999996, - "_top": 0, + "_right": 225.83399999999995, + "_top": 334.54600000000005, "_bottom": 1941.454, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -3274,7 +1725,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 64, "_alignMode": 2, "_lockFlags": 8, "_id": "" @@ -3298,29 +1749,89 @@ }, { "__type__": "cc.Node", - "_name": "charge-text", + "_name": "VipArea", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 2 + }, + "_children": [ + { + "__id__": 71 + } + ], + "_active": true, + "_components": [ + { + "__id__": 79 + }, + { + "__id__": 81 + }, + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 85 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 727.8520000000001, + "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": "vipDesc", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 70 }, "_children": [], "_active": true, "_components": [ { - "__id__": 134 + "__id__": 72 }, { - "__id__": 136 + "__id__": 74 + }, + { + "__id__": 76 } ], "_prefab": { - "__id__": 138 + "__id__": 78 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": -54.263999999999896, + "x": 141.91373101265827, + "y": -320.06100000000004, "z": 0 }, "_lrot": { @@ -3352,15 +1863,1385 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 133 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 73 }, "_contentSize": { "__type__": "cc.Size", - "width": 516.5234375, + "width": 596, + "height": 203.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "19B8ODxXdLzoemxYvuKT/p" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_enabled": true, + "__prefab": { + "__id__": 75 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 233, + "g": 200, + "b": 185, + "a": 255 + }, + "_string": "After purchasing a VlP card,you can chat with anyone within the specified time frame, and the number of chats is unlimited.", + "_horizontalAlign": 2, + "_verticalAlign": 1, + "_actualFontSize": 40, + "_fontSize": 39, + "_fontFamily": "Arial", + "_lineHeight": 45.9, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "97i3b4MVlLwYFdzijGi+FW" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_enabled": true, + "__prefab": { + "__id__": 77 + }, + "_alignFlags": 36, + "_target": null, + "_left": 0, + "_right": 21, + "_top": 0, + "_bottom": 16.4, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 36, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "91v7luUl1P8qblFKngFJ8B" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7c67TA145DEYqlCLURJStk", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 70 + }, + "_enabled": true, + "__prefab": { + "__id__": 80 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 921.8274620253165, + "height": 438.261 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fTwJrojtGurFoVaicI8NK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 70 + }, + "_enabled": true, + "__prefab": { + "__id__": 82 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "711a2349-6449-4849-9256-1eaab342913d@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0anRqBPidDQ5zWE+yZIHz4" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 70 + }, + "_enabled": true, + "__prefab": { + "__id__": 84 + }, + "_alignFlags": 41, + "_target": null, + "_left": 79.08626898734173, + "_right": 79.08626898734173, + "_top": 442.1479999999999, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f5fL0wDrJK7LZrRT/tvRKd" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08qMom1pRAoo8+nT5WQGKZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Buy30DayVipBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 87 + }, + { + "__id__": 93 + } + ], + "_active": true, + "_components": [ + { + "__id__": 99 + }, + { + "__id__": 101 + }, + { + "__id__": 103 + } + ], + "_prefab": { + "__id__": 105 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 214.394, + "y": 168.19900000000007, + "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": "vipPrice30", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 88 + }, + { + "__id__": 90 + } + ], + "_prefab": { + "__id__": 92 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 88.229, + "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__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 89 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 325.6, + "height": 111.3 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3cFwmadBVLX7GeEH/GK5wn" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 91 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 154, + "g": 101, + "b": 96, + "a": 255 + }, + "_string": "$38.88", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 1, + "_enableWrapText": false, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49LJo9a4BHZ5YCOX1f+kS1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08n8WVKrhHN4KMg9IeIWCU", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "vipTime30", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 94 + }, + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 98 + }, + "_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__": 93 + }, + "_enabled": true, + "__prefab": { + "__id__": 95 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 325.6, + "height": 111.3 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "71ndFIa+pLPqkY7CkPOAAs" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 93 + }, + "_enabled": true, + "__prefab": { + "__id__": 97 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 62, + "g": 32, + "b": 29, + "a": 255 + }, + "_string": "30 days", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 50, + "_fontSize": 50, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 1, + "_enableWrapText": false, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "abxMiCjB5Bj5J+n31NIEq1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "adS/1Ih3BGk4M+gyLsFxEz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 100 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 332, + "height": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dao452IfxMAo6jNgOMiYNy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 102 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27d0d01d-3b1b-4abe-aefb-caeabd202003@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e7+Fzyf3JBOozfAASMtYjM" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 104 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": { + "__uuid__": "27d0d01d-3b1b-4abe-aefb-caeabd202003@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 86 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2bmx1iU1Oiq8dY3Fb+71/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60Mj74M25N4ZQU7ErWttIL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Buy7DayVipBt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 107 + }, + { + "__id__": 113 + } + ], + "_active": true, + "_components": [ + { + "__id__": 119 + }, + { + "__id__": 121 + }, + { + "__id__": 123 + } + ], + "_prefab": { + "__id__": 125 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -206.026, + "y": 168.19900000000007, + "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": "vipPrice7", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 106 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 108 + }, + { + "__id__": 110 + } + ], + "_prefab": { + "__id__": 112 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 88.22900000000004, + "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__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 109 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 325.6, + "height": 83.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "515AfdCdlH1q1NXoouWGm/" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 111 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 90, + "g": 141, + "b": 138, + "a": 255 + }, + "_string": "$38.88", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 32.5, + "_overflow": 1, + "_enableWrapText": false, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "879uLY/IlI+oQzpWSl9pm0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "96wJnCXmRMzK5KgVlzI6wB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "vipTime7", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 106 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 114 + }, + { + "__id__": 116 + } + ], + "_prefab": { + "__id__": 118 + }, + "_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__": 113 + }, + "_enabled": true, + "__prefab": { + "__id__": 115 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 325.6, + "height": 111.3 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d146HzePZMQZRM0QFPCWkP" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 113 + }, + "_enabled": true, + "__prefab": { + "__id__": 117 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 22, + "g": 49, + "b": 39, + "a": 255 + }, + "_string": "7 days", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 50, + "_fontSize": 50, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 1, + "_enableWrapText": false, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3be4qGZlGiKZxIwlvAbRa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "64eRIz4thCjKT0jUljW8bi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 120 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 332, + "height": 91 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3aX22V8+JATKL7tDiqxGeD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 122 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "27d0d01d-3b1b-4abe-aefb-caeabd202003@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "95BLX4hzBFy6gqo5XPwJjD" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 124 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 106 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "56JtIILz5J+LX404vzeuZW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "94hJlzk39BkZyv4RB4zXBV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "charge-text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 127 + }, + { + "__id__": 129 + } + ], + "_prefab": { + "__id__": 131 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 17.083000000000084, + "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__": 126 + }, + "_enabled": true, + "__prefab": { + "__id__": 128 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 371.0888671875, "height": 50.4 }, "_anchorPoint": { @@ -3380,11 +3261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 133 + "__id__": 126 }, "_enabled": true, "__prefab": { - "__id__": 137 + "__id__": 130 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3399,8 +3280,8 @@ "_string": "——Get dollars——", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 56, - "_fontSize": 56, + "_actualFontSize": 42, + "_fontSize": 42, "_fontFamily": "Arial", "_lineHeight": 40, "_overflow": 0, @@ -3409,7 +3290,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -3457,51 +3338,795 @@ }, { "__type__": "cc.Node", - "_name": "Layout", + "_name": "cashBtn", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 1 + "__id__": 2 }, "_children": [ { - "__id__": 140 - }, - { - "__id__": 168 - }, - { - "__id__": 196 - }, - { - "__id__": 224 - }, - { - "__id__": 252 - }, - { - "__id__": 280 + "__id__": 133 } ], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 139 }, { - "__id__": 310 + "__id__": 141 }, { - "__id__": 312 + "__id__": 143 } ], "_prefab": { - "__id__": 314 + "__id__": 145 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -120, + "y": -64.3309999999999, + "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": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 132 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 134 + }, + { + "__id__": 136 + } + ], + "_prefab": { + "__id__": 138 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -591.502, + "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__": 133 + }, + "_enabled": true, + "__prefab": { + "__id__": 135 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e1K+6LPLBDaYQ+oVByjDal" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 133 + }, + "_enabled": true, + "__prefab": { + "__id__": 137 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 24, + "g": 15, + "b": 32, + "a": 255 + }, + "_string": "cash", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 1, + "_enableWrapText": false, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6bq5rxmgpHgLm5gGf2jWqa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "89yzHCaydEMbKEXc8mDbx/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 132 + }, + "_enabled": true, + "__prefab": { + "__id__": 140 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 217, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "13cj3fiO5L9btmWqyZVMEP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 132 + }, + "_enabled": true, + "__prefab": { + "__id__": 142 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "66fb67c4-7251-4a4b-ae66-2195b32565de@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "74LS9op/FJfaoUPac6Xk4U" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 132 + }, + "_enabled": true, + "__prefab": { + "__id__": 144 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": { + "__uuid__": "66fb67c4-7251-4a4b-ae66-2195b32565de@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_hoverSprite": { + "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_pressedSprite": { + "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_disabledSprite": { + "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 132 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a6GZLLbpJN2Z7q+pJfp8oA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ad3AyrDjVGP6HS2Tk6j0vZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "web3Btn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 147 + } + ], + "_active": true, + "_components": [ + { + "__id__": 153 + }, + { + "__id__": 155 + }, + { + "__id__": 157 + } + ], + "_prefab": { + "__id__": 159 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 120, + "y": -64.3309999999999, + "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": "Label", + "_objFlags": 512, + "__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": 159.2, + "height": 40 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "60d4Po+TtBJY/mYaX57/A+" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": { + "__id__": 151 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 24, + "g": 15, + "b": 32, + "a": 255 + }, + "_string": "Web3", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 1, + "_enableWrapText": false, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aaKDpPCmxI1rjPkT4sRd60" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b21M4/a9hDjaEGR2P7B20h", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 146 + }, + "_enabled": true, + "__prefab": { + "__id__": 154 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 217, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "21GYAVNmFBNK/OKWDltkxI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 146 + }, + "_enabled": true, + "__prefab": { + "__id__": 156 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "362515cf-8079-4f8c-a3e7-29e89360a329@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7c5FbI1ftJ1ql2a474tOQv" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 146 + }, + "_enabled": true, + "__prefab": { + "__id__": 158 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": { + "__uuid__": "362515cf-8079-4f8c-a3e7-29e89360a329@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_hoverSprite": { + "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_pressedSprite": { + "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_disabledSprite": { + "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 146 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d0wJiJ6apJI6/S26sinjkK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8hgvbYh5P+LuE4bGYV8F4", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Layout", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 161 + }, + { + "__id__": 191 + }, + { + "__id__": 221 + }, + { + "__id__": 251 + }, + { + "__id__": 281 + }, + { + "__id__": 311 + } + ], + "_active": true, + "_components": [ + { + "__id__": 341 + }, + { + "__id__": 343 + }, + { + "__id__": 345 + } + ], + "_prefab": { + "__id__": 347 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -520.023, "z": 0 }, "_lrot": { @@ -3533,41 +4158,41 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 160 }, "_children": [ { - "__id__": 141 + "__id__": 162 }, { - "__id__": 147 + "__id__": 168 }, { - "__id__": 153 + "__id__": 174 } ], "_active": true, "_components": [ { - "__id__": 159 + "__id__": 182 }, { - "__id__": 161 + "__id__": 184 }, { - "__id__": 163 + "__id__": 186 }, { - "__id__": 165 + "__id__": 188 } ], "_prefab": { - "__id__": 167 + "__id__": 190 }, "_lpos": { "__type__": "cc.Vec3", - "x": -341.65, - "y": 234, + "x": -323.9, + "y": 201.14999999999998, "z": 0 }, "_lrot": { @@ -3599,20 +4224,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 140 + "__id__": 161 }, "_children": [], "_active": true, "_components": [ { - "__id__": 142 + "__id__": 163 }, { - "__id__": 144 + "__id__": 165 } ], "_prefab": { - "__id__": 146 + "__id__": 167 }, "_lpos": { "__type__": "cc.Vec3", @@ -3649,11 +4274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 143 + "__id__": 164 }, "_contentSize": { "__type__": "cc.Size", @@ -3677,11 +4302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 145 + "__id__": 166 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3735,25 +4360,25 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 140 + "__id__": 161 }, "_children": [], "_active": true, "_components": [ { - "__id__": 148 + "__id__": 169 }, { - "__id__": 150 + "__id__": 171 } ], "_prefab": { - "__id__": 152 + "__id__": 173 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -76.71600000000001, + "y": -55.27200000000005, "z": 0 }, "_lrot": { @@ -3785,11 +4410,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 170 }, "_contentSize": { "__type__": "cc.Size", @@ -3813,11 +4438,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 172 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3842,7 +4467,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -3894,25 +4519,28 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 140 + "__id__": 161 }, "_children": [], "_active": true, "_components": [ { - "__id__": 154 + "__id__": 175 }, { - "__id__": 156 + "__id__": 177 + }, + { + "__id__": 179 } ], "_prefab": { - "__id__": 158 + "__id__": 181 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -172.54599999999994, + "y": -146.9, "z": 0 }, "_lrot": { @@ -3944,11 +4572,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 174 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 176 }, "_contentSize": { "__type__": "cc.Size", @@ -3972,11 +4600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 174 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 178 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4034,6 +4662,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "3eJt2h3zdFhoWLDEFgj8CR" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 174 + }, + "_enabled": true, + "__prefab": { + "__id__": 180 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -3.900000000000034, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5aSp/0GUpNKYzUjtlolvU/" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -4053,16 +4717,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 183 }, "_contentSize": { "__type__": "cc.Size", - "width": 325, - "height": 441 + "width": 312.2, + "height": 379.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4081,11 +4745,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 162 + "__id__": 185 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4126,11 +4790,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 187 }, "clickEvents": [], "_interactable": true, @@ -4170,7 +4834,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 140 + "__id__": 161 }, "_id": "" }, @@ -4184,17 +4848,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 189 }, "count": { - "__id__": 150 + "__id__": 171 }, "price": { - "__id__": 156 + "__id__": 177 + }, + "icon": { + "__id__": 165 }, "_id": "" }, @@ -4221,41 +4888,41 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 160 }, "_children": [ { - "__id__": 169 + "__id__": 192 }, { - "__id__": 175 + "__id__": 198 }, { - "__id__": 181 + "__id__": 204 } ], "_active": true, "_components": [ { - "__id__": 187 + "__id__": 212 }, { - "__id__": 189 + "__id__": 214 }, { - "__id__": 191 + "__id__": 216 }, { - "__id__": 193 + "__id__": 218 } ], "_prefab": { - "__id__": 195 + "__id__": 220 }, "_lpos": { "__type__": "cc.Vec3", - "x": -1.6499999999999773, - "y": 234, + "x": -2.1999999999999886, + "y": 201.14999999999998, "z": 0 }, "_lrot": { @@ -4287,20 +4954,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 191 }, "_children": [], "_active": true, "_components": [ { - "__id__": 170 + "__id__": 193 }, { - "__id__": 172 + "__id__": 195 } ], "_prefab": { - "__id__": 174 + "__id__": 197 }, "_lpos": { "__type__": "cc.Vec3", @@ -4337,11 +5004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 194 }, "_contentSize": { "__type__": "cc.Size", @@ -4365,11 +5032,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 196 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4423,25 +5090,25 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 191 }, "_children": [], "_active": true, "_components": [ { - "__id__": 176 + "__id__": 199 }, { - "__id__": 178 + "__id__": 201 } ], "_prefab": { - "__id__": 180 + "__id__": 203 }, "_lpos": { "__type__": "cc.Vec3", - "x": -2.842170943040401e-14, - "y": -76.71600000000001, + "x": 0, + "y": -55.27200000000005, "z": 0 }, "_lrot": { @@ -4473,11 +5140,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -4501,11 +5168,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 202 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4530,7 +5197,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -4582,25 +5249,28 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 191 }, "_children": [], "_active": true, "_components": [ { - "__id__": 182 + "__id__": 205 }, { - "__id__": 184 + "__id__": 207 + }, + { + "__id__": 209 } ], "_prefab": { - "__id__": 186 + "__id__": 211 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -172.54599999999994, + "y": -146.9, "z": 0 }, "_lrot": { @@ -4632,11 +5302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 183 + "__id__": 206 }, "_contentSize": { "__type__": "cc.Size", @@ -4660,11 +5330,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 208 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4722,6 +5392,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "71IOXqYE5Cu5Y5bTSewt5p" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 204 + }, + "_enabled": true, + "__prefab": { + "__id__": 210 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -3.900000000000034, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "85zb5kJ2NOZYVL/7YHlExl" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -4741,16 +5447,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 213 }, "_contentSize": { "__type__": "cc.Size", - "width": 325, - "height": 441 + "width": 312.2, + "height": 379.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4769,11 +5475,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 215 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4814,11 +5520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 217 }, "clickEvents": [], "_interactable": true, @@ -4858,7 +5564,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 168 + "__id__": 191 }, "_id": "" }, @@ -4872,17 +5578,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 191 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 219 }, "count": { - "__id__": 178 + "__id__": 201 }, "price": { - "__id__": 184 + "__id__": 207 + }, + "icon": { + "__id__": 195 }, "_id": "" }, @@ -4909,41 +5618,41 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 160 }, "_children": [ { - "__id__": 197 + "__id__": 222 }, { - "__id__": 203 + "__id__": 228 }, { - "__id__": 209 + "__id__": 234 } ], "_active": true, "_components": [ { - "__id__": 215 + "__id__": 242 }, { - "__id__": 217 + "__id__": 244 }, { - "__id__": 219 + "__id__": 246 }, { - "__id__": 221 + "__id__": 248 } ], "_prefab": { - "__id__": 223 + "__id__": 250 }, "_lpos": { "__type__": "cc.Vec3", - "x": 338.35, - "y": 234, + "x": 319.5, + "y": 201.14999999999998, "z": 0 }, "_lrot": { @@ -4975,20 +5684,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 196 + "__id__": 221 }, "_children": [], "_active": true, "_components": [ { - "__id__": 198 + "__id__": 223 }, { - "__id__": 200 + "__id__": 225 } ], "_prefab": { - "__id__": 202 + "__id__": 227 }, "_lpos": { "__type__": "cc.Vec3", @@ -5025,11 +5734,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 197 + "__id__": 222 }, "_enabled": true, "__prefab": { - "__id__": 199 + "__id__": 224 }, "_contentSize": { "__type__": "cc.Size", @@ -5053,11 +5762,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 197 + "__id__": 222 }, "_enabled": true, "__prefab": { - "__id__": 201 + "__id__": 226 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5111,25 +5820,25 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 196 + "__id__": 221 }, "_children": [], "_active": true, "_components": [ { - "__id__": 204 + "__id__": 229 }, { - "__id__": 206 + "__id__": 231 } ], "_prefab": { - "__id__": 208 + "__id__": 233 }, "_lpos": { "__type__": "cc.Vec3", - "x": -2.842170943040401e-14, - "y": -76.71600000000001, + "x": 0, + "y": -55.27200000000005, "z": 0 }, "_lrot": { @@ -5161,11 +5870,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 203 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 205 + "__id__": 230 }, "_contentSize": { "__type__": "cc.Size", @@ -5189,11 +5898,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 203 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 207 + "__id__": 232 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5218,7 +5927,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -5270,25 +5979,28 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 196 + "__id__": 221 }, "_children": [], "_active": true, "_components": [ { - "__id__": 210 + "__id__": 235 }, { - "__id__": 212 + "__id__": 237 + }, + { + "__id__": 239 } ], "_prefab": { - "__id__": 214 + "__id__": 241 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -172.54599999999994, + "y": -146.9, "z": 0 }, "_lrot": { @@ -5320,11 +6032,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 209 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 236 }, "_contentSize": { "__type__": "cc.Size", @@ -5348,11 +6060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 209 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 238 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5410,6 +6122,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "a5iEZ8S01Bgbd7Z1chflQv" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 234 + }, + "_enabled": true, + "__prefab": { + "__id__": 240 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -3.9000000000000057, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a6HV4NGk1PGqLvxFltlL/m" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -5429,16 +6177,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 196 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 243 }, "_contentSize": { "__type__": "cc.Size", - "width": 325, - "height": 441 + "width": 312.2, + "height": 379.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5457,11 +6205,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 196 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 218 + "__id__": 245 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5502,11 +6250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 196 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 220 + "__id__": 247 }, "clickEvents": [], "_interactable": true, @@ -5546,7 +6294,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 196 + "__id__": 221 }, "_id": "" }, @@ -5560,17 +6308,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 196 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 249 }, "count": { - "__id__": 206 + "__id__": 231 }, "price": { - "__id__": 212 + "__id__": 237 + }, + "icon": { + "__id__": 225 }, "_id": "" }, @@ -5597,41 +6348,41 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 160 }, "_children": [ { - "__id__": 225 + "__id__": 252 }, { - "__id__": 231 + "__id__": 258 }, { - "__id__": 237 + "__id__": 264 } ], "_active": true, "_components": [ { - "__id__": 243 + "__id__": 272 }, { - "__id__": 245 + "__id__": 274 }, { - "__id__": 247 + "__id__": 276 }, { - "__id__": 249 + "__id__": 278 } ], "_prefab": { - "__id__": 251 + "__id__": 280 }, "_lpos": { "__type__": "cc.Vec3", - "x": -341.65, - "y": -234, + "x": -323.9, + "y": -201.15000000000003, "z": 0 }, "_lrot": { @@ -5663,20 +6414,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 224 + "__id__": 251 }, "_children": [], "_active": true, "_components": [ { - "__id__": 226 + "__id__": 253 }, { - "__id__": 228 + "__id__": 255 } ], "_prefab": { - "__id__": 230 + "__id__": 257 }, "_lpos": { "__type__": "cc.Vec3", @@ -5713,11 +6464,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 252 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 254 }, "_contentSize": { "__type__": "cc.Size", @@ -5741,11 +6492,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 252 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 256 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5799,25 +6550,25 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 224 + "__id__": 251 }, "_children": [], "_active": true, "_components": [ { - "__id__": 232 + "__id__": 259 }, { - "__id__": 234 + "__id__": 261 } ], "_prefab": { - "__id__": 236 + "__id__": 263 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -76.71600000000001, + "y": -55.27199999999999, "z": 0 }, "_lrot": { @@ -5849,11 +6600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 258 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 260 }, "_contentSize": { "__type__": "cc.Size", @@ -5877,11 +6628,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 258 }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 262 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5906,7 +6657,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -5958,25 +6709,28 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 224 + "__id__": 251 }, "_children": [], "_active": true, "_components": [ { - "__id__": 238 + "__id__": 265 }, { - "__id__": 240 + "__id__": 267 + }, + { + "__id__": 269 } ], "_prefab": { - "__id__": 242 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -172.54599999999994, + "y": -146.9, "z": 0 }, "_lrot": { @@ -6008,11 +6762,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 266 }, "_contentSize": { "__type__": "cc.Size", @@ -6036,11 +6790,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 268 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6098,6 +6852,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "dcLZTgaC9CRqKUvbZb3NW2" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 264 + }, + "_enabled": true, + "__prefab": { + "__id__": 270 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -3.900000000000034, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "272Ydgy3NF3bBFTqEIFMph" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -6117,16 +6907,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 244 + "__id__": 273 }, "_contentSize": { "__type__": "cc.Size", - "width": 325, - "height": 441 + "width": 312.2, + "height": 379.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6145,11 +6935,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 275 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6190,11 +6980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 248 + "__id__": 277 }, "clickEvents": [], "_interactable": true, @@ -6234,7 +7024,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 224 + "__id__": 251 }, "_id": "" }, @@ -6248,17 +7038,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 279 }, "count": { - "__id__": 234 + "__id__": 261 }, "price": { - "__id__": 240 + "__id__": 267 + }, + "icon": { + "__id__": 255 }, "_id": "" }, @@ -6285,41 +7078,41 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 160 }, "_children": [ { - "__id__": 253 + "__id__": 282 }, { - "__id__": 259 + "__id__": 288 }, { - "__id__": 265 + "__id__": 294 } ], "_active": true, "_components": [ { - "__id__": 271 + "__id__": 302 }, { - "__id__": 273 + "__id__": 304 }, { - "__id__": 275 + "__id__": 306 }, { - "__id__": 277 + "__id__": 308 } ], "_prefab": { - "__id__": 279 + "__id__": 310 }, "_lpos": { "__type__": "cc.Vec3", - "x": -1.6499999999999773, - "y": -234, + "x": -2.1999999999999886, + "y": -201.15000000000003, "z": 0 }, "_lrot": { @@ -6351,20 +7144,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 252 + "__id__": 281 }, "_children": [], "_active": true, "_components": [ { - "__id__": 254 + "__id__": 283 }, { - "__id__": 256 + "__id__": 285 } ], "_prefab": { - "__id__": 258 + "__id__": 287 }, "_lpos": { "__type__": "cc.Vec3", @@ -6401,11 +7194,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 253 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 284 }, "_contentSize": { "__type__": "cc.Size", @@ -6429,11 +7222,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 253 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 286 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6487,25 +7280,25 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 252 + "__id__": 281 }, "_children": [], "_active": true, "_components": [ { - "__id__": 260 + "__id__": 289 }, { - "__id__": 262 + "__id__": 291 } ], "_prefab": { - "__id__": 264 + "__id__": 293 }, "_lpos": { "__type__": "cc.Vec3", - "x": -2.842170943040401e-14, - "y": -76.71600000000001, + "x": 0, + "y": -55.27199999999999, "z": 0 }, "_lrot": { @@ -6537,11 +7330,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 288 }, "_enabled": true, "__prefab": { - "__id__": 261 + "__id__": 290 }, "_contentSize": { "__type__": "cc.Size", @@ -6565,11 +7358,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 288 }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 292 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6594,7 +7387,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -6646,25 +7439,28 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 252 + "__id__": 281 }, "_children": [], "_active": true, "_components": [ { - "__id__": 266 + "__id__": 295 }, { - "__id__": 268 + "__id__": 297 + }, + { + "__id__": 299 } ], "_prefab": { - "__id__": 270 + "__id__": 301 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -172.54599999999994, + "y": -146.9, "z": 0 }, "_lrot": { @@ -6696,11 +7492,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 265 + "__id__": 294 }, "_enabled": true, "__prefab": { - "__id__": 267 + "__id__": 296 }, "_contentSize": { "__type__": "cc.Size", @@ -6724,11 +7520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 265 + "__id__": 294 }, "_enabled": true, "__prefab": { - "__id__": 269 + "__id__": 298 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6786,6 +7582,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "a129HNvJ9OWLX60bcuu+o6" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 294 + }, + "_enabled": true, + "__prefab": { + "__id__": 300 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -3.9000000000000057, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d295799zxIlLVz1MKob0xE" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -6805,16 +7637,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 281 }, "_enabled": true, "__prefab": { - "__id__": 272 + "__id__": 303 }, "_contentSize": { "__type__": "cc.Size", - "width": 325, - "height": 441 + "width": 312.2, + "height": 379.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6833,11 +7665,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 281 }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 305 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6878,11 +7710,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 281 }, "_enabled": true, "__prefab": { - "__id__": 276 + "__id__": 307 }, "clickEvents": [], "_interactable": true, @@ -6922,7 +7754,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 252 + "__id__": 281 }, "_id": "" }, @@ -6936,17 +7768,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 281 }, "_enabled": true, "__prefab": { - "__id__": 278 + "__id__": 309 }, "count": { - "__id__": 262 + "__id__": 291 }, "price": { - "__id__": 268 + "__id__": 297 + }, + "icon": { + "__id__": 285 }, "_id": "" }, @@ -6973,41 +7808,41 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 160 }, "_children": [ { - "__id__": 281 + "__id__": 312 }, { - "__id__": 287 + "__id__": 318 }, { - "__id__": 293 + "__id__": 324 } ], "_active": true, "_components": [ { - "__id__": 299 + "__id__": 332 }, { - "__id__": 301 + "__id__": 334 }, { - "__id__": 303 + "__id__": 336 }, { - "__id__": 305 + "__id__": 338 } ], "_prefab": { - "__id__": 307 + "__id__": 340 }, "_lpos": { "__type__": "cc.Vec3", - "x": 338.35, - "y": -234, + "x": 319.5, + "y": -201.15000000000003, "z": 0 }, "_lrot": { @@ -7039,20 +7874,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 280 + "__id__": 311 }, "_children": [], "_active": true, "_components": [ { - "__id__": 282 + "__id__": 313 }, { - "__id__": 284 + "__id__": 315 } ], "_prefab": { - "__id__": 286 + "__id__": 317 }, "_lpos": { "__type__": "cc.Vec3", @@ -7089,11 +7924,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 281 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 314 }, "_contentSize": { "__type__": "cc.Size", @@ -7117,11 +7952,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 281 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 316 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7175,25 +8010,25 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 280 + "__id__": 311 }, "_children": [], "_active": true, "_components": [ { - "__id__": 288 + "__id__": 319 }, { - "__id__": 290 + "__id__": 321 } ], "_prefab": { - "__id__": 292 + "__id__": 323 }, "_lpos": { "__type__": "cc.Vec3", - "x": -2.842170943040401e-14, - "y": -76.71600000000001, + "x": 0, + "y": -55.27199999999999, "z": 0 }, "_lrot": { @@ -7225,11 +8060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 287 + "__id__": 318 }, "_enabled": true, "__prefab": { - "__id__": 289 + "__id__": 320 }, "_contentSize": { "__type__": "cc.Size", @@ -7253,11 +8088,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 287 + "__id__": 318 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 322 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7282,7 +8117,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -7334,25 +8169,28 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 280 + "__id__": 311 }, "_children": [], "_active": true, "_components": [ { - "__id__": 294 + "__id__": 325 }, { - "__id__": 296 + "__id__": 327 + }, + { + "__id__": 329 } ], "_prefab": { - "__id__": 298 + "__id__": 331 }, "_lpos": { "__type__": "cc.Vec3", "x": -2.842170943040401e-14, - "y": -172.54599999999994, + "y": -146.9, "z": 0 }, "_lrot": { @@ -7384,11 +8222,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 324 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 326 }, "_contentSize": { "__type__": "cc.Size", @@ -7412,11 +8250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 324 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 328 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7474,6 +8312,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "5fD/UVBlJLqbEyncwPae6V" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 324 + }, + "_enabled": true, + "__prefab": { + "__id__": 330 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -3.9000000000000057, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "22Eb4gyiJIqK/WEVq8SP+E" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -7493,16 +8367,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 280 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 333 }, "_contentSize": { "__type__": "cc.Size", - "width": 325, - "height": 441 + "width": 312.2, + "height": 379.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -7521,11 +8395,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 280 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 302 + "__id__": 335 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7566,11 +8440,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 280 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 337 }, "clickEvents": [], "_interactable": true, @@ -7610,7 +8484,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 280 + "__id__": 311 }, "_id": "" }, @@ -7624,17 +8498,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 280 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 339 }, "count": { - "__id__": 290 + "__id__": 321 }, "price": { - "__id__": 296 + "__id__": 327 + }, + "icon": { + "__id__": 315 }, "_id": "" }, @@ -7661,16 +8538,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 160 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 342 }, "_contentSize": { "__type__": "cc.Size", - "width": 1008.3, - "height": 909 + "width": 960, + "height": 782.1999999999999 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -7689,13 +8566,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 160 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 344 }, - "_resizeMode": 0, + "_resizeMode": 1, "_layoutType": 3, "_cellSize": { "__type__": "cc.Size", @@ -7707,8 +8584,8 @@ "_paddingRight": 0, "_paddingTop": 0, "_paddingBottom": 0, - "_spacingX": 15, - "_spacingY": 27, + "_spacingX": 9.5, + "_spacingY": 22.4, "_verticalDirection": 1, "_horizontalDirection": 0, "_constraint": 2, @@ -7727,11 +8604,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 160 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 346 }, "_alignFlags": 16, "_target": null, @@ -7770,6 +8647,128 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 349 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2340 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "12JdonxidLEYIxdtEnCUPF" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 351 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 24, + "g": 15, + "b": 32, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a8m4bWFVVGDI+nxgpbjHXR" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 353 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 45, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64e+o+Xq1J0Zju0tFoFCWo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8dc0NuR9RL2Z5AGk4CecAE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -7780,7 +8779,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 356 }, "_contentSize": { "__type__": "cc.Size", @@ -7808,7 +8807,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 358 }, "_alignFlags": 45, "_target": null, @@ -7844,7 +8843,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 360 }, "_id": "" }, @@ -7862,27 +8861,27 @@ }, "_enabled": true, "__prefab": { - "__id__": 322 + "__id__": 362 }, "m_rootNode": null, "items": [ { - "__id__": 165 + "__id__": 188 }, { - "__id__": 193 + "__id__": 218 }, { - "__id__": 221 + "__id__": 248 }, { - "__id__": 249 + "__id__": 278 }, { - "__id__": 277 + "__id__": 308 }, { - "__id__": 305 + "__id__": 338 } ], "_id": "" diff --git a/assets/bundles/Chat18x/ThemePanel.prefab b/assets/bundles/Chat18x/ThemePanel.prefab index a83fceec..0835a9cf 100644 --- a/assets/bundles/Chat18x/ThemePanel.prefab +++ b/assets/bundles/Chat18x/ThemePanel.prefab @@ -25,17 +25,17 @@ "_active": true, "_components": [ { - "__id__": 322 + "__id__": 272 }, { - "__id__": 324 + "__id__": 274 }, { - "__id__": 326 + "__id__": 276 } ], "_prefab": { - "__id__": 328 + "__id__": 278 }, "_lpos": { "__type__": "cc.Vec3", @@ -79,23 +79,23 @@ "__id__": 3 }, { - "__id__": 107 + "__id__": 89 } ], "_active": true, "_components": [ { - "__id__": 315 + "__id__": 265 }, { - "__id__": 317 + "__id__": 267 }, { - "__id__": 319 + "__id__": 269 } ], "_prefab": { - "__id__": 321 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", @@ -139,41 +139,38 @@ "__id__": 4 }, { - "__id__": 12 + "__id__": 10 }, { - "__id__": 22 + "__id__": 20 }, { - "__id__": 32 + "__id__": 30 }, { - "__id__": 42 + "__id__": 38 }, { - "__id__": 58 + "__id__": 54 }, { - "__id__": 82 - }, - { - "__id__": 86 + "__id__": 78 } ], "_active": true, "_components": [ { - "__id__": 100 + "__id__": 82 }, { - "__id__": 102 + "__id__": 84 }, { - "__id__": 104 + "__id__": 86 } ], "_prefab": { - "__id__": 106 + "__id__": 88 }, "_lpos": { "__type__": "cc.Vec3", @@ -220,13 +217,10 @@ }, { "__id__": 7 - }, - { - "__id__": 9 } ], "_prefab": { - "__id__": 11 + "__id__": 9 }, "_lpos": { "__type__": "cc.Vec3", @@ -285,51 +279,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "a7XRgdRN9IY6S8Hot2m2ee" }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 4 - }, - "_enabled": true, - "__prefab": { - "__id__": 8 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e2df3ede-34b0-4b91-b434-0115060ac8b5@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": "8bvWTjTqtClIZcERCG5cSD" - }, { "__type__": "cc.Widget", "_name": "", @@ -340,7 +289,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 10 + "__id__": 8 }, "_alignFlags": 41, "_target": null, @@ -390,6 +339,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 11 + }, { "__id__": 13 }, @@ -398,18 +350,15 @@ }, { "__id__": 17 - }, - { - "__id__": 19 } ], "_prefab": { - "__id__": 21 + "__id__": 19 }, "_lpos": { "__type__": "cc.Vec3", - "x": 380, - "y": -106.69999999999999, + "x": 363.2, + "y": -157.087, "z": 0 }, "_lrot": { @@ -441,11 +390,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 12 + "__id__": 10 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 12 }, "_contentSize": { "__type__": "cc.Size", @@ -469,11 +418,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 12 + "__id__": 10 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 14 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -514,11 +463,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 12 + "__id__": 10 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 16 }, "clickEvents": [], "_interactable": true, @@ -558,7 +507,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 12 + "__id__": 10 }, "_id": "" }, @@ -572,17 +521,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 12 + "__id__": 10 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 18 }, "_alignFlags": 33, "_target": null, "_left": 0, - "_right": 70, - "_top": 128.7, + "_right": 86.8, + "_top": 179.087, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -626,6 +575,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 21 + }, { "__id__": 23 }, @@ -634,18 +586,15 @@ }, { "__id__": 27 - }, - { - "__id__": 29 } ], "_prefab": { - "__id__": 31 + "__id__": 29 }, "_lpos": { "__type__": "cc.Vec3", - "x": -483.41787109375, - "y": -74.1880000000001, + "x": -483.418, + "y": -93.56800000000021, "z": 0 }, "_lrot": { @@ -677,11 +626,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 22 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 22 }, "_contentSize": { "__type__": "cc.Size", @@ -705,11 +654,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 22 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 24 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -776,17 +725,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 22 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 28 + "__id__": 26 }, "_alignFlags": 9, "_target": null, - "_left": 56.58212890624998, + "_left": 56.581999999999994, "_right": 0, - "_top": 135.6780000000001, + "_top": 155.05800000000022, "_bottom": 108.25899999999993, "_horizontalCenter": -342.1, "_verticalCenter": 0, @@ -812,11 +761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 22 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 30 + "__id__": 28 }, "languageKey": "themepanel.title", "defaultText": "", @@ -851,26 +800,23 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 31 + }, { "__id__": 33 }, { "__id__": 35 - }, - { - "__id__": 37 - }, - { - "__id__": 39 } ], "_prefab": { - "__id__": 41 + "__id__": 37 }, "_lpos": { "__type__": "cc.Vec3", - "x": -486.904375, - "y": -165.1840000000002, + "x": -486.904, + "y": -184.56400000000008, "z": 0 }, "_lrot": { @@ -902,11 +848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 30 }, "_enabled": true, "__prefab": { - "__id__": 34 + "__id__": 32 }, "_contentSize": { "__type__": "cc.Size", @@ -930,11 +876,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 30 }, "_enabled": true, "__prefab": { - "__id__": 36 + "__id__": 34 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1001,17 +947,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 30 }, "_enabled": true, "__prefab": { - "__id__": 38 + "__id__": 36 }, "_alignFlags": 9, "_target": null, - "_left": 53.095624999999984, + "_left": 53.096000000000004, "_right": 0, - "_top": 226.6740000000002, + "_top": 246.0540000000001, "_bottom": 108.25899999999993, "_horizontalCenter": -186.67000000000002, "_verticalCenter": 0, @@ -1031,27 +977,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "f4tGrm/2ZHUK1HW6SAZGkC" }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 40 - }, - "languageKey": "themepanel.title", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0eBWTBCxtOaYvuKO4mrn2y" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -1075,27 +1000,27 @@ }, "_children": [ { - "__id__": 43 + "__id__": 39 } ], "_active": true, "_components": [ + { + "__id__": 47 + }, + { + "__id__": 49 + }, { "__id__": 51 - }, - { - "__id__": 53 - }, - { - "__id__": 55 } ], "_prefab": { - "__id__": 57 + "__id__": 53 }, "_lpos": { "__type__": "cc.Vec3", - "x": -51.02800000000002, + "x": -85.13400000000001, "y": -289.5350000000001, "z": 0 }, @@ -1128,28 +1053,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 42 + "__id__": 38 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 40 + }, + { + "__id__": 42 + }, { "__id__": 44 - }, - { - "__id__": 46 - }, - { - "__id__": 48 } ], "_prefab": { - "__id__": 50 + "__id__": 46 }, "_lpos": { "__type__": "cc.Vec3", - "x": 57.565000000000055, - "y": 0, + "x": 71.06500000000005, + "y": -3.5670000000000073, "z": 0 }, "_lrot": { @@ -1181,15 +1106,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 41 }, "_contentSize": { "__type__": "cc.Size", - "width": 170.745508, + "width": 206.645508, "height": 50.4 }, "_anchorPoint": { @@ -1209,26 +1134,26 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 47 + "__id__": 43 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 170, - "g": 194, - "b": 188, + "r": 223, + "g": 155, + "b": 221, "a": 255 }, "_string": "9,999,999", "_horizontalAlign": 0, "_verticalAlign": 2, - "_actualFontSize": 38, + "_actualFontSize": 43, "_fontSize": 42, "_fontFamily": "Arial-MT", "_lineHeight": 0, @@ -1280,11 +1205,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 45 }, "_alignFlags": 10, "_target": null, @@ -1293,7 +1218,7 @@ "_top": 0, "_bottom": 0, "_horizontalCenter": 0, - "_verticalCenter": 0, + "_verticalCenter": -3.5670000000000073, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -1329,16 +1254,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 52 + "__id__": 48 }, "_contentSize": { "__type__": "cc.Size", - "width": 102, - "height": 89 + "width": 75, + "height": 66 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1357,11 +1282,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 54 + "__id__": 50 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1374,7 +1299,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941", + "__uuid__": "67f07ec9-e327-4a6c-8911-bf4edae510c3@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -1402,18 +1327,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 52 }, "_alignFlags": 36, "_target": null, "_left": 194.1, - "_right": 540.028, + "_right": 587.634, "_top": 0, - "_bottom": -224.03500000000008, + "_bottom": -212.53500000000008, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1455,30 +1380,30 @@ }, "_children": [ { - "__id__": 59 + "__id__": 55 }, { - "__id__": 67 + "__id__": 63 } ], "_active": true, "_components": [ + { + "__id__": 71 + }, + { + "__id__": 73 + }, { "__id__": 75 - }, - { - "__id__": 77 - }, - { - "__id__": 79 } ], "_prefab": { - "__id__": 81 + "__id__": 77 }, "_lpos": { "__type__": "cc.Vec3", - "x": 278.40200000000004, + "x": 261.34900000000005, "y": -289.5350000000001, "z": 0 }, @@ -1511,28 +1436,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 58 + "__id__": 54 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 56 + }, + { + "__id__": 58 + }, { "__id__": 60 - }, - { - "__id__": 62 - }, - { - "__id__": 64 } ], "_prefab": { - "__id__": 66 + "__id__": 62 }, "_lpos": { "__type__": "cc.Vec3", "x": 74.87199999999996, - "y": -7.132999999999811, + "y": -3.566000000000031, "z": 0 }, "_lrot": { @@ -1564,11 +1489,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 61 + "__id__": 57 }, "_contentSize": { "__type__": "cc.Size", @@ -1592,11 +1517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 63 + "__id__": 59 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1610,7 +1535,7 @@ }, "_string": "剩余7天", "_horizontalAlign": 0, - "_verticalAlign": 1, + "_verticalAlign": 2, "_actualFontSize": 33, "_fontSize": 32, "_fontFamily": "NotoSans-Regular", @@ -1663,11 +1588,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 61 }, "_alignFlags": 34, "_target": null, @@ -1676,7 +1601,7 @@ "_top": 0, "_bottom": 0, "_horizontalCenter": 0, - "_verticalCenter": -7.132999999999811, + "_verticalCenter": -3.566000000000031, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -1712,23 +1637,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 58 + "__id__": 54 }, "_children": [], "_active": false, "_components": [ + { + "__id__": 64 + }, + { + "__id__": 66 + }, { "__id__": 68 - }, - { - "__id__": 70 - }, - { - "__id__": 72 } ], "_prefab": { - "__id__": 74 + "__id__": 70 }, "_lpos": { "__type__": "cc.Vec3", @@ -1765,11 +1690,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 65 }, "_contentSize": { "__type__": "cc.Size", @@ -1793,11 +1718,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 67 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1861,11 +1786,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 69 }, "_alignFlags": 34, "_target": null, @@ -1910,11 +1835,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 54 }, "_enabled": true, "__prefab": { - "__id__": 76 + "__id__": 72 }, "_contentSize": { "__type__": "cc.Size", @@ -1938,11 +1863,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 54 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 74 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1983,16 +1908,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 54 }, "_enabled": true, "__prefab": { - "__id__": 80 + "__id__": 76 }, "_alignFlags": 36, "_target": null, "_left": 194.1, - "_right": 201.59799999999996, + "_right": 218.65099999999995, "_top": 0, "_bottom": -211.53500000000008, "_horizontalCenter": 0, @@ -2038,11 +1963,11 @@ "_active": true, "_components": [ { - "__id__": 83 + "__id__": 79 } ], "_prefab": { - "__id__": 85 + "__id__": 81 }, "_lpos": { "__type__": "cc.Vec3", @@ -2079,11 +2004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 84 + "__id__": 80 }, "_contentSize": { "__type__": "cc.Size", @@ -2114,338 +2039,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "User", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 3 - }, - "_children": [ - { - "__id__": 87 - } - ], - "_active": true, - "_components": [ - { - "__id__": 95 - }, - { - "__id__": 97 - } - ], - "_prefab": { - "__id__": 99 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -400.672, - "y": -304.86300000000006, - "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": "uid", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 86 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -80.67999999999998, - "y": 6.567999999999984, - "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__": 87 - }, - "_enabled": true, - "__prefab": { - "__id__": 89 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 220.1953125, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "fet6qzaQRKHr3gLdrlEbRe" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 87 - }, - "_enabled": true, - "__prefab": { - "__id__": 91 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 202, - "g": 202, - "b": 202, - "a": 255 - }, - "_string": "Uid:1234567890", - "_horizontalAlign": 0, - "_verticalAlign": 1, - "_actualFontSize": 30, - "_fontSize": 30, - "_fontFamily": "NotoSans-Regular", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ediKjY2wxKnquQLPwkQ0da" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 87 - }, - "_enabled": true, - "__prefab": { - "__id__": 93 - }, - "_alignFlags": 10, - "_target": null, - "_left": -80.67999999999998, - "_right": -120.41744140624996, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": -17.932000000000016, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 92.5048828125, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c003ADQrhJ0L1CUnWcHh37" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "82q7320FJMi6ZfPDhbDdL/", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 86 - }, - "_enabled": true, - "__prefab": { - "__id__": 96 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 50, - "height": 49 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "60LHQPH21AF6LRba6FBqjU" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 86 - }, - "_enabled": true, - "__prefab": { - "__id__": 98 - }, - "_alignFlags": 36, - "_target": null, - "_left": 194.1, - "_right": 890.672, - "_top": 0, - "_bottom": -194.86300000000006, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 8, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d3J+FDYWJDRrZ/UuvC/G5o" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5dLLI5Fe5DEKyPgivwprFP", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.UITransform", "_name": "", @@ -2456,7 +2049,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 83 }, "_contentSize": { "__type__": "cc.Size", @@ -2484,7 +2077,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 103 + "__id__": 85 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2529,7 +2122,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 87 }, "_alignFlags": 41, "_target": null, @@ -2578,26 +2171,26 @@ }, "_children": [ { - "__id__": 108 + "__id__": 90 }, { - "__id__": 186 + "__id__": 136 } ], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 258 }, { - "__id__": 310 + "__id__": 260 }, { - "__id__": 312 + "__id__": 262 } ], "_prefab": { - "__id__": 314 + "__id__": 264 }, "_lpos": { "__type__": "cc.Vec3", @@ -2634,40 +2227,46 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 107 + "__id__": 89 }, "_children": [ { - "__id__": 109 + "__id__": 91 }, { - "__id__": 149 + "__id__": 97 }, { - "__id__": 165 + "__id__": 105 }, { - "__id__": 173 + "__id__": 113 + }, + { + "__id__": 121 } ], "_active": true, "_components": [ { - "__id__": 179 + "__id__": 127 }, { - "__id__": 181 + "__id__": 129 }, { - "__id__": 183 + "__id__": 131 + }, + { + "__id__": 133 } ], "_prefab": { - "__id__": 185 + "__id__": 135 }, "_lpos": { "__type__": "cc.Vec3", - "x": -277.803, + "x": -234.224, "y": 117.06799999999998, "z": 0 }, @@ -2694,94 +2293,31 @@ }, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 108 - }, - "_children": [ - { - "__id__": 110 - }, - { - "__id__": 116 - } - ], - "_active": true, - "_components": [ - { - "__id__": 140 - }, - { - "__id__": 142 - }, - { - "__id__": 144 - }, - { - "__id__": 146 - } - ], - "_prefab": { - "__id__": 148 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "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": "Img", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 109 + "__id__": 90 }, "_children": [], "_active": true, "_components": [ { - "__id__": 111 + "__id__": 92 }, { - "__id__": 113 + "__id__": 94 } ], "_prefab": { - "__id__": 115 + "__id__": 96 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": 0.33400000000006, "z": 0 }, "_lrot": { @@ -2813,16 +2349,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 110 + "__id__": 91 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 93 }, "_contentSize": { "__type__": "cc.Size", - "width": 2, - "height": 2 + "width": 444, + "height": 330 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2841,11 +2377,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 110 + "__id__": 91 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 95 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2858,7 +2394,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "8ecb8155-67a6-44a6-aa1e-352c37fcd2db@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -2895,92 +2431,32 @@ }, { "__type__": "cc.Node", - "_name": "loadingItem", + "_name": "nameBg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 109 - }, - "_children": [ - { - "__id__": 117 - }, - { - "__id__": 125 - } - ], - "_active": true, - "_components": [ - { - "__id__": 133 - }, - { - "__id__": 135 - }, - { - "__id__": 137 - } - ], - "_prefab": { - "__id__": 139 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -5.684341886080802e-14, - "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": "loadingBg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 116 + "__id__": 90 }, "_children": [], "_active": true, "_components": [ { - "__id__": 118 + "__id__": 98 }, { - "__id__": 120 + "__id__": 100 }, { - "__id__": 122 + "__id__": 102 } ], "_prefab": { - "__id__": 124 + "__id__": 104 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 0, + "x": -220.553, + "y": -126.5, "z": 0 }, "_lrot": { @@ -3012,27 +2488,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 117 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 99 }, "_contentSize": { "__type__": "cc.Size", - "width": 461, - "height": 461 + "width": 229.082031, + "height": 77 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, + "x": 0, "y": 0.5 }, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "e8Dlc8TXNO9ZnLq6znUmI0" + "fileId": "f25k75BdJH3YPx4CTKvdyQ" }, { "__type__": "cc.Sprite", @@ -3040,186 +2516,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 117 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 121 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 96 - }, - "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "25J2/9BWxCyZCsfJb2s/NH" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 117 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 40, - "_originalHeight": 36, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "07swJQRoFDDKrPMy2iJHL7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d47gKY5yVJhJ5BP3rLMBz7", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "resLoading", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 116 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 126 - }, - { - "__id__": 128 - }, - { - "__id__": 130 - } - ], - "_prefab": { - "__id__": 132 - }, - "_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__": 125 - }, - "_enabled": true, - "__prefab": { - "__id__": 127 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 128, - "height": 128 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6ar2A25iNNx7Ukt2/wGiEI" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 125 - }, - "_enabled": true, - "__prefab": { - "__id__": 129 + "__id__": 101 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3232,278 +2533,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "e8be7976-0d87-45c7-835a-efe2933394ac@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "dd2u4cEepN3YsNtcZVmF5u" - }, - { - "__type__": "cc.Animation", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 125 - }, - "_enabled": true, - "__prefab": { - "__id__": 131 - }, - "playOnLoad": true, - "_clips": [ - { - "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", - "__expectedType__": "cc.AnimationClip" - } - ], - "_defaultClip": { - "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", - "__expectedType__": "cc.AnimationClip" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e04P1ZMiBJwKyIB4zEyUjH" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6fgYA15JBL84sy7YZ2Cjcu", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 116 - }, - "_enabled": true, - "__prefab": { - "__id__": 134 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 461, - "height": 461 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bcYYaQoxtAYbMi0+xfwV2V" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 116 - }, - "_enabled": true, - "__prefab": { - "__id__": 136 - }, - "_alignFlags": 45, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 40, - "_originalHeight": 36, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ceOnsEjy9KhYPgOkpC5Saa" - }, - { - "__type__": "38c12VeC51MEarg68KNWAIi", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 116 - }, - "_enabled": true, - "__prefab": { - "__id__": 138 - }, - "animation": { - "__id__": 130 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "eeY4tOFWVLabYeJeMtxauL" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4fkx8eqGVGhI4Q1RoGW0kL", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 141 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 461, - "height": 461 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4dmpLpGNZAH7L81iuKbE80" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 143 - }, - "_alignFlags": 45, - "_target": null, - "_left": 5.684341886080802e-14, - "_right": -5.684341886080802e-14, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 100, - "_originalHeight": 100, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d4gwiJZ4lMz5wssvr7TXDO" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 145 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "28PNd2DRBDq7QzZGbC16D8" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 109 - }, - "_enabled": true, - "__prefab": { - "__id__": 147 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "19f6ec0b-0bca-43f5-92db-b15d08050f80@f9941", + "__uuid__": "901c2255-e21a-4a78-8f59-e69c4c7771f9@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -3523,7 +2553,43 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "05+kBiI7hI0pDpjaENU25I" + "fileId": "3aB0FXB5FIIYcml0d3uNM9" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 97 + }, + "_enabled": true, + "__prefab": { + "__id__": 103 + }, + "_alignFlags": 12, + "_target": null, + "_left": 1.4470000000000027, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e7aM2md7RIU7YHP5eGKBak" }, { "__type__": "cc.PrefabInfo", @@ -3533,96 +2599,39 @@ "asset": { "__id__": 0 }, - "fileId": "aesOvPw/ZPVIetCpoifBQz", + "fileId": "3ek0I0WHtFqYRquDDCUMXa", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "nameBg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 108 - }, - "_children": [ - { - "__id__": 150 - } - ], - "_active": true, - "_components": [ - { - "__id__": 158 - }, - { - "__id__": 160 - }, - { - "__id__": 162 - } - ], - "_prefab": { - "__id__": 164 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -230.5, - "y": -192, - "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": "ThemeName", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 149 + "__id__": 90 }, "_children": [], "_active": true, "_components": [ { - "__id__": 151 + "__id__": 106 }, { - "__id__": 153 + "__id__": 108 }, { - "__id__": 155 + "__id__": 110 } ], "_prefab": { - "__id__": 157 + "__id__": 112 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 0, + "x": -191.1, + "y": -126.5, "z": 0 }, "_lrot": { @@ -3654,16 +2663,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 150 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 107 }, "_contentSize": { "__type__": "cc.Size", - "width": 194.9, - "height": 77.048 + "width": 164.4140625, + "height": 69.048 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3682,11 +2691,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 150 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 109 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3698,14 +2707,14 @@ "b": 255, "a": 255 }, - "_string": "MILF", + "_string": "MILFFFF", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 41, + "_actualFontSize": 40, "_fontSize": 40, "_fontFamily": "NotoSans-Regular", "_lineHeight": 54.8, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": true, "_font": { "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", @@ -3714,7 +2723,7 @@ "_isSystemFontUsed": false, "_spacingX": 0, "_isItalic": false, - "_isBold": false, + "_isBold": true, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -3753,18 +2762,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 150 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 111 }, - "_alignFlags": 40, + "_alignFlags": 12, "_target": null, - "_left": 0, + "_left": 30.9, "_right": 0, "_top": 0, - "_bottom": -38.524, + "_bottom": 3.975999999999999, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -3796,156 +2805,34 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 149 - }, - "_enabled": true, - "__prefab": { - "__id__": 159 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 194.9, - "height": 77 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f25k75BdJH3YPx4CTKvdyQ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 149 - }, - "_enabled": true, - "__prefab": { - "__id__": 161 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "975d687b-82fb-4021-a55d-33e3ba515bbf@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3aB0FXB5FIIYcml0d3uNM9" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 149 - }, - "_enabled": true, - "__prefab": { - "__id__": 163 - }, - "_alignFlags": 12, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e7aM2md7RIU7YHP5eGKBak" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3ek0I0WHtFqYRquDDCUMXa", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "lockCover", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 90 }, "_children": [], "_active": true, "_components": [ { - "__id__": 166 + "__id__": 114 }, { - "__id__": 168 + "__id__": 116 }, { - "__id__": 170 + "__id__": 118 } ], "_prefab": { - "__id__": 172 + "__id__": 120 }, "_lpos": { "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, + "x": 0, + "y": -1.1440000000000055, "z": 0 }, "_lrot": { @@ -3977,16 +2864,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 115 }, "_contentSize": { "__type__": "cc.Size", - "width": 461, - "height": 461 + "width": 444, + "height": 330 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4005,18 +2892,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 117 }, "_alignFlags": 45, "_target": null, - "_left": 5.684341886080802e-14, - "_right": -5.684341886080802e-14, - "_top": 0, - "_bottom": 0, + "_left": 0, + "_right": 0, + "_top": 1.1440000000000055, + "_bottom": -1.1440000000000055, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -4041,24 +2928,24 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 119 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 171 + "r": 194, + "g": 194, + "b": 194, + "a": 255 }, "_spriteFrame": { - "__uuid__": "19f6ec0b-0bca-43f5-92db-b15d08050f80@f9941", + "__uuid__": "f2c34361-263d-487a-9a9e-70fa78fc7893@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -4099,20 +2986,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 108 + "__id__": 90 }, "_children": [], "_active": true, "_components": [ { - "__id__": 174 + "__id__": 122 }, { - "__id__": 176 + "__id__": 124 } ], "_prefab": { - "__id__": 178 + "__id__": 126 }, "_lpos": { "__type__": "cc.Vec3", @@ -4149,16 +3036,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 123 }, "_contentSize": { "__type__": "cc.Size", - "width": 89, - "height": 109 + "width": 100, + "height": 103 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4177,11 +3064,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 125 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4235,16 +3122,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 180 + "__id__": 128 }, "_contentSize": { "__type__": "cc.Size", - "width": 461, - "height": 461 + "width": 444, + "height": 330 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4263,11 +3150,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 182 + "__id__": 130 }, "clickEvents": [], "_interactable": true, @@ -4307,7 +3194,7 @@ "_duration": 0.1, "_zoomScale": 0.95, "_target": { - "__id__": 108 + "__id__": 90 }, "_id": "" }, @@ -4321,26 +3208,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 132 }, "lockImg": { - "__id__": 176 + "__id__": 124 }, "lockCover": { - "__id__": 170 + "__id__": 118 }, "titleName": { - "__id__": 153 + "__id__": 108 }, - "loading": { - "__id__": 116 + "titleNameBg": { + "__id__": 98 }, + "loading": null, "img": { - "__id__": 113 + "__id__": 94 }, "_id": "" }, @@ -4348,6 +3236,51 @@ "__type__": "cc.CompPrefabInfo", "fileId": "fd8C8P8JhP9LoKNCFDdpGm" }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 90 + }, + "_enabled": true, + "__prefab": { + "__id__": 134 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f2c34361-263d-487a-9a9e-70fa78fc7893@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": "14l4/j6IBLB7EZU6zNMhGf" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -4367,35 +3300,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 107 + "__id__": 89 }, "_children": [ { - "__id__": 187 + "__id__": 137 } ], "_active": true, "_components": [ { - "__id__": 299 + "__id__": 249 }, { - "__id__": 301 + "__id__": 251 }, { - "__id__": 303 + "__id__": 253 }, { - "__id__": 305 + "__id__": 255 } ], "_prefab": { - "__id__": 307 + "__id__": 257 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 116.30000000000007, + "y": 78.10000000000002, "z": 0 }, "_lrot": { @@ -4427,30 +3360,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 136 }, "_children": [ { - "__id__": 188 + "__id__": 138 } ], "_active": true, "_components": [ { - "__id__": 290 + "__id__": 240 }, { - "__id__": 292 + "__id__": 242 }, { - "__id__": 294 + "__id__": 244 }, { - "__id__": 296 + "__id__": 246 } ], "_prefab": { - "__id__": 298 + "__id__": 248 }, "_lpos": { "__type__": "cc.Vec3", @@ -4487,35 +3420,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 187 + "__id__": 137 }, "_children": [ { - "__id__": 189 + "__id__": 139 }, { - "__id__": 275 + "__id__": 225 } ], "_active": true, "_components": [ { - "__id__": 283 + "__id__": 233 }, { - "__id__": 285 + "__id__": 235 }, { - "__id__": 287 + "__id__": 237 } ], "_prefab": { - "__id__": 289 + "__id__": 239 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 819.6500000000001, + "y": 788.1500000000001, "z": 0 }, "_lrot": { @@ -4547,32 +3480,32 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 188 + "__id__": 138 }, "_children": [ { - "__id__": 190 + "__id__": 140 }, { - "__id__": 198 + "__id__": 148 } ], "_active": true, "_components": [ { - "__id__": 270 + "__id__": 220 }, { - "__id__": 272 + "__id__": 222 } ], "_prefab": { - "__id__": 274 + "__id__": 224 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -221, + "y": -174.5, "z": 0 }, "_lrot": { @@ -4604,23 +3537,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 189 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 191 + "__id__": 141 }, { - "__id__": 193 + "__id__": 143 }, { - "__id__": 195 + "__id__": 145 } ], "_prefab": { - "__id__": 197 + "__id__": 147 }, "_lpos": { "__type__": "cc.Vec3", @@ -4657,16 +3590,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 142 }, "_contentSize": { "__type__": "cc.Size", - "width": 966, - "height": 442 + "width": 968, + "height": 349 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4685,11 +3618,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 144 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4730,11 +3663,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 146 }, "_alignFlags": 18, "_target": null, @@ -4779,39 +3712,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 189 + "__id__": 139 }, "_children": [ { - "__id__": 199 + "__id__": 149 }, { - "__id__": 237 + "__id__": 187 }, { - "__id__": 245 + "__id__": 195 }, { - "__id__": 251 + "__id__": 201 } ], "_active": true, "_components": [ { - "__id__": 261 + "__id__": 211 }, { - "__id__": 263 + "__id__": 213 }, { - "__id__": 265 + "__id__": 215 }, { - "__id__": 267 + "__id__": 217 } ], "_prefab": { - "__id__": 269 + "__id__": 219 }, "_lpos": { "__type__": "cc.Vec3", @@ -4848,30 +3781,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 148 }, "_children": [ { - "__id__": 200 + "__id__": 150 }, { - "__id__": 206 + "__id__": 156 } ], "_active": true, "_components": [ { - "__id__": 230 + "__id__": 180 }, { - "__id__": 232 + "__id__": 182 }, { - "__id__": 234 + "__id__": 184 } ], "_prefab": { - "__id__": 236 + "__id__": 186 }, "_lpos": { "__type__": "cc.Vec3", @@ -4908,20 +3841,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 149 }, "_children": [], "_active": true, "_components": [ { - "__id__": 201 + "__id__": 151 }, { - "__id__": 203 + "__id__": 153 } ], "_prefab": { - "__id__": 205 + "__id__": 155 }, "_lpos": { "__type__": "cc.Vec3", @@ -4958,16 +3891,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 152 }, "_contentSize": { "__type__": "cc.Size", - "width": 460, - "height": 460 + "width": 491, + "height": 350 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4986,11 +3919,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 154 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5041,34 +3974,34 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 149 }, "_children": [ { - "__id__": 207 + "__id__": 157 }, { - "__id__": 215 + "__id__": 165 } ], "_active": true, "_components": [ { - "__id__": 223 + "__id__": 173 }, { - "__id__": 225 + "__id__": 175 }, { - "__id__": 227 + "__id__": 177 } ], "_prefab": { - "__id__": 229 + "__id__": 179 }, "_lpos": { "__type__": "cc.Vec3", - "x": 231.35, + "x": 245.5, "y": 0, "z": 0 }, @@ -5101,23 +4034,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 156 }, "_children": [], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 158 }, { - "__id__": 210 + "__id__": 160 }, { - "__id__": 212 + "__id__": 162 } ], "_prefab": { - "__id__": 214 + "__id__": 164 }, "_lpos": { "__type__": "cc.Vec3", @@ -5154,16 +4087,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 157 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 159 }, "_contentSize": { "__type__": "cc.Size", - "width": 462.7, - "height": 446.4 + "width": 491, + "height": 350 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5182,11 +4115,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 157 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 161 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5227,11 +4160,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 157 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 163 }, "_alignFlags": 45, "_target": null, @@ -5276,23 +4209,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 156 }, "_children": [], "_active": true, "_components": [ { - "__id__": 216 + "__id__": 166 }, { - "__id__": 218 + "__id__": 168 }, { - "__id__": 220 + "__id__": 170 } ], "_prefab": { - "__id__": 222 + "__id__": 172 }, "_lpos": { "__type__": "cc.Vec3", @@ -5329,11 +4262,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 167 }, "_contentSize": { "__type__": "cc.Size", @@ -5357,11 +4290,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 169 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5402,11 +4335,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 171 }, "playOnLoad": true, "_clips": [ @@ -5444,16 +4377,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 156 }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 174 }, "_contentSize": { "__type__": "cc.Size", - "width": 462.7, - "height": 446.4 + "width": 491, + "height": 350 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5472,11 +4405,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 156 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 176 }, "_alignFlags": 45, "_target": null, @@ -5508,14 +4441,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 156 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 178 }, "animation": { - "__id__": 220 + "__id__": 170 }, "_id": "" }, @@ -5542,16 +4475,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 149 }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 181 }, "_contentSize": { "__type__": "cc.Size", - "width": 462.7, - "height": 446.4 + "width": 491, + "height": 350 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5570,11 +4503,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 149 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 183 }, "_type": 0, "_inverted": false, @@ -5592,11 +4525,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 149 }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 185 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5651,28 +4584,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 148 }, "_children": [], "_active": true, "_components": [ { - "__id__": 238 + "__id__": 188 }, { - "__id__": 240 + "__id__": 190 }, { - "__id__": 242 + "__id__": 192 } ], "_prefab": { - "__id__": 244 + "__id__": 194 }, "_lpos": { "__type__": "cc.Vec3", - "x": 6.628000000000043, - "y": 148.7199999999998, + "x": 21.674999999999955, + "y": 109.48700000000008, "z": 0 }, "_lrot": { @@ -5704,11 +4637,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 189 }, "_contentSize": { "__type__": "cc.Size", @@ -5732,11 +4665,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 191 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5751,8 +4684,8 @@ "_string": "Daily\nrecommendations", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 49, - "_fontSize": 48, + "_actualFontSize": 43, + "_fontSize": 42, "_fontFamily": "NotoSans-Regular", "_lineHeight": 50.6, "_overflow": 2, @@ -5803,11 +4736,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 193 }, "languageKey": "themepanel.recomandtext", "defaultText": "", @@ -5837,25 +4770,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 148 }, "_children": [], "_active": true, "_components": [ { - "__id__": 246 + "__id__": 196 }, { - "__id__": 248 + "__id__": 198 } ], "_prefab": { - "__id__": 250 + "__id__": 200 }, "_lpos": { "__type__": "cc.Vec3", - "x": 1.26400000000001, - "y": -73.29500000000007, + "x": 27.00999999999999, + "y": -73.29499999999985, "z": 0 }, "_lrot": { @@ -5887,11 +4820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 245 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 247 + "__id__": 197 }, "_contentSize": { "__type__": "cc.Size", @@ -5915,27 +4848,27 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 245 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 199 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 218, - "g": 158, - "b": 252, + "r": 216, + "g": 192, + "b": 241, "a": 255 }, "_string": "Anaya", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 60, - "_fontSize": 59, + "_actualFontSize": 49, + "_fontSize": 48, "_fontFamily": "NotoSans-Regular", "_lineHeight": 0, "_overflow": 2, @@ -5999,31 +4932,31 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 148 }, "_children": [], "_active": true, "_components": [ { - "__id__": 252 + "__id__": 202 }, { - "__id__": 254 + "__id__": 204 }, { - "__id__": 256 + "__id__": 206 }, { - "__id__": 258 + "__id__": 208 } ], "_prefab": { - "__id__": 260 + "__id__": 210 }, "_lpos": { "__type__": "cc.Vec3", - "x": 372.97799999999995, - "y": -72.481, + "x": 356.92499999999995, + "y": -72.48099999999977, "z": 0 }, "_lrot": { @@ -6055,16 +4988,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 203 }, "_contentSize": { "__type__": "cc.Size", - "width": 158, - "height": 157 + "width": 124, + "height": 123 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6083,11 +5016,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 205 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6128,20 +5061,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 207 }, "_alignFlags": 34, "_target": null, "_left": 20, - "_right": 31.022000000000048, + "_right": 65.07500000000005, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, - "_verticalCenter": -72.481, + "_verticalCenter": -72.48099999999977, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -6164,11 +5097,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 259 + "__id__": 209 }, "clickEvents": [], "_interactable": true, @@ -6233,16 +5166,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 212 }, "_contentSize": { "__type__": "cc.Size", - "width": 966, - "height": 442 + "width": 968, + "height": 349 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6261,11 +5194,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 214 }, "_alignFlags": 45, "_target": null, @@ -6297,11 +5230,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 266 + "__id__": 216 }, "_type": 3, "_inverted": false, @@ -6319,11 +5252,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 218 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6377,16 +5310,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 189 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 271 + "__id__": 221 }, "_contentSize": { "__type__": "cc.Size", - "width": 966, - "height": 442 + "width": 968, + "height": 349 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6405,16 +5338,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 189 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 223 }, "_alignFlags": 41, "_target": null, - "_left": 57, - "_right": 57, + "_left": 56, + "_right": 56, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -6454,28 +5387,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 188 + "__id__": 138 }, "_children": [], "_active": true, "_components": [ { - "__id__": 276 + "__id__": 226 }, { - "__id__": 278 + "__id__": 228 }, { - "__id__": 280 + "__id__": 230 } ], "_prefab": { - "__id__": 282 + "__id__": 232 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -475.4, + "y": -419.3, "z": 0 }, "_lrot": { @@ -6507,11 +5440,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 225 }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 227 }, "_contentSize": { "__type__": "cc.Size", @@ -6535,11 +5468,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 225 }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 229 }, "_resizeMode": 1, "_layoutType": 3, @@ -6549,11 +5482,11 @@ "height": 450 }, "_startAxis": 0, - "_paddingLeft": 52, - "_paddingRight": 52, + "_paddingLeft": 55, + "_paddingRight": 55, "_paddingTop": 0, "_paddingBottom": 0, - "_spacingX": 44, + "_spacingX": 74, "_spacingY": 45.4, "_verticalDirection": 1, "_horizontalDirection": 0, @@ -6573,11 +5506,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 225 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 231 }, "_alignFlags": 40, "_target": null, @@ -6622,16 +5555,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 284 + "__id__": 234 }, "_contentSize": { "__type__": "cc.Size", "width": 1080, - "height": 475.4 + "height": 419.3 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6650,11 +5583,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 236 }, "_resizeMode": 1, "_layoutType": 2, @@ -6669,7 +5602,7 @@ "_paddingTop": 0, "_paddingBottom": 0, "_spacingX": 0, - "_spacingY": 33.4, + "_spacingY": 70.3, "_verticalDirection": 1, "_horizontalDirection": 0, "_constraint": 0, @@ -6688,11 +5621,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 288 + "__id__": 238 }, "_alignFlags": 1, "_target": null, @@ -6737,16 +5670,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 241 }, "_contentSize": { "__type__": "cc.Size", "width": 1060, - "height": 1639.3000000000002 + "height": 1576.3000000000002 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6765,11 +5698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 243 }, "_type": 0, "_inverted": false, @@ -6787,11 +5720,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 245 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6833,11 +5766,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 247 }, "_alignFlags": 45, "_target": null, @@ -6882,16 +5815,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 136 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 250 }, "_contentSize": { "__type__": "cc.Size", "width": 1060, - "height": 1639.3000000000002 + "height": 1576.3000000000002 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6910,11 +5843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 136 }, "_enabled": false, "__prefab": { - "__id__": 302 + "__id__": 252 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6955,11 +5888,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 136 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 254 }, "bounceDuration": 0.23, "brake": 0.75, @@ -6970,7 +5903,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 188 + "__id__": 138 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -6986,18 +5919,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 136 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 256 }, "_alignFlags": 45, "_target": null, "_left": 10, "_right": 10, - "_top": 0, - "_bottom": 232.6, + "_top": 69.7, + "_bottom": 225.9, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -7009,7 +5942,7 @@ "_originalWidth": 240, "_originalHeight": 250, "_alignMode": 2, - "_lockFlags": 45, + "_lockFlags": 40, "_id": "" }, { @@ -7035,11 +5968,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 89 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", @@ -7063,11 +5996,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 89 }, "_enabled": false, "__prefab": { - "__id__": 311 + "__id__": 261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7108,11 +6041,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 89 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 263 }, "_alignFlags": 45, "_target": null, @@ -7161,7 +6094,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 266 }, "_contentSize": { "__type__": "cc.Size", @@ -7189,20 +6122,20 @@ }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 268 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 47, - "g": 28, - "b": 57, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "73d2e328-4c47-42e2-83e1-07967b503a51@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -7234,7 +6167,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 270 }, "_alignFlags": 45, "_target": null, @@ -7283,7 +6216,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 273 }, "_contentSize": { "__type__": "cc.Size", @@ -7311,7 +6244,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 325 + "__id__": 275 }, "_alignFlags": 45, "_target": null, @@ -7347,7 +6280,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 327 + "__id__": 277 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/Web3PopPanel.prefab b/assets/bundles/Chat18x/Web3PopPanel.prefab new file mode 100644 index 00000000..d90d6e9a --- /dev/null +++ b/assets/bundles/Chat18x/Web3PopPanel.prefab @@ -0,0 +1,5499 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "Web3PopPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "Web3PopPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 30 + }, + { + "__id__": 44 + }, + { + "__id__": 74 + }, + { + "__id__": 80 + }, + { + "__id__": 86 + }, + { + "__id__": 184 + } + ], + "_active": true, + "_components": [ + { + "__id__": 216 + }, + { + "__id__": 218 + }, + { + "__id__": 220 + } + ], + "_prefab": { + "__id__": 222 + }, + "_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.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + }, + { + "__id__": 19 + } + ], + "_active": true, + "_components": [ + { + "__id__": 25 + }, + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 29 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 68.57999999999993, + "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": "closeBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 4 + } + ], + "_active": true, + "_components": [ + { + "__id__": 10 + }, + { + "__id__": 12 + }, + { + "__id__": 14 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 18 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 345.44100000000003, + "y": 482.249, + "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__": 3 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_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__": 4 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 56, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f8r6Zf8n9AwLweRvW7qWcm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 4 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "84898dc5-6599-491a-825f-91354b89a58f@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": "e18jjS7GxFn5Yo1odfxPDg" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c5hp21g7lP65xjfRtZJjzR", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 11 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3etly/4DlJG4UVq93dhHUW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 13 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "68cqEX2qFL0rVHVk8UsE0E" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 15 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 2, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": { + "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_hoverSprite": { + "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_pressedSprite": { + "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_disabledSprite": { + "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 3 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0a/523PGpO+Y7d03cSrcrT" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 17 + }, + "_alignFlags": 33, + "_target": null, + "_left": 0, + "_right": 37.05899999999997, + "_top": 22.250999999999976, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "acgWJfxMRDr7sUZZ5nnQNb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50+dMzCLNOUoi8F+dlStU9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "title", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 24 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 485.7349999999999, + "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__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 432.48046875, + "height": 103.446 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7fZDF48m9DmZlP35Hxw5hR" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 23 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 223, + "g": 216, + "b": 231, + "a": 255 + }, + "_string": "Web3 Recharge", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 60, + "_fontSize": 60, + "_fontFamily": "Arial", + "_lineHeight": 82.1, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e3rc7PLYJCra06FfdIxfET" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3dzuGoSxP27hxX8kUgYvZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 26 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 1109 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1c8czVFSNHp70faRYNchy0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 28 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "17ed0863-067c-4bb7-a408-1f1dad687dd7@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": "74n7eiOJFAdaJq/FYbCiI5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "67/o4AddJIMYDC0pibo3hL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "warningText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 31 + } + ], + "_active": true, + "_components": [ + { + "__id__": 39 + }, + { + "__id__": 41 + } + ], + "_prefab": { + "__id__": 43 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 382.3520000000001, + "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__": 30 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 32 + }, + { + "__id__": 34 + }, + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 38 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -350.42299987499996, + "y": 19.732999999999947, + "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__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 33 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 34, + "height": 34 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "29rWc17d9M75J+gLdkaNYh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 35 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7@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": "cfK8aLASFPt4ajZySi7S/H" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 37 + }, + "_alignFlags": 9, + "_target": null, + "_left": -37.23810937499998, + "_right": 0, + "_top": 8.467000000000048, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 34, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "daTEd7jiJH0YZebwLNa4JO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bbVzXjhz5Mco4s2z7UyKg2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 30 + }, + "_enabled": true, + "__prefab": { + "__id__": 40 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 660.369781, + "height": 90.39999999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "88Jz+TQzdKjYGRG7S84V9d" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 30 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 135, + "b": 247, + "a": 255 + }, + "_string": "Please be sure to recharge according to the following specified amount", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 3, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1bosF3eUdGNZ66VUTvm+vI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8J7SrhdhEHqWpsWttBkYa", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ChargeAmount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 45 + }, + { + "__id__": 57 + }, + { + "__id__": 63 + } + ], + "_active": true, + "_components": [ + { + "__id__": 71 + } + ], + "_prefab": { + "__id__": 73 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 262.55999999999995, + "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": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 44 + }, + "_children": [ + { + "__id__": 46 + } + ], + "_active": true, + "_components": [ + { + "__id__": 52 + }, + { + "__id__": 54 + } + ], + "_prefab": { + "__id__": 56 + }, + "_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.Node", + "_name": "矩形 9", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 45 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 47 + }, + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 51 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -203.065, + "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__": 46 + }, + "_enabled": true, + "__prefab": { + "__id__": 48 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 7, + "height": 57 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c3NQ8pkaFF4LLxN4qpwVsn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 46 + }, + "_enabled": true, + "__prefab": { + "__id__": 50 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "81daf6bc-7c66-4a58-ba47-11d8bca3782a@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": "e21zRvykpBqJJWnLav9t3X" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f169r3Z79I5rs7c13KVLYY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 45 + }, + "_enabled": true, + "__prefab": { + "__id__": 53 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 449, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b0mckXktdA/aMrSZBBMIZw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 45 + }, + "_enabled": true, + "__prefab": { + "__id__": 55 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "216a2d8b-7a1e-46c0-9331-4e7a35762e97@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": "2cmfhQNblEKr93jdCaDTya" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bfZZrWkkhJ+ZiFWyq24W7u", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "AmountTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 44 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + }, + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 62 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -320.2, + "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__": 57 + }, + "_enabled": true, + "__prefab": { + "__id__": 59 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144.744140625, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a0lEsDqChIaL9UgAYslX2S" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 57 + }, + "_enabled": true, + "__prefab": { + "__id__": 61 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 238, + "g": 232, + "b": 245, + "a": 255 + }, + "_string": "Amount", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61+0ud791MsLnzpDwk9Hae" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "04vKJoKGhKipLCfDeBB57s", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "amount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 44 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 64 + }, + { + "__id__": 66 + }, + { + "__id__": 68 + } + ], + "_prefab": { + "__id__": 70 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -183.97000000000003, + "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__": 63 + }, + "_enabled": true, + "__prefab": { + "__id__": 65 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 392.873828, + "height": 72.3 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83vYIm45NHjqyK9CZcmjJw" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 63 + }, + "_enabled": true, + "__prefab": { + "__id__": 67 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 144, + "g": 216, + "b": 195, + "a": 255 + }, + "_string": "9,999.99", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 53, + "_fontSize": 52, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b7pG9jXWlKMqNDicVUTzsC" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 63 + }, + "_enabled": true, + "__prefab": { + "__id__": 69 + }, + "_alignFlags": 0, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3fLHC4MC1AjZ3U1zZzjBq/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2hjSQ0epEw5yakdhC9GTJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 44 + }, + "_enabled": true, + "__prefab": { + "__id__": 72 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 850, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a1Zk/yZrdIfLPYN+5yram6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f8yhhA7YlP3o9EvKnSzBXh", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "erweima", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 75 + }, + { + "__id__": 77 + } + ], + "_prefab": { + "__id__": 79 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -68.40200000000004, + "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__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 76 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 261, + "height": 261 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "677EdCx0FB0onN4+/VEtEY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 78 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a9cc1220-5e62-4d8d-9dd2-7c323d863993@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": "7fklT2DIlLBYJjY7JMRyxk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60IjPNkWBPTY02lkUjdFp5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "tips", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 81 + }, + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 85 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -238.62800000000004, + "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__": 80 + }, + "_enabled": true, + "__prefab": { + "__id__": 82 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 651.515625, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "efO79HWIZJMof8ZZ7meaLJ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 80 + }, + "_enabled": true, + "__prefab": { + "__id__": 84 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 188, + "g": 181, + "b": 196, + "a": 255 + }, + "_string": "Only send Tron network USDT to this address", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 32, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7fwCHqvANDeI/AfAlVFFvs" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d5PyVw8otHPYM+NbJGTrkx", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Network", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 87 + }, + { + "__id__": 93 + }, + { + "__id__": 107 + }, + { + "__id__": 119 + } + ], + "_active": true, + "_components": [ + { + "__id__": 181 + } + ], + "_prefab": { + "__id__": 183 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 25.491999999999962, + "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": "AmountTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 88 + }, + { + "__id__": 90 + } + ], + "_prefab": { + "__id__": 92 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -320.2, + "y": 132.08300000000008, + "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__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 89 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 154.0341796875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "92LJBfT/5A6rmBJ8c6yl09" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 91 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 238, + "g": 232, + "b": 245, + "a": 255 + }, + "_string": "Network", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8Hxm2Wu9LeJv7dRkKf9q6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bdfCkDgZtGYLk9o9mwMRYl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "CoinTypeSelectBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [ + { + "__id__": 94 + } + ], + "_active": true, + "_components": [ + { + "__id__": 100 + }, + { + "__id__": 102 + }, + { + "__id__": 104 + } + ], + "_prefab": { + "__id__": 106 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 132.08300000000008, + "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": "返回 (1)", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 93 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 95 + }, + { + "__id__": 97 + } + ], + "_prefab": { + "__id__": 99 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 169.36800000000005, + "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__": 94 + }, + "_enabled": true, + "__prefab": { + "__id__": 96 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 48, + "height": 26 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "16Q9mK5T9PiZhwYYzuZuzr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 94 + }, + "_enabled": true, + "__prefab": { + "__id__": 98 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "42849a5c-6d0b-49c7-b5da-58331ef7759f@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": "9c/NhyP3tNI74/BPq1ru7K" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0fr6MFCzFPHaTzfa3hJ+8d", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 93 + }, + "_enabled": true, + "__prefab": { + "__id__": 101 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 449, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1fkclvXP9G2YQCLicA4UFt" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 93 + }, + "_enabled": true, + "__prefab": { + "__id__": 103 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "216a2d8b-7a1e-46c0-9331-4e7a35762e97@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": "d04N1O1S5EbaoCX6arx9yU" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 93 + }, + "_enabled": true, + "__prefab": { + "__id__": 105 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6aGdI8TxlJ05xdiD9cPLO5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ebm1tS9TZH355d0p2OCNB4", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SelectedCoinIcon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [ + { + "__id__": 108 + } + ], + "_active": true, + "_components": [ + { + "__id__": 114 + }, + { + "__id__": 116 + } + ], + "_prefab": { + "__id__": 118 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -172.75099999999998, + "y": 132.08300000000008, + "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": "SelectedCoinText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 107 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 109 + }, + { + "__id__": 111 + } + ], + "_prefab": { + "__id__": 113 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 167.67600000000004, + "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__": 108 + }, + "_enabled": true, + "__prefab": { + "__id__": 110 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 242.0859375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "26aDhP29ZKHYdbh0ab3OQN" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 108 + }, + "_enabled": true, + "__prefab": { + "__id__": 112 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 245, + "g": 249, + "b": 255, + "a": 255 + }, + "_string": "Select Network", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "538zbilS9Li6ikvd9T4Dbh" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29F9JS3ipFgbXDl3xHXdIY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 115 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 67, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "57FXigP6RAe6DrJTFBHg0T" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 117 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf@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": "22L+9MXDBHibi6KW/QwGWZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19RkThgAtJoqZvyM2+EGM9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Selection", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [ + { + "__id__": 120 + }, + { + "__id__": 138 + }, + { + "__id__": 156 + } + ], + "_active": true, + "_components": [ + { + "__id__": 174 + }, + { + "__id__": 176 + }, + { + "__id__": 178 + } + ], + "_prefab": { + "__id__": 180 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 84.58300000000008, + "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": "CoinType1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 119 + }, + "_children": [ + { + "__id__": 121 + }, + { + "__id__": 127 + } + ], + "_active": true, + "_components": [ + { + "__id__": 133 + }, + { + "__id__": 135 + } + ], + "_prefab": { + "__id__": 137 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -45, + "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": "CoinIcon-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 120 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 122 + }, + { + "__id__": 124 + } + ], + "_prefab": { + "__id__": 126 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -172.75099999999998, + "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__": 121 + }, + "_enabled": true, + "__prefab": { + "__id__": 123 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 67, + "height": 67 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "075oVTzotPWrFWNIJJNKUL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 121 + }, + "_enabled": true, + "__prefab": { + "__id__": 125 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "49b048c9-5df5-441e-bab1-71e783a89c38@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": "e4QrtRcq5B/KG3OyLOWiJ5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f6WmKwt81EuqFFAeTqw9xf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 120 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 128 + }, + { + "__id__": 130 + } + ], + "_prefab": { + "__id__": 132 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -5.074999999999932, + "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__": 127 + }, + "_enabled": true, + "__prefab": { + "__id__": 129 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240.064453125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fcV/uqgLNIuop8nOc120bB" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 127 + }, + "_enabled": true, + "__prefab": { + "__id__": 131 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 245, + "g": 249, + "b": 255, + "a": 255 + }, + "_string": "TRON Mainnet", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0e39AxF+xIMZTDaaZQT3/2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dcDSZi2kNE05/uOd8Jm2iG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 120 + }, + "_enabled": true, + "__prefab": { + "__id__": 134 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 449, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fdBMMTuNVOjLRhAFnn3PB3" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 120 + }, + "_enabled": true, + "__prefab": { + "__id__": 136 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3f44xDiTNImrcKQV0QytYv" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03ICI1UnNJBKhxJdqHEtTo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "CoinType2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 119 + }, + "_children": [ + { + "__id__": 139 + }, + { + "__id__": 145 + } + ], + "_active": true, + "_components": [ + { + "__id__": 151 + }, + { + "__id__": 153 + } + ], + "_prefab": { + "__id__": 155 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -135, + "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": "CoinIcon-002", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 138 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 140 + }, + { + "__id__": 142 + } + ], + "_prefab": { + "__id__": 144 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -172.75099999999998, + "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__": 139 + }, + "_enabled": true, + "__prefab": { + "__id__": 141 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 64, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f7z8lmBZFNkY//oQ0xscbP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 139 + }, + "_enabled": true, + "__prefab": { + "__id__": 143 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79@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": "7bSrp84SJMm7oplZnJXQo8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7sWwmQ+tI67fpUDoLh12k", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 138 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 146 + }, + { + "__id__": 148 + } + ], + "_prefab": { + "__id__": 150 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -56.03399999999999, + "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__": 145 + }, + "_enabled": true, + "__prefab": { + "__id__": 147 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 136.01953125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2arQCPD5ZD4rUxpMLehTtI" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 145 + }, + "_enabled": true, + "__prefab": { + "__id__": 149 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 245, + "g": 249, + "b": 255, + "a": 255 + }, + "_string": "Arbitrum", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a6aK+SvgVIp6ButlgKH6FQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "66VN5butVLLq5GfSgQh7Vp", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 138 + }, + "_enabled": true, + "__prefab": { + "__id__": 152 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 449, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c2qkz2Ze1OtLwVyNtyD23M" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 138 + }, + "_enabled": true, + "__prefab": { + "__id__": 154 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "36OQLkwJFOLbpXVbYq7eh2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9fwn1YFD1Oz6NqH1XXageJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "CoinType3", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 119 + }, + "_children": [ + { + "__id__": 157 + }, + { + "__id__": 163 + } + ], + "_active": true, + "_components": [ + { + "__id__": 169 + }, + { + "__id__": 171 + } + ], + "_prefab": { + "__id__": 173 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -225, + "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": "CoinIcon-003", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 156 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 158 + }, + { + "__id__": 160 + } + ], + "_prefab": { + "__id__": 162 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -172.75099999999998, + "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__": 157 + }, + "_enabled": true, + "__prefab": { + "__id__": 159 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 70 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f1h1U4kvxPWoVt3Ci5/q5+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": { + "__id__": 161 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "51d2ab04-4a3e-4872-b41a-c3b752734c3c@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": "beC5xdda1G8YLFCTZkyM2c" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5KXKT30BEqJTWeTCZ348h", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 156 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 164 + }, + { + "__id__": 166 + } + ], + "_prefab": { + "__id__": 168 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -69.14800000000002, + "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__": 163 + }, + "_enabled": true, + "__prefab": { + "__id__": 165 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 112.095703125, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "72sg0JI59Jq66zWWVeSTao" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 163 + }, + "_enabled": true, + "__prefab": { + "__id__": 167 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 245, + "g": 249, + "b": 255, + "a": 255 + }, + "_string": "Solana", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 36, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "07YprvznxNjrKjMZs+tHbQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b7BcBm2MBE/K0lj97gtH0C", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 156 + }, + "_enabled": true, + "__prefab": { + "__id__": 170 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 449, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "97mWobJIxN7rxDCL75oIKI" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 156 + }, + "_enabled": true, + "__prefab": { + "__id__": 172 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0arfpsRntEUaAe7lUHUcPu" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ae1SyB1SZN2rQb4jbVIp6A", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 175 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 449, + "height": 270 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8bE2CaO+JCWo/2v3zGL5Ct" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_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__": "4cff46b2-ac91-4c10-9871-77e37533b5b5@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d8EoXv3xxD8qggDgl0fkeK" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 179 + }, + "_resizeMode": 0, + "_layoutType": 2, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 0, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aeFQ9K4shGx4EeeVgX97Ed" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "87B0ZzwEFAW7oEr8JbDXiB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 182 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 850, + "height": 365 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9amTrRc1pCfY4vCCB/6TL8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a5ftK2459Kc5kIoPPjxxMi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Address", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 185 + }, + { + "__id__": 191 + }, + { + "__id__": 199 + } + ], + "_active": true, + "_components": [ + { + "__id__": 213 + } + ], + "_prefab": { + "__id__": 215 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -338.34400000000005, + "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": "AddressTitle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 184 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 186 + }, + { + "__id__": 188 + } + ], + "_prefab": { + "__id__": 190 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -320.2, + "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__": 185 + }, + "_enabled": true, + "__prefab": { + "__id__": 187 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 165.744140625, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "beyHRCUSZMrLKopGaB++sc" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 185 + }, + "_enabled": true, + "__prefab": { + "__id__": 189 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 238, + "g": 232, + "b": 245, + "a": 255 + }, + "_string": "Address:", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "22li4973pPjJmKgM/WNJE0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "79C5Y/InxHDpLOZ2r9/5dk", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "amount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 184 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 192 + }, + { + "__id__": 194 + }, + { + "__id__": 196 + } + ], + "_prefab": { + "__id__": 198 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -221.769, + "y": -33.450499999999934, + "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": 413.890828, + "height": 90.15799999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "daYbVwjNhPaLCwKjQbSOBL" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 195 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 238, + "g": 232, + "b": 245, + "a": 255 + }, + "_string": "ascascasc", + "_horizontalAlign": 0, + "_verticalAlign": 0, + "_actualFontSize": 37, + "_fontSize": 36, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "30QC0CyHhNmYNPWE5kvBGn" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 197 + }, + "_alignFlags": 0, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eauw1PPkdGrpO01fufnLNi" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5cQ+V3NdZLDptplxwl/TnW", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "CopyBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 184 + }, + "_children": [ + { + "__id__": 200 + } + ], + "_active": true, + "_components": [ + { + "__id__": 206 + }, + { + "__id__": 208 + }, + { + "__id__": 210 + } + ], + "_prefab": { + "__id__": 212 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 277.65599999999995, + "y": -9.16700000000003, + "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": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 199 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 201 + }, + { + "__id__": 203 + } + ], + "_prefab": { + "__id__": 205 + }, + "_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__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 202 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 118.6, + "height": 82.2 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c0eU5VXd5B+YJHprilQPIm" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 204 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 246, + "g": 227, + "b": 247, + "a": 255 + }, + "_string": "Copy", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial", + "_lineHeight": 81.5, + "_overflow": 1, + "_enableWrapText": false, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d043+VnCVBCrBETJqvvLW6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48tCt98NBNV5kEPLm4OEjh", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 199 + }, + "_enabled": true, + "__prefab": { + "__id__": 207 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 152, + "height": 77 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f9z0eRjw1BdbPkUxljhD+0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 199 + }, + "_enabled": true, + "__prefab": { + "__id__": 209 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b3239215-2f37-41f5-bcbd-2b69bb207b5b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6fWGYUKG5JRYTtLHn9Bmj4" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 199 + }, + "_enabled": true, + "__prefab": { + "__id__": 211 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": { + "__uuid__": "b3239215-2f37-41f5-bcbd-2b69bb207b5b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_hoverSprite": { + "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_pressedSprite": { + "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_disabledSprite": { + "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 199 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "261O7yDEdKwbAjX7dMD7Bt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cfIAb78MNHtI05gjf8W1l5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 184 + }, + "_enabled": true, + "__prefab": { + "__id__": 214 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 850, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "22PWF5LulIf6v+kczkPkDk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7fzivavZVLqrsTZzcDSMIv", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 217 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2340 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "86JzdMmZtLA7bN/V3Pjpc1" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 219 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9c4AKXvVBAvqF5JyrkYz4e" + }, + { + "__type__": "5a5efnbzHhJxp3JSmr1AF7m", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 221 + }, + "m_rootNode": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9fwP53/oZIjZyO+ZW38ySZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e6pU+M6i9MErSV0E0QWx3B", + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/bundles/Chat18x/Web3PopPanel.prefab.meta b/assets/bundles/Chat18x/Web3PopPanel.prefab.meta new file mode 100644 index 00000000..cc537708 --- /dev/null +++ b/assets/bundles/Chat18x/Web3PopPanel.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "f60e950f-4392-48b6-9cc0-9b1e7f2eeaad", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "Web3PopPanel" + } +} diff --git a/assets/resources/ui/common/图层 600.png b/assets/resources/ui/common/图层 600.png new file mode 100644 index 00000000..421c1fe3 Binary files /dev/null and b/assets/resources/ui/common/图层 600.png differ diff --git a/assets/resources/ui/common/图层 600.png.meta b/assets/resources/ui/common/图层 600.png.meta new file mode 100644 index 00000000..deac553d --- /dev/null +++ b/assets/resources/ui/common/图层 600.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "e42051cb-525e-48e1-9303-6c85a1b70661", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "e42051cb-525e-48e1-9303-6c85a1b70661@6c48a", + "displayName": "图层 600", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "e42051cb-525e-48e1-9303-6c85a1b70661", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "e42051cb-525e-48e1-9303-6c85a1b70661@f9941", + "displayName": "图层 600", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 117, + "height": 59, + "rawWidth": 117, + "rawHeight": 59, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -58.5, + -29.5, + 0, + 58.5, + -29.5, + 0, + -58.5, + 29.5, + 0, + 58.5, + 29.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 59, + 117, + 59, + 0, + 0, + 117, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -58.5, + -29.5, + 0 + ], + "maxPos": [ + 58.5, + 29.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "e42051cb-525e-48e1-9303-6c85a1b70661@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "e42051cb-525e-48e1-9303-6c85a1b70661@6c48a" + } +} diff --git a/assets/resources/ui/common/组 13 拷贝 5.png b/assets/resources/ui/common/组 13 拷贝 5.png index 1d1266f5..1586c9a0 100644 Binary files a/assets/resources/ui/common/组 13 拷贝 5.png and b/assets/resources/ui/common/组 13 拷贝 5.png differ diff --git a/assets/resources/ui/common/组 13 拷贝 5.png.meta b/assets/resources/ui/common/组 13 拷贝 5.png.meta index 5c8315fc..0ccc484f 100644 --- a/assets/resources/ui/common/组 13 拷贝 5.png.meta +++ b/assets/resources/ui/common/组 13 拷贝 5.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 89, - "height": 109, - "rawWidth": 89, - "rawHeight": 109, + "width": 100, + "height": 103, + "rawWidth": 100, + "rawHeight": 103, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -44.5, - -54.5, + -50, + -51.5, 0, - 44.5, - -54.5, + 50, + -51.5, 0, - -44.5, - 54.5, + -50, + 51.5, 0, - 44.5, - 54.5, + 50, + 51.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 109, - 89, - 109, + 103, + 100, + 103, 0, 0, - 89, + 100, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -44.5, - -54.5, + -50, + -51.5, 0 ], "maxPos": [ - 44.5, - 54.5, + 50, + 51.5, 0 ] }, diff --git a/assets/resources/ui/common/组 14 拷贝.png b/assets/resources/ui/common/组 14 拷贝.png index e446f8f5..ec793a79 100644 Binary files a/assets/resources/ui/common/组 14 拷贝.png and b/assets/resources/ui/common/组 14 拷贝.png differ diff --git a/assets/resources/ui/common/组 14 拷贝.png.meta b/assets/resources/ui/common/组 14 拷贝.png.meta index 6863890a..743ddb7e 100644 --- a/assets/resources/ui/common/组 14 拷贝.png.meta +++ b/assets/resources/ui/common/组 14 拷贝.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 158, - "height": 157, - "rawWidth": 158, - "rawHeight": 157, + "width": 124, + "height": 123, + "rawWidth": 124, + "rawHeight": 123, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -79, - -78.5, + -62, + -61.5, 0, - 79, - -78.5, + 62, + -61.5, 0, - -79, - 78.5, + -62, + 61.5, 0, - 79, - 78.5, + 62, + 61.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 157, - 158, - 157, + 123, + 124, + 123, 0, 0, - 158, + 124, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -79, - -78.5, + -62, + -61.5, 0 ], "maxPos": [ - 79, - 78.5, + 62, + 61.5, 0 ] }, diff --git a/assets/resources/ui/common/钻石.png b/assets/resources/ui/common/钻石.png new file mode 100644 index 00000000..b386c9c0 Binary files /dev/null and b/assets/resources/ui/common/钻石.png differ diff --git a/assets/resources/ui/shop/矩118.png.meta b/assets/resources/ui/common/钻石.png.meta similarity index 70% rename from assets/resources/ui/shop/矩118.png.meta rename to assets/resources/ui/common/钻石.png.meta index 20e3be6d..8f00ba2f 100644 --- a/assets/resources/ui/shop/矩118.png.meta +++ b/assets/resources/ui/common/钻石.png.meta @@ -2,7 +2,7 @@ "ver": "1.0.27", "importer": "image", "imported": true, - "uuid": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0", + "uuid": "67f07ec9-e327-4a6c-8911-bf4edae510c3", "files": [ ".json", ".png" @@ -10,14 +10,14 @@ "subMetas": { "6c48a": { "importer": "texture", - "uuid": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@6c48a", - "displayName": "矩118", + "uuid": "67f07ec9-e327-4a6c-8911-bf4edae510c3@6c48a", + "displayName": "钻石", "id": "6c48a", "name": "texture", "userData": { "wrapModeS": "clamp-to-edge", "wrapModeT": "clamp-to-edge", - "imageUuidOrDatabaseUri": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0", + "imageUuidOrDatabaseUri": "67f07ec9-e327-4a6c-8911-bf4edae510c3", "isUuid": true, "visible": false, "minfilter": "linear", @@ -34,8 +34,8 @@ }, "f9941": { "importer": "sprite-frame", - "uuid": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@f9941", - "displayName": "矩118", + "uuid": "67f07ec9-e327-4a6c-8911-bf4edae510c3@f9941", + "displayName": "钻石", "id": "f9941", "name": "spriteFrame", "userData": { @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 361, - "height": 108, - "rawWidth": 361, - "rawHeight": 108, + "width": 75, + "height": 66, + "rawWidth": 75, + "rawHeight": 66, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -180.5, - -54, + -37.5, + -33, 0, - 180.5, - -54, + 37.5, + -33, 0, - -180.5, - 54, + -37.5, + 33, 0, - 180.5, - 54, + 37.5, + 33, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 108, - 361, - 108, + 66, + 75, + 66, 0, 0, - 361, + 75, 0 ], "nuv": [ @@ -103,18 +103,18 @@ 1 ], "minPos": [ - -180.5, - -54, + -37.5, + -33, 0 ], "maxPos": [ - 180.5, - 54, + 37.5, + 33, 0 ] }, "isUuid": true, - "imageUuidOrDatabaseUri": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@6c48a", + "imageUuidOrDatabaseUri": "67f07ec9-e327-4a6c-8911-bf4edae510c3@6c48a", "atlasUuid": "" }, "ver": "1.0.12", @@ -129,6 +129,6 @@ "type": "sprite-frame", "hasAlpha": true, "fixAlphaTransparencyArtifacts": false, - "redirect": "8c1563d7-04b7-4129-98e1-dfe8995fa4e0@6c48a" + "redirect": "67f07ec9-e327-4a6c-8911-bf4edae510c3@6c48a" } } diff --git a/assets/resources/ui/navigation/chat.png b/assets/resources/ui/navigation/chat.png index c5bbf244..65a22c57 100644 Binary files a/assets/resources/ui/navigation/chat.png and b/assets/resources/ui/navigation/chat.png differ diff --git a/assets/resources/ui/navigation/chat.png.meta b/assets/resources/ui/navigation/chat.png.meta index 78474139..8e449cbe 100644 --- a/assets/resources/ui/navigation/chat.png.meta +++ b/assets/resources/ui/navigation/chat.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 80, - "height": 70, - "rawWidth": 80, - "rawHeight": 70, + "width": 73, + "height": 63, + "rawWidth": 73, + "rawHeight": 63, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -40, - -35, + -36.5, + -31.5, 0, - 40, - -35, + 36.5, + -31.5, 0, - -40, - 35, + -36.5, + 31.5, 0, - 40, - 35, + 36.5, + 31.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 70, - 80, - 70, + 63, + 73, + 63, 0, 0, - 80, + 73, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -40, - -35, + -36.5, + -31.5, 0 ], "maxPos": [ - 40, - 35, + 36.5, + 31.5, 0 ] }, diff --git a/assets/resources/ui/navigation/chat_unfocus.png b/assets/resources/ui/navigation/chat_unfocus.png index 4da3307b..77cd3023 100644 Binary files a/assets/resources/ui/navigation/chat_unfocus.png and b/assets/resources/ui/navigation/chat_unfocus.png differ diff --git a/assets/resources/ui/navigation/chat_unfocus.png.meta b/assets/resources/ui/navigation/chat_unfocus.png.meta index 865b39a3..47004d04 100644 --- a/assets/resources/ui/navigation/chat_unfocus.png.meta +++ b/assets/resources/ui/navigation/chat_unfocus.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 80, - "height": 70, - "rawWidth": 80, - "rawHeight": 70, + "width": 73, + "height": 63, + "rawWidth": 73, + "rawHeight": 63, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -40, - -35, + -36.5, + -31.5, 0, - 40, - -35, + 36.5, + -31.5, 0, - -40, - 35, + -36.5, + 31.5, 0, - 40, - 35, + 36.5, + 31.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 70, - 80, - 70, + 63, + 73, + 63, 0, 0, - 80, + 73, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -40, - -35, + -36.5, + -31.5, 0 ], "maxPos": [ - 40, - 35, + 36.5, + 31.5, 0 ] }, diff --git a/assets/resources/ui/navigation/home.png b/assets/resources/ui/navigation/home.png index 753b53c9..e4360c23 100644 Binary files a/assets/resources/ui/navigation/home.png and b/assets/resources/ui/navigation/home.png differ diff --git a/assets/resources/ui/navigation/home.png.meta b/assets/resources/ui/navigation/home.png.meta index 28d820f0..59860a62 100644 --- a/assets/resources/ui/navigation/home.png.meta +++ b/assets/resources/ui/navigation/home.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 90, - "height": 90, - "rawWidth": 90, - "rawHeight": 90, + "width": 81, + "height": 81, + "rawWidth": 81, + "rawHeight": 81, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -45, - -45, + -40.5, + -40.5, 0, - 45, - -45, + 40.5, + -40.5, 0, - -45, - 45, + -40.5, + 40.5, 0, - 45, - 45, + 40.5, + 40.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 90, - 90, - 90, + 81, + 81, + 81, 0, 0, - 90, + 81, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -45, - -45, + -40.5, + -40.5, 0 ], "maxPos": [ - 45, - 45, + 40.5, + 40.5, 0 ] }, diff --git a/assets/resources/ui/navigation/home_unfocus.png b/assets/resources/ui/navigation/home_unfocus.png index d1bb47b7..8295d926 100644 Binary files a/assets/resources/ui/navigation/home_unfocus.png and b/assets/resources/ui/navigation/home_unfocus.png differ diff --git a/assets/resources/ui/navigation/home_unfocus.png.meta b/assets/resources/ui/navigation/home_unfocus.png.meta index 1e7d22b1..ffa520f7 100644 --- a/assets/resources/ui/navigation/home_unfocus.png.meta +++ b/assets/resources/ui/navigation/home_unfocus.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 90, - "height": 90, - "rawWidth": 90, - "rawHeight": 90, + "width": 81, + "height": 81, + "rawWidth": 81, + "rawHeight": 81, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -45, - -45, + -40.5, + -40.5, 0, - 45, - -45, + 40.5, + -40.5, 0, - -45, - 45, + -40.5, + 40.5, 0, - 45, - 45, + 40.5, + 40.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 90, - 90, - 90, + 81, + 81, + 81, 0, 0, - 90, + 81, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -45, - -45, + -40.5, + -40.5, 0 ], "maxPos": [ - 45, - 45, + 40.5, + 40.5, 0 ] }, diff --git a/assets/resources/ui/navigation/info.png b/assets/resources/ui/navigation/info.png index dce9dbcb..8f2ff0e3 100644 Binary files a/assets/resources/ui/navigation/info.png and b/assets/resources/ui/navigation/info.png differ diff --git a/assets/resources/ui/navigation/info.png.meta b/assets/resources/ui/navigation/info.png.meta index 90579cad..dfd9f5a3 100644 --- a/assets/resources/ui/navigation/info.png.meta +++ b/assets/resources/ui/navigation/info.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 34, - "height": 90, - "rawWidth": 34, - "rawHeight": 90, + "width": 31, + "height": 81, + "rawWidth": 31, + "rawHeight": 81, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -17, - -45, + -15.5, + -40.5, 0, - 17, - -45, + 15.5, + -40.5, 0, - -17, - 45, + -15.5, + 40.5, 0, - 17, - 45, + 15.5, + 40.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 90, - 34, - 90, + 81, + 31, + 81, 0, 0, - 34, + 31, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -17, - -45, + -15.5, + -40.5, 0 ], "maxPos": [ - 17, - 45, + 15.5, + 40.5, 0 ] }, diff --git a/assets/resources/ui/navigation/info_unfocus.png b/assets/resources/ui/navigation/info_unfocus.png index cdf9b39f..e1ce36a1 100644 Binary files a/assets/resources/ui/navigation/info_unfocus.png and b/assets/resources/ui/navigation/info_unfocus.png differ diff --git a/assets/resources/ui/navigation/info_unfocus.png.meta b/assets/resources/ui/navigation/info_unfocus.png.meta index 6ee9f077..59ec5853 100644 --- a/assets/resources/ui/navigation/info_unfocus.png.meta +++ b/assets/resources/ui/navigation/info_unfocus.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 34, - "height": 90, - "rawWidth": 34, - "rawHeight": 90, + "width": 31, + "height": 81, + "rawWidth": 31, + "rawHeight": 81, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -17, - -45, + -15.5, + -40.5, 0, - 17, - -45, + 15.5, + -40.5, 0, - -17, - 45, + -15.5, + 40.5, 0, - 17, - 45, + 15.5, + 40.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 90, - 34, - 90, + 81, + 31, + 81, 0, 0, - 34, + 31, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -17, - -45, + -15.5, + -40.5, 0 ], "maxPos": [ - 17, - 45, + 15.5, + 40.5, 0 ] }, diff --git a/assets/resources/ui/navigation/personal.png b/assets/resources/ui/navigation/personal.png index d308d7a0..b1940e22 100644 Binary files a/assets/resources/ui/navigation/personal.png and b/assets/resources/ui/navigation/personal.png differ diff --git a/assets/resources/ui/navigation/personal.png.meta b/assets/resources/ui/navigation/personal.png.meta index 8de99251..423b28fa 100644 --- a/assets/resources/ui/navigation/personal.png.meta +++ b/assets/resources/ui/navigation/personal.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 65, - "height": 79, - "rawWidth": 65, - "rawHeight": 79, + "width": 58, + "height": 70, + "rawWidth": 58, + "rawHeight": 70, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -32.5, - -39.5, + -29, + -35, 0, - 32.5, - -39.5, + 29, + -35, 0, - -32.5, - 39.5, + -29, + 35, 0, - 32.5, - 39.5, + 29, + 35, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 79, - 65, - 79, + 70, + 58, + 70, 0, 0, - 65, + 58, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -32.5, - -39.5, + -29, + -35, 0 ], "maxPos": [ - 32.5, - 39.5, + 29, + 35, 0 ] }, diff --git a/assets/resources/ui/navigation/personal_unfocus.png b/assets/resources/ui/navigation/personal_unfocus.png index 27585fe8..3d48b3fb 100644 Binary files a/assets/resources/ui/navigation/personal_unfocus.png and b/assets/resources/ui/navigation/personal_unfocus.png differ diff --git a/assets/resources/ui/navigation/personal_unfocus.png.meta b/assets/resources/ui/navigation/personal_unfocus.png.meta index 924d00cc..6400d9c6 100644 --- a/assets/resources/ui/navigation/personal_unfocus.png.meta +++ b/assets/resources/ui/navigation/personal_unfocus.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 65, - "height": 79, - "rawWidth": 65, - "rawHeight": 79, + "width": 58, + "height": 70, + "rawWidth": 58, + "rawHeight": 70, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -32.5, - -39.5, + -29, + -35, 0, - 32.5, - -39.5, + 29, + -35, 0, - -32.5, - 39.5, + -29, + 35, 0, - 32.5, - 39.5, + 29, + 35, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 79, - 65, - 79, + 70, + 58, + 70, 0, 0, - 65, + 58, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -32.5, - -39.5, + -29, + -35, 0 ], "maxPos": [ - 32.5, - 39.5, + 29, + 35, 0 ] }, diff --git a/assets/resources/ui/navigation/矩形 3.png b/assets/resources/ui/navigation/矩形 3.png new file mode 100644 index 00000000..c0d9a7d6 Binary files /dev/null and b/assets/resources/ui/navigation/矩形 3.png differ diff --git a/assets/resources/ui/navigation/矩形 3.png.meta b/assets/resources/ui/navigation/矩形 3.png.meta new file mode 100644 index 00000000..1cd5d762 --- /dev/null +++ b/assets/resources/ui/navigation/矩形 3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "06d82c9b-5158-4296-97bb-2be0cdf5c924", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "06d82c9b-5158-4296-97bb-2be0cdf5c924@6c48a", + "displayName": "矩形 3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "06d82c9b-5158-4296-97bb-2be0cdf5c924", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "06d82c9b-5158-4296-97bb-2be0cdf5c924@f9941", + "displayName": "矩形 3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 237, + "rawWidth": 1080, + "rawHeight": 237, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -118.5, + 0, + 540, + -118.5, + 0, + -540, + 118.5, + 0, + 540, + 118.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 237, + 1080, + 237, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -118.5, + 0 + ], + "maxPos": [ + 540, + 118.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "06d82c9b-5158-4296-97bb-2be0cdf5c924@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "06d82c9b-5158-4296-97bb-2be0cdf5c924@6c48a" + } +} diff --git a/assets/resources/ui/shop/cash/图层-52.png b/assets/resources/ui/shop/cash/1001.png similarity index 100% rename from assets/resources/ui/shop/cash/图层-52.png rename to assets/resources/ui/shop/cash/1001.png diff --git a/assets/resources/ui/shop/cash/图层-52.png.meta b/assets/resources/ui/shop/cash/1001.png.meta similarity index 97% rename from assets/resources/ui/shop/cash/图层-52.png.meta rename to assets/resources/ui/shop/cash/1001.png.meta index e6cdc070..3afc1921 100644 --- a/assets/resources/ui/shop/cash/图层-52.png.meta +++ b/assets/resources/ui/shop/cash/1001.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "ebf57308-2144-42ce-ba57-52fb092986b4@6c48a", - "displayName": "图层-52", + "displayName": "1001", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "ebf57308-2144-42ce-ba57-52fb092986b4@f9941", - "displayName": "图层-52", + "displayName": "1001", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/cash/图层-50.png b/assets/resources/ui/shop/cash/1002.png similarity index 100% rename from assets/resources/ui/shop/cash/图层-50.png rename to assets/resources/ui/shop/cash/1002.png diff --git a/assets/resources/ui/shop/cash/图层-50.png.meta b/assets/resources/ui/shop/cash/1002.png.meta similarity index 97% rename from assets/resources/ui/shop/cash/图层-50.png.meta rename to assets/resources/ui/shop/cash/1002.png.meta index d9850614..3d19ed18 100644 --- a/assets/resources/ui/shop/cash/图层-50.png.meta +++ b/assets/resources/ui/shop/cash/1002.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@6c48a", - "displayName": "图层-50", + "displayName": "1002", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "c8cc392c-f70c-4864-a2aa-bc3ef53d83db@f9941", - "displayName": "图层-50", + "displayName": "1002", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/cash/图层-53.png b/assets/resources/ui/shop/cash/1003.png similarity index 100% rename from assets/resources/ui/shop/cash/图层-53.png rename to assets/resources/ui/shop/cash/1003.png diff --git a/assets/resources/ui/shop/cash/图层-53.png.meta b/assets/resources/ui/shop/cash/1003.png.meta similarity index 97% rename from assets/resources/ui/shop/cash/图层-53.png.meta rename to assets/resources/ui/shop/cash/1003.png.meta index d9ee2d67..b9b486f3 100644 --- a/assets/resources/ui/shop/cash/图层-53.png.meta +++ b/assets/resources/ui/shop/cash/1003.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@6c48a", - "displayName": "图层-53", + "displayName": "1003", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "ec4884a1-30e9-4d4e-9f69-7365bfd609ba@f9941", - "displayName": "图层-53", + "displayName": "1003", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/cash/图层-54.png b/assets/resources/ui/shop/cash/1004.png similarity index 100% rename from assets/resources/ui/shop/cash/图层-54.png rename to assets/resources/ui/shop/cash/1004.png diff --git a/assets/resources/ui/shop/cash/图层-54.png.meta b/assets/resources/ui/shop/cash/1004.png.meta similarity index 97% rename from assets/resources/ui/shop/cash/图层-54.png.meta rename to assets/resources/ui/shop/cash/1004.png.meta index 9a31a9fe..d321c5eb 100644 --- a/assets/resources/ui/shop/cash/图层-54.png.meta +++ b/assets/resources/ui/shop/cash/1004.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "102a42a1-679d-4153-89e4-816162930797@6c48a", - "displayName": "图层-54", + "displayName": "1004", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "102a42a1-679d-4153-89e4-816162930797@f9941", - "displayName": "图层-54", + "displayName": "1004", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/cash/图层-49.png b/assets/resources/ui/shop/cash/1005.png similarity index 100% rename from assets/resources/ui/shop/cash/图层-49.png rename to assets/resources/ui/shop/cash/1005.png diff --git a/assets/resources/ui/shop/cash/图层-49.png.meta b/assets/resources/ui/shop/cash/1005.png.meta similarity index 97% rename from assets/resources/ui/shop/cash/图层-49.png.meta rename to assets/resources/ui/shop/cash/1005.png.meta index 2e7d688e..39d32002 100644 --- a/assets/resources/ui/shop/cash/图层-49.png.meta +++ b/assets/resources/ui/shop/cash/1005.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "6a555064-ee27-4a70-a836-0f997bf93f1e@6c48a", - "displayName": "图层-49", + "displayName": "1005", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "6a555064-ee27-4a70-a836-0f997bf93f1e@f9941", - "displayName": "图层-49", + "displayName": "1005", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/cash/组-22.png b/assets/resources/ui/shop/cash/1006.png similarity index 100% rename from assets/resources/ui/shop/cash/组-22.png rename to assets/resources/ui/shop/cash/1006.png diff --git a/assets/resources/ui/shop/cash/组-22.png.meta b/assets/resources/ui/shop/cash/1006.png.meta similarity index 97% rename from assets/resources/ui/shop/cash/组-22.png.meta rename to assets/resources/ui/shop/cash/1006.png.meta index 9b76d49f..c8c03d0d 100644 --- a/assets/resources/ui/shop/cash/组-22.png.meta +++ b/assets/resources/ui/shop/cash/1006.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@6c48a", - "displayName": "组-22", + "displayName": "1006", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "e3e23dac-6be1-46fb-b7c4-fcb1adaee4aa@f9941", - "displayName": "组-22", + "displayName": "1006", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/coin.meta b/assets/resources/ui/shop/coin.meta new file mode 100644 index 00000000..79e5fabf --- /dev/null +++ b/assets/resources/ui/shop/coin.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "8073608a-16a6-410e-883b-9afcdca3c6b1", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/ui/shop/coin/2001.png b/assets/resources/ui/shop/coin/2001.png new file mode 100644 index 00000000..2178c2f2 Binary files /dev/null and b/assets/resources/ui/shop/coin/2001.png differ diff --git a/assets/resources/ui/shop/coin/2001.png.meta b/assets/resources/ui/shop/coin/2001.png.meta new file mode 100644 index 00000000..cb3dfaa9 --- /dev/null +++ b/assets/resources/ui/shop/coin/2001.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@6c48a", + "displayName": "2001", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@f9941", + "displayName": "2001", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 113, + "height": 131, + "rawWidth": 113, + "rawHeight": 131, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -56.5, + -65.5, + 0, + 56.5, + -65.5, + 0, + -56.5, + 65.5, + 0, + 56.5, + 65.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 131, + 113, + 131, + 0, + 0, + 113, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -56.5, + -65.5, + 0 + ], + "maxPos": [ + 56.5, + 65.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "6a5c6f1e-d197-4f9c-8113-6732295ebf8e@6c48a" + } +} diff --git a/assets/resources/ui/shop/coin/2002.png b/assets/resources/ui/shop/coin/2002.png new file mode 100644 index 00000000..315068c0 Binary files /dev/null and b/assets/resources/ui/shop/coin/2002.png differ diff --git a/assets/resources/ui/shop/coin/2002.png.meta b/assets/resources/ui/shop/coin/2002.png.meta new file mode 100644 index 00000000..b3e0d526 --- /dev/null +++ b/assets/resources/ui/shop/coin/2002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "d75397cc-79ea-4678-9387-fec0502ae091", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "d75397cc-79ea-4678-9387-fec0502ae091@6c48a", + "displayName": "2002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "d75397cc-79ea-4678-9387-fec0502ae091", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "d75397cc-79ea-4678-9387-fec0502ae091@f9941", + "displayName": "2002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 172, + "height": 151, + "rawWidth": 172, + "rawHeight": 151, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -86, + -75.5, + 0, + 86, + -75.5, + 0, + -86, + 75.5, + 0, + 86, + 75.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 151, + 172, + 151, + 0, + 0, + 172, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -86, + -75.5, + 0 + ], + "maxPos": [ + 86, + 75.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "d75397cc-79ea-4678-9387-fec0502ae091@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "d75397cc-79ea-4678-9387-fec0502ae091@6c48a" + } +} diff --git a/assets/resources/ui/shop/coin/2003.png b/assets/resources/ui/shop/coin/2003.png new file mode 100644 index 00000000..bb65af70 Binary files /dev/null and b/assets/resources/ui/shop/coin/2003.png differ diff --git a/assets/resources/ui/shop/coin/2003.png.meta b/assets/resources/ui/shop/coin/2003.png.meta new file mode 100644 index 00000000..621328e5 --- /dev/null +++ b/assets/resources/ui/shop/coin/2003.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f944a7b5-bc82-484f-a5e9-904fcb317707", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f944a7b5-bc82-484f-a5e9-904fcb317707@6c48a", + "displayName": "2003", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f944a7b5-bc82-484f-a5e9-904fcb317707", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f944a7b5-bc82-484f-a5e9-904fcb317707@f9941", + "displayName": "2003", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 203, + "height": 158, + "rawWidth": 203, + "rawHeight": 158, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -101.5, + -79, + 0, + 101.5, + -79, + 0, + -101.5, + 79, + 0, + 101.5, + 79, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 158, + 203, + 158, + 0, + 0, + 203, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -101.5, + -79, + 0 + ], + "maxPos": [ + 101.5, + 79, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f944a7b5-bc82-484f-a5e9-904fcb317707@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f944a7b5-bc82-484f-a5e9-904fcb317707@6c48a" + } +} diff --git a/assets/resources/ui/shop/coin/2004.png b/assets/resources/ui/shop/coin/2004.png new file mode 100644 index 00000000..e773f159 Binary files /dev/null and b/assets/resources/ui/shop/coin/2004.png differ diff --git a/assets/resources/ui/shop/coin/2004.png.meta b/assets/resources/ui/shop/coin/2004.png.meta new file mode 100644 index 00000000..7c579f46 --- /dev/null +++ b/assets/resources/ui/shop/coin/2004.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1d7c6978-98a0-47a4-a62b-9f31a7d07617", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@6c48a", + "displayName": "2004", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1d7c6978-98a0-47a4-a62b-9f31a7d07617", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@f9941", + "displayName": "2004", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 244, + "height": 244, + "rawWidth": 244, + "rawHeight": 244, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -122, + -122, + 0, + 122, + -122, + 0, + -122, + 122, + 0, + 122, + 122, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 244, + 244, + 244, + 0, + 0, + 244, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -122, + -122, + 0 + ], + "maxPos": [ + 122, + 122, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1d7c6978-98a0-47a4-a62b-9f31a7d07617@6c48a" + } +} diff --git a/assets/resources/ui/shop/coin/2005.png b/assets/resources/ui/shop/coin/2005.png new file mode 100644 index 00000000..39bf9174 Binary files /dev/null and b/assets/resources/ui/shop/coin/2005.png differ diff --git a/assets/resources/ui/shop/coin/2005.png.meta b/assets/resources/ui/shop/coin/2005.png.meta new file mode 100644 index 00000000..1ee8a5e2 --- /dev/null +++ b/assets/resources/ui/shop/coin/2005.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c41d8e92-69ca-4705-a43c-b134a367875e", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c41d8e92-69ca-4705-a43c-b134a367875e@6c48a", + "displayName": "2005", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c41d8e92-69ca-4705-a43c-b134a367875e", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c41d8e92-69ca-4705-a43c-b134a367875e@f9941", + "displayName": "2005", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 257, + "height": 198, + "rawWidth": 257, + "rawHeight": 198, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -128.5, + -99, + 0, + 128.5, + -99, + 0, + -128.5, + 99, + 0, + 128.5, + 99, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 198, + 257, + 198, + 0, + 0, + 257, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -128.5, + -99, + 0 + ], + "maxPos": [ + 128.5, + 99, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c41d8e92-69ca-4705-a43c-b134a367875e@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c41d8e92-69ca-4705-a43c-b134a367875e@6c48a" + } +} diff --git a/assets/resources/ui/shop/coin/2006.png b/assets/resources/ui/shop/coin/2006.png new file mode 100644 index 00000000..7cc6695a Binary files /dev/null and b/assets/resources/ui/shop/coin/2006.png differ diff --git a/assets/resources/ui/shop/coin/2006.png.meta b/assets/resources/ui/shop/coin/2006.png.meta new file mode 100644 index 00000000..269253a0 --- /dev/null +++ b/assets/resources/ui/shop/coin/2006.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "c1263d7c-a965-4ec8-a65a-bf514532b5d0", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@6c48a", + "displayName": "2006", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "c1263d7c-a965-4ec8-a65a-bf514532b5d0", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@f9941", + "displayName": "2006", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 239, + "height": 208, + "rawWidth": 239, + "rawHeight": 208, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -119.5, + -104, + 0, + 119.5, + -104, + 0, + -119.5, + 104, + 0, + 119.5, + 104, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 208, + 239, + 208, + 0, + 0, + 239, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -119.5, + -104, + 0 + ], + "maxPos": [ + 119.5, + 104, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "c1263d7c-a965-4ec8-a65a-bf514532b5d0@6c48a" + } +} diff --git a/assets/resources/ui/shop/diamond/图层-592.png b/assets/resources/ui/shop/diamond/1001.png similarity index 100% rename from assets/resources/ui/shop/diamond/图层-592.png rename to assets/resources/ui/shop/diamond/1001.png diff --git a/assets/resources/ui/shop/diamond/图层-592.png.meta b/assets/resources/ui/shop/diamond/1001.png.meta similarity index 97% rename from assets/resources/ui/shop/diamond/图层-592.png.meta rename to assets/resources/ui/shop/diamond/1001.png.meta index 9b763305..f0679caf 100644 --- a/assets/resources/ui/shop/diamond/图层-592.png.meta +++ b/assets/resources/ui/shop/diamond/1001.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@6c48a", - "displayName": "图层-592", + "displayName": "1001", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "9b7d449d-fbd3-48d8-b7f9-03ac9bd07f61@f9941", - "displayName": "图层-592", + "displayName": "1001", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/diamond/图层-58-拷贝-5.png b/assets/resources/ui/shop/diamond/1002.png similarity index 100% rename from assets/resources/ui/shop/diamond/图层-58-拷贝-5.png rename to assets/resources/ui/shop/diamond/1002.png diff --git a/assets/resources/ui/shop/diamond/图层-58-拷贝-5.png.meta b/assets/resources/ui/shop/diamond/1002.png.meta similarity index 97% rename from assets/resources/ui/shop/diamond/图层-58-拷贝-5.png.meta rename to assets/resources/ui/shop/diamond/1002.png.meta index 11f57a37..489cad28 100644 --- a/assets/resources/ui/shop/diamond/图层-58-拷贝-5.png.meta +++ b/assets/resources/ui/shop/diamond/1002.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@6c48a", - "displayName": "图层-58-拷贝-5", + "displayName": "1002", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "8b6bf251-99e4-482d-a18c-886e1c1eb4e3@f9941", - "displayName": "图层-58-拷贝-5", + "displayName": "1002", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/diamond/组-23.png b/assets/resources/ui/shop/diamond/1003.png similarity index 100% rename from assets/resources/ui/shop/diamond/组-23.png rename to assets/resources/ui/shop/diamond/1003.png diff --git a/assets/resources/ui/shop/diamond/组-23.png.meta b/assets/resources/ui/shop/diamond/1003.png.meta similarity index 97% rename from assets/resources/ui/shop/diamond/组-23.png.meta rename to assets/resources/ui/shop/diamond/1003.png.meta index 9762fe87..f3af10bc 100644 --- a/assets/resources/ui/shop/diamond/组-23.png.meta +++ b/assets/resources/ui/shop/diamond/1003.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "50eabd8e-01a9-487a-8a37-bc323d466a0b@6c48a", - "displayName": "组-23", + "displayName": "1003", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "50eabd8e-01a9-487a-8a37-bc323d466a0b@f9941", - "displayName": "组-23", + "displayName": "1003", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/diamond/图层-57.png b/assets/resources/ui/shop/diamond/1004.png similarity index 100% rename from assets/resources/ui/shop/diamond/图层-57.png rename to assets/resources/ui/shop/diamond/1004.png diff --git a/assets/resources/ui/shop/diamond/图层-57.png.meta b/assets/resources/ui/shop/diamond/1004.png.meta similarity index 97% rename from assets/resources/ui/shop/diamond/图层-57.png.meta rename to assets/resources/ui/shop/diamond/1004.png.meta index cc34e8ae..425c7944 100644 --- a/assets/resources/ui/shop/diamond/图层-57.png.meta +++ b/assets/resources/ui/shop/diamond/1004.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@6c48a", - "displayName": "图层-57", + "displayName": "1004", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "18f505b9-c8f4-4f58-85a0-9056a181e1ec@f9941", - "displayName": "图层-57", + "displayName": "1004", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/diamond/组-24.png b/assets/resources/ui/shop/diamond/1005.png similarity index 100% rename from assets/resources/ui/shop/diamond/组-24.png rename to assets/resources/ui/shop/diamond/1005.png diff --git a/assets/resources/ui/shop/diamond/组-24.png.meta b/assets/resources/ui/shop/diamond/1005.png.meta similarity index 97% rename from assets/resources/ui/shop/diamond/组-24.png.meta rename to assets/resources/ui/shop/diamond/1005.png.meta index 16d8a0db..e0f501c0 100644 --- a/assets/resources/ui/shop/diamond/组-24.png.meta +++ b/assets/resources/ui/shop/diamond/1005.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "f5bd194a-5764-4365-a873-f1b266f73164@6c48a", - "displayName": "组-24", + "displayName": "1005", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "f5bd194a-5764-4365-a873-f1b266f73164@f9941", - "displayName": "组-24", + "displayName": "1005", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/diamond/图层-56.png b/assets/resources/ui/shop/diamond/1006.png similarity index 100% rename from assets/resources/ui/shop/diamond/图层-56.png rename to assets/resources/ui/shop/diamond/1006.png diff --git a/assets/resources/ui/shop/diamond/图层-56.png.meta b/assets/resources/ui/shop/diamond/1006.png.meta similarity index 97% rename from assets/resources/ui/shop/diamond/图层-56.png.meta rename to assets/resources/ui/shop/diamond/1006.png.meta index b83258fe..b3f9d661 100644 --- a/assets/resources/ui/shop/diamond/图层-56.png.meta +++ b/assets/resources/ui/shop/diamond/1006.png.meta @@ -11,7 +11,7 @@ "6c48a": { "importer": "texture", "uuid": "fa89314f-f305-4cbd-90b4-eba6226279eb@6c48a", - "displayName": "图层-56", + "displayName": "1006", "id": "6c48a", "name": "texture", "userData": { @@ -35,7 +35,7 @@ "f9941": { "importer": "sprite-frame", "uuid": "fa89314f-f305-4cbd-90b4-eba6226279eb@f9941", - "displayName": "图层-56", + "displayName": "1006", "id": "f9941", "name": "spriteFrame", "userData": { diff --git a/assets/resources/ui/shop/矩118.png b/assets/resources/ui/shop/矩118.png deleted file mode 100644 index ce967f6d..00000000 Binary files a/assets/resources/ui/shop/矩118.png and /dev/null differ diff --git a/assets/resources/ui/shop/矩形 12-1.png b/assets/resources/ui/shop/矩形 12-1.png new file mode 100644 index 00000000..0ee26a8e Binary files /dev/null and b/assets/resources/ui/shop/矩形 12-1.png differ diff --git a/assets/resources/ui/shop/矩形 12-1.png.meta b/assets/resources/ui/shop/矩形 12-1.png.meta new file mode 100644 index 00000000..06373ea8 --- /dev/null +++ b/assets/resources/ui/shop/矩形 12-1.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "362515cf-8079-4f8c-a3e7-29e89360a329", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "362515cf-8079-4f8c-a3e7-29e89360a329@6c48a", + "displayName": "矩形 12-1", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "362515cf-8079-4f8c-a3e7-29e89360a329", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "362515cf-8079-4f8c-a3e7-29e89360a329@f9941", + "displayName": "矩形 12-1", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 217, + "height": 71, + "rawWidth": 217, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -108.5, + -35.5, + 0, + 108.5, + -35.5, + 0, + -108.5, + 35.5, + 0, + 108.5, + 35.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 71, + 217, + 71, + 0, + 0, + 217, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -108.5, + -35.5, + 0 + ], + "maxPos": [ + 108.5, + 35.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "362515cf-8079-4f8c-a3e7-29e89360a329@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "362515cf-8079-4f8c-a3e7-29e89360a329@6c48a" + } +} diff --git a/assets/resources/ui/shop/矩形 12.png b/assets/resources/ui/shop/矩形 12.png new file mode 100644 index 00000000..eb328d5b Binary files /dev/null and b/assets/resources/ui/shop/矩形 12.png differ diff --git a/assets/resources/ui/shop/矩形 12.png.meta b/assets/resources/ui/shop/矩形 12.png.meta new file mode 100644 index 00000000..ed43cf8e --- /dev/null +++ b/assets/resources/ui/shop/矩形 12.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "66fb67c4-7251-4a4b-ae66-2195b32565de", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "66fb67c4-7251-4a4b-ae66-2195b32565de@6c48a", + "displayName": "矩形 12", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "66fb67c4-7251-4a4b-ae66-2195b32565de", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "66fb67c4-7251-4a4b-ae66-2195b32565de@f9941", + "displayName": "矩形 12", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 217, + "height": 71, + "rawWidth": 217, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -108.5, + -35.5, + 0, + 108.5, + -35.5, + 0, + -108.5, + 35.5, + 0, + 108.5, + 35.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 71, + 217, + 71, + 0, + 0, + 217, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -108.5, + -35.5, + 0 + ], + "maxPos": [ + 108.5, + 35.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "66fb67c4-7251-4a4b-ae66-2195b32565de@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "66fb67c4-7251-4a4b-ae66-2195b32565de@6c48a" + } +} diff --git a/assets/resources/ui/shop/矩形 18.png b/assets/resources/ui/shop/矩形 18.png new file mode 100644 index 00000000..fa66831b Binary files /dev/null and b/assets/resources/ui/shop/矩形 18.png differ diff --git a/assets/resources/ui/shop/矩形 18.png.meta b/assets/resources/ui/shop/矩形 18.png.meta new file mode 100644 index 00000000..71b4de19 --- /dev/null +++ b/assets/resources/ui/shop/矩形 18.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1eec33bd-a22a-4731-8426-943f49050b20", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1eec33bd-a22a-4731-8426-943f49050b20@6c48a", + "displayName": "矩形 18", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1eec33bd-a22a-4731-8426-943f49050b20", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "1eec33bd-a22a-4731-8426-943f49050b20@f9941", + "displayName": "矩形 18", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 332, + "height": 91, + "rawWidth": 332, + "rawHeight": 91, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -166, + -45.5, + 0, + 166, + -45.5, + 0, + -166, + 45.5, + 0, + 166, + 45.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 91, + 332, + 91, + 0, + 0, + 332, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -166, + -45.5, + 0 + ], + "maxPos": [ + 166, + 45.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1eec33bd-a22a-4731-8426-943f49050b20@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1eec33bd-a22a-4731-8426-943f49050b20@6c48a" + } +} diff --git a/assets/resources/ui/shop/矩形 8.png b/assets/resources/ui/shop/矩形 8.png index d1a79950..fe553947 100644 Binary files a/assets/resources/ui/shop/矩形 8.png and b/assets/resources/ui/shop/矩形 8.png differ diff --git a/assets/resources/ui/shop/矩形 8.png.meta b/assets/resources/ui/shop/矩形 8.png.meta index bf5f250b..051c9893 100644 --- a/assets/resources/ui/shop/矩形 8.png.meta +++ b/assets/resources/ui/shop/矩形 8.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 361, - "height": 108, - "rawWidth": 361, - "rawHeight": 108, + "width": 333, + "height": 91, + "rawWidth": 333, + "rawHeight": 91, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -180.5, - -54, + -166.5, + -45.5, 0, - 180.5, - -54, + 166.5, + -45.5, 0, - -180.5, - 54, + -166.5, + 45.5, 0, - 180.5, - 54, + 166.5, + 45.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 108, - 361, - 108, + 91, + 333, + 91, 0, 0, - 361, + 333, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -180.5, - -54, + -166.5, + -45.5, 0 ], "maxPos": [ - 180.5, - 54, + 166.5, + 45.5, 0 ] }, diff --git a/assets/resources/ui/shop/组 16.png b/assets/resources/ui/shop/组 16.png index a16f9db1..c1849186 100644 Binary files a/assets/resources/ui/shop/组 16.png and b/assets/resources/ui/shop/组 16.png differ diff --git a/assets/resources/ui/shop/组 16.png.meta b/assets/resources/ui/shop/组 16.png.meta index 870976aa..bc5a120a 100644 --- a/assets/resources/ui/shop/组 16.png.meta +++ b/assets/resources/ui/shop/组 16.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 325, - "height": 411, - "rawWidth": 325, - "rawHeight": 411, + "width": 310, + "height": 369, + "rawWidth": 310, + "rawHeight": 369, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -162.5, - -205.5, + -155, + -184.5, 0, - 162.5, - -205.5, + 155, + -184.5, 0, - -162.5, - 205.5, + -155, + 184.5, 0, - 162.5, - 205.5, + 155, + 184.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 411, - 325, - 411, + 369, + 310, + 369, 0, 0, - 325, + 310, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -162.5, - -205.5, + -155, + -184.5, 0 ], "maxPos": [ - 162.5, - 205.5, + 155, + 184.5, 0 ] }, diff --git a/assets/resources/ui/theme/图层 61.png b/assets/resources/ui/theme/图层 61.png new file mode 100644 index 00000000..bedb4f35 Binary files /dev/null and b/assets/resources/ui/theme/图层 61.png differ diff --git a/assets/resources/ui/theme/图层 61.png.meta b/assets/resources/ui/theme/图层 61.png.meta new file mode 100644 index 00000000..971cc32c --- /dev/null +++ b/assets/resources/ui/theme/图层 61.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "73d2e328-4c47-42e2-83e1-07967b503a51", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "73d2e328-4c47-42e2-83e1-07967b503a51@6c48a", + "displayName": "图层 61", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "73d2e328-4c47-42e2-83e1-07967b503a51", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "73d2e328-4c47-42e2-83e1-07967b503a51@f9941", + "displayName": "图层 61", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 1080, + "height": 2340, + "rawWidth": 1080, + "rawHeight": 2340, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -540, + -1170, + 0, + 540, + -1170, + 0, + -540, + 1170, + 0, + 540, + 1170, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 2340, + 1080, + 2340, + 0, + 0, + 1080, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -540, + -1170, + 0 + ], + "maxPos": [ + 540, + 1170, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "73d2e328-4c47-42e2-83e1-07967b503a51@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "73d2e328-4c47-42e2-83e1-07967b503a51@6c48a" + } +} diff --git a/assets/resources/ui/theme/矩形 1 拷贝 5.png b/assets/resources/ui/theme/矩形 1 拷贝 5.png new file mode 100644 index 00000000..bef72335 Binary files /dev/null and b/assets/resources/ui/theme/矩形 1 拷贝 5.png differ diff --git a/assets/resources/ui/theme/矩形 1 拷贝 5.png.meta b/assets/resources/ui/theme/矩形 1 拷贝 5.png.meta new file mode 100644 index 00000000..8bc289cc --- /dev/null +++ b/assets/resources/ui/theme/矩形 1 拷贝 5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "901c2255-e21a-4a78-8f59-e69c4c7771f9", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "901c2255-e21a-4a78-8f59-e69c4c7771f9@6c48a", + "displayName": "矩形 1 拷贝 5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "901c2255-e21a-4a78-8f59-e69c4c7771f9", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "901c2255-e21a-4a78-8f59-e69c4c7771f9@f9941", + "displayName": "矩形 1 拷贝 5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 212, + "height": 80, + "rawWidth": 212, + "rawHeight": 80, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 62, + "borderRight": 62, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -106, + -40, + 0, + 106, + -40, + 0, + -106, + 40, + 0, + 106, + 40, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 80, + 212, + 80, + 0, + 0, + 212, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -106, + -40, + 0 + ], + "maxPos": [ + 106, + 40, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "901c2255-e21a-4a78-8f59-e69c4c7771f9@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "901c2255-e21a-4a78-8f59-e69c4c7771f9@6c48a" + } +} diff --git a/assets/resources/ui/theme/组 16 拷贝.png b/assets/resources/ui/theme/组 16 拷贝.png index a05c72f4..bdfd3db9 100644 Binary files a/assets/resources/ui/theme/组 16 拷贝.png and b/assets/resources/ui/theme/组 16 拷贝.png differ diff --git a/assets/resources/ui/theme/组 16 拷贝.png.meta b/assets/resources/ui/theme/组 16 拷贝.png.meta index f2ba854c..cb41efce 100644 --- a/assets/resources/ui/theme/组 16 拷贝.png.meta +++ b/assets/resources/ui/theme/组 16 拷贝.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 966, - "height": 442, - "rawWidth": 966, - "rawHeight": 442, + "width": 968, + "height": 349, + "rawWidth": 968, + "rawHeight": 349, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -483, - -221, + -484, + -174.5, 0, - 483, - -221, + 484, + -174.5, 0, - -483, - 221, + -484, + 174.5, 0, - 483, - 221, + 484, + 174.5, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 442, - 966, - 442, + 349, + 968, + 349, 0, 0, - 966, + 968, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -483, - -221, + -484, + -174.5, 0 ], "maxPos": [ - 483, - 221, + 484, + 174.5, 0 ] }, diff --git a/assets/resources/ui/theme/组 5 拷贝 17.png b/assets/resources/ui/theme/组 5 拷贝 17.png new file mode 100644 index 00000000..a15732cc Binary files /dev/null and b/assets/resources/ui/theme/组 5 拷贝 17.png differ diff --git a/assets/resources/ui/theme/组 5 拷贝 17.png.meta b/assets/resources/ui/theme/组 5 拷贝 17.png.meta new file mode 100644 index 00000000..42a385cf --- /dev/null +++ b/assets/resources/ui/theme/组 5 拷贝 17.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f2c34361-263d-487a-9a9e-70fa78fc7893", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f2c34361-263d-487a-9a9e-70fa78fc7893@6c48a", + "displayName": "组 5 拷贝 17", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f2c34361-263d-487a-9a9e-70fa78fc7893", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "f2c34361-263d-487a-9a9e-70fa78fc7893@f9941", + "displayName": "组 5 拷贝 17", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 444, + "height": 330, + "rawWidth": 444, + "rawHeight": 330, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -222, + -165, + 0, + 222, + -165, + 0, + -222, + 165, + 0, + 222, + 165, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 330, + 444, + 330, + 0, + 0, + 444, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -222, + -165, + 0 + ], + "maxPos": [ + 222, + 165, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f2c34361-263d-487a-9a9e-70fa78fc7893@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f2c34361-263d-487a-9a9e-70fa78fc7893@6c48a" + } +} diff --git a/assets/resources/ui/web3pop.meta b/assets/resources/ui/web3pop.meta new file mode 100644 index 00000000..4d259382 --- /dev/null +++ b/assets/resources/ui/web3pop.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "d3f5f57d-e138-4610-868c-5c210f675649", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/ui/web3pop/Solana blockchain platform - Wikipedia.png b/assets/resources/ui/web3pop/Solana blockchain platform - Wikipedia.png new file mode 100644 index 00000000..914179d3 Binary files /dev/null and b/assets/resources/ui/web3pop/Solana blockchain platform - Wikipedia.png differ diff --git a/assets/resources/ui/web3pop/Solana blockchain platform - Wikipedia.png.meta b/assets/resources/ui/web3pop/Solana blockchain platform - Wikipedia.png.meta new file mode 100644 index 00000000..68494694 --- /dev/null +++ b/assets/resources/ui/web3pop/Solana blockchain platform - Wikipedia.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "51d2ab04-4a3e-4872-b41a-c3b752734c3c", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "51d2ab04-4a3e-4872-b41a-c3b752734c3c@6c48a", + "displayName": "Solana blockchain platform - Wikipedia", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "51d2ab04-4a3e-4872-b41a-c3b752734c3c", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "51d2ab04-4a3e-4872-b41a-c3b752734c3c@f9941", + "displayName": "Solana blockchain platform - Wikipedia", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 70, + "height": 70, + "rawWidth": 70, + "rawHeight": 70, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -35, + -35, + 0, + 35, + -35, + 0, + -35, + 35, + 0, + 35, + 35, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 70, + 70, + 70, + 0, + 0, + 70, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -35, + -35, + 0 + ], + "maxPos": [ + 35, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "51d2ab04-4a3e-4872-b41a-c3b752734c3c@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "51d2ab04-4a3e-4872-b41a-c3b752734c3c@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/X.png b/assets/resources/ui/web3pop/X.png new file mode 100644 index 00000000..9cece427 Binary files /dev/null and b/assets/resources/ui/web3pop/X.png differ diff --git a/assets/resources/ui/web3pop/X.png.meta b/assets/resources/ui/web3pop/X.png.meta new file mode 100644 index 00000000..43e8e7d6 --- /dev/null +++ b/assets/resources/ui/web3pop/X.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "84898dc5-6599-491a-825f-91354b89a58f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "84898dc5-6599-491a-825f-91354b89a58f@6c48a", + "displayName": "X", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "84898dc5-6599-491a-825f-91354b89a58f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "84898dc5-6599-491a-825f-91354b89a58f@f9941", + "displayName": "X", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 56, + "height": 56, + "rawWidth": 56, + "rawHeight": 56, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28, + -28, + 0, + 28, + -28, + 0, + -28, + 28, + 0, + 28, + 28, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 56, + 56, + 56, + 0, + 0, + 56, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -28, + -28, + 0 + ], + "maxPos": [ + 28, + 28, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "84898dc5-6599-491a-825f-91354b89a58f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "84898dc5-6599-491a-825f-91354b89a58f@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/erweima.png b/assets/resources/ui/web3pop/erweima.png new file mode 100644 index 00000000..f73b69ff Binary files /dev/null and b/assets/resources/ui/web3pop/erweima.png differ diff --git a/assets/resources/ui/web3pop/erweima.png.meta b/assets/resources/ui/web3pop/erweima.png.meta new file mode 100644 index 00000000..abb208e8 --- /dev/null +++ b/assets/resources/ui/web3pop/erweima.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a9cc1220-5e62-4d8d-9dd2-7c323d863993", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a9cc1220-5e62-4d8d-9dd2-7c323d863993@6c48a", + "displayName": "erweima", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a9cc1220-5e62-4d8d-9dd2-7c323d863993", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a9cc1220-5e62-4d8d-9dd2-7c323d863993@f9941", + "displayName": "erweima", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 261, + "height": 261, + "rawWidth": 261, + "rawHeight": 261, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -130.5, + -130.5, + 0, + 130.5, + -130.5, + 0, + -130.5, + 130.5, + 0, + 130.5, + 130.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 261, + 261, + 261, + 0, + 0, + 261, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -130.5, + -130.5, + 0 + ], + "maxPos": [ + 130.5, + 130.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a9cc1220-5e62-4d8d-9dd2-7c323d863993@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a9cc1220-5e62-4d8d-9dd2-7c323d863993@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/图层 2.png b/assets/resources/ui/web3pop/图层 2.png new file mode 100644 index 00000000..117492f4 Binary files /dev/null and b/assets/resources/ui/web3pop/图层 2.png differ diff --git a/assets/resources/ui/web3pop/图层 2.png.meta b/assets/resources/ui/web3pop/图层 2.png.meta new file mode 100644 index 00000000..95b54839 --- /dev/null +++ b/assets/resources/ui/web3pop/图层 2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "49b048c9-5df5-441e-bab1-71e783a89c38", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "49b048c9-5df5-441e-bab1-71e783a89c38@6c48a", + "displayName": "图层 2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "49b048c9-5df5-441e-bab1-71e783a89c38", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "49b048c9-5df5-441e-bab1-71e783a89c38@f9941", + "displayName": "图层 2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 67, + "height": 67, + "rawWidth": 67, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -33.5, + -33.5, + 0, + 33.5, + -33.5, + 0, + -33.5, + 33.5, + 0, + 33.5, + 33.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 67, + 67, + 67, + 0, + 0, + 67, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -33.5, + -33.5, + 0 + ], + "maxPos": [ + 33.5, + 33.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "49b048c9-5df5-441e-bab1-71e783a89c38@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "49b048c9-5df5-441e-bab1-71e783a89c38@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/图层 3.png b/assets/resources/ui/web3pop/图层 3.png new file mode 100644 index 00000000..3bfd5891 Binary files /dev/null and b/assets/resources/ui/web3pop/图层 3.png differ diff --git a/assets/resources/ui/web3pop/图层 3.png.meta b/assets/resources/ui/web3pop/图层 3.png.meta new file mode 100644 index 00000000..58aa3083 --- /dev/null +++ b/assets/resources/ui/web3pop/图层 3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79@6c48a", + "displayName": "图层 3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79@f9941", + "displayName": "图层 3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 64, + "height": 71, + "rawWidth": 64, + "rawHeight": 71, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -32, + -35.5, + 0, + 32, + -35.5, + 0, + -32, + 35.5, + 0, + 32, + 35.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 71, + 64, + 71, + 0, + 0, + 64, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -32, + -35.5, + 0 + ], + "maxPos": [ + 32, + 35.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a27de5e4-1840-40c4-ad05-2bc4b3f36c79@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/图层 933 拷贝.png b/assets/resources/ui/web3pop/图层 933 拷贝.png new file mode 100644 index 00000000..03a95685 Binary files /dev/null and b/assets/resources/ui/web3pop/图层 933 拷贝.png differ diff --git a/assets/resources/ui/web3pop/图层 933 拷贝.png.meta b/assets/resources/ui/web3pop/图层 933 拷贝.png.meta new file mode 100644 index 00000000..fe7d0fbb --- /dev/null +++ b/assets/resources/ui/web3pop/图层 933 拷贝.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf@6c48a", + "displayName": "图层 933 拷贝", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf@f9941", + "displayName": "图层 933 拷贝", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 67, + "height": 67, + "rawWidth": 67, + "rawHeight": 67, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -33.5, + -33.5, + 0, + 33.5, + -33.5, + 0, + -33.5, + 33.5, + 0, + 33.5, + 33.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 67, + 67, + 67, + 0, + 0, + 67, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -33.5, + -33.5, + 0 + ], + "maxPos": [ + 33.5, + 33.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7def72e9-1d54-4c0a-8ddb-3c58c8564acf@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/提示.png b/assets/resources/ui/web3pop/提示.png new file mode 100644 index 00000000..5cb8630e Binary files /dev/null and b/assets/resources/ui/web3pop/提示.png differ diff --git a/assets/resources/ui/web3pop/提示.png.meta b/assets/resources/ui/web3pop/提示.png.meta new file mode 100644 index 00000000..c67d4f18 --- /dev/null +++ b/assets/resources/ui/web3pop/提示.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7@6c48a", + "displayName": "提示", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7@f9941", + "displayName": "提示", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 34, + "height": 34, + "rawWidth": 34, + "rawHeight": 34, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -17, + -17, + 0, + 17, + -17, + 0, + -17, + 17, + 0, + 17, + 17, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 34, + 34, + 34, + 0, + 0, + 34, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -17, + -17, + 0 + ], + "maxPos": [ + 17, + 17, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "a39de313-5d51-4b74-9dfd-ee34e4a68dc7@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/矩形 6 拷贝 2.png b/assets/resources/ui/web3pop/矩形 6 拷贝 2.png new file mode 100644 index 00000000..d929f138 Binary files /dev/null and b/assets/resources/ui/web3pop/矩形 6 拷贝 2.png differ diff --git a/assets/resources/ui/web3pop/矩形 6 拷贝 2.png.meta b/assets/resources/ui/web3pop/矩形 6 拷贝 2.png.meta new file mode 100644 index 00000000..8bb35376 --- /dev/null +++ b/assets/resources/ui/web3pop/矩形 6 拷贝 2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "216a2d8b-7a1e-46c0-9331-4e7a35762e97", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "216a2d8b-7a1e-46c0-9331-4e7a35762e97@6c48a", + "displayName": "矩形 6 拷贝 2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "216a2d8b-7a1e-46c0-9331-4e7a35762e97", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "216a2d8b-7a1e-46c0-9331-4e7a35762e97@f9941", + "displayName": "矩形 6 拷贝 2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 449, + "height": 90, + "rawWidth": 449, + "rawHeight": 90, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -224.5, + -45, + 0, + 224.5, + -45, + 0, + -224.5, + 45, + 0, + 224.5, + 45, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 90, + 449, + 90, + 0, + 0, + 449, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -224.5, + -45, + 0 + ], + "maxPos": [ + 224.5, + 45, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "216a2d8b-7a1e-46c0-9331-4e7a35762e97@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "216a2d8b-7a1e-46c0-9331-4e7a35762e97@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/矩形 6 拷贝 3.png b/assets/resources/ui/web3pop/矩形 6 拷贝 3.png new file mode 100644 index 00000000..64fd18d9 Binary files /dev/null and b/assets/resources/ui/web3pop/矩形 6 拷贝 3.png differ diff --git a/assets/resources/ui/web3pop/矩形 6 拷贝 3.png.meta b/assets/resources/ui/web3pop/矩形 6 拷贝 3.png.meta new file mode 100644 index 00000000..24611a54 --- /dev/null +++ b/assets/resources/ui/web3pop/矩形 6 拷贝 3.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4cff46b2-ac91-4c10-9871-77e37533b5b5", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4cff46b2-ac91-4c10-9871-77e37533b5b5@6c48a", + "displayName": "矩形 6 拷贝 3", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4cff46b2-ac91-4c10-9871-77e37533b5b5", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "4cff46b2-ac91-4c10-9871-77e37533b5b5@f9941", + "displayName": "矩形 6 拷贝 3", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 100, + "height": 100, + "rawWidth": 100, + "rawHeight": 100, + "borderTop": 21, + "borderBottom": 21, + "borderLeft": 21, + "borderRight": 21, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -50, + -50, + 0, + 50, + -50, + 0, + -50, + 50, + 0, + 50, + 50, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 100, + 100, + 100, + 0, + 0, + 100, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -50, + -50, + 0 + ], + "maxPos": [ + 50, + 50, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4cff46b2-ac91-4c10-9871-77e37533b5b5@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4cff46b2-ac91-4c10-9871-77e37533b5b5@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/矩形 7.png b/assets/resources/ui/web3pop/矩形 7.png new file mode 100644 index 00000000..646c33f3 Binary files /dev/null and b/assets/resources/ui/web3pop/矩形 7.png differ diff --git a/assets/resources/ui/web3pop/矩形 7.png.meta b/assets/resources/ui/web3pop/矩形 7.png.meta new file mode 100644 index 00000000..2a1e98e0 --- /dev/null +++ b/assets/resources/ui/web3pop/矩形 7.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b3239215-2f37-41f5-bcbd-2b69bb207b5b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b3239215-2f37-41f5-bcbd-2b69bb207b5b@6c48a", + "displayName": "矩形 7", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b3239215-2f37-41f5-bcbd-2b69bb207b5b", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "b3239215-2f37-41f5-bcbd-2b69bb207b5b@f9941", + "displayName": "矩形 7", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 152, + "height": 77, + "rawWidth": 152, + "rawHeight": 77, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -76, + -38.5, + 0, + 76, + -38.5, + 0, + -76, + 38.5, + 0, + 76, + 38.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 77, + 152, + 77, + 0, + 0, + 152, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -76, + -38.5, + 0 + ], + "maxPos": [ + 76, + 38.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b3239215-2f37-41f5-bcbd-2b69bb207b5b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b3239215-2f37-41f5-bcbd-2b69bb207b5b@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/矩形 9.png b/assets/resources/ui/web3pop/矩形 9.png new file mode 100644 index 00000000..bb4cdf77 Binary files /dev/null and b/assets/resources/ui/web3pop/矩形 9.png differ diff --git a/assets/resources/ui/web3pop/矩形 9.png.meta b/assets/resources/ui/web3pop/矩形 9.png.meta new file mode 100644 index 00000000..e8b4ab29 --- /dev/null +++ b/assets/resources/ui/web3pop/矩形 9.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "81daf6bc-7c66-4a58-ba47-11d8bca3782a", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "81daf6bc-7c66-4a58-ba47-11d8bca3782a@6c48a", + "displayName": "矩形 9", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "81daf6bc-7c66-4a58-ba47-11d8bca3782a", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "81daf6bc-7c66-4a58-ba47-11d8bca3782a@f9941", + "displayName": "矩形 9", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 7, + "height": 57, + "rawWidth": 7, + "rawHeight": 57, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -3.5, + -28.5, + 0, + 3.5, + -28.5, + 0, + -3.5, + 28.5, + 0, + 3.5, + 28.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 57, + 7, + 57, + 0, + 0, + 7, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -3.5, + -28.5, + 0 + ], + "maxPos": [ + 3.5, + 28.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "81daf6bc-7c66-4a58-ba47-11d8bca3782a@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "81daf6bc-7c66-4a58-ba47-11d8bca3782a@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/组 18.png b/assets/resources/ui/web3pop/组 18.png new file mode 100644 index 00000000..f37123fa Binary files /dev/null and b/assets/resources/ui/web3pop/组 18.png differ diff --git a/assets/resources/ui/web3pop/组 18.png.meta b/assets/resources/ui/web3pop/组 18.png.meta new file mode 100644 index 00000000..e280edb6 --- /dev/null +++ b/assets/resources/ui/web3pop/组 18.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "17ed0863-067c-4bb7-a408-1f1dad687dd7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "17ed0863-067c-4bb7-a408-1f1dad687dd7@6c48a", + "displayName": "组 18", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "17ed0863-067c-4bb7-a408-1f1dad687dd7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "17ed0863-067c-4bb7-a408-1f1dad687dd7@f9941", + "displayName": "组 18", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 865, + "height": 1109, + "rawWidth": 865, + "rawHeight": 1109, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -432.5, + -554.5, + 0, + 432.5, + -554.5, + 0, + -432.5, + 554.5, + 0, + 432.5, + 554.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 1109, + 865, + 1109, + 0, + 0, + 865, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -432.5, + -554.5, + 0 + ], + "maxPos": [ + 432.5, + 554.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "17ed0863-067c-4bb7-a408-1f1dad687dd7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "17ed0863-067c-4bb7-a408-1f1dad687dd7@6c48a" + } +} diff --git a/assets/resources/ui/web3pop/返回 (1).png b/assets/resources/ui/web3pop/返回 (1).png new file mode 100644 index 00000000..17d43222 Binary files /dev/null and b/assets/resources/ui/web3pop/返回 (1).png differ diff --git a/assets/resources/ui/web3pop/返回 (1).png.meta b/assets/resources/ui/web3pop/返回 (1).png.meta new file mode 100644 index 00000000..65258de5 --- /dev/null +++ b/assets/resources/ui/web3pop/返回 (1).png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "42849a5c-6d0b-49c7-b5da-58331ef7759f", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "42849a5c-6d0b-49c7-b5da-58331ef7759f@6c48a", + "displayName": "返回 (1)", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "42849a5c-6d0b-49c7-b5da-58331ef7759f", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "42849a5c-6d0b-49c7-b5da-58331ef7759f@f9941", + "displayName": "返回 (1)", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 48, + "height": 26, + "rawWidth": 48, + "rawHeight": 26, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -24, + -13, + 0, + 24, + -13, + 0, + -24, + 13, + 0, + 24, + 13, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 26, + 48, + 26, + 0, + 0, + 48, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -24, + -13, + 0 + ], + "maxPos": [ + 24, + 13, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "42849a5c-6d0b-49c7-b5da-58331ef7759f@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "42849a5c-6d0b-49c7-b5da-58331ef7759f@6c48a" + } +}