diff --git a/assets/Scripts/chat18x/ui/panels/GirlListPopupPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlListPopupPanel.ts index 79721673..5e078c6e 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlListPopupPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlListPopupPanel.ts @@ -1,4 +1,13 @@ -import { _decorator, Button, Component, Node, Label, View } from "cc"; +import { + _decorator, + Button, + Component, + Node, + Label, + View, + Sprite, + UITransform, +} from "cc"; import li_BaseView from "../../../Main/Common/li_BaseView"; import Utils from "../../../Main/Common/Utils"; import { GButton } from "../../../Main/Common/GButton"; @@ -12,6 +21,7 @@ import proto from "db://assets/Scripts/proto/proto.pb.js"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; import { ViewManager } from "../../../Main/Manager/ViewManager"; import { TipsPanel } from "./TipsPanel"; +import ResManager from "../../../Main/Manager/ResManager"; const { ccclass, property } = _decorator; @ccclass("GirlListPopupPanel") @@ -25,6 +35,8 @@ export class GirlListPopupPanel extends li_BaseView { private girlTag: Label; base: GirlListItem; + img: Sprite; + uitransform: UITransform; openUIDataCT(data) { this.category = data.category; this.girlId = data.id; @@ -32,6 +44,8 @@ export class GirlListPopupPanel extends li_BaseView { } onLoadCT() { Utils.parseNode(this.node, this._nodeTab); + this.img = this._nodeTab.img.getComponent(Sprite); + this.uitransform = this._nodeTab.Img_Frame.getComponent(UITransform); this.girlName = this._nodeTab.Name.getComponent(Label); this.girlTag = this._nodeTab.Tag.getComponent(Label); const girlData = DataManager.I.getDataById(DataId.Girl); @@ -48,6 +62,13 @@ export class GirlListPopupPanel extends li_BaseView { this.girlTag.string = LanguageUtils.getText( girlData.getGrilTagKey(this.category.toString(), this.girlId) ); + + const path = girlData.getGrilAvatar(this.category.toString(), this.girlId); + + //console.log(path); + ResManager.I.changeBundleSpriteFrame(this.img, path, "Girls", () => { + this.scaleToFillItem(); + }); } registerListener() { GButton.BandClick(this._nodeTab.BuyBtn, this.buyCharacter, this); @@ -83,4 +104,44 @@ export class GirlListPopupPanel extends li_BaseView { } // TipsPanel.show("Insufficient balance, need to purchase"); } + + scaleToFillItem() { + if (!this.img || !this.img.spriteFrame) return; + + // 延迟一帧确保UI布局完成 + this.doScaleToFill(); + } + + doScaleToFill() { + if (!this.img || !this.img.spriteFrame) return; + if (!this.uitransform) + this.uitransform = this.node.getComponent(UITransform); + const itemSize = this.uitransform.contentSize; + const imageSize = this.img.spriteFrame.originalSize; + + if ( + itemSize.width === 0 || + itemSize.height === 0 || + imageSize.width === 0 || + imageSize.height === 0 + ) { + return; + } + + const scaleX = itemSize.width / imageSize.width; + const scaleY = itemSize.height / imageSize.height; + const scale = Math.max(scaleY, scaleY); + + // 设置Sprite的sizeMode为CUSTOM,允许自定义大小 + this.img.sizeMode = Sprite.SizeMode.CUSTOM; + + // 获取图片节点的UITransform并设置大小 + const imgTransform = this.img.node.getComponent(UITransform); + if (imgTransform) { + imgTransform.setContentSize( + imageSize.width * scale, + imageSize.height * scale + ); + } + } } diff --git a/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts index 911f76e6..fb2c4100 100644 --- a/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PopupGirlDetailPanel.ts @@ -1,4 +1,4 @@ -import { _decorator, Component, Node, Label } from "cc"; +import { _decorator, Component, Node, Label, UITransform, Sprite } from "cc"; import li_BaseView from "../../../Main/Common/li_BaseView"; import { GButton } from "../../../Main/Common/GButton"; import Utils from "../../../Main/Common/Utils"; @@ -11,6 +11,7 @@ import proto from "db://assets/Scripts/proto/proto.pb.js"; import LanguageUtils from "../../../Main/Common/LanguageUtils"; import { ImagePopup } from "../components/ImagePopup"; import { TipsPanel } from "./TipsPanel"; +import ResManager from "../../../Main/Manager/ResManager"; const { ccclass, property } = _decorator; @ccclass("PopupGirlDetailPanel") @@ -24,6 +25,9 @@ export class PopupGirlDetailPanel extends li_BaseView { private base: DetailImageItem | ImagePopup; private desc: Label; + + img: Sprite; + uitransform: UITransform; openUIDataCT(data) { this.category = data.category; this.resId = data.resId; @@ -34,12 +38,15 @@ export class PopupGirlDetailPanel extends li_BaseView { onLoadCT() { Utils.parseNode(this.node, this._nodeTab); this.desc = this._nodeTab.content.getComponent(Label); - + this.uitransform = this._nodeTab.Img_Frame.getComponent(UITransform); + this.img = this._nodeTab.img.getComponent(Sprite); let descText = LanguageUtils.getText("popupgirldetailpanel.content"); const girlData = DataManager.I.getDataById(DataId.Girl); // 价格 this.priceLabel = this._nodeTab.Price.getComponent(Label); + + let url = ""; if (this.type === proto.cs.EnmResType.ERT_Image) { // 图片 this.priceLabel.string = girlData @@ -49,6 +56,11 @@ export class PopupGirlDetailPanel extends li_BaseView { this.resId ) .toString(); + url = girlData.getGrilPhotoPic( + this.category.toString(), + this.girlId, + this.resId + ); } else if (this.type === proto.cs.EnmResType.ERT_Video) { // 视频 this.priceLabel.string = girlData @@ -58,8 +70,16 @@ export class PopupGirlDetailPanel extends li_BaseView { this.resId ) .toString(); + url = girlData.getGrilVideoPath( + this.category.toString(), + this.girlId, + this.resId + ); } - + const path = url + "_thumbnail_blur"; + ResManager.I.changeBundleSpriteFrame(this.img, path, "Girls", () => { + this.scaleToFillItem(); + }); this.desc.string = descText.replace("{price}", this.priceLabel.string); this.registerListener(); @@ -108,4 +128,44 @@ export class PopupGirlDetailPanel extends li_BaseView { TipsPanel.show("Insufficient balance, need to purchase"); } } + + scaleToFillItem() { + if (!this.img || !this.img.spriteFrame) return; + + // 延迟一帧确保UI布局完成 + this.doScaleToFill(); + } + + doScaleToFill() { + if (!this.img || !this.img.spriteFrame) return; + if (!this.uitransform) + this.uitransform = this.node.getComponent(UITransform); + const itemSize = this.uitransform.contentSize; + const imageSize = this.img.spriteFrame.originalSize; + + if ( + itemSize.width === 0 || + itemSize.height === 0 || + imageSize.width === 0 || + imageSize.height === 0 + ) { + return; + } + + const scaleX = itemSize.width / imageSize.width; + const scaleY = itemSize.height / imageSize.height; + const scale = Math.max(scaleY, scaleY); + + // 设置Sprite的sizeMode为CUSTOM,允许自定义大小 + this.img.sizeMode = Sprite.SizeMode.CUSTOM; + + // 获取图片节点的UITransform并设置大小 + const imgTransform = this.img.node.getComponent(UITransform); + if (imgTransform) { + imgTransform.setContentSize( + imageSize.width * scale, + imageSize.height * scale + ); + } + } } diff --git a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts index a74d7419..16e82214 100644 --- a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts @@ -53,7 +53,7 @@ export class ThemePanel extends li_BaseView { this.coinNum = this._nodeTab.coinNum.getComponent(Label); this.uid = this._nodeTab.uid.getComponent(Label); this.recName = this._nodeTab.characterNameText.getComponent(Label); - this.recSprite = this._nodeTab.recPicSlot.getComponent(Sprite); + this.recSprite = this._nodeTab.recPic.getComponent(Sprite); this.vipLeftTime = this._nodeTab.vipText.getComponent(Label); this.registerListener(); @@ -66,6 +66,7 @@ export class ThemePanel extends li_BaseView { rectNameKey: string; async Show() { + this._nodeTab.loadingRec.active = true; //some temp data this.refreshCoinNum(); this.refreshVipExpire(); @@ -121,6 +122,7 @@ export class ThemePanel extends li_BaseView { } ); } + this._nodeTab.loadingRec.active = false; // 获取商品列表,提前把数据拿下来 this.reqShopList(); diff --git a/assets/Scripts/chat18x/uiitems/DetailImageItem.ts b/assets/Scripts/chat18x/uiitems/DetailImageItem.ts index 0af5575e..7f598c0a 100644 --- a/assets/Scripts/chat18x/uiitems/DetailImageItem.ts +++ b/assets/Scripts/chat18x/uiitems/DetailImageItem.ts @@ -36,7 +36,8 @@ export class DetailImageItem extends Component { priceFrame: Node; @property(Label) videoPrice: Label; - + @property(Node) + loading: Node; base: GirlDetailPanel; url: string; isImage: boolean; @@ -142,8 +143,9 @@ export class DetailImageItem extends Component { this.category = category; this.girlId = id; this.resId = resId; - this.question.active = true; // 显示问号,表示加载中 + //this.question.active = true; // 显示问号,表示加载中 + this.loading.active = true; this.test_resID = this.node.getChildByName("resID"); this.test_resID.getComponent(Label).string = @@ -209,8 +211,9 @@ export class DetailImageItem extends Component { } ResManager.I.changeBundleSpriteFrame(this.img, imgPath, "Girls", () => { - this.question.active = false; // 图片加载成功后隐藏问号 + if (!this.isVisible) this.question.active = false; // 图片加载成功后隐藏问号 this.scaleToFillItem(); + this.loading.active = false; }); } diff --git a/assets/Scripts/chat18x/uiitems/GirlListItem.ts b/assets/Scripts/chat18x/uiitems/GirlListItem.ts index dd672990..bb2ce371 100644 --- a/assets/Scripts/chat18x/uiitems/GirlListItem.ts +++ b/assets/Scripts/chat18x/uiitems/GirlListItem.ts @@ -41,7 +41,8 @@ export class GirlListItem extends Component { @property(Node) starParent: Node; - + @property(Node) + loading: Node; stars: Sprite[]; id: number = -1; @@ -133,15 +134,16 @@ export class GirlListItem extends Component { // this.price.node.active = priceType == PriceType.pay; // this.freeNode.active = priceType == PriceType.free; //this.tryNode.active = priceType == PriceType.first_time_free; - let listAvatarPath = girlData.getGrilAvatar( + let avatarPath = girlData.getGrilAvatar( this.category.toString(), this.id ); + this.loading.active = true; //listAvatarPath = listAvatarPath.replace("Avatar", "avatar"); //临时 ResManager.I.changeBundleSpriteFrame( this.avatar, - listAvatarPath, + avatarPath, "Girls", () => { let sizeTran = this.avatar.node.parent.getComponent(UITransform); @@ -150,6 +152,7 @@ export class GirlListItem extends Component { this.avatar.node, 2 ); + this.loading.active = false; } ); diff --git a/assets/Scripts/chat18x/uiitems/ThemeItem.ts b/assets/Scripts/chat18x/uiitems/ThemeItem.ts index 97cbfac2..be99af62 100644 --- a/assets/Scripts/chat18x/uiitems/ThemeItem.ts +++ b/assets/Scripts/chat18x/uiitems/ThemeItem.ts @@ -19,6 +19,9 @@ export class ThemeItem extends Component { @property(Label) titleName: Label; + @property(Node) + loading: Node; + @property(Sprite) img: Sprite; @@ -39,13 +42,16 @@ export class ThemeItem extends Component { } refresh(themeId: number) { + this.loading.active = true; // 主题数据 const themeData = DataManager.I.getDataById(DataId.Theme); this.lockImg.node.active = this.lockCover.node.active = !themeData.getIsReleaseById(themeId); this.isLocked = !themeData.getIsReleaseById(themeId); this.key = themeData.getLanKeyById(themeId); - this.titleName.string = LanguageUtils.getText(themeData.getLanKeyById(themeId)); + this.titleName.string = LanguageUtils.getText( + themeData.getLanKeyById(themeId) + ); this.category = themeData.getCategoryById(themeId); ResManager.I.changeBundleSpriteFrame( this.img, @@ -54,6 +60,7 @@ export class ThemeItem extends Component { () => { let sizeTran = this.img.node.parent.getComponent(UITransform); Utils.adjustBgPixelRatioToSize(sizeTran.contentSize, this.img.node, 3); + this.loading.active = false; } ); GButton.RemoveAndBandClick(this.node, this.OnClickThis, this); diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index cee8a044..b95b07ac 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -25,20 +25,20 @@ "_active": true, "_components": [ { - "__id__": 389 + "__id__": 409 }, { - "__id__": 391 + "__id__": 411 }, { - "__id__": 393 + "__id__": 413 }, { - "__id__": 395 + "__id__": 415 } ], "_prefab": { - "__id__": 397 + "__id__": 417 }, "_lpos": { "__type__": "cc.Vec3", @@ -82,23 +82,29 @@ "__id__": 3 }, { - "__id__": 371 + "__id__": 9 + }, + { + "__id__": 15 + }, + { + "__id__": 391 } ], "_active": true, "_components": [ { - "__id__": 382 + "__id__": 402 }, { - "__id__": 384 + "__id__": 404 }, { - "__id__": 386 + "__id__": 406 } ], "_prefab": { - "__id__": 388 + "__id__": 408 }, "_lpos": { "__type__": "cc.Vec3", @@ -131,159 +137,29 @@ }, { "__type__": "cc.Node", - "_name": "Lower", + "_name": "bg-001", "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 2 }, - "_children": [ + "_children": [], + "_active": true, + "_components": [ { "__id__": 4 }, - { - "__id__": 308 - } - ], - "_active": true, - "_components": [ - { - "__id__": 364 - }, - { - "__id__": 366 - }, - { - "__id__": 368 - } - ], - "_prefab": { - "__id__": 370 - }, - "_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": "ScrollView", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 3 - }, - "_children": [ - { - "__id__": 5 - } - ], - "_active": true, - "_components": [ - { - "__id__": 299 - }, - { - "__id__": 301 - }, - { - "__id__": 303 - }, - { - "__id__": 305 - } - ], - "_prefab": { - "__id__": 307 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "view", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 4 - }, - "_children": [ { "__id__": 6 } ], - "_active": true, - "_components": [ - { - "__id__": 290 - }, - { - "__id__": 292 - }, - { - "__id__": 294 - }, - { - "__id__": 296 - } - ], "_prefab": { - "__id__": 298 + "__id__": 8 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": -937.5140000000001, "z": 0 }, "_lrot": { @@ -310,204 +186,98 @@ "_id": "" }, { - "__type__": "cc.Node", - "_name": "content", + "__type__": "cc.UITransform", + "_name": "", "_objFlags": 0, "__editorExtras__": {}, - "_parent": { + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { "__id__": 5 }, - "_children": [ - { - "__id__": 7 - }, - { - "__id__": 47 - }, - { - "__id__": 175 - }, - { - "__id__": 199 - }, - { - "__id__": 275 - } - ], - "_active": true, - "_components": [ - { - "__id__": 283 - }, - { - "__id__": 285 - }, - { - "__id__": 287 - } - ], - "_prefab": { - "__id__": 289 + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 458.7 }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 1170, - "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 + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 }, "_id": "" }, { - "__type__": "cc.Node", - "_name": "Middle", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 6 - }, - "_children": [ - { - "__id__": 8 - }, - { - "__id__": 24 - }, - { - "__id__": 32 - } - ], - "_active": true, - "_components": [ - { - "__id__": 40 - }, - { - "__id__": 42 - }, - { - "__id__": 44 - } - ], - "_prefab": { - "__id__": 46 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -551.4, - "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.CompPrefabInfo", + "fileId": "4053BHAP9DYYEovV2C6xHE" }, { - "__type__": "cc.Node", - "_name": "avatar", + "__type__": "cc.Sprite", + "_name": "", "_objFlags": 0, "__editorExtras__": {}, - "_parent": { + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { "__id__": 7 }, - "_children": [ - { - "__id__": 9 - } - ], - "_active": true, - "_components": [ - { - "__id__": 15 - }, - { - "__id__": 17 - }, - { - "__id__": 19 - }, - { - "__id__": 21 - } - ], - "_prefab": { - "__id__": 23 + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 24, + "g": 15, + "b": 32, + "a": 255 }, - "_lpos": { - "__type__": "cc.Vec3", + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", "x": 0, - "y": -408.6, - "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 + "y": 0 }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, "_id": "" }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "80NQM8i6lCj7NahY+3Xnn5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e3rG2/YHFFwo8FcqabEAsY", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", - "_name": "videoArea", + "_name": "bg-002", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 8 + "__id__": 2 }, "_children": [], "_active": true, @@ -525,7 +295,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 0, + "y": -492.55899999999997, "z": 0 }, "_lrot": { @@ -563,6 +333,508 @@ "__prefab": { "__id__": 11 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 458.7 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d3/WZSK/1GoojijUDW9I8D" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 9 + }, + "_enabled": true, + "__prefab": { + "__id__": 13 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d5aa44e9-a6e4-4570-bfba-238a902ca222@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": "56oaLYcrpOjL1gLtXiAbSe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "741FHtIidNAp5eBbfeZpUS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Lower", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [ + { + "__id__": 16 + }, + { + "__id__": 304 + } + ], + "_active": true, + "_components": [ + { + "__id__": 384 + }, + { + "__id__": 386 + }, + { + "__id__": 388 + } + ], + "_prefab": { + "__id__": 390 + }, + "_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": "ScrollView", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 15 + }, + "_children": [ + { + "__id__": 17 + } + ], + "_active": true, + "_components": [ + { + "__id__": 295 + }, + { + "__id__": 297 + }, + { + "__id__": 299 + }, + { + "__id__": 301 + } + ], + "_prefab": { + "__id__": 303 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 16 + }, + "_children": [ + { + "__id__": 18 + } + ], + "_active": true, + "_components": [ + { + "__id__": 286 + }, + { + "__id__": 288 + }, + { + "__id__": 290 + }, + { + "__id__": 292 + } + ], + "_prefab": { + "__id__": 294 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 17 + }, + "_children": [ + { + "__id__": 19 + }, + { + "__id__": 43 + }, + { + "__id__": 171 + }, + { + "__id__": 195 + }, + { + "__id__": 271 + } + ], + "_active": true, + "_components": [ + { + "__id__": 279 + }, + { + "__id__": 281 + }, + { + "__id__": 283 + } + ], + "_prefab": { + "__id__": 285 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1170, + "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": "Middle", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 18 + }, + "_children": [ + { + "__id__": 20 + } + ], + "_active": true, + "_components": [ + { + "__id__": 36 + }, + { + "__id__": 38 + }, + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 42 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -551.4, + "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__": 19 + }, + "_children": [ + { + "__id__": 21 + } + ], + "_active": true, + "_components": [ + { + "__id__": 27 + }, + { + "__id__": 29 + }, + { + "__id__": 31 + }, + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 35 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -408.6, + "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": "videoArea", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 20 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 22 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 26 + }, + "_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__": 21 + }, + "_enabled": true, + "__prefab": { + "__id__": 23 + }, "_contentSize": { "__type__": "cc.Size", "width": 1080, @@ -585,11 +857,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 21 }, "_enabled": true, "__prefab": { - "__id__": 13 + "__id__": 25 }, "_alignFlags": 45, "_target": null, @@ -634,11 +906,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 8 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 28 }, "_contentSize": { "__type__": "cc.Size", @@ -662,11 +934,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 8 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 30 }, "_type": 3, "_inverted": false, @@ -684,11 +956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 8 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 32 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -729,11 +1001,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 8 + "__id__": 20 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 34 }, "_alignFlags": 41, "_target": null, @@ -772,367 +1044,17 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "bg-001", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 7 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 25 - }, - { - "__id__": 27 - }, - { - "__id__": 29 - } - ], - "_prefab": { - "__id__": 31 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -1556.114, - "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__": 24 + "__id__": 19 }, "_enabled": true, "__prefab": { - "__id__": 26 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 458.7 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4053BHAP9DYYEovV2C6xHE" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 28 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 24, - "g": 15, - "b": 32, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "80NQM8i6lCj7NahY+3Xnn5" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 24 - }, - "_enabled": true, - "__prefab": { - "__id__": 30 - }, - "_alignFlags": 40, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 762.6539999999999, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": false, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 105, - "_originalHeight": 105, - "_alignMode": 2, - "_lockFlags": 1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7eYdZisVNKDr4akRQQDGAD" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e3rG2/YHFFwo8FcqabEAsY", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "bg-002", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 7 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 33 - }, - { - "__id__": 35 - }, - { - "__id__": 37 - } - ], - "_prefab": { - "__id__": 39 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -1111.1589999999999, - "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__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 34 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1080, - "height": 458.7 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d3/WZSK/1GoojijUDW9I8D" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 36 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "d5aa44e9-a6e4-4570-bfba-238a902ca222@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": "56oaLYcrpOjL1gLtXiAbSe" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 32 - }, - "_enabled": true, - "__prefab": { - "__id__": 38 - }, - "_alignFlags": 40, - "_target": null, - "_left": 0, - "_right": 0, - "_top": 762.6539999999999, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": false, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 105, - "_originalHeight": 105, - "_alignMode": 2, - "_lockFlags": 1, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "10NpWFO4BKsLuiP+0bu4sm" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "741FHtIidNAp5eBbfeZpUS", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 7 - }, - "_enabled": true, - "__prefab": { - "__id__": 41 + "__id__": 37 }, "_contentSize": { "__type__": "cc.Size", @@ -1156,11 +1078,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 7 + "__id__": 19 }, "_enabled": false, "__prefab": { - "__id__": 43 + "__id__": 39 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1201,11 +1123,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 7 + "__id__": 19 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 41 }, "_alignFlags": 1, "_target": null, @@ -1250,45 +1172,45 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 6 + "__id__": 18 }, "_children": [ { - "__id__": 48 + "__id__": 44 }, { - "__id__": 56 + "__id__": 52 }, { - "__id__": 64 + "__id__": 60 }, { - "__id__": 102 + "__id__": 98 }, { - "__id__": 127 + "__id__": 123 }, { - "__id__": 135 + "__id__": 131 }, { - "__id__": 143 + "__id__": 139 } ], "_active": true, "_components": [ + { + "__id__": 164 + }, + { + "__id__": 166 + }, { "__id__": 168 - }, - { - "__id__": 170 - }, - { - "__id__": 172 } ], "_prefab": { - "__id__": 174 + "__id__": 170 }, "_lpos": { "__type__": "cc.Vec3", @@ -1325,23 +1247,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 45 + }, + { + "__id__": 47 + }, { "__id__": 49 - }, - { - "__id__": 51 - }, - { - "__id__": 53 } ], "_prefab": { - "__id__": 55 + "__id__": 51 }, "_lpos": { "__type__": "cc.Vec3", @@ -1378,11 +1300,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 48 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 50 + "__id__": 46 }, "_contentSize": { "__type__": "cc.Size", @@ -1406,11 +1328,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 48 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 52 + "__id__": 48 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1451,11 +1373,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 48 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 54 + "__id__": 50 }, "_alignFlags": 45, "_target": null, @@ -1500,23 +1422,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 53 + }, + { + "__id__": 55 + }, { "__id__": 57 - }, - { - "__id__": 59 - }, - { - "__id__": 61 } ], "_prefab": { - "__id__": 63 + "__id__": 59 }, "_lpos": { "__type__": "cc.Vec3", @@ -1553,11 +1475,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 56 + "__id__": 52 }, "_enabled": true, "__prefab": { - "__id__": 58 + "__id__": 54 }, "_contentSize": { "__type__": "cc.Size", @@ -1581,11 +1503,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 56 + "__id__": 52 }, "_enabled": true, "__prefab": { - "__id__": 60 + "__id__": 56 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1649,11 +1571,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 56 + "__id__": 52 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 58 }, "_alignFlags": 8, "_target": null, @@ -1698,39 +1620,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [ { - "__id__": 65 + "__id__": 61 }, { - "__id__": 71 + "__id__": 67 }, { - "__id__": 77 + "__id__": 73 }, { - "__id__": 83 + "__id__": 79 }, { - "__id__": 89 + "__id__": 85 } ], "_active": true, "_components": [ + { + "__id__": 91 + }, + { + "__id__": 93 + }, { "__id__": 95 - }, - { - "__id__": 97 - }, - { - "__id__": 99 } ], "_prefab": { - "__id__": 101 + "__id__": 97 }, "_lpos": { "__type__": "cc.Vec3", @@ -1767,20 +1689,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 64 + "__id__": 60 }, "_children": [], "_active": true, "_components": [ { - "__id__": 66 + "__id__": 62 }, { - "__id__": 68 + "__id__": 64 } ], "_prefab": { - "__id__": 70 + "__id__": 66 }, "_lpos": { "__type__": "cc.Vec3", @@ -1817,11 +1739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 65 + "__id__": 61 }, "_enabled": true, "__prefab": { - "__id__": 67 + "__id__": 63 }, "_contentSize": { "__type__": "cc.Size", @@ -1845,11 +1767,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 65 + "__id__": 61 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 65 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1903,20 +1825,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 64 + "__id__": 60 }, "_children": [], "_active": true, "_components": [ { - "__id__": 72 + "__id__": 68 }, { - "__id__": 74 + "__id__": 70 } ], "_prefab": { - "__id__": 76 + "__id__": 72 }, "_lpos": { "__type__": "cc.Vec3", @@ -1953,11 +1875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 67 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 69 }, "_contentSize": { "__type__": "cc.Size", @@ -1981,11 +1903,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 67 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 71 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2039,20 +1961,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 64 + "__id__": 60 }, "_children": [], "_active": true, "_components": [ { - "__id__": 78 + "__id__": 74 }, { - "__id__": 80 + "__id__": 76 } ], "_prefab": { - "__id__": 82 + "__id__": 78 }, "_lpos": { "__type__": "cc.Vec3", @@ -2089,11 +2011,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 73 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 75 }, "_contentSize": { "__type__": "cc.Size", @@ -2117,11 +2039,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 73 }, "_enabled": true, "__prefab": { - "__id__": 81 + "__id__": 77 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2175,20 +2097,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 64 + "__id__": 60 }, "_children": [], "_active": true, "_components": [ { - "__id__": 84 + "__id__": 80 }, { - "__id__": 86 + "__id__": 82 } ], "_prefab": { - "__id__": 88 + "__id__": 84 }, "_lpos": { "__type__": "cc.Vec3", @@ -2225,11 +2147,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 81 }, "_contentSize": { "__type__": "cc.Size", @@ -2253,11 +2175,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 79 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 83 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2311,20 +2233,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 64 + "__id__": 60 }, "_children": [], "_active": true, "_components": [ { - "__id__": 90 + "__id__": 86 }, { - "__id__": 92 + "__id__": 88 } ], "_prefab": { - "__id__": 94 + "__id__": 90 }, "_lpos": { "__type__": "cc.Vec3", @@ -2361,11 +2283,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 87 }, "_contentSize": { "__type__": "cc.Size", @@ -2389,11 +2311,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 89 + "__id__": 85 }, "_enabled": true, "__prefab": { - "__id__": 93 + "__id__": 89 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2447,11 +2369,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 60 }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 92 }, "_contentSize": { "__type__": "cc.Size", @@ -2475,11 +2397,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 60 }, "_enabled": true, "__prefab": { - "__id__": 98 + "__id__": 94 }, "_alignFlags": 17, "_target": null, @@ -2511,11 +2433,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 64 + "__id__": 60 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 96 }, "_resizeMode": 1, "_layoutType": 1, @@ -2562,33 +2484,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [ { - "__id__": 103 + "__id__": 99 }, { - "__id__": 111 + "__id__": 107 } ], "_active": true, "_components": [ + { + "__id__": 113 + }, + { + "__id__": 115 + }, { "__id__": 117 }, { - "__id__": 119 - }, - { - "__id__": 121 - }, - { - "__id__": 124 + "__id__": 120 } ], "_prefab": { - "__id__": 126 + "__id__": 122 }, "_lpos": { "__type__": "cc.Vec3", @@ -2625,23 +2547,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 102 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 100 + }, + { + "__id__": 102 + }, { "__id__": 104 - }, - { - "__id__": 106 - }, - { - "__id__": 108 } ], "_prefab": { - "__id__": 110 + "__id__": 106 }, "_lpos": { "__type__": "cc.Vec3", @@ -2678,11 +2600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 101 }, "_contentSize": { "__type__": "cc.Size", @@ -2706,11 +2628,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 107 + "__id__": 103 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2751,11 +2673,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 103 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 109 + "__id__": 105 }, "_alignFlags": 8, "_target": null, @@ -2800,20 +2722,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 102 + "__id__": 98 }, "_children": [], "_active": true, "_components": [ { - "__id__": 112 + "__id__": 108 }, { - "__id__": 114 + "__id__": 110 } ], "_prefab": { - "__id__": 116 + "__id__": 112 }, "_lpos": { "__type__": "cc.Vec3", @@ -2850,11 +2772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 111 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 113 + "__id__": 109 }, "_contentSize": { "__type__": "cc.Size", @@ -2878,11 +2800,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 111 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 111 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2962,11 +2884,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 114 }, "_contentSize": { "__type__": "cc.Size", @@ -2990,11 +2912,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 116 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3035,15 +2957,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 118 }, "clickEvents": [ { - "__id__": 123 + "__id__": 119 } ], "_interactable": true, @@ -3083,7 +3005,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 102 + "__id__": 98 }, "_id": "" }, @@ -3107,11 +3029,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 121 }, "_alignFlags": 42, "_target": null, @@ -3156,23 +3078,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 124 + }, + { + "__id__": 126 + }, { "__id__": 128 - }, - { - "__id__": 130 - }, - { - "__id__": 132 } ], "_prefab": { - "__id__": 134 + "__id__": 130 }, "_lpos": { "__type__": "cc.Vec3", @@ -3209,11 +3131,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 127 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 125 }, "_contentSize": { "__type__": "cc.Size", @@ -3237,11 +3159,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 127 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 127 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3305,11 +3227,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 127 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 129 }, "_alignFlags": 9, "_target": null, @@ -3354,23 +3276,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 132 + }, + { + "__id__": 134 + }, { "__id__": 136 - }, - { - "__id__": 138 - }, - { - "__id__": 140 } ], "_prefab": { - "__id__": 142 + "__id__": 138 }, "_lpos": { "__type__": "cc.Vec3", @@ -3407,11 +3329,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 137 + "__id__": 133 }, "_contentSize": { "__type__": "cc.Size", @@ -3435,11 +3357,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 135 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3503,11 +3425,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 135 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 141 + "__id__": 137 }, "_alignFlags": 33, "_target": null, @@ -3552,33 +3474,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 43 }, "_children": [ { - "__id__": 144 + "__id__": 140 }, { - "__id__": 152 + "__id__": 148 } ], "_active": false, "_components": [ + { + "__id__": 154 + }, + { + "__id__": 156 + }, { "__id__": 158 }, { - "__id__": 160 - }, - { - "__id__": 162 - }, - { - "__id__": 165 + "__id__": 161 } ], "_prefab": { - "__id__": 167 + "__id__": 163 }, "_lpos": { "__type__": "cc.Vec3", @@ -3615,23 +3537,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 141 + }, + { + "__id__": 143 + }, { "__id__": 145 - }, - { - "__id__": 147 - }, - { - "__id__": 149 } ], "_prefab": { - "__id__": 151 + "__id__": 147 }, "_lpos": { "__type__": "cc.Vec3", @@ -3668,11 +3590,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 146 + "__id__": 142 }, "_contentSize": { "__type__": "cc.Size", @@ -3696,11 +3618,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 144 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3764,11 +3686,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 146 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -3798,20 +3720,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 153 + "__id__": 149 }, { - "__id__": 155 + "__id__": 151 } ], "_prefab": { - "__id__": 157 + "__id__": 153 }, "_lpos": { "__type__": "cc.Vec3", @@ -3848,11 +3770,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 150 }, "_contentSize": { "__type__": "cc.Size", @@ -3876,11 +3798,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 148 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 152 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3934,11 +3856,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 155 }, "_contentSize": { "__type__": "cc.Size", @@ -3962,11 +3884,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 157 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4007,15 +3929,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 159 }, "clickEvents": [ { - "__id__": 164 + "__id__": 160 } ], "_interactable": true, @@ -4067,7 +3989,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 143 + "__id__": 139 }, "_id": "" }, @@ -4089,11 +4011,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 162 }, "_alignFlags": 16, "_target": null, @@ -4138,11 +4060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 43 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 165 }, "_contentSize": { "__type__": "cc.Size", @@ -4166,11 +4088,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 43 }, "_enabled": false, "__prefab": { - "__id__": 171 + "__id__": 167 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4211,11 +4133,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 43 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 169 }, "_alignFlags": 41, "_target": null, @@ -4260,30 +4182,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 6 + "__id__": 18 }, "_children": [ { - "__id__": 176 + "__id__": 172 }, { - "__id__": 184 + "__id__": 180 } ], "_active": true, "_components": [ + { + "__id__": 188 + }, + { + "__id__": 190 + }, { "__id__": 192 - }, - { - "__id__": 194 - }, - { - "__id__": 196 } ], "_prefab": { - "__id__": 198 + "__id__": 194 }, "_lpos": { "__type__": "cc.Vec3", @@ -4320,23 +4242,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 175 + "__id__": 171 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 173 + }, + { + "__id__": 175 + }, { "__id__": 177 - }, - { - "__id__": 179 - }, - { - "__id__": 181 } ], "_prefab": { - "__id__": 183 + "__id__": 179 }, "_lpos": { "__type__": "cc.Vec3", @@ -4373,11 +4295,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 172 }, "_enabled": true, "__prefab": { - "__id__": 178 + "__id__": 174 }, "_contentSize": { "__type__": "cc.Size", @@ -4401,11 +4323,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 172 }, "_enabled": true, "__prefab": { - "__id__": 180 + "__id__": 176 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4446,11 +4368,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 172 }, "_enabled": true, "__prefab": { - "__id__": 182 + "__id__": 178 }, "_alignFlags": 45, "_target": null, @@ -4495,23 +4417,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 175 + "__id__": 171 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 181 + }, + { + "__id__": 183 + }, { "__id__": 185 - }, - { - "__id__": 187 - }, - { - "__id__": 189 } ], "_prefab": { - "__id__": 191 + "__id__": 187 }, "_lpos": { "__type__": "cc.Vec3", @@ -4548,11 +4470,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 184 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 186 + "__id__": 182 }, "_contentSize": { "__type__": "cc.Size", @@ -4576,11 +4498,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 184 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 184 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4647,11 +4569,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 184 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 186 }, "_alignFlags": 45, "_target": null, @@ -4696,11 +4618,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 193 + "__id__": 189 }, "_contentSize": { "__type__": "cc.Size", @@ -4724,11 +4646,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 171 }, "_enabled": false, "__prefab": { - "__id__": 195 + "__id__": 191 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4769,11 +4691,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 171 }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 193 }, "_alignFlags": 41, "_target": null, @@ -4818,30 +4740,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 6 + "__id__": 18 }, "_children": [ { - "__id__": 200 + "__id__": 196 }, { - "__id__": 234 + "__id__": 230 } ], "_active": true, "_components": [ + { + "__id__": 264 + }, + { + "__id__": 266 + }, { "__id__": 268 - }, - { - "__id__": 270 - }, - { - "__id__": 272 } ], "_prefab": { - "__id__": 274 + "__id__": 270 }, "_lpos": { "__type__": "cc.Vec3", @@ -4878,33 +4800,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 195 }, "_children": [ { - "__id__": 201 + "__id__": 197 }, { - "__id__": 213 + "__id__": 209 } ], "_active": true, "_components": [ + { + "__id__": 221 + }, + { + "__id__": 223 + }, { "__id__": 225 }, { "__id__": 227 - }, - { - "__id__": 229 - }, - { - "__id__": 231 } ], "_prefab": { - "__id__": 233 + "__id__": 229 }, "_lpos": { "__type__": "cc.Vec3", @@ -4941,24 +4863,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 200 + "__id__": 196 }, "_children": [ { - "__id__": 202 + "__id__": 198 } ], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 204 }, { - "__id__": 210 + "__id__": 206 } ], "_prefab": { - "__id__": 212 + "__id__": 208 }, "_lpos": { "__type__": "cc.Vec3", @@ -4995,20 +4917,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 201 + "__id__": 197 }, "_children": [], "_active": true, "_components": [ { - "__id__": 203 + "__id__": 199 }, { - "__id__": 205 + "__id__": 201 } ], "_prefab": { - "__id__": 207 + "__id__": 203 }, "_lpos": { "__type__": "cc.Vec3", @@ -5045,11 +4967,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -5073,11 +4995,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 206 + "__id__": 202 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5131,11 +5053,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 201 + "__id__": 197 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 205 }, "_contentSize": { "__type__": "cc.Size", @@ -5159,11 +5081,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 201 + "__id__": 197 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 207 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5217,24 +5139,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 200 + "__id__": 196 }, "_children": [ { - "__id__": 214 + "__id__": 210 } ], "_active": true, "_components": [ { - "__id__": 220 + "__id__": 216 }, { - "__id__": 222 + "__id__": 218 } ], "_prefab": { - "__id__": 224 + "__id__": 220 }, "_lpos": { "__type__": "cc.Vec3", @@ -5271,20 +5193,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 213 + "__id__": 209 }, "_children": [], "_active": true, "_components": [ { - "__id__": 215 + "__id__": 211 }, { - "__id__": 217 + "__id__": 213 } ], "_prefab": { - "__id__": 219 + "__id__": 215 }, "_lpos": { "__type__": "cc.Vec3", @@ -5321,11 +5243,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 214 + "__id__": 210 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 212 }, "_contentSize": { "__type__": "cc.Size", @@ -5349,11 +5271,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 214 + "__id__": 210 }, "_enabled": true, "__prefab": { - "__id__": 218 + "__id__": 214 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5407,11 +5329,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 213 + "__id__": 209 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 217 }, "_contentSize": { "__type__": "cc.Size", @@ -5435,11 +5357,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 213 + "__id__": 209 }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 219 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5493,11 +5415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 196 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 222 }, "_contentSize": { "__type__": "cc.Size", @@ -5521,11 +5443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 196 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 224 }, "_alignFlags": 5, "_target": null, @@ -5557,17 +5479,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 196 }, "_enabled": true, "__prefab": { - "__id__": 230 + "__id__": 226 }, "selectedSprite": { - "__id__": 222 + "__id__": 218 }, "unSelectedSprite": { - "__id__": 210 + "__id__": 206 }, "_id": "" }, @@ -5581,11 +5503,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 196 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 228 }, "clickEvents": [], "_interactable": true, @@ -5650,33 +5572,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 199 + "__id__": 195 }, "_children": [ { - "__id__": 235 + "__id__": 231 }, { - "__id__": 247 + "__id__": 243 } ], "_active": true, "_components": [ + { + "__id__": 255 + }, + { + "__id__": 257 + }, { "__id__": 259 }, { "__id__": 261 - }, - { - "__id__": 263 - }, - { - "__id__": 265 } ], "_prefab": { - "__id__": 267 + "__id__": 263 }, "_lpos": { "__type__": "cc.Vec3", @@ -5713,24 +5635,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 234 + "__id__": 230 }, "_children": [ { - "__id__": 236 + "__id__": 232 } ], "_active": true, "_components": [ { - "__id__": 242 + "__id__": 238 }, { - "__id__": 244 + "__id__": 240 } ], "_prefab": { - "__id__": 246 + "__id__": 242 }, "_lpos": { "__type__": "cc.Vec3", @@ -5767,20 +5689,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 235 + "__id__": 231 }, "_children": [], "_active": true, "_components": [ { - "__id__": 237 + "__id__": 233 }, { - "__id__": 239 + "__id__": 235 } ], "_prefab": { - "__id__": 241 + "__id__": 237 }, "_lpos": { "__type__": "cc.Vec3", @@ -5817,11 +5739,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 232 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 234 }, "_contentSize": { "__type__": "cc.Size", @@ -5845,11 +5767,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 232 }, "_enabled": true, "__prefab": { - "__id__": 240 + "__id__": 236 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5903,11 +5825,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 231 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 239 }, "_contentSize": { "__type__": "cc.Size", @@ -5931,11 +5853,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 231 }, "_enabled": true, "__prefab": { - "__id__": 245 + "__id__": 241 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5989,24 +5911,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 234 + "__id__": 230 }, "_children": [ { - "__id__": 248 + "__id__": 244 } ], "_active": false, "_components": [ { - "__id__": 254 + "__id__": 250 }, { - "__id__": 256 + "__id__": 252 } ], "_prefab": { - "__id__": 258 + "__id__": 254 }, "_lpos": { "__type__": "cc.Vec3", @@ -6043,20 +5965,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 247 + "__id__": 243 }, "_children": [], "_active": true, "_components": [ { - "__id__": 249 + "__id__": 245 }, { - "__id__": 251 + "__id__": 247 } ], "_prefab": { - "__id__": 253 + "__id__": 249 }, "_lpos": { "__type__": "cc.Vec3", @@ -6093,11 +6015,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 246 }, "_contentSize": { "__type__": "cc.Size", @@ -6121,11 +6043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 252 + "__id__": 248 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6179,11 +6101,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 247 + "__id__": 243 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 251 }, "_contentSize": { "__type__": "cc.Size", @@ -6207,11 +6129,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 247 + "__id__": 243 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 253 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6265,11 +6187,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 234 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 260 + "__id__": 256 }, "_contentSize": { "__type__": "cc.Size", @@ -6293,11 +6215,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 234 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 258 }, "_alignFlags": 5, "_target": null, @@ -6329,17 +6251,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 234 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 260 }, "selectedSprite": { - "__id__": 256 + "__id__": 252 }, "unSelectedSprite": { - "__id__": 244 + "__id__": 240 }, "_id": "" }, @@ -6353,11 +6275,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 234 + "__id__": 230 }, "_enabled": true, "__prefab": { - "__id__": 266 + "__id__": 262 }, "clickEvents": [], "_interactable": true, @@ -6422,11 +6344,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 269 + "__id__": 265 }, "_contentSize": { "__type__": "cc.Size", @@ -6450,11 +6372,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 271 + "__id__": 267 }, "_alignFlags": 40, "_target": null, @@ -6486,11 +6408,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 199 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 269 }, "_id": "" }, @@ -6517,23 +6439,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 6 + "__id__": 18 }, "_children": [], "_active": true, "_components": [ + { + "__id__": 272 + }, + { + "__id__": 274 + }, { "__id__": 276 - }, - { - "__id__": 278 - }, - { - "__id__": 280 } ], "_prefab": { - "__id__": 282 + "__id__": 278 }, "_lpos": { "__type__": "cc.Vec3", @@ -6570,11 +6492,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 271 }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 273 }, "_contentSize": { "__type__": "cc.Size", @@ -6598,11 +6520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 271 }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 275 }, "_resizeMode": 1, "_layoutType": 3, @@ -6636,11 +6558,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 275 + "__id__": 271 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 277 }, "_alignFlags": 40, "_target": null, @@ -6685,11 +6607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 6 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 284 + "__id__": 280 }, "_contentSize": { "__type__": "cc.Size", @@ -6713,11 +6635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 6 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 282 }, "_alignFlags": 41, "_target": null, @@ -6749,11 +6671,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 6 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 288 + "__id__": 284 }, "_resizeMode": 1, "_layoutType": 2, @@ -6800,11 +6722,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 5 + "__id__": 17 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 287 }, "_contentSize": { "__type__": "cc.Size", @@ -6828,11 +6750,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 5 + "__id__": 17 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 289 }, "_type": 0, "_inverted": false, @@ -6850,11 +6772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 5 + "__id__": 17 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 291 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6896,11 +6818,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 5 + "__id__": 17 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 293 }, "_alignFlags": 45, "_target": null, @@ -6945,11 +6867,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 4 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 296 }, "_contentSize": { "__type__": "cc.Size", @@ -6973,11 +6895,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 4 + "__id__": 16 }, "_enabled": false, "__prefab": { - "__id__": 302 + "__id__": 298 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7018,11 +6940,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 4 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 300 }, "bounceDuration": 0.23, "brake": 0.75, @@ -7033,7 +6955,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 6 + "__id__": 18 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -7049,11 +6971,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 4 + "__id__": 16 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 302 }, "_alignFlags": 45, "_target": null, @@ -7098,45 +7020,48 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 3 + "__id__": 15 }, "_children": [ { - "__id__": 309 + "__id__": 305 }, { - "__id__": 315 + "__id__": 311 }, { - "__id__": 321 + "__id__": 335 }, { - "__id__": 327 + "__id__": 341 }, { "__id__": 347 + }, + { + "__id__": 367 } ], "_active": true, "_components": [ { - "__id__": 353 + "__id__": 373 }, { - "__id__": 355 + "__id__": 375 }, { - "__id__": 357 + "__id__": 377 }, { - "__id__": 359 + "__id__": 379 }, { - "__id__": 361 + "__id__": 381 } ], "_prefab": { - "__id__": 363 + "__id__": 383 }, "_lpos": { "__type__": "cc.Vec3", @@ -7173,20 +7098,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 308 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 310 + "__id__": 306 }, { - "__id__": 312 + "__id__": 308 } ], "_prefab": { - "__id__": 314 + "__id__": 310 }, "_lpos": { "__type__": "cc.Vec3", @@ -7223,11 +7148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 309 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 307 }, "_contentSize": { "__type__": "cc.Size", @@ -7251,11 +7176,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 309 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 313 + "__id__": 309 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7302,24 +7227,87 @@ }, { "__type__": "cc.Node", - "_name": "question", + "_name": "loadingItem", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 308 + "__id__": 304 + }, + "_children": [ + { + "__id__": 312 + }, + { + "__id__": 320 + } + ], + "_active": true, + "_components": [ + { + "__id__": 328 + }, + { + "__id__": 330 + }, + { + "__id__": 332 + } + ], + "_prefab": { + "__id__": 334 + }, + "_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": "loadingBg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 311 }, "_children": [], "_active": true, "_components": [ { - "__id__": 316 + "__id__": 313 }, { - "__id__": 318 + "__id__": 315 + }, + { + "__id__": 317 } ], "_prefab": { - "__id__": 320 + "__id__": 319 }, "_lpos": { "__type__": "cc.Vec3", @@ -7356,11 +7344,449 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 312 }, "_enabled": true, "__prefab": { - "__id__": 317 + "__id__": 314 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 341, + "height": 438 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a3YshOlT5IRa7PFO6Jv6BW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 312 + }, + "_enabled": true, + "__prefab": { + "__id__": 316 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 96 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "704aFvonVHcaKCbImNYlnr" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 312 + }, + "_enabled": true, + "__prefab": { + "__id__": 318 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "31g9lyq0ZItZZdLmF1t83K" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51Ex0kehtCDbTSgJQPlsGR", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "resLoading", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 311 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 321 + }, + { + "__id__": 323 + }, + { + "__id__": 325 + } + ], + "_prefab": { + "__id__": 327 + }, + "_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__": 320 + }, + "_enabled": true, + "__prefab": { + "__id__": 322 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 128, + "height": 128 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8fpLDSRTFHC7vP9+YYNKvh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 320 + }, + "_enabled": true, + "__prefab": { + "__id__": 324 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e8be7976-0d87-45c7-835a-efe2933394ac@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a9DIPdDeJLCpEf3QPqzpn6" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 320 + }, + "_enabled": true, + "__prefab": { + "__id__": 326 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f80TYtqT1G3LST/wNLnHSU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dcKJF7UjlE5bF9E/hIkjR7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 311 + }, + "_enabled": true, + "__prefab": { + "__id__": 329 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 341, + "height": 438 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "74oPNX+WpDD7/tTSPzKPeD" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 311 + }, + "_enabled": true, + "__prefab": { + "__id__": 331 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fcK2qkfjlC+66jGum6S7WI" + }, + { + "__type__": "38c12VeC51MEarg68KNWAIi", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 311 + }, + "_enabled": true, + "__prefab": { + "__id__": 333 + }, + "animation": { + "__id__": 325 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23coME3hhGppobVJezCwhr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35lfLxLQNEN78ANP1Hk6aV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 304 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 336 + }, + { + "__id__": 338 + } + ], + "_prefab": { + "__id__": 340 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 335 + }, + "_enabled": true, + "__prefab": { + "__id__": 337 }, "_contentSize": { "__type__": "cc.Size", @@ -7384,11 +7810,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 315 + "__id__": 335 }, "_enabled": true, "__prefab": { - "__id__": 319 + "__id__": 339 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7442,20 +7868,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 308 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 322 + "__id__": 342 }, { - "__id__": 324 + "__id__": 344 } ], "_prefab": { - "__id__": 326 + "__id__": 346 }, "_lpos": { "__type__": "cc.Vec3", @@ -7492,11 +7918,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 321 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 343 }, "_contentSize": { "__type__": "cc.Size", @@ -7520,11 +7946,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 321 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 325 + "__id__": 345 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7578,30 +8004,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 308 + "__id__": 304 }, "_children": [ { - "__id__": 328 + "__id__": 348 }, { - "__id__": 334 + "__id__": 354 } ], "_active": true, "_components": [ { - "__id__": 340 + "__id__": 360 }, { - "__id__": 342 + "__id__": 362 }, { - "__id__": 344 + "__id__": 364 } ], "_prefab": { - "__id__": 346 + "__id__": 366 }, "_lpos": { "__type__": "cc.Vec3", @@ -7638,20 +8064,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 327 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 329 + "__id__": 349 }, { - "__id__": 331 + "__id__": 351 } ], "_prefab": { - "__id__": 333 + "__id__": 353 }, "_lpos": { "__type__": "cc.Vec3", @@ -7688,11 +8114,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 348 }, "_enabled": true, "__prefab": { - "__id__": 330 + "__id__": 350 }, "_contentSize": { "__type__": "cc.Size", @@ -7716,11 +8142,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 348 }, "_enabled": true, "__prefab": { - "__id__": 332 + "__id__": 352 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7797,20 +8223,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 327 + "__id__": 347 }, "_children": [], "_active": true, "_components": [ { - "__id__": 335 + "__id__": 355 }, { - "__id__": 337 + "__id__": 357 } ], "_prefab": { - "__id__": 339 + "__id__": 359 }, "_lpos": { "__type__": "cc.Vec3", @@ -7847,11 +8273,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 334 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 336 + "__id__": 356 }, "_contentSize": { "__type__": "cc.Size", @@ -7875,11 +8301,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 334 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 358 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7933,11 +8359,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 347 }, "_enabled": true, "__prefab": { - "__id__": 341 + "__id__": 361 }, "_contentSize": { "__type__": "cc.Size", @@ -7961,11 +8387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 347 }, "_enabled": true, "__prefab": { - "__id__": 343 + "__id__": 363 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8006,11 +8432,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 327 + "__id__": 347 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 365 }, "_alignFlags": 9, "_target": null, @@ -8055,20 +8481,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 308 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 348 + "__id__": 368 }, { - "__id__": 350 + "__id__": 370 } ], "_prefab": { - "__id__": 352 + "__id__": 372 }, "_lpos": { "__type__": "cc.Vec3", @@ -8105,11 +8531,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 347 + "__id__": 367 }, "_enabled": true, "__prefab": { - "__id__": 349 + "__id__": 369 }, "_contentSize": { "__type__": "cc.Size", @@ -8133,11 +8559,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 347 + "__id__": 367 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 371 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8214,11 +8640,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 374 }, "_contentSize": { "__type__": "cc.Size", @@ -8242,11 +8668,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 356 + "__id__": 376 }, "clickEvents": [], "_interactable": true, @@ -8286,7 +8712,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 308 + "__id__": 304 }, "_id": "" }, @@ -8300,26 +8726,29 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 378 }, "img": { - "__id__": 312 + "__id__": 308 }, "question": { - "__id__": 315 + "__id__": 335 }, "video": { - "__id__": 324 + "__id__": 344 }, "priceFrame": { - "__id__": 327 + "__id__": 347 }, "videoPrice": { - "__id__": 331 + "__id__": 351 + }, + "loading": { + "__id__": 311 }, "_id": "" }, @@ -8333,11 +8762,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 380 }, "_type": 0, "_inverted": false, @@ -8355,11 +8784,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 362 + "__id__": 382 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8414,11 +8843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3 + "__id__": 15 }, "_enabled": true, "__prefab": { - "__id__": 365 + "__id__": 385 }, "_contentSize": { "__type__": "cc.Size", @@ -8442,11 +8871,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3 + "__id__": 15 }, "_enabled": false, "__prefab": { - "__id__": 367 + "__id__": 387 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8487,11 +8916,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 3 + "__id__": 15 }, "_enabled": true, "__prefab": { - "__id__": 369 + "__id__": 389 }, "_alignFlags": 45, "_target": null, @@ -8542,20 +8971,20 @@ "_active": true, "_components": [ { - "__id__": 372 + "__id__": 392 }, { - "__id__": 374 + "__id__": 394 }, { - "__id__": 376 + "__id__": 396 }, { - "__id__": 379 + "__id__": 399 } ], "_prefab": { - "__id__": 381 + "__id__": 401 }, "_lpos": { "__type__": "cc.Vec3", @@ -8592,11 +9021,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 393 }, "_contentSize": { "__type__": "cc.Size", @@ -8620,11 +9049,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 375 + "__id__": 395 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8665,15 +9094,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 377 + "__id__": 397 }, "clickEvents": [ { - "__id__": 378 + "__id__": 398 } ], "_interactable": true, @@ -8713,7 +9142,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 371 + "__id__": 391 }, "_id": "" }, @@ -8737,11 +9166,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 371 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 380 + "__id__": 400 }, "_alignFlags": 9, "_target": null, @@ -8790,7 +9219,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 403 }, "_contentSize": { "__type__": "cc.Size", @@ -8818,7 +9247,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 385 + "__id__": 405 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8863,7 +9292,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 407 }, "_alignFlags": 45, "_target": null, @@ -8912,7 +9341,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 390 + "__id__": 410 }, "_contentSize": { "__type__": "cc.Size", @@ -8940,7 +9369,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 392 + "__id__": 412 }, "_alignFlags": 45, "_target": null, @@ -8976,7 +9405,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 394 + "__id__": 414 }, "_id": "" }, @@ -8994,41 +9423,41 @@ }, "_enabled": true, "__prefab": { - "__id__": 396 + "__id__": 416 }, "m_rootNode": null, "videoArea": { - "__id__": 10 + "__id__": 22 }, "girlName": { - "__id__": 59 + "__id__": 55 }, "imgToggle": { - "__id__": 229 + "__id__": 225 }, "videoToggle": { - "__id__": 263 + "__id__": 259 }, "starParent": { - "__id__": 64 + "__id__": 60 }, "tags": { - "__id__": 130 + "__id__": 126 }, "descAge": { - "__id__": 138 + "__id__": 134 }, "desc": { - "__id__": 187 + "__id__": 183 }, "chatBtn": { - "__id__": 102 + "__id__": 98 }, "imgItemInst": { - "__id__": 357 + "__id__": 377 }, "imgsLayout": { - "__id__": 275 + "__id__": 271 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlListPanel.prefab b/assets/bundles/Chat18x/GirlListPanel.prefab index 222b2847..28d10cd6 100644 --- a/assets/bundles/Chat18x/GirlListPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPanel.prefab @@ -25,20 +25,20 @@ "_active": true, "_components": [ { - "__id__": 226 + "__id__": 250 }, { - "__id__": 228 + "__id__": 252 }, { - "__id__": 230 + "__id__": 254 }, { - "__id__": 232 + "__id__": 256 } ], "_prefab": { - "__id__": 234 + "__id__": 258 }, "_lpos": { "__type__": "cc.Vec3", @@ -82,23 +82,23 @@ "__id__": 3 }, { - "__id__": 190 + "__id__": 214 } ], "_active": true, "_components": [ { - "__id__": 219 + "__id__": 243 }, { - "__id__": 221 + "__id__": 245 }, { - "__id__": 223 + "__id__": 247 } ], "_prefab": { - "__id__": 225 + "__id__": 249 }, "_lpos": { "__type__": "cc.Vec3", @@ -145,20 +145,20 @@ "_active": true, "_components": [ { - "__id__": 181 + "__id__": 205 }, { - "__id__": 183 + "__id__": 207 }, { - "__id__": 185 + "__id__": 209 }, { - "__id__": 187 + "__id__": 211 } ], "_prefab": { - "__id__": 189 + "__id__": 213 }, "_lpos": { "__type__": "cc.Vec3", @@ -205,20 +205,20 @@ "_active": true, "_components": [ { - "__id__": 172 + "__id__": 196 }, { - "__id__": 174 + "__id__": 198 }, { - "__id__": 176 + "__id__": 200 }, { - "__id__": 178 + "__id__": 202 } ], "_prefab": { - "__id__": 180 + "__id__": 204 }, "_lpos": { "__type__": "cc.Vec3", @@ -262,26 +262,26 @@ "__id__": 6 }, { - "__id__": 155 + "__id__": 179 } ], "_active": true, "_components": [ { - "__id__": 163 + "__id__": 187 }, { - "__id__": 165 + "__id__": 189 }, { - "__id__": 167 + "__id__": 191 }, { - "__id__": 169 + "__id__": 193 } ], "_prefab": { - "__id__": 171 + "__id__": 195 }, "_lpos": { "__type__": "cc.Vec3", @@ -328,41 +328,41 @@ "__id__": 15 }, { - "__id__": 31 + "__id__": 55 }, { - "__id__": 45 + "__id__": 69 }, { - "__id__": 51 + "__id__": 75 }, { - "__id__": 125 + "__id__": 149 } ], "_active": true, "_components": [ { - "__id__": 141 + "__id__": 165 }, { - "__id__": 143 + "__id__": 167 }, { - "__id__": 145 + "__id__": 169 }, { - "__id__": 147 + "__id__": 171 }, { - "__id__": 149 + "__id__": 173 }, { - "__id__": 151 + "__id__": 175 } ], "_prefab": { - "__id__": 154 + "__id__": 178 }, "_lpos": { "__type__": "cc.Vec3", @@ -579,25 +579,28 @@ "_children": [ { "__id__": 16 + }, + { + "__id__": 22 } ], "_active": true, "_components": [ { - "__id__": 22 + "__id__": 46 }, { - "__id__": 24 + "__id__": 48 }, { - "__id__": 26 + "__id__": 50 }, { - "__id__": 28 + "__id__": 52 } ], "_prefab": { - "__id__": 30 + "__id__": 54 }, "_lpos": { "__type__": "cc.Vec3", @@ -764,6 +767,507 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "loadingItem", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 15 + }, + "_children": [ + { + "__id__": 23 + }, + { + "__id__": 31 + } + ], + "_active": true, + "_components": [ + { + "__id__": 39 + }, + { + "__id__": 41 + }, + { + "__id__": 43 + } + ], + "_prefab": { + "__id__": 45 + }, + "_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": "loadingBg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 24 + }, + { + "__id__": 26 + }, + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 30 + }, + "_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__": 23 + }, + "_enabled": true, + "__prefab": { + "__id__": 25 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fdfhQHr19FIJYhXUBo3yKd" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 23 + }, + "_enabled": true, + "__prefab": { + "__id__": 27 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 96 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49cHNlSg1I94PSjOnyaTR/" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 23 + }, + "_enabled": true, + "__prefab": { + "__id__": 29 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fbaBiM4AFAkqsplWLJWA+K" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "81pKKIZLxEra2kjg7cD85x", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "resLoading", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 22 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 32 + }, + { + "__id__": 34 + }, + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 38 + }, + "_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__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 33 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 128, + "height": 128 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "be9DKG+g5IiLoPc1ir/dpn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 35 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e8be7976-0d87-45c7-835a-efe2933394ac@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b5tzyQOdRDX5OIXHsjRRbq" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 37 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ceot9YZQRMx6HoM4pKtM+8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60Q+AKiSxCsbJMg7lQ0RuF", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 22 + }, + "_enabled": true, + "__prefab": { + "__id__": 40 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 300 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "66rhV5av9NTL0Lj74ZEIbG" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 22 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ee8GkkqrlPNpwfcocT50YV" + }, + { + "__type__": "38c12VeC51MEarg68KNWAIi", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 22 + }, + "_enabled": true, + "__prefab": { + "__id__": 44 + }, + "animation": { + "__id__": 36 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "88H3BZomlH3qWKWst9+Neo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "05wxDfv5BB0p0563OLFVB9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -774,7 +1278,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 23 + "__id__": 47 }, "_contentSize": { "__type__": "cc.Size", @@ -802,7 +1306,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 25 + "__id__": 49 }, "_type": 0, "_inverted": false, @@ -824,7 +1328,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 51 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -870,7 +1374,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 53 }, "_alignFlags": 13, "_target": null, @@ -919,23 +1423,23 @@ }, "_children": [ { - "__id__": 32 + "__id__": 56 } ], "_active": true, "_components": [ { - "__id__": 38 + "__id__": 62 }, { - "__id__": 40 + "__id__": 64 }, { - "__id__": 42 + "__id__": 66 } ], "_prefab": { - "__id__": 44 + "__id__": 68 }, "_lpos": { "__type__": "cc.Vec3", @@ -972,20 +1476,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 31 + "__id__": 55 }, "_children": [], "_active": true, "_components": [ { - "__id__": 33 + "__id__": 57 }, { - "__id__": 35 + "__id__": 59 } ], "_prefab": { - "__id__": 37 + "__id__": 61 }, "_lpos": { "__type__": "cc.Vec3", @@ -1022,11 +1526,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 34 + "__id__": 58 }, "_contentSize": { "__type__": "cc.Size", @@ -1050,11 +1554,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 32 + "__id__": 56 }, "_enabled": true, "__prefab": { - "__id__": 36 + "__id__": 60 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1108,11 +1612,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 39 + "__id__": 63 }, "_contentSize": { "__type__": "cc.Size", @@ -1136,11 +1640,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 65 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1181,11 +1685,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 31 + "__id__": 55 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 67 }, "_alignFlags": 45, "_target": null, @@ -1236,14 +1740,14 @@ "_active": true, "_components": [ { - "__id__": 46 + "__id__": 70 }, { - "__id__": 48 + "__id__": 72 } ], "_prefab": { - "__id__": 50 + "__id__": 74 }, "_lpos": { "__type__": "cc.Vec3", @@ -1280,11 +1784,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 45 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 47 + "__id__": 71 }, "_contentSize": { "__type__": "cc.Size", @@ -1308,11 +1812,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 45 + "__id__": 69 }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 73 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1370,32 +1874,32 @@ }, "_children": [ { - "__id__": 52 + "__id__": 76 }, { - "__id__": 60 + "__id__": 84 }, { - "__id__": 68 + "__id__": 92 }, { - "__id__": 106 + "__id__": 130 } ], "_active": true, "_components": [ { - "__id__": 118 + "__id__": 142 }, { - "__id__": 120 + "__id__": 144 }, { - "__id__": 122 + "__id__": 146 } ], "_prefab": { - "__id__": 124 + "__id__": 148 }, "_lpos": { "__type__": "cc.Vec3", @@ -1432,23 +1936,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 51 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 53 + "__id__": 77 }, { - "__id__": 55 + "__id__": 79 }, { - "__id__": 57 + "__id__": 81 } ], "_prefab": { - "__id__": 59 + "__id__": 83 }, "_lpos": { "__type__": "cc.Vec3", @@ -1485,11 +1989,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 76 }, "_enabled": true, "__prefab": { - "__id__": 54 + "__id__": 78 }, "_contentSize": { "__type__": "cc.Size", @@ -1513,11 +2017,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 76 }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 80 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1584,11 +2088,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 76 }, "_enabled": true, "__prefab": { - "__id__": 58 + "__id__": 82 }, "_alignFlags": 8, "_target": null, @@ -1633,23 +2137,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 51 + "__id__": 75 }, "_children": [], "_active": true, "_components": [ { - "__id__": 61 + "__id__": 85 }, { - "__id__": 63 + "__id__": 87 }, { - "__id__": 65 + "__id__": 89 } ], "_prefab": { - "__id__": 67 + "__id__": 91 }, "_lpos": { "__type__": "cc.Vec3", @@ -1686,11 +2190,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 84 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 86 }, "_contentSize": { "__type__": "cc.Size", @@ -1714,11 +2218,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 84 }, "_enabled": true, "__prefab": { - "__id__": 64 + "__id__": 88 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1782,11 +2286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 84 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 90 }, "_alignFlags": 13, "_target": null, @@ -1831,39 +2335,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 51 + "__id__": 75 }, "_children": [ - { - "__id__": 69 - }, - { - "__id__": 75 - }, - { - "__id__": 81 - }, - { - "__id__": 87 - }, { "__id__": 93 + }, + { + "__id__": 99 + }, + { + "__id__": 105 + }, + { + "__id__": 111 + }, + { + "__id__": 117 } ], "_active": true, "_components": [ { - "__id__": 99 + "__id__": 123 }, { - "__id__": 101 + "__id__": 125 }, { - "__id__": 103 + "__id__": 127 } ], "_prefab": { - "__id__": 105 + "__id__": 129 }, "_lpos": { "__type__": "cc.Vec3", @@ -1900,20 +2404,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 92 }, "_children": [], "_active": true, "_components": [ { - "__id__": 70 + "__id__": 94 }, { - "__id__": 72 + "__id__": 96 } ], "_prefab": { - "__id__": 74 + "__id__": 98 }, "_lpos": { "__type__": "cc.Vec3", @@ -1950,11 +2454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 69 + "__id__": 93 }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 95 }, "_contentSize": { "__type__": "cc.Size", @@ -1978,11 +2482,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 69 + "__id__": 93 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 97 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2036,20 +2540,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 92 }, "_children": [], "_active": true, "_components": [ { - "__id__": 76 + "__id__": 100 }, { - "__id__": 78 + "__id__": 102 } ], "_prefab": { - "__id__": 80 + "__id__": 104 }, "_lpos": { "__type__": "cc.Vec3", @@ -2086,11 +2590,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 101 }, "_contentSize": { "__type__": "cc.Size", @@ -2114,11 +2618,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 99 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 103 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2172,20 +2676,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 92 }, "_children": [], "_active": true, "_components": [ { - "__id__": 82 + "__id__": 106 }, { - "__id__": 84 + "__id__": 108 } ], "_prefab": { - "__id__": 86 + "__id__": 110 }, "_lpos": { "__type__": "cc.Vec3", @@ -2222,11 +2726,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 107 }, "_contentSize": { "__type__": "cc.Size", @@ -2250,11 +2754,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 109 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2308,20 +2812,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 92 }, "_children": [], "_active": true, "_components": [ { - "__id__": 88 + "__id__": 112 }, { - "__id__": 90 + "__id__": 114 } ], "_prefab": { - "__id__": 92 + "__id__": 116 }, "_lpos": { "__type__": "cc.Vec3", @@ -2358,11 +2862,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 111 }, "_enabled": true, "__prefab": { - "__id__": 89 + "__id__": 113 }, "_contentSize": { "__type__": "cc.Size", @@ -2386,11 +2890,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 87 + "__id__": 111 }, "_enabled": true, "__prefab": { - "__id__": 91 + "__id__": 115 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2444,20 +2948,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 92 }, "_children": [], "_active": true, "_components": [ { - "__id__": 94 + "__id__": 118 }, { - "__id__": 96 + "__id__": 120 } ], "_prefab": { - "__id__": 98 + "__id__": 122 }, "_lpos": { "__type__": "cc.Vec3", @@ -2494,11 +2998,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 117 }, "_enabled": true, "__prefab": { - "__id__": 95 + "__id__": 119 }, "_contentSize": { "__type__": "cc.Size", @@ -2522,11 +3026,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 93 + "__id__": 117 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 121 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2580,11 +3084,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 92 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 124 }, "_contentSize": { "__type__": "cc.Size", @@ -2608,11 +3112,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 92 }, "_enabled": true, "__prefab": { - "__id__": 102 + "__id__": 126 }, "_alignFlags": 12, "_target": null, @@ -2644,11 +3148,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 92 }, "_enabled": false, "__prefab": { - "__id__": 104 + "__id__": 128 }, "_resizeMode": 1, "_layoutType": 1, @@ -2695,24 +3199,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 51 + "__id__": 75 }, "_children": [ { - "__id__": 107 + "__id__": 131 } ], "_active": true, "_components": [ { - "__id__": 113 + "__id__": 137 }, { - "__id__": 115 + "__id__": 139 } ], "_prefab": { - "__id__": 117 + "__id__": 141 }, "_lpos": { "__type__": "cc.Vec3", @@ -2749,20 +3253,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 106 + "__id__": 130 }, "_children": [], "_active": true, "_components": [ { - "__id__": 108 + "__id__": 132 }, { - "__id__": 110 + "__id__": 134 } ], "_prefab": { - "__id__": 112 + "__id__": 136 }, "_lpos": { "__type__": "cc.Vec3", @@ -2799,11 +3303,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 109 + "__id__": 133 }, "_contentSize": { "__type__": "cc.Size", @@ -2827,11 +3331,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 107 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 111 + "__id__": 135 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2885,11 +3389,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 138 }, "_contentSize": { "__type__": "cc.Size", @@ -2913,11 +3417,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 106 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 140 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2997,11 +3501,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 75 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 143 }, "_contentSize": { "__type__": "cc.Size", @@ -3025,11 +3529,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 75 }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 145 }, "_alignFlags": 13, "_target": null, @@ -3061,11 +3565,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 51 + "__id__": 75 }, "_enabled": false, "__prefab": { - "__id__": 123 + "__id__": 147 }, "_resizeMode": 0, "_layoutType": 2, @@ -3116,23 +3620,23 @@ }, "_children": [ { - "__id__": 126 + "__id__": 150 } ], "_active": true, "_components": [ { - "__id__": 134 + "__id__": 158 }, { - "__id__": 136 + "__id__": 160 }, { - "__id__": 138 + "__id__": 162 } ], "_prefab": { - "__id__": 140 + "__id__": 164 }, "_lpos": { "__type__": "cc.Vec3", @@ -3169,23 +3673,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 125 + "__id__": 149 }, "_children": [], "_active": true, "_components": [ { - "__id__": 127 + "__id__": 151 }, { - "__id__": 129 + "__id__": 153 }, { - "__id__": 131 + "__id__": 155 } ], "_prefab": { - "__id__": 133 + "__id__": 157 }, "_lpos": { "__type__": "cc.Vec3", @@ -3222,11 +3726,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 126 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 152 }, "_contentSize": { "__type__": "cc.Size", @@ -3250,11 +3754,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 126 + "__id__": 150 }, "_enabled": false, "__prefab": { - "__id__": 130 + "__id__": 154 }, "_alignFlags": 18, "_target": null, @@ -3286,11 +3790,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 126 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 156 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3344,11 +3848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 125 + "__id__": 149 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 159 }, "_contentSize": { "__type__": "cc.Size", @@ -3372,11 +3876,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 125 + "__id__": 149 }, "_enabled": false, "__prefab": { - "__id__": 137 + "__id__": 161 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3417,11 +3921,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 125 + "__id__": 149 }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 163 }, "_alignFlags": 37, "_target": null, @@ -3470,7 +3974,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 166 }, "_contentSize": { "__type__": "cc.Size", @@ -3498,7 +4002,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 168 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3543,7 +4047,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 146 + "__id__": 170 }, "_alignFlags": 16, "_target": null, @@ -3579,31 +4083,34 @@ }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 172 }, "avatar": { "__id__": 19 }, "girlName": { - "__id__": 55 + "__id__": 79 }, "tags": { - "__id__": 63 + "__id__": 87 }, "price": { - "__id__": 115 + "__id__": 139 }, "freeNode": { - "__id__": 126 + "__id__": 150 }, "unreleaseCover": { - "__id__": 31 + "__id__": 55 }, "chatIcon": { - "__id__": 45 + "__id__": 69 }, "starParent": { - "__id__": 68 + "__id__": 92 + }, + "loading": { + "__id__": 22 }, "_id": "" }, @@ -3621,7 +4128,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 174 }, "_type": 3, "_inverted": false, @@ -3643,11 +4150,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 176 }, "clickEvents": [ { - "__id__": 153 + "__id__": 177 } ], "_interactable": true, @@ -3728,17 +4235,17 @@ "_active": true, "_components": [ { - "__id__": 156 + "__id__": 180 }, { - "__id__": 158 + "__id__": 182 }, { - "__id__": 160 + "__id__": 184 } ], "_prefab": { - "__id__": 162 + "__id__": 186 }, "_lpos": { "__type__": "cc.Vec3", @@ -3775,11 +4282,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 181 }, "_contentSize": { "__type__": "cc.Size", @@ -3803,11 +4310,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 183 }, "_resizeMode": 1, "_layoutType": 2, @@ -3841,11 +4348,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 185 }, "_alignFlags": 40, "_target": null, @@ -3894,7 +4401,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 188 }, "_contentSize": { "__type__": "cc.Size", @@ -3922,7 +4429,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 190 }, "_type": 0, "_inverted": false, @@ -3944,7 +4451,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 168 + "__id__": 192 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3990,7 +4497,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 170 + "__id__": 194 }, "_alignFlags": 45, "_target": null, @@ -4039,7 +4546,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 197 }, "_contentSize": { "__type__": "cc.Size", @@ -4067,7 +4574,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 175 + "__id__": 199 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4112,7 +4619,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 201 }, "bounceDuration": 0.23, "brake": 0.75, @@ -4123,7 +4630,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 155 + "__id__": 179 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -4143,7 +4650,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 203 }, "_alignFlags": 45, "_target": null, @@ -4192,7 +4699,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 182 + "__id__": 206 }, "_contentSize": { "__type__": "cc.Size", @@ -4220,7 +4727,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 208 }, "_alignFlags": 45, "_target": null, @@ -4256,7 +4763,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 186 + "__id__": 210 }, "_type": 0, "_inverted": false, @@ -4278,7 +4785,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 212 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4337,26 +4844,26 @@ }, "_children": [ { - "__id__": 191 + "__id__": 215 }, { - "__id__": 202 + "__id__": 226 } ], "_active": true, "_components": [ { - "__id__": 212 + "__id__": 236 }, { - "__id__": 214 + "__id__": 238 }, { - "__id__": 216 + "__id__": 240 } ], "_prefab": { - "__id__": 218 + "__id__": 242 }, "_lpos": { "__type__": "cc.Vec3", @@ -4393,26 +4900,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 190 + "__id__": 214 }, "_children": [], "_active": true, "_components": [ { - "__id__": 192 + "__id__": 216 }, { - "__id__": 194 + "__id__": 218 }, { - "__id__": 196 + "__id__": 220 }, { - "__id__": 199 + "__id__": 223 } ], "_prefab": { - "__id__": 201 + "__id__": 225 }, "_lpos": { "__type__": "cc.Vec3", @@ -4449,11 +4956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 191 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 193 + "__id__": 217 }, "_contentSize": { "__type__": "cc.Size", @@ -4477,11 +4984,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 191 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 195 + "__id__": 219 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4522,15 +5029,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 191 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 221 }, "clickEvents": [ { - "__id__": 198 + "__id__": 222 } ], "_interactable": true, @@ -4570,7 +5077,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 191 + "__id__": 215 }, "_id": "" }, @@ -4594,11 +5101,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 191 + "__id__": 215 }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 224 }, "_alignFlags": 10, "_target": null, @@ -4643,26 +5150,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 190 + "__id__": 214 }, "_children": [], "_active": true, "_components": [ { - "__id__": 203 + "__id__": 227 }, { - "__id__": 205 + "__id__": 229 }, { - "__id__": 207 + "__id__": 231 }, { - "__id__": 209 + "__id__": 233 } ], "_prefab": { - "__id__": 211 + "__id__": 235 }, "_lpos": { "__type__": "cc.Vec3", @@ -4699,11 +5206,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 226 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 228 }, "_contentSize": { "__type__": "cc.Size", @@ -4727,11 +5234,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 226 }, "_enabled": true, "__prefab": { - "__id__": 206 + "__id__": 230 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4798,11 +5305,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 226 }, "_enabled": true, "__prefab": { - "__id__": 208 + "__id__": 232 }, "_alignFlags": 18, "_target": null, @@ -4834,11 +5341,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 202 + "__id__": 226 }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 234 }, "languageKey": "girllistpanel.title", "defaultText": "", @@ -4868,11 +5375,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 237 }, "_contentSize": { "__type__": "cc.Size", @@ -4896,11 +5403,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 215 + "__id__": 239 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4941,11 +5448,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 241 }, "_alignFlags": 41, "_target": null, @@ -4994,7 +5501,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 220 + "__id__": 244 }, "_contentSize": { "__type__": "cc.Size", @@ -5022,7 +5529,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 246 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5067,7 +5574,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 248 }, "_alignFlags": 45, "_target": null, @@ -5116,7 +5623,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 251 }, "_contentSize": { "__type__": "cc.Size", @@ -5144,7 +5651,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 253 }, "_alignFlags": 45, "_target": null, @@ -5180,7 +5687,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 255 }, "m_rootNode": null, "_id": "" @@ -5199,7 +5706,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 257 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlListPopupPanel.prefab b/assets/bundles/Chat18x/GirlListPopupPanel.prefab index c611bb06..bb7c84b1 100644 --- a/assets/bundles/Chat18x/GirlListPopupPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPopupPanel.prefab @@ -27,21 +27,21 @@ ], "_active": true, "_components": [ - { - "__id__": 134 - }, - { - "__id__": 136 - }, - { - "__id__": 138 - }, { "__id__": 140 + }, + { + "__id__": 142 + }, + { + "__id__": 144 + }, + { + "__id__": 146 } ], "_prefab": { - "__id__": 142 + "__id__": 148 }, "_lpos": { "__type__": "cc.Vec3", @@ -281,32 +281,32 @@ "__id__": 13 }, { - "__id__": 21 - }, - { - "__id__": 29 + "__id__": 27 }, { "__id__": 35 }, { - "__id__": 117 + "__id__": 41 + }, + { + "__id__": 123 } ], "_active": true, "_components": [ { - "__id__": 127 + "__id__": 133 }, { - "__id__": 129 + "__id__": 135 }, { - "__id__": 131 + "__id__": 137 } ], "_prefab": { - "__id__": 133 + "__id__": 139 }, "_lpos": { "__type__": "cc.Vec3", @@ -345,21 +345,22 @@ "_parent": { "__id__": 12 }, - "_children": [], + "_children": [ + { + "__id__": 14 + } + ], "_active": true, "_components": [ { - "__id__": 14 + "__id__": 22 }, { - "__id__": 16 - }, - { - "__id__": 18 + "__id__": 24 } ], "_prefab": { - "__id__": 20 + "__id__": 26 }, "_lpos": { "__type__": "cc.Vec3", @@ -390,6 +391,178 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 13 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 15 + }, + { + "__id__": 17 + }, + { + "__id__": 19 + } + ], + "_prefab": { + "__id__": 21 + }, + "_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__": 14 + }, + "_enabled": true, + "__prefab": { + "__id__": 16 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 1116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "88nBTupBdLbJOjZMsDSj+6" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 14 + }, + "_enabled": true, + "__prefab": { + "__id__": 18 + }, + "_alignFlags": 42, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 508, + "_bottom": 508, + "_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": "cf6oixIwFLF7Oyk3WLJ80u" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 14 + }, + "_enabled": true, + "__prefab": { + "__id__": 20 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "76KlC6ynBIJKnefcHVlKeg" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "96LF96k0dK55viVb2m59IN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -400,7 +573,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 15 + "__id__": 23 }, "_contentSize": { "__type__": "cc.Size", @@ -418,51 +591,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "62HYM4/4FMeqov90g1yrso" }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 13 - }, - "_enabled": true, - "__prefab": { - "__id__": 17 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "20fad4e5-6a91-4685-8861-b7b4a85512d6@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": "6bIQdUE+xBipSQNpaAyXn+" - }, { "__type__": "cc.Widget", "_name": "", @@ -473,7 +601,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 19 + "__id__": 25 }, "_alignFlags": 1, "_target": null, @@ -524,17 +652,17 @@ "_active": true, "_components": [ { - "__id__": 22 + "__id__": 28 }, { - "__id__": 24 + "__id__": 30 }, { - "__id__": 26 + "__id__": 32 } ], "_prefab": { - "__id__": 28 + "__id__": 34 }, "_lpos": { "__type__": "cc.Vec3", @@ -571,11 +699,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 21 + "__id__": 27 }, "_enabled": true, "__prefab": { - "__id__": 23 + "__id__": 29 }, "_contentSize": { "__type__": "cc.Size", @@ -599,11 +727,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 21 + "__id__": 27 }, "_enabled": true, "__prefab": { - "__id__": 25 + "__id__": 31 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -644,11 +772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 21 + "__id__": 27 }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 33 }, "_alignFlags": 40, "_target": null, @@ -699,14 +827,14 @@ "_active": true, "_components": [ { - "__id__": 30 + "__id__": 36 }, { - "__id__": 32 + "__id__": 38 } ], "_prefab": { - "__id__": 34 + "__id__": 40 }, "_lpos": { "__type__": "cc.Vec3", @@ -743,11 +871,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 37 }, "_contentSize": { "__type__": "cc.Size", @@ -771,11 +899,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 29 + "__id__": 35 }, "_enabled": true, "__prefab": { - "__id__": 33 + "__id__": 39 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -833,32 +961,32 @@ }, "_children": [ { - "__id__": 36 + "__id__": 42 }, { - "__id__": 44 + "__id__": 50 }, { - "__id__": 52 + "__id__": 58 }, { - "__id__": 90 + "__id__": 96 } ], "_active": true, "_components": [ { - "__id__": 110 + "__id__": 116 }, { - "__id__": 112 + "__id__": 118 }, { - "__id__": 114 + "__id__": 120 } ], "_prefab": { - "__id__": 116 + "__id__": 122 }, "_lpos": { "__type__": "cc.Vec3", @@ -895,23 +1023,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 35 + "__id__": 41 }, "_children": [], "_active": true, "_components": [ { - "__id__": 37 + "__id__": 43 }, { - "__id__": 39 + "__id__": 45 }, { - "__id__": 41 + "__id__": 47 } ], "_prefab": { - "__id__": 43 + "__id__": 49 }, "_lpos": { "__type__": "cc.Vec3", @@ -948,11 +1076,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 42 }, "_enabled": true, "__prefab": { - "__id__": 38 + "__id__": 44 }, "_contentSize": { "__type__": "cc.Size", @@ -976,11 +1104,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 42 }, "_enabled": true, "__prefab": { - "__id__": 40 + "__id__": 46 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1047,11 +1175,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 42 }, "_enabled": true, "__prefab": { - "__id__": 42 + "__id__": 48 }, "_alignFlags": 9, "_target": null, @@ -1096,23 +1224,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 35 + "__id__": 41 }, "_children": [], "_active": true, "_components": [ { - "__id__": 45 + "__id__": 51 }, { - "__id__": 47 + "__id__": 53 }, { - "__id__": 49 + "__id__": 55 } ], "_prefab": { - "__id__": 51 + "__id__": 57 }, "_lpos": { "__type__": "cc.Vec3", @@ -1149,11 +1277,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 44 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 46 + "__id__": 52 }, "_contentSize": { "__type__": "cc.Size", @@ -1177,11 +1305,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 44 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 48 + "__id__": 54 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1248,11 +1376,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 44 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 50 + "__id__": 56 }, "_alignFlags": 9, "_target": null, @@ -1297,12 +1425,9 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 35 + "__id__": 41 }, "_children": [ - { - "__id__": 53 - }, { "__id__": 59 }, @@ -1314,22 +1439,25 @@ }, { "__id__": 77 + }, + { + "__id__": 83 } ], "_active": false, "_components": [ { - "__id__": 83 + "__id__": 89 }, { - "__id__": 85 + "__id__": 91 }, { - "__id__": 87 + "__id__": 93 } ], "_prefab": { - "__id__": 89 + "__id__": 95 }, "_lpos": { "__type__": "cc.Vec3", @@ -1366,20 +1494,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 52 + "__id__": 58 }, "_children": [], "_active": true, "_components": [ { - "__id__": 54 + "__id__": 60 }, { - "__id__": 56 + "__id__": 62 } ], "_prefab": { - "__id__": 58 + "__id__": 64 }, "_lpos": { "__type__": "cc.Vec3", @@ -1416,11 +1544,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 53 + "__id__": 59 }, "_enabled": true, "__prefab": { - "__id__": 55 + "__id__": 61 }, "_contentSize": { "__type__": "cc.Size", @@ -1444,11 +1572,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 53 + "__id__": 59 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 63 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1502,20 +1630,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 52 + "__id__": 58 }, "_children": [], "_active": true, "_components": [ { - "__id__": 60 + "__id__": 66 }, { - "__id__": 62 + "__id__": 68 } ], "_prefab": { - "__id__": 64 + "__id__": 70 }, "_lpos": { "__type__": "cc.Vec3", @@ -1552,11 +1680,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 65 }, "_enabled": true, "__prefab": { - "__id__": 61 + "__id__": 67 }, "_contentSize": { "__type__": "cc.Size", @@ -1580,11 +1708,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 59 + "__id__": 65 }, "_enabled": true, "__prefab": { - "__id__": 63 + "__id__": 69 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1638,20 +1766,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 52 + "__id__": 58 }, "_children": [], "_active": true, "_components": [ { - "__id__": 66 + "__id__": 72 }, { - "__id__": 68 + "__id__": 74 } ], "_prefab": { - "__id__": 70 + "__id__": 76 }, "_lpos": { "__type__": "cc.Vec3", @@ -1688,11 +1816,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 65 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 67 + "__id__": 73 }, "_contentSize": { "__type__": "cc.Size", @@ -1716,11 +1844,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 65 + "__id__": 71 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 75 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1774,20 +1902,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 52 + "__id__": 58 }, "_children": [], "_active": true, "_components": [ { - "__id__": 72 + "__id__": 78 }, { - "__id__": 74 + "__id__": 80 } ], "_prefab": { - "__id__": 76 + "__id__": 82 }, "_lpos": { "__type__": "cc.Vec3", @@ -1824,11 +1952,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 79 }, "_contentSize": { "__type__": "cc.Size", @@ -1852,11 +1980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 71 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 81 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1910,20 +2038,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 52 + "__id__": 58 }, "_children": [], "_active": true, "_components": [ { - "__id__": 78 + "__id__": 84 }, { - "__id__": 80 + "__id__": 86 } ], "_prefab": { - "__id__": 82 + "__id__": 88 }, "_lpos": { "__type__": "cc.Vec3", @@ -1960,11 +2088,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 85 }, "_contentSize": { "__type__": "cc.Size", @@ -1988,11 +2116,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 81 + "__id__": 87 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2046,11 +2174,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 58 }, "_enabled": true, "__prefab": { - "__id__": 84 + "__id__": 90 }, "_contentSize": { "__type__": "cc.Size", @@ -2074,11 +2202,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 58 }, "_enabled": true, "__prefab": { - "__id__": 86 + "__id__": 92 }, "_alignFlags": 8, "_target": null, @@ -2110,11 +2238,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 52 + "__id__": 58 }, "_enabled": false, "__prefab": { - "__id__": 88 + "__id__": 94 }, "_resizeMode": 1, "_layoutType": 1, @@ -2161,24 +2289,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 35 + "__id__": 41 }, "_children": [ { - "__id__": 91 + "__id__": 97 } ], "_active": true, "_components": [ { - "__id__": 105 + "__id__": 111 }, { - "__id__": 107 + "__id__": 113 } ], "_prefab": { - "__id__": 109 + "__id__": 115 }, "_lpos": { "__type__": "cc.Vec3", @@ -2215,24 +2343,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 90 + "__id__": 96 }, "_children": [ { - "__id__": 92 + "__id__": 98 } ], "_active": true, "_components": [ { - "__id__": 100 + "__id__": 106 }, { - "__id__": 102 + "__id__": 108 } ], "_prefab": { - "__id__": 104 + "__id__": 110 }, "_lpos": { "__type__": "cc.Vec3", @@ -2269,23 +2397,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 91 + "__id__": 97 }, "_children": [], "_active": true, "_components": [ { - "__id__": 93 + "__id__": 99 }, { - "__id__": 95 + "__id__": 101 }, { - "__id__": 97 + "__id__": 103 } ], "_prefab": { - "__id__": 99 + "__id__": 105 }, "_lpos": { "__type__": "cc.Vec3", @@ -2322,11 +2450,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 94 + "__id__": 100 }, "_contentSize": { "__type__": "cc.Size", @@ -2350,11 +2478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 98 }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 102 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2395,11 +2523,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 92 + "__id__": 98 }, "_enabled": false, "__prefab": { - "__id__": 98 + "__id__": 104 }, "_alignFlags": 8, "_target": null, @@ -2444,11 +2572,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 91 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 107 }, "_contentSize": { "__type__": "cc.Size", @@ -2472,11 +2600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 91 + "__id__": 97 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 109 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2556,11 +2684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 90 + "__id__": 96 }, "_enabled": true, "__prefab": { - "__id__": 106 + "__id__": 112 }, "_contentSize": { "__type__": "cc.Size", @@ -2584,11 +2712,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 90 + "__id__": 96 }, "_enabled": true, "__prefab": { - "__id__": 108 + "__id__": 114 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2642,11 +2770,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 111 + "__id__": 117 }, "_contentSize": { "__type__": "cc.Size", @@ -2670,11 +2798,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 113 + "__id__": 119 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2715,11 +2843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 121 }, "_alignFlags": 4, "_target": null, @@ -2769,21 +2897,21 @@ "_children": [], "_active": true, "_components": [ - { - "__id__": 118 - }, - { - "__id__": 120 - }, - { - "__id__": 122 - }, { "__id__": 124 + }, + { + "__id__": 126 + }, + { + "__id__": 128 + }, + { + "__id__": 130 } ], "_prefab": { - "__id__": 126 + "__id__": 132 }, "_lpos": { "__type__": "cc.Vec3", @@ -2820,11 +2948,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 117 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 125 }, "_contentSize": { "__type__": "cc.Size", @@ -2848,11 +2976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 117 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 127 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2893,11 +3021,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 117 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 129 }, "clickEvents": [], "_interactable": true, @@ -2949,7 +3077,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 117 + "__id__": 123 }, "_id": "" }, @@ -2963,11 +3091,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 117 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 131 }, "_alignFlags": 33, "_target": null, @@ -3016,7 +3144,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 134 }, "_contentSize": { "__type__": "cc.Size", @@ -3044,7 +3172,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 130 + "__id__": 136 }, "_type": 3, "_inverted": false, @@ -3066,7 +3194,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3124,7 +3252,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 141 }, "_contentSize": { "__type__": "cc.Size", @@ -3152,7 +3280,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 137 + "__id__": 143 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3197,7 +3325,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 139 + "__id__": 145 }, "_type": 3, "_inverted": false, @@ -3219,7 +3347,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 141 + "__id__": 147 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/PopupGirlDetailPanel.prefab b/assets/bundles/Chat18x/PopupGirlDetailPanel.prefab index f5333411..c59f6b5d 100644 --- a/assets/bundles/Chat18x/PopupGirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/PopupGirlDetailPanel.prefab @@ -22,35 +22,35 @@ "__id__": 2 }, { - "__id__": 10 + "__id__": 14 }, { - "__id__": 18 + "__id__": 22 }, { - "__id__": 24 + "__id__": 28 }, { - "__id__": 60 + "__id__": 64 } ], "_active": true, "_components": [ - { - "__id__": 70 - }, - { - "__id__": 72 - }, { "__id__": 74 }, { "__id__": 76 + }, + { + "__id__": 78 + }, + { + "__id__": 80 } ], "_prefab": { - "__id__": 78 + "__id__": 82 }, "_lpos": { "__type__": "cc.Vec3", @@ -89,21 +89,22 @@ "_parent": { "__id__": 1 }, - "_children": [], + "_children": [ + { + "__id__": 3 + } + ], "_active": true, "_components": [ { - "__id__": 3 + "__id__": 9 }, { - "__id__": 5 - }, - { - "__id__": 7 + "__id__": 11 } ], "_prefab": { - "__id__": 9 + "__id__": 13 }, "_lpos": { "__type__": "cc.Vec3", @@ -134,6 +135,139 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 2 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 4 + }, + { + "__id__": 6 + } + ], + "_prefab": { + "__id__": 8 + }, + "_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__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 5 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 1116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eaW3zMx21LeJH3Hwx9DMaw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 3 + }, + "_enabled": true, + "__prefab": { + "__id__": 7 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "44OXz3QYZGn7FrV7rAjdT2" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "baeVmjRypPQp5QUya2CMIl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -144,7 +278,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 4 + "__id__": 10 }, "_contentSize": { "__type__": "cc.Size", @@ -162,51 +296,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "0268Taq45PvozsNZXrmVZj" }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 2 - }, - "_enabled": true, - "__prefab": { - "__id__": 6 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "1000b7ea-1ea6-4f0b-8e42-72dba307f062@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": "79O8qgmR1LiIMSZ3G/Z3Jv" - }, { "__type__": "cc.Widget", "_name": "", @@ -217,9 +306,9 @@ }, "_enabled": true, "__prefab": { - "__id__": 8 + "__id__": 12 }, - "_alignFlags": 1, + "_alignFlags": 41, "_target": null, "_left": 0, "_right": 0, @@ -233,7 +322,7 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 0, + "_originalWidth": 865, "_originalHeight": 0, "_alignMode": 2, "_lockFlags": 0, @@ -267,18 +356,18 @@ "_children": [], "_active": true, "_components": [ - { - "__id__": 11 - }, - { - "__id__": 13 - }, { "__id__": 15 + }, + { + "__id__": 17 + }, + { + "__id__": 19 } ], "_prefab": { - "__id__": 17 + "__id__": 21 }, "_lpos": { "__type__": "cc.Vec3", @@ -315,11 +404,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 14 }, "_enabled": true, "__prefab": { - "__id__": 12 + "__id__": 16 }, "_contentSize": { "__type__": "cc.Size", @@ -343,11 +432,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 14 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 18 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -388,11 +477,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 14 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 20 }, "_alignFlags": 40, "_target": null, @@ -443,14 +532,14 @@ "_active": true, "_components": [ { - "__id__": 19 + "__id__": 23 }, { - "__id__": 21 + "__id__": 25 } ], "_prefab": { - "__id__": 23 + "__id__": 27 }, "_lpos": { "__type__": "cc.Vec3", @@ -487,11 +576,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 22 }, "_enabled": true, "__prefab": { - "__id__": 20 + "__id__": 24 }, "_contentSize": { "__type__": "cc.Size", @@ -515,11 +604,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 18 + "__id__": 22 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 26 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -577,26 +666,26 @@ }, "_children": [ { - "__id__": 25 + "__id__": 29 }, { - "__id__": 33 + "__id__": 37 } ], "_active": true, "_components": [ - { - "__id__": 53 - }, - { - "__id__": 55 - }, { "__id__": 57 + }, + { + "__id__": 59 + }, + { + "__id__": 61 } ], "_prefab": { - "__id__": 59 + "__id__": 63 }, "_lpos": { "__type__": "cc.Vec3", @@ -633,23 +722,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 24 + "__id__": 28 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 26 - }, - { - "__id__": 28 - }, { "__id__": 30 + }, + { + "__id__": 32 + }, + { + "__id__": 34 } ], "_prefab": { - "__id__": 32 + "__id__": 36 }, "_lpos": { "__type__": "cc.Vec3", @@ -686,11 +775,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 29 }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 31 }, "_contentSize": { "__type__": "cc.Size", @@ -714,11 +803,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 29 }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 33 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -785,11 +874,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 25 + "__id__": 29 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 35 }, "_alignFlags": 41, "_target": null, @@ -834,24 +923,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 24 + "__id__": 28 }, "_children": [ { - "__id__": 34 + "__id__": 38 } ], "_active": true, "_components": [ { - "__id__": 48 + "__id__": 52 }, { - "__id__": 50 + "__id__": 54 } ], "_prefab": { - "__id__": 52 + "__id__": 56 }, "_lpos": { "__type__": "cc.Vec3", @@ -888,24 +977,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 37 }, "_children": [ { - "__id__": 35 + "__id__": 39 } ], "_active": true, "_components": [ { - "__id__": 43 + "__id__": 47 }, { - "__id__": 45 + "__id__": 49 } ], "_prefab": { - "__id__": 47 + "__id__": 51 }, "_lpos": { "__type__": "cc.Vec3", @@ -942,23 +1031,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 34 + "__id__": 38 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 36 - }, - { - "__id__": 38 - }, { "__id__": 40 + }, + { + "__id__": 42 + }, + { + "__id__": 44 } ], "_prefab": { - "__id__": 42 + "__id__": 46 }, "_lpos": { "__type__": "cc.Vec3", @@ -995,11 +1084,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 37 + "__id__": 41 }, "_contentSize": { "__type__": "cc.Size", @@ -1023,11 +1112,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 39 }, "_enabled": true, "__prefab": { - "__id__": 39 + "__id__": 43 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1068,11 +1157,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 35 + "__id__": 39 }, "_enabled": false, "__prefab": { - "__id__": 41 + "__id__": 45 }, "_alignFlags": 8, "_target": null, @@ -1117,11 +1206,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 44 + "__id__": 48 }, "_contentSize": { "__type__": "cc.Size", @@ -1145,11 +1234,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 38 }, "_enabled": true, "__prefab": { - "__id__": 46 + "__id__": 50 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1229,11 +1318,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 53 }, "_contentSize": { "__type__": "cc.Size", @@ -1257,11 +1346,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 37 }, "_enabled": true, "__prefab": { - "__id__": 51 + "__id__": 55 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1315,11 +1404,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 28 }, "_enabled": true, "__prefab": { - "__id__": 54 + "__id__": 58 }, "_contentSize": { "__type__": "cc.Size", @@ -1343,11 +1432,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 28 }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 60 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1388,11 +1477,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 28 }, "_enabled": true, "__prefab": { - "__id__": 58 + "__id__": 62 }, "_alignFlags": 4, "_target": null, @@ -1442,21 +1531,21 @@ "_children": [], "_active": true, "_components": [ - { - "__id__": 61 - }, - { - "__id__": 63 - }, { "__id__": 65 }, { "__id__": 67 + }, + { + "__id__": 69 + }, + { + "__id__": 71 } ], "_prefab": { - "__id__": 69 + "__id__": 73 }, "_lpos": { "__type__": "cc.Vec3", @@ -1493,11 +1582,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 64 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 66 }, "_contentSize": { "__type__": "cc.Size", @@ -1521,11 +1610,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 64 }, "_enabled": true, "__prefab": { - "__id__": 64 + "__id__": 68 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1566,11 +1655,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 64 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 70 }, "clickEvents": [], "_interactable": true, @@ -1622,7 +1711,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 60 + "__id__": 64 }, "_id": "" }, @@ -1636,11 +1725,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 64 }, "_enabled": true, "__prefab": { - "__id__": 68 + "__id__": 72 }, "_alignFlags": 33, "_target": null, @@ -1689,7 +1778,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 75 }, "_contentSize": { "__type__": "cc.Size", @@ -1717,7 +1806,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 77 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1762,7 +1851,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 79 }, "_type": 3, "_inverted": false, @@ -1784,7 +1873,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 81 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/ThemePanel.prefab b/assets/bundles/Chat18x/ThemePanel.prefab index 167660db..20501e9d 100644 --- a/assets/bundles/Chat18x/ThemePanel.prefab +++ b/assets/bundles/Chat18x/ThemePanel.prefab @@ -25,17 +25,17 @@ "_active": true, "_components": [ { - "__id__": 376 + "__id__": 424 }, { - "__id__": 378 + "__id__": 426 }, { - "__id__": 380 + "__id__": 428 } ], "_prefab": { - "__id__": 382 + "__id__": 430 }, "_lpos": { "__type__": "cc.Vec3", @@ -85,17 +85,17 @@ "_active": true, "_components": [ { - "__id__": 369 + "__id__": 417 }, { - "__id__": 371 + "__id__": 419 }, { - "__id__": 373 + "__id__": 421 } ], "_prefab": { - "__id__": 375 + "__id__": 423 }, "_lpos": { "__type__": "cc.Vec3", @@ -525,7 +525,7 @@ }, "clickEvents": [], "_interactable": true, - "_transition": 1, + "_transition": 3, "_normalColor": { "__type__": "cc.Color", "r": 255, @@ -559,7 +559,7 @@ "_pressedSprite": null, "_disabledSprite": null, "_duration": 0.1, - "_zoomScale": 1.2, + "_zoomScale": 0.9, "_target": { "__id__": 12 }, @@ -647,7 +647,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -342.1, + "x": -483.41787109375, "y": -74.1880000000001, "z": 0 }, @@ -693,7 +693,7 @@ }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, + "x": 0, "y": 0.5 }, "_id": "" @@ -785,9 +785,9 @@ "__prefab": { "__id__": 28 }, - "_alignFlags": 17, + "_alignFlags": 9, "_target": null, - "_left": 0, + "_left": 56.58212890624998, "_right": 0, "_top": 135.6780000000001, "_bottom": 108.25899999999993, @@ -872,7 +872,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -186.67000000000002, + "x": -486.904375, "y": -165.1840000000002, "z": 0 }, @@ -918,7 +918,7 @@ }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0.5, + "x": 0, "y": 0.5 }, "_id": "" @@ -1010,9 +1010,9 @@ "__prefab": { "__id__": 38 }, - "_alignFlags": 17, + "_alignFlags": 9, "_target": null, - "_left": 0, + "_left": 53.095624999999984, "_right": 0, "_top": 226.6740000000002, "_bottom": 108.25899999999993, @@ -2871,23 +2871,23 @@ "__id__": 192 }, { - "__id__": 254 + "__id__": 278 } ], "_active": true, "_components": [ { - "__id__": 362 + "__id__": 410 }, { - "__id__": 364 + "__id__": 412 }, { - "__id__": 366 + "__id__": 414 } ], "_prefab": { - "__id__": 368 + "__id__": 416 }, "_lpos": { "__type__": "cc.Vec3", @@ -3379,10 +3379,7 @@ "b": 255, "a": 255 }, - "_spriteFrame": { - "__uuid__": "cfd5524f-1860-4b97-ac54-edfe0990e92f@f9941", - "__expectedType__": "cc.SpriteFrame" - }, + "_spriteFrame": null, "_type": 0, "_fillType": 0, "_sizeMode": 0, @@ -4538,33 +4535,33 @@ { "__id__": 193 }, - { - "__id__": 209 - }, - { - "__id__": 225 - }, { "__id__": 233 }, - { - "__id__": 239 - } - ], - "_active": true, - "_components": [ - { - "__id__": 247 - }, { "__id__": 249 }, { - "__id__": 251 + "__id__": 257 + }, + { + "__id__": 263 + } + ], + "_active": true, + "_components": [ + { + "__id__": 271 + }, + { + "__id__": 273 + }, + { + "__id__": 275 } ], "_prefab": { - "__id__": 253 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -4606,25 +4603,28 @@ "_children": [ { "__id__": 194 + }, + { + "__id__": 200 } ], "_active": true, "_components": [ { - "__id__": 200 + "__id__": 224 }, { - "__id__": 202 + "__id__": 226 }, { - "__id__": 204 + "__id__": 228 }, { - "__id__": 206 + "__id__": 230 } ], "_prefab": { - "__id__": 208 + "__id__": 232 }, "_lpos": { "__type__": "cc.Vec3", @@ -4791,6 +4791,507 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "loadingItem", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 193 + }, + "_children": [ + { + "__id__": 201 + }, + { + "__id__": 209 + } + ], + "_active": true, + "_components": [ + { + "__id__": 217 + }, + { + "__id__": 219 + }, + { + "__id__": 221 + } + ], + "_prefab": { + "__id__": 223 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "loadingBg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 202 + }, + { + "__id__": 204 + }, + { + "__id__": 206 + } + ], + "_prefab": { + "__id__": 208 + }, + "_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__": 201 + }, + "_enabled": true, + "__prefab": { + "__id__": 203 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 461, + "height": 461 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8Dlc8TXNO9ZnLq6znUmI0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 201 + }, + "_enabled": true, + "__prefab": { + "__id__": 205 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 96 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "25J2/9BWxCyZCsfJb2s/NH" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 201 + }, + "_enabled": true, + "__prefab": { + "__id__": 207 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "07swJQRoFDDKrPMy2iJHL7" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d47gKY5yVJhJ5BP3rLMBz7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "resLoading", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 200 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 210 + }, + { + "__id__": 212 + }, + { + "__id__": 214 + } + ], + "_prefab": { + "__id__": 216 + }, + "_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__": 209 + }, + "_enabled": true, + "__prefab": { + "__id__": 211 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 128, + "height": 128 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6ar2A25iNNx7Ukt2/wGiEI" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 209 + }, + "_enabled": true, + "__prefab": { + "__id__": 213 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e8be7976-0d87-45c7-835a-efe2933394ac@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dd2u4cEepN3YsNtcZVmF5u" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 209 + }, + "_enabled": true, + "__prefab": { + "__id__": 215 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e04P1ZMiBJwKyIB4zEyUjH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fgYA15JBL84sy7YZ2Cjcu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 218 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 461, + "height": 461 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bcYYaQoxtAYbMi0+xfwV2V" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 220 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ceOnsEjy9KhYPgOkpC5Saa" + }, + { + "__type__": "38c12VeC51MEarg68KNWAIi", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 222 + }, + "animation": { + "__id__": 214 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eeY4tOFWVLabYeJeMtxauL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fkx8eqGVGhI4Q1RoGW0kL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -4801,7 +5302,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 201 + "__id__": 225 }, "_contentSize": { "__type__": "cc.Size", @@ -4829,7 +5330,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 203 + "__id__": 227 }, "_alignFlags": 45, "_target": null, @@ -4865,7 +5366,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 205 + "__id__": 229 }, "_type": 3, "_inverted": false, @@ -4887,7 +5388,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 207 + "__id__": 231 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4945,23 +5446,23 @@ }, "_children": [ { - "__id__": 210 + "__id__": 234 } ], "_active": true, "_components": [ { - "__id__": 218 + "__id__": 242 }, { - "__id__": 220 + "__id__": 244 }, { - "__id__": 222 + "__id__": 246 } ], "_prefab": { - "__id__": 224 + "__id__": 248 }, "_lpos": { "__type__": "cc.Vec3", @@ -4998,23 +5499,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 209 + "__id__": 233 }, "_children": [], "_active": true, "_components": [ { - "__id__": 211 + "__id__": 235 }, { - "__id__": 213 + "__id__": 237 }, { - "__id__": 215 + "__id__": 239 } ], "_prefab": { - "__id__": 217 + "__id__": 241 }, "_lpos": { "__type__": "cc.Vec3", @@ -5051,11 +5552,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 210 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 212 + "__id__": 236 }, "_contentSize": { "__type__": "cc.Size", @@ -5079,11 +5580,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 210 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 238 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5150,11 +5651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 210 + "__id__": 234 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 240 }, "_alignFlags": 40, "_target": null, @@ -5199,11 +5700,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 209 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 243 }, "_contentSize": { "__type__": "cc.Size", @@ -5227,11 +5728,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 209 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 245 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5272,11 +5773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 209 + "__id__": 233 }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 247 }, "_alignFlags": 12, "_target": null, @@ -5327,17 +5828,17 @@ "_active": true, "_components": [ { - "__id__": 226 + "__id__": 250 }, { - "__id__": 228 + "__id__": 252 }, { - "__id__": 230 + "__id__": 254 } ], "_prefab": { - "__id__": 232 + "__id__": 256 }, "_lpos": { "__type__": "cc.Vec3", @@ -5374,11 +5875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 249 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 251 }, "_contentSize": { "__type__": "cc.Size", @@ -5402,11 +5903,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 249 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 253 }, "_alignFlags": 45, "_target": null, @@ -5438,11 +5939,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 225 + "__id__": 249 }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 255 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5502,14 +6003,14 @@ "_active": true, "_components": [ { - "__id__": 234 + "__id__": 258 }, { - "__id__": 236 + "__id__": 260 } ], "_prefab": { - "__id__": 238 + "__id__": 262 }, "_lpos": { "__type__": "cc.Vec3", @@ -5546,11 +6047,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 233 + "__id__": 257 }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", @@ -5574,11 +6075,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 233 + "__id__": 257 }, "_enabled": true, "__prefab": { - "__id__": 237 + "__id__": 261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5638,17 +6139,17 @@ "_active": false, "_components": [ { - "__id__": 240 + "__id__": 264 }, { - "__id__": 242 + "__id__": 266 }, { - "__id__": 244 + "__id__": 268 } ], "_prefab": { - "__id__": 246 + "__id__": 270 }, "_lpos": { "__type__": "cc.Vec3", @@ -5685,11 +6186,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 239 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 265 }, "_contentSize": { "__type__": "cc.Size", @@ -5713,11 +6214,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 239 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 267 }, "_alignFlags": 45, "_target": null, @@ -5749,11 +6250,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 239 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 245 + "__id__": 269 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5811,7 +6312,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 248 + "__id__": 272 }, "_contentSize": { "__type__": "cc.Size", @@ -5839,11 +6340,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 274 }, "clickEvents": [], "_interactable": true, - "_transition": 0, + "_transition": 3, "_normalColor": { "__type__": "cc.Color", "r": 255, @@ -5897,16 +6398,19 @@ }, "_enabled": true, "__prefab": { - "__id__": 252 + "__id__": 276 }, "lockImg": { - "__id__": 236 + "__id__": 260 }, "lockCover": { - "__id__": 230 + "__id__": 254 }, "titleName": { - "__id__": 213 + "__id__": 237 + }, + "loading": { + "__id__": 200 }, "img": { "__id__": 197 @@ -5940,26 +6444,26 @@ }, "_children": [ { - "__id__": 255 + "__id__": 279 } ], "_active": true, "_components": [ { - "__id__": 353 + "__id__": 401 }, { - "__id__": 355 + "__id__": 403 }, { - "__id__": 357 + "__id__": 405 }, { - "__id__": 359 + "__id__": 407 } ], "_prefab": { - "__id__": 361 + "__id__": 409 }, "_lpos": { "__type__": "cc.Vec3", @@ -5996,30 +6500,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 254 + "__id__": 278 }, "_children": [ { - "__id__": 256 + "__id__": 280 } ], "_active": true, "_components": [ { - "__id__": 344 + "__id__": 392 }, { - "__id__": 346 + "__id__": 394 }, { - "__id__": 348 + "__id__": 396 }, { - "__id__": 350 + "__id__": 398 } ], "_prefab": { - "__id__": 352 + "__id__": 400 }, "_lpos": { "__type__": "cc.Vec3", @@ -6056,30 +6560,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 255 + "__id__": 279 }, "_children": [ { - "__id__": 257 + "__id__": 281 }, { - "__id__": 329 + "__id__": 377 } ], "_active": true, "_components": [ { - "__id__": 337 + "__id__": 385 }, { - "__id__": 339 + "__id__": 387 }, { - "__id__": 341 + "__id__": 389 } ], "_prefab": { - "__id__": 343 + "__id__": 391 }, "_lpos": { "__type__": "cc.Vec3", @@ -6116,30 +6620,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 256 + "__id__": 280 }, "_children": [ { - "__id__": 258 + "__id__": 282 }, { - "__id__": 266 + "__id__": 290 }, { - "__id__": 316 + "__id__": 364 } ], "_active": true, "_components": [ { - "__id__": 324 + "__id__": 372 }, { - "__id__": 326 + "__id__": 374 } ], "_prefab": { - "__id__": 328 + "__id__": 376 }, "_lpos": { "__type__": "cc.Vec3", @@ -6176,23 +6680,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 257 + "__id__": 281 }, "_children": [], "_active": true, "_components": [ { - "__id__": 259 + "__id__": 283 }, { - "__id__": 261 + "__id__": 285 }, { - "__id__": 263 + "__id__": 287 } ], "_prefab": { - "__id__": 265 + "__id__": 289 }, "_lpos": { "__type__": "cc.Vec3", @@ -6229,11 +6733,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 258 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 260 + "__id__": 284 }, "_contentSize": { "__type__": "cc.Size", @@ -6257,11 +6761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 258 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 286 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6302,11 +6806,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 258 + "__id__": 282 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 288 }, "_alignFlags": 18, "_target": null, @@ -6351,39 +6855,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 257 + "__id__": 281 }, "_children": [ { - "__id__": 267 + "__id__": 291 }, { - "__id__": 281 + "__id__": 329 }, { - "__id__": 289 + "__id__": 337 }, { - "__id__": 297 + "__id__": 345 } ], "_active": true, "_components": [ { - "__id__": 307 + "__id__": 355 }, { - "__id__": 309 + "__id__": 357 }, { - "__id__": 311 + "__id__": 359 }, { - "__id__": 313 + "__id__": 361 } ], "_prefab": { - "__id__": 315 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -6420,27 +6924,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 266 + "__id__": 290 }, "_children": [ { - "__id__": 268 + "__id__": 292 + }, + { + "__id__": 298 } ], "_active": true, "_components": [ { - "__id__": 274 + "__id__": 322 }, { - "__id__": 276 + "__id__": 324 }, { - "__id__": 278 + "__id__": 326 } ], "_prefab": { - "__id__": 280 + "__id__": 328 }, "_lpos": { "__type__": "cc.Vec3", @@ -6473,24 +6980,24 @@ }, { "__type__": "cc.Node", - "_name": "recPicSlot", + "_name": "recPic", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 267 + "__id__": 291 }, "_children": [], "_active": true, "_components": [ { - "__id__": 269 + "__id__": 293 }, { - "__id__": 271 + "__id__": 295 } ], "_prefab": { - "__id__": 273 + "__id__": 297 }, "_lpos": { "__type__": "cc.Vec3", @@ -6527,11 +7034,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 268 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 270 + "__id__": 294 }, "_contentSize": { "__type__": "cc.Size", @@ -6547,7 +7054,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "f0SMAICEFLVIOSKgJcY1HJ" + "fileId": "0bEqlgzHlP8IVcC5SwL0Jk" }, { "__type__": "cc.Sprite", @@ -6555,11 +7062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 268 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 272 + "__id__": 296 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6571,8 +7078,204 @@ "b": 255, "a": 255 }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ceGbejratHtai/db2Bdi0p" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "020S6zR3hNB598RbAbDyVy", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "loadingRec", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 291 + }, + "_children": [ + { + "__id__": 299 + }, + { + "__id__": 307 + } + ], + "_active": true, + "_components": [ + { + "__id__": 315 + }, + { + "__id__": 317 + }, + { + "__id__": 319 + } + ], + "_prefab": { + "__id__": 321 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 231.35, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "loadingBg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 298 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 300 + }, + { + "__id__": 302 + }, + { + "__id__": 304 + } + ], + "_prefab": { + "__id__": 306 + }, + "_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__": 299 + }, + "_enabled": true, + "__prefab": { + "__id__": 301 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 462.7, + "height": 446.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "95jWrznzlFp5COGlO+WFop" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 299 + }, + "_enabled": true, + "__prefab": { + "__id__": 303 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 96 + }, "_spriteFrame": { - "__uuid__": "777fc276-1999-4eba-a9a4-9bcfb84cbd72@f9941", + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -6592,7 +7295,43 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "0263KFBdRCwpA+0Ejrr4jt" + "fileId": "2dsTbcTKBJp4512N5WDAwH" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 299 + }, + "_enabled": true, + "__prefab": { + "__id__": 305 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1er0WbL3tAtJFXRQT+HNH3" }, { "__type__": "cc.PrefabInfo", @@ -6602,7 +7341,175 @@ "asset": { "__id__": 0 }, - "fileId": "05EMaDKjdF8LvKxeR+GfMx", + "fileId": "7bc0xS/GtK/JTjM4d4dP90", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "resLoading", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 298 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 308 + }, + { + "__id__": 310 + }, + { + "__id__": 312 + } + ], + "_prefab": { + "__id__": 314 + }, + "_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__": 307 + }, + "_enabled": true, + "__prefab": { + "__id__": 309 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 128, + "height": 128 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1b7Y0AbJZB45+7HQ8KAzF8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 307 + }, + "_enabled": true, + "__prefab": { + "__id__": 311 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e8be7976-0d87-45c7-835a-efe2933394ac@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b3Ut8wdxRBhaSeWSIhIksa" + }, + { + "__type__": "cc.Animation", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 307 + }, + "_enabled": true, + "__prefab": { + "__id__": 313 + }, + "playOnLoad": true, + "_clips": [ + { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + } + ], + "_defaultClip": { + "__uuid__": "daac9702-c258-4d3b-8e05-f3a95852e56d", + "__expectedType__": "cc.AnimationClip" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d61XHhHvhJ+qkw9avL2Gh5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "00Xr0p8PREPKRMbAVnbBhK", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -6613,11 +7520,109 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 267 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 275 + "__id__": 316 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 462.7, + "height": 446.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ace3+HLthE5IQkxRFBfi3G" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 298 + }, + "_enabled": true, + "__prefab": { + "__id__": 318 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aativOaC5J/ZlpqHVOp6Ko" + }, + { + "__type__": "38c12VeC51MEarg68KNWAIi", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 298 + }, + "_enabled": true, + "__prefab": { + "__id__": 320 + }, + "animation": { + "__id__": 312 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "abKB5XcH1ENpKctNSiaYdk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "03jvhDJ8dMu5NducSG+LgQ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 291 + }, + "_enabled": true, + "__prefab": { + "__id__": 323 }, "_contentSize": { "__type__": "cc.Size", @@ -6641,11 +7646,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 267 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 325 }, "_type": 0, "_inverted": false, @@ -6663,11 +7668,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 267 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 279 + "__id__": 327 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6722,23 +7727,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 266 + "__id__": 290 }, "_children": [], "_active": true, "_components": [ { - "__id__": 282 + "__id__": 330 }, { - "__id__": 284 + "__id__": 332 }, { - "__id__": 286 + "__id__": 334 } ], "_prefab": { - "__id__": 288 + "__id__": 336 }, "_lpos": { "__type__": "cc.Vec3", @@ -6775,11 +7780,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 281 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 331 }, "_contentSize": { "__type__": "cc.Size", @@ -6803,11 +7808,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 281 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 333 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6874,11 +7879,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 281 + "__id__": 329 }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 335 }, "languageKey": "themepanel.recomandtext", "defaultText": "", @@ -6908,23 +7913,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 266 + "__id__": 290 }, "_children": [], "_active": true, "_components": [ { - "__id__": 290 + "__id__": 338 }, { - "__id__": 292 + "__id__": 340 }, { - "__id__": 294 + "__id__": 342 } ], "_prefab": { - "__id__": 296 + "__id__": 344 }, "_lpos": { "__type__": "cc.Vec3", @@ -6961,11 +7966,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 337 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 339 }, "_contentSize": { "__type__": "cc.Size", @@ -6989,11 +7994,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 337 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 341 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7060,11 +8065,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 289 + "__id__": 337 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 343 }, "languageKey": "girl_10001_name", "defaultText": "", @@ -7094,26 +8099,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 266 + "__id__": 290 }, "_children": [], "_active": true, "_components": [ { - "__id__": 298 + "__id__": 346 }, { - "__id__": 300 + "__id__": 348 }, { - "__id__": 302 + "__id__": 350 }, { - "__id__": 304 + "__id__": 352 } ], "_prefab": { - "__id__": 306 + "__id__": 354 }, "_lpos": { "__type__": "cc.Vec3", @@ -7150,11 +8155,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 297 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 299 + "__id__": 347 }, "_contentSize": { "__type__": "cc.Size", @@ -7178,11 +8183,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 297 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 301 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7223,11 +8228,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 297 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 303 + "__id__": 351 }, "_alignFlags": 34, "_target": null, @@ -7259,15 +8264,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 297 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 353 }, "clickEvents": [], "_interactable": true, - "_transition": 0, + "_transition": 3, "_normalColor": { "__type__": "cc.Color", "r": 255, @@ -7301,7 +8306,7 @@ "_pressedSprite": null, "_disabledSprite": null, "_duration": 0.1, - "_zoomScale": 1.2, + "_zoomScale": 0.9, "_target": null, "_id": "" }, @@ -7328,11 +8333,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 308 + "__id__": 356 }, "_contentSize": { "__type__": "cc.Size", @@ -7356,11 +8361,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 358 }, "_alignFlags": 45, "_target": null, @@ -7392,11 +8397,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 312 + "__id__": 360 }, "_type": 3, "_inverted": false, @@ -7414,11 +8419,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 314 + "__id__": 362 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7472,23 +8477,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 257 + "__id__": 281 }, "_children": [], "_active": false, "_components": [ { - "__id__": 317 + "__id__": 365 }, { - "__id__": 319 + "__id__": 367 }, { - "__id__": 321 + "__id__": 369 } ], "_prefab": { - "__id__": 323 + "__id__": 371 }, "_lpos": { "__type__": "cc.Vec3", @@ -7525,11 +8530,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 366 }, "_contentSize": { "__type__": "cc.Size", @@ -7553,11 +8558,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 368 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7598,11 +8603,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 322 + "__id__": 370 }, "_alignFlags": 45, "_target": null, @@ -7647,11 +8652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 257 + "__id__": 281 }, "_enabled": true, "__prefab": { - "__id__": 325 + "__id__": 373 }, "_contentSize": { "__type__": "cc.Size", @@ -7675,11 +8680,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 257 + "__id__": 281 }, "_enabled": true, "__prefab": { - "__id__": 327 + "__id__": 375 }, "_alignFlags": 41, "_target": null, @@ -7724,23 +8729,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 256 + "__id__": 280 }, "_children": [], "_active": true, "_components": [ { - "__id__": 330 + "__id__": 378 }, { - "__id__": 332 + "__id__": 380 }, { - "__id__": 334 + "__id__": 382 } ], "_prefab": { - "__id__": 336 + "__id__": 384 }, "_lpos": { "__type__": "cc.Vec3", @@ -7777,11 +8782,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 377 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 379 }, "_contentSize": { "__type__": "cc.Size", @@ -7805,11 +8810,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 377 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 381 }, "_resizeMode": 1, "_layoutType": 3, @@ -7843,11 +8848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 377 }, "_enabled": true, "__prefab": { - "__id__": 335 + "__id__": 383 }, "_alignFlags": 40, "_target": null, @@ -7892,11 +8897,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 256 + "__id__": 280 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 386 }, "_contentSize": { "__type__": "cc.Size", @@ -7920,11 +8925,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 256 + "__id__": 280 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 388 }, "_resizeMode": 1, "_layoutType": 2, @@ -7958,11 +8963,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 256 + "__id__": 280 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 390 }, "_alignFlags": 1, "_target": null, @@ -8007,11 +9012,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 255 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 345 + "__id__": 393 }, "_contentSize": { "__type__": "cc.Size", @@ -8035,11 +9040,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 255 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 395 }, "_type": 0, "_inverted": false, @@ -8057,11 +9062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 255 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 349 + "__id__": 397 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8103,11 +9108,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 255 + "__id__": 279 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 399 }, "_alignFlags": 45, "_target": null, @@ -8152,11 +9157,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 402 }, "_contentSize": { "__type__": "cc.Size", @@ -8180,11 +9185,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 278 }, "_enabled": false, "__prefab": { - "__id__": 356 + "__id__": 404 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8225,11 +9230,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 406 }, "bounceDuration": 0.23, "brake": 0.75, @@ -8240,7 +9245,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 256 + "__id__": 280 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -8256,11 +9261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 278 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 408 }, "_alignFlags": 45, "_target": null, @@ -8309,7 +9314,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 363 + "__id__": 411 }, "_contentSize": { "__type__": "cc.Size", @@ -8337,7 +9342,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 365 + "__id__": 413 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8382,7 +9387,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 367 + "__id__": 415 }, "_alignFlags": 45, "_target": null, @@ -8431,7 +9436,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 370 + "__id__": 418 }, "_contentSize": { "__type__": "cc.Size", @@ -8459,7 +9464,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 372 + "__id__": 420 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8504,7 +9509,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 374 + "__id__": 422 }, "_alignFlags": 45, "_target": null, @@ -8553,7 +9558,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 377 + "__id__": 425 }, "_contentSize": { "__type__": "cc.Size", @@ -8581,7 +9586,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 379 + "__id__": 427 }, "_alignFlags": 45, "_target": null, @@ -8617,7 +9622,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 429 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/loadingItem.prefab b/assets/resources/loadingItem.prefab similarity index 100% rename from assets/bundles/Chat18x/loadingItem.prefab rename to assets/resources/loadingItem.prefab diff --git a/assets/bundles/Chat18x/loadingItem.prefab.meta b/assets/resources/loadingItem.prefab.meta similarity index 100% rename from assets/bundles/Chat18x/loadingItem.prefab.meta rename to assets/resources/loadingItem.prefab.meta