diff --git a/assets/Scripts/chat18x/core/ChatController.ts b/assets/Scripts/chat18x/core/ChatController.ts index 35a6a771..fa9a8717 100644 --- a/assets/Scripts/chat18x/core/ChatController.ts +++ b/assets/Scripts/chat18x/core/ChatController.ts @@ -238,7 +238,6 @@ export class ChatController { return false; } } catch (error) { - ErrorHandler.Instance.handleApiError( error, "ChatController.sendMessage", diff --git a/assets/Scripts/chat18x/ui/panels/ChargePopPanel.ts b/assets/Scripts/chat18x/ui/panels/ChargePopPanel.ts index e4f02681..78d80b66 100644 --- a/assets/Scripts/chat18x/ui/panels/ChargePopPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ChargePopPanel.ts @@ -16,12 +16,16 @@ export class ChargePopPanel extends li_BaseView { Utils.parseNode(this.node, this._nodeTab); GButton.BandClick(this._nodeTab.chargeBtn, this.gotoCharge, this); - GButton.BandClick(this._nodeTab.closeBtn, this.close, this); + GButton.BandClick(this._nodeTab.closeBtn, this.Close, this); } gotoCharge() { NavigationManager.Instance.openPopupPanel("PurchasePanel"); - this.close(); + this.Close(); + } + + Close() { + NavigationManager.Instance.closePopupPanel(this.node); } } diff --git a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts index dff00d6a..f765bcb1 100644 --- a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts @@ -22,7 +22,6 @@ import { ChatContentsLayout } from "../components/ChatContentsLayout"; import { ImagePopup } from "../components/ImagePopup"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; import { PriceType, VideoEmotion, purchase } from "../../../schema/schema"; -import { PayToTalkSubpanel } from "./PayToTalkSubpanel"; import { DataId, DataManager } from "../../data/DataManager"; import { GirlData } from "../../data/GirlData"; import { SceneBgVideoLayer } from "../../../Sub/UI/SceneBgVideoLayer"; @@ -39,9 +38,6 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { manager: DialogManager = null; private chatController: ChatController = null; - @property(PayToTalkSubpanel) - payToTalkPanel: PayToTalkSubpanel = null; - @property(EditBox) editBox: EditBox = null; @@ -105,7 +101,6 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { this.register(); //this.refresh(); - this.payToTalkPanel.node.active = false; // 检查 SceneBgVideoLayer 是否可用 if (!this.videoLayer) { @@ -470,7 +465,10 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { } onChatLimitReached(): void { - this.payToTalkPanel.show(this.categoryId, this.id); + NavigationManager.Instance.openPopupPanel("PayToTalkPanel", { + categoryId: this.categoryId, + girlId: this.id, + }); TipsPanel.show(LanguageUtils.getText("chat_error_code_1001")); } /** diff --git a/assets/Scripts/chat18x/ui/panels/PayToTalkSubpanel.ts b/assets/Scripts/chat18x/ui/panels/PayToTalkPanel.ts similarity index 70% rename from assets/Scripts/chat18x/ui/panels/PayToTalkSubpanel.ts rename to assets/Scripts/chat18x/ui/panels/PayToTalkPanel.ts index 218d304e..d4502558 100644 --- a/assets/Scripts/chat18x/ui/panels/PayToTalkSubpanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PayToTalkPanel.ts @@ -17,41 +17,33 @@ import { ConfigId, ConfigManager } from "../../manager/ConfigManager"; import { PurchaseConfig } from "../../config/PurchaseConfig"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; import { logger } from "db://assets/Scripts/Main/Common/Logger"; +import li_BaseView from "../../../Main/Common/li_BaseView"; +import { TipsPanel } from "./TipsPanel"; +import { NavigationManager } from "../../manager/NavigationManager"; const { ccclass, property } = _decorator; -@ccclass("PayToTalkSubpanel") -export class PayToTalkSubpanel extends Component { - @property(Label) - timeLabel: Label = null; - @property(Label) - timeBtnLabel: Label = null; - - @property(Label) - vipLabel: Label = null; - - @property(Label) - vipBtnLabel: Label = null; - +@ccclass("PayToTalkPanel") +export class PayToTalkPanel extends li_BaseView { base: UIOpacity; - categoryId: number; - girlId: number; - protected onLoad(): void { + categoryId: string; + girlId: number; + openUIDataCT(data) { + this.categoryId = data.categoryId; + this.girlId = data.girlId; + } + onLoadCT(): void { this.base = this.getComponent(UIOpacity); + this.show(); } - show(categoryId: string, girlId: number) { + show() { + if (!this.base) this.base = this.getComponent(UIOpacity); this.node.active = true; this.base.opacity = 0; - this.categoryId = Number(categoryId); - this.girlId = girlId; const cfg = ConfigManager.I.getDataById(ConfigId.Purchase); - const count = cfg.getCountById(cfg.getChatIds()[0]); - - this.timeBtnLabel.string = - count + LanguageUtils.getText("chatpanel.buy10times"); tween(this.base).to(0.3, { opacity: 255 }).start(); } @@ -63,7 +55,7 @@ export class PayToTalkSubpanel extends Component { { opacity: 0 }, { onComplete: () => { - this.base.node.active = false; + NavigationManager.Instance.closePopupPanel(this.node); }, } ) @@ -86,9 +78,13 @@ export class PayToTalkSubpanel extends Component { onClick_BuyVip() { //购买VIP logger.log("购买vip"); - const shopData = DataManager.I.getDataById(DataId.Shop); - const memberId = shopData.get7DayMemberId(); - this.reqBuyGood(memberId, this.girlId); + // const shopData = DataManager.I.getDataById(DataId.Shop); + // const memberId = shopData.get7DayMemberId(); + // this.reqBuyGood(memberId, this.girlId); + NavigationManager.Instance.openPopupPanel("PurchasePanel"); + } + onClickClose() { + this.hide(); } // 使用余额购买商品 @@ -105,7 +101,7 @@ export class PayToTalkSubpanel extends Component { // 保存数据 const girlData = DataManager.I.getDataById(DataId.Girl); girlData.setChatRemainCount( - this.categoryId.toString(), + this.categoryId, girlId, resData.chatRemainCount ); @@ -113,7 +109,14 @@ export class PayToTalkSubpanel extends Component { walletData.balance = Number(resData.balance); walletData.vipExpire = Number(resData.vipExpire); // 刷新界面 + TipsPanel.show(LanguageUtils.getText("payment.succeed")); + this.hide(); + } else { + if (res && res.code) { + const key = "error_code_" + res.code; + TipsPanel.show(LanguageUtils.getText(key)); + } } } } diff --git a/assets/Scripts/chat18x/ui/panels/PayToTalkSubpanel.ts.meta b/assets/Scripts/chat18x/ui/panels/PayToTalkPanel.ts.meta similarity index 100% rename from assets/Scripts/chat18x/ui/panels/PayToTalkSubpanel.ts.meta rename to assets/Scripts/chat18x/ui/panels/PayToTalkPanel.ts.meta diff --git a/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts index a95ae78e..e881e982 100644 --- a/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts @@ -107,7 +107,7 @@ export class PopupGirlDetailPanel extends li_BaseView { GButton.BandClick(this._nodeTab.CloseBtn, this.Close, this); } Close() { - this.close(); + NavigationManager.Instance.closePopupPanel(this.node); } async buyAsset() { // 购买id为girlId的女生 @@ -145,7 +145,7 @@ export class PopupGirlDetailPanel extends li_BaseView { } else { NavigationManager.Instance.openPopupPanel("ChargePopPanel"); } - this.close(); + this.Close(); } // 刷新余额 private refreshCoinNum() { diff --git a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts index bc982c02..16176949 100644 --- a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts @@ -129,7 +129,7 @@ export class PurchasePanel extends li_BaseView { GButton.BandClick( this._nodeTab.ReturnBtn, () => { - NavigationManager.Instance.closeSubPanel(this); + NavigationManager.Instance.closePopupPanel(this.node); }, this ); diff --git a/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts index f14a10bb..abcb9ba1 100644 --- a/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/Web3PopPanel.ts @@ -14,6 +14,7 @@ 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 { NavigationManager } from "../../manager/NavigationManager"; const { ccclass, property } = _decorator; @@ -260,7 +261,7 @@ export class Web3PopPanel extends li_BaseView { onClickClose() { this.stopCountdown(); this.payPanel.web3PopPanel = null; - this.close(); + NavigationManager.Instance.closePopupPanel(this.node); } private formatCountdownTime(seconds: number): string { diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index e71cafb5..a8d1efbf 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -21,9 +21,6 @@ { "__id__": 2 }, - { - "__id__": 305 - }, { "__id__": 110 }, @@ -31,23 +28,23 @@ "__id__": 70 }, { - "__id__": 391 + "__id__": 305 } ], "_active": true, "_components": [ { - "__id__": 421 + "__id__": 335 }, { - "__id__": 423 + "__id__": 337 }, { - "__id__": 425 + "__id__": 339 } ], "_prefab": { - "__id__": 427 + "__id__": 341 }, "_lpos": { "__type__": "cc.Vec3", @@ -6816,7 +6813,7 @@ }, { "__type__": "cc.Node", - "_name": "PayToTalk", + "_name": "Node", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -6825,659 +6822,8 @@ "_children": [ { "__id__": 306 - }, - { - "__id__": 314 - }, - { - "__id__": 322 - }, - { - "__id__": 351 } ], - "_active": false, - "_components": [ - { - "__id__": 382 - }, - { - "__id__": 384 - }, - { - "__id__": 386 - }, - { - "__id__": 388 - } - ], - "_prefab": { - "__id__": 390 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -312.697, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "bg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 305 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 307 - }, - { - "__id__": 309 - }, - { - "__id__": 311 - } - ], - "_prefab": { - "__id__": 313 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 306 - }, - "_enabled": true, - "__prefab": { - "__id__": 308 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 750, - "height": 442 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acgfqS2WdJuqbvsaV7hMZ7" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 306 - }, - "_enabled": true, - "__prefab": { - "__id__": 310 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 29, - "g": 19, - "b": 38, - "a": 179 - }, - "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "729ZiY6SxI1IWfbZN8TnS5" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 306 - }, - "_enabled": true, - "__prefab": { - "__id__": 312 - }, - "_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": 2, - "_originalHeight": 2, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "58dqRIALxKDpqztUp3/ehx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "03/dwwF7VAMpIUcaiLke4D", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "text", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 305 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 315 - }, - { - "__id__": 317 - }, - { - "__id__": 319 - } - ], - "_prefab": { - "__id__": 321 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 135.33100000000002, - "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__": 314 - }, - "_enabled": true, - "__prefab": { - "__id__": 316 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 947.965625, - "height": 120.8 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cdO3Ud1cRDT5NOMp8sXf5s" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 314 - }, - "_enabled": true, - "__prefab": { - "__id__": 318 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 209, - "g": 61, - "b": 61, - "a": 255 - }, - "_string": "您与该技师免费聊天次数已达上限,请购买更多次数或开通VIP~", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 33, - "_fontSize": 32, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 2, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "45v+XE7U1HqKGFGZtOGWIk" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 314 - }, - "_enabled": true, - "__prefab": { - "__id__": 320 - }, - "languageKey": "chatpanel.paytotalk.desc", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bckVI+SlZDsZfowv7I4ytm" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b4OyaV0rlLa4d6AaucxpZf", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "PurchaseChat", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 305 - }, - "_children": [ - { - "__id__": 323 - }, - { - "__id__": 329 - }, - { - "__id__": 335 - } - ], - "_active": true, - "_components": [ - { - "__id__": 341 - }, - { - "__id__": 343 - }, - { - "__id__": 345 - }, - { - "__id__": 348 - } - ], - "_prefab": { - "__id__": 350 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -267.244, - "y": -127.38700000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 322 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 324 - }, - { - "__id__": 326 - } - ], - "_prefab": { - "__id__": 328 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 34.29600000000005, - "y": 101.68699999999995, - "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__": 323 - }, - "_enabled": true, - "__prefab": { - "__id__": 325 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 145, - "height": 68.04 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bcEdrOglKvKrAXT97ccBF" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 323 - }, - "_enabled": true, - "__prefab": { - "__id__": 327 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 166, - "g": 222, - "b": 209, - "a": 255 - }, - "_string": "9.9", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 48, - "_fontSize": 48, - "_fontFamily": "NotoSans-Regular", - "_lineHeight": 38.5, - "_overflow": 2, - "_enableWrapText": false, - "_font": { - "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 126, - "g": 97, - "b": 36, - "a": 255 - }, - "_outlineWidth": 4, - "_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": "d0uaKlRZJFBaqGg9HAS8Kr" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c49aOUDEZNLb434+oa27XN", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 322 - }, - "_children": [], "_active": true, "_components": [ { @@ -7490,1372 +6836,6 @@ "_prefab": { "__id__": 334 }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -74.56999999999996, - "y": 103.709, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.8, - "y": 0.8, - "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__": 329 - }, - "_enabled": true, - "__prefab": { - "__id__": 331 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 102, - "height": 89 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "39TPRT8CNCh5GIWVwWhSVu" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 329 - }, - "_enabled": true, - "__prefab": { - "__id__": 333 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@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": "0fBeBv8O9CWr1Nis4EgH5t" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "69cWDXoiJMhpWQVBlI+chS", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "butTimeText", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 322 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 336 - }, - { - "__id__": 338 - } - ], - "_prefab": { - "__id__": 340 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 335 - }, - "_enabled": true, - "__prefab": { - "__id__": 337 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 204.08203125, - "height": 126 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b5bP2+ojZENpZABycI/CKb" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 335 - }, - "_enabled": true, - "__prefab": { - "__id__": 339 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 244, - "g": 219, - "b": 255, - "a": 255 - }, - "_string": "10 times", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 54, - "_fontSize": 54, - "_fontFamily": "Arial", - "_lineHeight": 100, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 148, - "g": 105, - "b": 29, - "a": 255 - }, - "_outlineWidth": 4, - "_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": "79qKWbB/1C1pMsdr49o7bE" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3cxsHCGadHrKGOG8vvD0x8", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 322 - }, - "_enabled": true, - "__prefab": { - "__id__": 342 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 419, - "height": 130 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2aaQrG34xEQathDT/KfKLb" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 322 - }, - "_enabled": true, - "__prefab": { - "__id__": 344 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "9e8d6126-392d-4fd5-aaae-458b82aa363c@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "55/09mWjtH56hfCFjTtsKn" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 322 - }, - "_enabled": true, - "__prefab": { - "__id__": 346 - }, - "clickEvents": [ - { - "__id__": 347 - } - ], - "_interactable": true, - "_transition": 3, - "_normalColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 163, - "g": 163, - "b": 163, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 117, - "g": 117, - "b": 117, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 167, - "g": 167, - "b": 167, - "a": 255 - }, - "_normalSprite": null, - "_hoverSprite": null, - "_pressedSprite": null, - "_disabledSprite": null, - "_duration": 0.1, - "_zoomScale": 0.9, - "_target": { - "__id__": 322 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a6tSV1ITJG/4ojyCVXwI6c" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 305 - }, - "component": "", - "_componentId": "06f47u6codPJodunp6ofax0", - "handler": "onClick_BuyTime", - "customEventData": "" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 322 - }, - "_enabled": true, - "__prefab": { - "__id__": 349 - }, - "_alignFlags": 16, - "_target": null, - "_left": 380, - "_right": 380, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": -267.244, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 400, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1drpQQNrZH86ANdTF55gbr" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "3cE5oKcNtI/JqjXmb+KcUl", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "PurchaseVip", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 305 - }, - "_children": [ - { - "__id__": 352 - }, - { - "__id__": 358 - }, - { - "__id__": 364 - } - ], - "_active": true, - "_components": [ - { - "__id__": 372 - }, - { - "__id__": 374 - }, - { - "__id__": 376 - }, - { - "__id__": 379 - } - ], - "_prefab": { - "__id__": 381 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 259.53, - "y": -127.38700000000006, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 351 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 353 - }, - { - "__id__": 355 - } - ], - "_prefab": { - "__id__": 357 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 34.29600000000005, - "y": 100, - "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__": 352 - }, - "_enabled": true, - "__prefab": { - "__id__": 354 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 145.626563, - "height": 65.096 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b0iKOaY6RIVrhy9jwDSGz/" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 352 - }, - "_enabled": true, - "__prefab": { - "__id__": 356 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 166, - "g": 222, - "b": 209, - "a": 255 - }, - "_string": "9.9", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 48, - "_fontSize": 48, - "_fontFamily": "NotoSans-Regular", - "_lineHeight": 37, - "_overflow": 2, - "_enableWrapText": false, - "_font": { - "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 126, - "g": 97, - "b": 36, - "a": 255 - }, - "_outlineWidth": 4, - "_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": "d6L1tZXCpGI5qPucj6Lkx2" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "22uKVtsXhG2pGYzhZlJyKw", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Sprite", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 351 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 359 - }, - { - "__id__": 361 - } - ], - "_prefab": { - "__id__": 363 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -74.56999999999996, - "y": 103.709, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.8, - "y": 0.8, - "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__": 358 - }, - "_enabled": true, - "__prefab": { - "__id__": 360 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 102, - "height": 89 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "fdhA7RymJLSpc3kTZYzZek" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 358 - }, - "_enabled": true, - "__prefab": { - "__id__": 362 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@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": "1asokAgYNHGJrlwFkQwJBy" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fcqeucCpRN+q3T9M1otU/A", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Label-001", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 351 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 365 - }, - { - "__id__": 367 - }, - { - "__id__": 369 - } - ], - "_prefab": { - "__id__": 371 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 364 - }, - "_enabled": true, - "__prefab": { - "__id__": 366 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 195.0908203125, - "height": 126 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "36ulSBKf1FSYvILT4Eb6Eq" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 364 - }, - "_enabled": true, - "__prefab": { - "__id__": 368 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 89, - "g": 56, - "b": 53, - "a": 255 - }, - "_string": "Buy VIP", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 54, - "_fontSize": 54, - "_fontFamily": "Arial", - "_lineHeight": 100, - "_overflow": 0, - "_enableWrapText": true, - "_font": { - "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 148, - "g": 105, - "b": 29, - "a": 255 - }, - "_outlineWidth": 4, - "_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": "b4ce7QlXxKRaNk+0xkASHv" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 364 - }, - "_enabled": true, - "__prefab": { - "__id__": 370 - }, - "languageKey": "chatpanel.buyvip", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f7VR4eXUlKHLUH023bV5ar" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "0216JTLZ1GBZFsUKw17oqQ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 351 - }, - "_enabled": true, - "__prefab": { - "__id__": 373 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 419, - "height": 130 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e39RD7NSVAMqgLc7YZjfqj" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 351 - }, - "_enabled": true, - "__prefab": { - "__id__": 375 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "91b5bccb-e528-4eb2-9cc5-af5672a8468e@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "73COS701VP8pf21hf+2XY6" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 351 - }, - "_enabled": true, - "__prefab": { - "__id__": 377 - }, - "clickEvents": [ - { - "__id__": 378 - } - ], - "_interactable": true, - "_transition": 3, - "_normalColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 167, - "g": 167, - "b": 167, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 112, - "g": 112, - "b": 112, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 167, - "g": 167, - "b": 167, - "a": 255 - }, - "_normalSprite": null, - "_hoverSprite": null, - "_pressedSprite": null, - "_disabledSprite": null, - "_duration": 0.1, - "_zoomScale": 0.9, - "_target": { - "__id__": 351 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "33D9WKUIdAoIuvtU7cSt6B" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 305 - }, - "component": "", - "_componentId": "06f47u6codPJodunp6ofax0", - "handler": "onClick_BuyVip", - "customEventData": "" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 351 - }, - "_enabled": true, - "__prefab": { - "__id__": 380 - }, - "_alignFlags": 16, - "_target": null, - "_left": 380, - "_right": 380, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 259.53, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 400, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a3bIUrkUhO9L4+FNc++uC/" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "86Mtj+TU9BoaKsEH8+xVZv", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 305 - }, - "_enabled": true, - "__prefab": { - "__id__": 383 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 750, - "height": 442 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5ekIVCGqJG/rg3PHBhzmRt" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 305 - }, - "_enabled": true, - "__prefab": { - "__id__": 385 - }, - "_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": 498.9, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 40, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f2mF8hyzRAMauWPHhBqiex" - }, - { - "__type__": "06f47u6codPJodunp6ofax0", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 305 - }, - "_enabled": true, - "__prefab": { - "__id__": 387 - }, - "timeLabel": { - "__id__": 326 - }, - "timeBtnLabel": { - "__id__": 338 - }, - "vipLabel": { - "__id__": 355 - }, - "vipBtnLabel": { - "__id__": 367 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "32nKXN2pZIQYfZpP+3u9ug" - }, - { - "__type__": "cc.UIOpacity", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 305 - }, - "_enabled": true, - "__prefab": { - "__id__": 389 - }, - "_opacity": 255, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5buqvlFA9O36SAhnzWV/t8" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a4Nb4ZSDFOqYcn9TAsyUu5", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Node", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 392 - } - ], - "_active": true, - "_components": [ - { - "__id__": 416 - }, - { - "__id__": 418 - } - ], - "_prefab": { - "__id__": 420 - }, "_lpos": { "__type__": "cc.Vec3", "x": -781.5160000000001, @@ -8891,24 +6871,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 391 + "__id__": 305 }, "_children": [ { - "__id__": 393 + "__id__": 307 } ], "_active": true, "_components": [ { - "__id__": 411 + "__id__": 325 }, { - "__id__": 413 + "__id__": 327 } ], "_prefab": { - "__id__": 415 + "__id__": 329 }, "_lpos": { "__type__": "cc.Vec3", @@ -8945,27 +6925,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 392 + "__id__": 306 }, "_children": [ { - "__id__": 394 + "__id__": 308 } ], "_active": true, "_components": [ { - "__id__": 404 + "__id__": 318 }, { - "__id__": 406 + "__id__": 320 }, { - "__id__": 408 + "__id__": 322 } ], "_prefab": { - "__id__": 410 + "__id__": 324 }, "_lpos": { "__type__": "cc.Vec3", @@ -9002,26 +6982,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 393 + "__id__": 307 }, "_children": [], "_active": true, "_components": [ { - "__id__": 395 + "__id__": 309 }, { - "__id__": 397 + "__id__": 311 }, { - "__id__": 399 + "__id__": 313 }, { - "__id__": 401 + "__id__": 315 } ], "_prefab": { - "__id__": 403 + "__id__": 317 }, "_lpos": { "__type__": "cc.Vec3", @@ -9058,11 +7038,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 394 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 396 + "__id__": 310 }, "_contentSize": { "__type__": "cc.Size", @@ -9086,11 +7066,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 394 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 398 + "__id__": 312 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9128,11 +7108,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 394 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 400 + "__id__": 314 }, "_alignFlags": 12, "_target": null, @@ -9164,11 +7144,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 394 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 402 + "__id__": 316 }, "clickEvents": [], "_interactable": true, @@ -9233,11 +7213,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 393 + "__id__": 307 }, "_enabled": true, "__prefab": { - "__id__": 405 + "__id__": 319 }, "_contentSize": { "__type__": "cc.Size", @@ -9261,11 +7241,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 393 + "__id__": 307 }, "_enabled": true, "__prefab": { - "__id__": 407 + "__id__": 321 }, "_type": 3, "_inverted": false, @@ -9283,11 +7263,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 393 + "__id__": 307 }, "_enabled": true, "__prefab": { - "__id__": 409 + "__id__": 323 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9341,11 +7321,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 392 + "__id__": 306 }, "_enabled": true, "__prefab": { - "__id__": 412 + "__id__": 326 }, "_contentSize": { "__type__": "cc.Size", @@ -9369,11 +7349,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 392 + "__id__": 306 }, "_enabled": true, "__prefab": { - "__id__": 414 + "__id__": 328 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9427,11 +7407,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 417 + "__id__": 331 }, "_contentSize": { "__type__": "cc.Size", @@ -9455,14 +7435,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 391 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 419 + "__id__": 333 }, "image": { - "__id__": 397 + "__id__": 311 }, "_id": "" }, @@ -9493,7 +7473,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 422 + "__id__": 336 }, "_contentSize": { "__type__": "cc.Size", @@ -9521,7 +7501,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 424 + "__id__": 338 }, "_alignFlags": 45, "_target": null, @@ -9557,12 +7537,9 @@ }, "_enabled": true, "__prefab": { - "__id__": 426 + "__id__": 340 }, "m_rootNode": null, - "payToTalkPanel": { - "__id__": 386 - }, "editBox": { "__id__": 219 }, @@ -9576,7 +7553,7 @@ "__id__": 67 }, "popUpImage": { - "__id__": 418 + "__id__": 332 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/PayToTalkPanel.prefab b/assets/bundles/Chat18x/PayToTalkPanel.prefab new file mode 100644 index 00000000..2c585d35 --- /dev/null +++ b/assets/bundles/Chat18x/PayToTalkPanel.prefab @@ -0,0 +1,1952 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "PayToTalkPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "PayToTalkPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 10 + }, + { + "__id__": 19 + }, + { + "__id__": 27 + }, + { + "__id__": 58 + } + ], + "_active": true, + "_components": [ + { + "__id__": 77 + }, + { + "__id__": 79 + }, + { + "__id__": 81 + }, + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 85 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -7.217999999999961, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1.3390000000001692, + "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__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 470, + "height": 410 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b3co/xTJRLBZHVPzOpZ7yD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "3fa8a545-d867-4ee3-888e-fdfd7b8a8d6e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8fTHSbjzdJu52mFuj0vwZq" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_alignFlags": 45, + "_target": null, + "_left": 140, + "_right": 140, + "_top": 14.66099999999983, + "_bottom": 17.33900000000017, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 2, + "_originalHeight": 2, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "24VVlk5upEoKRDrXrPBQaw" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dbGF40SrxFfbSMXHWu6/x2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ZY_ICON_GB", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 18 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 190.95500000000004, + "y": 165.50300000000016, + "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__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 36 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2bcIrXjc9DWrraBag86Fm4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 14 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "06b32779-9627-4ace-b4bc-c8d25f3b3273@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": "35tE2Dhm5NTb7RKpQ+d2um" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 16 + }, + "clickEvents": [ + { + "__id__": 17 + } + ], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8n1xgpJhPq5YKjQck96CZ" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "06f47u6codPJodunp6ofax0", + "handler": "onClickClose", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d7VlRlIvFHlKn4c8ubpG/n", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "text", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 22 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 26 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 13.666000000000167, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360.388625, + "height": 170.304 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cbgj7Cz/FGP7CpizKf14by" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 23 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "您与该技师免费聊天次数已达上限,请购买更多次数或开通VIP~", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 29, + "_fontSize": 28, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_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": "b92qi4+y5Bw6jL6Ol+zX4S" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 25 + }, + "languageKey": "chatpanel.paytotalk.desc", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3aGHRQNDJC25G6eSyr+iSc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "17xMuyU/lEWLYSVYjYimCb", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "PurchaseChat", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 28 + }, + { + "__id__": 34 + }, + { + "__id__": 40 + } + ], + "_active": true, + "_components": [ + { + "__id__": 48 + }, + { + "__id__": 50 + }, + { + "__id__": 52 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 57 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -110, + "y": -141.9709999999999, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "TS_db_zs", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 29 + }, + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 33 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 45.71000000000015, + "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__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 30 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 32 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27pel10QJDCYPmdVD7bFO7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 32 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b4c7bcd6-5382-49a2-971c-353e63133b7b@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": "e6P5SIktlH/KOTF90FTgkS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "77+c3vfItJqL8rH6shayWK", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 35 + }, + { + "__id__": 37 + } + ], + "_prefab": { + "__id__": 39 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 13.341000000000008, + "y": 44.746000000000095, + "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__": 34 + }, + "_enabled": true, + "__prefab": { + "__id__": 36 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100.417, + "height": 27.774000000000004 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6e/HqDPZ5DbLhHulhNi9/g" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 34 + }, + "_enabled": true, + "__prefab": { + "__id__": 38 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 135, + "g": 50, + "b": 239, + "a": 255 + }, + "_string": "9.9", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 27.7, + "_overflow": 2, + "_enableWrapText": false, + "_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": 126, + "g": 97, + "b": 36, + "a": 255 + }, + "_outlineWidth": 4, + "_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": "4aelmJYFROa4XOmAhZHb/Z" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "10/oduT8ZLZIpwhXnI8Bau", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "butTimeText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 41 + }, + { + "__id__": 43 + }, + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 47 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 139.39690625, + "height": 49.68000000000001 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "85aZtNfMJHKID3TFa2K6gZ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 44 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "10 times", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 31, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 30, + "_overflow": 2, + "_enableWrapText": true, + "_font": { + "__uuid__": "2d833118-c040-441c-a2f2-8e56390acb70", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 148, + "g": 105, + "b": 29, + "a": 255 + }, + "_outlineWidth": 4, + "_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": "31mdfCP6BLNqhEIc0dVxAp" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 46 + }, + "languageKey": "chatpanel.buy10times", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8d1Ta4LtxEO5QXxMczMkdg" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8ewrt2PFxF14AFvKU1iBa8", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 49 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d5f7gNmTdGdIrTS8oF6vm7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 51 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_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": "d1acTKRTxJwY8N6asNb1xx" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 53 + }, + "clickEvents": [ + { + "__id__": 54 + } + ], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 163, + "g": 163, + "b": 163, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 117, + "g": 117, + "b": 117, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.9, + "_target": { + "__id__": 27 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6cCpO5Ro1I64joiakyZyZU" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "06f47u6codPJodunp6ofax0", + "handler": "onClick_BuyTime", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 56 + }, + "_alignFlags": 16, + "_target": null, + "_left": 380, + "_right": 380, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": -110, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 400, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "00FnyxlxZNoJwT6dcYKowH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "74F2RzcPhM2IjnOiwK+c3/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "PurchaseVip", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 59 + } + ], + "_active": true, + "_components": [ + { + "__id__": 67 + }, + { + "__id__": 69 + }, + { + "__id__": 71 + }, + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 76 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 110, + "y": -141.9709999999999, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 58 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 60 + }, + { + "__id__": 62 + }, + { + "__id__": 64 + } + ], + "_prefab": { + "__id__": 66 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 61 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 134.6397890625, + "height": 48.8 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bbRO4MM6lNAbVZqPPohlZp" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 63 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Buy VIP", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 31, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 30, + "_overflow": 2, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 148, + "g": 105, + "b": 29, + "a": 255 + }, + "_outlineWidth": 4, + "_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": "43yzrGgl5OI7OQgZQFpeZl" + }, + { + "__type__": "d7e4fOii5xNLqH2PF6de4pP", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 65 + }, + "languageKey": "chatpanel.buyvip", + "defaultText": "", + "autoUpdate": true, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "11EltmuFpDbZHa9EnfbPMD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d2cp/5ueVIWL650oXqJKxq", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 58 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 50 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "daiFkuhudNf4YIk9QqDeZD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 58 + }, + "_enabled": true, + "__prefab": { + "__id__": 70 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "346261a9-723d-4a55-8044-1439a1cf456b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_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": "bbjkANbW9AmYQGi99ZzA18" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 58 + }, + "_enabled": true, + "__prefab": { + "__id__": 72 + }, + "clickEvents": [ + { + "__id__": 73 + } + ], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 112, + "g": 112, + "b": 112, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.9, + "_target": { + "__id__": 58 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1RZ01tHNMLYqqVaWIM7p3" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "06f47u6codPJodunp6ofax0", + "handler": "onClick_BuyVip", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 58 + }, + "_enabled": true, + "__prefab": { + "__id__": 75 + }, + "_alignFlags": 16, + "_target": null, + "_left": 380, + "_right": 380, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 110, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 400, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b2U0uoH5hA84VpfyuCW09l" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "68QCyzD5VH3rbGASMEUkS0", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 78 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 442 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44xhmQ0m1DNp3H3Vmg9FB0" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 80 + }, + "_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": 498.9, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 40, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7cP6gbbIJNi7Mev2lH2Jvn" + }, + { + "__type__": "06f47u6codPJodunp6ofax0", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 82 + }, + "m_rootNode": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "32+SAPLXhJz6/FCf1eGu9T" + }, + { + "__type__": "cc.UIOpacity", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 84 + }, + "_opacity": 255, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b9QsJlauZMnbWfiL2rc2P3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "24n/hlXw5D+ao6k0ojRD6a", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/bundles/Chat18x/PayToTalkPanel.prefab.meta b/assets/bundles/Chat18x/PayToTalkPanel.prefab.meta new file mode 100644 index 00000000..8a07dd53 --- /dev/null +++ b/assets/bundles/Chat18x/PayToTalkPanel.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "7e0cd3ab-7316-4451-a30c-305baeb5a77d", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "PayToTalkPanel" + } +} diff --git a/assets/bundles/DataTable/tblanguage.bin b/assets/bundles/DataTable/tblanguage.bin index 686241fa..aea48d76 100644 Binary files a/assets/bundles/DataTable/tblanguage.bin and b/assets/bundles/DataTable/tblanguage.bin differ diff --git a/assets/resources/ui/girls_list/ZY_UI_SPJS_DB.png b/assets/resources/ui/girls_list/ZY_UI_SPJS_DB.png index b0051c0c..3c0eb474 100644 Binary files a/assets/resources/ui/girls_list/ZY_UI_SPJS_DB.png and b/assets/resources/ui/girls_list/ZY_UI_SPJS_DB.png differ diff --git a/assets/resources/ui/paytotalk.meta b/assets/resources/ui/paytotalk.meta new file mode 100644 index 00000000..4de58df9 --- /dev/null +++ b/assets/resources/ui/paytotalk.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.2.0", + "importer": "directory", + "imported": true, + "uuid": "a77c2aa8-999c-4ace-a23b-4acd71574939", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/resources/ui/paytotalk/TS_an_fen.png b/assets/resources/ui/paytotalk/TS_an_fen.png new file mode 100644 index 00000000..db623693 Binary files /dev/null and b/assets/resources/ui/paytotalk/TS_an_fen.png differ diff --git a/assets/resources/ui/paytotalk/TS_an_fen.png.meta b/assets/resources/ui/paytotalk/TS_an_fen.png.meta new file mode 100644 index 00000000..c096cfa7 --- /dev/null +++ b/assets/resources/ui/paytotalk/TS_an_fen.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "346261a9-723d-4a55-8044-1439a1cf456b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "346261a9-723d-4a55-8044-1439a1cf456b@6c48a", + "displayName": "TS_an_fen", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "346261a9-723d-4a55-8044-1439a1cf456b", + "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": "346261a9-723d-4a55-8044-1439a1cf456b@f9941", + "displayName": "TS_an_fen", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 170, + "height": 50, + "rawWidth": 170, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -85, + -25, + 0, + 85, + -25, + 0, + -85, + 25, + 0, + 85, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 50, + 170, + 50, + 0, + 0, + 170, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -85, + -25, + 0 + ], + "maxPos": [ + 85, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "346261a9-723d-4a55-8044-1439a1cf456b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "346261a9-723d-4a55-8044-1439a1cf456b@6c48a" + } +} diff --git a/assets/resources/ui/paytotalk/TS_an_zi.png b/assets/resources/ui/paytotalk/TS_an_zi.png new file mode 100644 index 00000000..551a8c6a Binary files /dev/null and b/assets/resources/ui/paytotalk/TS_an_zi.png differ diff --git a/assets/resources/ui/paytotalk/TS_an_zi.png.meta b/assets/resources/ui/paytotalk/TS_an_zi.png.meta new file mode 100644 index 00000000..b5f13f7e --- /dev/null +++ b/assets/resources/ui/paytotalk/TS_an_zi.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2@6c48a", + "displayName": "TS_an_zi", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2", + "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": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2@f9941", + "displayName": "TS_an_zi", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 170, + "height": 50, + "rawWidth": 170, + "rawHeight": 50, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -85, + -25, + 0, + 85, + -25, + 0, + -85, + 25, + 0, + 85, + 25, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 50, + 170, + 50, + 0, + 0, + 170, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -85, + -25, + 0 + ], + "maxPos": [ + 85, + 25, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "f7ef4ba2-7e65-4a1d-b00c-050bd6d02ff2@6c48a" + } +} diff --git a/assets/resources/ui/paytotalk/TS_db_zs.png b/assets/resources/ui/paytotalk/TS_db_zs.png new file mode 100644 index 00000000..2984e5b8 Binary files /dev/null and b/assets/resources/ui/paytotalk/TS_db_zs.png differ diff --git a/assets/resources/ui/paytotalk/TS_db_zs.png.meta b/assets/resources/ui/paytotalk/TS_db_zs.png.meta new file mode 100644 index 00000000..0ba7d3e5 --- /dev/null +++ b/assets/resources/ui/paytotalk/TS_db_zs.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "b4c7bcd6-5382-49a2-971c-353e63133b7b", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "b4c7bcd6-5382-49a2-971c-353e63133b7b@6c48a", + "displayName": "TS_db_zs", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "b4c7bcd6-5382-49a2-971c-353e63133b7b", + "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": "b4c7bcd6-5382-49a2-971c-353e63133b7b@f9941", + "displayName": "TS_db_zs", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 144, + "height": 32, + "rawWidth": 144, + "rawHeight": 32, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -72, + -16, + 0, + 72, + -16, + 0, + -72, + 16, + 0, + 72, + 16, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 32, + 144, + 32, + 0, + 0, + 144, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -72, + -16, + 0 + ], + "maxPos": [ + 72, + 16, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "b4c7bcd6-5382-49a2-971c-353e63133b7b@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "b4c7bcd6-5382-49a2-971c-353e63133b7b@6c48a" + } +} diff --git a/xchat_cfg b/xchat_cfg index ac58cc9c..65cfbb75 160000 --- a/xchat_cfg +++ b/xchat_cfg @@ -1 +1 @@ -Subproject commit ac58cc9c55e5da27f32a3eef1aeaf2dbd33fd1aa +Subproject commit 65cfbb75ed77070bf30a0555d37784c930189955