From ef02eedac61de0d654c4149e1eedfda95f7a22ad Mon Sep 17 00:00:00 2001 From: xlj <543978819@qq.com> Date: Wed, 13 Aug 2025 16:53:27 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=8A=E5=A4=A9=E8=AE=B0=E5=BD=95=E5=8A=9F?= =?UTF-8?q?=E8=83=BD-=E5=88=9D=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Scripts/chat18x/ui/panels/ChatPanel.ts | 23 +- .../Scripts/chat18x/ui/panels/RecordPanel.ts | 299 + .../chat18x/ui/panels/RecordPanel.ts.meta | 9 + assets/Scripts/chat18x/utils/polyfills.ts | 64 +- assets/bundles/Chat18x/ChatPanel.prefab | 1313 +++-- assets/bundles/Chat18x/GirlDetailPanel.prefab | 4 +- assets/bundles/Chat18x/GirlListPanel.prefab | 4 +- assets/bundles/Chat18x/RecordPanel.prefab | 4991 +++++++++++++++++ .../bundles/Chat18x/RecordPanel.prefab.meta | 13 + 9 files changed, 6223 insertions(+), 497 deletions(-) create mode 100644 assets/Scripts/chat18x/ui/panels/RecordPanel.ts create mode 100644 assets/Scripts/chat18x/ui/panels/RecordPanel.ts.meta create mode 100644 assets/bundles/Chat18x/RecordPanel.prefab create mode 100644 assets/bundles/Chat18x/RecordPanel.prefab.meta diff --git a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts index 76e28db7..b7b5e205 100644 --- a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts @@ -48,7 +48,7 @@ export class ChatPanel extends li_BaseView { private _nodeTab: any = {}; nameKey: string; - + private onLanguageChangeCallback = () => { if (!this.girlName) return; this.girlName.string = LanguageUtils.getText(this.nameKey); @@ -73,11 +73,23 @@ export class ChatPanel extends li_BaseView { this.onDialogUpdate ); - Utils.addInnerEL(InnerMsgCode.LanguageChange, this, this.onLanguageChangeCallback); + Utils.addInnerEL( + InnerMsgCode.LanguageChange, + this, + this.onLanguageChangeCallback + ); } onDestroy(): void { - Utils.removeInnerEL(InnerMsgCode.Chat_DialogRefresh, this, this.onDialogUpdate); - Utils.removeInnerEL(InnerMsgCode.LanguageChange, this, this.onLanguageChangeCallback); + Utils.removeInnerEL( + InnerMsgCode.Chat_DialogRefresh, + this, + this.onDialogUpdate + ); + Utils.removeInnerEL( + InnerMsgCode.LanguageChange, + this, + this.onLanguageChangeCallback + ); } refresh(id: number) { this.id = id; @@ -146,4 +158,7 @@ export class ChatPanel extends li_BaseView { //ViewManager.I.openBundlesView("GirlListPanel"); } + onClickRecord() { + ViewManager.I.openBundlesView("RecordPanel", this.id); + } } diff --git a/assets/Scripts/chat18x/ui/panels/RecordPanel.ts b/assets/Scripts/chat18x/ui/panels/RecordPanel.ts new file mode 100644 index 00000000..dc5d4fb2 --- /dev/null +++ b/assets/Scripts/chat18x/ui/panels/RecordPanel.ts @@ -0,0 +1,299 @@ +import { + _decorator, + Component, + Node, + Label, + Sprite, + UITransform, + ScrollView, + Button, +} from "cc"; +import { + ChatHistoryManager, + ChatMessage, +} from "../../manager/ChatHistoryManager"; +import li_BaseView from "db://assets/Scripts/Main/Common/li_BaseView"; +import Utils from "db://assets/Scripts/Main/Common/Utils"; +import { ChatContentsLayout } from "../components/ChatContentsLayout"; +import { ViewManager } from "db://assets/Scripts/Main/Manager/ViewManager"; +import GameRootUI from "db://assets/Scripts/Main/Common/GameRootUI"; +import ResManager from "db://assets/Scripts/Main/Manager/ResManager"; +import ConfigManager from "../../manager/ConfigManager"; +import LanguageUtils from "../../../Main/Common/LanguageUtils"; +import { Dialog } from "../../data/DialogData"; +import { InnerMsgCode } from "../../../Main/Config/InnerMsgCode"; + +const { ccclass, property } = _decorator; + +@ccclass("RecordPanel") +export class RecordPanel extends li_BaseView { + @property(Label) + girlName: Label = null; + + @property(Sprite) + girlImg: Sprite = null; + + @property(ChatContentsLayout) + layout: ChatContentsLayout = null; + + @property(ScrollView) + scrollView: ScrollView = null; + + @property(Button) + loadMoreBtn: Button = null; + + @property(Label) + loadMoreLabel: Label = null; + + id: number; + private _nodeTab: any = {}; + nameKey: string; + + // 分页相关 + private currentPage: number = 0; + private pageSize: number = 20; + private allMessages: ChatMessage[] = []; + private displayedMessages: Dialog[] = []; + + private onLanguageChangeCallback = () => { + if (!this.girlName) return; + this.girlName.string = LanguageUtils.getText(this.nameKey); + }; + + openUIDataCT(data) { + this.id = data; + } + + onLoadCT() { + Utils.parseNode(this.node, this._nodeTab); + this.register(); + this.refresh(this.id); + this.initLoadMoreBtn(); + this.loadChatHistory(); + } + + register() { + // 注册语言变化监听 + Utils.addInnerEL( + InnerMsgCode.LanguageChange, + this, + this.onLanguageChangeCallback + ); + } + + onDestroy(): void { + Utils.removeInnerEL( + InnerMsgCode.LanguageChange, + this, + this.onLanguageChangeCallback + ); + } + + /** + * 初始化加载更多按钮 + */ + private initLoadMoreBtn() { + if (this.loadMoreBtn) { + this.loadMoreBtn.node.on(Button.EventType.CLICK, this.onLoadMore, this); + } + this.updateLoadMoreBtn(); + } + + refresh(id: number) { + this.id = id; + const data = ConfigManager.tables.TbGirls.get(this.id); + const dataDetail = ConfigManager.tables.TbGirlsDetail.get(this.id); + if (!data) return; + + this.nameKey = data.nameKey; + this.girlName.string = LanguageUtils.getText(data.nameKey); + + // 设置角色头像 + ResManager.I.changeBundleSpriteFrame( + this.girlImg, + data.avatarPath, + "Chat18x", + () => { + let sizeTran = this.girlImg.node.parent.getComponent(UITransform); + Utils.adjustBgPixelRatioToSize( + sizeTran.contentSize, + this.girlImg.node, + 2 + ); + } + ); + } + + /** + * 加载聊天历史记录并显示 + */ + private loadChatHistory() { + // 从ChatHistoryManager获取历史记录 + this.allMessages = ChatHistoryManager.Instance.loadHistory(this.id); + + if (this.allMessages.length === 0) { + console.log(`No chat history found for role ${this.id}`); + this.updateLoadMoreBtn(); + return; + } + + // 倒序排列消息(最新的在前) + this.allMessages.reverse(); + + // 重置分页 + this.currentPage = 0; + this.displayedMessages = []; + + // 加载第一页 + this.loadMoreMessages(); + } + + /** + * 加载更多消息 + */ + private loadMoreMessages() { + const startIndex = this.currentPage * this.pageSize; + const endIndex = Math.min( + startIndex + this.pageSize, + this.allMessages.length + ); + + // 获取当前页的消息 + const pageMessages = this.allMessages.slice(startIndex, endIndex); + + // 将ChatMessage转换为Dialog格式并添加到显示列表 + const newDialogs: Dialog[] = pageMessages.map((msg: ChatMessage) => ({ + isPlayer: msg.role === "user", + content: msg.parts[0]?.text || "", + })); + + // 添加到已显示的消息列表 + this.displayedMessages.push(...newDialogs); + + console.log( + `Loaded page ${this.currentPage + 1}, showing ${ + this.displayedMessages.length + }/${this.allMessages.length} messages` + ); + + // 更新聊天内容布局 + if (this.layout) { + this.layout.UpdateDialog(this.displayedMessages); + } + + // 更新页数 + this.currentPage++; + + // 更新加载更多按钮状态 + this.updateLoadMoreBtn(); + + // 如果是第一次加载,滚动到顶部 + if (this.currentPage === 1 && this.scrollView) { + this.scheduleOnce(() => { + this.scrollView.scrollToTop(0.5); + }, 0.1); + } + } + + /** + * 加载更多按钮点击事件 + */ + private onLoadMore() { + if (this.hasMoreMessages()) { + this.loadMoreMessages(); + } + } + + /** + * 判断是否还有更多消息 + */ + private hasMoreMessages(): boolean { + return this.currentPage * this.pageSize < this.allMessages.length; + } + + /** + * 更新加载更多按钮状态 + */ + private updateLoadMoreBtn() { + if (!this.loadMoreBtn) return; + + const hasMore = this.hasMoreMessages(); + this.loadMoreBtn.node.active = hasMore; + + if (this.loadMoreLabel) { + const remainingCount = + this.allMessages.length - this.currentPage * this.pageSize; + this.loadMoreLabel.string = hasMore + ? `加载更多 (还有${remainingCount}条)` + : "没有更多消息了"; + } + } + + /** + * 清除当前角色的聊天记录 + */ + public clearHistory() { + ChatHistoryManager.Instance.clearHistory(this.id); + console.log(`Cleared chat history for role ${this.id}`); + + // 重置数据 + this.allMessages = []; + this.displayedMessages = []; + this.currentPage = 0; + + // 重新加载(显示空记录) + this.loadChatHistory(); + } + + /** + * 刷新聊天记录显示 + */ + public refreshHistory() { + this.loadChatHistory(); + } + + /** + * 滚动到最新记录(顶部,因为是倒序) + */ + public scrollToLatest() { + if (this.scrollView) { + this.scrollView.scrollToTop(0.5); + } + } + + /** + * 滚动到最早记录(底部,因为是倒序) + */ + public scrollToEarliest() { + if (this.scrollView) { + this.scrollView.scrollToBottom(0.5); + } + } + + /** + * 获取消息统计信息 + */ + public getMessageStats(): { + total: number; + displayed: number; + remaining: number; + } { + return { + total: this.allMessages.length, + displayed: this.displayedMessages.length, + remaining: this.allMessages.length - this.displayedMessages.length, + }; + } + + protected onEnable(): void { + GameRootUI.I.hideDefaultView(); + } + + /** + * 返回按钮点击事件 + */ + returnBtn() { + this.onClose(); + ViewManager.I.closeView(this.node); + } +} diff --git a/assets/Scripts/chat18x/ui/panels/RecordPanel.ts.meta b/assets/Scripts/chat18x/ui/panels/RecordPanel.ts.meta new file mode 100644 index 00000000..ffaa188c --- /dev/null +++ b/assets/Scripts/chat18x/ui/panels/RecordPanel.ts.meta @@ -0,0 +1,9 @@ +{ + "ver": "4.0.24", + "importer": "typescript", + "imported": true, + "uuid": "ad34b4b3-7e82-4a1d-b8f4-c4d2f1e0a5c7", + "files": [], + "subMetas": {}, + "userData": {} +} diff --git a/assets/Scripts/chat18x/utils/polyfills.ts b/assets/Scripts/chat18x/utils/polyfills.ts index 33e32e83..5be58ad2 100644 --- a/assets/Scripts/chat18x/utils/polyfills.ts +++ b/assets/Scripts/chat18x/utils/polyfills.ts @@ -8,37 +8,39 @@ * 为不支持 structuredClone 的环境提供兼容实现 */ export function initPolyfills(): void { - // structuredClone polyfill - if (typeof (globalThis as any).structuredClone === 'undefined') { - (globalThis as any).structuredClone = function(obj: any): any { - if (obj === null || typeof obj !== 'object') { - return obj; - } - - if (obj instanceof Date) { - return new Date(obj.getTime()); - } - - if (Array.isArray(obj)) { - return obj.map((item: any) => (globalThis as any).structuredClone(item)); - } - - if (typeof obj === 'object') { - const cloned: any = {}; - for (const key in obj) { - if (obj.hasOwnProperty(key)) { - cloned[key] = (globalThis as any).structuredClone(obj[key]); - } - } - return cloned; - } - - return obj; - }; - - console.log('[Polyfill] structuredClone polyfill loaded'); - } + // structuredClone polyfill + if (typeof (globalThis as any).structuredClone === "undefined") { + (globalThis as any).structuredClone = function (obj: any): any { + if (obj === null || typeof obj !== "object") { + return obj; + } + + if (obj instanceof Date) { + return new Date(obj.getTime()); + } + + if (Array.isArray(obj)) { + return obj.map((item: any) => + (globalThis as any).structuredClone(item) + ); + } + + if (typeof obj === "object") { + const cloned: any = {}; + for (const key in obj) { + if (obj.hasOwnProperty(key)) { + cloned[key] = (globalThis as any).structuredClone(obj[key]); + } + } + return cloned; + } + + return obj; + }; + + //console.log('[Polyfill] structuredClone polyfill loaded'); + } } // 自动初始化 -initPolyfills(); \ No newline at end of file +initPolyfills(); diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index cafea71a..028f14a1 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -22,29 +22,29 @@ "__id__": 2 }, { - "__id__": 80 + "__id__": 97 }, { - "__id__": 112 + "__id__": 129 }, { - "__id__": 225 + "__id__": 242 } ], "_active": true, "_components": [ { - "__id__": 255 + "__id__": 272 }, { - "__id__": 257 + "__id__": 274 }, { - "__id__": 259 + "__id__": 276 } ], "_prefab": { - "__id__": 261 + "__id__": 278 }, "_lpos": { "__type__": "cc.Vec3", @@ -91,38 +91,38 @@ "__id__": 9 }, { - "__id__": 62 + "__id__": 79 }, { - "__id__": 68 + "__id__": 85 }, { - "__id__": 144 + "__id__": 161 }, { - "__id__": 150 + "__id__": 167 }, { - "__id__": 198 + "__id__": 215 }, { - "__id__": 206 + "__id__": 223 } ], "_active": true, "_components": [ { - "__id__": 218 + "__id__": 235 }, { - "__id__": 220 + "__id__": 237 }, { - "__id__": 222 + "__id__": 239 } ], "_prefab": { - "__id__": 224 + "__id__": 241 }, "_lpos": { "__type__": "cc.Vec3", @@ -302,29 +302,32 @@ "__id__": 10 }, { - "__id__": 21 + "__id__": 16 }, { - "__id__": 29 + "__id__": 27 }, { - "__id__": 47 + "__id__": 35 + }, + { + "__id__": 61 } ], "_active": true, "_components": [ { - "__id__": 55 + "__id__": 72 }, { - "__id__": 57 + "__id__": 74 }, { - "__id__": 59 + "__id__": 76 } ], "_prefab": { - "__id__": 61 + "__id__": 78 }, "_lpos": { "__type__": "cc.Vec3", @@ -357,7 +360,7 @@ }, { "__type__": "cc.Node", - "_name": "ReturnBtn", + "_name": "Sprite", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -371,16 +374,152 @@ }, { "__id__": 13 - }, - { - "__id__": 15 - }, - { - "__id__": 18 } ], "_prefab": { - "__id__": 20 + "__id__": 15 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -1167.273, + "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": 1167, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aeDhU2nBBD1JQIP4R3Yx7P" + }, + { + "__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__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 3, + "_fillType": 1, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 1, + "_fillRange": -0.117, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83LTRTAq9GCISzSoNsQlB4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "57+lcCDkxDban+SGD0Kk24", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ReturnBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 17 + }, + { + "__id__": 19 + }, + { + "__id__": 21 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 26 }, "_lpos": { "__type__": "cc.Vec3", @@ -417,11 +556,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 12 + "__id__": 18 }, "_contentSize": { "__type__": "cc.Size", @@ -445,20 +584,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 20 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -490,24 +629,24 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 22 }, "clickEvents": [ { - "__id__": 17 + "__id__": 23 } ], "_interactable": true, "_transition": 1, "_normalColor": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_hoverColor": { @@ -538,7 +677,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 10 + "__id__": 16 }, "_id": "" }, @@ -562,11 +701,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 19 + "__id__": 25 }, "_alignFlags": 12, "_target": null, @@ -617,22 +756,22 @@ "_active": true, "_components": [ { - "__id__": 22 + "__id__": 28 }, { - "__id__": 24 + "__id__": 30 }, { - "__id__": 26 + "__id__": 32 } ], "_prefab": { - "__id__": 28 + "__id__": 34 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -108.3130000000001, + "y": -129.49099999999999, "z": 0 }, "_lrot": { @@ -664,11 +803,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 21 + "__id__": 27 }, "_enabled": true, "__prefab": { - "__id__": 23 + "__id__": 29 }, "_contentSize": { "__type__": "cc.Size", @@ -692,25 +831,25 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 21 + "__id__": 27 }, "_enabled": true, "__prefab": { - "__id__": 25 + "__id__": 31 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 10, - "g": 10, - "b": 10, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Valeria", "_horizontalAlign": 1, - "_verticalAlign": 1, + "_verticalAlign": 2, "_actualFontSize": 70, "_fontSize": 70, "_fontFamily": "NotoSans-Regular", @@ -760,18 +899,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 21 + "__id__": 27 }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 33 }, "_alignFlags": 20, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 35.49099999999989, + "_bottom": 14.31300000000001, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -805,7 +944,7 @@ }, { "__type__": "cc.Node", - "_name": "avatar", + "_name": "avatar_cover", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -813,31 +952,88 @@ }, "_children": [ { - "__id__": 30 + "__id__": 36 } ], "_active": true, "_components": [ { - "__id__": 38 + "__id__": 54 }, { - "__id__": 40 + "__id__": 56 }, { - "__id__": 42 - }, - { - "__id__": 44 + "__id__": 58 } ], "_prefab": { - "__id__": 46 + "__id__": 60 }, "_lpos": { "__type__": "cc.Vec3", - "x": 463.5, - "y": -80, + "x": 450, + "y": -72.19999999999999, + "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": "avatar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 35 + }, + "_children": [ + { + "__id__": 37 + } + ], + "_active": true, + "_components": [ + { + "__id__": 45 + }, + { + "__id__": 47 + }, + { + "__id__": 49 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 53 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, "z": 0 }, "_lrot": { @@ -869,23 +1065,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 29 + "__id__": 36 }, "_children": [], "_active": true, "_components": [ { - "__id__": 31 + "__id__": 38 }, { - "__id__": 33 + "__id__": 40 }, { - "__id__": 35 + "__id__": 42 } ], "_prefab": { - "__id__": 37 + "__id__": 44 }, "_lpos": { "__type__": "cc.Vec3", @@ -922,16 +1118,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 32 + "__id__": 39 }, "_contentSize": { "__type__": "cc.Size", - "width": 200, - "height": 200 + "width": 235, + "height": 235 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -950,11 +1146,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 34 + "__id__": 41 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -992,28 +1188,28 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 30 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 36 + "__id__": 43 }, - "_alignFlags": 18, + "_alignFlags": 45, "_target": null, "_left": 0, - "_right": 20, + "_right": 0, "_top": 0, - "_bottom": 20, + "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, - "_isAbsRight": true, + "_isAbsRight": false, "_isAbsTop": true, "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, + "_originalWidth": 200, + "_originalHeight": 200, "_alignMode": 2, "_lockFlags": 36, "_id": "" @@ -1041,16 +1237,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 39 + "__id__": 46 }, "_contentSize": { "__type__": "cc.Size", - "width": 200, - "height": 200 + "width": 235, + "height": 235 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1069,11 +1265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 48 }, "_type": 3, "_inverted": false, @@ -1091,11 +1287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 50 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1136,18 +1332,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 36 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 52 }, - "_alignFlags": 36, + "_alignFlags": 45, "_target": null, "_left": 0, - "_right": 20, + "_right": 0, "_top": 0, - "_bottom": 20, + "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1156,8 +1352,8 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, + "_originalWidth": 200, + "_originalHeight": 200, "_alignMode": 2, "_lockFlags": 36, "_id": "" @@ -1179,70 +1375,17 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "avatar_cover", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 9 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 48 - }, - { - "__id__": 50 - }, - { - "__id__": 52 - } - ], - "_prefab": { - "__id__": 54 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 465.6, - "y": -77.9, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 55 }, "_contentSize": { "__type__": "cc.Size", @@ -1266,20 +1409,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 51 + "__id__": 57 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 130, - "g": 54, - "b": 136, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -1311,18 +1454,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 59 }, "_alignFlags": 36, "_target": null, "_left": 0, - "_right": 0.4, + "_right": 16, "_top": 0, - "_bottom": 4.6, + "_bottom": 10.3, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1354,6 +1497,256 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "RecordBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 62 + }, + { + "__id__": 64 + }, + { + "__id__": 66 + }, + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 71 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -413.6, + "y": -170, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.5, + "y": 1.5, + "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__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 63 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f477xYQWhDnbzmRr9p/qGX" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 65 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "a1274f92-8265-4bd8-ae38-697390d2b13d@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": "de93j8N15D5p0jHmkkdX49" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 67 + }, + "clickEvents": [ + { + "__id__": 68 + } + ], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 61 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2cAx0E8nVPyYB5pm5G+VyC" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "dec59XlX69L6qBAxHhL4vQ8", + "handler": "onClickRecord", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 70 + }, + "_alignFlags": 12, + "_target": null, + "_left": 169.9, + "_right": 0, + "_top": 0, + "_bottom": 30, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 12, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "279cmdFBdI7ba3HsKxpFNv" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "01cQupmwVKtLSRDHbThfsw", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -1364,7 +1757,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 73 }, "_contentSize": { "__type__": "cc.Size", @@ -1390,9 +1783,9 @@ "node": { "__id__": 9 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 58 + "__id__": 75 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1437,7 +1830,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 77 }, "_alignFlags": 41, "_target": null, @@ -1488,14 +1881,14 @@ "_active": true, "_components": [ { - "__id__": 63 + "__id__": 80 }, { - "__id__": 65 + "__id__": 82 } ], "_prefab": { - "__id__": 67 + "__id__": 84 }, "_lpos": { "__type__": "cc.Vec3", @@ -1532,11 +1925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 62 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 64 + "__id__": 81 }, "_contentSize": { "__type__": "cc.Size", @@ -1560,11 +1953,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 62 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 83 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1624,23 +2017,23 @@ "_active": true, "_components": [ { - "__id__": 69 + "__id__": 86 }, { - "__id__": 71 + "__id__": 88 }, { - "__id__": 73 + "__id__": 90 }, { - "__id__": 75 + "__id__": 92 }, { - "__id__": 77 + "__id__": 94 } ], "_prefab": { - "__id__": 143 + "__id__": 160 }, "_lpos": { "__type__": "cc.Vec3", @@ -1677,11 +2070,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 70 + "__id__": 87 }, "_contentSize": { "__type__": "cc.Size", @@ -1705,11 +2098,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 72 + "__id__": 89 }, "_alignFlags": 45, "_target": null, @@ -1741,11 +2134,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 74 + "__id__": 91 }, "_type": 0, "_inverted": false, @@ -1763,11 +2156,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 76 + "__id__": 93 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1809,17 +2202,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 95 }, "lBubble": { - "__id__": 79 + "__id__": 96 }, "rBubble": { - "__id__": 111 + "__id__": 128 }, "_id": "" }, @@ -1833,20 +2226,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 127 }, "bg": { - "__id__": 90 + "__id__": 107 }, "content": { - "__id__": 100 + "__id__": 117 }, "contentT": { - "__id__": 98 + "__id__": 115 }, "_id": "" }, @@ -1860,29 +2253,29 @@ }, "_children": [ { - "__id__": 81 + "__id__": 98 }, { - "__id__": 89 + "__id__": 106 }, { - "__id__": 97 + "__id__": 114 } ], "_active": true, "_components": [ { - "__id__": 105 + "__id__": 122 }, { - "__id__": 107 + "__id__": 124 }, { - "__id__": 79 + "__id__": 96 } ], "_prefab": { - "__id__": 109 + "__id__": 126 }, "_lpos": { "__type__": "cc.Vec3", @@ -1919,23 +2312,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 80 + "__id__": 97 }, "_children": [], "_active": true, "_components": [ { - "__id__": 82 + "__id__": 99 }, { - "__id__": 84 + "__id__": 101 }, { - "__id__": 86 + "__id__": 103 } ], "_prefab": { - "__id__": 88 + "__id__": 105 }, "_lpos": { "__type__": "cc.Vec3", @@ -1972,11 +2365,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 100 }, "_contentSize": { "__type__": "cc.Size", @@ -2000,11 +2393,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 102 }, "_alignFlags": 12, "_target": null, @@ -2036,11 +2429,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 104 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2094,23 +2487,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 80 + "__id__": 97 }, "_children": [], "_active": true, "_components": [ { - "__id__": 90 + "__id__": 107 }, { - "__id__": 92 + "__id__": 109 }, { - "__id__": 94 + "__id__": 111 } ], "_prefab": { - "__id__": 96 + "__id__": 113 }, "_lpos": { "__type__": "cc.Vec3", @@ -2147,11 +2540,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 108 }, "_contentSize": { "__type__": "cc.Size", @@ -2175,11 +2568,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 93 + "__id__": 110 }, "_alignFlags": 12, "_target": null, @@ -2211,11 +2604,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 112 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2269,23 +2662,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 80 + "__id__": 97 }, "_children": [], "_active": true, "_components": [ { - "__id__": 98 + "__id__": 115 }, { - "__id__": 100 + "__id__": 117 }, { - "__id__": 102 + "__id__": 119 } ], "_prefab": { - "__id__": 104 + "__id__": 121 }, "_lpos": { "__type__": "cc.Vec3", @@ -2322,11 +2715,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 99 + "__id__": 116 }, "_contentSize": { "__type__": "cc.Size", @@ -2350,11 +2743,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 118 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2418,11 +2811,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 120 }, "_alignFlags": 12, "_target": null, @@ -2467,11 +2860,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 106 + "__id__": 123 }, "_contentSize": { "__type__": "cc.Size", @@ -2495,11 +2888,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 125 }, "_alignFlags": 8, "_target": null, @@ -2548,20 +2941,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 129 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 159 }, "bg": { - "__id__": 122 + "__id__": 139 }, "content": { - "__id__": 132 + "__id__": 149 }, "contentT": { - "__id__": 130 + "__id__": 147 }, "_id": "" }, @@ -2575,29 +2968,29 @@ }, "_children": [ { - "__id__": 113 + "__id__": 130 }, { - "__id__": 121 + "__id__": 138 }, { - "__id__": 129 + "__id__": 146 } ], "_active": true, "_components": [ { - "__id__": 137 + "__id__": 154 }, { - "__id__": 139 + "__id__": 156 }, { - "__id__": 111 + "__id__": 128 } ], "_prefab": { - "__id__": 141 + "__id__": 158 }, "_lpos": { "__type__": "cc.Vec3", @@ -2634,23 +3027,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 129 }, "_children": [], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 131 }, { - "__id__": 116 + "__id__": 133 }, { - "__id__": 118 + "__id__": 135 } ], "_prefab": { - "__id__": 120 + "__id__": 137 }, "_lpos": { "__type__": "cc.Vec3", @@ -2687,11 +3080,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 132 }, "_contentSize": { "__type__": "cc.Size", @@ -2715,11 +3108,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 117 + "__id__": 134 }, "_alignFlags": 36, "_target": null, @@ -2751,11 +3144,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 136 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2809,23 +3202,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 129 }, "_children": [], "_active": true, "_components": [ { - "__id__": 122 + "__id__": 139 }, { - "__id__": 124 + "__id__": 141 }, { - "__id__": 126 + "__id__": 143 } ], "_prefab": { - "__id__": 128 + "__id__": 145 }, "_lpos": { "__type__": "cc.Vec3", @@ -2862,11 +3255,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 140 }, "_contentSize": { "__type__": "cc.Size", @@ -2890,11 +3283,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 142 }, "_alignFlags": 36, "_target": null, @@ -2926,11 +3319,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 144 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2984,23 +3377,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 129 }, "_children": [], "_active": true, "_components": [ { - "__id__": 130 + "__id__": 147 }, { - "__id__": 132 + "__id__": 149 }, { - "__id__": 134 + "__id__": 151 } ], "_prefab": { - "__id__": 136 + "__id__": 153 }, "_lpos": { "__type__": "cc.Vec3", @@ -3037,11 +3430,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 148 }, "_contentSize": { "__type__": "cc.Size", @@ -3065,11 +3458,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 150 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3133,11 +3526,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 152 }, "_alignFlags": 36, "_target": null, @@ -3182,11 +3575,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 129 }, "_enabled": true, "__prefab": { - "__id__": 138 + "__id__": 155 }, "_contentSize": { "__type__": "cc.Size", @@ -3210,11 +3603,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 129 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 157 }, "_alignFlags": 32, "_target": null, @@ -3282,14 +3675,14 @@ "_active": true, "_components": [ { - "__id__": 145 + "__id__": 162 }, { - "__id__": 147 + "__id__": 164 } ], "_prefab": { - "__id__": 149 + "__id__": 166 }, "_lpos": { "__type__": "cc.Vec3", @@ -3326,11 +3719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 146 + "__id__": 163 }, "_contentSize": { "__type__": "cc.Size", @@ -3354,11 +3747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 165 }, "_alignFlags": 45, "_target": null, @@ -3407,26 +3800,26 @@ }, "_children": [ { - "__id__": 151 + "__id__": 168 }, { - "__id__": 176 + "__id__": 193 } ], "_active": true, "_components": [ { - "__id__": 191 + "__id__": 208 }, { - "__id__": 193 + "__id__": 210 }, { - "__id__": 195 + "__id__": 212 } ], "_prefab": { - "__id__": 197 + "__id__": 214 }, "_lpos": { "__type__": "cc.Vec3", @@ -3463,33 +3856,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 150 + "__id__": 167 }, "_children": [ { - "__id__": 152 + "__id__": 169 }, { - "__id__": 158 + "__id__": 175 } ], "_active": true, "_components": [ { - "__id__": 166 + "__id__": 183 }, { - "__id__": 168 + "__id__": 185 }, { - "__id__": 170 + "__id__": 187 }, { - "__id__": 173 + "__id__": 190 } ], "_prefab": { - "__id__": 175 + "__id__": 192 }, "_lpos": { "__type__": "cc.Vec3", @@ -3526,20 +3919,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 151 + "__id__": 168 }, "_children": [], "_active": false, "_components": [ { - "__id__": 153 + "__id__": 170 }, { - "__id__": 155 + "__id__": 172 } ], "_prefab": { - "__id__": 157 + "__id__": 174 }, "_lpos": { "__type__": "cc.Vec3", @@ -3576,11 +3969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 171 }, "_contentSize": { "__type__": "cc.Size", @@ -3604,11 +3997,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 173 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3685,23 +4078,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 151 + "__id__": 168 }, "_children": [], "_active": true, "_components": [ { - "__id__": 159 + "__id__": 176 }, { - "__id__": 161 + "__id__": 178 }, { - "__id__": 163 + "__id__": 180 } ], "_prefab": { - "__id__": 165 + "__id__": 182 }, "_lpos": { "__type__": "cc.Vec3", @@ -3738,11 +4131,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 177 }, "_contentSize": { "__type__": "cc.Size", @@ -3766,11 +4159,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 162 + "__id__": 179 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3834,11 +4227,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 181 }, "languageKey": "chatpanel.inputplaceholder", "defaultText": "", @@ -3868,11 +4261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 184 }, "_contentSize": { "__type__": "cc.Size", @@ -3896,11 +4289,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 186 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3941,25 +4334,25 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 188 }, "editingDidBegan": [], "textChanged": [], "editingDidEnded": [], "editingReturn": [ { - "__id__": 172 + "__id__": 189 } ], "_textLabel": { - "__id__": 155 + "__id__": 172 }, "_placeholderLabel": { - "__id__": 161 + "__id__": 178 }, "_returnType": 0, "_string": "", @@ -3993,11 +4386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 168 }, "_enabled": true, "__prefab": { - "__id__": 174 + "__id__": 191 }, "_alignFlags": 44, "_target": null, @@ -4042,27 +4435,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 150 + "__id__": 167 }, "_children": [ { - "__id__": 177 + "__id__": 194 } ], "_active": true, "_components": [ { - "__id__": 183 + "__id__": 200 }, { - "__id__": 185 + "__id__": 202 }, { - "__id__": 187 + "__id__": 204 } ], "_prefab": { - "__id__": 190 + "__id__": 207 }, "_lpos": { "__type__": "cc.Vec3", @@ -4099,20 +4492,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 176 + "__id__": 193 }, "_children": [], "_active": true, "_components": [ { - "__id__": 178 + "__id__": 195 }, { - "__id__": 180 + "__id__": 197 } ], "_prefab": { - "__id__": 182 + "__id__": 199 }, "_lpos": { "__type__": "cc.Vec3", @@ -4149,11 +4542,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 177 + "__id__": 194 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 196 }, "_contentSize": { "__type__": "cc.Size", @@ -4177,11 +4570,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 177 + "__id__": 194 }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 198 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4258,11 +4651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 201 }, "_contentSize": { "__type__": "cc.Size", @@ -4286,11 +4679,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 186 + "__id__": 203 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4331,15 +4724,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 205 }, "clickEvents": [ { - "__id__": 189 + "__id__": 206 } ], "_interactable": true, @@ -4391,7 +4784,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 176 + "__id__": 193 }, "_id": "" }, @@ -4428,11 +4821,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 150 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 209 }, "_contentSize": { "__type__": "cc.Size", @@ -4456,11 +4849,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 150 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 211 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4501,11 +4894,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 150 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 213 }, "_alignFlags": 44, "_target": null, @@ -4556,17 +4949,17 @@ "_active": true, "_components": [ { - "__id__": 199 + "__id__": 216 }, { - "__id__": 201 + "__id__": 218 }, { - "__id__": 203 + "__id__": 220 } ], "_prefab": { - "__id__": 205 + "__id__": 222 }, "_lpos": { "__type__": "cc.Vec3", @@ -4603,11 +4996,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 217 }, "_contentSize": { "__type__": "cc.Size", @@ -4631,11 +5024,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 219 }, "_alignFlags": 45, "_target": null, @@ -4667,11 +5060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 198 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 221 }, "_resourceType": 1, "_remoteURL": "", @@ -4714,20 +5107,20 @@ }, "_children": [ { - "__id__": 207 + "__id__": 224 } ], "_active": true, "_components": [ { - "__id__": 213 + "__id__": 230 }, { - "__id__": 215 + "__id__": 232 } ], "_prefab": { - "__id__": 217 + "__id__": 234 }, "_lpos": { "__type__": "cc.Vec3", @@ -4764,20 +5157,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 206 + "__id__": 223 }, "_children": [], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 225 }, { - "__id__": 210 + "__id__": 227 } ], "_prefab": { - "__id__": 212 + "__id__": 229 }, "_lpos": { "__type__": "cc.Vec3", @@ -4814,11 +5207,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 224 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 226 }, "_contentSize": { "__type__": "cc.Size", @@ -4842,11 +5235,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 224 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 228 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4923,11 +5316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 231 }, "_contentSize": { "__type__": "cc.Size", @@ -4951,11 +5344,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 233 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5013,7 +5406,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 236 }, "_contentSize": { "__type__": "cc.Size", @@ -5041,7 +5434,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 221 + "__id__": 238 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5086,7 +5479,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 240 }, "_alignFlags": 45, "_target": null, @@ -5135,20 +5528,20 @@ }, "_children": [ { - "__id__": 226 + "__id__": 243 } ], "_active": true, "_components": [ { - "__id__": 250 + "__id__": 267 }, { - "__id__": 252 + "__id__": 269 } ], "_prefab": { - "__id__": 254 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", @@ -5185,24 +5578,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 225 + "__id__": 242 }, "_children": [ { - "__id__": 227 + "__id__": 244 } ], "_active": true, "_components": [ { - "__id__": 245 + "__id__": 262 }, { - "__id__": 247 + "__id__": 264 } ], "_prefab": { - "__id__": 249 + "__id__": 266 }, "_lpos": { "__type__": "cc.Vec3", @@ -5239,27 +5632,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 226 + "__id__": 243 }, "_children": [ { - "__id__": 228 + "__id__": 245 } ], "_active": true, "_components": [ { - "__id__": 238 + "__id__": 255 }, { - "__id__": 240 + "__id__": 257 }, { - "__id__": 242 + "__id__": 259 } ], "_prefab": { - "__id__": 244 + "__id__": 261 }, "_lpos": { "__type__": "cc.Vec3", @@ -5296,26 +5689,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 227 + "__id__": 244 }, "_children": [], "_active": true, "_components": [ { - "__id__": 229 + "__id__": 246 }, { - "__id__": 231 + "__id__": 248 }, { - "__id__": 233 + "__id__": 250 }, { - "__id__": 235 + "__id__": 252 } ], "_prefab": { - "__id__": 237 + "__id__": 254 }, "_lpos": { "__type__": "cc.Vec3", @@ -5352,11 +5745,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 228 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 230 + "__id__": 247 }, "_contentSize": { "__type__": "cc.Size", @@ -5380,11 +5773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 228 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 249 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5422,11 +5815,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 228 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 234 + "__id__": 251 }, "_alignFlags": 12, "_target": null, @@ -5458,11 +5851,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 228 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 236 + "__id__": 253 }, "clickEvents": [], "_interactable": true, @@ -5527,11 +5920,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 227 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 256 }, "_contentSize": { "__type__": "cc.Size", @@ -5555,11 +5948,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 227 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 258 }, "_type": 3, "_inverted": false, @@ -5577,11 +5970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 227 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 260 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5635,11 +6028,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 226 + "__id__": 243 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 263 }, "_contentSize": { "__type__": "cc.Size", @@ -5663,11 +6056,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 226 + "__id__": 243 }, "_enabled": true, "__prefab": { - "__id__": 248 + "__id__": 265 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5721,11 +6114,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 242 }, "_enabled": true, "__prefab": { - "__id__": 251 + "__id__": 268 }, "_contentSize": { "__type__": "cc.Size", @@ -5749,14 +6142,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 242 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 270 }, "image": { - "__id__": 231 + "__id__": 248 }, "_id": "" }, @@ -5787,7 +6180,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 273 }, "_contentSize": { "__type__": "cc.Size", @@ -5815,7 +6208,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 275 }, "_alignFlags": 45, "_target": null, @@ -5851,23 +6244,23 @@ }, "_enabled": true, "__prefab": { - "__id__": 260 + "__id__": 277 }, "m_rootNode": null, "editBox": { - "__id__": 170 + "__id__": 187 }, "girlName": { - "__id__": 24 + "__id__": 30 }, "girlImg": { - "__id__": 33 + "__id__": 40 }, "layout": { - "__id__": 77 + "__id__": 94 }, "popUpImage": { - "__id__": 252 + "__id__": 269 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index a7f566a4..a0ea4299 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -6609,7 +6609,9 @@ "img": { "__id__": 233 }, - "lock": null, + "lock": { + "__id__": 246 + }, "question": { "__id__": 240 }, diff --git a/assets/bundles/Chat18x/GirlListPanel.prefab b/assets/bundles/Chat18x/GirlListPanel.prefab index 98e3ce39..a7a65104 100644 --- a/assets/bundles/Chat18x/GirlListPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPanel.prefab @@ -4835,7 +4835,9 @@ "tags": { "__id__": 84 }, - "price": null, + "price": { + "__id__": 172 + }, "freeNode": { "__id__": 147 }, diff --git a/assets/bundles/Chat18x/RecordPanel.prefab b/assets/bundles/Chat18x/RecordPanel.prefab new file mode 100644 index 00000000..aea25647 --- /dev/null +++ b/assets/bundles/Chat18x/RecordPanel.prefab @@ -0,0 +1,4991 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "RecordPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "RecordPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 86 + }, + { + "__id__": 118 + }, + { + "__id__": 191 + } + ], + "_active": true, + "_components": [ + { + "__id__": 221 + }, + { + "__id__": 223 + }, + { + "__id__": 225 + } + ], + "_prefab": { + "__id__": 227 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 3 + }, + { + "__id__": 9 + }, + { + "__id__": 68 + }, + { + "__id__": 74 + }, + { + "__id__": 150 + }, + { + "__id__": 156 + } + ], + "_active": true, + "_components": [ + { + "__id__": 184 + }, + { + "__id__": 186 + }, + { + "__id__": 188 + } + ], + "_prefab": { + "__id__": 190 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "deco", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 4 + }, + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 8 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1109.011, + "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__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1170, + "height": 298.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2828Qz8CBG6I1BcsGR7RhD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 7 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "0b9ea17a-dae1-42ae-b32f-1571d1658fa6@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": "3bNWAaZptKuaKI9FIRXX+K" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47f8uAldRGvYYei/4UkdOo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Upper", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 10 + }, + { + "__id__": 16 + }, + { + "__id__": 27 + }, + { + "__id__": 35 + } + ], + "_active": true, + "_components": [ + { + "__id__": 61 + }, + { + "__id__": 63 + }, + { + "__id__": 65 + } + ], + "_prefab": { + "__id__": 67 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1166, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Sprite", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + } + ], + "_prefab": { + "__id__": 15 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -1167.273, + "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": 1167, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aeDhU2nBBD1JQIP4R3Yx7P" + }, + { + "__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__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 3, + "_fillType": 1, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 1, + "_fillRange": -0.117, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83LTRTAq9GCISzSoNsQlB4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "57+lcCDkxDban+SGD0Kk24", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ReturnBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 17 + }, + { + "__id__": 19 + }, + { + "__id__": 21 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 26 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -533.5, + "y": -170, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1.5, + "y": 1.5, + "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__": 16 + }, + "_enabled": true, + "__prefab": { + "__id__": 18 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 36, + "height": 64 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3803v9JUZJmJXmn0xN+Spo" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 16 + }, + "_enabled": true, + "__prefab": { + "__id__": 20 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "65616b52-cb0d-4d8a-b432-e6d8e1368ccf@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": "8bZKRY3apEjqLpuSyU2Q5n" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 16 + }, + "_enabled": true, + "__prefab": { + "__id__": 22 + }, + "clickEvents": [ + { + "__id__": 23 + } + ], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 16 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d742BAN5FC+aXcajGO8+bW" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "ad34bSzfoJKHbj0xNLx4KXH", + "handler": "returnBtn", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 16 + }, + "_enabled": true, + "__prefab": { + "__id__": 25 + }, + "_alignFlags": 12, + "_target": null, + "_left": 50, + "_right": 0, + "_top": 0, + "_bottom": 30, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 12, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aeC8SCehRI56zYBtwexqZ/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72Zr8T/ixB7bYZRSWtwmd/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Name", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 28 + }, + { + "__id__": 30 + }, + { + "__id__": 32 + } + ], + "_prefab": { + "__id__": 34 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -129.49099999999999, + "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__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 29 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 242.744140625, + "height": 112.39200000000001 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4eR+4cW3FIQ62gA+vVyyJA" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 31 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Valeria", + "_horizontalAlign": 1, + "_verticalAlign": 2, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 89.2, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c6nQJSFqZHWLnuq+1UIrzi" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 33 + }, + "_alignFlags": 20, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 14.31300000000001, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "606+xCxlNOTJPi3quvtzrO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "39EnTuibZGCr652I/KtAjK", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "avatar_cover", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [ + { + "__id__": 36 + } + ], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 56 + }, + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 60 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 450, + "y": -72.19999999999999, + "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": "avatar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 35 + }, + "_children": [ + { + "__id__": 37 + } + ], + "_active": true, + "_components": [ + { + "__id__": 45 + }, + { + "__id__": 47 + }, + { + "__id__": 49 + }, + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 53 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Avatar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 36 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 38 + }, + { + "__id__": 40 + }, + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 44 + }, + "_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__": 37 + }, + "_enabled": true, + "__prefab": { + "__id__": 39 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 235, + "height": 235 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "45jRvHUjxO1K08G9vO3HSc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 37 + }, + "_enabled": true, + "__prefab": { + "__id__": 41 + }, + "_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": "68KdDFKHVDSo4ZRis6YVQU" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 37 + }, + "_enabled": true, + "__prefab": { + "__id__": 43 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": false, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 200, + "_alignMode": 2, + "_lockFlags": 36, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "48h1NTG2RMF6nXjOHUkIAe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "281oekp2dHxLA3xRGtWZgi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 46 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 235, + "height": 235 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7cTws9yltA3YlyOeiNoTXX" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 48 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27ugHVSnNF0Z37mHA+mMUm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 50 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "4cef8664-eeed-4be5-b33b-1bb74a6019cb@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": "e5G5Byb4JD8rBUULMG+nxd" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 52 + }, + "_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": 200, + "_originalHeight": 200, + "_alignMode": 2, + "_lockFlags": 36, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e0+PyEeYBK4Z9OIovB/Q8X" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "57e5J7vh1M7p6trwHvaWGq", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 55 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 235, + "height": 235 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d64wMS2whFr5V2O8PACoOK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 57 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "dd3dfa16-2f99-4b08-bd4c-b1b7d2577bc6@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": "fd/bdtYbpKhYKXRCS34nFO" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 59 + }, + "_alignFlags": 36, + "_target": null, + "_left": 0, + "_right": 16, + "_top": 0, + "_bottom": 10.3, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 36, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e2N8dp+m9F2au7xA09BPOG" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bfSWNeNClPV7y6vofKsuzM", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": true, + "__prefab": { + "__id__": 62 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "04DBR44dJMbppqCyJr75jE" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": false, + "__prefab": { + "__id__": 64 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 130, + "g": 54, + "b": 136, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "72pl4ugaNIWpPFrdmyK6gn" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": true, + "__prefab": { + "__id__": 66 + }, + "_alignFlags": 41, + "_target": null, + "_left": 0, + "_right": 0, + "_top": -100, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eaRHpw8eNGq6RlXkT1KliK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bbti0yYsZHGpPCtqZ37P2r", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "deco-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 69 + }, + { + "__id__": 71 + } + ], + "_prefab": { + "__id__": 73 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -1207.994, + "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__": 68 + }, + "_enabled": true, + "__prefab": { + "__id__": 70 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1170, + "height": 298.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "290+v4P7pNpKmdDheomtf9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 68 + }, + "_enabled": true, + "__prefab": { + "__id__": 72 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "0b9ea17a-dae1-42ae-b32f-1571d1658fa6@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": "2b9LqRFXhGZpuw3JXNKGqm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "87VTgutIhMW7u3mqZY/Dv7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "BubbleBox", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 75 + }, + { + "__id__": 77 + }, + { + "__id__": 79 + }, + { + "__id__": 81 + }, + { + "__id__": 83 + } + ], + "_prefab": { + "__id__": 149 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -50, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 76 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 2032 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "67Spp6ZIJJ1K2/LqKT1cgT" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 78 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 300, + "_bottom": 200, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 5, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c0g4T+74hDM55GL9w2mFrk" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 80 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3csoWqseVD4Y/nXGfZnbcE" + }, + { + "__type__": "cc.Graphics", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 82 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_lineWidth": 1, + "_strokeColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_lineJoin": 2, + "_lineCap": 0, + "_fillColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_miterLimit": 10, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8csrjLXqpG35J80yvHM5I/" + }, + { + "__type__": "8abe1ncXvJP8rwnbJLnufMR", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 74 + }, + "_enabled": true, + "__prefab": { + "__id__": 84 + }, + "lBubble": { + "__id__": 85 + }, + "rBubble": { + "__id__": 117 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0eCoEonSlIba9mQkZ3vqh7" + }, + { + "__type__": "f58198wb7hDW4g+FIOov5qS", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 116 + }, + "bg": { + "__id__": 96 + }, + "content": { + "__id__": 106 + }, + "contentT": { + "__id__": 104 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "DialogBubble_Left", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 87 + }, + { + "__id__": 95 + }, + { + "__id__": 103 + } + ], + "_active": true, + "_components": [ + { + "__id__": 111 + }, + { + "__id__": 113 + }, + { + "__id__": 85 + } + ], + "_prefab": { + "__id__": 115 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -533.5, + "y": -370.22900000000004, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "SpriteSplash-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 88 + }, + { + "__id__": 90 + }, + { + "__id__": 92 + } + ], + "_prefab": { + "__id__": 94 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 16.5, + "y": 14.5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 89 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33, + "height": 29 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d4z0XceSdEsoOG8XUGl0XS" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 91 + }, + "_alignFlags": 12, + "_target": null, + "_left": 0, + "_right": -200, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 500, + "_originalHeight": 153.8, + "_alignMode": 1, + "_lockFlags": 13, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e4HgiiFENAzajG5Mu6b69k" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 93 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "576e4681-c296-43d6-b7db-8cf25086a115@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": "2a6CvKX3FG+bykxRi7ZQIK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f229cwBjRBTLb1TEzZwWPs", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SpriteSplash", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 96 + }, + { + "__id__": 98 + }, + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 102 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 185, + "y": 275, + "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__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 97 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 370, + "height": 550 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d5lbKLzPNNLajKz4LSPgQF" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 99 + }, + "_alignFlags": 12, + "_target": null, + "_left": 0, + "_right": -200, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 500, + "_originalHeight": 153.8, + "_alignMode": 1, + "_lockFlags": 13, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "05NGVXISJDU5bspe6IbPYo" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 95 + }, + "_enabled": true, + "__prefab": { + "__id__": 101 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@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": "a32awUI0pINb98itgsVihU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "69iHXwwNhJmK72DMPkk2Wk", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 86 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 104 + }, + { + "__id__": 106 + }, + { + "__id__": 108 + } + ], + "_prefab": { + "__id__": 110 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 20, + "y": 32.176, + "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__": 103 + }, + "_enabled": true, + "__prefab": { + "__id__": 105 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 35, + "height": 44.352000000000004 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3aynr3CvpIfabyn7axOOgJ" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 103 + }, + "_enabled": true, + "__prefab": { + "__id__": 107 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 5, + "g": 5, + "b": 5, + "a": 255 + }, + "_string": "慵", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 35, + "_fontSize": 35, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 35.2, + "_overflow": 3, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 5, + "g": 5, + "b": 5, + "a": 255 + }, + "_outlineWidth": 1, + "_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": "74XkOGgixPRpwVP/kUzEmO" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 103 + }, + "_enabled": true, + "__prefab": { + "__id__": 109 + }, + "_alignFlags": 12, + "_target": null, + "_left": 20, + "_right": 0, + "_top": 10, + "_bottom": 10, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 1, + "_lockFlags": 13, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c34u2Op2pETIzn0eF+uLTB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "59IuEq50ZK1Zg26Ki7Rq3V", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 112 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "72oBfczBZDrLm1aHMv1TcA" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 86 + }, + "_enabled": true, + "__prefab": { + "__id__": 114 + }, + "_alignFlags": 8, + "_target": null, + "_left": 50, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b3esoZgJhBpYgL3uoAd9e8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a164eoC09CE4+ZQsDaqLFs", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1aK7QgBcRCnLd2ctEbu6JV" + }, + { + "__type__": "f58198wb7hDW4g+FIOov5qS", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 118 + }, + "_enabled": true, + "__prefab": { + "__id__": 148 + }, + "bg": { + "__id__": 128 + }, + "content": { + "__id__": 138 + }, + "contentT": { + "__id__": 136 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "DialogBubble_Right", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 119 + }, + { + "__id__": 127 + }, + { + "__id__": 135 + } + ], + "_active": true, + "_components": [ + { + "__id__": 143 + }, + { + "__id__": 145 + }, + { + "__id__": 117 + } + ], + "_prefab": { + "__id__": 147 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 533.5, + "y": -568.8, + "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": "SpriteSplash-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 118 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 120 + }, + { + "__id__": 122 + }, + { + "__id__": 124 + } + ], + "_prefab": { + "__id__": 126 + }, + "_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__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 121 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 33, + "height": 29 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e71o5qAYtICJqK2B7YF4M1" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 123 + }, + "_alignFlags": 36, + "_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": 500, + "_originalHeight": 153.8, + "_alignMode": 1, + "_lockFlags": 13, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1fGHcPNnhLBJK45udY7GPw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 119 + }, + "_enabled": true, + "__prefab": { + "__id__": 125 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 224, + "g": 254, + "b": 198, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "576e4681-c296-43d6-b7db-8cf25086a115@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": "c7xeb/nDtPmo1NJEIqunn3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3BwbEvQ5PtqmJqadFltgX", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "SpriteSplash", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 118 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 128 + }, + { + "__id__": 130 + }, + { + "__id__": 132 + } + ], + "_prefab": { + "__id__": 134 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -240, + "y": 87.5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 127 + }, + "_enabled": true, + "__prefab": { + "__id__": 129 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 480, + "height": 175 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "21gc1WDcxC9ZPe6NqBhyA9" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 127 + }, + "_enabled": true, + "__prefab": { + "__id__": 131 + }, + "_alignFlags": 36, + "_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": 500, + "_originalHeight": 153.8, + "_alignMode": 1, + "_lockFlags": 13, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61Dzi1QKVJXZnigr/oyyjV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 127 + }, + "_enabled": true, + "__prefab": { + "__id__": 133 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 224, + "g": 254, + "b": 198, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@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": "03/kH9/R9JDIPslwKchR+S" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "97XzZ6p1RLaae79eec+OYS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 118 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 136 + }, + { + "__id__": 138 + }, + { + "__id__": 140 + } + ], + "_prefab": { + "__id__": 142 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -20, + "y": 67.376, + "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__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 137 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 435.786523, + "height": 114.752 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "76eewCTpJCprcVvVLvEuL3" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 139 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 5, + "g": 5, + "b": 5, + "a": 255 + }, + "_string": "asdasddsasdasdadasdasdasdasdasdasdasdadasdasdasdas", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 35, + "_fontSize": 35, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 35.2, + "_overflow": 3, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 5, + "g": 5, + "b": 5, + "a": 255 + }, + "_outlineWidth": 1, + "_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": "44wKE+rFZKn6Hit9neLqTq" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 141 + }, + "_alignFlags": 36, + "_target": null, + "_left": 20, + "_right": 20, + "_top": 10, + "_bottom": 10, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 1, + "_lockFlags": 45, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "46txf74X9C/YZWL/Ys2Yqm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "56pm4u3xtLBbHP/ntKqnNZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 118 + }, + "_enabled": true, + "__prefab": { + "__id__": 144 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "50lfk5ZSxA66BPyC+ExvuG" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 118 + }, + "_enabled": true, + "__prefab": { + "__id__": 146 + }, + "_alignFlags": 32, + "_target": null, + "_left": 0, + "_right": 50, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5c647U+1JCeaaNrHCaIo/F" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8fjY8XwVOnYwlwarXaYnt", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e2nip1AtpJqbPa2zazMPfC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4BA+6i6BPcYvthk3UGAxg", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "BgFrame", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 151 + }, + { + "__id__": 153 + } + ], + "_prefab": { + "__id__": 155 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -50, + "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__": 150 + }, + "_enabled": true, + "__prefab": { + "__id__": 152 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 2032 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3fDzb6uj9Ft4PPZXijzRaj" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 150 + }, + "_enabled": true, + "__prefab": { + "__id__": 154 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 300, + "_bottom": 200, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f8E7fv57NOKoG4k/pO2Kqa" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "17sRWSMVxERpWUtVGV9O9p", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ScrollView", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 157 + } + ], + "_active": true, + "_components": [ + { + "__id__": 175 + }, + { + "__id__": 177 + }, + { + "__id__": 179 + }, + { + "__id__": 181 + } + ], + "_prefab": { + "__id__": 183 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 156 + }, + "_children": [ + { + "__id__": 158 + } + ], + "_active": true, + "_components": [ + { + "__id__": 166 + }, + { + "__id__": 168 + }, + { + "__id__": 170 + }, + { + "__id__": 172 + } + ], + "_prefab": { + "__id__": 174 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 157 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 159 + }, + { + "__id__": 161 + }, + { + "__id__": 163 + } + ], + "_prefab": { + "__id__": 165 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -10, + "y": 125, + "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__": 158 + }, + "_enabled": true, + "__prefab": { + "__id__": 160 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1170, + "height": 0 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 1 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fah7BNs69IY7AS3ulNSukc" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 158 + }, + "_enabled": true, + "__prefab": { + "__id__": 162 + }, + "_resizeMode": 1, + "_layoutType": 2, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 0, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0bcYmAAONGga1YhWtVhdW6" + }, + { + "__type__": "8abe1ncXvJP8rwnbJLnufMR", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 158 + }, + "_enabled": true, + "__prefab": { + "__id__": 164 + }, + "lBubble": { + "__id__": 85 + }, + "rBubble": { + "__id__": 117 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "87p3joVK5N2YTrExWx27Mr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e8PWXc0c9FUKjKTcTnErp5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": { + "__id__": 167 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fdNda2zRpBXJ88GQuZzIkF" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": { + "__id__": 169 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1EHg8v75IZbb3Y6DUIPEQ" + }, + { + "__type__": "cc.Graphics", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": { + "__id__": 171 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_lineWidth": 1, + "_strokeColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_lineJoin": 2, + "_lineCap": 0, + "_fillColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_miterLimit": 10, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d19CP4AkxDbpj9sUnpYGSZ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 157 + }, + "_enabled": true, + "__prefab": { + "__id__": 173 + }, + "_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": 240, + "_originalHeight": 250, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dbYudfOXVIG7dSTz0hH2Ae" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "10XSelP6ZA1ZdNpoMQ0QWo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 156 + }, + "_enabled": true, + "__prefab": { + "__id__": 176 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "df1Erzl7dJ3JbpNcx70Rsy" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 156 + }, + "_enabled": false, + "__prefab": { + "__id__": 178 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@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": "dfMVzt98hJAa7F3ZH2bgkI" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 156 + }, + "_enabled": true, + "__prefab": { + "__id__": 180 + }, + "bounceDuration": 0.23, + "brake": 0.75, + "elastic": true, + "inertia": true, + "horizontal": false, + "vertical": true, + "cancelInnerEvents": true, + "scrollEvents": [], + "_content": { + "__id__": 158 + }, + "_horizontalScrollBar": null, + "_verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "91kc5lk+VA6JhmtvT9nW39" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 156 + }, + "_enabled": true, + "__prefab": { + "__id__": 182 + }, + "_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": 240, + "_originalHeight": 250, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "32/yZOAaVHRp0vFBRk9uBe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "68TkzaCaFHsqw7+ZbnXwpS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 185 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f1fVrs2IZOHo9myZIb3Ln2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 187 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 216, + "g": 216, + "b": 216, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "943325de-7f76-4f86-881b-e3413d3ec18e@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": "cc6Uj3Yk9M7o8ewGZ6Ho/E" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 189 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d6TN0zdc1A14ZUvwRzIkwG" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "81Uff7uwFDBpNbH8mEhRRb", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Node", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 192 + } + ], + "_active": true, + "_components": [ + { + "__id__": 216 + }, + { + "__id__": 218 + } + ], + "_prefab": { + "__id__": 220 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -559.374, + "y": 493.182, + "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": "ImagePop", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 191 + }, + "_children": [ + { + "__id__": 193 + } + ], + "_active": true, + "_components": [ + { + "__id__": 211 + }, + { + "__id__": 213 + } + ], + "_prefab": { + "__id__": 215 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 211.231, + "y": -28.934999999999945, + "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": "ImageMask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 192 + }, + "_children": [ + { + "__id__": 194 + } + ], + "_active": true, + "_components": [ + { + "__id__": 204 + }, + { + "__id__": 206 + }, + { + "__id__": 208 + } + ], + "_prefab": { + "__id__": 210 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Image", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 193 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 195 + }, + { + "__id__": 197 + }, + { + "__id__": 199 + }, + { + "__id__": 201 + } + ], + "_prefab": { + "__id__": 203 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -180, + "y": -270, + "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__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 196 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2e8iXsp6tK2J9Nh2uFEmTp" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 198 + }, + "_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": "97jAHh3XtIcIM3TXFySQg8" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 200 + }, + "_alignFlags": 12, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "48s+2PDkdA6qgmxN+BZQSz" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 194 + }, + "_enabled": true, + "__prefab": { + "__id__": 202 + }, + "clickEvents": [], + "_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": "1b3xvk+4FI3pwwlkmzx2q6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fepZQ/WIRDtKUCV2ineOcY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 193 + }, + "_enabled": true, + "__prefab": { + "__id__": 205 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7bsz4HsVNHy5d1OWRvg8Ds" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 193 + }, + "_enabled": true, + "__prefab": { + "__id__": 207 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64fQ7/o2RLgqsHW144Zgdp" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 193 + }, + "_enabled": true, + "__prefab": { + "__id__": 209 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@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": "33kfr1KRxHibGcp1VFuOY4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1a1OWUX6tASandsui8dekD", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 192 + }, + "_enabled": true, + "__prefab": { + "__id__": 212 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 374, + "height": 553 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "219ttzPCBIj6uk+ftN1qc4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 192 + }, + "_enabled": true, + "__prefab": { + "__id__": 214 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@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": "7aHgFNagtCebU+nqoNrntL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "50gd0y8w1LO6YdMikKeCGu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 217 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "50kDioEh1FYp3JOb54KHrO" + }, + { + "__type__": "fdde8U7CO5FBo5/3JFI1TBW", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 191 + }, + "_enabled": true, + "__prefab": { + "__id__": 219 + }, + "image": { + "__id__": 197 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64r8U0iphDlYf85yqFQTDW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4epWA1kWtEIqvMYesooyj/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 222 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8aOrbXwFtCiqvMREV1fQFv" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 224 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1ffj7HwTBBsLYftB8hBfSb" + }, + { + "__type__": "ad34bSzfoJKHbj0xNLx4KXH", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 226 + }, + "m_rootNode": null, + "girlName": { + "__id__": 30 + }, + "girlImg": { + "__id__": 40 + }, + "layout": { + "__id__": 163 + }, + "scrollView": { + "__id__": 179 + }, + "loadMoreBtn": null, + "loadMoreLabel": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61aiTvvRNH94rJb9ufUQWM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9acrf4umFDJZb/7fu6tsb6", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/bundles/Chat18x/RecordPanel.prefab.meta b/assets/bundles/Chat18x/RecordPanel.prefab.meta new file mode 100644 index 00000000..cb420b01 --- /dev/null +++ b/assets/bundles/Chat18x/RecordPanel.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "a62646a7-32f3-4560-9f53-f3e476752922", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "RecordPanel" + } +}