From 92277f0ff177a2253ece32ef380438ea16bb1113 Mon Sep 17 00:00:00 2001 From: xlj <543978819@qq.com> Date: Fri, 15 Aug 2025 18:17:12 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2h5=E9=80=82=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Scenes/PreloadScene.scene | 6 +- assets/Scripts/Main/Common/Utils.ts | 4 +- .../ui/components/ChatContentsLayout.ts | 41 +- .../chat18x/ui/components/DialogBubble.ts | 40 +- .../chat18x/ui/panels/GirlDetailPanel.ts | 30 +- assets/bundles/Chat18x/ChatPanel.prefab | 1757 +++-- assets/bundles/Chat18x/GirlDetailPanel.prefab | 6637 +++++++++-------- assets/bundles/Chat18x/GirlListPanel.prefab | 972 ++- assets/bundles/Chat18x/ThemePanel.prefab | 68 +- 9 files changed, 4975 insertions(+), 4580 deletions(-) diff --git a/assets/Scenes/PreloadScene.scene b/assets/Scenes/PreloadScene.scene index 3bd02b6f..8ad06bed 100644 --- a/assets/Scenes/PreloadScene.scene +++ b/assets/Scenes/PreloadScene.scene @@ -175,7 +175,7 @@ "_priority": 0, "_fov": 45, "_fovAxis": 0, - "_orthoHeight": 667, + "_orthoHeight": 666.9999999999999, "_near": 0, "_far": 2000, "_color": { @@ -2018,7 +2018,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1334 + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2082,7 +2082,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1334 + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", diff --git a/assets/Scripts/Main/Common/Utils.ts b/assets/Scripts/Main/Common/Utils.ts index ea0d1b03..a5d7c534 100644 --- a/assets/Scripts/Main/Common/Utils.ts +++ b/assets/Scripts/Main/Common/Utils.ts @@ -178,11 +178,11 @@ export default class Utils { //let windowSize = view.getVisibleSize(); let bgTf = node.getComponent(UITransform); if (bgTf) { - if (mod == 1 && bgTf.height <= windowSize.height) { + if (mod == 1) { let scale = windowSize.height / bgTf.height; bgTf.height = bgTf.height * scale; bgTf.width = bgTf.width * scale; - } else if (mod == 2 && bgTf.width <= windowSize.width) { + } else if (mod == 2) { let scale = windowSize.width / bgTf.width; bgTf.height = bgTf.height * scale; bgTf.width = bgTf.width * scale; diff --git a/assets/Scripts/chat18x/ui/components/ChatContentsLayout.ts b/assets/Scripts/chat18x/ui/components/ChatContentsLayout.ts index 3b4a8d59..23532cd7 100644 --- a/assets/Scripts/chat18x/ui/components/ChatContentsLayout.ts +++ b/assets/Scripts/chat18x/ui/components/ChatContentsLayout.ts @@ -1,15 +1,23 @@ -import { _decorator, Component, instantiate, Node, Vec3 } from "cc"; +import { + _decorator, + Component, + instantiate, + Node, + UITransform, + Vec3, +} from "cc"; import { DialogManager } from "../../manager/DialogManager"; import { DialogBubble } from "./DialogBubble"; import { Dialog } from "../../data/DialogData"; const { ccclass, property } = _decorator; -const BUTTOM_Y = -955.571; - @ccclass("ChatContentsLayout") export class ChatContentsLayout extends Component { manager: DialogManager = null; + @property(Node) + initPos: Node = null; + @property(DialogBubble) lBubble: DialogBubble = null; @property(DialogBubble) @@ -18,9 +26,12 @@ export class ChatContentsLayout extends Component { bubbles: DialogBubble[] = []; cachedBubbles: DialogBubble[] = []; + fixMaxWidth: number; + protected start(): void { this.lBubble.node.active = false; this.rBubble.node.active = false; + this.fixMaxWidth = this.node.getComponent(UITransform).contentSize.y * 0.6; } protected onEnable(): void { @@ -38,22 +49,22 @@ export class ChatContentsLayout extends Component { } } this.bubbles = []; - + this.updateDialogLayout(dialogs); - + // 清理多余的缓存气泡,避免内存泄漏 this.cleanupExcessCachedBubbles(); } private updateDialogLayout(dialogs: Dialog[]) { - let initPosY: number = BUTTOM_Y; + let initPosY: number = this.initPos.position.y; let pendingUpdates = 0; - + const updateNextBubble = (index: number) => { if (index < 0) { return; } - + const dialog = dialogs[index]; let newBubble: DialogBubble = null; @@ -64,7 +75,10 @@ export class ChatContentsLayout extends Component { if (cached && cached.node) { // 检查气泡类型是否匹配(通过位置判断左右气泡) const isRightBubble = cached.node.position.x > 0; - if ((isPlayerBubble && isRightBubble) || (!isPlayerBubble && !isRightBubble)) { + if ( + (isPlayerBubble && isRightBubble) || + (!isPlayerBubble && !isRightBubble) + ) { newBubble = cached; this.cachedBubbles.splice(j, 1); break; @@ -78,27 +92,28 @@ export class ChatContentsLayout extends Component { ? instantiate(this.rBubble.node) : instantiate(this.lBubble.node); newBubble = newBubbleNode.getComponent(DialogBubble); + newBubble.init(this.fixMaxWidth); newBubbleNode.setParent(this.node); } newBubble.node.active = true; let pos = newBubble.node.position; newBubble.node.position = new Vec3(pos.x, initPosY, pos.z); - + pendingUpdates++; newBubble.updateBubbleContent(dialog.content, (actualHeight: number) => { initPosY += actualHeight + 20; pendingUpdates--; - + // 当当前气泡更新完成后,处理下一个 if (pendingUpdates === 0) { updateNextBubble(index - 1); } }); - + this.bubbles.push(newBubble); }; - + // 从最后一个对话开始处理(倒序) updateNextBubble(dialogs.length - 1); } diff --git a/assets/Scripts/chat18x/ui/components/DialogBubble.ts b/assets/Scripts/chat18x/ui/components/DialogBubble.ts index f121c428..df0f6801 100644 --- a/assets/Scripts/chat18x/ui/components/DialogBubble.ts +++ b/assets/Scripts/chat18x/ui/components/DialogBubble.ts @@ -1,4 +1,12 @@ -import { _decorator, Component, Label, Node, Size, UITransform } from "cc"; +import { + _decorator, + Component, + Label, + Node, + Overflow, + Size, + UITransform, +} from "cc"; import Tools from "../../utils/tools"; const { ccclass, property } = _decorator; @@ -11,7 +19,13 @@ export class DialogBubble extends Component { @property(UITransform) contentT: UITransform = null; + fixMaxWidth: number; + init(maxWidth: number = 650) { + this.fixMaxWidth = maxWidth; + } + updateBubbleContent(str: string, callback?: (actualHeight: number) => void) { + this.content.overflow = Overflow.NONE; // 设置文本内容 this.content.string = str; @@ -22,38 +36,40 @@ export class DialogBubble extends Component { for (const line of lines) { let lineWidth = 0; if (Tools.IsChinese(line)) { - lineWidth = 35 * line.length; + lineWidth = 30 * line.length; } else { - lineWidth = 21 * line.length; + lineWidth = 18 * line.length; } maxWidth = Math.max(maxWidth, lineWidth); } + if (maxWidth > this.fixMaxWidth) + this.content.overflow = Overflow.RESIZE_HEIGHT; // 限制最大宽度 - const contentWidth = Math.min(maxWidth, 950); + const contentWidth = Math.min(maxWidth, this.fixMaxWidth); // 设置内容区域宽度,让Label自动计算高度 this.contentT.setContentSize(new Size(contentWidth, 0)); - this.bg.setContentSize(new Size(contentWidth + 20, 0)); + this.bg.setContentSize(new Size(contentWidth + 17, 0)); // 强制更新Label的渲染数据以获取正确的高度 this.content.updateRenderData(true); // 等待一帧后获取Label的实际高度 this.scheduleOnce(() => { - const actualHeight = - this.content.node.getComponent(UITransform).contentSize.height; + const actualSize = + this.content.node.getComponent(UITransform).contentSize; // 更新内容区域的实际大小 - this.contentT.setContentSize(new Size(contentWidth, actualHeight)); + //this.contentT.setContentSize(new Size(contentWidth, actualHeight)); // 根据内容大小调整背景大小,添加适当的内边距 - const bgHeight = actualHeight + 20; - this.bg.setContentSize(new Size(contentWidth + 50, bgHeight)); - + //const bgHeight = actualHeight + 17; + this.bg.setContentSize(new Size(actualSize.x + 30, actualSize.y + 10)); + // 回调通知实际高度 if (callback) { - callback(bgHeight); + callback(actualSize.y); } }, 0); diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index 9299fced..45cd8b84 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -33,8 +33,6 @@ export class GirlDetailPanel extends li_BaseView { @property(Label) tags: Label; - @property(Label) - descName: Label; @property(Label) descAge: Label; @property(Label) @@ -60,9 +58,7 @@ export class GirlDetailPanel extends li_BaseView { this.refresh(this.id); Utils.addInnerEL(InnerMsgCode.LanguageChange, this, () => { - this.girlName.string = this.descName.string = LanguageUtils.getText( - this.nameKey - ); + this.girlName.string = LanguageUtils.getText(this.nameKey); let desc = ""; const tags = LanguageUtils.getText(this.tagKey).split("|"); for (let i = 0; i < tags.length; i++) { @@ -93,7 +89,9 @@ export class GirlDetailPanel extends li_BaseView { if (parentTransform && videoTransform && videoTransform.height > 0) { const scale = parentTransform.height / videoTransform.height; this.avatarVideo.node.setScale(scale, scale, 1); - console.log(`Video scaled to: ${scale}, parent height: ${parentTransform.height}, video height: ${videoTransform.height}`); + console.log( + `Video scaled to: ${scale}, parent height: ${parentTransform.height}, video height: ${videoTransform.height}` + ); return true; } return false; @@ -121,9 +119,7 @@ export class GirlDetailPanel extends li_BaseView { const data = ConfigManager.tables.TbGirls.get(this.id); this.category = data.category; this.nameKey = data.nameKey; - this.girlName.string = this.descName.string = LanguageUtils.getText( - data.nameKey - ); + this.girlName.string = LanguageUtils.getText(data.nameKey); if (dataDetail.pics[0].endsWith("video")) { ResManager.I.changeBundleVideo( @@ -131,12 +127,16 @@ export class GirlDetailPanel extends li_BaseView { dataDetail.pics[0], "Chat18x" ); - + // 添加视频加载完成回调 - this.avatarVideo.node.on(VideoPlayer.EventType.READY_TO_PLAY, () => { - this.adjustVideoScale(); - }, this); - + this.avatarVideo.node.on( + VideoPlayer.EventType.READY_TO_PLAY, + () => { + this.adjustVideoScale(); + }, + this + ); + // 也立即尝试调整(以防已经加载完成) this.adjustVideoScale(); } @@ -160,7 +160,7 @@ export class GirlDetailPanel extends li_BaseView { this.tagKey = data.tagKey; const tags = LanguageUtils.getText(data.tagKey).split("|"); for (let i = 0; i < tags.length; i++) { - if (i != 0) desc += "\n"; + if (i != 0) desc += "|"; desc += tags[i]; } this.tags.string = desc; diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index 75a0726d..54d83cf9 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -22,29 +22,29 @@ "__id__": 2 }, { - "__id__": 97 + "__id__": 105 }, { - "__id__": 129 + "__id__": 137 }, { - "__id__": 304 + "__id__": 310 } ], "_active": true, "_components": [ { - "__id__": 334 + "__id__": 340 }, { - "__id__": 336 + "__id__": 342 }, { - "__id__": 338 + "__id__": 344 } ], "_prefab": { - "__id__": 340 + "__id__": 346 }, "_lpos": { "__type__": "cc.Vec3", @@ -91,38 +91,35 @@ "__id__": 9 }, { - "__id__": 79 + "__id__": 81 }, { - "__id__": 85 + "__id__": 87 }, { - "__id__": 161 + "__id__": 169 }, { - "__id__": 167 + "__id__": 175 }, { - "__id__": 215 - }, - { - "__id__": 223 + "__id__": 229 } ], "_active": true, "_components": [ { - "__id__": 297 + "__id__": 303 }, { - "__id__": 299 + "__id__": 305 }, { - "__id__": 301 + "__id__": 307 } ], "_prefab": { - "__id__": 303 + "__id__": 309 }, "_lpos": { "__type__": "cc.Vec3", @@ -302,37 +299,40 @@ "__id__": 10 }, { - "__id__": 16 + "__id__": 18 }, { - "__id__": 27 + "__id__": 29 }, { - "__id__": 35 + "__id__": 37 }, { - "__id__": 61 + "__id__": 55 + }, + { + "__id__": 63 } ], "_active": true, "_components": [ - { - "__id__": 72 - }, { "__id__": 74 }, { "__id__": 76 + }, + { + "__id__": 78 } ], "_prefab": { - "__id__": 78 + "__id__": 80 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1166, + "y": 607.8499999999999, "z": 0 }, "_lrot": { @@ -374,15 +374,18 @@ }, { "__id__": 13 + }, + { + "__id__": 15 } ], "_prefab": { - "__id__": 15 + "__id__": 17 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -1167.273, + "y": -467.2409999999999, "z": 0 }, "_lrot": { @@ -422,8 +425,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1052.7819999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -471,7 +474,7 @@ "y": 0 }, "_fillStart": 1, - "_fillRange": -0.117, + "_fillRange": -0.12, "_isTrimmedMode": true, "_useGrayscale": false, "_atlas": null, @@ -481,6 +484,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "83LTRTAq9GCISzSoNsQlB4" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 16 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": -934.4819999999997, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 750, + "_originalHeight": 1334, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "56jWYtLPhC0KEhmX7eiLr6" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -505,9 +544,6 @@ "_children": [], "_active": true, "_components": [ - { - "__id__": 17 - }, { "__id__": 19 }, @@ -515,16 +551,19 @@ "__id__": 21 }, { - "__id__": 24 + "__id__": 23 + }, + { + "__id__": 26 } ], "_prefab": { - "__id__": 26 + "__id__": 28 }, "_lpos": { "__type__": "cc.Vec3", - "x": -533.5, - "y": -170, + "x": -355, + "y": -44.85, "z": 0 }, "_lrot": { @@ -536,8 +575,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 1.5, - "y": 1.5, + "x": 1, + "y": 1, "z": 1 }, "_mobility": 0, @@ -556,11 +595,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 16 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 20 }, "_contentSize": { "__type__": "cc.Size", @@ -584,11 +623,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 16 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 22 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -629,15 +668,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 16 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 24 }, "clickEvents": [ { - "__id__": 23 + "__id__": 25 } ], "_interactable": true, @@ -677,7 +716,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 16 + "__id__": 18 }, "_id": "" }, @@ -701,17 +740,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 16 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 25 + "__id__": 27 }, - "_alignFlags": 12, + "_alignFlags": 9, "_target": null, - "_left": 50, + "_left": 20, "_right": 0, - "_top": 0, + "_top": 40, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -722,7 +761,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 64, "_alignMode": 2, "_lockFlags": 12, "_id": "" @@ -755,23 +794,23 @@ "_children": [], "_active": true, "_components": [ - { - "__id__": 28 - }, { "__id__": 30 }, { "__id__": 32 + }, + { + "__id__": 34 } ], "_prefab": { - "__id__": 34 + "__id__": 36 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -129.49099999999999, + "y": -2.9539999999999935, "z": 0 }, "_lrot": { @@ -803,11 +842,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 27 + "__id__": 29 }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 31 }, "_contentSize": { "__type__": "cc.Size", @@ -831,11 +870,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 27 + "__id__": 29 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 33 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -899,18 +938,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 27 + "__id__": 29 }, "_enabled": true, "__prefab": { - "__id__": 33 + "__id__": 35 }, "_alignFlags": 20, "_target": null, "_left": 0, "_right": 0, "_top": 0, - "_bottom": 14.31300000000001, + "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -944,7 +983,7 @@ }, { "__type__": "cc.Node", - "_name": "avatar_cover", + "_name": "avatar", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -952,88 +991,31 @@ }, "_children": [ { - "__id__": 36 + "__id__": 38 } ], "_active": true, "_components": [ { - "__id__": 54 + "__id__": 46 }, { - "__id__": 56 + "__id__": 48 }, { - "__id__": 58 + "__id__": 50 + }, + { + "__id__": 52 } ], "_prefab": { - "__id__": 60 + "__id__": 54 }, "_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, + "x": 259.971, + "y": -53.26599999999985, "z": 0 }, "_lrot": { @@ -1065,23 +1047,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 36 + "__id__": 37 }, "_children": [], "_active": true, "_components": [ { - "__id__": 38 + "__id__": 39 }, { - "__id__": 40 + "__id__": 41 }, { - "__id__": 42 + "__id__": 43 } ], "_prefab": { - "__id__": 44 + "__id__": 45 }, "_lpos": { "__type__": "cc.Vec3", @@ -1118,16 +1100,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 39 + "__id__": 40 }, "_contentSize": { "__type__": "cc.Size", - "width": 235, - "height": 235 + "width": 160, + "height": 160 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1146,11 +1128,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 42 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1162,7 +1144,10 @@ "b": 255, "a": 255 }, - "_spriteFrame": null, + "_spriteFrame": { + "__uuid__": "cfd5524f-1860-4b97-ac54-edfe0990e92f@f9941", + "__expectedType__": "cc.SpriteFrame" + }, "_type": 0, "_fillType": 0, "_sizeMode": 0, @@ -1188,11 +1173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 37 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 44 }, "_alignFlags": 45, "_target": null, @@ -1237,16 +1222,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 46 + "__id__": 47 }, "_contentSize": { "__type__": "cc.Size", - "width": 235, - "height": 235 + "width": 160, + "height": 160 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1265,11 +1250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 48 + "__id__": 49 }, "_type": 3, "_inverted": false, @@ -1287,11 +1272,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 50 + "__id__": 51 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1332,18 +1317,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 52 + "__id__": 53 }, - "_alignFlags": 45, + "_alignFlags": 36, "_target": null, "_left": 0, - "_right": 0, + "_right": 35.028999999999996, "_top": 0, - "_bottom": 0, + "_bottom": -74.11599999999984, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1352,10 +1337,10 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 200, - "_originalHeight": 200, + "_originalWidth": 0, + "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 36, + "_lockFlags": 0, "_id": "" }, { @@ -1375,22 +1360,75 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "avatar_cover", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 9 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 56 + }, + { + "__id__": 58 + }, + { + "__id__": 60 + } + ], + "_prefab": { + "__id__": 62 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 259.971, + "y": -53.26599999999985, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 55 + "__id__": 57 }, "_contentSize": { "__type__": "cc.Size", - "width": 235, - "height": 235 + "width": 160, + "height": 160 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1409,11 +1447,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 59 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1454,18 +1492,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 59 + "__id__": 61 }, "_alignFlags": 36, "_target": null, "_left": 0, - "_right": 16, + "_right": 35.028999999999996, "_top": 0, - "_bottom": 10.3, + "_bottom": -74.11599999999984, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1477,7 +1515,7 @@ "_originalWidth": 0, "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 36, + "_lockFlags": 0, "_id": "" }, { @@ -1508,9 +1546,6 @@ "_children": [], "_active": true, "_components": [ - { - "__id__": 62 - }, { "__id__": 64 }, @@ -1518,16 +1553,19 @@ "__id__": 66 }, { - "__id__": 69 + "__id__": 68 + }, + { + "__id__": 71 } ], "_prefab": { - "__id__": 71 + "__id__": 73 }, "_lpos": { "__type__": "cc.Vec3", - "x": -413.6, - "y": -170, + "x": -272.315, + "y": -44.84999999999991, "z": 0 }, "_lrot": { @@ -1539,8 +1577,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 1.5, - "y": 1.5, + "x": 1, + "y": 1, "z": 1 }, "_mobility": 0, @@ -1559,11 +1597,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 63 + "__id__": 65 }, "_contentSize": { "__type__": "cc.Size", @@ -1587,11 +1625,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 65 + "__id__": 67 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1632,15 +1670,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 67 + "__id__": 69 }, "clickEvents": [ { - "__id__": 68 + "__id__": 70 } ], "_interactable": true, @@ -1680,7 +1718,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 61 + "__id__": 63 }, "_id": "" }, @@ -1704,17 +1742,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 63 }, "_enabled": true, "__prefab": { - "__id__": 70 + "__id__": 72 }, - "_alignFlags": 12, + "_alignFlags": 9, "_target": null, - "_left": 169.9, + "_left": 102.685, "_right": 0, - "_top": 0, + "_top": 39.99999999999991, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -1725,9 +1763,9 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 64, "_alignMode": 2, - "_lockFlags": 12, + "_lockFlags": 4, "_id": "" }, { @@ -1757,12 +1795,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 75 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 400 + "width": 750, + "height": 118.3 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1785,7 +1823,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 75 + "__id__": 77 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1830,13 +1868,13 @@ }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 79 }, "_alignFlags": 41, "_target": null, "_left": 0, "_right": 0, - "_top": -100, + "_top": 0, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -1881,14 +1919,14 @@ "_active": true, "_components": [ { - "__id__": 80 + "__id__": 82 }, { - "__id__": 82 + "__id__": 84 } ], "_prefab": { - "__id__": 84 + "__id__": 86 }, "_lpos": { "__type__": "cc.Vec3", @@ -1925,11 +1963,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 79 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 81 + "__id__": 83 }, "_contentSize": { "__type__": "cc.Size", @@ -1953,11 +1991,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 79 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 85 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2013,32 +2051,86 @@ "_parent": { "__id__": 2 }, - "_children": [], + "_children": [ + { + "__id__": 88 + } + ], "_active": true, "_components": [ - { - "__id__": 86 - }, - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - }, { "__id__": 94 + }, + { + "__id__": 96 + }, + { + "__id__": 98 + }, + { + "__id__": 100 + }, + { + "__id__": 102 } ], "_prefab": { - "__id__": 160 + "__id__": 168 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -50, + "y": 39.30000000000001, + "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": "initPos", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 87 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 89 + }, + { + "__id__": 91 + } + ], + "_prefab": { + "__id__": 93 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 322.977, + "y": -459.3929999999999, "z": 0 }, "_lrot": { @@ -2070,16 +2162,93 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 85 + "__id__": 88 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 90 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2032 + "width": 100, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "04d4/83f5JeL76IGrrm4q6" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 88 + }, + "_enabled": true, + "__prefab": { + "__id__": 92 + }, + "_alignFlags": 36, + "_target": null, + "_left": 0, + "_right": 52.023000000000025, + "_top": 0, + "_bottom": 46.90699999999998, + "_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": "77BIeDa8BBUK/QRDANIdxQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "74pvtPMc5Fp5rGE6pbe1jH", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 87 + }, + "_enabled": true, + "__prefab": { + "__id__": 95 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 1012.5999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2098,17 +2267,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 85 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 89 + "__id__": 97 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 300, + "_top": 121.4, "_bottom": 200, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2134,11 +2303,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 85 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 99 }, "_type": 0, "_inverted": false, @@ -2156,11 +2325,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 85 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 93 + "__id__": 101 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2202,17 +2371,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 85 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 103 + }, + "initPos": { + "__id__": 88 }, "lBubble": { - "__id__": 96 + "__id__": 104 }, "rBubble": { - "__id__": 128 + "__id__": 136 }, "_id": "" }, @@ -2226,61 +2398,61 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 135 }, "bg": { - "__id__": 107 + "__id__": 115 }, "content": { - "__id__": 117 + "__id__": 125 }, "contentT": { - "__id__": 115 + "__id__": 123 }, "_id": "" }, { "__type__": "cc.Node", "_name": "DialogBubble_Left", - "_objFlags": 0, + "_objFlags": 512, "__editorExtras__": {}, "_parent": { "__id__": 1 }, "_children": [ - { - "__id__": 98 - }, { "__id__": 106 }, { "__id__": 114 + }, + { + "__id__": 122 } ], "_active": true, "_components": [ { - "__id__": 122 + "__id__": 130 }, { - "__id__": 124 + "__id__": 132 }, { - "__id__": 96 + "__id__": 104 } ], "_prefab": { - "__id__": 126 + "__id__": 134 }, "_lpos": { "__type__": "cc.Vec3", - "x": -533.5, - "y": -370.22900000000004, + "x": -325, + "y": -416.69299999999987, "z": 0 }, "_lrot": { @@ -2309,26 +2481,26 @@ { "__type__": "cc.Node", "_name": "SpriteSplash-001", - "_objFlags": 0, + "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 97 + "__id__": 105 }, "_children": [], "_active": true, "_components": [ { - "__id__": 99 + "__id__": 107 }, { - "__id__": 101 + "__id__": 109 }, { - "__id__": 103 + "__id__": 111 } ], "_prefab": { - "__id__": 105 + "__id__": 113 }, "_lpos": { "__type__": "cc.Vec3", @@ -2365,11 +2537,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 108 }, "_contentSize": { "__type__": "cc.Size", @@ -2393,11 +2565,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 102 + "__id__": 110 }, "_alignFlags": 12, "_target": null, @@ -2429,11 +2601,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 104 + "__id__": 112 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2484,31 +2656,31 @@ { "__type__": "cc.Node", "_name": "SpriteSplash", - "_objFlags": 0, + "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 97 + "__id__": 105 }, "_children": [], "_active": true, "_components": [ { - "__id__": 107 + "__id__": 115 }, { - "__id__": 109 + "__id__": 117 }, { - "__id__": 111 + "__id__": 119 } ], "_prefab": { - "__id__": 113 + "__id__": 121 }, "_lpos": { "__type__": "cc.Vec3", - "x": 185, - "y": 275, + "x": 324.9755, + "y": 127.18549999999999, "z": 0 }, "_lrot": { @@ -2540,16 +2712,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 116 }, "_contentSize": { "__type__": "cc.Size", - "width": 370, - "height": 550 + "width": 649.951, + "height": 254.37099999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2568,11 +2740,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 118 }, "_alignFlags": 12, "_target": null, @@ -2604,11 +2776,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 120 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2659,26 +2831,26 @@ { "__type__": "cc.Node", "_name": "content", - "_objFlags": 0, + "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 97 + "__id__": 105 }, "_children": [], "_active": true, "_components": [ { - "__id__": 115 + "__id__": 123 }, { - "__id__": 117 + "__id__": 125 }, { - "__id__": 119 + "__id__": 127 } ], "_prefab": { - "__id__": 121 + "__id__": 129 }, "_lpos": { "__type__": "cc.Vec3", @@ -2715,15 +2887,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 122 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 124 }, "_contentSize": { "__type__": "cc.Size", - "width": 35, + "width": 28, "height": 44.352000000000004 }, "_anchorPoint": { @@ -2743,11 +2915,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 122 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 126 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2762,11 +2934,11 @@ "_string": "慵", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 35, - "_fontSize": 35, + "_actualFontSize": 28, + "_fontSize": 28, "_fontFamily": "NotoSans-Regular", "_lineHeight": 35.2, - "_overflow": 3, + "_overflow": 0, "_enableWrapText": true, "_font": null, "_isSystemFontUsed": true, @@ -2811,11 +2983,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 122 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 128 }, "_alignFlags": 12, "_target": null, @@ -2860,11 +3032,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 131 }, "_contentSize": { "__type__": "cc.Size", @@ -2888,11 +3060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 133 }, "_alignFlags": 8, "_target": null, @@ -2941,20 +3113,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 167 }, "bg": { - "__id__": 139 + "__id__": 147 }, "content": { - "__id__": 149 + "__id__": 157 }, "contentT": { - "__id__": 147 + "__id__": 155 }, "_id": "" }, @@ -2967,35 +3139,35 @@ "__id__": 1 }, "_children": [ - { - "__id__": 130 - }, { "__id__": 138 }, { "__id__": 146 + }, + { + "__id__": 154 } ], "_active": true, "_components": [ { - "__id__": 154 + "__id__": 162 }, { - "__id__": 156 + "__id__": 164 }, { - "__id__": 128 + "__id__": 136 } ], "_prefab": { - "__id__": 158 + "__id__": 166 }, "_lpos": { "__type__": "cc.Vec3", - "x": 533.5, - "y": -568.8, + "x": 325, + "y": -420.4179999999999, "z": 0 }, "_lrot": { @@ -3027,23 +3199,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 129 + "__id__": 137 }, "_children": [], "_active": true, "_components": [ { - "__id__": 131 + "__id__": 139 }, { - "__id__": 133 + "__id__": 141 }, { - "__id__": 135 + "__id__": 143 } ], "_prefab": { - "__id__": 137 + "__id__": 145 }, "_lpos": { "__type__": "cc.Vec3", @@ -3080,11 +3252,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 140 }, "_contentSize": { "__type__": "cc.Size", @@ -3108,11 +3280,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 134 + "__id__": 142 }, "_alignFlags": 36, "_target": null, @@ -3144,11 +3316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 136 + "__id__": 144 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3202,23 +3374,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 129 + "__id__": 137 }, "_children": [], "_active": true, "_components": [ { - "__id__": 139 + "__id__": 147 }, { - "__id__": 141 + "__id__": 149 }, { - "__id__": 143 + "__id__": 151 } ], "_prefab": { - "__id__": 145 + "__id__": 153 }, "_lpos": { "__type__": "cc.Vec3", @@ -3255,11 +3427,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 148 }, "_contentSize": { "__type__": "cc.Size", @@ -3283,11 +3455,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 150 }, "_alignFlags": 36, "_target": null, @@ -3319,11 +3491,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 152 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3377,28 +3549,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 129 + "__id__": 137 }, "_children": [], "_active": true, "_components": [ { - "__id__": 147 + "__id__": 155 }, { - "__id__": 149 + "__id__": 157 }, { - "__id__": 151 + "__id__": 159 } ], "_prefab": { - "__id__": 153 + "__id__": 161 }, "_lpos": { "__type__": "cc.Vec3", "x": -20, - "y": 67.376, + "y": 84.976, "z": 0 }, "_lrot": { @@ -3430,16 +3602,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 156 }, "_contentSize": { "__type__": "cc.Size", - "width": 435.786523, - "height": 114.752 + "width": 650, + "height": 149.952 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3458,11 +3630,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 158 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3474,11 +3646,11 @@ "b": 5, "a": 255 }, - "_string": "asdasddsasdasdadasdasdasdasdasdasdasdadasdasdasdas", + "_string": "morningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorningmorning", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 35, - "_fontSize": 35, + "_actualFontSize": 28, + "_fontSize": 28, "_fontFamily": "NotoSans-Regular", "_lineHeight": 35.2, "_overflow": 3, @@ -3526,11 +3698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 160 }, "_alignFlags": 36, "_target": null, @@ -3575,11 +3747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 163 }, "_contentSize": { "__type__": "cc.Size", @@ -3603,11 +3775,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 165 }, "_alignFlags": 32, "_target": null, @@ -3675,19 +3847,19 @@ "_active": true, "_components": [ { - "__id__": 162 + "__id__": 170 }, { - "__id__": 164 + "__id__": 172 } ], "_prefab": { - "__id__": 166 + "__id__": 174 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -50, + "y": 37.80000000000001, "z": 0 }, "_lrot": { @@ -3719,16 +3891,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 161 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 171 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2032 + "width": 750, + "height": 1009.5999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3747,17 +3919,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 161 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 173 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 300, + "_top": 124.4, "_bottom": 200, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -3800,31 +3972,34 @@ }, "_children": [ { - "__id__": 168 + "__id__": 176 }, { - "__id__": 193 + "__id__": 182 + }, + { + "__id__": 207 } ], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 222 }, { - "__id__": 210 + "__id__": 224 }, { - "__id__": 212 + "__id__": 226 } ], "_prefab": { - "__id__": 214 + "__id__": 228 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -1166, + "y": -566.9999999999999, "z": 0 }, "_lrot": { @@ -3850,39 +4025,175 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "boxbg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 175 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 177 + }, + { + "__id__": 179 + } + ], + "_prefab": { + "__id__": 181 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 44.60300000000001, + "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__": 176 + }, + "_enabled": true, + "__prefab": { + "__id__": 178 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 624.9, + "height": 94 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b0Pieh8RBADZi4z8eUQz0k" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 176 + }, + "_enabled": true, + "__prefab": { + "__id__": 180 + }, + "_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": "192Hdt9qJNlrVHtEaJnP/D" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "23R4Bnq+hJ9a1QorYmGdKG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", "_name": "InputBox", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 167 + "__id__": 175 }, "_children": [ { - "__id__": 169 + "__id__": 183 }, { - "__id__": 175 + "__id__": 189 } ], "_active": true, "_components": [ { - "__id__": 183 + "__id__": 197 }, { - "__id__": 185 + "__id__": 199 }, { - "__id__": 187 + "__id__": 201 }, { - "__id__": 190 + "__id__": 204 } ], "_prefab": { - "__id__": 192 + "__id__": 206 }, "_lpos": { "__type__": "cc.Vec3", @@ -3919,24 +4230,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 182 }, "_children": [], "_active": false, "_components": [ { - "__id__": 170 + "__id__": 184 }, { - "__id__": 172 + "__id__": 186 } ], "_prefab": { - "__id__": 174 + "__id__": 188 }, "_lpos": { "__type__": "cc.Vec3", - "x": -505.45, + "x": -296.95, "y": 47, "z": 0 }, @@ -3969,15 +4280,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 183 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 185 }, "_contentSize": { "__type__": "cc.Size", - "width": 1012.9, + "width": 595.9, "height": 94 }, "_anchorPoint": { @@ -3997,11 +4308,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 183 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 187 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4078,27 +4389,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 182 }, "_children": [], "_active": true, "_components": [ { - "__id__": 176 + "__id__": 190 }, { - "__id__": 178 + "__id__": 192 }, { - "__id__": 180 + "__id__": 194 } ], "_prefab": { - "__id__": 182 + "__id__": 196 }, "_lpos": { "__type__": "cc.Vec3", - "x": -505.45, + "x": -296.95, "y": 47, "z": 0 }, @@ -4131,15 +4442,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 191 }, "_contentSize": { "__type__": "cc.Size", - "width": 1012.9, + "width": 595.9, "height": 94 }, "_anchorPoint": { @@ -4159,11 +4470,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 193 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4178,8 +4489,8 @@ "_string": "Message", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 40, - "_fontSize": 40, + "_actualFontSize": 35, + "_fontSize": 35, "_fontFamily": "NotoSans-Regular", "_lineHeight": 59.2, "_overflow": 1, @@ -4227,11 +4538,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 195 }, "languageKey": "chatpanel.inputplaceholder", "defaultText": "", @@ -4261,15 +4572,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 198 }, "_contentSize": { "__type__": "cc.Size", - "width": 1014.9, + "width": 597.9, "height": 94 }, "_anchorPoint": { @@ -4289,11 +4600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 182 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 186 + "__id__": 200 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4334,25 +4645,25 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 202 }, "editingDidBegan": [], "textChanged": [], "editingDidEnded": [], "editingReturn": [ { - "__id__": 189 + "__id__": 203 } ], "_textLabel": { - "__id__": 172 + "__id__": 186 }, "_placeholderLabel": { - "__id__": 178 + "__id__": 192 }, "_returnType": 0, "_string": "", @@ -4386,11 +4697,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 191 + "__id__": 205 }, "_alignFlags": 44, "_target": null, @@ -4435,32 +4746,32 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 167 + "__id__": 175 }, "_children": [ { - "__id__": 194 + "__id__": 208 } ], "_active": true, "_components": [ { - "__id__": 200 + "__id__": 214 }, { - "__id__": 202 + "__id__": 216 }, { - "__id__": 204 + "__id__": 218 } ], "_prefab": { - "__id__": 207 + "__id__": 221 }, "_lpos": { "__type__": "cc.Vec3", - "x": 532.387, - "y": 42.972999999999956, + "x": 321.18600000000004, + "y": 45.411, "z": 0 }, "_lrot": { @@ -4492,20 +4803,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 193 + "__id__": 207 }, "_children": [], "_active": true, "_components": [ { - "__id__": 195 + "__id__": 209 }, { - "__id__": 197 + "__id__": 211 } ], "_prefab": { - "__id__": 199 + "__id__": 213 }, "_lpos": { "__type__": "cc.Vec3", @@ -4542,11 +4853,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 208 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 210 }, "_contentSize": { "__type__": "cc.Size", @@ -4570,11 +4881,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 208 }, "_enabled": true, "__prefab": { - "__id__": 198 + "__id__": 212 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4651,11 +4962,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 201 + "__id__": 215 }, "_contentSize": { "__type__": "cc.Size", @@ -4679,11 +4990,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 203 + "__id__": 217 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4724,15 +5035,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 205 + "__id__": 219 }, "clickEvents": [ { - "__id__": 206 + "__id__": 220 } ], "_interactable": true, @@ -4784,7 +5095,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 193 + "__id__": 207 }, "_id": "" }, @@ -4821,15 +5132,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 223 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, + "width": 750, "height": 200 }, "_anchorPoint": { @@ -4849,11 +5160,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 225 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4894,11 +5205,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 175 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 227 }, "_alignFlags": 44, "_target": null, @@ -4937,166 +5248,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "VideoPlayer", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 216 - }, - { - "__id__": 218 - }, - { - "__id__": 220 - } - ], - "_prefab": { - "__id__": 222 - }, - "_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": 2, - "y": 2, - "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__": 215 - }, - "_enabled": true, - "__prefab": { - "__id__": 217 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 224, - "height": 1016 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "06AW5IoiBF15/pRelP/Kh/" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 215 - }, - "_enabled": true, - "__prefab": { - "__id__": 219 - }, - "_alignFlags": 45, - "_target": null, - "_left": 359.5, - "_right": 359.5, - "_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": "5bpVPE/MBEUpa8eWafKgo7" - }, - { - "__type__": "cc.VideoPlayer", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 215 - }, - "_enabled": true, - "__prefab": { - "__id__": 221 - }, - "_resourceType": 1, - "_remoteURL": "", - "_clip": null, - "_playOnAwake": true, - "_volume": 1, - "_mute": false, - "_playbackRate": 1, - "_loop": false, - "_fullScreenOnAwake": false, - "_stayOnBottom": false, - "_keepAspectRatio": true, - "videoPlayerEvent": [], - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "62NZivFbdEWpIi403cOTcm" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e0+UZ0YUxD9qmXT8U6ZlBE", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "PayToTalk", @@ -5106,27 +5257,27 @@ "__id__": 2 }, "_children": [ - { - "__id__": 224 - }, { "__id__": 230 }, { - "__id__": 261 - } - ], - "_active": true, - "_components": [ - { - "__id__": 292 + "__id__": 236 }, { - "__id__": 294 + "__id__": 267 + } + ], + "_active": false, + "_components": [ + { + "__id__": 298 + }, + { + "__id__": 300 } ], "_prefab": { - "__id__": 296 + "__id__": 302 }, "_lpos": { "__type__": "cc.Vec3", @@ -5163,20 +5314,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 223 + "__id__": 229 }, "_children": [], "_active": true, "_components": [ { - "__id__": 225 + "__id__": 231 }, { - "__id__": 227 + "__id__": 233 } ], "_prefab": { - "__id__": 229 + "__id__": 235 }, "_lpos": { "__type__": "cc.Vec3", @@ -5213,11 +5364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 232 }, "_contentSize": { "__type__": "cc.Size", @@ -5241,11 +5392,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 234 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5322,36 +5473,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 223 + "__id__": 229 }, "_children": [ { - "__id__": 231 - }, - { - "__id__": 239 + "__id__": 237 }, { "__id__": 245 + }, + { + "__id__": 251 } ], "_active": true, "_components": [ { - "__id__": 251 + "__id__": 257 }, { - "__id__": 253 + "__id__": 259 }, { - "__id__": 255 + "__id__": 261 }, { - "__id__": 258 + "__id__": 264 } ], "_prefab": { - "__id__": 260 + "__id__": 266 }, "_lpos": { "__type__": "cc.Vec3", @@ -5388,23 +5539,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 230 + "__id__": 236 }, "_children": [], "_active": true, "_components": [ { - "__id__": 232 + "__id__": 238 }, { - "__id__": 234 + "__id__": 240 }, { - "__id__": 236 + "__id__": 242 } ], "_prefab": { - "__id__": 238 + "__id__": 244 }, "_lpos": { "__type__": "cc.Vec3", @@ -5441,11 +5592,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 239 }, "_contentSize": { "__type__": "cc.Size", @@ -5469,11 +5620,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 241 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5537,11 +5688,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 231 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 237 + "__id__": 243 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -5571,20 +5722,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 230 + "__id__": 236 }, "_children": [], "_active": true, "_components": [ { - "__id__": 240 + "__id__": 246 }, { - "__id__": 242 + "__id__": 248 } ], "_prefab": { - "__id__": 244 + "__id__": 250 }, "_lpos": { "__type__": "cc.Vec3", @@ -5621,11 +5772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 239 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 247 }, "_contentSize": { "__type__": "cc.Size", @@ -5649,11 +5800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 239 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 249 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5707,20 +5858,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 230 + "__id__": 236 }, "_children": [], "_active": true, "_components": [ { - "__id__": 246 + "__id__": 252 }, { - "__id__": 248 + "__id__": 254 } ], "_prefab": { - "__id__": 250 + "__id__": 256 }, "_lpos": { "__type__": "cc.Vec3", @@ -5757,11 +5908,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 245 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 247 + "__id__": 253 }, "_contentSize": { "__type__": "cc.Size", @@ -5785,11 +5936,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 245 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 255 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5866,11 +6017,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 252 + "__id__": 258 }, "_contentSize": { "__type__": "cc.Size", @@ -5894,11 +6045,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 254 + "__id__": 260 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5939,15 +6090,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 262 }, "clickEvents": [ { - "__id__": 257 + "__id__": 263 } ], "_interactable": true, @@ -5999,7 +6150,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 230 + "__id__": 236 }, "_id": "" }, @@ -6021,11 +6172,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 259 + "__id__": 265 }, "_alignFlags": 16, "_target": null, @@ -6070,36 +6221,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 223 + "__id__": 229 }, "_children": [ { - "__id__": 262 - }, - { - "__id__": 270 + "__id__": 268 }, { "__id__": 276 + }, + { + "__id__": 282 } ], "_active": true, "_components": [ { - "__id__": 282 + "__id__": 288 }, { - "__id__": 284 + "__id__": 290 }, { - "__id__": 286 + "__id__": 292 }, { - "__id__": 289 + "__id__": 295 } ], "_prefab": { - "__id__": 291 + "__id__": 297 }, "_lpos": { "__type__": "cc.Vec3", @@ -6136,23 +6287,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 261 + "__id__": 267 }, "_children": [], "_active": true, "_components": [ { - "__id__": 263 + "__id__": 269 }, { - "__id__": 265 + "__id__": 271 }, { - "__id__": 267 + "__id__": 273 } ], "_prefab": { - "__id__": 269 + "__id__": 275 }, "_lpos": { "__type__": "cc.Vec3", @@ -6189,11 +6340,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 262 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 270 }, "_contentSize": { "__type__": "cc.Size", @@ -6217,11 +6368,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 262 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 266 + "__id__": 272 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6285,11 +6436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 262 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 274 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -6319,20 +6470,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 261 + "__id__": 267 }, "_children": [], "_active": true, "_components": [ { - "__id__": 271 + "__id__": 277 }, { - "__id__": 273 + "__id__": 279 } ], "_prefab": { - "__id__": 275 + "__id__": 281 }, "_lpos": { "__type__": "cc.Vec3", @@ -6369,11 +6520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 276 }, "_enabled": true, "__prefab": { - "__id__": 272 + "__id__": 278 }, "_contentSize": { "__type__": "cc.Size", @@ -6397,11 +6548,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 270 + "__id__": 276 }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 280 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6455,20 +6606,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 261 + "__id__": 267 }, "_children": [], "_active": true, "_components": [ { - "__id__": 277 + "__id__": 283 }, { - "__id__": 279 + "__id__": 285 } ], "_prefab": { - "__id__": 281 + "__id__": 287 }, "_lpos": { "__type__": "cc.Vec3", @@ -6505,11 +6656,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 276 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 278 + "__id__": 284 }, "_contentSize": { "__type__": "cc.Size", @@ -6533,11 +6684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 276 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 280 + "__id__": 286 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6614,11 +6765,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 261 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 289 }, "_contentSize": { "__type__": "cc.Size", @@ -6642,11 +6793,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 261 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 291 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6687,15 +6838,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 261 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 293 }, "clickEvents": [ { - "__id__": 288 + "__id__": 294 } ], "_interactable": true, @@ -6747,7 +6898,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 261 + "__id__": 267 }, "_id": "" }, @@ -6769,11 +6920,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 261 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 290 + "__id__": 296 }, "_alignFlags": 16, "_target": null, @@ -6818,11 +6969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 223 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 299 }, "_contentSize": { "__type__": "cc.Size", @@ -6846,11 +6997,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 223 + "__id__": 229 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 301 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6908,12 +7059,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 298 + "__id__": 304 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -6936,7 +7087,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 300 + "__id__": 306 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6981,7 +7132,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 302 + "__id__": 308 }, "_alignFlags": 45, "_target": null, @@ -7030,25 +7181,25 @@ }, "_children": [ { - "__id__": 305 + "__id__": 311 } ], "_active": true, "_components": [ { - "__id__": 329 + "__id__": 335 }, { - "__id__": 331 + "__id__": 337 } ], "_prefab": { - "__id__": 333 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", - "x": -559.374, - "y": 493.182, + "x": -1027.5320000000002, + "y": 493.18200000000013, "z": 0 }, "_lrot": { @@ -7080,24 +7231,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 304 + "__id__": 310 }, "_children": [ { - "__id__": 306 + "__id__": 312 } ], "_active": true, "_components": [ { - "__id__": 324 + "__id__": 330 }, { - "__id__": 326 + "__id__": 332 } ], "_prefab": { - "__id__": 328 + "__id__": 334 }, "_lpos": { "__type__": "cc.Vec3", @@ -7134,27 +7285,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 305 + "__id__": 311 }, "_children": [ { - "__id__": 307 + "__id__": 313 } ], "_active": true, "_components": [ { - "__id__": 317 + "__id__": 323 }, { - "__id__": 319 + "__id__": 325 }, { - "__id__": 321 + "__id__": 327 } ], "_prefab": { - "__id__": 323 + "__id__": 329 }, "_lpos": { "__type__": "cc.Vec3", @@ -7191,26 +7342,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 306 + "__id__": 312 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 308 - }, - { - "__id__": 310 - }, - { - "__id__": 312 - }, { "__id__": 314 + }, + { + "__id__": 316 + }, + { + "__id__": 318 + }, + { + "__id__": 320 } ], "_prefab": { - "__id__": 316 + "__id__": 322 }, "_lpos": { "__type__": "cc.Vec3", @@ -7247,11 +7398,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 315 }, "_contentSize": { "__type__": "cc.Size", @@ -7275,11 +7426,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 317 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7317,11 +7468,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 319 }, "_alignFlags": 12, "_target": null, @@ -7353,11 +7504,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 307 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 315 + "__id__": 321 }, "clickEvents": [], "_interactable": true, @@ -7422,11 +7573,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 306 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 324 }, "_contentSize": { "__type__": "cc.Size", @@ -7450,11 +7601,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 306 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 326 }, "_type": 3, "_inverted": false, @@ -7472,11 +7623,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 306 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 322 + "__id__": 328 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7530,11 +7681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 305 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 325 + "__id__": 331 }, "_contentSize": { "__type__": "cc.Size", @@ -7558,11 +7709,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 305 + "__id__": 311 }, "_enabled": true, "__prefab": { - "__id__": 327 + "__id__": 333 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7616,11 +7767,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 310 }, "_enabled": true, "__prefab": { - "__id__": 330 + "__id__": 336 }, "_contentSize": { "__type__": "cc.Size", @@ -7644,14 +7795,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 310 }, "_enabled": true, "__prefab": { - "__id__": 332 + "__id__": 338 }, "image": { - "__id__": 310 + "__id__": 316 }, "_id": "" }, @@ -7682,12 +7833,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 341 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -7710,7 +7861,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 337 + "__id__": 343 }, "_alignFlags": 45, "_target": null, @@ -7746,23 +7897,23 @@ }, "_enabled": true, "__prefab": { - "__id__": 339 + "__id__": 345 }, "m_rootNode": null, "editBox": { - "__id__": 187 + "__id__": 201 }, "girlName": { - "__id__": 30 + "__id__": 32 }, "girlImg": { - "__id__": 40 + "__id__": 41 }, "layout": { - "__id__": 94 + "__id__": 102 }, "popUpImage": { - "__id__": 331 + "__id__": 337 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index a0ea4299..3ddd1331 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -25,20 +25,20 @@ "_active": true, "_components": [ { - "__id__": 549 + "__id__": 563 }, { - "__id__": 551 + "__id__": 565 }, { - "__id__": 553 + "__id__": 567 }, { - "__id__": 555 + "__id__": 569 } ], "_prefab": { - "__id__": 557 + "__id__": 571 }, "_lpos": { "__type__": "cc.Vec3", @@ -85,23 +85,23 @@ "__id__": 30 }, { - "__id__": 102 + "__id__": 104 } ], "_active": true, "_components": [ { - "__id__": 542 + "__id__": 556 }, { - "__id__": 544 + "__id__": 558 }, { - "__id__": 546 + "__id__": 560 } ], "_prefab": { - "__id__": 548 + "__id__": 562 }, "_lpos": { "__type__": "cc.Vec3", @@ -166,7 +166,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1166, + "y": 611.9999999999999, "z": 0 }, "_lrot": { @@ -221,8 +221,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -533.5, - "y": -170, + "x": -355, + "y": -49, "z": 0 }, "_lrot": { @@ -234,8 +234,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 1.5, - "y": 1.5, + "x": 1, + "y": 1, "z": 1 }, "_mobility": 0, @@ -405,11 +405,11 @@ "__prefab": { "__id__": 13 }, - "_alignFlags": 12, + "_alignFlags": 9, "_target": null, - "_left": 50, + "_left": 20, "_right": 0, - "_top": 0, + "_top": 40, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -420,7 +420,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 64, "_alignMode": 2, "_lockFlags": 12, "_id": "" @@ -469,7 +469,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -126.62300000000005, + "y": -8.684999999999725, "z": 0 }, "_lrot": { @@ -603,12 +603,12 @@ "__prefab": { "__id__": 21 }, - "_alignFlags": 20, + "_alignFlags": 17, "_target": null, - "_left": 0, - "_right": 0, - "_top": 0, - "_bottom": 17.180999999999948, + "_left": 515.3716278076172, + "_right": 25.346145629882812, + "_top": 7.48899999999972, + "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -617,8 +617,8 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, + "_originalWidth": 209.2822265625, + "_originalHeight": 112.39200000000001, "_alignMode": 2, "_lockFlags": 0, "_id": "" @@ -654,8 +654,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 400 + "width": 750, + "height": 110 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -729,7 +729,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": -100, + "_top": 0, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -742,7 +742,7 @@ "_originalWidth": 100, "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 0, + "_lockFlags": 1, "_id": "" }, { @@ -775,28 +775,28 @@ "__id__": 31 }, { - "__id__": 57 + "__id__": 71 } ], "_active": true, "_components": [ - { - "__id__": 95 - }, { "__id__": 97 }, { "__id__": 99 + }, + { + "__id__": 101 } ], "_prefab": { - "__id__": 101 + "__id__": 103 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 547.05, + "y": 186.0999999999999, "z": 0 }, "_lrot": { @@ -824,7 +824,7 @@ }, { "__type__": "cc.Node", - "_name": "avatar", + "_name": "Stars", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -835,31 +835,40 @@ "__id__": 32 }, { - "__id__": 40 - } - ], - "_active": true, - "_components": [ + "__id__": 38 + }, { - "__id__": 48 + "__id__": 44 }, { "__id__": 50 }, { - "__id__": 52 + "__id__": 56 + } + ], + "_active": true, + "_components": [ + { + "__id__": 62 }, { - "__id__": 54 + "__id__": 64 + }, + { + "__id__": 66 + }, + { + "__id__": 68 } ], "_prefab": { - "__id__": 56 + "__id__": 70 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -28.593000000000018, + "y": 368.65800000000013, "z": 0 }, "_lrot": { @@ -887,7 +896,7 @@ }, { "__type__": "cc.Node", - "_name": "Avatar", + "_name": "star", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -901,17 +910,14 @@ }, { "__id__": 35 - }, - { - "__id__": 37 } ], "_prefab": { - "__id__": 39 + "__id__": 37 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, + "x": -126.19999999999999, "y": 0, "z": 0 }, @@ -950,548 +956,6 @@ "__prefab": { "__id__": 34 }, - "_contentSize": { - "__type__": "cc.Size", - "width": 448, - "height": 576 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "12V/UNWFRHXozItfLgjvke" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 36 - }, - "_alignFlags": 18, - "_target": null, - "_left": 0, - "_right": 20, - "_top": 0, - "_bottom": 20, - "_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": "89cUOjXspBQYJ1QxrJwK3G" - }, - { - "__type__": "cc.VideoPlayer", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_resourceType": 1, - "_remoteURL": "", - "_clip": null, - "_playOnAwake": true, - "_volume": 1, - "_mute": false, - "_playbackRate": 1, - "_loop": true, - "_fullScreenOnAwake": false, - "_stayOnBottom": false, - "_keepAspectRatio": true, - "videoPlayerEvent": [], - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7a051FJKlKmbBCPfvcrz+3" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a33747NDdExbU+VWXHzler", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Avatar-001", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 31 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 41 - }, - { - "__id__": 43 - }, - { - "__id__": 45 - } - ], - "_prefab": { - "__id__": 47 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 40 - }, - "_enabled": true, - "__prefab": { - "__id__": 42 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 448, - "height": 576 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "afkKuEhFBGS5W6fYiJjlUW" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 40 - }, - "_enabled": true, - "__prefab": { - "__id__": 44 - }, - "_alignFlags": 18, - "_target": null, - "_left": 0, - "_right": 20, - "_top": 0, - "_bottom": 20, - "_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": "80KktuL4NDvqSgPKM5LYWx" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 40 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "_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": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5bHUbvOktAzKG+fBalBxCx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "46i9u3CblFo5qa6UgIfD+B", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 49 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 600, - "height": 780.7139999999999 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acLJf22cRARrbj/tn8o9ht" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 51 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3fOpwUFVFEFaFDa+sWk8/k" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 53 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@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": "daUDIxFNpJb6sLFLklTKB+" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 31 - }, - "_enabled": true, - "__prefab": { - "__id__": 55 - }, - "_alignFlags": 21, - "_target": null, - "_left": 0, - "_right": 65, - "_top": 57.18600000000009, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 41.763999999999896, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 700, - "_alignMode": 2, - "_lockFlags": 37, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ad+w4tfexMmK7/9Qxgt8Py" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e9jki8PWRA5LXD8uRrUdHk", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Stars", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 30 - }, - "_children": [ - { - "__id__": 58 - }, - { - "__id__": 64 - }, - { - "__id__": 70 - }, - { - "__id__": 76 - }, - { - "__id__": 82 - } - ], - "_active": true, - "_components": [ - { - "__id__": 88 - }, - { - "__id__": 90 - }, - { - "__id__": 92 - } - ], - "_prefab": { - "__id__": 94 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 394.14700000000016, - "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": "star", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 57 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 59 - }, - { - "__id__": 61 - } - ], - "_prefab": { - "__id__": 63 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -126.19999999999999, - "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__": 58 - }, - "_enabled": true, - "__prefab": { - "__id__": 60 - }, "_contentSize": { "__type__": "cc.Size", "width": 56, @@ -1500,7 +964,7 @@ "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -1514,11 +978,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 58 + "__id__": 32 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 36 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1572,20 +1036,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 31 }, "_children": [], "_active": true, "_components": [ { - "__id__": 65 + "__id__": 39 }, { - "__id__": 67 + "__id__": 41 } ], "_prefab": { - "__id__": 69 + "__id__": 43 }, "_lpos": { "__type__": "cc.Vec3", @@ -1622,11 +1086,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 40 }, "_contentSize": { "__type__": "cc.Size", @@ -1636,7 +1100,7 @@ "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -1650,11 +1114,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 42 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1708,20 +1172,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 31 }, "_children": [], "_active": true, "_components": [ { - "__id__": 71 + "__id__": 45 }, { - "__id__": 73 + "__id__": 47 } ], "_prefab": { - "__id__": 75 + "__id__": 49 }, "_lpos": { "__type__": "cc.Vec3", @@ -1758,11 +1222,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 70 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 72 + "__id__": 46 }, "_contentSize": { "__type__": "cc.Size", @@ -1772,7 +1236,7 @@ "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -1786,11 +1250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 70 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 74 + "__id__": 48 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1844,20 +1308,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 31 }, "_children": [], "_active": true, "_components": [ { - "__id__": 77 + "__id__": 51 }, { - "__id__": 79 + "__id__": 53 } ], "_prefab": { - "__id__": 81 + "__id__": 55 }, "_lpos": { "__type__": "cc.Vec3", @@ -1894,11 +1358,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 76 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 52 }, "_contentSize": { "__type__": "cc.Size", @@ -1908,7 +1372,7 @@ "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -1922,11 +1386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 76 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 80 + "__id__": 54 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1980,20 +1444,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 57 + "__id__": 31 }, "_children": [], "_active": true, "_components": [ { - "__id__": 83 + "__id__": 57 }, { - "__id__": 85 + "__id__": 59 } ], "_prefab": { - "__id__": 87 + "__id__": 61 }, "_lpos": { "__type__": "cc.Vec3", @@ -2030,11 +1494,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 84 + "__id__": 58 }, "_contentSize": { "__type__": "cc.Size", @@ -2044,7 +1508,7 @@ "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -2058,11 +1522,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 82 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 86 + "__id__": 60 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2116,21 +1580,21 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 89 + "__id__": 63 }, "_contentSize": { "__type__": "cc.Size", "width": 308.4, - "height": 100 + "height": 63.2 }, "_anchorPoint": { "__type__": "cc.Vec2", "x": 0.5, - "y": 0.5 + "y": 1 }, "_id": "" }, @@ -2144,11 +1608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 65 }, "_alignFlags": 16, "_target": null, @@ -2180,11 +1644,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 31 }, "_enabled": true, "__prefab": { - "__id__": 93 + "__id__": 67 }, "_resizeMode": 1, "_layoutType": 1, @@ -2212,6 +1676,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "60CiXfblBBO45c17oeZQLh" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 69 + }, + "_alignFlags": 1, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 17.246000000000095, + "_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": "bbFMixSrFHGruWm28DOVmb" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2225,6 +1725,545 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "avatar", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 30 + }, + "_children": [ + { + "__id__": 72 + }, + { + "__id__": 80 + } + ], + "_active": true, + "_components": [ + { + "__id__": 88 + }, + { + "__id__": 90 + }, + { + "__id__": 92 + }, + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 96 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -32.49300000000005, + "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__": 71 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 73 + }, + { + "__id__": 75 + }, + { + "__id__": 77 + } + ], + "_prefab": { + "__id__": 79 + }, + "_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__": 72 + }, + "_enabled": true, + "__prefab": { + "__id__": 74 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 448, + "height": 576 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "12V/UNWFRHXozItfLgjvke" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 72 + }, + "_enabled": true, + "__prefab": { + "__id__": 76 + }, + "_alignFlags": 18, + "_target": null, + "_left": 0, + "_right": 20, + "_top": 0, + "_bottom": 20, + "_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": "89cUOjXspBQYJ1QxrJwK3G" + }, + { + "__type__": "cc.VideoPlayer", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 72 + }, + "_enabled": true, + "__prefab": { + "__id__": 78 + }, + "_resourceType": 1, + "_remoteURL": "", + "_clip": null, + "_playOnAwake": true, + "_volume": 1, + "_mute": false, + "_playbackRate": 1, + "_loop": true, + "_fullScreenOnAwake": false, + "_stayOnBottom": false, + "_keepAspectRatio": true, + "videoPlayerEvent": [], + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7a051FJKlKmbBCPfvcrz+3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a33747NDdExbU+VWXHzler", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Avatar-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 71 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 81 + }, + { + "__id__": 83 + }, + { + "__id__": 85 + } + ], + "_prefab": { + "__id__": 87 + }, + "_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__": 80 + }, + "_enabled": true, + "__prefab": { + "__id__": 82 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 448, + "height": 576 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "afkKuEhFBGS5W6fYiJjlUW" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 80 + }, + "_enabled": true, + "__prefab": { + "__id__": 84 + }, + "_alignFlags": 18, + "_target": null, + "_left": 0, + "_right": 20, + "_top": 0, + "_bottom": 20, + "_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": "80KktuL4NDvqSgPKM5LYWx" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 80 + }, + "_enabled": true, + "__prefab": { + "__id__": 86 + }, + "_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": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bHUbvOktAzKG+fBalBxCx" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "46i9u3CblFo5qa6UgIfD+B", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_enabled": true, + "__prefab": { + "__id__": 89 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 590.7, + "height": 676.8139999999999 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "acLJf22cRARrbj/tn8o9ht" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_enabled": true, + "__prefab": { + "__id__": 91 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3fOpwUFVFEFaFDa+sWk8/k" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_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__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@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": "daUDIxFNpJb6sLFLklTKB+" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 71 + }, + "_enabled": true, + "__prefab": { + "__id__": 95 + }, + "_alignFlags": 21, + "_target": null, + "_left": 0, + "_right": 65, + "_top": 64.98600000000009, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 41.763999999999896, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 700, + "_alignMode": 2, + "_lockFlags": 37, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ad+w4tfexMmK7/9Qxgt8Py" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e9jki8PWRA5LXD8uRrUdHk", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -2235,12 +2274,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 98 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 837.9 + "width": 750, + "height": 741.8 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2263,7 +2302,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 98 + "__id__": 100 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2308,13 +2347,13 @@ }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 102 }, "_alignFlags": 41, "_target": null, "_left": 0, "_right": 0, - "_top": 300, + "_top": 110, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -2357,31 +2396,28 @@ }, "_children": [ { - "__id__": 103 - }, - { - "__id__": 185 + "__id__": 105 } ], "_active": true, "_components": [ { - "__id__": 535 + "__id__": 549 }, { - "__id__": 537 + "__id__": 551 }, { - "__id__": 539 + "__id__": 553 } ], "_prefab": { - "__id__": 541 + "__id__": 555 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -566, + "y": -583.6000000000001, "z": 0 }, "_lrot": { @@ -2409,48 +2445,228 @@ }, { "__type__": "cc.Node", - "_name": "ChatPanel", + "_name": "ScrollView", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 102 + "__id__": 104 }, "_children": [ { - "__id__": 104 - }, - { - "__id__": 112 - }, - { - "__id__": 137 - }, - { - "__id__": 145 - }, - { - "__id__": 153 + "__id__": 106 } ], "_active": true, "_components": [ { - "__id__": 178 + "__id__": 540 }, { - "__id__": 180 + "__id__": 542 }, { - "__id__": 182 + "__id__": 544 + }, + { + "__id__": 546 } ], "_prefab": { - "__id__": 184 + "__id__": 548 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 490, + "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__": 105 + }, + "_children": [ + { + "__id__": 107 + } + ], + "_active": true, + "_components": [ + { + "__id__": 531 + }, + { + "__id__": 533 + }, + { + "__id__": 535 + }, + { + "__id__": 537 + } + ], + "_prefab": { + "__id__": 539 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 12.449999999999989, + "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__": 106 + }, + "_children": [ + { + "__id__": 108 + }, + { + "__id__": 202 + } + ], + "_active": true, + "_components": [ + { + "__id__": 526 + }, + { + "__id__": 528 + } + ], + "_prefab": { + "__id__": 530 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -381.45, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "ContactPanel", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 107 + }, + "_children": [ + { + "__id__": 109 + }, + { + "__id__": 117 + }, + { + "__id__": 146 + }, + { + "__id__": 154 + }, + { + "__id__": 162 + }, + { + "__id__": 170 + } + ], + "_active": true, + "_components": [ + { + "__id__": 195 + }, + { + "__id__": 197 + }, + { + "__id__": 199 + } + ], + "_prefab": { + "__id__": 201 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 655.5, "z": 0 }, "_lrot": { @@ -2482,23 +2698,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 103 + "__id__": 108 }, "_children": [], "_active": true, "_components": [ { - "__id__": 105 + "__id__": 110 }, { - "__id__": 107 + "__id__": 112 }, { - "__id__": 109 + "__id__": 114 } ], "_prefab": { - "__id__": 111 + "__id__": 116 }, "_lpos": { "__type__": "cc.Vec3", @@ -2535,16 +2751,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 106 + "__id__": 111 }, "_contentSize": { "__type__": "cc.Size", - "width": 1157, - "height": 400 + "width": 750, + "height": 207 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2563,11 +2779,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 113 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2608,11 +2824,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 109 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 115 }, "_alignFlags": 45, "_target": null, @@ -2657,38 +2873,38 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 103 + "__id__": 108 }, "_children": [ { - "__id__": 113 + "__id__": 118 }, { - "__id__": 121 + "__id__": 128 } ], "_active": true, "_components": [ { - "__id__": 127 + "__id__": 136 }, { - "__id__": 129 + "__id__": 138 }, { - "__id__": 131 + "__id__": 140 }, { - "__id__": 134 + "__id__": 143 } ], "_prefab": { - "__id__": 136 + "__id__": 145 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -108.923, + "y": -36.8659999999997, "z": 0 }, "_lrot": { @@ -2720,27 +2936,30 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 117 }, "_children": [], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 119 }, { - "__id__": 116 + "__id__": 121 }, { - "__id__": 118 + "__id__": 123 + }, + { + "__id__": 125 } ], "_prefab": { - "__id__": 120 + "__id__": 127 }, "_lpos": { "__type__": "cc.Vec3", - "x": 298.82500000000005, + "x": 268.94399999999996, "y": 0, "z": 0 }, @@ -2773,20 +2992,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 120 }, "_contentSize": { "__type__": "cc.Size", - "width": 451.3182067871094, - "height": 125.496 + "width": 277.5634765625, + "height": 104.45400000000001 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, + "x": 1, "y": 0.5 }, "_id": "" @@ -2801,11 +3020,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 117 + "__id__": 122 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2820,10 +3039,10 @@ "_string": "Send Msgs!", "_horizontalAlign": 2, "_verticalAlign": 1, - "_actualFontSize": 81.3, - "_fontSize": 81.3, + "_actualFontSize": 50, + "_fontSize": 50, "_fontFamily": "NotoSans-Regular", - "_lineHeight": 99.6, + "_lineHeight": 82.9, "_overflow": 0, "_enableWrapText": false, "_font": null, @@ -2869,11 +3088,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 118 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 124 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -2884,6 +3103,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "43z/1+Eh5B6qwco6wNwrcl" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 118 + }, + "_enabled": true, + "__prefab": { + "__id__": 126 + }, + "_alignFlags": 32, + "_target": null, + "_left": 0, + "_right": 26.05600000000004, + "_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": 32, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c82SCSxblGEJWQ/wTO1Ztr" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -2903,25 +3158,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 112 + "__id__": 117 }, "_children": [], "_active": true, "_components": [ { - "__id__": 122 + "__id__": 129 }, { - "__id__": 124 + "__id__": 131 + }, + { + "__id__": 133 } ], "_prefab": { - "__id__": 126 + "__id__": 135 }, "_lpos": { "__type__": "cc.Vec3", - "x": -465.29, - "y": -2.1649999999999636, + "x": -225.277, + "y": 0, "z": 0 }, "_lrot": { @@ -2953,16 +3211,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 128 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 130 }, "_contentSize": { "__type__": "cc.Size", - "width": 130, - "height": 130 + "width": 90, + "height": 90 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2981,11 +3239,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 121 + "__id__": 128 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 132 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3020,6 +3278,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "e2uVRLuh5E3buYzRsg3HOX" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 128 + }, + "_enabled": true, + "__prefab": { + "__id__": 134 + }, + "_alignFlags": 8, + "_target": null, + "_left": 24.723, + "_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": "0cPvB6MMhGq4iX45Z2NI1O" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -3039,16 +3333,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 117 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 137 }, "_contentSize": { "__type__": "cc.Size", - "width": 1127, - "height": 159.5 + "width": 590, + "height": 105.4 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3067,11 +3361,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 117 }, "_enabled": true, "__prefab": { - "__id__": 130 + "__id__": 139 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3112,15 +3406,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 117 }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 141 }, "clickEvents": [ { - "__id__": 133 + "__id__": 142 } ], "_interactable": true, @@ -3160,7 +3454,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 112 + "__id__": 117 }, "_id": "" }, @@ -3184,16 +3478,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 112 + "__id__": 117 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 144 }, - "_alignFlags": 16, + "_alignFlags": 40, "_target": null, - "_left": 380, - "_right": 380, + "_left": 80, + "_right": 80, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -3204,7 +3498,7 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 400, + "_originalWidth": 1127, "_originalHeight": 0, "_alignMode": 2, "_lockFlags": 0, @@ -3233,28 +3527,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 103 + "__id__": 108 }, "_children": [], "_active": true, "_components": [ { - "__id__": 138 + "__id__": 147 }, { - "__id__": 140 + "__id__": 149 }, { - "__id__": 142 + "__id__": 151 } ], "_prefab": { - "__id__": 144 + "__id__": 153 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 85.75, + "x": -354.314, + "y": 57.25100000000026, "z": 0 }, "_lrot": { @@ -3286,20 +3580,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 148 }, "_contentSize": { "__type__": "cc.Size", - "width": 987.4, - "height": 228.5 + "width": 490.620313, + "height": 65.5 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, + "x": 0, "y": 0.5 }, "_id": "" @@ -3314,11 +3608,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 141 + "__id__": 150 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3330,13 +3624,13 @@ "b": 255, "a": 255 }, - "_string": "Tag:18 years old\nyoung", - "_horizontalAlign": 2, + "_string": "Tag:18 years old|young", + "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 51, - "_fontSize": 50, + "_actualFontSize": 36, + "_fontSize": 35, "_fontFamily": "NotoSans-Regular", - "_lineHeight": 72.3, + "_lineHeight": 34.7, "_overflow": 2, "_enableWrapText": true, "_font": null, @@ -3382,17 +3676,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 137 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 143 + "__id__": 152 }, - "_alignFlags": 41, + "_alignFlags": 9, "_target": null, - "_left": 84.8, + "_left": 20.68599999999998, "_right": 84.8, - "_top": 0, + "_top": 13.49899999999974, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -3405,7 +3699,7 @@ "_originalWidth": 45.8203125, "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 41, + "_lockFlags": 32, "_id": "" }, { @@ -3427,27 +3721,225 @@ }, { "__type__": "cc.Node", - "_name": "bg-001", + "_name": "Age", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 103 + "__id__": 108 }, "_children": [], "_active": true, "_components": [ { - "__id__": 146 + "__id__": 155 }, { - "__id__": 148 + "__id__": 157 }, { - "__id__": 150 + "__id__": 159 } ], "_prefab": { - "__id__": 152 + "__id__": 161 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 350, + "y": 57.08900000000028, + "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__": 154 + }, + "_enabled": true, + "__prefab": { + "__id__": 156 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110.93017578125, + "height": 70.686 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "26hKhjWP9IHqNMK2vM4Av7" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 154 + }, + "_enabled": true, + "__prefab": { + "__id__": 158 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "Age:28", + "_horizontalAlign": 2, + "_verticalAlign": 1, + "_actualFontSize": 35, + "_fontSize": 35, + "_fontFamily": "Arial", + "_lineHeight": 56.1, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e39ABuyVVGooacRK7QBjoF" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 154 + }, + "_enabled": true, + "__prefab": { + "__id__": 160 + }, + "_alignFlags": 33, + "_target": null, + "_left": 556.5283203125, + "_right": 25, + "_top": 11.067999999999714, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 158.4716796875, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 32, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "64e4ZDr6xHra9W2RjlCqvf" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "80w1sG5aJFLIou0zHFUVx1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "bg-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 108 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 163 + }, + { + "__id__": 165 + }, + { + "__id__": 167 + } + ], + "_prefab": { + "__id__": 169 }, "_lpos": { "__type__": "cc.Vec3", @@ -3484,16 +3976,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 164 }, "_contentSize": { "__type__": "cc.Size", - "width": 1157, - "height": 400 + "width": 750, + "height": 207 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3512,11 +4004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 166 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3557,11 +4049,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 168 }, "_alignFlags": 45, "_target": null, @@ -3606,33 +4098,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 103 + "__id__": 108 }, "_children": [ { - "__id__": 154 + "__id__": 171 }, { - "__id__": 162 + "__id__": 179 } ], "_active": false, "_components": [ { - "__id__": 168 + "__id__": 185 }, { - "__id__": 170 + "__id__": 187 }, { - "__id__": 172 + "__id__": 189 }, { - "__id__": 175 + "__id__": 192 } ], "_prefab": { - "__id__": 177 + "__id__": 194 }, "_lpos": { "__type__": "cc.Vec3", @@ -3669,23 +4161,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 153 + "__id__": 170 }, "_children": [], "_active": true, "_components": [ { - "__id__": 155 + "__id__": 172 }, { - "__id__": 157 + "__id__": 174 }, { - "__id__": 159 + "__id__": 176 } ], "_prefab": { - "__id__": 161 + "__id__": 178 }, "_lpos": { "__type__": "cc.Vec3", @@ -3722,11 +4214,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 154 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 173 }, "_contentSize": { "__type__": "cc.Size", @@ -3750,11 +4242,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 154 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 158 + "__id__": 175 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3818,11 +4310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 154 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 177 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -3852,20 +4344,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 153 + "__id__": 170 }, "_children": [], "_active": true, "_components": [ { - "__id__": 163 + "__id__": 180 }, { - "__id__": 165 + "__id__": 182 } ], "_prefab": { - "__id__": 167 + "__id__": 184 }, "_lpos": { "__type__": "cc.Vec3", @@ -3902,11 +4394,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 162 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 181 }, "_contentSize": { "__type__": "cc.Size", @@ -3930,11 +4422,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 162 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 183 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3988,11 +4480,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 186 }, "_contentSize": { "__type__": "cc.Size", @@ -4016,11 +4508,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 188 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4061,15 +4553,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 190 }, "clickEvents": [ { - "__id__": 174 + "__id__": 191 } ], "_interactable": true, @@ -4121,7 +4613,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 153 + "__id__": 170 }, "_id": "" }, @@ -4143,11 +4635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 176 + "__id__": 193 }, "_alignFlags": 16, "_target": null, @@ -4192,16 +4684,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 196 }, "_contentSize": { "__type__": "cc.Size", - "width": 1157, - "height": 400 + "width": 750, + "height": 207 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4220,16 +4712,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 198 }, "_alignFlags": 41, "_target": null, - "_left": 5, - "_right": 5, + "_left": 0, + "_right": 0, "_top": 10, "_bottom": 0, "_horizontalCenter": 0, @@ -4256,11 +4748,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 108 }, "_enabled": false, "__prefab": { - "__id__": 183 + "__id__": 200 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4310,60 +4802,48 @@ }, { "__type__": "cc.Node", - "_name": "ChatPanel-001", + "_name": "DetailPanel", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 102 + "__id__": 107 }, "_children": [ { - "__id__": 186 + "__id__": 203 }, { - "__id__": 194 + "__id__": 211 }, { - "__id__": 202 + "__id__": 219 }, { - "__id__": 210 + "__id__": 431 }, { - "__id__": 220 - }, - { - "__id__": 228 - }, - { - "__id__": 282 - }, - { - "__id__": 494 - }, - { - "__id__": 502 + "__id__": 439 } ], "_active": true, "_components": [ { - "__id__": 528 + "__id__": 519 }, { - "__id__": 530 + "__id__": 521 }, { - "__id__": 532 + "__id__": 523 } ], "_prefab": { - "__id__": 534 + "__id__": 525 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -210, + "y": 269.80100000000033, "z": 0 }, "_lrot": { @@ -4395,23 +4875,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 185 + "__id__": 202 }, "_children": [], "_active": true, "_components": [ { - "__id__": 187 + "__id__": 204 }, { - "__id__": 189 + "__id__": 206 }, { - "__id__": 191 + "__id__": 208 } ], "_prefab": { - "__id__": 193 + "__id__": 210 }, "_lpos": { "__type__": "cc.Vec3", @@ -4448,16 +4928,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 205 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 980 + "width": 750, + "height": 538.1 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4476,11 +4956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 207 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4521,11 +5001,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 209 }, "_alignFlags": 45, "_target": null, @@ -4564,652 +5044,34 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "Name", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 185 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 195 - }, - { - "__id__": 197 - }, - { - "__id__": 199 - } - ], - "_prefab": { - "__id__": 201 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 341.76416015625, - "y": 443.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.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 194 - }, - "_enabled": true, - "__prefab": { - "__id__": 196 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 433.4716796875, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d3dkOO6AtDlroLrQ2+nTj3" - }, - { - "__type__": "cc.Label", - "_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 - }, - "_string": "Name:Namsaldjaks", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "49wWcnJUFJAYHzeLBOXlq/" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 194 - }, - "_enabled": true, - "__prefab": { - "__id__": 200 - }, - "_alignFlags": 33, - "_target": null, - "_left": 0, - "_right": 25, - "_top": 21, - "_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": 33, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "1ez68c0C5Mt5qE+HnoVDoV" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4erkHPuGhGOYQk9O+LxDNc", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Age", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 185 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 203 - }, - { - "__id__": 205 - }, - { - "__id__": 207 - } - ], - "_prefab": { - "__id__": 209 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 479.26416015625, - "y": 372.35699999999997, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 204 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 158.4716796875, - "height": 70.686 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "26hKhjWP9IHqNMK2vM4Av7" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 206 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "Age:28", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "Arial", - "_lineHeight": 56.1, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e39ABuyVVGooacRK7QBjoF" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 202 - }, - "_enabled": true, - "__prefab": { - "__id__": 208 - }, - "_alignFlags": 33, - "_target": null, - "_left": 0, - "_right": 25, - "_top": 82.3, - "_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": 33, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "64e4ZDr6xHra9W2RjlCqvf" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "80w1sG5aJFLIou0zHFUVx1", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Desc", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 185 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 211 - }, - { - "__id__": 213 - }, - { - "__id__": 215 - }, - { - "__id__": 217 - } - ], - "_prefab": { - "__id__": 219 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -83.25, - "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__": 210 - }, - "_enabled": true, - "__prefab": { - "__id__": 212 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1117, - "height": 813.5 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "57m08JXx1Es4dzN6fIncQ9" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 210 - }, - "_enabled": true, - "__prefab": { - "__id__": 214 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "Description:\n", - "_horizontalAlign": 0, - "_verticalAlign": 0, - "_actualFontSize": 50, - "_fontSize": 50, - "_fontFamily": "Arial", - "_lineHeight": 56.1, - "_overflow": 1, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "72L8AsofhIgLOVbD6XuTXU" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 210 - }, - "_enabled": true, - "__prefab": { - "__id__": 216 - }, - "_alignFlags": 45, - "_target": null, - "_left": 25, - "_right": 25, - "_top": 166.5, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 158.4716796875, - "_originalHeight": 70.686, - "_alignMode": 2, - "_lockFlags": 45, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "17ISc5rWBM64I+GKljUoZT" - }, - { - "__type__": "d7e4fOii5xNLqH2PF6de4pP", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 210 - }, - "_enabled": true, - "__prefab": { - "__id__": 218 - }, - "languageKey": "girldetailpanel.desc", - "defaultText": "", - "autoUpdate": true, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b5ps6+2hZMhpefFVMEHWWF" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4bAomo8+FNdbVHr+0/LK5x", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "DescContent", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 185 + "__id__": 202 }, "_children": [], "_active": true, "_components": [ { - "__id__": 221 + "__id__": 212 }, { - "__id__": 223 + "__id__": 214 }, { - "__id__": 225 + "__id__": 216 } ], "_prefab": { - "__id__": 227 + "__id__": 218 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 129.257, + "y": 171.28787876606015, "z": 0 }, "_lrot": { @@ -5241,16 +5103,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 220 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 213 }, "_contentSize": { "__type__": "cc.Size", - "width": 1117, - "height": 279.086 + "width": 700, + "height": 154.586 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5269,11 +5131,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 220 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 215 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5337,17 +5199,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 220 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 217 }, "_alignFlags": 41, "_target": null, "_left": 25, "_right": 25, - "_top": 221.2, + "_top": 20.469121233939845, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -5360,7 +5222,7 @@ "_originalWidth": 158.4716796875, "_originalHeight": 70.686, "_alignMode": 2, - "_lockFlags": 45, + "_lockFlags": 44, "_id": "" }, { @@ -5382,1303 +5244,49 @@ }, { "__type__": "cc.Node", - "_name": "ImageItem", + "_name": "ImageLayout", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 185 + "__id__": 202 }, "_children": [ { - "__id__": 229 - }, - { - "__id__": 267 - } - ], - "_active": true, - "_components": [ - { - "__id__": 275 - }, - { - "__id__": 277 - }, - { - "__id__": 279 - } - ], - "_prefab": { - "__id__": 281 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -407.20000000000005, - "y": -225, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Mask", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 228 - }, - "_children": [ - { - "__id__": 230 - }, - { - "__id__": 236 - }, - { - "__id__": 240 - }, - { - "__id__": 246 - } - ], - "_active": true, - "_components": [ - { - "__id__": 258 + "__id__": 220 }, { "__id__": 260 }, { - "__id__": 262 + "__id__": 300 }, { - "__id__": 264 - } - ], - "_prefab": { - "__id__": 266 - }, - "_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": "Img", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 229 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 231 + "__id__": 340 }, { - "__id__": 233 - } - ], - "_prefab": { - "__id__": 235 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 230 - }, - "_enabled": true, - "__prefab": { - "__id__": 232 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "34QgYhH2VForD334GE1if5" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 230 - }, - "_enabled": true, - "__prefab": { - "__id__": 234 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@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": "f6AZTSqV5HQo9IKkT5QadT" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "d6hCtvqAhBE5wrn/IdqY17", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "video", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 229 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 237 - } - ], - "_prefab": { - "__id__": 239 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 236 - }, - "_enabled": true, - "__prefab": { - "__id__": 238 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 360, - "height": 540 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "131kV/EX5AtYbWax0ay/cn" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6e5dk9CNxAN4Otb633Il2D", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "question", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 229 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 241 - }, - { - "__id__": 243 - } - ], - "_prefab": { - "__id__": 245 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 5.684341886080802e-14, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 0.2, - "y": 0.2, - "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__": 240 - }, - "_enabled": true, - "__prefab": { - "__id__": 242 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 305.419921875, - "height": 630 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0fsdHPw39HnYNeuWZmBNSu" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 240 - }, - "_enabled": true, - "__prefab": { - "__id__": 244 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "?", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 500, - "_fontSize": 500, - "_fontFamily": "Arial", - "_lineHeight": 500, - "_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": "05jW+ISRNE+bXT8Gn55lnw" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b8MbbUmPRF1KRLpXJ3lqnY", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lock", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 229 - }, - "_children": [ - { - "__id__": 247 - } - ], - "_active": true, - "_components": [ - { - "__id__": 253 - }, - { - "__id__": 255 - } - ], - "_prefab": { - "__id__": 257 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -76.32399999999996, - "y": 150.75800000000004, - "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": "Num", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 246 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 248 - }, - { - "__id__": 250 - } - ], - "_prefab": { - "__id__": 252 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 114.147, - "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__": 247 - }, - "_enabled": true, - "__prefab": { - "__id__": 249 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 133.02734375, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "f1CHMnDh9DboJ8Ww88mAfs" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 247 - }, - "_enabled": true, - "__prefab": { - "__id__": 251 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "9999", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 58, - "_fontSize": 58, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_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": "1ddCMaXZBLYJUvY1jxqHnA" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aXu6EQ5lDiJC942wHOnGm", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 246 - }, - "_enabled": true, - "__prefab": { - "__id__": 254 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 75, - "height": 73 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "04NfKvvD5E47YmTliMLN/t" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 246 - }, - "_enabled": true, - "__prefab": { - "__id__": 256 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "9a65d1d8-eb95-4884-90af-92c758ccac4b@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": "caN9RY+l5E5IA5e50w50+l" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "95j1DTj4FKX66sP8UN+pyu", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 229 - }, - "_enabled": true, - "__prefab": { - "__id__": 259 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "19MWmfC2lGZK1XArJxFgSS" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 229 - }, - "_enabled": true, - "__prefab": { - "__id__": 261 - }, - "_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": "81wJSQL+pIbbk0vR3BQuCm" - }, - { - "__type__": "cc.Mask", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 229 - }, - "_enabled": true, - "__prefab": { - "__id__": 263 - }, - "_type": 3, - "_inverted": false, - "_segments": 64, - "_alphaThreshold": 0.1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "21b56tn7VBLrpVXSCBOTYA" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 229 - }, - "_enabled": true, - "__prefab": { - "__id__": 265 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@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": "3777KDJhtCp5o8am3KGVM5" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "94wyi9PLxIf6K6JcT7HPE/", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Mask-001", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 228 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 268 - }, - { - "__id__": 270 - }, - { - "__id__": 272 - } - ], - "_prefab": { - "__id__": 274 - }, - "_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__": 267 - }, - "_enabled": true, - "__prefab": { - "__id__": 269 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0aH9b5Q7hG1Igq/3cAizqF" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 267 - }, - "_enabled": true, - "__prefab": { - "__id__": 271 - }, - "_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": "72Gr7nnBtJ5LrniJtFfc3B" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 267 - }, - "_enabled": true, - "__prefab": { - "__id__": 273 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@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": "0fzh0SyCZEUopguKA4uADb" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4fBgRdVjRImIpfGyFyApzj", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 228 - }, - "_enabled": true, - "__prefab": { - "__id__": 276 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 300, - "height": 400 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "24DhPD7rdPmZcznMD+QFfn" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 228 - }, - "_enabled": true, - "__prefab": { - "__id__": 278 - }, - "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": "83/ZOBJ4JOs7lku7qWM7hw" - }, - { - "__type__": "4ce70ScWKpFGalZ/RcxTbmk", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 228 - }, - "_enabled": true, - "__prefab": { - "__id__": 280 - }, - "img": { - "__id__": 233 - }, - "lock": { - "__id__": 246 - }, - "question": { - "__id__": 240 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "023qXmQxRHxYnagDtG5jnv" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c2n0xV60ZLR6LEhBTlkwjN", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "ImageLayout", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 185 - }, - "_children": [ - { - "__id__": 283 - }, - { - "__id__": 323 - }, - { - "__id__": 363 - }, - { - "__id__": 403 - }, - { - "__id__": 443 + "__id__": 380 } ], "_active": false, "_components": [ { - "__id__": 483 + "__id__": 420 }, { - "__id__": 485 + "__id__": 422 }, { - "__id__": 487 + "__id__": 424 }, { - "__id__": 489 + "__id__": 426 }, { - "__id__": 491 + "__id__": 428 } ], "_prefab": { - "__id__": 493 + "__id__": 430 }, "_lpos": { "__type__": "cc.Vec3", @@ -6715,27 +5323,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 282 + "__id__": 219 }, "_children": [ { - "__id__": 284 + "__id__": 221 } ], "_active": true, "_components": [ { - "__id__": 316 + "__id__": 253 }, { - "__id__": 318 + "__id__": 255 }, { - "__id__": 320 + "__id__": 257 } ], "_prefab": { - "__id__": 322 + "__id__": 259 }, "_lpos": { "__type__": "cc.Vec3", @@ -6772,39 +5380,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 283 + "__id__": 220 }, "_children": [ { - "__id__": 285 + "__id__": 222 }, { - "__id__": 291 + "__id__": 228 }, { - "__id__": 297 + "__id__": 234 }, { - "__id__": 301 + "__id__": 238 } ], "_active": true, "_components": [ { - "__id__": 307 + "__id__": 244 }, { - "__id__": 309 + "__id__": 246 }, { - "__id__": 311 + "__id__": 248 }, { - "__id__": 313 + "__id__": 250 } ], "_prefab": { - "__id__": 315 + "__id__": 252 }, "_lpos": { "__type__": "cc.Vec3", @@ -6841,20 +5449,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 284 + "__id__": 221 }, "_children": [], "_active": true, "_components": [ { - "__id__": 286 + "__id__": 223 }, { - "__id__": 288 + "__id__": 225 } ], "_prefab": { - "__id__": 290 + "__id__": 227 }, "_lpos": { "__type__": "cc.Vec3", @@ -6891,11 +5499,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 222 }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 224 }, "_contentSize": { "__type__": "cc.Size", @@ -6919,11 +5527,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 222 }, "_enabled": true, "__prefab": { - "__id__": 289 + "__id__": 226 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6977,20 +5585,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 284 + "__id__": 221 }, "_children": [], "_active": true, "_components": [ { - "__id__": 292 + "__id__": 229 }, { - "__id__": 294 + "__id__": 231 } ], "_prefab": { - "__id__": 296 + "__id__": 233 }, "_lpos": { "__type__": "cc.Vec3", @@ -7027,11 +5635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 291 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 230 }, "_contentSize": { "__type__": "cc.Size", @@ -7055,11 +5663,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 291 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 232 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7113,17 +5721,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 284 + "__id__": 221 }, "_children": [], "_active": false, "_components": [ { - "__id__": 298 + "__id__": 235 } ], "_prefab": { - "__id__": 300 + "__id__": 237 }, "_lpos": { "__type__": "cc.Vec3", @@ -7160,11 +5768,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 297 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 299 + "__id__": 236 }, "_contentSize": { "__type__": "cc.Size", @@ -7201,20 +5809,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 284 + "__id__": 221 }, "_children": [], "_active": true, "_components": [ { - "__id__": 302 + "__id__": 239 }, { - "__id__": 304 + "__id__": 241 } ], "_prefab": { - "__id__": 306 + "__id__": 243 }, "_lpos": { "__type__": "cc.Vec3", @@ -7251,11 +5859,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 303 + "__id__": 240 }, "_contentSize": { "__type__": "cc.Size", @@ -7279,11 +5887,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 242 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7360,11 +5968,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 284 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 308 + "__id__": 245 }, "_contentSize": { "__type__": "cc.Size", @@ -7388,11 +5996,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 284 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 247 }, "_alignFlags": 45, "_target": null, @@ -7424,11 +6032,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 284 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 312 + "__id__": 249 }, "_type": 3, "_inverted": false, @@ -7446,11 +6054,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 284 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 314 + "__id__": 251 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7504,11 +6112,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 283 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 317 + "__id__": 254 }, "_contentSize": { "__type__": "cc.Size", @@ -7532,11 +6140,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 283 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 319 + "__id__": 256 }, "clickEvents": [], "_interactable": true, @@ -7588,20 +6196,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 283 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 321 + "__id__": 258 }, "img": { - "__id__": 288 + "__id__": 225 }, "lock": { - "__id__": 291 + "__id__": 228 }, "question": { - "__id__": 301 + "__id__": 238 }, "_id": "" }, @@ -7628,27 +6236,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 282 + "__id__": 219 }, "_children": [ { - "__id__": 324 + "__id__": 261 } ], "_active": true, "_components": [ { - "__id__": 356 + "__id__": 293 }, { - "__id__": 358 + "__id__": 295 }, { - "__id__": 360 + "__id__": 297 } ], "_prefab": { - "__id__": 362 + "__id__": 299 }, "_lpos": { "__type__": "cc.Vec3", @@ -7685,39 +6293,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 323 + "__id__": 260 }, "_children": [ { - "__id__": 325 + "__id__": 262 }, { - "__id__": 331 + "__id__": 268 }, { - "__id__": 337 + "__id__": 274 }, { - "__id__": 341 + "__id__": 278 } ], "_active": true, "_components": [ { - "__id__": 347 + "__id__": 284 }, { - "__id__": 349 + "__id__": 286 }, { - "__id__": 351 + "__id__": 288 }, { - "__id__": 353 + "__id__": 290 } ], "_prefab": { - "__id__": 355 + "__id__": 292 }, "_lpos": { "__type__": "cc.Vec3", @@ -7754,20 +6362,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 324 + "__id__": 261 }, "_children": [], "_active": true, "_components": [ { - "__id__": 326 + "__id__": 263 }, { - "__id__": 328 + "__id__": 265 } ], "_prefab": { - "__id__": 330 + "__id__": 267 }, "_lpos": { "__type__": "cc.Vec3", @@ -7804,11 +6412,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 327 + "__id__": 264 }, "_contentSize": { "__type__": "cc.Size", @@ -7832,11 +6440,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 262 }, "_enabled": true, "__prefab": { - "__id__": 329 + "__id__": 266 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7890,20 +6498,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 324 + "__id__": 261 }, "_children": [], "_active": true, "_components": [ { - "__id__": 332 + "__id__": 269 }, { - "__id__": 334 + "__id__": 271 } ], "_prefab": { - "__id__": 336 + "__id__": 273 }, "_lpos": { "__type__": "cc.Vec3", @@ -7940,11 +6548,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 331 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 270 }, "_contentSize": { "__type__": "cc.Size", @@ -7968,11 +6576,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 331 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 272 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8026,17 +6634,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 324 + "__id__": 261 }, "_children": [], "_active": false, "_components": [ { - "__id__": 338 + "__id__": 275 } ], "_prefab": { - "__id__": 340 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -8073,11 +6681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 337 + "__id__": 274 }, "_enabled": true, "__prefab": { - "__id__": 339 + "__id__": 276 }, "_contentSize": { "__type__": "cc.Size", @@ -8114,20 +6722,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 324 + "__id__": 261 }, "_children": [], "_active": true, "_components": [ { - "__id__": 342 + "__id__": 279 }, { - "__id__": 344 + "__id__": 281 } ], "_prefab": { - "__id__": 346 + "__id__": 283 }, "_lpos": { "__type__": "cc.Vec3", @@ -8164,11 +6772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 341 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 343 + "__id__": 280 }, "_contentSize": { "__type__": "cc.Size", @@ -8192,11 +6800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 341 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 282 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8273,11 +6881,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 348 + "__id__": 285 }, "_contentSize": { "__type__": "cc.Size", @@ -8301,11 +6909,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 350 + "__id__": 287 }, "_alignFlags": 45, "_target": null, @@ -8337,11 +6945,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 289 }, "_type": 3, "_inverted": false, @@ -8359,11 +6967,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 324 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 291 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8417,11 +7025,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 323 + "__id__": 260 }, "_enabled": true, "__prefab": { - "__id__": 357 + "__id__": 294 }, "_contentSize": { "__type__": "cc.Size", @@ -8445,11 +7053,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 323 + "__id__": 260 }, "_enabled": true, "__prefab": { - "__id__": 359 + "__id__": 296 }, "clickEvents": [], "_interactable": true, @@ -8501,20 +7109,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 323 + "__id__": 260 }, "_enabled": true, "__prefab": { - "__id__": 361 + "__id__": 298 }, "img": { - "__id__": 328 + "__id__": 265 }, "lock": { - "__id__": 331 + "__id__": 268 }, "question": { - "__id__": 341 + "__id__": 278 }, "_id": "" }, @@ -8541,27 +7149,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 282 + "__id__": 219 }, "_children": [ { - "__id__": 364 + "__id__": 301 } ], "_active": true, "_components": [ { - "__id__": 396 + "__id__": 333 }, { - "__id__": 398 + "__id__": 335 }, { - "__id__": 400 + "__id__": 337 } ], "_prefab": { - "__id__": 402 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", @@ -8598,39 +7206,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 363 + "__id__": 300 }, "_children": [ { - "__id__": 365 + "__id__": 302 }, { - "__id__": 371 + "__id__": 308 }, { - "__id__": 377 + "__id__": 314 }, { - "__id__": 381 + "__id__": 318 } ], "_active": true, "_components": [ { - "__id__": 387 + "__id__": 324 }, { - "__id__": 389 + "__id__": 326 }, { - "__id__": 391 + "__id__": 328 }, { - "__id__": 393 + "__id__": 330 } ], "_prefab": { - "__id__": 395 + "__id__": 332 }, "_lpos": { "__type__": "cc.Vec3", @@ -8667,20 +7275,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 364 + "__id__": 301 }, "_children": [], "_active": true, "_components": [ { - "__id__": 366 + "__id__": 303 }, { - "__id__": 368 + "__id__": 305 } ], "_prefab": { - "__id__": 370 + "__id__": 307 }, "_lpos": { "__type__": "cc.Vec3", @@ -8717,11 +7325,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 365 + "__id__": 302 }, "_enabled": true, "__prefab": { - "__id__": 367 + "__id__": 304 }, "_contentSize": { "__type__": "cc.Size", @@ -8745,11 +7353,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 365 + "__id__": 302 }, "_enabled": true, "__prefab": { - "__id__": 369 + "__id__": 306 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8803,20 +7411,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 364 + "__id__": 301 }, "_children": [], "_active": true, "_components": [ { - "__id__": 372 + "__id__": 309 }, { - "__id__": 374 + "__id__": 311 } ], "_prefab": { - "__id__": 376 + "__id__": 313 }, "_lpos": { "__type__": "cc.Vec3", @@ -8853,11 +7461,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 310 }, "_contentSize": { "__type__": "cc.Size", @@ -8881,11 +7489,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 308 }, "_enabled": true, "__prefab": { - "__id__": 375 + "__id__": 312 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8939,17 +7547,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 364 + "__id__": 301 }, "_children": [], "_active": false, "_components": [ { - "__id__": 378 + "__id__": 315 } ], "_prefab": { - "__id__": 380 + "__id__": 317 }, "_lpos": { "__type__": "cc.Vec3", @@ -8986,11 +7594,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 377 + "__id__": 314 }, "_enabled": true, "__prefab": { - "__id__": 379 + "__id__": 316 }, "_contentSize": { "__type__": "cc.Size", @@ -9027,20 +7635,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 364 + "__id__": 301 }, "_children": [], "_active": true, "_components": [ { - "__id__": 382 + "__id__": 319 }, { - "__id__": 384 + "__id__": 321 } ], "_prefab": { - "__id__": 386 + "__id__": 323 }, "_lpos": { "__type__": "cc.Vec3", @@ -9077,11 +7685,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 381 + "__id__": 318 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 320 }, "_contentSize": { "__type__": "cc.Size", @@ -9105,11 +7713,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 381 + "__id__": 318 }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 322 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9186,11 +7794,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 364 + "__id__": 301 }, "_enabled": true, "__prefab": { - "__id__": 388 + "__id__": 325 }, "_contentSize": { "__type__": "cc.Size", @@ -9214,11 +7822,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 364 + "__id__": 301 }, "_enabled": true, "__prefab": { - "__id__": 390 + "__id__": 327 }, "_alignFlags": 45, "_target": null, @@ -9250,11 +7858,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 364 + "__id__": 301 }, "_enabled": true, "__prefab": { - "__id__": 392 + "__id__": 329 }, "_type": 3, "_inverted": false, @@ -9272,11 +7880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 364 + "__id__": 301 }, "_enabled": true, "__prefab": { - "__id__": 394 + "__id__": 331 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9330,11 +7938,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 363 + "__id__": 300 }, "_enabled": true, "__prefab": { - "__id__": 397 + "__id__": 334 }, "_contentSize": { "__type__": "cc.Size", @@ -9358,11 +7966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 363 + "__id__": 300 }, "_enabled": true, "__prefab": { - "__id__": 399 + "__id__": 336 }, "clickEvents": [], "_interactable": true, @@ -9414,20 +8022,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 363 + "__id__": 300 }, "_enabled": true, "__prefab": { - "__id__": 401 + "__id__": 338 }, "img": { - "__id__": 368 + "__id__": 305 }, "lock": { - "__id__": 371 + "__id__": 308 }, "question": { - "__id__": 381 + "__id__": 318 }, "_id": "" }, @@ -9454,27 +8062,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 282 + "__id__": 219 }, "_children": [ { - "__id__": 404 + "__id__": 341 } ], "_active": true, "_components": [ { - "__id__": 436 + "__id__": 373 }, { - "__id__": 438 + "__id__": 375 }, { - "__id__": 440 + "__id__": 377 } ], "_prefab": { - "__id__": 442 + "__id__": 379 }, "_lpos": { "__type__": "cc.Vec3", @@ -9511,39 +8119,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 403 + "__id__": 340 }, "_children": [ { - "__id__": 405 + "__id__": 342 }, { - "__id__": 411 + "__id__": 348 }, { - "__id__": 417 + "__id__": 354 }, { - "__id__": 421 + "__id__": 358 } ], "_active": true, "_components": [ { - "__id__": 427 + "__id__": 364 }, { - "__id__": 429 + "__id__": 366 }, { - "__id__": 431 + "__id__": 368 }, { - "__id__": 433 + "__id__": 370 } ], "_prefab": { - "__id__": 435 + "__id__": 372 }, "_lpos": { "__type__": "cc.Vec3", @@ -9580,20 +8188,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 404 + "__id__": 341 }, "_children": [], "_active": true, "_components": [ { - "__id__": 406 + "__id__": 343 }, { - "__id__": 408 + "__id__": 345 } ], "_prefab": { - "__id__": 410 + "__id__": 347 }, "_lpos": { "__type__": "cc.Vec3", @@ -9630,11 +8238,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 405 + "__id__": 342 }, "_enabled": true, "__prefab": { - "__id__": 407 + "__id__": 344 }, "_contentSize": { "__type__": "cc.Size", @@ -9658,11 +8266,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 405 + "__id__": 342 }, "_enabled": true, "__prefab": { - "__id__": 409 + "__id__": 346 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9716,20 +8324,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 404 + "__id__": 341 }, "_children": [], "_active": true, "_components": [ { - "__id__": 412 + "__id__": 349 }, { - "__id__": 414 + "__id__": 351 } ], "_prefab": { - "__id__": 416 + "__id__": 353 }, "_lpos": { "__type__": "cc.Vec3", @@ -9766,11 +8374,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 348 }, "_enabled": true, "__prefab": { - "__id__": 413 + "__id__": 350 }, "_contentSize": { "__type__": "cc.Size", @@ -9794,11 +8402,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 348 }, "_enabled": true, "__prefab": { - "__id__": 415 + "__id__": 352 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9852,17 +8460,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 404 + "__id__": 341 }, "_children": [], "_active": false, "_components": [ { - "__id__": 418 + "__id__": 355 } ], "_prefab": { - "__id__": 420 + "__id__": 357 }, "_lpos": { "__type__": "cc.Vec3", @@ -9899,11 +8507,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 417 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 419 + "__id__": 356 }, "_contentSize": { "__type__": "cc.Size", @@ -9940,20 +8548,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 404 + "__id__": 341 }, "_children": [], "_active": true, "_components": [ { - "__id__": 422 + "__id__": 359 }, { - "__id__": 424 + "__id__": 361 } ], "_prefab": { - "__id__": 426 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -9990,11 +8598,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 421 + "__id__": 358 }, "_enabled": true, "__prefab": { - "__id__": 423 + "__id__": 360 }, "_contentSize": { "__type__": "cc.Size", @@ -10018,11 +8626,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 421 + "__id__": 358 }, "_enabled": true, "__prefab": { - "__id__": 425 + "__id__": 362 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10099,11 +8707,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 404 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 428 + "__id__": 365 }, "_contentSize": { "__type__": "cc.Size", @@ -10127,11 +8735,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 404 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 430 + "__id__": 367 }, "_alignFlags": 45, "_target": null, @@ -10163,11 +8771,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 404 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 432 + "__id__": 369 }, "_type": 3, "_inverted": false, @@ -10185,11 +8793,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 404 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 434 + "__id__": 371 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10243,11 +8851,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 403 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 437 + "__id__": 374 }, "_contentSize": { "__type__": "cc.Size", @@ -10271,11 +8879,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 403 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 439 + "__id__": 376 }, "clickEvents": [], "_interactable": true, @@ -10327,20 +8935,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 403 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 441 + "__id__": 378 }, "img": { - "__id__": 408 + "__id__": 345 }, "lock": { - "__id__": 411 + "__id__": 348 }, "question": { - "__id__": 421 + "__id__": 358 }, "_id": "" }, @@ -10367,27 +8975,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 282 + "__id__": 219 }, "_children": [ { - "__id__": 444 + "__id__": 381 } ], "_active": true, "_components": [ { - "__id__": 476 + "__id__": 413 }, { - "__id__": 478 + "__id__": 415 }, { - "__id__": 480 + "__id__": 417 } ], "_prefab": { - "__id__": 482 + "__id__": 419 }, "_lpos": { "__type__": "cc.Vec3", @@ -10424,39 +9032,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 443 + "__id__": 380 }, "_children": [ { - "__id__": 445 + "__id__": 382 }, { - "__id__": 451 + "__id__": 388 }, { - "__id__": 457 + "__id__": 394 }, { - "__id__": 461 + "__id__": 398 } ], "_active": true, "_components": [ { - "__id__": 467 + "__id__": 404 }, { - "__id__": 469 + "__id__": 406 }, { - "__id__": 471 + "__id__": 408 }, { - "__id__": 473 + "__id__": 410 } ], "_prefab": { - "__id__": 475 + "__id__": 412 }, "_lpos": { "__type__": "cc.Vec3", @@ -10493,20 +9101,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 444 + "__id__": 381 }, "_children": [], "_active": true, "_components": [ { - "__id__": 446 + "__id__": 383 }, { - "__id__": 448 + "__id__": 385 } ], "_prefab": { - "__id__": 450 + "__id__": 387 }, "_lpos": { "__type__": "cc.Vec3", @@ -10543,11 +9151,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 445 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 447 + "__id__": 384 }, "_contentSize": { "__type__": "cc.Size", @@ -10571,11 +9179,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 445 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 449 + "__id__": 386 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10629,20 +9237,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 444 + "__id__": 381 }, "_children": [], "_active": true, "_components": [ { - "__id__": 452 + "__id__": 389 }, { - "__id__": 454 + "__id__": 391 } ], "_prefab": { - "__id__": 456 + "__id__": 393 }, "_lpos": { "__type__": "cc.Vec3", @@ -10679,11 +9287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 451 + "__id__": 388 }, "_enabled": true, "__prefab": { - "__id__": 453 + "__id__": 390 }, "_contentSize": { "__type__": "cc.Size", @@ -10707,11 +9315,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 451 + "__id__": 388 }, "_enabled": true, "__prefab": { - "__id__": 455 + "__id__": 392 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10765,17 +9373,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 444 + "__id__": 381 }, "_children": [], "_active": false, "_components": [ { - "__id__": 458 + "__id__": 395 } ], "_prefab": { - "__id__": 460 + "__id__": 397 }, "_lpos": { "__type__": "cc.Vec3", @@ -10812,11 +9420,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 457 + "__id__": 394 }, "_enabled": true, "__prefab": { - "__id__": 459 + "__id__": 396 }, "_contentSize": { "__type__": "cc.Size", @@ -10853,20 +9461,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 444 + "__id__": 381 }, "_children": [], "_active": true, "_components": [ { - "__id__": 462 + "__id__": 399 }, { - "__id__": 464 + "__id__": 401 } ], "_prefab": { - "__id__": 466 + "__id__": 403 }, "_lpos": { "__type__": "cc.Vec3", @@ -10903,11 +9511,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 398 }, "_enabled": true, "__prefab": { - "__id__": 463 + "__id__": 400 }, "_contentSize": { "__type__": "cc.Size", @@ -10931,11 +9539,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 398 }, "_enabled": true, "__prefab": { - "__id__": 465 + "__id__": 402 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11012,11 +9620,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 444 + "__id__": 381 }, "_enabled": true, "__prefab": { - "__id__": 468 + "__id__": 405 }, "_contentSize": { "__type__": "cc.Size", @@ -11040,11 +9648,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 444 + "__id__": 381 }, "_enabled": true, "__prefab": { - "__id__": 470 + "__id__": 407 }, "_alignFlags": 45, "_target": null, @@ -11076,11 +9684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 444 + "__id__": 381 }, "_enabled": true, "__prefab": { - "__id__": 472 + "__id__": 409 }, "_type": 3, "_inverted": false, @@ -11098,11 +9706,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 444 + "__id__": 381 }, "_enabled": true, "__prefab": { - "__id__": 474 + "__id__": 411 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11156,11 +9764,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 443 + "__id__": 380 }, "_enabled": true, "__prefab": { - "__id__": 477 + "__id__": 414 }, "_contentSize": { "__type__": "cc.Size", @@ -11184,11 +9792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 443 + "__id__": 380 }, "_enabled": true, "__prefab": { - "__id__": 479 + "__id__": 416 }, "clickEvents": [], "_interactable": true, @@ -11240,20 +9848,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 443 + "__id__": 380 }, "_enabled": true, "__prefab": { - "__id__": 481 + "__id__": 418 }, "img": { - "__id__": 448 + "__id__": 385 }, "lock": { - "__id__": 451 + "__id__": 388 }, "question": { - "__id__": 461 + "__id__": 398 }, "_id": "" }, @@ -11280,11 +9888,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 484 + "__id__": 421 }, "_contentSize": { "__type__": "cc.Size", @@ -11308,11 +9916,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 486 + "__id__": 423 }, "_alignFlags": 45, "_target": null, @@ -11344,11 +9952,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 488 + "__id__": 425 }, "_resizeMode": 0, "_layoutType": 1, @@ -11382,11 +9990,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 490 + "__id__": 427 }, "_type": 0, "_inverted": false, @@ -11404,11 +10012,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 219 }, "_enabled": true, "__prefab": { - "__id__": 492 + "__id__": 429 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11463,23 +10071,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 185 + "__id__": 202 }, "_children": [], "_active": true, "_components": [ { - "__id__": 495 + "__id__": 432 }, { - "__id__": 497 + "__id__": 434 }, { - "__id__": 499 + "__id__": 436 } ], "_prefab": { - "__id__": 501 + "__id__": 438 }, "_lpos": { "__type__": "cc.Vec3", @@ -11516,16 +10124,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 496 + "__id__": 433 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 980 + "width": 750, + "height": 538.1 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -11544,11 +10152,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 498 + "__id__": 435 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11589,11 +10197,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 494 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 500 + "__id__": 437 }, "_alignFlags": 45, "_target": null, @@ -11638,35 +10246,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 185 + "__id__": 202 }, "_children": [ { - "__id__": 503 + "__id__": 440 } ], "_active": true, "_components": [ { - "__id__": 519 + "__id__": 510 }, { - "__id__": 521 + "__id__": 512 }, { - "__id__": 523 + "__id__": 514 }, { - "__id__": 525 + "__id__": 516 } ], "_prefab": { - "__id__": 527 + "__id__": 518 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -253, + "y": -80.30000000000013, "z": 0 }, "_lrot": { @@ -11698,35 +10306,38 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 502 + "__id__": 439 }, "_children": [ { - "__id__": 504 + "__id__": 441 + }, + { + "__id__": 495 } ], "_active": true, "_components": [ { - "__id__": 510 + "__id__": 501 }, { - "__id__": 512 + "__id__": 503 }, { - "__id__": 514 + "__id__": 505 }, { - "__id__": 516 + "__id__": 507 } ], "_prefab": { - "__id__": 518 + "__id__": 509 }, "_lpos": { "__type__": "cc.Vec3", - "x": -583.5, - "y": 237, + "x": -367.7, + "y": 188.75, "z": 0 }, "_lrot": { @@ -11754,24 +10365,982 @@ }, { "__type__": "cc.Node", - "_name": "content", + "_name": "ImageItem", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 503 + "__id__": 440 + }, + "_children": [ + { + "__id__": 442 + }, + { + "__id__": 480 + } + ], + "_active": true, + "_components": [ + { + "__id__": 488 + }, + { + "__id__": 490 + }, + { + "__id__": 492 + } + ], + "_prefab": { + "__id__": 494 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 149.195, + "y": -185.76749999999976, + "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": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 441 + }, + "_children": [ + { + "__id__": 443 + }, + { + "__id__": 449 + }, + { + "__id__": 453 + }, + { + "__id__": 459 + } + ], + "_active": true, + "_components": [ + { + "__id__": 471 + }, + { + "__id__": 473 + }, + { + "__id__": 475 + }, + { + "__id__": 477 + } + ], + "_prefab": { + "__id__": 479 + }, + "_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": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 442 }, "_children": [], "_active": true, "_components": [ { - "__id__": 505 + "__id__": 444 }, { - "__id__": 507 + "__id__": 446 } ], "_prefab": { - "__id__": 509 + "__id__": 448 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 443 + }, + "_enabled": true, + "__prefab": { + "__id__": 445 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "34QgYhH2VForD334GE1if5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 443 + }, + "_enabled": true, + "__prefab": { + "__id__": 447 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@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": "f6AZTSqV5HQo9IKkT5QadT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d6hCtvqAhBE5wrn/IdqY17", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 442 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 450 + } + ], + "_prefab": { + "__id__": 452 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 449 + }, + "_enabled": true, + "__prefab": { + "__id__": 451 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "131kV/EX5AtYbWax0ay/cn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6e5dk9CNxAN4Otb633Il2D", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 442 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 454 + }, + { + "__id__": 456 + } + ], + "_prefab": { + "__id__": 458 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "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__": 453 + }, + "_enabled": true, + "__prefab": { + "__id__": 455 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 305.419921875, + "height": 630 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fsdHPw39HnYNeuWZmBNSu" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 453 + }, + "_enabled": true, + "__prefab": { + "__id__": 457 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "?", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 500, + "_fontSize": 500, + "_fontFamily": "Arial", + "_lineHeight": 500, + "_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": "05jW+ISRNE+bXT8Gn55lnw" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b8MbbUmPRF1KRLpXJ3lqnY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 442 + }, + "_children": [ + { + "__id__": 460 + } + ], + "_active": true, + "_components": [ + { + "__id__": 466 + }, + { + "__id__": 468 + } + ], + "_prefab": { + "__id__": 470 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -76.32399999999996, + "y": 150.75800000000004, + "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": "Num", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 459 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 461 + }, + { + "__id__": 463 + } + ], + "_prefab": { + "__id__": 465 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 114.147, + "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__": 460 + }, + "_enabled": true, + "__prefab": { + "__id__": 462 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 133.02734375, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f1CHMnDh9DboJ8Ww88mAfs" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 460 + }, + "_enabled": true, + "__prefab": { + "__id__": 464 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "9999", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 58, + "_fontSize": 58, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_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": "1ddCMaXZBLYJUvY1jxqHnA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4aXu6EQ5lDiJC942wHOnGm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 459 + }, + "_enabled": true, + "__prefab": { + "__id__": 467 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 75, + "height": 73 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "04NfKvvD5E47YmTliMLN/t" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 459 + }, + "_enabled": true, + "__prefab": { + "__id__": 469 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "9a65d1d8-eb95-4884-90af-92c758ccac4b@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": "caN9RY+l5E5IA5e50w50+l" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "95j1DTj4FKX66sP8UN+pyu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 472 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 333 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "19MWmfC2lGZK1XArJxFgSS" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 474 + }, + "_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": "81wJSQL+pIbbk0vR3BQuCm" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 476 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "21b56tn7VBLrpVXSCBOTYA" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 478 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@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": "3777KDJhtCp5o8am3KGVM5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "94wyi9PLxIf6K6JcT7HPE/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Mask-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 441 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 481 + }, + { + "__id__": 483 + }, + { + "__id__": 485 + } + ], + "_prefab": { + "__id__": 487 }, "_lpos": { "__type__": "cc.Vec3", @@ -11808,11 +11377,309 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 480 }, "_enabled": true, "__prefab": { - "__id__": 506 + "__id__": 482 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 333 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0aH9b5Q7hG1Igq/3cAizqF" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 480 + }, + "_enabled": true, + "__prefab": { + "__id__": 484 + }, + "_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": "72Gr7nnBtJ5LrniJtFfc3B" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 480 + }, + "_enabled": true, + "__prefab": { + "__id__": 486 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@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": "0fzh0SyCZEUopguKA4uADb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fBgRdVjRImIpfGyFyApzj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 441 + }, + "_enabled": true, + "__prefab": { + "__id__": 489 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 333 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "24DhPD7rdPmZcznMD+QFfn" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 441 + }, + "_enabled": true, + "__prefab": { + "__id__": 491 + }, + "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": { + "__id__": 441 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83/ZOBJ4JOs7lku7qWM7hw" + }, + { + "__type__": "4ce70ScWKpFGalZ/RcxTbmk", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 441 + }, + "_enabled": true, + "__prefab": { + "__id__": 493 + }, + "img": { + "__id__": 446 + }, + "lock": { + "__id__": 459 + }, + "question": { + "__id__": 453 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "023qXmQxRHxYnagDtG5jnv" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2n0xV60ZLR6LEhBTlkwjN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 440 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 496 + }, + { + "__id__": 498 + } + ], + "_prefab": { + "__id__": 500 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -93.2, + "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__": 495 + }, + "_enabled": true, + "__prefab": { + "__id__": 497 }, "_contentSize": { "__type__": "cc.Size", @@ -11836,11 +11703,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 495 }, "_enabled": true, "__prefab": { - "__id__": 508 + "__id__": 499 }, "_resizeMode": 1, "_layoutType": 1, @@ -11887,16 +11754,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 511 + "__id__": 502 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 474 + "width": 734.9, + "height": 377.5 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -11915,11 +11782,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 513 + "__id__": 504 }, "_type": 0, "_inverted": false, @@ -11937,11 +11804,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 515 + "__id__": 506 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11983,16 +11850,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 517 + "__id__": 508 }, "_alignFlags": 45, "_target": null, - "_left": 0, - "_right": 0, + "_left": 7.3, + "_right": 7.8, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -12022,8 +11889,6 @@ "__id__": 0 }, "fileId": "2410806z5LVJSESQ5ZJWgh", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -12032,16 +11897,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 502 + "__id__": 439 }, "_enabled": true, "__prefab": { - "__id__": 520 + "__id__": 511 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 474 + "width": 750, + "height": 377.5 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12060,11 +11925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 502 + "__id__": 439 }, "_enabled": false, "__prefab": { - "__id__": 522 + "__id__": 513 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12105,11 +11970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 502 + "__id__": 439 }, "_enabled": true, "__prefab": { - "__id__": 524 + "__id__": 515 }, "bounceDuration": 0.23, "brake": 0.75, @@ -12120,7 +11985,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 504 + "__id__": 495 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -12136,18 +12001,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 502 + "__id__": 439 }, "_enabled": true, "__prefab": { - "__id__": 526 + "__id__": 517 }, "_alignFlags": 44, "_target": null, "_left": 0, "_right": 0, - "_top": 0, - "_bottom": 0, + "_top": 177.88624246787975, + "_bottom": -9e-14, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -12157,7 +12022,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 240, - "_originalHeight": 0, + "_originalHeight": 474, "_alignMode": 2, "_lockFlags": 4, "_id": "" @@ -12185,16 +12050,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 185 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 529 + "__id__": 520 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 980 + "width": 750, + "height": 538.1 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12213,18 +12078,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 185 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 531 + "__id__": 522 }, - "_alignFlags": 45, + "_alignFlags": 41, "_target": null, "_left": 0, "_right": 0, - "_top": 420, - "_bottom": 0, + "_top": 230.14899999999972, + "_bottom": -58.83549999999997, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -12249,11 +12114,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 185 + "__id__": 202 }, "_enabled": false, "__prefab": { - "__id__": 533 + "__id__": 524 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12307,16 +12172,391 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 527 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 769 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d1mbIyIUtGMYdp3Nlzj++1" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 107 + }, + "_enabled": true, + "__prefab": { + "__id__": 529 + }, + "_alignFlags": 41, + "_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": 220, + "_originalHeight": 400, + "_alignMode": 2, + "_lockFlags": 5, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e1K0mBNstCZZb0hRTxyqFW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a8jgwzPNtJVpWPRJw66C37", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 532 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 775.1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2ffKhtdJpGOK8FgFBLOfVz" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 534 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d9X89nAR9MYYaYPcu0IfG3" + }, + { + "__type__": "cc.Graphics", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 }, "_enabled": true, "__prefab": { "__id__": 536 }, + "_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": "1c5p/ZS3tDSov1mt0wIuTE" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 106 + }, + "_enabled": true, + "__prefab": { + "__id__": 538 + }, + "_alignFlags": 41, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 275, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 250, + "_alignMode": 2, + "_lockFlags": 1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1fx+UJvl9A7pAba/eh6Up3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "99rWX6NddBzLbl2Se9MT4X", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 105 + }, + "_enabled": true, + "__prefab": { + "__id__": 541 + }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 1400 + "width": 750, + "height": 800 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7ekA0rODFF34jBoVt/Zcsu" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 105 + }, + "_enabled": false, + "__prefab": { + "__id__": 543 + }, + "_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": "d554HivktHzp6GNLEf2ytT" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 105 + }, + "_enabled": true, + "__prefab": { + "__id__": 545 + }, + "bounceDuration": 0.23, + "brake": 0.75, + "elastic": true, + "inertia": true, + "horizontal": false, + "vertical": true, + "cancelInnerEvents": true, + "scrollEvents": [], + "_content": { + "__id__": 107 + }, + "_horizontalScrollBar": null, + "_verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4f3GcJHx1Aw4SUNPIrWBex" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 105 + }, + "_enabled": true, + "__prefab": { + "__id__": 547 + }, + "_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": "ebj48qMqBBBIZHs3lfjuBv" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4cPLdPNYtIyKxjZXbpFSuo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 104 + }, + "_enabled": true, + "__prefab": { + "__id__": 550 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 750, + "height": 800 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12335,11 +12575,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 104 }, "_enabled": false, "__prefab": { - "__id__": 538 + "__id__": 552 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12380,17 +12620,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 104 }, "_enabled": true, "__prefab": { - "__id__": 540 + "__id__": 554 }, - "_alignFlags": 44, + "_alignFlags": 41, "_target": null, "_left": 0, "_right": 0, - "_top": 300, + "_top": 850.6, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -12401,7 +12641,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 100, - "_originalHeight": 0, + "_originalHeight": 1400, "_alignMode": 2, "_lockFlags": 1, "_id": "" @@ -12433,12 +12673,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 543 + "__id__": 557 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12461,7 +12701,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 545 + "__id__": 559 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12506,7 +12746,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 547 + "__id__": 561 }, "_alignFlags": 45, "_target": null, @@ -12555,12 +12795,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 550 + "__id__": 564 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -12583,7 +12823,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 552 + "__id__": 566 }, "_alignFlags": 45, "_target": null, @@ -12619,7 +12859,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 554 + "__id__": 568 }, "_id": "" }, @@ -12637,41 +12877,38 @@ }, "_enabled": true, "__prefab": { - "__id__": 556 + "__id__": 570 }, "m_rootNode": null, "avatar": { - "__id__": 45 + "__id__": 85 }, "avatarVideo": { - "__id__": 37 + "__id__": 77 }, "girlName": { "__id__": 18 }, "starParent": { - "__id__": 57 + "__id__": 31 }, "tags": { - "__id__": 140 - }, - "descName": { - "__id__": 197 + "__id__": 149 }, "descAge": { - "__id__": 205 + "__id__": 157 }, "desc": { - "__id__": 223 + "__id__": 214 }, "chatBtn": { - "__id__": 112 + "__id__": 117 }, "imgItemInst": { - "__id__": 279 + "__id__": 492 }, "imgsLayout": { - "__id__": 504 + "__id__": 495 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlListPanel.prefab b/assets/bundles/Chat18x/GirlListPanel.prefab index a7a65104..df591122 100644 --- a/assets/bundles/Chat18x/GirlListPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPanel.prefab @@ -160,7 +160,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1166, + "y": 591.7499999999999, "z": 0 }, "_lrot": { @@ -215,8 +215,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -533.5, - "y": -170, + "x": -355, + "y": -28.75, "z": 0 }, "_lrot": { @@ -228,8 +228,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 1.5, - "y": 1.5, + "x": 1, + "y": 1, "z": 1 }, "_mobility": 0, @@ -399,11 +399,11 @@ "__prefab": { "__id__": 13 }, - "_alignFlags": 12, + "_alignFlags": 9, "_target": null, - "_left": 50, + "_left": 20, "_right": 0, - "_top": 0, + "_top": 40, "_bottom": 30, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -414,7 +414,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 64, "_alignMode": 2, "_lockFlags": 12, "_id": "" @@ -466,7 +466,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -126.62300000000005, + "y": -0.9460000000000051, "z": 0 }, "_lrot": { @@ -600,11 +600,11 @@ "__prefab": { "__id__": 21 }, - "_alignFlags": 20, + "_alignFlags": 17, "_target": null, "_left": 0, "_right": 0, - "_top": 0, + "_top": 20, "_bottom": 17.180999999999948, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -615,7 +615,7 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 112.39200000000001, "_alignMode": 2, "_lockFlags": 0, "_id": "" @@ -672,8 +672,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 400 + "width": 750, + "height": 150.5 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -747,7 +747,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": -100, + "_top": 0, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -814,7 +814,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -150, + "y": -69.10000000000002, "z": 0 }, "_lrot": { @@ -913,7 +913,7 @@ "__id__": 35 }, { - "__id__": 204 + "__id__": 202 } ], "_active": true, @@ -979,23 +979,23 @@ "__id__": 44 }, { - "__id__": 50 + "__id__": 62 }, { - "__id__": 66 + "__id__": 70 }, { - "__id__": 72 + "__id__": 132 }, { - "__id__": 134 - }, - { - "__id__": 187 + "__id__": 185 } ], "_active": true, "_components": [ + { + "__id__": 193 + }, { "__id__": 195 }, @@ -1004,18 +1004,15 @@ }, { "__id__": 199 - }, - { - "__id__": 201 } ], "_prefab": { - "__id__": 203 + "__id__": 201 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 931.4530000000002, + "y": 456.65300000000025, "z": 0 }, "_lrot": { @@ -1108,8 +1105,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1152.8, - "height": 290 + "width": 744, + "height": 250 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1216,142 +1213,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "deco", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 35 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 45 - }, - { - "__id__": 47 - } - ], - "_prefab": { - "__id__": 49 - }, - "_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__": 44 - }, - "_enabled": true, - "__prefab": { - "__id__": 46 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1170, - "height": 298.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "02s9l9gKhPvLSBdxtHrpGm" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 44 - }, - "_enabled": true, - "__prefab": { - "__id__": 48 - }, - "_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": "935GF38U9M2Y14nItfWgNk" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "498xFOVxRNVL4ZbLldOPIb", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "avatar", @@ -1362,27 +1223,30 @@ }, "_children": [ { - "__id__": 51 + "__id__": 45 } ], "_active": true, "_components": [ + { + "__id__": 53 + }, + { + "__id__": 55 + }, + { + "__id__": 57 + }, { "__id__": 59 - }, - { - "__id__": 61 - }, - { - "__id__": 63 } ], "_prefab": { - "__id__": 65 + "__id__": 61 }, "_lpos": { "__type__": "cc.Vec3", - "x": 420.5, + "x": 247.12, "y": 0, "z": 0 }, @@ -1415,23 +1279,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 50 + "__id__": 44 }, "_children": [], "_active": true, "_components": [ { - "__id__": 52 + "__id__": 46 }, { - "__id__": 54 + "__id__": 48 }, { - "__id__": 56 + "__id__": 50 } ], "_prefab": { - "__id__": 58 + "__id__": 52 }, "_lpos": { "__type__": "cc.Vec3", @@ -1468,11 +1332,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 45 }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 47 }, "_contentSize": { "__type__": "cc.Size", @@ -1496,11 +1360,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 45 }, "_enabled": true, "__prefab": { - "__id__": 55 + "__id__": 49 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1541,11 +1405,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 45 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 51 }, "_alignFlags": 18, "_target": null, @@ -1590,11 +1454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 54 }, "_contentSize": { "__type__": "cc.Size", @@ -1618,11 +1482,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 56 }, "_type": 3, "_inverted": false, @@ -1640,11 +1504,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 50 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 64 + "__id__": 58 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1679,6 +1543,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "caXnjicEBJCbCjKuMue2oF" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 44 + }, + "_enabled": true, + "__prefab": { + "__id__": 60 + }, + "_alignFlags": 32, + "_target": null, + "_left": 0, + "_right": 0.02, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": false, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dd/oFTqK9ATYKLn7EZyqyY" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -1704,18 +1604,21 @@ "_active": true, "_components": [ { - "__id__": 67 + "__id__": 63 }, { - "__id__": 69 + "__id__": 65 + }, + { + "__id__": 67 } ], "_prefab": { - "__id__": 71 + "__id__": 69 }, "_lpos": { "__type__": "cc.Vec3", - "x": 420, + "x": 248.3, "y": -2.2737367544323206e-13, "z": 0 }, @@ -1748,16 +1651,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 62 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 64 }, "_contentSize": { "__type__": "cc.Size", - "width": 220, - "height": 220 + "width": 225, + "height": 225 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1776,11 +1679,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 62 }, "_enabled": true, "__prefab": { - "__id__": 70 + "__id__": 66 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1815,6 +1718,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "93Egu4/r9E04uSRhQQhfJg" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 62 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "_alignFlags": 32, + "_target": null, + "_left": 0, + "_right": 11.200000000000003, + "_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": "1d57TPSu9Cl4loa3SmXIjk" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -1838,34 +1777,34 @@ }, "_children": [ { - "__id__": 73 + "__id__": 71 }, { - "__id__": 81 + "__id__": 79 }, { - "__id__": 89 + "__id__": 87 } ], "_active": true, "_components": [ + { + "__id__": 125 + }, { "__id__": 127 }, { "__id__": 129 - }, - { - "__id__": 131 } ], "_prefab": { - "__id__": 133 + "__id__": 131 }, "_lpos": { "__type__": "cc.Vec3", - "x": 266.89300000000003, - "y": 13.048000000000002, + "x": 131.35399999999998, + "y": 5.6319999999998345, "z": 0 }, "_lrot": { @@ -1897,28 +1836,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 72 + "__id__": 70 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 72 + }, { "__id__": 74 }, { "__id__": 76 - }, - { - "__id__": 78 } ], "_prefab": { - "__id__": 80 + "__id__": 78 }, "_lpos": { "__type__": "cc.Vec3", - "x": -222.3546875, - "y": 76.2679999999998, + "x": -144.65468750000002, + "y": 68.85200000000009, "z": 0 }, "_lrot": { @@ -1950,15 +1889,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 73 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 73 }, "_contentSize": { "__type__": "cc.Size", - "width": 429.109375, + "width": 273.709375, "height": 74.718 }, "_anchorPoint": { @@ -1978,11 +1917,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 73 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 75 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1997,11 +1936,11 @@ "_string": "Anaya Kapoor", "_horizontalAlign": 2, "_verticalAlign": 1, - "_actualFontSize": 60, + "_actualFontSize": 38, "_fontSize": 60, "_fontFamily": "NotoSans-Regular", "_lineHeight": 59.3, - "_overflow": 1, + "_overflow": 2, "_enableWrapText": true, "_font": null, "_isSystemFontUsed": true, @@ -2046,11 +1985,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 73 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 77 }, "_alignFlags": 32, "_target": null, @@ -2095,28 +2034,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 72 + "__id__": 70 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 80 + }, { "__id__": 82 }, { "__id__": 84 - }, - { - "__id__": 86 } ], "_prefab": { - "__id__": 88 + "__id__": 86 }, "_lpos": { "__type__": "cc.Vec3", - "x": -7.7999999999999545, - "y": -14.878000000000156, + "x": -7.800000000000011, + "y": -9.492999999999938, "z": 0 }, "_lrot": { @@ -2148,15 +2087,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 81 }, "_contentSize": { "__type__": "cc.Size", - "width": 418.696094, + "width": 283.396094, "height": 87.23599999999999 }, "_anchorPoint": { @@ -2176,11 +2115,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 83 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2195,8 +2134,8 @@ "_string": "Tag1````\nTag2---", "_horizontalAlign": 2, "_verticalAlign": 0, - "_actualFontSize": 40, - "_fontSize": 40, + "_actualFontSize": 30, + "_fontSize": 30, "_fontFamily": "NotoSans-Regular", "_lineHeight": 38.6, "_overflow": 3, @@ -2244,18 +2183,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 85 }, "_alignFlags": 37, "_target": null, "_left": 0, "_right": 7.8, - "_top": 100.18700000000015, - "_bottom": 70.43099999999984, + "_top": 74.80199999999994, + "_bottom": 55.81600000000006, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -2293,44 +2232,44 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 72 + "__id__": 70 }, "_children": [ { - "__id__": 90 + "__id__": 88 }, { - "__id__": 96 + "__id__": 94 }, { - "__id__": 102 + "__id__": 100 }, { - "__id__": 108 + "__id__": 106 }, { - "__id__": 114 + "__id__": 112 } ], "_active": true, "_components": [ + { + "__id__": 118 + }, { "__id__": 120 }, { "__id__": 122 - }, - { - "__id__": 124 } ], "_prefab": { - "__id__": 126 + "__id__": 124 }, "_lpos": { "__type__": "cc.Vec3", "x": -154.2, - "y": -96.27699999999999, + "y": -76.27699999999999, "z": 0 }, "_lrot": { @@ -2362,25 +2301,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 89 + "__id__": 87 }, "_children": [], "_active": true, "_components": [ { - "__id__": 91 + "__id__": 89 }, { - "__id__": 93 + "__id__": 91 } ], "_prefab": { - "__id__": 95 + "__id__": 93 }, "_lpos": { "__type__": "cc.Vec3", - "x": -126.19999999999999, - "y": 0, + "x": -106.19999999999999, + "y": 1.1368683772161603e-13, "z": 0 }, "_lrot": { @@ -2412,16 +2351,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 90 + "__id__": 88 }, "_enabled": true, "__prefab": { - "__id__": 92 + "__id__": 90 }, "_contentSize": { "__type__": "cc.Size", - "width": 56, - "height": 54 + "width": 46, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2440,11 +2379,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 90 + "__id__": 88 }, "_enabled": true, "__prefab": { - "__id__": 94 + "__id__": 92 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2462,7 +2401,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -2498,25 +2437,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 89 + "__id__": 87 }, "_children": [], "_active": true, "_components": [ { - "__id__": 97 + "__id__": 95 }, { - "__id__": 99 + "__id__": 97 } ], "_prefab": { - "__id__": 101 + "__id__": 99 }, "_lpos": { "__type__": "cc.Vec3", - "x": -63.09999999999999, - "y": 0, + "x": -53.10000000000002, + "y": 1.1368683772161603e-13, "z": 0 }, "_lrot": { @@ -2548,16 +2487,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 96 + "__id__": 94 }, "_enabled": true, "__prefab": { - "__id__": 98 + "__id__": 96 }, "_contentSize": { "__type__": "cc.Size", - "width": 56, - "height": 54 + "width": 46, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2576,11 +2515,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 96 + "__id__": 94 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 98 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2598,7 +2537,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -2634,25 +2573,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 89 + "__id__": 87 }, "_children": [], "_active": true, "_components": [ { - "__id__": 103 + "__id__": 101 }, { - "__id__": 105 + "__id__": 103 } ], "_prefab": { - "__id__": 107 + "__id__": 105 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": 1.1368683772161603e-13, "z": 0 }, "_lrot": { @@ -2684,16 +2623,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 104 + "__id__": 102 }, "_contentSize": { "__type__": "cc.Size", - "width": 56, - "height": 54 + "width": 46, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2712,11 +2651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 106 + "__id__": 104 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2734,7 +2673,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -2770,25 +2709,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 89 + "__id__": 87 }, "_children": [], "_active": true, "_components": [ { - "__id__": 109 + "__id__": 107 }, { - "__id__": 111 + "__id__": 109 } ], "_prefab": { - "__id__": 113 + "__id__": 111 }, "_lpos": { "__type__": "cc.Vec3", - "x": 63.100000000000016, - "y": 0, + "x": 53.10000000000002, + "y": 1.1368683772161603e-13, "z": 0 }, "_lrot": { @@ -2820,16 +2759,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 108 }, "_contentSize": { "__type__": "cc.Size", - "width": 56, - "height": 54 + "width": 46, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2848,11 +2787,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 110 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2870,7 +2809,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -2906,25 +2845,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 89 + "__id__": 87 }, "_children": [], "_active": true, "_components": [ { - "__id__": 115 + "__id__": 113 }, { - "__id__": 117 + "__id__": 115 } ], "_prefab": { - "__id__": 119 + "__id__": 117 }, "_lpos": { "__type__": "cc.Vec3", - "x": 126.20000000000002, - "y": 0, + "x": 106.19999999999999, + "y": 1.1368683772161603e-13, "z": 0 }, "_lrot": { @@ -2956,16 +2895,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 114 }, "_contentSize": { "__type__": "cc.Size", - "width": 56, - "height": 54 + "width": 46, + "height": 44 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2984,11 +2923,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 114 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 116 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3006,7 +2945,7 @@ }, "_type": 0, "_fillType": 0, - "_sizeMode": 1, + "_sizeMode": 0, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -3042,15 +2981,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 119 }, "_contentSize": { "__type__": "cc.Size", - "width": 308.4, + "width": 258.4, "height": 65.3 }, "_anchorPoint": { @@ -3070,16 +3009,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 121 }, "_alignFlags": 36, "_target": null, "_left": 0, - "_right": 0, + "_right": 25.000000000000014, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -3106,11 +3045,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 87 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 123 }, "_resizeMode": 1, "_layoutType": 1, @@ -3157,16 +3096,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 70 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 126 }, "_contentSize": { "__type__": "cc.Size", - "width": 500, - "height": 257.854 + "width": 275.1, + "height": 217.85399999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3185,18 +3124,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 70 }, "_enabled": true, "__prefab": { - "__id__": 130 + "__id__": 128 }, "_alignFlags": 37, "_target": null, "_left": 0, - "_right": 309.50699999999995, - "_top": 3.0250000000000057, - "_bottom": 29.12100000000001, + "_right": 240.64600000000002, + "_top": 10.441000000000173, + "_bottom": 21.704999999999842, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -3221,11 +3160,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 72 + "__id__": 70 }, "_enabled": false, "__prefab": { - "__id__": 132 + "__id__": 130 }, "_resizeMode": 1, "_layoutType": 2, @@ -3262,8 +3201,6 @@ "__id__": 0 }, "fileId": "b3Vii8UZRCl7EUel+Jm/84", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -3276,30 +3213,30 @@ }, "_children": [ { - "__id__": 135 + "__id__": 133 }, { - "__id__": 146 + "__id__": 144 } ], "_active": true, "_components": [ + { + "__id__": 178 + }, { "__id__": 180 }, { "__id__": 182 - }, - { - "__id__": 184 } ], "_prefab": { - "__id__": 186 + "__id__": 184 }, "_lpos": { "__type__": "cc.Vec3", - "x": -576.4, + "x": -372, "y": 0, "z": 0 }, @@ -3332,11 +3269,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 134 + "__id__": 132 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 134 + }, { "__id__": 136 }, @@ -3344,19 +3284,16 @@ "__id__": 138 }, { - "__id__": 140 - }, - { - "__id__": 143 + "__id__": 141 } ], "_prefab": { - "__id__": 145 + "__id__": 143 }, "_lpos": { "__type__": "cc.Vec3", - "x": 182.59999999999997, - "y": -15.525000000000091, + "x": 121.25, + "y": -31.790000000000077, "z": 0 }, "_lrot": { @@ -3388,16 +3325,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 137 + "__id__": 135 }, "_contentSize": { "__type__": "cc.Size", - "width": 156, - "height": 156 + "width": 130, + "height": 130 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3416,11 +3353,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 137 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3461,15 +3398,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 141 + "__id__": 139 }, "clickEvents": [ { - "__id__": 142 + "__id__": 140 } ], "_interactable": true, @@ -3509,7 +3446,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 135 + "__id__": 133 }, "_id": "" }, @@ -3533,11 +3470,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 142 }, "_alignFlags": 16, "_target": null, @@ -3545,7 +3482,7 @@ "_right": 0, "_top": 0, "_bottom": 0, - "_horizontalCenter": -2.842170943040401e-14, + "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, "_isAbsRight": true, @@ -3582,31 +3519,31 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 134 + "__id__": 132 }, "_children": [ { - "__id__": 147 + "__id__": 145 }, { - "__id__": 155 + "__id__": 153 }, { - "__id__": 163 + "__id__": 161 } ], "_active": true, "_components": [ { - "__id__": 177 + "__id__": 175 } ], "_prefab": { - "__id__": 179 + "__id__": 177 }, "_lpos": { "__type__": "cc.Vec3", - "x": 183.2, + "x": 124.104, "y": 93.24399999999991, "z": 0 }, @@ -3639,28 +3576,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 + "__id__": 144 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 146 + }, { "__id__": 148 }, { "__id__": 150 - }, - { - "__id__": 152 } ], "_prefab": { - "__id__": 154 + "__id__": 152 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 0, + "x": -2.2790000000000106, + "y": -14.432000000000016, "z": 0 }, "_lrot": { @@ -3692,11 +3629,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 145 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 147 }, "_contentSize": { "__type__": "cc.Size", @@ -3720,11 +3657,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 145 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 149 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3788,11 +3725,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 145 }, "_enabled": true, "__prefab": { - "__id__": 153 + "__id__": 151 }, "_alignFlags": 18, "_target": null, @@ -3800,8 +3737,8 @@ "_right": 30, "_top": 0, "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, + "_horizontalCenter": -2.2790000000000106, + "_verticalCenter": -14.432000000000016, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -3837,28 +3774,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 + "__id__": 144 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 154 + }, { "__id__": 156 }, { "__id__": 158 - }, - { - "__id__": 160 } ], "_prefab": { - "__id__": 162 + "__id__": 160 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 0, + "x": -2.2790000000000106, + "y": -14.432000000000016, "z": 0 }, "_lrot": { @@ -3890,11 +3827,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 153 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 155 }, "_contentSize": { "__type__": "cc.Size", @@ -3918,11 +3855,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 153 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 157 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3986,11 +3923,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 153 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 159 }, "_alignFlags": 18, "_target": null, @@ -3998,8 +3935,8 @@ "_right": 30, "_top": 0, "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, + "_horizontalCenter": -2.2790000000000106, + "_verticalCenter": -14.432000000000016, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -4035,32 +3972,32 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 + "__id__": 144 }, "_children": [ { - "__id__": 164 + "__id__": 162 } ], "_active": true, "_components": [ + { + "__id__": 168 + }, { "__id__": 170 }, { "__id__": 172 - }, - { - "__id__": 174 } ], "_prefab": { - "__id__": 176 + "__id__": 174 }, "_lpos": { "__type__": "cc.Vec3", - "x": 32.46199999999999, - "y": -26.890000000000327, + "x": 30.182999999999993, + "y": -16.256000000000085, "z": 0 }, "_lrot": { @@ -4092,25 +4029,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 163 + "__id__": 161 }, "_children": [], "_active": true, "_components": [ { - "__id__": 165 + "__id__": 163 }, { - "__id__": 167 + "__id__": 165 } ], "_prefab": { - "__id__": 169 + "__id__": 167 }, "_lpos": { "__type__": "cc.Vec3", - "x": -105.55799999999999, - "y": 5.013999999999669, + "x": -97.203, + "y": -4.100999999999658, "z": 0 }, "_lrot": { @@ -4142,16 +4079,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 164 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 164 }, "_contentSize": { "__type__": "cc.Size", - "width": 75, - "height": 73 + "width": 50, + "height": 49 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4170,11 +4107,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 164 + "__id__": 162 }, "_enabled": true, "__prefab": { - "__id__": 168 + "__id__": 166 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4228,15 +4165,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 163 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 169 }, "_contentSize": { "__type__": "cc.Size", - "width": 137.6220703125, + "width": 110.09765625, "height": 74.718 }, "_anchorPoint": { @@ -4256,11 +4193,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 163 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 171 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4275,8 +4212,8 @@ "_string": "$3.99", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 50, - "_fontSize": 50, + "_actualFontSize": 40, + "_fontSize": 40, "_fontFamily": "NotoSans-Regular", "_lineHeight": 59.3, "_overflow": 0, @@ -4324,11 +4261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 163 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 173 }, "_alignFlags": 18, "_target": null, @@ -4336,8 +4273,8 @@ "_right": 30, "_top": 0, "_bottom": 0, - "_horizontalCenter": 32.46199999999999, - "_verticalCenter": -26.890000000000327, + "_horizontalCenter": 30.182999999999993, + "_verticalCenter": -16.256000000000085, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -4373,11 +4310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 144 }, "_enabled": true, "__prefab": { - "__id__": 178 + "__id__": 176 }, "_contentSize": { "__type__": "cc.Size", @@ -4414,16 +4351,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 134 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 179 }, "_contentSize": { "__type__": "cc.Size", - "width": 365.2, - "height": 290 + "width": 242.5, + "height": 250 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4442,11 +4379,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 134 + "__id__": 132 }, "_enabled": false, "__prefab": { - "__id__": 183 + "__id__": 181 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4487,11 +4424,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 134 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 183 }, "_alignFlags": 13, "_target": null, @@ -4541,18 +4478,18 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 186 + }, { "__id__": 188 }, { "__id__": 190 - }, - { - "__id__": 192 } ], "_prefab": { - "__id__": 194 + "__id__": 192 }, "_lpos": { "__type__": "cc.Vec3", @@ -4589,16 +4526,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 189 + "__id__": 187 }, "_contentSize": { "__type__": "cc.Size", - "width": 1152.8, - "height": 290 + "width": 744, + "height": 250 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4617,11 +4554,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 191 + "__id__": 189 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4662,11 +4599,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 193 + "__id__": 191 }, "_alignFlags": 45, "_target": null, @@ -4715,12 +4652,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 194 }, "_contentSize": { "__type__": "cc.Size", - "width": 1152.8, - "height": 290 + "width": 744, + "height": 250 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4743,7 +4680,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 198 + "__id__": 196 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4786,14 +4723,14 @@ "node": { "__id__": 35 }, - "_enabled": false, + "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 198 }, "_alignFlags": 40, "_target": null, - "_left": 0, - "_right": 0, + "_left": 3, + "_right": 3, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -4824,31 +4761,31 @@ }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 200 }, "avatar": { - "__id__": 54 + "__id__": 48 }, "girlName": { - "__id__": 76 + "__id__": 74 }, "tags": { - "__id__": 84 + "__id__": 82 }, "price": { - "__id__": 172 + "__id__": 170 }, "freeNode": { - "__id__": 147 + "__id__": 145 }, "tryNode": { - "__id__": 155 + "__id__": 153 }, "chatBtn": { - "__id__": 135 + "__id__": 133 }, "starParent": { - "__id__": 89 + "__id__": 87 }, "_id": "" }, @@ -4880,6 +4817,9 @@ "_children": [], "_active": true, "_components": [ + { + "__id__": 203 + }, { "__id__": 205 }, @@ -4925,16 +4865,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 204 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 206 + "__id__": 204 }, "_contentSize": { "__type__": "cc.Size", - "width": 1170, - "height": 0 + "width": 750, + "height": 15 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4953,11 +4893,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 204 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 208 + "__id__": 206 }, "_resizeMode": 1, "_layoutType": 2, @@ -4972,7 +4912,7 @@ "_paddingTop": 20, "_paddingBottom": 20, "_spacingX": 0, - "_spacingY": 40, + "_spacingY": 25, "_verticalDirection": 1, "_horizontalDirection": 0, "_constraint": 0, @@ -4985,6 +4925,42 @@ "__type__": "cc.CompPrefabInfo", "fileId": "31Wt+anGdHFrOXNPS5Sna7" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 202 + }, + "_enabled": true, + "__prefab": { + "__id__": 208 + }, + "_alignFlags": 40, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 750, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 40, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3dFk4unvlO8ZGlfDa6xY6c" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -5012,8 +4988,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2232 + "width": 750, + "height": 1195.7999999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5157,8 +5133,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2232 + "width": 750, + "height": 1195.7999999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5237,7 +5213,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 204 + "__id__": 202 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -5310,8 +5286,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2232 + "width": 750, + "height": 1195.7999999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5340,7 +5316,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 300, + "_top": 138.2, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -5353,7 +5329,7 @@ "_originalWidth": 100, "_originalHeight": 100, "_alignMode": 2, - "_lockFlags": 5, + "_lockFlags": 0, "_id": "" }, { @@ -5455,8 +5431,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5577,8 +5553,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 2532 + "width": 750, + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", diff --git a/assets/bundles/Chat18x/ThemePanel.prefab b/assets/bundles/Chat18x/ThemePanel.prefab index 4edd277e..6ac8ca7e 100644 --- a/assets/bundles/Chat18x/ThemePanel.prefab +++ b/assets/bundles/Chat18x/ThemePanel.prefab @@ -228,7 +228,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": -355, - "y": -31.12200000000007, + "y": 5.685999999999922, "z": 0 }, "_lrot": { @@ -401,7 +401,7 @@ "_target": null, "_left": 20, "_right": 0, - "_top": 55.12200000000007, + "_top": 18.314000000000078, "_bottom": 61.5, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -923,7 +923,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 42.47199999999998, - "y": -47.09699999999998, + "y": -57.613000000000056, "z": 0 }, "_lrot": { @@ -1237,7 +1237,7 @@ "_left": 194.1, "_right": 282.528, "_top": 0, - "_bottom": 63.90300000000002, + "_bottom": 53.386999999999944, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -1303,7 +1303,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 200.84699999999998, - "y": -48.011999999999944, + "y": -58.52800000000002, "z": 0 }, "_lrot": { @@ -1815,7 +1815,7 @@ "_left": 194.1, "_right": 124.15300000000002, "_top": 0, - "_bottom": 62.988000000000056, + "_bottom": 52.47199999999998, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -2094,7 +2094,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -104.79999999999995, + "y": -86.60000000000002, "z": 0 }, "_lrot": { @@ -2154,7 +2154,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 423.62100000000004, + "y": 441.82099999999986, "z": 0 }, "_lrot": { @@ -3880,8 +3880,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 340, - "height": 230 + "width": 2, + "height": 2 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3920,9 +3920,9 @@ "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", "__expectedType__": "cc.SpriteFrame" }, - "_type": 1, + "_type": 0, "_fillType": 0, - "_sizeMode": 0, + "_sizeMode": 1, "_fillCenter": { "__type__": "cc.Vec2", "x": 0, @@ -4163,7 +4163,7 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 128, + "width": 310.3, "height": 77.048 }, "_anchorPoint": { @@ -4202,11 +4202,11 @@ "_string": "熟女", "_horizontalAlign": 0, "_verticalAlign": 2, - "_actualFontSize": 60, + "_actualFontSize": 61, "_fontSize": 60, "_fontFamily": "NotoSans-Regular", "_lineHeight": 54.8, - "_overflow": 0, + "_overflow": 2, "_enableWrapText": true, "_font": null, "_isSystemFontUsed": true, @@ -4943,7 +4943,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -145.1905, + "y": -134.18999999999988, "z": 0 }, "_lrot": { @@ -5053,7 +5053,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 358.493, + "y": 432.114, "z": 0 }, "_lrot": { @@ -5094,7 +5094,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 80 + "height": 0 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5127,12 +5127,12 @@ "height": 450 }, "_startAxis": 0, - "_paddingLeft": 30, + "_paddingLeft": 10, "_paddingRight": 30, - "_paddingTop": 80, + "_paddingTop": 0, "_paddingBottom": 0, - "_spacingX": 25, - "_spacingY": 80, + "_spacingX": 50, + "_spacingY": 20, "_verticalDirection": 1, "_horizontalDirection": 0, "_constraint": 2, @@ -5172,8 +5172,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 750, - "height": 834.0190000000001 + "width": 730, + "height": 802.319 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5317,8 +5317,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 750, - "height": 834.0190000000001 + "width": 730, + "height": 802.319 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5421,10 +5421,10 @@ }, "_alignFlags": 45, "_target": null, - "_left": 0, - "_right": 0, - "_top": 290.381, - "_bottom": 0, + "_left": 10, + "_right": 10, + "_top": 313.43049999999977, + "_bottom": 45.0505, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -5471,7 +5471,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1124.4 + "height": 1160.7999999999997 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5545,7 +5545,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 209.6, + "_top": 173.2, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -5593,7 +5593,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1334 + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5715,7 +5715,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 750, - "height": 1334 + "height": 1333.9999999999998 }, "_anchorPoint": { "__type__": "cc.Vec2",