diff --git a/assets/Scenes/MainScene.scene b/assets/Scenes/MainScene.scene index aeb08d48..7f3a7c61 100644 --- a/assets/Scenes/MainScene.scene +++ b/assets/Scenes/MainScene.scene @@ -323,8 +323,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 2.7, - "y": 2.7, + "x": 2, + "y": 2, "z": 1 }, "_mobility": 0, diff --git a/assets/Scripts/Main/Channel/SDKManager.ts b/assets/Scripts/Main/Channel/SDKManager.ts index e8356065..99d506ac 100644 --- a/assets/Scripts/Main/Channel/SDKManager.ts +++ b/assets/Scripts/Main/Channel/SDKManager.ts @@ -11,225 +11,231 @@ import { LuffaWalletSDK } from "./wallet/LuffaWalletSDK"; import { UmaAnalyticsSDK } from "./analytics/UmaAnalyticsSDK"; import { ISignCap } from "./core/ISignCap"; import { ITransactionCap } from "./core/ITransactionCap"; +import { WebSDK } from "./platform/WebSDK"; const { ccclass, property } = _decorator; // 渠道管理器 -@ccclass('SDKManager') -export class SDKManager { - private static _I: SDKManager = null; - public static get I(): SDKManager { - if (!SDKManager._I) { - SDKManager._I = new SDKManager(); - } - return SDKManager._I; +@ccclass("SDKManager") +export class SDKManager { + private static _I: SDKManager = null; + public static get I(): SDKManager { + if (!SDKManager._I) { + SDKManager._I = new SDKManager(); } - // 广告,分享 - private adSDK: IAdSDK | null = null; - // 钱包 - private walletSDK: IWalletSDK | null = null; - // 平台基础 - private platformSDK: IPlatformSDK | null = null; - // 分析统计 - private analyticsSDK: IAnalyticsSDK | null = null; + return SDKManager._I; + } + // 广告,分享 + private adSDK: IAdSDK | null = null; + // 钱包 + private walletSDK: IWalletSDK | null = null; + // 平台基础 + private platformSDK: IPlatformSDK | null = null; + // 分析统计 + private analyticsSDK: IAnalyticsSDK | null = null; - private constructor() { - - } - - // 初始化 - public init(cb: Function = null) { - logger.info("SDKManager 初始化..."); - // 检测平台 - if (PlatformHelper.isKuaishou()) { - // 快手 + private constructor() {} - } else if (PlatformHelper.isWechat()) { - // 微信 - this.adSDK = new WxAdSDK(); - this.platformSDK = new WxPlatformSDK(); - } else if (PlatformHelper.isLuffa()) { - // Luffa - this.walletSDK = new LuffaWalletSDK(); - } else if (PlatformHelper.isByteDance()) { - // 字节跳动 + // 初始化 + public init(cb: Function = null) { + logger.info("SDKManager 初始化..."); + logger.info("当前平台" + sys.platform); + // 检测平台 + if (PlatformHelper.isKuaishou()) { + // 快手 + } else if (PlatformHelper.isWechat()) { + // 微信 + this.adSDK = new WxAdSDK(); + this.platformSDK = new WxPlatformSDK(); + } else if (PlatformHelper.isLuffa()) { + // Luffa + this.walletSDK = new LuffaWalletSDK(); + } else if (PlatformHelper.isByteDance()) { + // 字节跳动 + } else { + //默认web平台 + this.platformSDK = new WebSDK(); + } - } else { + // 默认加载 UMA 分析 + this.analyticsSDK = new UmaAnalyticsSDK(); - } + // 初始化各模块 + this.adSDK?.init(); + this.walletSDK?.init(); + this.platformSDK?.init(); + this.analyticsSDK?.init(); - // 默认加载 UMA 分析 - this.analyticsSDK = new UmaAnalyticsSDK(); + // 回调 + cb && cb(); + } - // 初始化各模块 - this.adSDK?.init(); - this.walletSDK?.init(); - this.platformSDK?.init(); - this.analyticsSDK?.init(); + /** + * 销毁所有 SDK + * + * - 逐个调用各 SDK 的 `destroy` 方法 + * - 用于游戏退出、切换账号、切换平台时释放资源 + * - 调用时机:游戏关闭 / 重新进入大厅 / SDK 切换 + */ + public destroyAll() { + this.adSDK?.destroy?.(); + this.adSDK = null; + this.walletSDK?.destroy?.(); + this.walletSDK = null; + this.platformSDK?.destroy?.(); + this.platformSDK = null; + this.analyticsSDK?.destroy?.(); + this.analyticsSDK = null; + logger.log("所有 SDK 已销毁并清空引用"); + } - // 回调 - cb && cb(); - } + /** --------------------------------------------------------- 广告,分享 --------------------------------------------------------- */ - /** - * 销毁所有 SDK - * - * - 逐个调用各 SDK 的 `destroy` 方法 - * - 用于游戏退出、切换账号、切换平台时释放资源 - * - 调用时机:游戏关闭 / 重新进入大厅 / SDK 切换 - */ - public destroyAll() { - this.adSDK?.destroy?.(); - this.adSDK = null; - this.walletSDK?.destroy?.(); - this.walletSDK = null; - this.platformSDK?.destroy?.(); - this.platformSDK = null; - this.analyticsSDK?.destroy?.(); - this.analyticsSDK = null; - logger.log("所有 SDK 已销毁并清空引用"); - } + // 展示激励视频广告 + public showRewardVideo(cb: (ok: boolean) => void): void { + if (!this.adSDK) return; + this.adSDK.showRewardVideo(cb); + } - /** --------------------------------------------------------- 广告,分享 --------------------------------------------------------- */ + // 展示插屏广告 + public showInterstitial(): void { + if (!this.adSDK) return; + this.adSDK.showInterstitial(); + } - // 展示激励视频广告 - public showRewardVideo(cb: (ok: boolean) => void): void { - if (!this.adSDK) return; - this.adSDK.showRewardVideo(cb) - } + // 展示 Banner 广告 + public showBanner(): void { + if (!this.adSDK) return; + this.adSDK.showBanner(); + } - // 展示插屏广告 - public showInterstitial(): void { - if (!this.adSDK) return; - this.adSDK.showInterstitial() - } - - // 展示 Banner 广告 - public showBanner(): void { - if (!this.adSDK) return; - this.adSDK.showBanner() - } + // 隐藏 Banner 广告 + public hideBanner(): void { + if (!this.adSDK) return; + this.adSDK.hideBanner(); + } - // 隐藏 Banner 广告 - public hideBanner(): void { - if (!this.adSDK) return; - this.adSDK.hideBanner() - } + // 主动拉起分享 + public showShare(cb?: Function): void { + if (!this.adSDK) return; + this.adSDK.showShare(cb); + } - // 主动拉起分享 - public showShare(cb?: Function): void { - if (!this.adSDK) return; - this.adSDK.showShare(cb) - } - - /** --------------------------------------------------------- 钱包 --------------------------------------------------------- */ - - // 连接钱包 - public connectWallet(cb: (address: string, publicKey?: string) => void): void { - if (!this.walletSDK) return; - this.walletSDK.connectWallet(cb); - } + /** --------------------------------------------------------- 钱包 --------------------------------------------------------- */ - // 断开钱包连接 - public disconnectWallet(): void { - if (!this.walletSDK) return; - this.walletSDK.disconnectWallet(); - } + // 连接钱包 + public connectWallet( + cb: (address: string, publicKey?: string) => void + ): void { + if (!this.walletSDK) return; + this.walletSDK.connectWallet(cb); + } - // 获取当前钱包地址 - public getWalletAddress(): string | null { - if (!this.walletSDK) return null; - return this.walletSDK.getWalletAddress() - } + // 断开钱包连接 + public disconnectWallet(): void { + if (!this.walletSDK) return; + this.walletSDK.disconnectWallet(); + } - // 签名消息 - public async signMessage(message: string, options?: any): Promise<{ signature: string; fullMessage?: string }> { - if (!this.walletSDK) return; - // 判断是否实现签名能力 - if ("signMessage" in this.walletSDK) { - const signer = this.walletSDK as unknown as ISignCap; - return signer.signMessage(message, options); - } - throw new Error("当前钱包 SDK 不支持 signMessage 功能"); - } + // 获取当前钱包地址 + public getWalletAddress(): string | null { + if (!this.walletSDK) return null; + return this.walletSDK.getWalletAddress(); + } - // 签名交易 - public async signTransaction(rawTx: any): Promise<{ signedData: string }> { - if (!this.walletSDK) return; - // 判断是否实现交易能力 - if ("signTransaction" in this.walletSDK) { - const txCap = this.walletSDK as unknown as ITransactionCap; - return txCap.signTransaction(rawTx); - } - throw new Error("当前钱包 SDK 不支持 signTransaction 功能"); - } + // 签名消息 + public async signMessage( + message: string, + options?: any + ): Promise<{ signature: string; fullMessage?: string }> { + if (!this.walletSDK) return; + // 判断是否实现签名能力 + if ("signMessage" in this.walletSDK) { + const signer = this.walletSDK as unknown as ISignCap; + return signer.signMessage(message, options); + } + throw new Error("当前钱包 SDK 不支持 signMessage 功能"); + } - // 发送交易(广播到链上) - public async sendTransaction(signedData: string): Promise<{ hash: string }> { - if (!this.walletSDK) return; - // 判断是否实现交易能力 - if ("sendTransaction" in this.walletSDK) { - const txCap = this.walletSDK as unknown as ITransactionCap; - return txCap.sendTransaction(signedData); - } - throw new Error("当前钱包 SDK 不支持 sendTransaction 功能"); - } + // 签名交易 + public async signTransaction(rawTx: any): Promise<{ signedData: string }> { + if (!this.walletSDK) return; + // 判断是否实现交易能力 + if ("signTransaction" in this.walletSDK) { + const txCap = this.walletSDK as unknown as ITransactionCap; + return txCap.signTransaction(rawTx); + } + throw new Error("当前钱包 SDK 不支持 signTransaction 功能"); + } - /** --------------------------------------------------------- 平台基础 --------------------------------------------------------- */ + // 发送交易(广播到链上) + public async sendTransaction(signedData: string): Promise<{ hash: string }> { + if (!this.walletSDK) return; + // 判断是否实现交易能力 + if ("sendTransaction" in this.walletSDK) { + const txCap = this.walletSDK as unknown as ITransactionCap; + return txCap.sendTransaction(signedData); + } + throw new Error("当前钱包 SDK 不支持 sendTransaction 功能"); + } - // 登录 - public login(cb?: Function): void { - if (!this.platformSDK) return; - this.platformSDK.login(cb) - } + /** --------------------------------------------------------- 平台基础 --------------------------------------------------------- */ - // 获取用户信息 - public getUserInfo(cb: (info: { nickName: string; avatarUrl: string }) => void): void { - if (!this.platformSDK) return; - this.platformSDK.getUserInfo(cb) - } + // 登录 + public login(cb?: Function): void { + if (!this.platformSDK) return; + this.platformSDK.login(cb); + } - // 检查平台权限 - public checkPermission(scope: string, cb: (granted: boolean) => void): void { - if (!this.platformSDK) return; - this.platformSDK.checkPermission(scope, cb) - } + // 获取用户信息 + public getUserInfo( + cb: (info: { nickName: string; avatarUrl: string }) => void + ): void { + if (!this.platformSDK) return; + this.platformSDK.getUserInfo(cb); + } - // 复制文本到剪贴板 - public copyToClipboard(text: string, cb?: Function): void { - if (!this.platformSDK) return; - this.platformSDK.copyToClipboard(text, cb); - } + // 检查平台权限 + public checkPermission(scope: string, cb: (granted: boolean) => void): void { + if (!this.platformSDK) return; + this.platformSDK.checkPermission(scope, cb); + } - // 客服功能是否可用 - public kefuSupport(): boolean { - if (!this.platformSDK) return false; - return this.platformSDK.kefuSupport(); - } + // 复制文本到剪贴板 + public copyToClipboard(text: string, cb?: Function): void { + if (!this.platformSDK) return; + this.platformSDK.copyToClipboard(text, cb); + } - // 打开客服会话 - public openKefu(): void { - if (!this.platformSDK) return; - this.platformSDK.openKefu(); - } + // 客服功能是否可用 + public kefuSupport(): boolean { + if (!this.platformSDK) return false; + return this.platformSDK.kefuSupport(); + } - // 获取设备分辨率 - public getWindowSize(): { width: number, height: number } { - if (!this.platformSDK) return {width: 720, height: 1280}; - return this.platformSDK.getWindowSize(); - } - - /** --------------------------------------------------------- 分析统计 --------------------------------------------------------- */ - - // 判断统计功能是否可用 - public isAnalyticsEnabled(): boolean { - if (!this.analyticsSDK) return false; - return this.analyticsSDK.isAnalyticsEnabled(); - } + // 打开客服会话 + public openKefu(): void { + if (!this.platformSDK) return; + this.platformSDK.openKefu(); + } - // 上报事件 - public trackEvent(eventName: string, value?: any): void { - if (!this.analyticsSDK) return; - return this.analyticsSDK.trackEvent(eventName, value); - } -} \ No newline at end of file + // 获取设备分辨率 + public getWindowSize(): { width: number; height: number } { + if (!this.platformSDK) return { width: 720, height: 1280 }; + return this.platformSDK.getWindowSize(); + } + + /** --------------------------------------------------------- 分析统计 --------------------------------------------------------- */ + + // 判断统计功能是否可用 + public isAnalyticsEnabled(): boolean { + if (!this.analyticsSDK) return false; + return this.analyticsSDK.isAnalyticsEnabled(); + } + + // 上报事件 + public trackEvent(eventName: string, value?: any): void { + if (!this.analyticsSDK) return; + return this.analyticsSDK.trackEvent(eventName, value); + } +} diff --git a/assets/Scripts/Main/Channel/platform/WebSDK.ts b/assets/Scripts/Main/Channel/platform/WebSDK.ts new file mode 100644 index 00000000..08846587 --- /dev/null +++ b/assets/Scripts/Main/Channel/platform/WebSDK.ts @@ -0,0 +1,94 @@ +import { IPlatformSDK } from "../core/IPlatformSDK"; +import { logger } from "db://assets/Scripts/Main/Common/Logger"; + +export class WebSDK implements IPlatformSDK { + constructor() {} + init(cb?: Function): void { + logger.log("Web平台初始化"); + cb && cb(); + } + + // 登录 + login(cb?: Function): void { + cb && cb({ code: "Web" }); + } + + // 获取用户信息 + getUserInfo( + cb: (info: { nickName: string; avatarUrl: string }) => void + ): void { + cb({ nickName: "小明", avatarUrl: "avatar.png" }); + } + + // 检查平台权限 + checkPermission(scope: string, cb: (granted: boolean) => void): void { + cb(true); + } + + //region 复制到剪贴板 + /**复制文本到剪贴板 */ + copyToClipboard(text: string, cb?: Function) { + logger.log("web 复制到剪贴板:", text); + + if (navigator.clipboard && window.isSecureContext) { + // 使用现代的 Clipboard API + navigator.clipboard + .writeText(text) + .then(() => { + logger.log("web 复制成功 (Clipboard API)"); + cb && cb(true); + }) + .catch((err) => { + logger.log("web 复制失败 (Clipboard API):", err); + this.fallbackCopyToClipboard(text, cb); + }); + } else { + // 使用兼容性方案 + this.fallbackCopyToClipboard(text, cb); + } + } + /**兼容性复制方案 */ + private fallbackCopyToClipboard(text: string, cb?: Function) { + const textArea = document.createElement("textarea"); + textArea.value = text; + + // 避免滚动到底部 + textArea.style.top = "0"; + textArea.style.left = "0"; + textArea.style.position = "fixed"; + textArea.style.opacity = "0"; + + document.body.appendChild(textArea); + textArea.focus(); + textArea.select(); + + try { + const successful = document.execCommand("copy"); + if (successful) { + logger.log("web 复制成功 (fallback)"); + cb && cb(true); + } else { + logger.log("web 复制失败 (fallback)"); + cb && cb(false); + } + } catch (err) { + logger.log("web 复制异常 (fallback):", err); + cb && cb(false); + } + + document.body.removeChild(textArea); + } + + // 客服功能是否可用 + kefuSupport(): boolean { + return true; + } + + // 打开客服会话 + openKefu(): void {} + + // 获取设备分辨率 + getWindowSize(): { width: number; height: number } { + return { width: 720, height: 1280 }; + } +} diff --git a/assets/Scripts/Main/Channel/platform/WebSDK.ts.meta b/assets/Scripts/Main/Channel/platform/WebSDK.ts.meta new file mode 100644 index 00000000..53e46a60 --- /dev/null +++ b/assets/Scripts/Main/Channel/platform/WebSDK.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "6903a95e-077f-44a4-a740-04ee2ae3ab86", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Scripts/Main/Config/CommonConfig.ts b/assets/Scripts/Main/Config/CommonConfig.ts index 9837dfb0..9c058f96 100644 --- a/assets/Scripts/Main/Config/CommonConfig.ts +++ b/assets/Scripts/Main/Config/CommonConfig.ts @@ -40,9 +40,10 @@ export namespace CommonConfig { Layer_ui1 = 1, Layer_ui2 = 2, Layer_dialog = 3, - Layer_tips = 4, - Layer_navigationbar = 5, + Layer_navigationbar = 4, + Layer_tips = 5, + Layer_top = 6, } } diff --git a/assets/Scripts/Sub/UI/PreloadUI.ts b/assets/Scripts/Sub/UI/PreloadUI.ts index d260ad94..c46933fd 100644 --- a/assets/Scripts/Sub/UI/PreloadUI.ts +++ b/assets/Scripts/Sub/UI/PreloadUI.ts @@ -75,6 +75,11 @@ export class PreloadUI extends Component { private loginLabel: Label; private desc: Label; + + // 视频播放状态跟踪 + private videoPlayed: boolean = false; + private videoPlayRetryCount: number = 0; + private maxVideoPlayRetry: number = 3; start() { //Utils.addInnerEL(InnerMsgCode.UI_ShowPrompt, this, this.resiveShowPrompt) Utils.parseNode(this.node, this._nodeTab); @@ -90,12 +95,24 @@ export class PreloadUI extends Component { this.loginLabel = this._nodeTab.loginLabel.getComponent(Label); this.desc = this._nodeTab.Desc.getComponent(Label); + // 设置视频为静音,提高移动端自动播放成功率 + this.VideoPlayer.muted = true; + this.VideoPlayer.loop = true; + this.VideoPlayer.stayOnBottom = true; + this.VideoPlayer.node.on( VideoPlayer.EventType.META_LOADED, this.onVideoReadyToPlay, this ); + // 监听播放失败事件 + this.VideoPlayer.node.on( + VideoPlayer.EventType.PLAYING, + this.onVideoPlaying, + this + ); + GButton.BandClick(this.loginBtn, this.onLogin, this); this.jinduBar = this.node.getChildByName("jinduBar"); @@ -109,7 +126,8 @@ export class PreloadUI extends Component { this.jinduFilled.fillRange = 0; - if (!this.VideoPlayer.isPlaying) this.VideoPlayer.play(); + // 移除直接播放调用,等待 META_LOADED 事件后再播放 + // if (!this.VideoPlayer.isPlaying) this.VideoPlayer.play(); //初始化显示 switch (LanguageUtils.CurrentLanguage) { @@ -148,11 +166,74 @@ export class PreloadUI extends Component { this.mainScene.init(); } - protected onDestroy(): void {} + protected onDestroy(): void { + // 清理视频事件监听器 + if (this.VideoPlayer && this.VideoPlayer.node) { + this.VideoPlayer.node.off( + VideoPlayer.EventType.META_LOADED, + this.onVideoReadyToPlay, + this + ); + this.VideoPlayer.node.off( + VideoPlayer.EventType.PLAYING, + this.onVideoPlaying, + this + ); + this.VideoPlayer.stop(); + } + } onVideoReadyToPlay() { - logger.log("Video Ready"); - this._nodeTab.VideoPlayer.getComponent(VideoPlayer).play(); + logger.log("PreloadUI: Video metadata loaded, attempting to play"); + this.tryPlayVideo(); + } + + /** + * 尝试播放视频,带重试机制和错误处理 + */ + private tryPlayVideo() { + if (this.videoPlayed) { + logger.log("PreloadUI: Video already playing, skip"); + return; + } + + if (!this.VideoPlayer) { + logger.error("PreloadUI: VideoPlayer not initialized"); + return; + } + + // 尝试播放视频 + try { + this.VideoPlayer.play(); + logger.log(`PreloadUI: Video play attempted (retry: ${this.videoPlayRetryCount}/${this.maxVideoPlayRetry})`); + + // 延迟检查播放状态,如果失败则重试 + this.scheduleOnce(() => { + if (!this.VideoPlayer.isPlaying && this.videoPlayRetryCount < this.maxVideoPlayRetry) { + this.videoPlayRetryCount++; + logger.warn(`PreloadUI: Video play failed, retrying... (${this.videoPlayRetryCount}/${this.maxVideoPlayRetry})`); + this.tryPlayVideo(); + } else if (!this.VideoPlayer.isPlaying) { + logger.warn("PreloadUI: Video autoplay failed after max retries. Will retry on user interaction."); + } + }, 0.5); + } catch (error) { + logger.error("PreloadUI: Video play error:", error); + if (this.videoPlayRetryCount < this.maxVideoPlayRetry) { + this.videoPlayRetryCount++; + this.scheduleOnce(() => { + this.tryPlayVideo(); + }, 1.0); + } + } + } + + /** + * 视频开始播放回调 + */ + private onVideoPlaying() { + logger.log("PreloadUI: Video is now playing"); + this.videoPlayed = true; } update(deltaTime: number) { if (!this.preloadFinish) { @@ -227,6 +308,13 @@ export class PreloadUI extends Component { // } async onLogin() { + // 用户交互时尝试播放视频(如果自动播放失败) + if (!this.videoPlayed && this.VideoPlayer) { + logger.log("PreloadUI: User interaction detected, trying to play video"); + this.videoPlayRetryCount = 0; // 重置重试计数 + this.tryPlayVideo(); + } + const deviceId = DeviceIdService.I.id; const os = MachineInfoService.I.getMachineOs(); const reqData = { diff --git a/assets/Scripts/chat18x/ui/items/NavigationBtn.ts b/assets/Scripts/chat18x/ui/items/NavigationBtn.ts index f97fbc1e..61d7bad2 100644 --- a/assets/Scripts/chat18x/ui/items/NavigationBtn.ts +++ b/assets/Scripts/chat18x/ui/items/NavigationBtn.ts @@ -6,15 +6,21 @@ export class NavigationBtn extends Component { focus: Node; unfocus: Node; + focusLight: Node; + start() { this.focus = this.node.getChildByName("focus"); this.unfocus = this.node.getChildByName("unfocus"); + this.focusLight = this.node.getChildByName("focusLight"); } setFocus(focus: boolean) { if (!this.focus) this.focus = this.node.getChildByName("focus"); if (!this.unfocus) this.unfocus = this.node.getChildByName("unfocus"); + if (!this.focusLight) + this.focusLight = this.node.getChildByName("focusLight"); this.focus.active = focus; this.unfocus.active = !focus; + this.focusLight.active = focus; } } diff --git a/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts b/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts index 03293a31..2c17d086 100644 --- a/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PersonalPanel.ts @@ -170,6 +170,6 @@ export class PersonalPanel extends li_BaseView { } private openFavorites() { - TipsPanel.show("敬请期待~"); + TipsPanel.show(LanguageUtils.getText("rankpanel.comingsoon")); } } diff --git a/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts index 8299faed..a95ae78e 100644 --- a/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts @@ -141,7 +141,7 @@ export class PopupGirlDetailPanel extends li_BaseView { } else { this.base.refreshSelf(); } - NavigationManager.Instance.openPopupPanel("ReleasePanel"); + TipsPanel.show(LanguageUtils.getText("releasepanel.releasesuccess")); } else { NavigationManager.Instance.openPopupPanel("ChargePopPanel"); } diff --git a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts index a49fb7ae..e228f412 100644 --- a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts @@ -160,10 +160,10 @@ export class PurchasePanel extends li_BaseView { // VIP会员 const memberId7 = this.shopData.get7DayMemberId(); const price7 = this.shopData.getOriginalPriceById(memberId7); - this.vipPrice7.string = `$ ${price7}`; + this.vipPrice7.string = `${price7}`; const memberId30 = this.shopData.get30DayMemberId(); const price30 = this.shopData.getOriginalPriceById(memberId30); - this.vipPrice30.string = `$ ${price30}`; + this.vipPrice30.string = `${price30}`; } // 0:cash 1:web3 diff --git a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts index 25cbdc8b..bb90c103 100644 --- a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts @@ -521,11 +521,18 @@ export class ThemePanel extends li_BaseView { const walletData = DataManager.I.getDataById(DataId.Wallet); if (!walletData.isVip) { - this.vipLeftTime.string = LanguageUtils.getText("purchasepanel.notvip"); + //this.vipLeftTime.string = LanguageUtils.getText("purchasepanel.notvip"); + this._nodeTab.notvipicon.active = true; + this._nodeTab.notVip.active = true; + this.vipLeftTime.node.active = false; } else { const vipExpire = walletData.vipExpire; const leftTime = Utils.formatVipLeftTime(vipExpire); + this.vipLeftTime.node.active = true; + + this._nodeTab.notvipicon.active = false; + this._nodeTab.notVip.active = false; if (leftTime == null) { LanguageUtils.getText("purchasepanel.notvip"); diff --git a/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts index 8feeff36..d50ef412 100644 --- a/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts @@ -13,7 +13,7 @@ import { SDKManager } from "../../../Main/Channel/SDKManager"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; import { logger } from "db://assets/Scripts/Main/Common/Logger"; import { PersonalPanel } from "./PersonalPanel"; -import { PaymentMethod } from 'db://assets/Scripts/chat18x/payment/types'; +import { PaymentMethod } from "db://assets/Scripts/chat18x/payment/types"; const { ccclass, property } = _decorator; @@ -62,6 +62,7 @@ export class Web3PopPanel extends li_BaseView { this.registerListener(); this.selection.setScale(new Vec3(1, 0, 1)); + this._nodeTab.WD_AN_JT2.active = false; this.refreshView(); } @@ -144,7 +145,7 @@ export class Web3PopPanel extends li_BaseView { case proto.cs.EnmNetworkType.ENT_TRON: ResManager.I.changeResourceSpriteFrame( this.coinIcon, - "ui/web3pop/coinIcon/Tron" + "ui/web3pop/coinIcon/SHOP_ICON_HB1" ); this.coinText.string = "Tron(TRC20)"; this.tips.string = LanguageUtils.getText("web3panel.tips").replace( @@ -155,7 +156,7 @@ export class Web3PopPanel extends li_BaseView { case proto.cs.EnmNetworkType.ENT_TON: ResManager.I.changeResourceSpriteFrame( this.coinIcon, - "ui/web3pop/coinIcon/TON" + "ui/web3pop/coinIcon/SHOP_ICON_HB2" ); this.coinText.string = "TON"; this.tips.string = LanguageUtils.getText("web3panel.tips").replace( @@ -166,7 +167,7 @@ export class Web3PopPanel extends li_BaseView { case proto.cs.EnmNetworkType.ENT_ETH: ResManager.I.changeResourceSpriteFrame( this.coinIcon, - "ui/web3pop/coinIcon/ETH" + "ui/web3pop/coinIcon/SHOP_ICON_HB3" ); this.coinText.string = "ETH"; this.tips.string = LanguageUtils.getText("web3panel.tips").replace( @@ -177,7 +178,7 @@ export class Web3PopPanel extends li_BaseView { case proto.cs.EnmNetworkType.ENT_BEP: ResManager.I.changeResourceSpriteFrame( this.coinIcon, - "ui/web3pop/coinIcon/BEP" + "ui/web3pop/coinIcon/SHOP_ICON_HB4" ); this.coinText.string = "BEP"; this.tips.string = LanguageUtils.getText("web3panel.tips").replace( @@ -205,8 +206,16 @@ export class Web3PopPanel extends li_BaseView { updateSelectNetwork() {} + isSelectionOpen = false; onClickCoinTypeSelectBtn() { - this.selection.scale = new Vec3(1, 1, 1); + if (this.isSelectionOpen) { + this.selection.scale = new Vec3(1, 0, 1); + this._nodeTab.WD_AN_JT2.active = false; + } else { + this.selection.scale = new Vec3(1, 1, 1); + this._nodeTab.WD_AN_JT2.active = true; + } + this.isSelectionOpen = !this.isSelectionOpen; } onClickCoinType(type: proto.cs.EnmNetworkType) { @@ -229,6 +238,8 @@ export class Web3PopPanel extends li_BaseView { ); this.selection.scale = new Vec3(1, 0, 1); + this._nodeTab.WD_AN_JT2.active = false; + this.isSelectionOpen = false; } onClickCopy() { diff --git a/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts b/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts index 09b78e7c..17f9c1b1 100644 --- a/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts +++ b/assets/Scripts/chat18x/uiitems/PurchasePanelItem.ts @@ -16,6 +16,8 @@ export class PurchasePanelItem extends Component { @property(Sprite) icon: Sprite; + @property(Sprite) + usdt: Sprite; baseView: PurchasePanel; goodId: number; @@ -43,11 +45,13 @@ export class PurchasePanelItem extends Component { path += "ui/shop/coin/"; const price = shopData.getOriginalUsdPriceById(this.goodId); this.price.string = price.toString(); + this.usdt.node.active = true; } //cash else { path += "ui/shop/cash/"; const price = shopData.getOriginalPriceById(this.goodId); this.price.string = "₹‌" + price.toString(); + this.usdt.node.active = false; } path += this.goodId; diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index 63469da6..cbffab02 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -22,7 +22,7 @@ "__id__": 2 }, { - "__id__": 303 + "__id__": 305 }, { "__id__": 70 @@ -31,23 +31,23 @@ "__id__": 110 }, { - "__id__": 389 + "__id__": 391 } ], "_active": true, "_components": [ - { - "__id__": 419 - }, { "__id__": 421 }, { "__id__": 423 + }, + { + "__id__": 425 } ], "_prefab": { - "__id__": 425 + "__id__": 427 }, "_lpos": { "__type__": "cc.Vec3", @@ -105,18 +105,18 @@ ], "_active": true, "_components": [ - { - "__id__": 296 - }, { "__id__": 298 }, { "__id__": 300 + }, + { + "__id__": 302 } ], "_prefab": { - "__id__": 302 + "__id__": 304 }, "_lpos": { "__type__": "cc.Vec3", @@ -4252,18 +4252,18 @@ ], "_active": true, "_components": [ - { - "__id__": 289 - }, { "__id__": 291 }, { "__id__": 293 + }, + { + "__id__": 295 } ], "_prefab": { - "__id__": 295 + "__id__": 297 }, "_lpos": { "__type__": "cc.Vec3", @@ -4321,18 +4321,18 @@ ], "_active": true, "_components": [ - { - "__id__": 282 - }, { "__id__": 284 }, { "__id__": 286 + }, + { + "__id__": 288 } ], "_prefab": { - "__id__": 288 + "__id__": 290 }, "_lpos": { "__type__": "cc.Vec3", @@ -5661,20 +5661,17 @@ "__id__": 249 }, { - "__id__": 255 + "__id__": 257 }, { - "__id__": 261 + "__id__": 263 }, { - "__id__": 267 + "__id__": 269 } ], - "_active": false, + "_active": true, "_components": [ - { - "__id__": 273 - }, { "__id__": 275 }, @@ -5683,15 +5680,18 @@ }, { "__id__": 279 + }, + { + "__id__": 281 } ], "_prefab": { - "__id__": 281 + "__id__": 283 }, "_lpos": { "__type__": "cc.Vec3", - "x": -134.712, - "y": -4.185000000000002, + "x": -105.5735, + "y": -3.907985046680551e-14, "z": 0 }, "_lrot": { @@ -5733,10 +5733,13 @@ }, { "__id__": 252 + }, + { + "__id__": 254 } ], "_prefab": { - "__id__": 254 + "__id__": 256 }, "_lpos": { "__type__": "cc.Vec3", @@ -5781,8 +5784,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 622, - "height": 125 + "width": 464.849, + "height": 70 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5818,7 +5821,7 @@ "a": 206 }, "_spriteFrame": { - "__uuid__": "cc5e58e3-3d6f-4ca7-b02f-8c47634b5b21@f9941", + "__uuid__": "17c825c0-cb06-4bcc-938b-5deb579a25bf@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -5840,6 +5843,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "5ftcuw6jJKCqT+XMQAcXgR" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 249 + }, + "_enabled": true, + "__prefab": { + "__id__": 255 + }, + "_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": 622, + "_originalHeight": 125, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "adtAH5uExOHpWI8UrdtSIt" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -5865,18 +5904,18 @@ "_active": true, "_components": [ { - "__id__": 256 + "__id__": 258 }, { - "__id__": 258 + "__id__": 260 } ], "_prefab": { - "__id__": 260 + "__id__": 262 }, "_lpos": { "__type__": "cc.Vec3", - "x": -250, + "x": -200.508, "y": 0, "z": 0 }, @@ -5909,16 +5948,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 255 + "__id__": 257 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", - "width": 20, - "height": 20 + "width": 10, + "height": 10 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5937,11 +5976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 255 + "__id__": 257 }, "_enabled": true, "__prefab": { - "__id__": 259 + "__id__": 261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6001,18 +6040,18 @@ "_active": true, "_components": [ { - "__id__": 262 + "__id__": 264 }, { - "__id__": 264 + "__id__": 266 } ], "_prefab": { - "__id__": 266 + "__id__": 268 }, "_lpos": { "__type__": "cc.Vec3", - "x": -220, + "x": -170.508, "y": 0, "z": 0 }, @@ -6045,16 +6084,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 261 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 265 }, "_contentSize": { "__type__": "cc.Size", - "width": 20, - "height": 20 + "width": 10, + "height": 10 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6073,11 +6112,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 261 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 265 + "__id__": 267 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6137,18 +6176,18 @@ "_active": true, "_components": [ { - "__id__": 268 + "__id__": 270 }, { - "__id__": 270 + "__id__": 272 } ], "_prefab": { - "__id__": 272 + "__id__": 274 }, "_lpos": { "__type__": "cc.Vec3", - "x": -190, + "x": -140.508, "y": 0, "z": 0 }, @@ -6181,16 +6220,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 267 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 269 + "__id__": 271 }, "_contentSize": { "__type__": "cc.Size", - "width": 20, - "height": 20 + "width": 10, + "height": 10 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6209,11 +6248,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 267 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 271 + "__id__": 273 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6271,12 +6310,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 276 }, "_contentSize": { "__type__": "cc.Size", - "width": 622, - "height": 125 + "width": 464.849, + "height": 70 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6299,7 +6338,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 276 + "__id__": 278 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6344,7 +6383,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 278 + "__id__": 280 }, "_alignFlags": 42, "_target": null, @@ -6380,7 +6419,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 280 + "__id__": 282 }, "playOnLoad": true, "_clips": [ @@ -6422,7 +6461,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 285 }, "_contentSize": { "__type__": "cc.Size", @@ -6450,7 +6489,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 287 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6495,7 +6534,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 289 }, "_alignFlags": 40, "_target": null, @@ -6544,7 +6583,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 290 + "__id__": 292 }, "_contentSize": { "__type__": "cc.Size", @@ -6572,7 +6611,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 292 + "__id__": 294 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6617,7 +6656,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 294 + "__id__": 296 }, "_alignFlags": 44, "_target": null, @@ -6666,7 +6705,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 299 }, "_contentSize": { "__type__": "cc.Size", @@ -6694,7 +6733,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 299 + "__id__": 301 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6736,7 +6775,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 301 + "__id__": 303 }, "_alignFlags": 45, "_target": null, @@ -6785,23 +6824,20 @@ }, "_children": [ { - "__id__": 304 + "__id__": 306 }, { - "__id__": 312 + "__id__": 314 }, { - "__id__": 320 + "__id__": 322 }, { - "__id__": 349 + "__id__": 351 } ], "_active": false, "_components": [ - { - "__id__": 380 - }, { "__id__": 382 }, @@ -6810,10 +6846,13 @@ }, { "__id__": 386 + }, + { + "__id__": 388 } ], "_prefab": { - "__id__": 388 + "__id__": 390 }, "_lpos": { "__type__": "cc.Vec3", @@ -6850,23 +6889,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 303 + "__id__": 305 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 305 - }, { "__id__": 307 }, { "__id__": 309 + }, + { + "__id__": 311 } ], "_prefab": { - "__id__": 311 + "__id__": 313 }, "_lpos": { "__type__": "cc.Vec3", @@ -6903,11 +6942,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 306 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 308 }, "_contentSize": { "__type__": "cc.Size", @@ -6931,11 +6970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 306 }, "_enabled": true, "__prefab": { - "__id__": 308 + "__id__": 310 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6976,11 +7015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 306 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 312 }, "_alignFlags": 45, "_target": null, @@ -7025,23 +7064,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 303 + "__id__": 305 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 313 - }, { "__id__": 315 }, { "__id__": 317 + }, + { + "__id__": 319 } ], "_prefab": { - "__id__": 319 + "__id__": 321 }, "_lpos": { "__type__": "cc.Vec3", @@ -7078,11 +7117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 312 + "__id__": 314 }, "_enabled": true, "__prefab": { - "__id__": 314 + "__id__": 316 }, "_contentSize": { "__type__": "cc.Size", @@ -7106,11 +7145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 312 + "__id__": 314 }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 318 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7174,11 +7213,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 312 + "__id__": 314 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 320 }, "languageKey": "chatpanel.paytotalk.desc", "defaultText": "", @@ -7208,24 +7247,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 303 + "__id__": 305 }, "_children": [ { - "__id__": 321 + "__id__": 323 }, { - "__id__": 327 + "__id__": 329 }, { - "__id__": 333 + "__id__": 335 } ], "_active": true, "_components": [ - { - "__id__": 339 - }, { "__id__": 341 }, @@ -7233,11 +7269,14 @@ "__id__": 343 }, { - "__id__": 346 + "__id__": 345 + }, + { + "__id__": 348 } ], "_prefab": { - "__id__": 348 + "__id__": 350 }, "_lpos": { "__type__": "cc.Vec3", @@ -7274,20 +7313,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 320 + "__id__": 322 }, "_children": [], "_active": true, "_components": [ { - "__id__": 322 + "__id__": 324 }, { - "__id__": 324 + "__id__": 326 } ], "_prefab": { - "__id__": 326 + "__id__": 328 }, "_lpos": { "__type__": "cc.Vec3", @@ -7324,11 +7363,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 321 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 325 }, "_contentSize": { "__type__": "cc.Size", @@ -7352,11 +7391,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 321 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 325 + "__id__": 327 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7436,20 +7475,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 320 + "__id__": 322 }, "_children": [], "_active": true, "_components": [ { - "__id__": 328 + "__id__": 330 }, { - "__id__": 330 + "__id__": 332 } ], "_prefab": { - "__id__": 332 + "__id__": 334 }, "_lpos": { "__type__": "cc.Vec3", @@ -7486,11 +7525,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 329 + "__id__": 331 }, "_contentSize": { "__type__": "cc.Size", @@ -7514,11 +7553,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 333 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7572,20 +7611,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 320 + "__id__": 322 }, "_children": [], "_active": true, "_components": [ { - "__id__": 334 + "__id__": 336 }, { - "__id__": 336 + "__id__": 338 } ], "_prefab": { - "__id__": 338 + "__id__": 340 }, "_lpos": { "__type__": "cc.Vec3", @@ -7622,11 +7661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 333 + "__id__": 335 }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 337 }, "_contentSize": { "__type__": "cc.Size", @@ -7650,11 +7689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 333 + "__id__": 335 }, "_enabled": true, "__prefab": { - "__id__": 337 + "__id__": 339 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7734,11 +7773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 322 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 342 }, "_contentSize": { "__type__": "cc.Size", @@ -7762,11 +7801,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 322 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 344 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7807,15 +7846,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 322 }, "_enabled": true, "__prefab": { - "__id__": 344 + "__id__": 346 }, "clickEvents": [ { - "__id__": 345 + "__id__": 347 } ], "_interactable": true, @@ -7855,7 +7894,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 320 + "__id__": 322 }, "_id": "" }, @@ -7866,7 +7905,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 303 + "__id__": 305 }, "component": "", "_componentId": "06f47u6codPJodunp6ofax0", @@ -7879,11 +7918,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 320 + "__id__": 322 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 349 }, "_alignFlags": 16, "_target": null, @@ -7928,24 +7967,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 303 + "__id__": 305 }, "_children": [ { - "__id__": 350 + "__id__": 352 }, { - "__id__": 356 + "__id__": 358 }, { - "__id__": 362 + "__id__": 364 } ], "_active": true, "_components": [ - { - "__id__": 370 - }, { "__id__": 372 }, @@ -7953,11 +7989,14 @@ "__id__": 374 }, { - "__id__": 377 + "__id__": 376 + }, + { + "__id__": 379 } ], "_prefab": { - "__id__": 379 + "__id__": 381 }, "_lpos": { "__type__": "cc.Vec3", @@ -7994,20 +8033,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 351 }, "_children": [], "_active": true, "_components": [ { - "__id__": 351 + "__id__": 353 }, { - "__id__": 353 + "__id__": 355 } ], "_prefab": { - "__id__": 355 + "__id__": 357 }, "_lpos": { "__type__": "cc.Vec3", @@ -8044,11 +8083,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 352 }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 354 }, "_contentSize": { "__type__": "cc.Size", @@ -8072,11 +8111,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 352 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 356 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8156,20 +8195,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 351 }, "_children": [], "_active": true, "_components": [ { - "__id__": 357 + "__id__": 359 }, { - "__id__": 359 + "__id__": 361 } ], "_prefab": { - "__id__": 361 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -8206,11 +8245,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 358 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 360 }, "_contentSize": { "__type__": "cc.Size", @@ -8234,11 +8273,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 358 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 362 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8292,23 +8331,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 351 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 363 - }, { "__id__": 365 }, { "__id__": 367 + }, + { + "__id__": 369 } ], "_prefab": { - "__id__": 369 + "__id__": 371 }, "_lpos": { "__type__": "cc.Vec3", @@ -8345,11 +8384,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 366 }, "_contentSize": { "__type__": "cc.Size", @@ -8373,11 +8412,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 366 + "__id__": 368 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8444,11 +8483,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 370 }, "languageKey": "chatpanel.buyvip", "defaultText": "", @@ -8478,11 +8517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 351 }, "_enabled": true, "__prefab": { - "__id__": 371 + "__id__": 373 }, "_contentSize": { "__type__": "cc.Size", @@ -8506,11 +8545,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 351 }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 375 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8551,15 +8590,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 351 }, "_enabled": true, "__prefab": { - "__id__": 375 + "__id__": 377 }, "clickEvents": [ { - "__id__": 376 + "__id__": 378 } ], "_interactable": true, @@ -8599,7 +8638,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 349 + "__id__": 351 }, "_id": "" }, @@ -8610,7 +8649,7 @@ { "__type__": "cc.ClickEvent", "target": { - "__id__": 303 + "__id__": 305 }, "component": "", "_componentId": "06f47u6codPJodunp6ofax0", @@ -8623,11 +8662,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 351 }, "_enabled": true, "__prefab": { - "__id__": 378 + "__id__": 380 }, "_alignFlags": 16, "_target": null, @@ -8672,11 +8711,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 303 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 383 }, "_contentSize": { "__type__": "cc.Size", @@ -8700,11 +8739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 303 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 385 }, "_alignFlags": 40, "_target": null, @@ -8736,23 +8775,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 303 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 387 }, "timeLabel": { - "__id__": 324 + "__id__": 326 }, "timeBtnLabel": { - "__id__": 336 + "__id__": 338 }, "vipLabel": { - "__id__": 353 + "__id__": 355 }, "vipBtnLabel": { - "__id__": 365 + "__id__": 367 }, "_id": "" }, @@ -8766,11 +8805,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 303 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 389 }, "_opacity": 255, "_id": "" @@ -8802,20 +8841,20 @@ }, "_children": [ { - "__id__": 390 + "__id__": 392 } ], "_active": true, "_components": [ { - "__id__": 414 + "__id__": 416 }, { - "__id__": 416 + "__id__": 418 } ], "_prefab": { - "__id__": 418 + "__id__": 420 }, "_lpos": { "__type__": "cc.Vec3", @@ -8852,24 +8891,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 389 + "__id__": 391 }, "_children": [ { - "__id__": 391 + "__id__": 393 } ], "_active": true, "_components": [ { - "__id__": 409 + "__id__": 411 }, { - "__id__": 411 + "__id__": 413 } ], "_prefab": { - "__id__": 413 + "__id__": 415 }, "_lpos": { "__type__": "cc.Vec3", @@ -8906,27 +8945,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 390 + "__id__": 392 }, "_children": [ { - "__id__": 392 + "__id__": 394 } ], "_active": true, "_components": [ - { - "__id__": 402 - }, { "__id__": 404 }, { "__id__": 406 + }, + { + "__id__": 408 } ], "_prefab": { - "__id__": 408 + "__id__": 410 }, "_lpos": { "__type__": "cc.Vec3", @@ -8963,14 +9002,11 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 391 + "__id__": 393 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 393 - }, { "__id__": 395 }, @@ -8979,10 +9015,13 @@ }, { "__id__": 399 + }, + { + "__id__": 401 } ], "_prefab": { - "__id__": 401 + "__id__": 403 }, "_lpos": { "__type__": "cc.Vec3", @@ -9019,11 +9058,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 392 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 394 + "__id__": 396 }, "_contentSize": { "__type__": "cc.Size", @@ -9047,11 +9086,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 392 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 396 + "__id__": 398 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9089,11 +9128,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 392 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 398 + "__id__": 400 }, "_alignFlags": 12, "_target": null, @@ -9125,11 +9164,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 392 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 400 + "__id__": 402 }, "clickEvents": [], "_interactable": true, @@ -9194,11 +9233,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 393 }, "_enabled": true, "__prefab": { - "__id__": 403 + "__id__": 405 }, "_contentSize": { "__type__": "cc.Size", @@ -9222,11 +9261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 393 }, "_enabled": true, "__prefab": { - "__id__": 405 + "__id__": 407 }, "_type": 3, "_inverted": false, @@ -9244,11 +9283,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 393 }, "_enabled": true, "__prefab": { - "__id__": 407 + "__id__": 409 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9302,11 +9341,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 390 + "__id__": 392 }, "_enabled": true, "__prefab": { - "__id__": 410 + "__id__": 412 }, "_contentSize": { "__type__": "cc.Size", @@ -9330,11 +9369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 390 + "__id__": 392 }, "_enabled": true, "__prefab": { - "__id__": 412 + "__id__": 414 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9388,11 +9427,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 389 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 415 + "__id__": 417 }, "_contentSize": { "__type__": "cc.Size", @@ -9416,14 +9455,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 389 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 417 + "__id__": 419 }, "image": { - "__id__": 395 + "__id__": 397 }, "_id": "" }, @@ -9454,7 +9493,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 420 + "__id__": 422 }, "_contentSize": { "__type__": "cc.Size", @@ -9482,7 +9521,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 422 + "__id__": 424 }, "_alignFlags": 45, "_target": null, @@ -9518,11 +9557,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 424 + "__id__": 426 }, "m_rootNode": null, "payToTalkPanel": { - "__id__": 384 + "__id__": 386 }, "editBox": { "__id__": 219 @@ -9537,7 +9576,7 @@ "__id__": 67 }, "popUpImage": { - "__id__": 416 + "__id__": 418 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index 03c1aecd..76327d0c 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -1828,13 +1828,13 @@ "b": 255, "a": 255 }, - "_string": "18 years old young", - "_horizontalAlign": 0, + "_string": "", + "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 25, - "_fontSize": 24, + "_actualFontSize": 32, + "_fontSize": 31.2, "_fontFamily": "NotoSans-Regular", - "_lineHeight": 33.7, + "_lineHeight": 29.7, "_overflow": 2, "_enableWrapText": true, "_font": null, @@ -4652,7 +4652,7 @@ "r": 255, "g": 255, "b": 255, - "a": 255 + "a": 38 }, "_spriteFrame": { "__uuid__": "43f02ae8-b14e-41dd-84b7-cca8ef618332@f9941", @@ -4962,8 +4962,6 @@ "__id__": 0 }, "fileId": "dd+C9/bl9G+pTVWtxpnwWs", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -5424,7 +5422,7 @@ "r": 255, "g": 255, "b": 255, - "a": 255 + "a": 38 }, "_spriteFrame": { "__uuid__": "43f02ae8-b14e-41dd-84b7-cca8ef618332@f9941", @@ -7918,6 +7916,8 @@ "__id__": 0 }, "fileId": "47GAgASDxMgr95ufaUc9Za", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { diff --git a/assets/bundles/Chat18x/NavigationPanel.prefab b/assets/bundles/Chat18x/NavigationPanel.prefab index 1716c8b4..c66f9972 100644 --- a/assets/bundles/Chat18x/NavigationPanel.prefab +++ b/assets/bundles/Chat18x/NavigationPanel.prefab @@ -847,7 +847,7 @@ }, { "__type__": "cc.Node", - "_name": "ZY_UI_XTL_XZ", + "_name": "focusLight", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -1847,7 +1847,7 @@ "__id__": 100 } ], - "_active": true, + "_active": false, "_components": [ { "__id__": 114 @@ -1899,7 +1899,7 @@ }, { "__type__": "cc.Node", - "_name": "ZY_UI_XTL_XZ", + "_name": "focusLight", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -2922,7 +2922,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 95.75, + "x": -1.4499999999999886, "y": 79.546, "z": 0 }, @@ -2951,7 +2951,7 @@ }, { "__type__": "cc.Node", - "_name": "ZY_UI_XTL_XZ", + "_name": "focusLight", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -3974,7 +3974,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 283.25, + "x": 276.35, "y": 79.546, "z": 0 }, @@ -4003,7 +4003,7 @@ }, { "__type__": "cc.Node", - "_name": "ZY_UI_XTL_XZ", + "_name": "focusLight", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -5081,7 +5081,7 @@ "_paddingRight": 2, "_paddingTop": 0, "_paddingBottom": 0, - "_spacingX": 0, + "_spacingX": 90.3, "_spacingY": 0, "_verticalDirection": 1, "_horizontalDirection": 0, diff --git a/assets/bundles/Chat18x/PurchasePanel.prefab b/assets/bundles/Chat18x/PurchasePanel.prefab index 1d90461c..d4e9219e 100644 --- a/assets/bundles/Chat18x/PurchasePanel.prefab +++ b/assets/bundles/Chat18x/PurchasePanel.prefab @@ -28,20 +28,20 @@ "_active": true, "_components": [ { - "__id__": 489 + "__id__": 561 }, { - "__id__": 491 + "__id__": 563 }, { - "__id__": 493 + "__id__": 565 }, { - "__id__": 495 + "__id__": 567 } ], "_prefab": { - "__id__": 497 + "__id__": 569 }, "_lpos": { "__type__": "cc.Vec3", @@ -284,25 +284,25 @@ "_active": true, "_components": [ { - "__id__": 480 + "__id__": 552 }, { - "__id__": 482 + "__id__": 554 }, { - "__id__": 484 + "__id__": 556 }, { - "__id__": 486 + "__id__": 558 } ], "_prefab": { - "__id__": 488 + "__id__": 560 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 86.54100000000005, + "y": 70.40100000000005, "z": 0 }, "_lrot": { @@ -344,20 +344,20 @@ "_active": true, "_components": [ { - "__id__": 471 + "__id__": 543 }, { - "__id__": 473 + "__id__": 545 }, { - "__id__": 475 + "__id__": 547 }, { - "__id__": 477 + "__id__": 549 } ], "_prefab": { - "__id__": 479 + "__id__": 551 }, "_lpos": { "__type__": "cc.Vec3", @@ -404,11 +404,11 @@ "_active": true, "_components": [ { - "__id__": 468 + "__id__": 540 } ], "_prefab": { - "__id__": 470 + "__id__": 542 }, "_lpos": { "__type__": "cc.Vec3", @@ -461,17 +461,17 @@ "_active": true, "_components": [ { - "__id__": 461 + "__id__": 533 }, { - "__id__": 463 + "__id__": 535 }, { - "__id__": 465 + "__id__": 537 } ], "_prefab": { - "__id__": 467 + "__id__": 539 }, "_lpos": { "__type__": "cc.Vec3", @@ -3901,14 +3901,14 @@ "_active": true, "_components": [ { - "__id__": 456 + "__id__": 528 }, { - "__id__": 458 + "__id__": 530 } ], "_prefab": { - "__id__": 460 + "__id__": 532 }, "_lpos": { "__type__": "cc.Vec3", @@ -6603,35 +6603,35 @@ "__id__": 269 }, { - "__id__": 299 + "__id__": 311 }, { - "__id__": 329 + "__id__": 353 }, { - "__id__": 359 + "__id__": 395 }, { - "__id__": 389 + "__id__": 437 }, { - "__id__": 419 + "__id__": 479 } ], "_active": true, "_components": [ { - "__id__": 449 + "__id__": 521 }, { - "__id__": 451 + "__id__": 523 }, { - "__id__": 453 + "__id__": 525 } ], "_prefab": { - "__id__": 455 + "__id__": 527 }, "_lpos": { "__type__": "cc.Vec3", @@ -6684,20 +6684,20 @@ "_active": true, "_components": [ { - "__id__": 290 + "__id__": 302 }, { - "__id__": 292 + "__id__": 304 }, { - "__id__": 294 + "__id__": 306 }, { - "__id__": 296 + "__id__": 308 } ], "_prefab": { - "__id__": 298 + "__id__": 310 }, "_lpos": { "__type__": "cc.Vec3", @@ -7028,27 +7028,31 @@ }, { "__type__": "cc.Node", - "_name": "price", - "_objFlags": 512, + "_name": "layout", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 269 }, - "_children": [], - "_active": true, - "_components": [ + "_children": [ { "__id__": 283 }, { - "__id__": 285 + "__id__": 289 + } + ], + "_active": true, + "_components": [ + { + "__id__": 297 }, { - "__id__": 287 + "__id__": 299 } ], "_prefab": { - "__id__": 289 + "__id__": 301 }, "_lpos": { "__type__": "cc.Vec3", @@ -7079,22 +7083,72 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "usdt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 282 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 284 + }, + { + "__id__": 286 + } + ], + "_prefab": { + "__id__": 288 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.1943359375, + "y": 0.4630000000000791, + "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__": 282 + "__id__": 283 }, "_enabled": true, "__prefab": { - "__id__": 284 + "__id__": 285 }, "_contentSize": { "__type__": "cc.Size", - "width": 199, - "height": 57.4 + "width": 40, + "height": 45 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -7105,7 +7159,146 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "6aodXxmJlL97WwH8xbXCJ7" + "fileId": "95yWd4qX1C+4ba4rR9hq5J" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 283 + }, + "_enabled": true, + "__prefab": { + "__id__": 287 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@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": "26t6Z8hHtNnodlgy33wEaO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3b57hqorVG2ZthDgZlkhsy", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 282 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 290 + }, + { + "__id__": 292 + }, + { + "__id__": 294 + } + ], + "_prefab": { + "__id__": 296 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 1.8389999999999311, + "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__": 289 + }, + "_enabled": true, + "__prefab": { + "__id__": 291 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58.388671875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8ps1lOA1HdIL7nEhyI3sL" }, { "__type__": "cc.Label", @@ -7113,11 +7306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 289 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 293 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7136,7 +7329,7 @@ "_fontSize": 30, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": false, "_font": null, "_isSystemFontUsed": true, @@ -7173,7 +7366,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "3eJt2h3zdFhoWLDEFgj8CR" + "fileId": "6bXJzAMcBCvr9F02SVBzt1" }, { "__type__": "cc.Widget", @@ -7181,18 +7374,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 289 }, "_enabled": true, "__prefab": { - "__id__": 288 + "__id__": 295 }, "_alignFlags": 4, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 1.8389999999999311, + "_bottom": 5.338999999999931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -7209,7 +7402,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "5aSp/0GUpNKYzUjtlolvU/" + "fileId": "da3N7Z4bFNtYzbhIKPPIC6" }, { "__type__": "cc.PrefabInfo", @@ -7219,7 +7412,86 @@ "asset": { "__id__": 0 }, - "fileId": "025VFjBmpPBqY1zA6q2eeQ", + "fileId": "c5gx1dIPJFK7oiEgng0JYM", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 282 + }, + "_enabled": true, + "__prefab": { + "__id__": 298 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 98.388671875, + "height": 57.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c9pra5qAdNvp48Pem/tf+B" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 282 + }, + "_enabled": true, + "__prefab": { + "__id__": 300 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_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": "e1JRQtmp9IZLCtNpMd4j28" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7vrFC5DxKE41G9j4L8gD/", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -7234,7 +7506,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 303 }, "_contentSize": { "__type__": "cc.Size", @@ -7262,7 +7534,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 305 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7307,7 +7579,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 307 }, "clickEvents": [], "_interactable": true, @@ -7365,17 +7637,20 @@ }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 309 }, "count": { "__id__": 279 }, "price": { - "__id__": 285 + "__id__": 292 }, "icon": { "__id__": 273 }, + "usdt": { + "__id__": 286 + }, "_id": "" }, { @@ -7404,33 +7679,33 @@ "__id__": 268 }, "_children": [ - { - "__id__": 300 - }, - { - "__id__": 306 - }, { "__id__": 312 + }, + { + "__id__": 318 + }, + { + "__id__": 324 } ], "_active": true, "_components": [ { - "__id__": 320 + "__id__": 344 }, { - "__id__": 322 + "__id__": 346 }, { - "__id__": 324 + "__id__": 348 }, { - "__id__": 326 + "__id__": 350 } ], "_prefab": { - "__id__": 328 + "__id__": 352 }, "_lpos": { "__type__": "cc.Vec3", @@ -7467,20 +7742,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 299 + "__id__": 311 }, "_children": [], "_active": true, "_components": [ { - "__id__": 301 + "__id__": 313 }, { - "__id__": 303 + "__id__": 315 } ], "_prefab": { - "__id__": 305 + "__id__": 317 }, "_lpos": { "__type__": "cc.Vec3", @@ -7517,11 +7792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 300 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 302 + "__id__": 314 }, "_contentSize": { "__type__": "cc.Size", @@ -7545,11 +7820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 300 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 316 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7603,20 +7878,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 299 + "__id__": 311 }, "_children": [], "_active": true, "_components": [ { - "__id__": 307 + "__id__": 319 }, { - "__id__": 309 + "__id__": 321 } ], "_prefab": { - "__id__": 311 + "__id__": 323 }, "_lpos": { "__type__": "cc.Vec3", @@ -7653,11 +7928,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 306 + "__id__": 318 }, "_enabled": true, "__prefab": { - "__id__": 308 + "__id__": 320 }, "_contentSize": { "__type__": "cc.Size", @@ -7681,11 +7956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 306 + "__id__": 318 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 322 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7761,27 +8036,31 @@ }, { "__type__": "cc.Node", - "_name": "price", - "_objFlags": 512, + "_name": "layout", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 299 + "__id__": 311 }, - "_children": [], + "_children": [ + { + "__id__": 325 + }, + { + "__id__": 331 + } + ], "_active": true, "_components": [ { - "__id__": 313 + "__id__": 339 }, { - "__id__": 315 - }, - { - "__id__": 317 + "__id__": 341 } ], "_prefab": { - "__id__": 319 + "__id__": 343 }, "_lpos": { "__type__": "cc.Vec3", @@ -7812,22 +8091,72 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "usdt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 324 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 326 + }, + { + "__id__": 328 + } + ], + "_prefab": { + "__id__": 330 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.1943359375, + "y": 0.4630000000000791, + "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__": 312 + "__id__": 325 }, "_enabled": true, "__prefab": { - "__id__": 314 + "__id__": 327 }, "_contentSize": { "__type__": "cc.Size", - "width": 199, - "height": 57.4 + "width": 40, + "height": 45 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -7838,7 +8167,146 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "8fqgYqoCtEMLFuEEVezgzL" + "fileId": "51wOAKuYZPVpw4reZ68cgg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 325 + }, + "_enabled": true, + "__prefab": { + "__id__": 329 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@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": "3caKVBq2lFc7MiaI5PIPqq" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7a06YsJO5Bop0gg7JfuxLJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 324 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 332 + }, + { + "__id__": 334 + }, + { + "__id__": 336 + } + ], + "_prefab": { + "__id__": 338 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 1.8389999999999311, + "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__": 331 + }, + "_enabled": true, + "__prefab": { + "__id__": 333 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58.388671875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "13slQD4WFOYqGA70NgBv3s" }, { "__type__": "cc.Label", @@ -7846,11 +8314,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 312 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 335 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7869,7 +8337,7 @@ "_fontSize": 30, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": false, "_font": null, "_isSystemFontUsed": true, @@ -7906,7 +8374,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "1cn6V9HVBHYr/wn/2eKlEd" + "fileId": "bfMfutD3JG6rLRRlaTzVbv" }, { "__type__": "cc.Widget", @@ -7914,18 +8382,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 312 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 337 }, "_alignFlags": 4, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 1.8389999999999311, + "_bottom": 5.338999999999931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -7942,7 +8410,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "0fyI+TtpZKw4GsyTjl1NSG" + "fileId": "7409RiHM9F67lbBmXFpMNq" }, { "__type__": "cc.PrefabInfo", @@ -7952,7 +8420,7 @@ "asset": { "__id__": 0 }, - "fileId": "d13RQg7e9JpoRwQg+U3CQV", + "fileId": "b1W91tozRLQZv7zjea0bfo", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -7963,11 +8431,90 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 299 + "__id__": 324 }, "_enabled": true, "__prefab": { - "__id__": 321 + "__id__": 340 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 98.388671875, + "height": 57.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "73ikc6MI5Drqxbzg6Dt5Qn" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 324 + }, + "_enabled": true, + "__prefab": { + "__id__": 342 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_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": "9aoXIW9K1EdpLq6IHkmXIs" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ebHSRHT25ITL4YpFjomJaK", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 311 + }, + "_enabled": true, + "__prefab": { + "__id__": 345 }, "_contentSize": { "__type__": "cc.Size", @@ -7991,11 +8538,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 299 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 347 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8036,11 +8583,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 299 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 325 + "__id__": 349 }, "clickEvents": [], "_interactable": true, @@ -8080,7 +8627,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 299 + "__id__": 311 }, "_id": "" }, @@ -8094,20 +8641,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 299 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 327 + "__id__": 351 }, "count": { - "__id__": 309 + "__id__": 321 }, "price": { - "__id__": 315 + "__id__": 334 }, "icon": { - "__id__": 303 + "__id__": 315 + }, + "usdt": { + "__id__": 328 }, "_id": "" }, @@ -8138,32 +8688,32 @@ }, "_children": [ { - "__id__": 330 + "__id__": 354 }, { - "__id__": 336 + "__id__": 360 }, { - "__id__": 342 + "__id__": 366 } ], "_active": true, "_components": [ { - "__id__": 350 + "__id__": 386 }, { - "__id__": 352 + "__id__": 388 }, { - "__id__": 354 + "__id__": 390 }, { - "__id__": 356 + "__id__": 392 } ], "_prefab": { - "__id__": 358 + "__id__": 394 }, "_lpos": { "__type__": "cc.Vec3", @@ -8200,20 +8750,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 329 + "__id__": 353 }, "_children": [], "_active": true, "_components": [ { - "__id__": 331 + "__id__": 355 }, { - "__id__": 333 + "__id__": 357 } ], "_prefab": { - "__id__": 335 + "__id__": 359 }, "_lpos": { "__type__": "cc.Vec3", @@ -8250,11 +8800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 330 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 332 + "__id__": 356 }, "_contentSize": { "__type__": "cc.Size", @@ -8278,11 +8828,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 330 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 334 + "__id__": 358 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8336,20 +8886,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 329 + "__id__": 353 }, "_children": [], "_active": true, "_components": [ { - "__id__": 337 + "__id__": 361 }, { - "__id__": 339 + "__id__": 363 } ], "_prefab": { - "__id__": 341 + "__id__": 365 }, "_lpos": { "__type__": "cc.Vec3", @@ -8386,11 +8936,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 336 + "__id__": 360 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 362 }, "_contentSize": { "__type__": "cc.Size", @@ -8414,11 +8964,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 336 + "__id__": 360 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 364 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8494,27 +9044,31 @@ }, { "__type__": "cc.Node", - "_name": "price", - "_objFlags": 512, + "_name": "layout", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 329 + "__id__": 353 }, - "_children": [], + "_children": [ + { + "__id__": 367 + }, + { + "__id__": 373 + } + ], "_active": true, "_components": [ { - "__id__": 343 + "__id__": 381 }, { - "__id__": 345 - }, - { - "__id__": 347 + "__id__": 383 } ], "_prefab": { - "__id__": 349 + "__id__": 385 }, "_lpos": { "__type__": "cc.Vec3", @@ -8545,22 +9099,72 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "usdt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 366 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 368 + }, + { + "__id__": 370 + } + ], + "_prefab": { + "__id__": 372 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.1943359375, + "y": 0.4630000000000791, + "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__": 342 + "__id__": 367 }, "_enabled": true, "__prefab": { - "__id__": 344 + "__id__": 369 }, "_contentSize": { "__type__": "cc.Size", - "width": 199, - "height": 57.4 + "width": 40, + "height": 45 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -8571,7 +9175,146 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "4dgqDl65FCOZP3l4nkg2QE" + "fileId": "01lk81d5xGTZ780BTE5WyE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 367 + }, + "_enabled": true, + "__prefab": { + "__id__": 371 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@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": "c26pbGCqpBHYjxjDhrHRbt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "07v6JNISZFWq2cpICIo/5W", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 366 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 374 + }, + { + "__id__": 376 + }, + { + "__id__": 378 + } + ], + "_prefab": { + "__id__": 380 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 1.8389999999999311, + "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__": 373 + }, + "_enabled": true, + "__prefab": { + "__id__": 375 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58.388671875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b3psiqbxNORbsbwTaQS6EE" }, { "__type__": "cc.Label", @@ -8579,11 +9322,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 342 + "__id__": 373 }, "_enabled": true, "__prefab": { - "__id__": 346 + "__id__": 377 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8602,7 +9345,7 @@ "_fontSize": 30, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": false, "_font": null, "_isSystemFontUsed": true, @@ -8639,7 +9382,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "f86N9Zb75Hwb7IV/odQDqr" + "fileId": "ccsVDqYZVIGIw+DZJUExUa" }, { "__type__": "cc.Widget", @@ -8647,18 +9390,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 342 + "__id__": 373 }, "_enabled": true, "__prefab": { - "__id__": 348 + "__id__": 379 }, "_alignFlags": 4, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 1.8389999999999311, + "_bottom": 5.338999999999931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -8675,7 +9418,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "0b3zpT7f9PNIEc/uOmxVtR" + "fileId": "83CgqA46tAqISl7K22Pc38" }, { "__type__": "cc.PrefabInfo", @@ -8685,7 +9428,7 @@ "asset": { "__id__": 0 }, - "fileId": "ffvKS/pX5L2JstAaYrAZa8", + "fileId": "f2vJr0CUxLyKeI/qaxczkd", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -8696,11 +9439,90 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 366 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 382 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 98.388671875, + "height": 57.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9fgGdf/5BA0ZaCnyTNiWpx" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 366 + }, + "_enabled": true, + "__prefab": { + "__id__": 384 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_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": "26pFw2tgNA/JYdxo1bAPtc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fC8Z0Ly1Mm5dj9IMMLuf/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 353 + }, + "_enabled": true, + "__prefab": { + "__id__": 387 }, "_contentSize": { "__type__": "cc.Size", @@ -8724,11 +9546,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 353 }, "_enabled": true, "__prefab": { - "__id__": 353 + "__id__": 389 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8769,11 +9591,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 353 }, "_enabled": true, "__prefab": { - "__id__": 355 + "__id__": 391 }, "clickEvents": [], "_interactable": true, @@ -8813,7 +9635,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 329 + "__id__": 353 }, "_id": "" }, @@ -8827,20 +9649,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 353 }, "_enabled": true, "__prefab": { - "__id__": 357 + "__id__": 393 }, "count": { - "__id__": 339 + "__id__": 363 }, "price": { - "__id__": 345 + "__id__": 376 }, "icon": { - "__id__": 333 + "__id__": 357 + }, + "usdt": { + "__id__": 370 }, "_id": "" }, @@ -8871,32 +9696,32 @@ }, "_children": [ { - "__id__": 360 + "__id__": 396 }, { - "__id__": 366 + "__id__": 402 }, { - "__id__": 372 + "__id__": 408 } ], "_active": true, "_components": [ { - "__id__": 380 + "__id__": 428 }, { - "__id__": 382 + "__id__": 430 }, { - "__id__": 384 + "__id__": 432 }, { - "__id__": 386 + "__id__": 434 } ], "_prefab": { - "__id__": 388 + "__id__": 436 }, "_lpos": { "__type__": "cc.Vec3", @@ -8933,20 +9758,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 359 + "__id__": 395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 361 + "__id__": 397 }, { - "__id__": 363 + "__id__": 399 } ], "_prefab": { - "__id__": 365 + "__id__": 401 }, "_lpos": { "__type__": "cc.Vec3", @@ -8983,11 +9808,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 360 + "__id__": 396 }, "_enabled": true, "__prefab": { - "__id__": 362 + "__id__": 398 }, "_contentSize": { "__type__": "cc.Size", @@ -9011,11 +9836,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 360 + "__id__": 396 }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 400 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9069,20 +9894,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 359 + "__id__": 395 }, "_children": [], "_active": true, "_components": [ { - "__id__": 367 + "__id__": 403 }, { - "__id__": 369 + "__id__": 405 } ], "_prefab": { - "__id__": 371 + "__id__": 407 }, "_lpos": { "__type__": "cc.Vec3", @@ -9119,11 +9944,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 366 + "__id__": 402 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 404 }, "_contentSize": { "__type__": "cc.Size", @@ -9147,11 +9972,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 366 + "__id__": 402 }, "_enabled": true, "__prefab": { - "__id__": 370 + "__id__": 406 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9227,27 +10052,31 @@ }, { "__type__": "cc.Node", - "_name": "price", - "_objFlags": 512, + "_name": "layout", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 359 + "__id__": 395 }, - "_children": [], + "_children": [ + { + "__id__": 409 + }, + { + "__id__": 415 + } + ], "_active": true, "_components": [ { - "__id__": 373 + "__id__": 423 }, { - "__id__": 375 - }, - { - "__id__": 377 + "__id__": 425 } ], "_prefab": { - "__id__": 379 + "__id__": 427 }, "_lpos": { "__type__": "cc.Vec3", @@ -9278,22 +10107,72 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "usdt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 408 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 410 + }, + { + "__id__": 412 + } + ], + "_prefab": { + "__id__": 414 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.1943359375, + "y": 0.4630000000000791, + "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__": 372 + "__id__": 409 }, "_enabled": true, "__prefab": { - "__id__": 374 + "__id__": 411 }, "_contentSize": { "__type__": "cc.Size", - "width": 199, - "height": 57.4 + "width": 40, + "height": 45 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -9304,7 +10183,146 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "ad1LrnROZCMqzQVthRx8V3" + "fileId": "0egjLcLIlJmI6yAC7BYBQP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 409 + }, + "_enabled": true, + "__prefab": { + "__id__": 413 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@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": "96HhftrcpEtanQWP1f3qFE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19C06G/l1MBKcXRfhDiblj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 408 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 416 + }, + { + "__id__": 418 + }, + { + "__id__": 420 + } + ], + "_prefab": { + "__id__": 422 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 1.8389999999999311, + "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__": 415 + }, + "_enabled": true, + "__prefab": { + "__id__": 417 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58.388671875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fRtII5zlHj7OwkXI9F9V5" }, { "__type__": "cc.Label", @@ -9312,11 +10330,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 372 + "__id__": 415 }, "_enabled": true, "__prefab": { - "__id__": 376 + "__id__": 419 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9335,7 +10353,7 @@ "_fontSize": 30, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": false, "_font": null, "_isSystemFontUsed": true, @@ -9372,7 +10390,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "cdSynhBcNPW6L/p1rqUqva" + "fileId": "694Ei1c7NKVoD5Zf6hUVGS" }, { "__type__": "cc.Widget", @@ -9380,18 +10398,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 372 + "__id__": 415 }, "_enabled": true, "__prefab": { - "__id__": 378 + "__id__": 421 }, "_alignFlags": 4, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 1.8389999999999311, + "_bottom": 5.338999999999931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -9408,7 +10426,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "59bJhARh1AKpgUuvYXoeK4" + "fileId": "6ajUKEapZM35+TODyJPgZs" }, { "__type__": "cc.PrefabInfo", @@ -9418,7 +10436,7 @@ "asset": { "__id__": 0 }, - "fileId": "28UyYYWD1O3qpl8xDZReEg", + "fileId": "78/YFpdatBGI1RaL0Ruk1j", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -9429,11 +10447,90 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 359 + "__id__": 408 }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 424 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 98.388671875, + "height": 57.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "41if6UxidCvZ7Uwjly0wAn" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 408 + }, + "_enabled": true, + "__prefab": { + "__id__": 426 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_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": "95fZ3Gm29GQ63WBvP3xb+9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "31ij9NxYJAwLB1t4W0vezM", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 395 + }, + "_enabled": true, + "__prefab": { + "__id__": 429 }, "_contentSize": { "__type__": "cc.Size", @@ -9457,11 +10554,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 359 + "__id__": 395 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 431 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9502,11 +10599,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 359 + "__id__": 395 }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 433 }, "clickEvents": [], "_interactable": true, @@ -9546,7 +10643,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 359 + "__id__": 395 }, "_id": "" }, @@ -9560,20 +10657,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 359 + "__id__": 395 }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 435 }, "count": { - "__id__": 369 + "__id__": 405 }, "price": { - "__id__": 375 + "__id__": 418 }, "icon": { - "__id__": 363 + "__id__": 399 + }, + "usdt": { + "__id__": 412 }, "_id": "" }, @@ -9604,32 +10704,32 @@ }, "_children": [ { - "__id__": 390 + "__id__": 438 }, { - "__id__": 396 + "__id__": 444 }, { - "__id__": 402 + "__id__": 450 } ], "_active": true, "_components": [ { - "__id__": 410 + "__id__": 470 }, { - "__id__": 412 + "__id__": 472 }, { - "__id__": 414 + "__id__": 474 }, { - "__id__": 416 + "__id__": 476 } ], "_prefab": { - "__id__": 418 + "__id__": 478 }, "_lpos": { "__type__": "cc.Vec3", @@ -9666,20 +10766,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 389 + "__id__": 437 }, "_children": [], "_active": true, "_components": [ { - "__id__": 391 + "__id__": 439 }, { - "__id__": 393 + "__id__": 441 } ], "_prefab": { - "__id__": 395 + "__id__": 443 }, "_lpos": { "__type__": "cc.Vec3", @@ -9716,11 +10816,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 390 + "__id__": 438 }, "_enabled": true, "__prefab": { - "__id__": 392 + "__id__": 440 }, "_contentSize": { "__type__": "cc.Size", @@ -9744,11 +10844,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 390 + "__id__": 438 }, "_enabled": true, "__prefab": { - "__id__": 394 + "__id__": 442 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9802,20 +10902,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 389 + "__id__": 437 }, "_children": [], "_active": true, "_components": [ { - "__id__": 397 + "__id__": 445 }, { - "__id__": 399 + "__id__": 447 } ], "_prefab": { - "__id__": 401 + "__id__": 449 }, "_lpos": { "__type__": "cc.Vec3", @@ -9852,11 +10952,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 396 + "__id__": 444 }, "_enabled": true, "__prefab": { - "__id__": 398 + "__id__": 446 }, "_contentSize": { "__type__": "cc.Size", @@ -9880,11 +10980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 396 + "__id__": 444 }, "_enabled": true, "__prefab": { - "__id__": 400 + "__id__": 448 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9960,27 +11060,31 @@ }, { "__type__": "cc.Node", - "_name": "price", - "_objFlags": 512, + "_name": "layout", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 389 + "__id__": 437 }, - "_children": [], + "_children": [ + { + "__id__": 451 + }, + { + "__id__": 457 + } + ], "_active": true, "_components": [ { - "__id__": 403 + "__id__": 465 }, { - "__id__": 405 - }, - { - "__id__": 407 + "__id__": 467 } ], "_prefab": { - "__id__": 409 + "__id__": 469 }, "_lpos": { "__type__": "cc.Vec3", @@ -10011,22 +11115,211 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "usdt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 450 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 452 + }, + { + "__id__": 454 + } + ], + "_prefab": { + "__id__": 456 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.1943359375, + "y": 0.4630000000000791, + "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__": 402 + "__id__": 451 }, "_enabled": true, "__prefab": { - "__id__": 404 + "__id__": 453 }, "_contentSize": { "__type__": "cc.Size", - "width": 199, - "height": 57.4 + "width": 40, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3ciYjHCudLW55eTg5wbXbs" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 451 + }, + "_enabled": true, + "__prefab": { + "__id__": 455 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@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": "e4WgbaEcFJPb5rgmc4paqF" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d6G/Ko28hDQKYKep7jJSFG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 450 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 458 + }, + { + "__id__": 460 + }, + { + "__id__": 462 + } + ], + "_prefab": { + "__id__": 464 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 1.8389999999999311, + "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__": 457 + }, + "_enabled": true, + "__prefab": { + "__id__": 459 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58.388671875, + "height": 50.4 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -10045,11 +11338,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 402 + "__id__": 457 }, "_enabled": true, "__prefab": { - "__id__": 406 + "__id__": 461 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10068,7 +11361,7 @@ "_fontSize": 30, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": false, "_font": null, "_isSystemFontUsed": true, @@ -10113,18 +11406,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 402 + "__id__": 457 }, "_enabled": true, "__prefab": { - "__id__": 408 + "__id__": 463 }, "_alignFlags": 4, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 1.8389999999999311, + "_bottom": 5.338999999999931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -10162,11 +11455,90 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 389 + "__id__": 450 }, "_enabled": true, "__prefab": { - "__id__": 411 + "__id__": 466 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 98.388671875, + "height": 57.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2ZiSfJhVEIajHrPlXOz+S" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 450 + }, + "_enabled": true, + "__prefab": { + "__id__": 468 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_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": "4b0+hJdJNJT7iwWkz3QL97" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49dwNfwS5B0pFK3HpgK25R", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 437 + }, + "_enabled": true, + "__prefab": { + "__id__": 471 }, "_contentSize": { "__type__": "cc.Size", @@ -10190,11 +11562,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 389 + "__id__": 437 }, "_enabled": true, "__prefab": { - "__id__": 413 + "__id__": 473 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10235,11 +11607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 389 + "__id__": 437 }, "_enabled": true, "__prefab": { - "__id__": 415 + "__id__": 475 }, "clickEvents": [], "_interactable": true, @@ -10279,7 +11651,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 389 + "__id__": 437 }, "_id": "" }, @@ -10293,20 +11665,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 389 + "__id__": 437 }, "_enabled": true, "__prefab": { - "__id__": 417 + "__id__": 477 }, "count": { - "__id__": 399 + "__id__": 447 }, "price": { - "__id__": 405 + "__id__": 460 }, "icon": { - "__id__": 393 + "__id__": 441 + }, + "usdt": { + "__id__": 454 }, "_id": "" }, @@ -10337,32 +11712,32 @@ }, "_children": [ { - "__id__": 420 + "__id__": 480 }, { - "__id__": 426 + "__id__": 486 }, { - "__id__": 432 + "__id__": 492 } ], "_active": true, "_components": [ { - "__id__": 440 + "__id__": 512 }, { - "__id__": 442 + "__id__": 514 }, { - "__id__": 444 + "__id__": 516 }, { - "__id__": 446 + "__id__": 518 } ], "_prefab": { - "__id__": 448 + "__id__": 520 }, "_lpos": { "__type__": "cc.Vec3", @@ -10399,20 +11774,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 419 + "__id__": 479 }, "_children": [], "_active": true, "_components": [ { - "__id__": 421 + "__id__": 481 }, { - "__id__": 423 + "__id__": 483 } ], "_prefab": { - "__id__": 425 + "__id__": 485 }, "_lpos": { "__type__": "cc.Vec3", @@ -10449,11 +11824,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 420 + "__id__": 480 }, "_enabled": true, "__prefab": { - "__id__": 422 + "__id__": 482 }, "_contentSize": { "__type__": "cc.Size", @@ -10477,11 +11852,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 420 + "__id__": 480 }, "_enabled": true, "__prefab": { - "__id__": 424 + "__id__": 484 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10535,20 +11910,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 419 + "__id__": 479 }, "_children": [], "_active": true, "_components": [ { - "__id__": 427 + "__id__": 487 }, { - "__id__": 429 + "__id__": 489 } ], "_prefab": { - "__id__": 431 + "__id__": 491 }, "_lpos": { "__type__": "cc.Vec3", @@ -10585,11 +11960,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 426 + "__id__": 486 }, "_enabled": true, "__prefab": { - "__id__": 428 + "__id__": 488 }, "_contentSize": { "__type__": "cc.Size", @@ -10613,11 +11988,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 426 + "__id__": 486 }, "_enabled": true, "__prefab": { - "__id__": 430 + "__id__": 490 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10693,27 +12068,31 @@ }, { "__type__": "cc.Node", - "_name": "price", - "_objFlags": 512, + "_name": "layout", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 419 + "__id__": 479 }, - "_children": [], + "_children": [ + { + "__id__": 493 + }, + { + "__id__": 499 + } + ], "_active": true, "_components": [ { - "__id__": 433 + "__id__": 507 }, { - "__id__": 435 - }, - { - "__id__": 437 + "__id__": 509 } ], "_prefab": { - "__id__": 439 + "__id__": 511 }, "_lpos": { "__type__": "cc.Vec3", @@ -10744,22 +12123,72 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "usdt", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 492 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 494 + }, + { + "__id__": 496 + } + ], + "_prefab": { + "__id__": 498 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -29.1943359375, + "y": 0.4630000000000791, + "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__": 432 + "__id__": 493 }, "_enabled": true, "__prefab": { - "__id__": 434 + "__id__": 495 }, "_contentSize": { "__type__": "cc.Size", - "width": 199, - "height": 57.4 + "width": 40, + "height": 45 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -10770,7 +12199,146 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "b7lIF7ZftO5aRTAb9Do0bk" + "fileId": "35wyj3t9dFyrSHFqfrHVN9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 493 + }, + "_enabled": true, + "__prefab": { + "__id__": 497 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@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": "0a4Q2NT3NEsKTuDBWMGTGj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ffFWJyE6pJGoFmd1+shfsn", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 492 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 500 + }, + { + "__id__": 502 + }, + { + "__id__": 504 + } + ], + "_prefab": { + "__id__": 506 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 1.8389999999999311, + "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__": 499 + }, + "_enabled": true, + "__prefab": { + "__id__": 501 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 58.388671875, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "70o4XNAc1Co6ApO0BCXq/T" }, { "__type__": "cc.Label", @@ -10778,11 +12346,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 432 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 436 + "__id__": 503 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10801,7 +12369,7 @@ "_fontSize": 30, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": false, "_font": null, "_isSystemFontUsed": true, @@ -10838,7 +12406,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "51V2vmKCZIUre1asnGpn9+" + "fileId": "b0k5x6ADRFB4rrqdt1NIPY" }, { "__type__": "cc.Widget", @@ -10846,18 +12414,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 432 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 438 + "__id__": 505 }, "_alignFlags": 4, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 1.8389999999999311, + "_bottom": 5.338999999999931, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -10874,7 +12442,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "6fYqXdK31JratQrpuggvAY" + "fileId": "8fGicPVHpFcIWUEfv15FOZ" }, { "__type__": "cc.PrefabInfo", @@ -10884,7 +12452,7 @@ "asset": { "__id__": 0 }, - "fileId": "58BXjiUudKzrzGeazQf2z7", + "fileId": "3aT5Yv+fVNW5KB5i3/i2ze", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -10895,11 +12463,90 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 419 + "__id__": 492 }, "_enabled": true, "__prefab": { - "__id__": 441 + "__id__": 508 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 98.388671875, + "height": 57.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5a6xTUZ/tIUIinpI/NRDvL" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 492 + }, + "_enabled": true, + "__prefab": { + "__id__": 510 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_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": "21BxfuUNtMXJCXELBTh+qH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "55H2N7K1hHfLsj5wQcRJnd", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 479 + }, + "_enabled": true, + "__prefab": { + "__id__": 513 }, "_contentSize": { "__type__": "cc.Size", @@ -10923,11 +12570,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 419 + "__id__": 479 }, "_enabled": true, "__prefab": { - "__id__": 443 + "__id__": 515 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10968,11 +12615,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 419 + "__id__": 479 }, "_enabled": true, "__prefab": { - "__id__": 445 + "__id__": 517 }, "clickEvents": [], "_interactable": true, @@ -11012,7 +12659,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 419 + "__id__": 479 }, "_id": "" }, @@ -11026,20 +12673,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 419 + "__id__": 479 }, "_enabled": true, "__prefab": { - "__id__": 447 + "__id__": 519 }, "count": { - "__id__": 429 + "__id__": 489 }, "price": { - "__id__": 435 + "__id__": 502 }, "icon": { - "__id__": 423 + "__id__": 483 + }, + "usdt": { + "__id__": 496 }, "_id": "" }, @@ -11070,7 +12720,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 450 + "__id__": 522 }, "_contentSize": { "__type__": "cc.Size", @@ -11098,7 +12748,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 452 + "__id__": 524 }, "_resizeMode": 1, "_layoutType": 3, @@ -11136,7 +12786,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 454 + "__id__": 526 }, "_alignFlags": 16, "_target": null, @@ -11185,7 +12835,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 457 + "__id__": 529 }, "_contentSize": { "__type__": "cc.Size", @@ -11213,7 +12863,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 459 + "__id__": 531 }, "_alignFlags": 0, "_target": null, @@ -11262,7 +12912,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 462 + "__id__": 534 }, "_contentSize": { "__type__": "cc.Size", @@ -11290,7 +12940,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 464 + "__id__": 536 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11335,7 +12985,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 466 + "__id__": 538 }, "_alignFlags": 17, "_target": null, @@ -11384,12 +13034,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 469 + "__id__": 541 }, "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1347 + "height": 1411.559 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -11425,12 +13075,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 472 + "__id__": 544 }, "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1422.6 + "height": 1454.8799999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -11453,7 +13103,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 474 + "__id__": 546 }, "_type": 0, "_inverted": false, @@ -11475,7 +13125,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 476 + "__id__": 548 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11521,7 +13171,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 478 + "__id__": 550 }, "_alignFlags": 45, "_target": null, @@ -11570,12 +13220,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 481 + "__id__": 553 }, "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1422.6 + "height": 1454.8799999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -11598,7 +13248,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 483 + "__id__": 555 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11643,7 +13293,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 485 + "__id__": 557 }, "bounceDuration": 0.23, "brake": 0.75, @@ -11674,14 +13324,14 @@ }, "_enabled": true, "__prefab": { - "__id__": 487 + "__id__": 559 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 2.158999999999992, - "_bottom": 175.2410000000001, + "_top": 2.1590000000000202, + "_bottom": 142.96100000000018, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -11723,7 +13373,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 490 + "__id__": 562 }, "_contentSize": { "__type__": "cc.Size", @@ -11751,7 +13401,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 492 + "__id__": 564 }, "_alignFlags": 45, "_target": null, @@ -11787,7 +13437,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 494 + "__id__": 566 }, "_id": "" }, @@ -11805,27 +13455,27 @@ }, "_enabled": true, "__prefab": { - "__id__": 496 + "__id__": 568 }, "m_rootNode": null, "items": [ { - "__id__": 296 + "__id__": 308 }, { - "__id__": 326 + "__id__": 350 }, { - "__id__": 356 + "__id__": 392 }, { - "__id__": 386 + "__id__": 434 }, { - "__id__": 416 + "__id__": 476 }, { - "__id__": 446 + "__id__": 518 } ], "_id": "" @@ -11843,7 +13493,6 @@ "__id__": 0 }, "fileId": "69Vc962V9Na7L7FyQxaYOk", - "instance": null, "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/bundles/Chat18x/SettingPanel.prefab b/assets/bundles/Chat18x/SettingPanel.prefab index 057d8259..2ac39873 100644 --- a/assets/bundles/Chat18x/SettingPanel.prefab +++ b/assets/bundles/Chat18x/SettingPanel.prefab @@ -167,10 +167,10 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 0 + "r": 24, + "g": 15, + "b": 32, + "a": 153 }, "_spriteFrame": { "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", diff --git a/assets/bundles/Chat18x/ThemePanel.prefab b/assets/bundles/Chat18x/ThemePanel.prefab index 39dcfeec..4a039bc1 100644 --- a/assets/bundles/Chat18x/ThemePanel.prefab +++ b/assets/bundles/Chat18x/ThemePanel.prefab @@ -25,17 +25,17 @@ "_active": true, "_components": [ { - "__id__": 450 + "__id__": 464 }, { - "__id__": 452 + "__id__": 466 }, { - "__id__": 454 + "__id__": 468 } ], "_prefab": { - "__id__": 456 + "__id__": 470 }, "_lpos": { "__type__": "cc.Vec3", @@ -79,26 +79,26 @@ "__id__": 3 }, { - "__id__": 141 + "__id__": 155 }, { - "__id__": 315 + "__id__": 329 } ], "_active": true, "_components": [ { - "__id__": 443 + "__id__": 457 }, { - "__id__": 445 + "__id__": 459 }, { - "__id__": 447 + "__id__": 461 } ], "_prefab": { - "__id__": 449 + "__id__": 463 }, "_lpos": { "__type__": "cc.Vec3", @@ -142,32 +142,32 @@ "__id__": 4 }, { - "__id__": 46 + "__id__": 60 }, { - "__id__": 54 + "__id__": 68 }, { - "__id__": 62 + "__id__": 76 }, { - "__id__": 98 + "__id__": 112 } ], "_active": true, "_components": [ { - "__id__": 134 + "__id__": 148 }, { - "__id__": 136 + "__id__": 150 }, { - "__id__": 138 + "__id__": 152 } ], "_prefab": { - "__id__": 140 + "__id__": 154 }, "_lpos": { "__type__": "cc.Vec3", @@ -211,20 +211,20 @@ "__id__": 5 }, { - "__id__": 19 + "__id__": 33 } ], "_active": true, "_components": [ { - "__id__": 41 + "__id__": 55 }, { - "__id__": 43 + "__id__": 57 } ], "_prefab": { - "__id__": 45 + "__id__": 59 }, "_lpos": { "__type__": "cc.Vec3", @@ -266,22 +266,28 @@ "_children": [ { "__id__": 6 + }, + { + "__id__": 12 + }, + { + "__id__": 18 } ], "_active": true, "_components": [ { - "__id__": 12 + "__id__": 26 }, { - "__id__": 14 + "__id__": 28 }, { - "__id__": 16 + "__id__": 30 } ], "_prefab": { - "__id__": 18 + "__id__": 32 }, "_lpos": { "__type__": "cc.Vec3", @@ -314,7 +320,7 @@ }, { "__type__": "cc.Node", - "_name": "vipText", + "_name": "notvipicon", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -335,8 +341,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 59.07300000000009, - "y": -7.0620000000001255, + "x": -29.424999999999955, + "y": 0.5509999999999309, "z": 0 }, "_lrot": { @@ -374,6 +380,142 @@ "__prefab": { "__id__": 8 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 70, + "height": 70 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3bCL70yJxNI5ygFLzJUUtc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 6 + }, + "_enabled": true, + "__prefab": { + "__id__": 10 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "2de17c84-48b6-48b0-a893-435ecdd9269b@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": "c7Jdeev45CEq1I/nbZ1fdB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "10Zay6dYhA7JMraTor2XQh", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "vipText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 17 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 59.07300000000009, + "y": -7.0620000000001255, + "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__": 12 + }, + "_enabled": true, + "__prefab": { + "__id__": 14 + }, "_contentSize": { "__type__": "cc.Size", "width": 72.885547, @@ -396,11 +538,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 6 + "__id__": 12 }, "_enabled": true, "__prefab": { - "__id__": 10 + "__id__": 16 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -470,6 +612,190 @@ "__id__": 0 }, "fileId": "eaz1XV32NMAYZ1f8eNu4bc", + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "notVip", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 5 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 19 + }, + { + "__id__": 21 + }, + { + "__id__": 23 + } + ], + "_prefab": { + "__id__": 25 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 23.365000000000123, + "y": -6.082000000000107, + "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__": 18 + }, + "_enabled": true, + "__prefab": { + "__id__": 20 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 60.5, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8ekIXGOTZMhKFxWlrEw5VQ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 18 + }, + "_enabled": true, + "__prefab": { + "__id__": 22 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 254, + "g": 108, + "b": 108, + "a": 255 + }, + "_string": "已过期", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 20, + "_fontSize": 25.6, + "_fontFamily": "Arial", + "_lineHeight": 32.4, + "_overflow": 2, + "_enableWrapText": true, + "_font": { + "__uuid__": "2d833118-c040-441c-a2f2-8e56390acb70", + "__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": "4f6dg/4JRKYZeib277Z+H8" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 18 + }, + "_enabled": true, + "__prefab": { + "__id__": 24 + }, + "languageKey": "web3panel.expired", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "880k0cmBBIHoarWWGvbp/F" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "040Lue26tGnod6QbbHTLNP", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -484,7 +810,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 13 + "__id__": 27 }, "_contentSize": { "__type__": "cc.Size", @@ -512,7 +838,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 15 + "__id__": 29 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -557,7 +883,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 17 + "__id__": 31 }, "_alignFlags": 36, "_target": null, @@ -606,26 +932,26 @@ }, "_children": [ { - "__id__": 20 + "__id__": 34 }, { - "__id__": 28 + "__id__": 42 } ], "_active": true, "_components": [ { - "__id__": 34 + "__id__": 48 }, { - "__id__": 36 + "__id__": 50 }, { - "__id__": 38 + "__id__": 52 } ], "_prefab": { - "__id__": 40 + "__id__": 54 }, "_lpos": { "__type__": "cc.Vec3", @@ -662,23 +988,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 19 + "__id__": 33 }, "_children": [], "_active": true, "_components": [ { - "__id__": 21 + "__id__": 35 }, { - "__id__": 23 + "__id__": 37 }, { - "__id__": 25 + "__id__": 39 } ], "_prefab": { - "__id__": 27 + "__id__": 41 }, "_lpos": { "__type__": "cc.Vec3", @@ -715,11 +1041,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 34 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 36 }, "_contentSize": { "__type__": "cc.Size", @@ -743,11 +1069,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 34 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 38 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -814,11 +1140,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 34 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 40 }, "_alignFlags": 10, "_target": null, @@ -863,20 +1189,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 19 + "__id__": 33 }, "_children": [], "_active": true, "_components": [ { - "__id__": 29 + "__id__": 43 }, { - "__id__": 31 + "__id__": 45 } ], "_prefab": { - "__id__": 33 + "__id__": 47 }, "_lpos": { "__type__": "cc.Vec3", @@ -913,11 +1239,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 28 + "__id__": 42 }, "_enabled": true, "__prefab": { - "__id__": 30 + "__id__": 44 }, "_contentSize": { "__type__": "cc.Size", @@ -941,11 +1267,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 28 + "__id__": 42 }, "_enabled": true, "__prefab": { - "__id__": 32 + "__id__": 46 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -999,11 +1325,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 19 + "__id__": 33 }, "_enabled": true, "__prefab": { - "__id__": 35 + "__id__": 49 }, "_contentSize": { "__type__": "cc.Size", @@ -1027,11 +1353,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 19 + "__id__": 33 }, "_enabled": true, "__prefab": { - "__id__": 37 + "__id__": 51 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1072,11 +1398,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 19 + "__id__": 33 }, "_enabled": true, "__prefab": { - "__id__": 39 + "__id__": 53 }, "_alignFlags": 36, "_target": null, @@ -1125,7 +1451,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 42 + "__id__": 56 }, "_contentSize": { "__type__": "cc.Size", @@ -1153,7 +1479,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 44 + "__id__": 58 }, "_resizeMode": 1, "_layoutType": 1, @@ -1206,17 +1532,17 @@ "_active": true, "_components": [ { - "__id__": 47 + "__id__": 61 }, { - "__id__": 49 + "__id__": 63 }, { - "__id__": 51 + "__id__": 65 } ], "_prefab": { - "__id__": 53 + "__id__": 67 }, "_lpos": { "__type__": "cc.Vec3", @@ -1253,11 +1579,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 46 + "__id__": 60 }, "_enabled": true, "__prefab": { - "__id__": 48 + "__id__": 62 }, "_contentSize": { "__type__": "cc.Size", @@ -1281,11 +1607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 46 + "__id__": 60 }, "_enabled": true, "__prefab": { - "__id__": 50 + "__id__": 64 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1326,11 +1652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 46 + "__id__": 60 }, "_enabled": true, "__prefab": { - "__id__": 52 + "__id__": 66 }, "_alignFlags": 9, "_target": null, @@ -1381,17 +1707,17 @@ "_active": true, "_components": [ { - "__id__": 55 + "__id__": 69 }, { - "__id__": 57 + "__id__": 71 }, { - "__id__": 59 + "__id__": 73 } ], "_prefab": { - "__id__": 61 + "__id__": 75 }, "_lpos": { "__type__": "cc.Vec3", @@ -1428,11 +1754,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 54 + "__id__": 68 }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 70 }, "_contentSize": { "__type__": "cc.Size", @@ -1456,11 +1782,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 54 + "__id__": 68 }, "_enabled": true, "__prefab": { - "__id__": 58 + "__id__": 72 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1501,11 +1827,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 54 + "__id__": 68 }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 74 }, "_alignFlags": 4, "_target": null, @@ -1554,20 +1880,20 @@ }, "_children": [ { - "__id__": 63 + "__id__": 77 }, { - "__id__": 71 + "__id__": 85 } ], "_active": true, "_components": [ { - "__id__": 95 + "__id__": 109 } ], "_prefab": { - "__id__": 97 + "__id__": 111 }, "_lpos": { "__type__": "cc.Vec3", @@ -1604,23 +1930,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 62 + "__id__": 76 }, "_children": [], "_active": true, "_components": [ { - "__id__": 64 + "__id__": 78 }, { - "__id__": 66 + "__id__": 80 }, { - "__id__": 68 + "__id__": 82 } ], "_prefab": { - "__id__": 70 + "__id__": 84 }, "_lpos": { "__type__": "cc.Vec3", @@ -1657,11 +1983,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 79 }, "_contentSize": { "__type__": "cc.Size", @@ -1685,11 +2011,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 67 + "__id__": 81 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1753,11 +2079,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 63 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 83 }, "languageKey": "themepanel.recomandtext", "defaultText": "", @@ -1787,30 +2113,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 62 + "__id__": 76 }, "_children": [ { - "__id__": 72 + "__id__": 86 }, { - "__id__": 80 + "__id__": 94 } ], "_active": true, "_components": [ { - "__id__": 88 + "__id__": 102 }, { - "__id__": 90 + "__id__": 104 }, { - "__id__": 92 + "__id__": 106 } ], "_prefab": { - "__id__": 94 + "__id__": 108 }, "_lpos": { "__type__": "cc.Vec3", @@ -1847,23 +2173,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 71 + "__id__": 85 }, "_children": [], "_active": true, "_components": [ { - "__id__": 73 + "__id__": 87 }, { - "__id__": 75 + "__id__": 89 }, { - "__id__": 77 + "__id__": 91 } ], "_prefab": { - "__id__": 79 + "__id__": 93 }, "_lpos": { "__type__": "cc.Vec3", @@ -1900,11 +2226,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 86 }, "_enabled": true, "__prefab": { - "__id__": 74 + "__id__": 88 }, "_contentSize": { "__type__": "cc.Size", @@ -1928,11 +2254,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 86 }, "_enabled": true, "__prefab": { - "__id__": 76 + "__id__": 90 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1996,11 +2322,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 86 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 92 }, "languageKey": "themepanel.recomandtext", "defaultText": "", @@ -2030,23 +2356,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 71 + "__id__": 85 }, "_children": [], "_active": true, "_components": [ { - "__id__": 81 + "__id__": 95 }, { - "__id__": 83 + "__id__": 97 }, { - "__id__": 85 + "__id__": 99 } ], "_prefab": { - "__id__": 87 + "__id__": 101 }, "_lpos": { "__type__": "cc.Vec3", @@ -2083,11 +2409,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 94 }, "_enabled": true, "__prefab": { - "__id__": 82 + "__id__": 96 }, "_contentSize": { "__type__": "cc.Size", @@ -2111,11 +2437,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 94 }, "_enabled": true, "__prefab": { - "__id__": 84 + "__id__": 98 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2156,11 +2482,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 94 }, "_enabled": false, "__prefab": { - "__id__": 86 + "__id__": 100 }, "_alignFlags": 4, "_target": null, @@ -2205,11 +2531,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 89 + "__id__": 103 }, "_contentSize": { "__type__": "cc.Size", @@ -2233,11 +2559,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 105 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2301,11 +2627,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 93 + "__id__": 107 }, "languageKey": "themepanel.recomandtext", "defaultText": "", @@ -2335,11 +2661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 62 + "__id__": 76 }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 110 }, "_contentSize": { "__type__": "cc.Size", @@ -2380,20 +2706,20 @@ }, "_children": [ { - "__id__": 99 + "__id__": 113 }, { - "__id__": 107 + "__id__": 121 } ], "_active": true, "_components": [ { - "__id__": 131 + "__id__": 145 } ], "_prefab": { - "__id__": 133 + "__id__": 147 }, "_lpos": { "__type__": "cc.Vec3", @@ -2430,23 +2756,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 98 + "__id__": 112 }, "_children": [], "_active": true, "_components": [ { - "__id__": 100 + "__id__": 114 }, { - "__id__": 102 + "__id__": 116 }, { - "__id__": 104 + "__id__": 118 } ], "_prefab": { - "__id__": 106 + "__id__": 120 }, "_lpos": { "__type__": "cc.Vec3", @@ -2483,11 +2809,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 115 }, "_contentSize": { "__type__": "cc.Size", @@ -2511,11 +2837,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 117 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2579,11 +2905,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 119 }, "languageKey": "themepanel.more", "defaultText": "", @@ -2613,30 +2939,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 98 + "__id__": 112 }, "_children": [ { - "__id__": 108 + "__id__": 122 }, { - "__id__": 116 + "__id__": 130 } ], "_active": true, "_components": [ { - "__id__": 124 + "__id__": 138 }, { - "__id__": 126 + "__id__": 140 }, { - "__id__": 128 + "__id__": 142 } ], "_prefab": { - "__id__": 130 + "__id__": 144 }, "_lpos": { "__type__": "cc.Vec3", @@ -2673,23 +2999,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 107 + "__id__": 121 }, "_children": [], "_active": true, "_components": [ { - "__id__": 109 + "__id__": 123 }, { - "__id__": 111 + "__id__": 125 }, { - "__id__": 113 + "__id__": 127 } ], "_prefab": { - "__id__": 115 + "__id__": 129 }, "_lpos": { "__type__": "cc.Vec3", @@ -2726,11 +3052,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 122 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 124 }, "_contentSize": { "__type__": "cc.Size", @@ -2754,11 +3080,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 122 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 126 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2822,11 +3148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 122 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 128 }, "languageKey": "themepanel.more", "defaultText": "", @@ -2856,23 +3182,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 107 + "__id__": 121 }, "_children": [], "_active": true, "_components": [ { - "__id__": 117 + "__id__": 131 }, { - "__id__": 119 + "__id__": 133 }, { - "__id__": 121 + "__id__": 135 } ], "_prefab": { - "__id__": 123 + "__id__": 137 }, "_lpos": { "__type__": "cc.Vec3", @@ -2909,11 +3235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 116 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 132 }, "_contentSize": { "__type__": "cc.Size", @@ -2937,11 +3263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 116 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 134 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2982,11 +3308,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 116 + "__id__": 130 }, "_enabled": false, "__prefab": { - "__id__": 122 + "__id__": 136 }, "_alignFlags": 4, "_target": null, @@ -3031,11 +3357,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 139 }, "_contentSize": { "__type__": "cc.Size", @@ -3059,11 +3385,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 141 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3127,11 +3453,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 143 }, "languageKey": "themepanel.more", "defaultText": "", @@ -3161,11 +3487,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 146 }, "_contentSize": { "__type__": "cc.Size", @@ -3206,7 +3532,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 149 }, "_contentSize": { "__type__": "cc.Size", @@ -3234,7 +3560,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 137 + "__id__": 151 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3279,7 +3605,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 153 }, "_alignFlags": 41, "_target": null, @@ -3328,26 +3654,26 @@ }, "_children": [ { - "__id__": 142 + "__id__": 156 }, { - "__id__": 186 + "__id__": 200 } ], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 322 }, { - "__id__": 310 + "__id__": 324 }, { - "__id__": 312 + "__id__": 326 } ], "_prefab": { - "__id__": 314 + "__id__": 328 }, "_lpos": { "__type__": "cc.Vec3", @@ -3384,36 +3710,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 141 + "__id__": 155 }, "_children": [ - { - "__id__": 143 - }, { "__id__": 157 }, { - "__id__": 163 + "__id__": 171 }, { - "__id__": 171 + "__id__": 177 + }, + { + "__id__": 185 } ], "_active": true, "_components": [ { - "__id__": 179 + "__id__": 193 }, { - "__id__": 181 + "__id__": 195 }, { - "__id__": 183 + "__id__": 197 } ], "_prefab": { - "__id__": 185 + "__id__": 199 }, "_lpos": { "__type__": "cc.Vec3", @@ -3450,27 +3776,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 156 }, "_children": [ { - "__id__": 144 + "__id__": 158 } ], "_active": true, "_components": [ { - "__id__": 150 + "__id__": 164 }, { - "__id__": 152 + "__id__": 166 }, { - "__id__": 154 + "__id__": 168 } ], "_prefab": { - "__id__": 156 + "__id__": 170 }, "_lpos": { "__type__": "cc.Vec3", @@ -3507,20 +3833,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 157 }, "_children": [], "_active": true, "_components": [ { - "__id__": 145 + "__id__": 159 }, { - "__id__": 147 + "__id__": 161 } ], "_prefab": { - "__id__": 149 + "__id__": 163 }, "_lpos": { "__type__": "cc.Vec3", @@ -3557,11 +3883,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 146 + "__id__": 160 }, "_contentSize": { "__type__": "cc.Size", @@ -3585,11 +3911,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 162 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3643,11 +3969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 157 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 165 }, "_contentSize": { "__type__": "cc.Size", @@ -3671,11 +3997,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 157 }, "_enabled": true, "__prefab": { - "__id__": 153 + "__id__": 167 }, "_type": 3, "_inverted": false, @@ -3693,11 +4019,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 157 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 169 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3751,20 +4077,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 156 }, "_children": [], "_active": true, "_components": [ { - "__id__": 158 + "__id__": 172 }, { - "__id__": 160 + "__id__": 174 } ], "_prefab": { - "__id__": 162 + "__id__": 176 }, "_lpos": { "__type__": "cc.Vec3", @@ -3801,11 +4127,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 173 }, "_contentSize": { "__type__": "cc.Size", @@ -3829,11 +4155,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 175 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3887,23 +4213,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 156 }, "_children": [], "_active": true, "_components": [ { - "__id__": 164 + "__id__": 178 }, { - "__id__": 166 + "__id__": 180 }, { - "__id__": 168 + "__id__": 182 } ], "_prefab": { - "__id__": 170 + "__id__": 184 }, "_lpos": { "__type__": "cc.Vec3", @@ -3940,11 +4266,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 163 + "__id__": 177 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 179 }, "_contentSize": { "__type__": "cc.Size", @@ -3968,11 +4294,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 163 + "__id__": 177 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 181 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4013,11 +4339,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 163 + "__id__": 177 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 183 }, "_alignFlags": 12, "_target": null, @@ -4062,23 +4388,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 156 }, "_children": [], "_active": true, "_components": [ { - "__id__": 172 + "__id__": 186 }, { - "__id__": 174 + "__id__": 188 }, { - "__id__": 176 + "__id__": 190 } ], "_prefab": { - "__id__": 178 + "__id__": 192 }, "_lpos": { "__type__": "cc.Vec3", @@ -4115,11 +4441,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 187 }, "_contentSize": { "__type__": "cc.Size", @@ -4143,11 +4469,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 189 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4214,11 +4540,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 191 }, "_alignFlags": 12, "_target": null, @@ -4263,11 +4589,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 142 + "__id__": 156 }, "_enabled": true, "__prefab": { - "__id__": 180 + "__id__": 194 }, "_contentSize": { "__type__": "cc.Size", @@ -4291,11 +4617,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 142 + "__id__": 156 }, "_enabled": true, "__prefab": { - "__id__": 182 + "__id__": 196 }, "clickEvents": [], "_interactable": true, @@ -4335,7 +4661,7 @@ "_duration": 0.1, "_zoomScale": 0.95, "_target": { - "__id__": 142 + "__id__": 156 }, "_id": "" }, @@ -4349,20 +4675,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 142 + "__id__": 156 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 198 }, "titleName": { - "__id__": 174 + "__id__": 188 }, "titleNameBg": { - "__id__": 164 + "__id__": 178 }, "img": { - "__id__": 147 + "__id__": 161 }, "_id": "" }, @@ -4389,30 +4715,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 141 + "__id__": 155 }, "_children": [ { - "__id__": 187 + "__id__": 201 } ], "_active": true, "_components": [ { - "__id__": 299 + "__id__": 313 }, { - "__id__": 301 + "__id__": 315 }, { - "__id__": 303 + "__id__": 317 }, { - "__id__": 305 + "__id__": 319 } ], "_prefab": { - "__id__": 307 + "__id__": 321 }, "_lpos": { "__type__": "cc.Vec3", @@ -4449,30 +4775,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 200 }, "_children": [ { - "__id__": 188 + "__id__": 202 } ], "_active": true, "_components": [ { - "__id__": 290 + "__id__": 304 }, { - "__id__": 292 + "__id__": 306 }, { - "__id__": 294 + "__id__": 308 }, { - "__id__": 296 + "__id__": 310 } ], "_prefab": { - "__id__": 298 + "__id__": 312 }, "_lpos": { "__type__": "cc.Vec3", @@ -4509,30 +4835,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 187 + "__id__": 201 }, "_children": [ { - "__id__": 189 + "__id__": 203 }, { - "__id__": 275 + "__id__": 289 } ], "_active": true, "_components": [ { - "__id__": 283 + "__id__": 297 }, { - "__id__": 285 + "__id__": 299 }, { - "__id__": 287 + "__id__": 301 } ], "_prefab": { - "__id__": 289 + "__id__": 303 }, "_lpos": { "__type__": "cc.Vec3", @@ -4569,27 +4895,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 188 + "__id__": 202 }, "_children": [ { - "__id__": 190 + "__id__": 204 }, { - "__id__": 198 + "__id__": 212 } ], "_active": false, "_components": [ { - "__id__": 270 + "__id__": 284 }, { - "__id__": 272 + "__id__": 286 } ], "_prefab": { - "__id__": 274 + "__id__": 288 }, "_lpos": { "__type__": "cc.Vec3", @@ -4626,23 +4952,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 189 + "__id__": 203 }, "_children": [], "_active": true, "_components": [ { - "__id__": 191 + "__id__": 205 }, { - "__id__": 193 + "__id__": 207 }, { - "__id__": 195 + "__id__": 209 } ], "_prefab": { - "__id__": 197 + "__id__": 211 }, "_lpos": { "__type__": "cc.Vec3", @@ -4679,11 +5005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 206 }, "_contentSize": { "__type__": "cc.Size", @@ -4707,11 +5033,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 208 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4752,11 +5078,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 210 }, "_alignFlags": 18, "_target": null, @@ -4801,39 +5127,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 189 + "__id__": 203 }, "_children": [ { - "__id__": 199 - }, - { - "__id__": 237 - }, - { - "__id__": 245 + "__id__": 213 }, { "__id__": 251 + }, + { + "__id__": 259 + }, + { + "__id__": 265 } ], "_active": true, "_components": [ { - "__id__": 261 + "__id__": 275 }, { - "__id__": 263 + "__id__": 277 }, { - "__id__": 265 + "__id__": 279 }, { - "__id__": 267 + "__id__": 281 } ], "_prefab": { - "__id__": 269 + "__id__": 283 }, "_lpos": { "__type__": "cc.Vec3", @@ -4870,30 +5196,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 212 }, "_children": [ { - "__id__": 200 + "__id__": 214 }, { - "__id__": 206 + "__id__": 220 } ], "_active": true, "_components": [ { - "__id__": 230 + "__id__": 244 }, { - "__id__": 232 + "__id__": 246 }, { - "__id__": 234 + "__id__": 248 } ], "_prefab": { - "__id__": 236 + "__id__": 250 }, "_lpos": { "__type__": "cc.Vec3", @@ -4930,20 +5256,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 213 }, "_children": [], "_active": true, "_components": [ { - "__id__": 201 + "__id__": 215 }, { - "__id__": 203 + "__id__": 217 } ], "_prefab": { - "__id__": 205 + "__id__": 219 }, "_lpos": { "__type__": "cc.Vec3", @@ -4980,11 +5306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 216 }, "_contentSize": { "__type__": "cc.Size", @@ -5008,11 +5334,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 218 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5063,30 +5389,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 213 }, "_children": [ { - "__id__": 207 + "__id__": 221 }, { - "__id__": 215 + "__id__": 229 } ], "_active": true, "_components": [ { - "__id__": 223 + "__id__": 237 }, { - "__id__": 225 + "__id__": 239 }, { - "__id__": 227 + "__id__": 241 } ], "_prefab": { - "__id__": 229 + "__id__": 243 }, "_lpos": { "__type__": "cc.Vec3", @@ -5123,23 +5449,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 220 }, "_children": [], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 222 }, { - "__id__": 210 + "__id__": 224 }, { - "__id__": 212 + "__id__": 226 } ], "_prefab": { - "__id__": 214 + "__id__": 228 }, "_lpos": { "__type__": "cc.Vec3", @@ -5176,11 +5502,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 223 }, "_contentSize": { "__type__": "cc.Size", @@ -5204,11 +5530,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 225 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5249,11 +5575,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 227 }, "_alignFlags": 45, "_target": null, @@ -5298,23 +5624,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 220 }, "_children": [], "_active": true, "_components": [ { - "__id__": 216 + "__id__": 230 }, { - "__id__": 218 + "__id__": 232 }, { - "__id__": 220 + "__id__": 234 } ], "_prefab": { - "__id__": 222 + "__id__": 236 }, "_lpos": { "__type__": "cc.Vec3", @@ -5351,11 +5677,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 231 }, "_contentSize": { "__type__": "cc.Size", @@ -5379,11 +5705,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 233 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5424,11 +5750,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 235 }, "playOnLoad": true, "_clips": [ @@ -5466,11 +5792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 238 }, "_contentSize": { "__type__": "cc.Size", @@ -5494,11 +5820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 240 }, "_alignFlags": 45, "_target": null, @@ -5530,14 +5856,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 242 }, "animation": { - "__id__": 220 + "__id__": 234 }, "_id": "" }, @@ -5564,11 +5890,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 245 }, "_contentSize": { "__type__": "cc.Size", @@ -5592,11 +5918,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 247 }, "_type": 0, "_inverted": false, @@ -5614,11 +5940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 213 }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 249 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5673,23 +5999,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 212 }, "_children": [], "_active": true, "_components": [ { - "__id__": 238 + "__id__": 252 }, { - "__id__": 240 + "__id__": 254 }, { - "__id__": 242 + "__id__": 256 } ], "_prefab": { - "__id__": 244 + "__id__": 258 }, "_lpos": { "__type__": "cc.Vec3", @@ -5726,11 +6052,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 253 }, "_contentSize": { "__type__": "cc.Size", @@ -5754,11 +6080,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 255 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5825,11 +6151,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 237 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 257 }, "languageKey": "themepanel.recomandtext", "defaultText": "", @@ -5859,20 +6185,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 212 }, "_children": [], "_active": true, "_components": [ { - "__id__": 246 + "__id__": 260 }, { - "__id__": 248 + "__id__": 262 } ], "_prefab": { - "__id__": 250 + "__id__": 264 }, "_lpos": { "__type__": "cc.Vec3", @@ -5909,11 +6235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 245 + "__id__": 259 }, "_enabled": true, "__prefab": { - "__id__": 247 + "__id__": 261 }, "_contentSize": { "__type__": "cc.Size", @@ -5937,11 +6263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 245 + "__id__": 259 }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 263 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6021,26 +6347,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 198 + "__id__": 212 }, "_children": [], "_active": true, "_components": [ { - "__id__": 252 + "__id__": 266 }, { - "__id__": 254 + "__id__": 268 }, { - "__id__": 256 + "__id__": 270 }, { - "__id__": 258 + "__id__": 272 } ], "_prefab": { - "__id__": 260 + "__id__": 274 }, "_lpos": { "__type__": "cc.Vec3", @@ -6077,11 +6403,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 267 }, "_contentSize": { "__type__": "cc.Size", @@ -6105,11 +6431,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 269 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6150,11 +6476,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 271 }, "_alignFlags": 34, "_target": null, @@ -6186,11 +6512,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 259 + "__id__": 273 }, "clickEvents": [], "_interactable": true, @@ -6255,11 +6581,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 276 }, "_contentSize": { "__type__": "cc.Size", @@ -6283,11 +6609,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 278 }, "_alignFlags": 45, "_target": null, @@ -6319,11 +6645,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 266 + "__id__": 280 }, "_type": 3, "_inverted": false, @@ -6341,11 +6667,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 282 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6399,11 +6725,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 189 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 271 + "__id__": 285 }, "_contentSize": { "__type__": "cc.Size", @@ -6427,11 +6753,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 189 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 287 }, "_alignFlags": 40, "_target": null, @@ -6476,23 +6802,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 188 + "__id__": 202 }, "_children": [], "_active": true, "_components": [ { - "__id__": 276 + "__id__": 290 }, { - "__id__": 278 + "__id__": 292 }, { - "__id__": 280 + "__id__": 294 } ], "_prefab": { - "__id__": 282 + "__id__": 296 }, "_lpos": { "__type__": "cc.Vec3", @@ -6529,11 +6855,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 289 }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 291 }, "_contentSize": { "__type__": "cc.Size", @@ -6557,11 +6883,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 289 }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 293 }, "_resizeMode": 1, "_layoutType": 3, @@ -6595,11 +6921,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 289 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 295 }, "_alignFlags": 40, "_target": null, @@ -6644,11 +6970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 284 + "__id__": 298 }, "_contentSize": { "__type__": "cc.Size", @@ -6672,11 +6998,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 300 }, "_resizeMode": 1, "_layoutType": 2, @@ -6710,11 +7036,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 288 + "__id__": 302 }, "_alignFlags": 1, "_target": null, @@ -6759,11 +7085,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 305 }, "_contentSize": { "__type__": "cc.Size", @@ -6787,11 +7113,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 307 }, "_type": 0, "_inverted": false, @@ -6809,11 +7135,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 309 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6855,11 +7181,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 201 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 311 }, "_alignFlags": 45, "_target": null, @@ -6904,11 +7230,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 314 }, "_contentSize": { "__type__": "cc.Size", @@ -6932,11 +7258,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 200 }, "_enabled": false, "__prefab": { - "__id__": 302 + "__id__": 316 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6977,11 +7303,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 318 }, "bounceDuration": 0.23, "brake": 0.75, @@ -6992,7 +7318,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 188 + "__id__": 202 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -7008,11 +7334,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 320 }, "_alignFlags": 45, "_target": null, @@ -7057,11 +7383,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 323 }, "_contentSize": { "__type__": "cc.Size", @@ -7085,11 +7411,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 155 }, "_enabled": false, "__prefab": { - "__id__": 311 + "__id__": 325 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7130,11 +7456,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 327 }, "_alignFlags": 45, "_target": null, @@ -7183,26 +7509,26 @@ }, "_children": [ { - "__id__": 316 + "__id__": 330 }, { - "__id__": 410 + "__id__": 424 } ], "_active": true, "_components": [ { - "__id__": 436 + "__id__": 450 }, { - "__id__": 438 + "__id__": 452 }, { - "__id__": 440 + "__id__": 454 } ], "_prefab": { - "__id__": 442 + "__id__": 456 }, "_lpos": { "__type__": "cc.Vec3", @@ -7239,42 +7565,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 315 + "__id__": 329 }, "_children": [ { - "__id__": 317 - }, - { - "__id__": 323 + "__id__": 331 }, { "__id__": 337 }, { - "__id__": 343 + "__id__": 351 }, { - "__id__": 349 + "__id__": 357 }, { - "__id__": 387 + "__id__": 363 }, { - "__id__": 397 + "__id__": 401 + }, + { + "__id__": 411 } ], "_active": true, "_components": [ { - "__id__": 405 + "__id__": 419 }, { - "__id__": 407 + "__id__": 421 } ], "_prefab": { - "__id__": 409 + "__id__": 423 }, "_lpos": { "__type__": "cc.Vec3", @@ -7311,20 +7637,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [], "_active": true, "_components": [ { - "__id__": 318 + "__id__": 332 }, { - "__id__": 320 + "__id__": 334 } ], "_prefab": { - "__id__": 322 + "__id__": 336 }, "_lpos": { "__type__": "cc.Vec3", @@ -7361,11 +7687,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 317 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 319 + "__id__": 333 }, "_contentSize": { "__type__": "cc.Size", @@ -7389,11 +7715,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 317 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 321 + "__id__": 335 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7447,27 +7773,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [ { - "__id__": 324 + "__id__": 338 } ], "_active": true, "_components": [ { - "__id__": 330 + "__id__": 344 }, { - "__id__": 332 + "__id__": 346 }, { - "__id__": 334 + "__id__": 348 } ], "_prefab": { - "__id__": 336 + "__id__": 350 }, "_lpos": { "__type__": "cc.Vec3", @@ -7504,20 +7830,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 323 + "__id__": 337 }, "_children": [], "_active": true, "_components": [ { - "__id__": 325 + "__id__": 339 }, { - "__id__": 327 + "__id__": 341 } ], "_prefab": { - "__id__": 329 + "__id__": 343 }, "_lpos": { "__type__": "cc.Vec3", @@ -7554,11 +7880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 338 }, "_enabled": true, "__prefab": { - "__id__": 326 + "__id__": 340 }, "_contentSize": { "__type__": "cc.Size", @@ -7582,11 +7908,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 338 }, "_enabled": true, "__prefab": { - "__id__": 328 + "__id__": 342 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7640,11 +7966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 323 + "__id__": 337 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 345 }, "_contentSize": { "__type__": "cc.Size", @@ -7668,11 +7994,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 323 + "__id__": 337 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 347 }, "_type": 3, "_inverted": false, @@ -7690,11 +8016,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 323 + "__id__": 337 }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7748,20 +8074,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [], "_active": true, "_components": [ { - "__id__": 338 + "__id__": 352 }, { - "__id__": 340 + "__id__": 354 } ], "_prefab": { - "__id__": 342 + "__id__": 356 }, "_lpos": { "__type__": "cc.Vec3", @@ -7798,11 +8124,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 337 + "__id__": 351 }, "_enabled": true, "__prefab": { - "__id__": 339 + "__id__": 353 }, "_contentSize": { "__type__": "cc.Size", @@ -7826,11 +8152,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 337 + "__id__": 351 }, "_enabled": true, "__prefab": { - "__id__": 341 + "__id__": 355 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7910,20 +8236,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [], "_active": true, "_components": [ { - "__id__": 344 + "__id__": 358 }, { - "__id__": 346 + "__id__": 360 } ], "_prefab": { - "__id__": 348 + "__id__": 362 }, "_lpos": { "__type__": "cc.Vec3", @@ -7960,11 +8286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 343 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 359 }, "_contentSize": { "__type__": "cc.Size", @@ -7988,11 +8314,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 343 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 361 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8072,39 +8398,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [ { - "__id__": 350 + "__id__": 364 }, { - "__id__": 356 + "__id__": 370 }, { - "__id__": 362 - }, - { - "__id__": 368 - }, - { - "__id__": 374 - } - ], - "_active": true, - "_components": [ - { - "__id__": 380 + "__id__": 376 }, { "__id__": 382 }, { - "__id__": 384 + "__id__": 388 + } + ], + "_active": true, + "_components": [ + { + "__id__": 394 + }, + { + "__id__": 396 + }, + { + "__id__": 398 } ], "_prefab": { - "__id__": 386 + "__id__": 400 }, "_lpos": { "__type__": "cc.Vec3", @@ -8141,20 +8467,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 363 }, "_children": [], "_active": true, "_components": [ { - "__id__": 351 + "__id__": 365 }, { - "__id__": 353 + "__id__": 367 } ], "_prefab": { - "__id__": 355 + "__id__": 369 }, "_lpos": { "__type__": "cc.Vec3", @@ -8191,11 +8517,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 366 }, "_contentSize": { "__type__": "cc.Size", @@ -8219,11 +8545,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 368 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8277,20 +8603,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 363 }, "_children": [], "_active": true, "_components": [ { - "__id__": 357 + "__id__": 371 }, { - "__id__": 359 + "__id__": 373 } ], "_prefab": { - "__id__": 361 + "__id__": 375 }, "_lpos": { "__type__": "cc.Vec3", @@ -8327,11 +8653,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 372 }, "_contentSize": { "__type__": "cc.Size", @@ -8355,11 +8681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 374 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8413,20 +8739,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 363 }, "_children": [], "_active": true, "_components": [ { - "__id__": 363 + "__id__": 377 }, { - "__id__": 365 + "__id__": 379 } ], "_prefab": { - "__id__": 367 + "__id__": 381 }, "_lpos": { "__type__": "cc.Vec3", @@ -8463,11 +8789,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 376 }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 378 }, "_contentSize": { "__type__": "cc.Size", @@ -8491,11 +8817,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 376 }, "_enabled": true, "__prefab": { - "__id__": 366 + "__id__": 380 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8549,20 +8875,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 363 }, "_children": [], "_active": true, "_components": [ { - "__id__": 369 + "__id__": 383 }, { - "__id__": 371 + "__id__": 385 } ], "_prefab": { - "__id__": 373 + "__id__": 387 }, "_lpos": { "__type__": "cc.Vec3", @@ -8599,11 +8925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 368 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 370 + "__id__": 384 }, "_contentSize": { "__type__": "cc.Size", @@ -8627,11 +8953,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 368 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 372 + "__id__": 386 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8685,20 +9011,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 349 + "__id__": 363 }, "_children": [], "_active": true, "_components": [ { - "__id__": 375 + "__id__": 389 }, { - "__id__": 377 + "__id__": 391 } ], "_prefab": { - "__id__": 379 + "__id__": 393 }, "_lpos": { "__type__": "cc.Vec3", @@ -8735,11 +9061,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 374 + "__id__": 388 }, "_enabled": true, "__prefab": { - "__id__": 376 + "__id__": 390 }, "_contentSize": { "__type__": "cc.Size", @@ -8763,11 +9089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 374 + "__id__": 388 }, "_enabled": true, "__prefab": { - "__id__": 378 + "__id__": 392 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8821,11 +9147,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 395 }, "_contentSize": { "__type__": "cc.Size", @@ -8849,11 +9175,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 397 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8894,11 +9220,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 349 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 399 }, "_resizeMode": 0, "_layoutType": 1, @@ -8945,26 +9271,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [], "_active": true, "_components": [ { - "__id__": 388 + "__id__": 402 }, { - "__id__": 390 + "__id__": 404 }, { - "__id__": 392 + "__id__": 406 }, { - "__id__": 394 + "__id__": 408 } ], "_prefab": { - "__id__": 396 + "__id__": 410 }, "_lpos": { "__type__": "cc.Vec3", @@ -9001,11 +9327,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 401 }, "_enabled": true, "__prefab": { - "__id__": 389 + "__id__": 403 }, "_contentSize": { "__type__": "cc.Size", @@ -9029,11 +9355,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 401 }, "_enabled": true, "__prefab": { - "__id__": 391 + "__id__": 405 }, "_alignFlags": 45, "_target": null, @@ -9065,11 +9391,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 401 }, "_enabled": true, "__prefab": { - "__id__": 393 + "__id__": 407 }, "clickEvents": [], "_interactable": true, @@ -9121,11 +9447,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 401 }, "_enabled": true, "__prefab": { - "__id__": 395 + "__id__": 409 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9176,23 +9502,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 316 + "__id__": 330 }, "_children": [], "_active": true, "_components": [ { - "__id__": 398 + "__id__": 412 }, { - "__id__": 400 + "__id__": 414 }, { - "__id__": 402 + "__id__": 416 } ], "_prefab": { - "__id__": 404 + "__id__": 418 }, "_lpos": { "__type__": "cc.Vec3", @@ -9229,11 +9555,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 397 + "__id__": 411 }, "_enabled": true, "__prefab": { - "__id__": 399 + "__id__": 413 }, "_contentSize": { "__type__": "cc.Size", @@ -9257,11 +9583,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 397 + "__id__": 411 }, "_enabled": true, "__prefab": { - "__id__": 401 + "__id__": 415 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9302,11 +9628,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 397 + "__id__": 411 }, "_enabled": true, "__prefab": { - "__id__": 403 + "__id__": 417 }, "clickEvents": [], "_interactable": true, @@ -9371,11 +9697,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 330 }, "_enabled": true, "__prefab": { - "__id__": 406 + "__id__": 420 }, "_contentSize": { "__type__": "cc.Size", @@ -9399,11 +9725,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 330 }, "_enabled": true, "__prefab": { - "__id__": 408 + "__id__": 422 }, "_id": "" }, @@ -9430,30 +9756,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 315 + "__id__": 329 }, "_children": [ { - "__id__": 411 + "__id__": 425 } ], "_active": true, "_components": [ { - "__id__": 427 + "__id__": 441 }, { - "__id__": 429 + "__id__": 443 }, { - "__id__": 431 + "__id__": 445 }, { - "__id__": 433 + "__id__": 447 } ], "_prefab": { - "__id__": 435 + "__id__": 449 }, "_lpos": { "__type__": "cc.Vec3", @@ -9490,30 +9816,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 410 + "__id__": 424 }, "_children": [ { - "__id__": 412 + "__id__": 426 } ], "_active": true, "_components": [ { - "__id__": 418 + "__id__": 432 }, { - "__id__": 420 + "__id__": 434 }, { - "__id__": 422 + "__id__": 436 }, { - "__id__": 424 + "__id__": 438 } ], "_prefab": { - "__id__": 426 + "__id__": 440 }, "_lpos": { "__type__": "cc.Vec3", @@ -9550,20 +9876,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 411 + "__id__": 425 }, "_children": [], "_active": true, "_components": [ { - "__id__": 413 + "__id__": 427 }, { - "__id__": 415 + "__id__": 429 } ], "_prefab": { - "__id__": 417 + "__id__": 431 }, "_lpos": { "__type__": "cc.Vec3", @@ -9600,11 +9926,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 412 + "__id__": 426 }, "_enabled": true, "__prefab": { - "__id__": 414 + "__id__": 428 }, "_contentSize": { "__type__": "cc.Size", @@ -9628,11 +9954,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 412 + "__id__": 426 }, "_enabled": true, "__prefab": { - "__id__": 416 + "__id__": 430 }, "_resizeMode": 1, "_layoutType": 2, @@ -9679,11 +10005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 419 + "__id__": 433 }, "_contentSize": { "__type__": "cc.Size", @@ -9707,11 +10033,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 421 + "__id__": 435 }, "_type": 0, "_inverted": false, @@ -9729,11 +10055,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 423 + "__id__": 437 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9775,11 +10101,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 425 + "__id__": 439 }, "_alignFlags": 45, "_target": null, @@ -9824,11 +10150,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 424 }, "_enabled": true, "__prefab": { - "__id__": 428 + "__id__": 442 }, "_contentSize": { "__type__": "cc.Size", @@ -9852,11 +10178,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 424 }, "_enabled": false, "__prefab": { - "__id__": 430 + "__id__": 444 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9897,11 +10223,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 424 }, "_enabled": true, "__prefab": { - "__id__": 432 + "__id__": 446 }, "bounceDuration": 0.23, "brake": 0.75, @@ -9912,7 +10238,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 412 + "__id__": 426 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -9928,11 +10254,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 410 + "__id__": 424 }, "_enabled": true, "__prefab": { - "__id__": 434 + "__id__": 448 }, "_alignFlags": 45, "_target": null, @@ -9977,11 +10303,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 437 + "__id__": 451 }, "_contentSize": { "__type__": "cc.Size", @@ -10005,11 +10331,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 329 }, "_enabled": false, "__prefab": { - "__id__": 439 + "__id__": 453 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10050,11 +10376,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 441 + "__id__": 455 }, "_alignFlags": 45, "_target": null, @@ -10103,7 +10429,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 444 + "__id__": 458 }, "_contentSize": { "__type__": "cc.Size", @@ -10131,7 +10457,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 446 + "__id__": 460 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10176,7 +10502,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 448 + "__id__": 462 }, "_alignFlags": 45, "_target": null, @@ -10225,7 +10551,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 451 + "__id__": 465 }, "_contentSize": { "__type__": "cc.Size", @@ -10253,7 +10579,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 453 + "__id__": 467 }, "_alignFlags": 45, "_target": null, @@ -10289,7 +10615,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 455 + "__id__": 469 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/TipsPanel.prefab b/assets/bundles/Chat18x/TipsPanel.prefab index 35a73ea5..4560cf89 100644 --- a/assets/bundles/Chat18x/TipsPanel.prefab +++ b/assets/bundles/Chat18x/TipsPanel.prefab @@ -25,23 +25,23 @@ "__id__": 10 }, { - "__id__": 18 + "__id__": 16 } ], "_active": true, "_components": [ + { + "__id__": 22 + }, { "__id__": 24 }, { "__id__": 26 - }, - { - "__id__": 28 } ], "_prefab": { - "__id__": 30 + "__id__": 28 }, "_lpos": { "__type__": "cc.Vec3", @@ -263,13 +263,10 @@ }, { "__id__": 13 - }, - { - "__id__": 15 } ], "_prefab": { - "__id__": 17 + "__id__": 15 }, "_lpos": { "__type__": "cc.Vec3", @@ -314,8 +311,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 750, - "height": 119 + "width": 688.3, + "height": 89 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -351,10 +348,10 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "33221d92-6943-4820-8898-ab1440bef579@f9941", + "__uuid__": "04228b39-3a53-43ff-8c55-ba8ceafc7a81@f9941", "__expectedType__": "cc.SpriteFrame" }, - "_type": 0, + "_type": 1, "_fillType": 0, "_sizeMode": 0, "_fillCenter": { @@ -373,42 +370,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "aek4vQQqFEp5BwJPOgX+QZ" }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 10 - }, - "_enabled": true, - "__prefab": { - "__id__": 16 - }, - "_alignFlags": 40, - "_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": 117, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 40, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "70rJ/sR8tBmZ9PXotZbKbP" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -434,14 +395,14 @@ "_active": true, "_components": [ { - "__id__": 19 + "__id__": 17 }, { - "__id__": 21 + "__id__": 19 } ], "_prefab": { - "__id__": 23 + "__id__": 21 }, "_lpos": { "__type__": "cc.Vec3", @@ -478,11 +439,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 18 }, "_contentSize": { "__type__": "cc.Size", @@ -506,20 +467,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 20 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 209, - "g": 61, - "b": 61, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Insufficient balance, need to purchase", @@ -591,7 +552,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 25 + "__id__": 23 }, "_contentSize": { "__type__": "cc.Size", @@ -619,7 +580,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 25 }, "_alignFlags": 40, "_target": null, @@ -655,7 +616,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 27 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/Web3PopPanel.prefab b/assets/bundles/Chat18x/Web3PopPanel.prefab index 9707cd98..76cf34a7 100644 --- a/assets/bundles/Chat18x/Web3PopPanel.prefab +++ b/assets/bundles/Chat18x/Web3PopPanel.prefab @@ -33,33 +33,30 @@ { "__id__": 84 }, - { - "__id__": 202 - }, - { - "__id__": 208 - }, { "__id__": 214 }, { - "__id__": 250 + "__id__": 220 + }, + { + "__id__": 256 } ], "_active": true, "_components": [ { - "__id__": 272 + "__id__": 278 }, { - "__id__": 274 + "__id__": 280 }, { - "__id__": 276 + "__id__": 282 } ], "_prefab": { - "__id__": 278 + "__id__": 284 }, "_lpos": { "__type__": "cc.Vec3", @@ -76,8 +73,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 1, - "y": 1, + "x": 1.3, + "y": 1.3, "z": 1 }, "_mobility": 0, @@ -1979,6 +1976,8 @@ "__id__": 0 }, "fileId": "f8yhhA7YlP3o9EvKnSzBXh", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -1997,20 +1996,23 @@ "__id__": 93 }, { - "__id__": 107 + "__id__": 99 }, { "__id__": 119 + }, + { + "__id__": 131 } ], "_active": true, "_components": [ { - "__id__": 199 + "__id__": 211 } ], "_prefab": { - "__id__": 201 + "__id__": 213 }, "_lpos": { "__type__": "cc.Vec3", @@ -2227,6 +2229,139 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "qrCode", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 84 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 94 + }, + { + "__id__": 96 + } + ], + "_prefab": { + "__id__": 98 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -36.87200000000007, + "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": 200, + "height": 200 + }, + "_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__": 93 + }, + "_enabled": true, + "__prefab": { + "__id__": 97 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_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": "7fklT2DIlLBYJjY7JMRyxk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60IjPNkWBPTY02lkUjdFp5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", "_name": "CoinTypeSelectBtn", @@ -2237,23 +2372,26 @@ }, "_children": [ { - "__id__": 94 + "__id__": 100 + }, + { + "__id__": 106 } ], "_active": true, "_components": [ { - "__id__": 100 + "__id__": 112 }, { - "__id__": 102 + "__id__": 114 }, { - "__id__": 104 + "__id__": 116 } ], "_prefab": { - "__id__": 106 + "__id__": 118 }, "_lpos": { "__type__": "cc.Vec3", @@ -2290,20 +2428,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 93 + "__id__": 99 }, "_children": [], "_active": true, "_components": [ { - "__id__": 95 + "__id__": 101 }, { - "__id__": 97 + "__id__": 103 } ], "_prefab": { - "__id__": 99 + "__id__": 105 }, "_lpos": { "__type__": "cc.Vec3", @@ -2340,11 +2478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 102 }, "_contentSize": { "__type__": "cc.Size", @@ -2368,11 +2506,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 98 + "__id__": 104 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2420,17 +2558,153 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "WD_AN_JT2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 99 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 107 + }, + { + "__id__": 109 + } + ], + "_prefab": { + "__id__": 111 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 114.86200000000002, + "y": -1.1368683772161603e-13, + "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 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 108 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 48, + "height": 48 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "40wlyL3mBFO5vgutoSdG4q" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 110 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "ab934931-85b4-4c67-b9db-8c3d581c6521@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": "49sKnSmBREWIYKt8nSNXLz" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3fl96IBKZDTbZ9uoLMc3CF", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 99 + }, + "_enabled": true, + "__prefab": { + "__id__": 113 }, "_contentSize": { "__type__": "cc.Size", @@ -2454,11 +2728,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 115 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2499,11 +2773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 117 }, "clickEvents": [], "_interactable": true, @@ -2572,20 +2846,20 @@ }, "_children": [ { - "__id__": 108 + "__id__": 120 } ], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 126 }, { - "__id__": 116 + "__id__": 128 } ], "_prefab": { - "__id__": 118 + "__id__": 130 }, "_lpos": { "__type__": "cc.Vec3", @@ -2622,20 +2896,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 107 + "__id__": 119 }, "_children": [], "_active": true, "_components": [ { - "__id__": 109 + "__id__": 121 }, { - "__id__": 111 + "__id__": 123 } ], "_prefab": { - "__id__": 113 + "__id__": 125 }, "_lpos": { "__type__": "cc.Vec3", @@ -2672,11 +2946,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 122 }, "_contentSize": { "__type__": "cc.Size", @@ -2700,11 +2974,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 124 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2784,11 +3058,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 127 }, "_contentSize": { "__type__": "cc.Size", @@ -2812,11 +3086,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 119 }, "_enabled": true, "__prefab": { - "__id__": 117 + "__id__": 129 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2874,32 +3148,32 @@ }, "_children": [ { - "__id__": 120 + "__id__": 132 }, { - "__id__": 138 + "__id__": 150 }, { - "__id__": 156 + "__id__": 168 }, { - "__id__": 174 + "__id__": 186 } ], "_active": true, "_components": [ { - "__id__": 192 + "__id__": 204 }, { - "__id__": 194 + "__id__": 206 }, { - "__id__": 196 + "__id__": 208 } ], "_prefab": { - "__id__": 198 + "__id__": 210 }, "_lpos": { "__type__": "cc.Vec3", @@ -2936,24 +3210,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 119 + "__id__": 131 }, "_children": [ { - "__id__": 121 + "__id__": 133 } ], "_active": true, "_components": [ { - "__id__": 133 + "__id__": 145 }, { - "__id__": 135 + "__id__": 147 } ], "_prefab": { - "__id__": 137 + "__id__": 149 }, "_lpos": { "__type__": "cc.Vec3", @@ -2990,24 +3264,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 120 + "__id__": 132 }, "_children": [ { - "__id__": 122 + "__id__": 134 } ], "_active": true, "_components": [ { - "__id__": 128 + "__id__": 140 }, { - "__id__": 130 + "__id__": 142 } ], "_prefab": { - "__id__": 132 + "__id__": 144 }, "_lpos": { "__type__": "cc.Vec3", @@ -3044,20 +3318,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 121 + "__id__": 133 }, "_children": [], "_active": true, "_components": [ { - "__id__": 123 + "__id__": 135 }, { - "__id__": 125 + "__id__": 137 } ], "_prefab": { - "__id__": 127 + "__id__": 139 }, "_lpos": { "__type__": "cc.Vec3", @@ -3094,11 +3368,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 134 }, "_enabled": true, "__prefab": { - "__id__": 124 + "__id__": 136 }, "_contentSize": { "__type__": "cc.Size", @@ -3122,11 +3396,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 134 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3196,6 +3470,8 @@ "__id__": 0 }, "fileId": "2a3QeTDZNAHLtEPHUa99VO", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -3204,11 +3480,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 141 }, "_contentSize": { "__type__": "cc.Size", @@ -3232,11 +3508,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 143 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3290,11 +3566,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 134 + "__id__": 146 }, "_contentSize": { "__type__": "cc.Size", @@ -3318,11 +3594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 120 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 136 + "__id__": 148 }, "clickEvents": [], "_interactable": true, @@ -3387,24 +3663,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 119 + "__id__": 131 }, "_children": [ { - "__id__": 139 + "__id__": 151 } ], "_active": true, "_components": [ { - "__id__": 151 + "__id__": 163 }, { - "__id__": 153 + "__id__": 165 } ], "_prefab": { - "__id__": 155 + "__id__": 167 }, "_lpos": { "__type__": "cc.Vec3", @@ -3441,24 +3717,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 138 + "__id__": 150 }, "_children": [ { - "__id__": 140 + "__id__": 152 } ], "_active": true, "_components": [ { - "__id__": 146 + "__id__": 158 }, { - "__id__": 148 + "__id__": 160 } ], "_prefab": { - "__id__": 150 + "__id__": 162 }, "_lpos": { "__type__": "cc.Vec3", @@ -3495,20 +3771,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 139 + "__id__": 151 }, "_children": [], "_active": true, "_components": [ { - "__id__": 141 + "__id__": 153 }, { - "__id__": 143 + "__id__": 155 } ], "_prefab": { - "__id__": 145 + "__id__": 157 }, "_lpos": { "__type__": "cc.Vec3", @@ -3545,11 +3821,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 154 }, "_contentSize": { "__type__": "cc.Size", @@ -3573,11 +3849,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 140 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 156 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3657,11 +3933,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 159 }, "_contentSize": { "__type__": "cc.Size", @@ -3685,11 +3961,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 161 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3743,11 +4019,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 164 }, "_contentSize": { "__type__": "cc.Size", @@ -3771,11 +4047,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 166 }, "clickEvents": [], "_interactable": true, @@ -3840,24 +4116,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 119 + "__id__": 131 }, "_children": [ { - "__id__": 157 + "__id__": 169 } ], "_active": true, "_components": [ { - "__id__": 169 + "__id__": 181 }, { - "__id__": 171 + "__id__": 183 } ], "_prefab": { - "__id__": 173 + "__id__": 185 }, "_lpos": { "__type__": "cc.Vec3", @@ -3894,24 +4170,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 156 + "__id__": 168 }, "_children": [ { - "__id__": 158 + "__id__": 170 } ], "_active": true, "_components": [ { - "__id__": 164 + "__id__": 176 }, { - "__id__": 166 + "__id__": 178 } ], "_prefab": { - "__id__": 168 + "__id__": 180 }, "_lpos": { "__type__": "cc.Vec3", @@ -3948,20 +4224,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 157 + "__id__": 169 }, "_children": [], "_active": true, "_components": [ { - "__id__": 159 + "__id__": 171 }, { - "__id__": 161 + "__id__": 173 } ], "_prefab": { - "__id__": 163 + "__id__": 175 }, "_lpos": { "__type__": "cc.Vec3", @@ -3998,11 +4274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 172 }, "_contentSize": { "__type__": "cc.Size", @@ -4026,11 +4302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 162 + "__id__": 174 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4110,11 +4386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 177 }, "_contentSize": { "__type__": "cc.Size", @@ -4138,11 +4414,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 179 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4196,11 +4472,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 156 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 170 + "__id__": 182 }, "_contentSize": { "__type__": "cc.Size", @@ -4224,11 +4500,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 156 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 172 + "__id__": 184 }, "clickEvents": [], "_interactable": true, @@ -4289,28 +4565,28 @@ }, { "__type__": "cc.Node", - "_name": "ENT_EBP", + "_name": "ENT_BEP", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 119 + "__id__": 131 }, "_children": [ { - "__id__": 175 + "__id__": 187 } ], "_active": true, "_components": [ { - "__id__": 187 + "__id__": 199 }, { - "__id__": 189 + "__id__": 201 } ], "_prefab": { - "__id__": 191 + "__id__": 203 }, "_lpos": { "__type__": "cc.Vec3", @@ -4347,24 +4623,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 174 + "__id__": 186 }, "_children": [ { - "__id__": 176 + "__id__": 188 } ], "_active": true, "_components": [ { - "__id__": 182 + "__id__": 194 }, { - "__id__": 184 + "__id__": 196 } ], "_prefab": { - "__id__": 186 + "__id__": 198 }, "_lpos": { "__type__": "cc.Vec3", @@ -4401,20 +4677,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 175 + "__id__": 187 }, "_children": [], "_active": true, "_components": [ { - "__id__": 177 + "__id__": 189 }, { - "__id__": 179 + "__id__": 191 } ], "_prefab": { - "__id__": 181 + "__id__": 193 }, "_lpos": { "__type__": "cc.Vec3", @@ -4451,11 +4727,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 188 }, "_enabled": true, "__prefab": { - "__id__": 178 + "__id__": 190 }, "_contentSize": { "__type__": "cc.Size", @@ -4479,11 +4755,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 188 }, "_enabled": true, "__prefab": { - "__id__": 180 + "__id__": 192 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4495,7 +4771,7 @@ "b": 255, "a": 255 }, - "_string": "EBP", + "_string": "BEP", "_horizontalAlign": 0, "_verticalAlign": 1, "_actualFontSize": 25, @@ -4563,11 +4839,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 183 + "__id__": 195 }, "_contentSize": { "__type__": "cc.Size", @@ -4591,11 +4867,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 197 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4649,11 +4925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 174 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -4677,11 +4953,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 174 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 202 }, "clickEvents": [], "_interactable": true, @@ -4746,11 +5022,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 193 + "__id__": 205 }, "_contentSize": { "__type__": "cc.Size", @@ -4774,11 +5050,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 195 + "__id__": 207 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4819,11 +5095,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 209 }, "_resizeMode": 1, "_layoutType": 2, @@ -4860,6 +5136,8 @@ "__id__": 0 }, "fileId": "87B0ZzwEFAW7oEr8JbDXiB", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -4872,7 +5150,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 212 }, "_contentSize": { "__type__": "cc.Size", @@ -4903,137 +5181,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "qrCode", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 203 - }, - { - "__id__": 205 - } - ], - "_prefab": { - "__id__": 207 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -41.46900000000005, - "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__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 204 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 200, - "height": 200 - }, - "_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__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 206 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_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": "7fklT2DIlLBYJjY7JMRyxk" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "60IjPNkWBPTY02lkUjdFp5", - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "tips", @@ -5046,14 +5193,14 @@ "_active": true, "_components": [ { - "__id__": 209 + "__id__": 215 }, { - "__id__": 211 + "__id__": 217 } ], "_prefab": { - "__id__": 213 + "__id__": 219 }, "_lpos": { "__type__": "cc.Vec3", @@ -5090,11 +5237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 208 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 216 }, "_contentSize": { "__type__": "cc.Size", @@ -5118,11 +5265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 208 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 212 + "__id__": 218 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5192,6 +5339,8 @@ "__id__": 0 }, "fileId": "d5PyVw8otHPYM+NbJGTrkx", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -5204,23 +5353,23 @@ }, "_children": [ { - "__id__": 215 + "__id__": 221 }, { - "__id__": 223 + "__id__": 229 }, { - "__id__": 231 + "__id__": 237 } ], "_active": true, "_components": [ { - "__id__": 247 + "__id__": 253 } ], "_prefab": { - "__id__": 249 + "__id__": 255 }, "_lpos": { "__type__": "cc.Vec3", @@ -5257,23 +5406,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 214 + "__id__": 220 }, "_children": [], "_active": true, "_components": [ { - "__id__": 216 + "__id__": 222 }, { - "__id__": 218 + "__id__": 224 }, { - "__id__": 220 + "__id__": 226 } ], "_prefab": { - "__id__": 222 + "__id__": 228 }, "_lpos": { "__type__": "cc.Vec3", @@ -5310,11 +5459,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 223 }, "_contentSize": { "__type__": "cc.Size", @@ -5338,11 +5487,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 225 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5409,11 +5558,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 215 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 227 }, "languageKey": "", "defaultText": "", @@ -5443,23 +5592,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 214 + "__id__": 220 }, "_children": [], "_active": true, "_components": [ { - "__id__": 224 + "__id__": 230 }, { - "__id__": 226 + "__id__": 232 }, { - "__id__": 228 + "__id__": 234 } ], "_prefab": { - "__id__": 230 + "__id__": 236 }, "_lpos": { "__type__": "cc.Vec3", @@ -5496,11 +5645,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 223 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 225 + "__id__": 231 }, "_contentSize": { "__type__": "cc.Size", @@ -5524,11 +5673,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 223 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 233 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5595,11 +5744,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 223 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 235 }, "_alignFlags": 0, "_target": null, @@ -5634,6 +5783,8 @@ "__id__": 0 }, "fileId": "5cQ+V3NdZLDptplxwl/TnW", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -5642,27 +5793,27 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 214 + "__id__": 220 }, "_children": [ { - "__id__": 232 + "__id__": 238 } ], "_active": true, "_components": [ { - "__id__": 240 + "__id__": 246 }, { - "__id__": 242 + "__id__": 248 }, { - "__id__": 244 + "__id__": 250 } ], "_prefab": { - "__id__": 246 + "__id__": 252 }, "_lpos": { "__type__": "cc.Vec3", @@ -5699,23 +5850,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 231 + "__id__": 237 }, "_children": [], "_active": true, "_components": [ { - "__id__": 233 + "__id__": 239 }, { - "__id__": 235 + "__id__": 241 }, { - "__id__": 237 + "__id__": 243 } ], "_prefab": { - "__id__": 239 + "__id__": 245 }, "_lpos": { "__type__": "cc.Vec3", @@ -5752,11 +5903,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 232 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 234 + "__id__": 240 }, "_contentSize": { "__type__": "cc.Size", @@ -5780,11 +5931,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 232 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 236 + "__id__": 242 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5848,11 +5999,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 232 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 244 }, "languageKey": "web3panel.copy", "defaultText": "", @@ -5882,11 +6033,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 247 }, "_contentSize": { "__type__": "cc.Size", @@ -5910,11 +6061,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 249 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5955,11 +6106,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 245 + "__id__": 251 }, "clickEvents": [], "_interactable": true, @@ -5999,7 +6150,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 231 + "__id__": 237 }, "_id": "" }, @@ -6026,11 +6177,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 214 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 248 + "__id__": 254 }, "_contentSize": { "__type__": "cc.Size", @@ -6071,23 +6222,23 @@ }, "_children": [ { - "__id__": 251 + "__id__": 257 }, { - "__id__": 259 + "__id__": 265 } ], "_active": true, "_components": [ { - "__id__": 267 + "__id__": 273 }, { - "__id__": 269 + "__id__": 275 } ], "_prefab": { - "__id__": 271 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -6124,23 +6275,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 250 + "__id__": 256 }, "_children": [], "_active": true, "_components": [ { - "__id__": 252 + "__id__": 258 }, { - "__id__": 254 + "__id__": 260 }, { - "__id__": 256 + "__id__": 262 } ], "_prefab": { - "__id__": 258 + "__id__": 264 }, "_lpos": { "__type__": "cc.Vec3", @@ -6177,11 +6328,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 257 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", @@ -6205,11 +6356,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 257 }, "_enabled": false, "__prefab": { - "__id__": 255 + "__id__": 261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6250,11 +6401,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 251 + "__id__": 257 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 263 }, "_alignFlags": 9, "_target": null, @@ -6299,23 +6450,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 250 + "__id__": 256 }, "_children": [], "_active": true, "_components": [ { - "__id__": 260 + "__id__": 266 }, { - "__id__": 262 + "__id__": 268 }, { - "__id__": 264 + "__id__": 270 } ], "_prefab": { - "__id__": 266 + "__id__": 272 }, "_lpos": { "__type__": "cc.Vec3", @@ -6352,11 +6503,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 261 + "__id__": 267 }, "_contentSize": { "__type__": "cc.Size", @@ -6380,11 +6531,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 269 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6451,11 +6602,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 259 + "__id__": 265 }, "_enabled": false, "__prefab": { - "__id__": 265 + "__id__": 271 }, "_alignFlags": 8, "_target": null, @@ -6500,11 +6651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 250 + "__id__": 256 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 274 }, "_contentSize": { "__type__": "cc.Size", @@ -6528,11 +6679,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 250 + "__id__": 256 }, "_enabled": false, "__prefab": { - "__id__": 270 + "__id__": 276 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6613,7 +6764,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 279 }, "_contentSize": { "__type__": "cc.Size", @@ -6641,7 +6792,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 275 + "__id__": 281 }, "_alignFlags": 45, "_target": null, @@ -6677,7 +6828,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 283 }, "m_rootNode": null, "_id": "" @@ -6695,6 +6846,7 @@ "__id__": 0 }, "fileId": "e6pU+M6i9MErSV0E0QWx3B", - "instance": null + "instance": null, + "targetOverrides": null } ] \ No newline at end of file diff --git a/assets/resources/chat_waiting.anim b/assets/resources/chat_waiting.anim index a50934b7..e871ce55 100644 --- a/assets/resources/chat_waiting.anim +++ b/assets/resources/chat_waiting.anim @@ -80,45 +80,51 @@ "__type__": "cc.RealCurve", "_times": [ 0, - 0.28333333134651184, - 0.550000011920929 + 0.2833333333333333, + 0.55 ], "_values": [ { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -250, + "value": -200, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -250, + "value": -200, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -250, + "value": -200, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -134,8 +140,8 @@ "__type__": "cc.RealCurve", "_times": [ 0, - 0.28333333134651184, - 0.550000011920929 + 0.2833333333333333, + 0.55 ], "_values": [ { @@ -148,7 +154,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -160,7 +168,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -172,7 +182,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -188,7 +200,7 @@ "__type__": "cc.RealCurve", "_times": [ 0, - 0.28333333134651184 + 0.2833333333333333 ], "_values": [ { @@ -201,7 +213,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -213,7 +227,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -279,46 +295,52 @@ { "__type__": "cc.RealCurve", "_times": [ - 0.0833333358168602, - 0.36666667461395264, - 0.6333333253860474 + 0.08333333333333333, + 0.36666666666666664, + 0.6333333333333333 ], "_values": [ { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -220, + "value": -180, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -220, + "value": -180, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -220, + "value": -180, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -333,9 +355,9 @@ { "__type__": "cc.RealCurve", "_times": [ - 0.0833333358168602, - 0.36666667461395264, - 0.6333333253860474 + 0.08333333333333333, + 0.36666666666666664, + 0.6333333333333333 ], "_values": [ { @@ -348,7 +370,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -360,7 +384,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -372,7 +398,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -451,8 +479,8 @@ { "__type__": "cc.RealCurve", "_times": [ - 0.20000000298023224, - 0.46666666865348816, + 0.2, + 0.4666666666666667, 0.75 ], "_values": [ @@ -460,37 +488,43 @@ "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -190, + "value": -160, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -190, + "value": -160, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", "interpolationMode": 0, "tangentWeightMode": 0, - "value": -190, + "value": -160, "rightTangent": 0, "rightTangentWeight": 1, "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -505,8 +539,8 @@ { "__type__": "cc.RealCurve", "_times": [ - 0.20000000298023224, - 0.46666666865348816, + 0.2, + 0.4666666666666667, 0.75 ], "_values": [ @@ -520,7 +554,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -532,7 +568,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } }, { "__type__": "cc.RealKeyframeValue", @@ -544,7 +582,9 @@ "leftTangent": 0, "leftTangentWeight": 1, "easingMethod": 0, - "__editorExtras__": null + "__editorExtras__": { + "broken": null + } } ], "preExtrapolation": 1, @@ -558,8 +598,55 @@ }, { "__type__": "cc.RealCurve", - "_times": [], - "_values": [], + "_times": [ + 0.2, + 0.4666666666666667, + 0.75 + ], + "_values": [ + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + }, + { + "__type__": "cc.RealKeyframeValue", + "interpolationMode": 0, + "tangentWeightMode": 0, + "value": 0, + "rightTangent": 0, + "rightTangentWeight": 1, + "leftTangent": 0, + "leftTangentWeight": 1, + "easingMethod": 0, + "__editorExtras__": { + "tangentMode": 0 + } + } + ], "preExtrapolation": 1, "postExtrapolation": 1 }, diff --git a/assets/resources/ui/common/ZY_UI_TIPS.png.meta b/assets/resources/ui/common/ZY_UI_TIPS.png.meta index 36b9829f..57b4a361 100644 --- a/assets/resources/ui/common/ZY_UI_TIPS.png.meta +++ b/assets/resources/ui/common/ZY_UI_TIPS.png.meta @@ -52,8 +52,8 @@ "rawHeight": 90, "borderTop": 0, "borderBottom": 0, - "borderLeft": 0, - "borderRight": 0, + "borderLeft": 198, + "borderRight": 198, "packable": true, "pixelsToUnit": 100, "pivotX": 0.5, diff --git a/assets/resources/ui/shop/SHOP_ICON_HB5.png b/assets/resources/ui/shop/SHOP_ICON_HB5.png new file mode 100644 index 00000000..20ec83ef Binary files /dev/null and b/assets/resources/ui/shop/SHOP_ICON_HB5.png differ diff --git a/assets/resources/ui/shop/SHOP_ICON_HB5.png.meta b/assets/resources/ui/shop/SHOP_ICON_HB5.png.meta new file mode 100644 index 00000000..663b487f --- /dev/null +++ b/assets/resources/ui/shop/SHOP_ICON_HB5.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "02714aa2-0e62-4dd0-ac5a-d91da96f6231", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@6c48a", + "displayName": "SHOP_ICON_HB5", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "02714aa2-0e62-4dd0-ac5a-d91da96f6231", + "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": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@f9941", + "displayName": "SHOP_ICON_HB5", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 1, + "offsetY": 0.5, + "trimX": 6, + "trimY": 2, + "width": 40, + "height": 45, + "rawWidth": 50, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -20, + -22.5, + 0, + 20, + -22.5, + 0, + -20, + 22.5, + 0, + 20, + 22.5, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 6, + 48, + 46, + 48, + 6, + 3, + 46, + 3 + ], + "nuv": [ + 0.12, + 0.06, + 0.92, + 0.06, + 0.12, + 0.96, + 0.92, + 0.96 + ], + "minPos": [ + -20, + -22.5, + 0 + ], + "maxPos": [ + 20, + 22.5, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "02714aa2-0e62-4dd0-ac5a-d91da96f6231@6c48a" + } +} diff --git a/assets/resources/ui/theme/fenye/WD_ICON_VIP2.png b/assets/resources/ui/theme/fenye/WD_ICON_VIP2.png new file mode 100644 index 00000000..d618e413 Binary files /dev/null and b/assets/resources/ui/theme/fenye/WD_ICON_VIP2.png differ diff --git a/assets/resources/ui/theme/fenye/WD_ICON_VIP2.png.meta b/assets/resources/ui/theme/fenye/WD_ICON_VIP2.png.meta new file mode 100644 index 00000000..87103fab --- /dev/null +++ b/assets/resources/ui/theme/fenye/WD_ICON_VIP2.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "2de17c84-48b6-48b0-a893-435ecdd9269b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "2de17c84-48b6-48b0-a893-435ecdd9269b@6c48a", + "displayName": "WD_ICON_VIP2", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "2de17c84-48b6-48b0-a893-435ecdd9269b", + "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": "2de17c84-48b6-48b0-a893-435ecdd9269b@f9941", + "displayName": "WD_ICON_VIP2", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": -1, + "trimX": 3, + "trimY": 4, + "width": 70, + "height": 70, + "rawWidth": 76, + "rawHeight": 76, + "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": [ + 3, + 72, + 73, + 72, + 3, + 2, + 73, + 2 + ], + "nuv": [ + 0.039473684210526314, + 0.02631578947368421, + 0.9605263157894737, + 0.02631578947368421, + 0.039473684210526314, + 0.9473684210526315, + 0.9605263157894737, + 0.9473684210526315 + ], + "minPos": [ + -35, + -35, + 0 + ], + "maxPos": [ + 35, + 35, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "2de17c84-48b6-48b0-a893-435ecdd9269b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "2de17c84-48b6-48b0-a893-435ecdd9269b@6c48a" + } +}