diff --git a/assets/Scripts/Main/Common/Utils.ts b/assets/Scripts/Main/Common/Utils.ts index 9374e480..c486e084 100644 --- a/assets/Scripts/Main/Common/Utils.ts +++ b/assets/Scripts/Main/Common/Utils.ts @@ -378,6 +378,7 @@ export default class Utils { const nowSeconds = Math.floor(Date.now() / 1000); // 差值(秒) const diffSeconds = Math.max(0, expiryTimestamp - nowSeconds); + if (diffSeconds == 0) return null; // 转换为天、小时、分钟 const days = Math.floor(diffSeconds / (60 * 60 * 24)); const hours = Math.floor((diffSeconds % (60 * 60 * 24)) / 3600); diff --git a/assets/Scripts/chat18x/test/ChatAIBatchTestRunner.ts b/assets/Scripts/chat18x/test/ChatAIBatchTestRunner.ts deleted file mode 100644 index 16221e1d..00000000 --- a/assets/Scripts/chat18x/test/ChatAIBatchTestRunner.ts +++ /dev/null @@ -1,203 +0,0 @@ -import { ChatAIService } from '../core/ChatAIService'; -import { logger } from "db://assets/Scripts/Main/Common/Logger"; - -/** - * ChatAI 批量测试运行器 - 纯脚本版本 - * - * 用法: - * ```typescript - * const testRunner = new ChatAIBatchTestRunner(); - * testRunner.runBatchTest(); - * ``` - */ -export class ChatAIBatchTestRunner { - - private isRunning: boolean = false; - - constructor() { - logger.log("[ChatAIBatchTestRunner] 测试运行器已初始化"); - } - - /** - * 延时工具函数 - * @param seconds 延时秒数 - */ - private async delay(seconds: number): Promise { - return new Promise(resolve => { - setTimeout(resolve, seconds * 1000); - }); - } - - /** - * 运行批量测试 - */ - public async runBatchTest(): Promise { - if (this.isRunning) { - logger.log("[ChatAIBatchTestRunner] 测试已在运行中,请等待完成..."); - return; - } - - this.isRunning = true; - logger.log("[ChatAIBatchTestRunner] 开始批量测试角色ID 10001-10030"); - logger.log("[ChatAIBatchTestRunner] 每次测试间隔10秒"); - - const startTime = Date.now(); - const successIds: number[] = []; - const failureIds: number[] = []; - const errorDetails: { [roleId: number]: string } = {}; - - // 测试角色ID 10001-10030 - for (let roleId = 10001; roleId <= 10030; roleId++) { - logger.log(`[ChatAIBatchTestRunner] 正在测试角色ID: ${roleId}`); - - const testStartTime = Date.now(); - - try { - const response = await ChatAIService.Instance.sendMessage(roleId, "hello"); - const testDuration = Date.now() - testStartTime; - - if (response && response.trim() !== "") { - successIds.push(roleId); - logger.log(`[ChatAIBatchTestRunner] ✅ 角色 ${roleId} 测试成功 (${testDuration}ms)`); - logger.log(`[ChatAIBatchTestRunner] 响应预览: ${response.substring(0, 50)}...`); - } else { - failureIds.push(roleId); - errorDetails[roleId] = "返回空响应"; - logger.log(`[ChatAIBatchTestRunner] ❌ 角色 ${roleId} 返回空响应 (${testDuration}ms)`); - } - } catch (error) { - const testDuration = Date.now() - testStartTime; - const errorMessage = error instanceof Error ? error.message : String(error); - - failureIds.push(roleId); - errorDetails[roleId] = errorMessage; - logger.log(`[ChatAIBatchTestRunner] ❌ 角色 ${roleId} 测试失败 (${testDuration}ms): ${errorMessage}`); - } - - // 等待10秒(最后一个不需要等待) - if (roleId < 10030) { - logger.log(`[ChatAIBatchTestRunner] 等待10秒后继续下一个测试...`); - await this.delay(10); - } - } - - const totalDuration = Date.now() - startTime; - - // 输出最终报告 - this.printFinalReport(successIds, failureIds, errorDetails, totalDuration); - - this.isRunning = false; - logger.log("[ChatAIBatchTestRunner] 批量测试完成!"); - } - - /** - * 输出最终测试报告 - */ - private printFinalReport( - successIds: number[], - failureIds: number[], - errorDetails: { [roleId: number]: string }, - totalDuration: number - ): void { - const totalTests = 30; - const successCount = successIds.length; - const failureCount = failureIds.length; - const successRate = ((successCount / totalTests) * 100).toFixed(2); - - logger.log("\n" + "=".repeat(60)); - logger.log(" ChatAI 批量测试报告"); - logger.log("=".repeat(60)); - logger.log(`测试时间: ${new Date().toLocaleString()}`); - logger.log(`总测试数: ${totalTests}`); - logger.log(`成功数量: ${successCount}`); - logger.log(`失败数量: ${failureCount}`); - logger.log(`成功率: ${successRate}%`); - logger.log(`总耗时: ${(totalDuration / 1000).toFixed(2)}秒`); - logger.log(`平均耗时: ${(totalDuration / totalTests / 1000).toFixed(2)}秒/测试`); - - logger.log("\n" + "-".repeat(30) + " 成功的角色ID " + "-".repeat(30)); - if (successIds.length > 0) { - const successList = this.formatIdList(successIds); - logger.log(successList); - } else { - logger.log("无成功案例"); - } - - logger.log("\n" + "-".repeat(30) + " 失败的角色ID " + "-".repeat(30)); - if (failureIds.length > 0) { - const failureList = this.formatIdList(failureIds); - logger.log(failureList); - - logger.log("\n" + "-".repeat(25) + " 失败详情 " + "-".repeat(25)); - failureIds.forEach(roleId => { - logger.log(`角色 ${roleId}: ${errorDetails[roleId]}`); - }); - } else { - logger.log("无失败案例"); - } - - logger.log("\n" + "=".repeat(60)); - - // 输出简洁版结果供复制使用 - logger.log("\n简洁结果:"); - logger.log(`成功(${successCount}): ${successIds.join(',')}`); - logger.log(`失败(${failureCount}): ${failureIds.join(',')}`); - } - - /** - * 格式化ID列表为易读格式 - */ - private formatIdList(ids: number[]): string { - if (ids.length === 0) return "无"; - - const sortedIds = ids.sort((a, b) => a - b); - const groups: string[] = []; - let start = sortedIds[0]; - let end = sortedIds[0]; - - for (let i = 1; i < sortedIds.length; i++) { - if (sortedIds[i] === end + 1) { - end = sortedIds[i]; - } else { - if (start === end) { - groups.push(`${start}`); - } else if (end === start + 1) { - groups.push(`${start},${end}`); - } else { - groups.push(`${start}-${end}`); - } - start = end = sortedIds[i]; - } - } - - // 添加最后一组 - if (start === end) { - groups.push(`${start}`); - } else if (end === start + 1) { - groups.push(`${start},${end}`); - } else { - groups.push(`${start}-${end}`); - } - - return groups.join(', '); - } - - /** - * 获取当前运行状态 - */ - public isTestRunning(): boolean { - return this.isRunning; - } -} - -// 全局实例,可以直接调用 -export const chatAIBatchTester = new ChatAIBatchTestRunner(); - -// 便捷的全局函数 -export async function runChatAIBatchTest(): Promise { - await chatAIBatchTester.runBatchTest(); -} - -// 使用示例: -// import { runChatAIBatchTest } from 'path/to/ChatAIBatchTestRunner'; -// runChatAIBatchTest(); \ No newline at end of file diff --git a/assets/Scripts/chat18x/test/ChatAIBatchTestRunner.ts.meta b/assets/Scripts/chat18x/test/ChatAIBatchTestRunner.ts.meta deleted file mode 100644 index 57d36023..00000000 --- a/assets/Scripts/chat18x/test/ChatAIBatchTestRunner.ts.meta +++ /dev/null @@ -1,9 +0,0 @@ -{ - "ver": "4.0.24", - "importer": "typescript", - "imported": true, - "uuid": "76e29352-9c31-48f1-ac08-8646aa63a425", - "files": [], - "subMetas": {}, - "userData": {} -} diff --git a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts index f59996e9..d4a478e0 100644 --- a/assets/Scripts/chat18x/ui/panels/ChatPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ChatPanel.ts @@ -182,7 +182,7 @@ export class ChatPanel extends li_BaseView implements IChatPanelCallback { ); if (!isFree && !isRelease) { //未解锁 - NavigationManager.Instance.openPopupPanel("GirlListPopupPanel", { + NavigationManager.Instance.openPopupPanel("GirlListPopupPanel-Fix", { base: this, category: this.categoryId, id: this.id, diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index 980bdadc..b5837bc8 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -77,6 +77,10 @@ export class GirlDetailPanel extends li_BaseView { imgsLayout: Node; videoAreaPos: Vec3; + @property(Label) + girlPrice: Label; + @property(Node) + sendMsgText: Node; protected onEnable(): void { this.refresh(); @@ -85,8 +89,6 @@ export class GirlDetailPanel extends li_BaseView { onLoadCT() { super.onLoadCT(); - //this.refresh(); - DetailImageItemPool.Instance.setTemplate(this.imgItemInst.node); Utils.addInnerEL(InnerMsgCode.LanguageChange, this, () => { @@ -168,6 +170,22 @@ export class GirlDetailPanel extends li_BaseView { } const girlData = DataManager.I.getDataById(DataId.Girl); + + const isRelease = girlData.getIsRelease(this.category.toString(), this.id); + const isFree = girlData.isGirlFreeType(this.category.toString(), this.id); + if (isRelease || isFree) { + // 先设置选中的角色ID + this.girlPrice.node.active = false; + this.sendMsgText.active = true; + } else { + this.girlPrice.node.active = true; + this.sendMsgText.active = false; + + this.girlPrice.string = girlData + .getGrilOriginalPrice(this.category.toString(), this.id) + .toString(); + } + // 请求详细数据 const reqData = { id: this.id, @@ -315,18 +333,31 @@ export class GirlDetailPanel extends li_BaseView { } OnClickChatBtn() { - // 使用带过渡动画的导航方法 - NavigationManager.Instance.switchToPanel( - PanelType.PAST_GIRL_LIST, - false, - (base) => { - const chatData = { girlId: this.id, base: base }; - NavigationManager.Instance.openSubPanel("ChatPanel", base, chatData, { - openAnimation: PageTransitionType.SLIDE_LEFT, - closeAnimation: PageTransitionType.SLIDE_RIGHT, - }); - } - ); + const girlData = DataManager.I.getDataById(DataId.Girl); + + const isRelease = girlData.getIsRelease(this.category.toString(), this.id); + const isFree = girlData.isGirlFreeType(this.category.toString(), this.id); + if (isRelease || isFree) { + // 使用带过渡动画的导航方法 + NavigationManager.Instance.switchToPanel( + PanelType.PAST_GIRL_LIST, + false, + (base) => { + const chatData = { girlId: this.id, base: base }; + NavigationManager.Instance.openSubPanel("ChatPanel", base, chatData, { + openAnimation: PageTransitionType.SLIDE_LEFT, + closeAnimation: PageTransitionType.SLIDE_RIGHT, + }); + } + ); + } else { + //未解锁 + NavigationManager.Instance.openPopupPanel("GirlListPopupPanel", { + base: this, + category: this.category, + id: this.id, + }); + } } returnBtn() { diff --git a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts index c19317ae..ec0f2ef9 100644 --- a/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/PurchasePanel.ts @@ -243,9 +243,13 @@ export class PurchasePanel extends li_BaseView { const walletData = DataManager.I.getDataById(DataId.Wallet); const vipExpire = walletData.vipExpire; const leftTime = Utils.formatVipLeftTime(vipExpire); - this.vipLeftTime.string = LanguageUtils.getText( - "purchasepanel.vip_left" - ).replace("${leftTime}", leftTime); + if (leftTime == null) { + LanguageUtils.getText("purchasepanel.notvip"); + } else { + this.vipLeftTime.string = LanguageUtils.getText( + "purchasepanel.vip_left" + ).replace("${leftTime}", leftTime); + } } // 使用余额购买商品 diff --git a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts index 2f54c70c..3d0d37f9 100644 --- a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts @@ -357,9 +357,14 @@ export class ThemePanel extends li_BaseView { const vipExpire = walletData.vipExpire; const leftTime = Utils.formatVipLeftTime(vipExpire); - this.vipLeftTime.string = LanguageUtils.getText( - "purchasepanel.vip_left" - ).replace("${leftTime}", leftTime); + + if (leftTime == null) { + LanguageUtils.getText("purchasepanel.notvip"); + } else { + this.vipLeftTime.string = LanguageUtils.getText( + "purchasepanel.vip_left" + ).replace("${leftTime}", leftTime); + } } } diff --git a/assets/Scripts/chat18x/uiitems/GirlListItem.ts b/assets/Scripts/chat18x/uiitems/GirlListItem.ts index 5dd33353..73a9f6ab 100644 --- a/assets/Scripts/chat18x/uiitems/GirlListItem.ts +++ b/assets/Scripts/chat18x/uiitems/GirlListItem.ts @@ -209,19 +209,21 @@ export class GirlListItem extends Component { const girlData = DataManager.I.getDataById(DataId.Girl); // 是否已经解锁 const isRelease = girlData.getIsRelease(this.category.toString(), this.id); - if (isRelease) { - // 先设置选中的角色ID - NavigationManager.Instance.setSelectedGirlId(this.id); - // 通过switchToPanel切换到角色详情面板,保持动画和状态同步 - NavigationManager.Instance.switchToPanel(PanelType.GIRL_DETAIL); - } else { - //未解锁 - NavigationManager.Instance.openPopupPanel("GirlListPopupPanel", { - base: this, - category: this.category, - id: this.id, - }); - } + NavigationManager.Instance.setSelectedGirlId(this.id); + + // 通过switchToPanel切换到角色详情面板,保持动画和状态同步 + NavigationManager.Instance.switchToPanel(PanelType.GIRL_DETAIL); + + // if (isRelease) { + // // 先设置选中的角色ID + // } else { + // //未解锁 + // NavigationManager.Instance.openPopupPanel("GirlListPopupPanel", { + // base: this, + // category: this.category, + // id: this.id, + // }); + // } } } diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index 05968bef..69232d31 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -2990,7 +2990,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941", + "__uuid__": "7e2364d2-b224-47b3-a753-ba22b201a7c7@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index 95bec026..d608f942 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -25,20 +25,20 @@ "_active": true, "_components": [ { - "__id__": 384 + "__id__": 396 }, { - "__id__": 386 + "__id__": 398 }, { - "__id__": 388 + "__id__": 400 }, { - "__id__": 390 + "__id__": 402 } ], "_prefab": { - "__id__": 392 + "__id__": 404 }, "_lpos": { "__type__": "cc.Vec3", @@ -88,23 +88,23 @@ "__id__": 17 }, { - "__id__": 366 + "__id__": 378 } ], "_active": true, "_components": [ { - "__id__": 377 + "__id__": 389 }, { - "__id__": 379 + "__id__": 391 }, { - "__id__": 381 + "__id__": 393 } ], "_prefab": { - "__id__": 383 + "__id__": 395 }, "_lpos": { "__type__": "cc.Vec3", @@ -462,23 +462,23 @@ "__id__": 24 }, { - "__id__": 285 + "__id__": 297 } ], "_active": true, "_components": [ { - "__id__": 359 + "__id__": 371 }, { - "__id__": 361 + "__id__": 373 }, { - "__id__": 363 + "__id__": 375 } ], "_prefab": { - "__id__": 365 + "__id__": 377 }, "_lpos": { "__type__": "cc.Vec3", @@ -652,20 +652,20 @@ "_active": true, "_components": [ { - "__id__": 276 + "__id__": 288 }, { - "__id__": 278 + "__id__": 290 }, { - "__id__": 280 + "__id__": 292 }, { - "__id__": 282 + "__id__": 294 } ], "_prefab": { - "__id__": 284 + "__id__": 296 }, "_lpos": { "__type__": "cc.Vec3", @@ -712,20 +712,20 @@ "_active": true, "_components": [ { - "__id__": 267 + "__id__": 279 }, { - "__id__": 269 + "__id__": 281 }, { - "__id__": 271 + "__id__": 283 }, { - "__id__": 273 + "__id__": 285 } ], "_prefab": { - "__id__": 275 + "__id__": 287 }, "_lpos": { "__type__": "cc.Vec3", @@ -772,29 +772,29 @@ "__id__": 41 }, { - "__id__": 146 + "__id__": 158 }, { - "__id__": 170 - }, - { - "__id__": 252 - } - ], - "_active": true, - "_components": [ - { - "__id__": 260 - }, - { - "__id__": 262 + "__id__": 182 }, { "__id__": 264 } ], + "_active": true, + "_components": [ + { + "__id__": 272 + }, + { + "__id__": 274 + }, + { + "__id__": 276 + } + ], "_prefab": { - "__id__": 266 + "__id__": 278 }, "_lpos": { "__type__": "cc.Vec3", @@ -1153,26 +1153,26 @@ "__id__": 96 }, { - "__id__": 123 - }, - { - "__id__": 131 - } - ], - "_active": true, - "_components": [ - { - "__id__": 139 - }, - { - "__id__": 141 + "__id__": 135 }, { "__id__": 143 } ], + "_active": true, + "_components": [ + { + "__id__": 151 + }, + { + "__id__": 153 + }, + { + "__id__": 155 + } + ], "_prefab": { - "__id__": 145 + "__id__": 157 }, "_lpos": { "__type__": "cc.Vec3", @@ -2454,25 +2454,28 @@ }, { "__id__": 105 + }, + { + "__id__": 113 } ], "_active": true, "_components": [ { - "__id__": 113 + "__id__": 125 }, { - "__id__": 115 + "__id__": 127 }, { - "__id__": 117 + "__id__": 129 }, { - "__id__": 120 + "__id__": 132 } ], "_prefab": { - "__id__": 122 + "__id__": 134 }, "_lpos": { "__type__": "cc.Vec3", @@ -2680,7 +2683,7 @@ }, { "__type__": "cc.Node", - "_name": "text", + "_name": "sendMsgText", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -2864,6 +2867,308 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "price", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 96 + }, + "_children": [ + { + "__id__": 114 + } + ], + "_active": true, + "_components": [ + { + "__id__": 120 + }, + { + "__id__": 122 + } + ], + "_prefab": { + "__id__": 124 + }, + "_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": "girlpriceIcon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 113 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 115 + }, + { + "__id__": 117 + } + ], + "_prefab": { + "__id__": 119 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -105.19, + "y": 1.3830000000000382, + "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__": 114 + }, + "_enabled": true, + "__prefab": { + "__id__": 116 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 85, + "height": 70 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "28uTDj21xLb5BgRBqy17pG" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 114 + }, + "_enabled": true, + "__prefab": { + "__id__": 118 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "39BzrVxcdBCbg+2zJ+PTam" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27y/mHmyNCvbEVHM94Djqv", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 113 + }, + "_enabled": true, + "__prefab": { + "__id__": 121 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 195.1962890625, + "height": 74.718 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b9hi9tcMdCFoQ87OqfNfIW" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 113 + }, + "_enabled": true, + "__prefab": { + "__id__": 123 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 170, + "g": 194, + "b": 188, + "a": 255 + }, + "_string": "999.999", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 54, + "_fontSize": 54, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 59.3, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d0nJ2dYWFFcJ0zfXMq5o9t" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d935H8vzJLl4XuLeITrTQ5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -2874,7 +3179,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 126 }, "_contentSize": { "__type__": "cc.Size", @@ -2902,7 +3207,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 128 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2947,11 +3252,11 @@ }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 130 }, "clickEvents": [ { - "__id__": 119 + "__id__": 131 } ], "_interactable": true, @@ -3019,7 +3324,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 133 }, "_alignFlags": 42, "_target": null, @@ -3070,17 +3375,17 @@ "_active": true, "_components": [ { - "__id__": 124 + "__id__": 136 }, { - "__id__": 126 + "__id__": 138 }, { - "__id__": 128 + "__id__": 140 } ], "_prefab": { - "__id__": 130 + "__id__": 142 }, "_lpos": { "__type__": "cc.Vec3", @@ -3117,11 +3422,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 135 }, "_enabled": true, "__prefab": { - "__id__": 125 + "__id__": 137 }, "_contentSize": { "__type__": "cc.Size", @@ -3145,11 +3450,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 135 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 139 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3213,11 +3518,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 135 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 141 }, "_alignFlags": 9, "_target": null, @@ -3268,17 +3573,17 @@ "_active": true, "_components": [ { - "__id__": 132 + "__id__": 144 }, { - "__id__": 134 + "__id__": 146 }, { - "__id__": 136 + "__id__": 148 } ], "_prefab": { - "__id__": 138 + "__id__": 150 }, "_lpos": { "__type__": "cc.Vec3", @@ -3315,11 +3620,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 131 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 145 }, "_contentSize": { "__type__": "cc.Size", @@ -3343,11 +3648,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 131 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 147 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3411,11 +3716,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 131 + "__id__": 143 }, "_enabled": true, "__prefab": { - "__id__": 137 + "__id__": 149 }, "_alignFlags": 33, "_target": null, @@ -3464,7 +3769,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 152 }, "_contentSize": { "__type__": "cc.Size", @@ -3492,7 +3797,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 142 + "__id__": 154 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3537,7 +3842,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 156 }, "_alignFlags": 41, "_target": null, @@ -3586,26 +3891,26 @@ }, "_children": [ { - "__id__": 147 - }, - { - "__id__": 155 - } - ], - "_active": true, - "_components": [ - { - "__id__": 163 - }, - { - "__id__": 165 + "__id__": 159 }, { "__id__": 167 } ], + "_active": true, + "_components": [ + { + "__id__": 175 + }, + { + "__id__": 177 + }, + { + "__id__": 179 + } + ], "_prefab": { - "__id__": 169 + "__id__": 181 }, "_lpos": { "__type__": "cc.Vec3", @@ -3642,23 +3947,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 + "__id__": 158 }, "_children": [], "_active": true, "_components": [ { - "__id__": 148 + "__id__": 160 }, { - "__id__": 150 + "__id__": 162 }, { - "__id__": 152 + "__id__": 164 } ], "_prefab": { - "__id__": 154 + "__id__": 166 }, "_lpos": { "__type__": "cc.Vec3", @@ -3695,11 +4000,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 159 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 161 }, "_contentSize": { "__type__": "cc.Size", @@ -3723,11 +4028,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 159 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 163 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3768,11 +4073,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 147 + "__id__": 159 }, "_enabled": true, "__prefab": { - "__id__": 153 + "__id__": 165 }, "_alignFlags": 45, "_target": null, @@ -3817,23 +4122,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 146 + "__id__": 158 }, "_children": [], "_active": true, "_components": [ { - "__id__": 156 + "__id__": 168 }, { - "__id__": 158 + "__id__": 170 }, { - "__id__": 160 + "__id__": 172 } ], "_prefab": { - "__id__": 162 + "__id__": 174 }, "_lpos": { "__type__": "cc.Vec3", @@ -3870,11 +4175,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 169 }, "_contentSize": { "__type__": "cc.Size", @@ -3898,11 +4203,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 171 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3969,11 +4274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 155 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 173 }, "_alignFlags": 45, "_target": null, @@ -4018,11 +4323,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 176 }, "_contentSize": { "__type__": "cc.Size", @@ -4046,11 +4351,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 158 }, "_enabled": false, "__prefab": { - "__id__": 166 + "__id__": 178 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4091,11 +4396,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 168 + "__id__": 180 }, "_alignFlags": 41, "_target": null, @@ -4144,29 +4449,29 @@ }, "_children": [ { - "__id__": 171 + "__id__": 183 }, { - "__id__": 177 + "__id__": 189 }, { - "__id__": 211 + "__id__": 223 } ], "_active": true, "_components": [ { - "__id__": 245 + "__id__": 257 }, { - "__id__": 247 + "__id__": 259 }, { - "__id__": 249 + "__id__": 261 } ], "_prefab": { - "__id__": 251 + "__id__": 263 }, "_lpos": { "__type__": "cc.Vec3", @@ -4203,20 +4508,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 170 + "__id__": 182 }, "_children": [], "_active": true, "_components": [ { - "__id__": 172 + "__id__": 184 }, { - "__id__": 174 + "__id__": 186 } ], "_prefab": { - "__id__": 176 + "__id__": 188 }, "_lpos": { "__type__": "cc.Vec3", @@ -4253,11 +4558,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 183 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 185 }, "_contentSize": { "__type__": "cc.Size", @@ -4281,11 +4586,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 183 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 187 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4339,33 +4644,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 170 + "__id__": 182 }, "_children": [ { - "__id__": 178 + "__id__": 190 }, { - "__id__": 190 + "__id__": 202 } ], "_active": true, "_components": [ { - "__id__": 202 + "__id__": 214 }, { - "__id__": 204 + "__id__": 216 }, { - "__id__": 206 + "__id__": 218 }, { - "__id__": 208 + "__id__": 220 } ], "_prefab": { - "__id__": 210 + "__id__": 222 }, "_lpos": { "__type__": "cc.Vec3", @@ -4402,284 +4707,8 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 177 - }, - "_children": [ - { - "__id__": 179 - } - ], - "_active": true, - "_components": [ - { - "__id__": 185 - }, - { - "__id__": 187 - } - ], - "_prefab": { "__id__": 189 }, - "_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": "SelectingSlider", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 178 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 180 - }, - { - "__id__": 182 - } - ], - "_prefab": { - "__id__": 184 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -48.782999999999845, - "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__": 179 - }, - "_enabled": true, - "__prefab": { - "__id__": 181 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 463, - "height": 5 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "78U+E3UGxOOK2qkkm0eq5v" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 179 - }, - "_enabled": true, - "__prefab": { - "__id__": 183 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d42rkToO9BVoZEcoDPVcEY" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "6f92TKJKVE64dMjoMziDJg", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 178 - }, - "_enabled": true, - "__prefab": { - "__id__": 186 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 79, - "height": 71 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5aweyAzf9Ko6mmIg2tDDAg" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 178 - }, - "_enabled": true, - "__prefab": { - "__id__": 188 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806@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": "56Y1qrjexPEKkB2M5NdTiT" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e4HqQ5ohBMs4XonxIg41Zr", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Selected", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 177 - }, "_children": [ { "__id__": 191 @@ -4802,7 +4831,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "65dDenH5VOuIRyF013kUOp" + "fileId": "78U+E3UGxOOK2qkkm0eq5v" }, { "__type__": "cc.Sprite", @@ -4826,6 +4855,282 @@ "b": 255, "a": 255 }, + "_spriteFrame": { + "__uuid__": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d42rkToO9BVoZEcoDPVcEY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6f92TKJKVE64dMjoMziDJg", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 190 + }, + "_enabled": true, + "__prefab": { + "__id__": 198 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 79, + "height": 71 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5aweyAzf9Ko6mmIg2tDDAg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 190 + }, + "_enabled": true, + "__prefab": { + "__id__": 200 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6d5a4538-f6ee-46f4-9831-1fa6e4be8806@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": "56Y1qrjexPEKkB2M5NdTiT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e4HqQ5ohBMs4XonxIg41Zr", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Selected", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 189 + }, + "_children": [ + { + "__id__": 203 + } + ], + "_active": true, + "_components": [ + { + "__id__": 209 + }, + { + "__id__": 211 + } + ], + "_prefab": { + "__id__": 213 + }, + "_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": "SelectingSlider", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 202 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 204 + }, + { + "__id__": 206 + } + ], + "_prefab": { + "__id__": 208 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -48.782999999999845, + "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__": 203 + }, + "_enabled": true, + "__prefab": { + "__id__": 205 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 463, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "65dDenH5VOuIRyF013kUOp" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 203 + }, + "_enabled": true, + "__prefab": { + "__id__": 207 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, "_spriteFrame": { "__uuid__": "1876a540-2606-4dee-ab76-5db661e5f559@f9941", "__expectedType__": "cc.SpriteFrame" @@ -4868,11 +5173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 198 + "__id__": 210 }, "_contentSize": { "__type__": "cc.Size", @@ -4896,11 +5201,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 202 }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 212 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4954,11 +5259,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 177 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 203 + "__id__": 215 }, "_contentSize": { "__type__": "cc.Size", @@ -4982,11 +5287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 177 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 205 + "__id__": 217 }, "_alignFlags": 5, "_target": null, @@ -5018,17 +5323,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 177 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 207 + "__id__": 219 }, "selectedSprite": { - "__id__": 199 + "__id__": 211 }, "unSelectedSprite": { - "__id__": 187 + "__id__": 199 }, "_id": "" }, @@ -5042,11 +5347,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 177 + "__id__": 189 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 221 }, "clickEvents": [], "_interactable": true, @@ -5111,33 +5416,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 170 + "__id__": 182 }, "_children": [ { - "__id__": 212 + "__id__": 224 }, { - "__id__": 224 + "__id__": 236 } ], "_active": true, "_components": [ { - "__id__": 236 + "__id__": 248 }, { - "__id__": 238 + "__id__": 250 }, { - "__id__": 240 + "__id__": 252 }, { - "__id__": 242 + "__id__": 254 } ], "_prefab": { - "__id__": 244 + "__id__": 256 }, "_lpos": { "__type__": "cc.Vec3", @@ -5174,290 +5479,14 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 - }, - "_children": [ - { - "__id__": 213 - } - ], - "_active": true, - "_components": [ - { - "__id__": 219 - }, - { - "__id__": 221 - } - ], - "_prefab": { "__id__": 223 }, - "_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": "SelectingSlider", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 212 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 214 - }, - { - "__id__": 216 - } - ], - "_prefab": { - "__id__": 218 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -48.782999999999845, - "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__": 213 - }, - "_enabled": true, - "__prefab": { - "__id__": 215 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 463, - "height": 5 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "deg2C2d15C3py7rooLaxeZ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 213 - }, - "_enabled": true, - "__prefab": { - "__id__": 217 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "cbU5jdevlF+KakJ7tY+8Du" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "e29qGTJeJHmouY2eMWvpXk", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 212 - }, - "_enabled": true, - "__prefab": { - "__id__": 220 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 110, - "height": 68 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ed2EiwW/ZFTYIBZ3eEYKOr" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 212 - }, - "_enabled": true, - "__prefab": { - "__id__": 222 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "d9caf091-71a6-4a85-b77a-83cb6847370a@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": "d8HG9HNjpIRb0GnUQ62bS3" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2ewB0X6hVNx4HPc/Mejw3f", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Selected", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 211 - }, "_children": [ { "__id__": 225 } ], - "_active": false, + "_active": true, "_components": [ { "__id__": 231 @@ -5574,7 +5603,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "967gJ32IJPwpoze3PNgOBc" + "fileId": "deg2C2d15C3py7rooLaxeZ" }, { "__type__": "cc.Sprite", @@ -5598,6 +5627,282 @@ "b": 255, "a": 255 }, + "_spriteFrame": { + "__uuid__": "e40904ac-0cdb-45a5-9c51-bf2092c8a776@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cbU5jdevlF+KakJ7tY+8Du" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e29qGTJeJHmouY2eMWvpXk", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 224 + }, + "_enabled": true, + "__prefab": { + "__id__": 232 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ed2EiwW/ZFTYIBZ3eEYKOr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 224 + }, + "_enabled": true, + "__prefab": { + "__id__": 234 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "d9caf091-71a6-4a85-b77a-83cb6847370a@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": "d8HG9HNjpIRb0GnUQ62bS3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2ewB0X6hVNx4HPc/Mejw3f", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Selected", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 223 + }, + "_children": [ + { + "__id__": 237 + } + ], + "_active": false, + "_components": [ + { + "__id__": 243 + }, + { + "__id__": 245 + } + ], + "_prefab": { + "__id__": 247 + }, + "_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": "SelectingSlider", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 236 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 238 + }, + { + "__id__": 240 + } + ], + "_prefab": { + "__id__": 242 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -48.782999999999845, + "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__": 237 + }, + "_enabled": true, + "__prefab": { + "__id__": 239 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 463, + "height": 5 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "967gJ32IJPwpoze3PNgOBc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 237 + }, + "_enabled": true, + "__prefab": { + "__id__": 241 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, "_spriteFrame": { "__uuid__": "1876a540-2606-4dee-ab76-5db661e5f559@f9941", "__expectedType__": "cc.SpriteFrame" @@ -5640,11 +5945,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 244 }, "_contentSize": { "__type__": "cc.Size", @@ -5668,11 +5973,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 234 + "__id__": 246 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5726,11 +6031,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 237 + "__id__": 249 }, "_contentSize": { "__type__": "cc.Size", @@ -5754,11 +6059,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 251 }, "_alignFlags": 5, "_target": null, @@ -5790,17 +6095,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 253 }, "selectedSprite": { - "__id__": 233 + "__id__": 245 }, "unSelectedSprite": { - "__id__": 221 + "__id__": 233 }, "_id": "" }, @@ -5814,11 +6119,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 243 + "__id__": 255 }, "clickEvents": [], "_interactable": true, @@ -5883,11 +6188,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 170 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 258 }, "_contentSize": { "__type__": "cc.Size", @@ -5911,11 +6216,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 170 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 248 + "__id__": 260 }, "_alignFlags": 40, "_target": null, @@ -5947,11 +6252,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 170 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 262 }, "_id": "" }, @@ -5984,17 +6289,17 @@ "_active": true, "_components": [ { - "__id__": 253 + "__id__": 265 }, { - "__id__": 255 + "__id__": 267 }, { - "__id__": 257 + "__id__": 269 } ], "_prefab": { - "__id__": 259 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", @@ -6031,11 +6336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 254 + "__id__": 266 }, "_contentSize": { "__type__": "cc.Size", @@ -6059,11 +6364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 268 }, "_resizeMode": 1, "_layoutType": 3, @@ -6097,11 +6402,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 252 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 270 }, "_alignFlags": 40, "_target": null, @@ -6150,7 +6455,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 261 + "__id__": 273 }, "_contentSize": { "__type__": "cc.Size", @@ -6178,7 +6483,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 275 }, "_alignFlags": 41, "_target": null, @@ -6214,7 +6519,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 265 + "__id__": 277 }, "_resizeMode": 1, "_layoutType": 2, @@ -6265,7 +6570,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 280 }, "_contentSize": { "__type__": "cc.Size", @@ -6293,7 +6598,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 270 + "__id__": 282 }, "_type": 0, "_inverted": false, @@ -6315,7 +6620,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 272 + "__id__": 284 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6361,7 +6666,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 286 }, "_alignFlags": 45, "_target": null, @@ -6410,7 +6715,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 277 + "__id__": 289 }, "_contentSize": { "__type__": "cc.Size", @@ -6438,7 +6743,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 279 + "__id__": 291 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6483,7 +6788,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 293 }, "bounceDuration": 0.23, "brake": 0.75, @@ -6514,7 +6819,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 295 }, "_alignFlags": 45, "_target": null, @@ -6563,41 +6868,41 @@ }, "_children": [ { - "__id__": 286 + "__id__": 298 }, { - "__id__": 292 - }, - { - "__id__": 316 - }, - { - "__id__": 322 + "__id__": 304 }, { "__id__": 328 + }, + { + "__id__": 334 + }, + { + "__id__": 340 } ], "_active": true, "_components": [ { - "__id__": 348 + "__id__": 360 }, { - "__id__": 350 + "__id__": 362 }, { - "__id__": 352 + "__id__": 364 }, { - "__id__": 354 + "__id__": 366 }, { - "__id__": 356 + "__id__": 368 } ], "_prefab": { - "__id__": 358 + "__id__": 370 }, "_lpos": { "__type__": "cc.Vec3", @@ -6634,20 +6939,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 285 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ { - "__id__": 287 + "__id__": 299 }, { - "__id__": 289 + "__id__": 301 } ], "_prefab": { - "__id__": 291 + "__id__": 303 }, "_lpos": { "__type__": "cc.Vec3", @@ -6684,11 +6989,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 286 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 288 + "__id__": 300 }, "_contentSize": { "__type__": "cc.Size", @@ -6712,11 +7017,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 286 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 290 + "__id__": 302 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6770,30 +7075,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 285 + "__id__": 297 }, "_children": [ { - "__id__": 293 - }, - { - "__id__": 301 - } - ], - "_active": true, - "_components": [ - { - "__id__": 309 - }, - { - "__id__": 311 + "__id__": 305 }, { "__id__": 313 } ], + "_active": true, + "_components": [ + { + "__id__": 321 + }, + { + "__id__": 323 + }, + { + "__id__": 325 + } + ], "_prefab": { - "__id__": 315 + "__id__": 327 }, "_lpos": { "__type__": "cc.Vec3", @@ -6830,23 +7135,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 292 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 294 + "__id__": 306 }, { - "__id__": 296 + "__id__": 308 }, { - "__id__": 298 + "__id__": 310 } ], "_prefab": { - "__id__": 300 + "__id__": 312 }, "_lpos": { "__type__": "cc.Vec3", @@ -6883,11 +7188,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 307 }, "_contentSize": { "__type__": "cc.Size", @@ -6911,11 +7216,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 309 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6956,11 +7261,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 299 + "__id__": 311 }, "_alignFlags": 45, "_target": null, @@ -7005,23 +7310,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 292 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 302 + "__id__": 314 }, { - "__id__": 304 + "__id__": 316 }, { - "__id__": 306 + "__id__": 318 } ], "_prefab": { - "__id__": 308 + "__id__": 320 }, "_lpos": { "__type__": "cc.Vec3", @@ -7058,11 +7363,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 303 + "__id__": 315 }, "_contentSize": { "__type__": "cc.Size", @@ -7086,11 +7391,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 305 + "__id__": 317 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7131,11 +7436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 301 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 307 + "__id__": 319 }, "playOnLoad": true, "_clips": [ @@ -7173,11 +7478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 292 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 322 }, "_contentSize": { "__type__": "cc.Size", @@ -7201,11 +7506,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 292 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 312 + "__id__": 324 }, "_alignFlags": 45, "_target": null, @@ -7237,14 +7542,14 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 292 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 314 + "__id__": 326 }, "animation": { - "__id__": 306 + "__id__": 318 }, "_id": "" }, @@ -7271,20 +7576,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 285 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ { - "__id__": 317 + "__id__": 329 }, { - "__id__": 319 + "__id__": 331 } ], "_prefab": { - "__id__": 321 + "__id__": 333 }, "_lpos": { "__type__": "cc.Vec3", @@ -7321,11 +7626,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 330 }, "_contentSize": { "__type__": "cc.Size", @@ -7349,11 +7654,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 316 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 332 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7407,20 +7712,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 285 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ { - "__id__": 323 + "__id__": 335 }, { - "__id__": 325 + "__id__": 337 } ], "_prefab": { - "__id__": 327 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", @@ -7457,11 +7762,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 322 + "__id__": 334 }, "_enabled": true, "__prefab": { - "__id__": 324 + "__id__": 336 }, "_contentSize": { "__type__": "cc.Size", @@ -7485,11 +7790,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 322 + "__id__": 334 }, "_enabled": true, "__prefab": { - "__id__": 326 + "__id__": 338 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7543,30 +7848,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 285 + "__id__": 297 }, "_children": [ { - "__id__": 329 + "__id__": 341 }, { - "__id__": 335 + "__id__": 347 } ], "_active": true, "_components": [ { - "__id__": 341 + "__id__": 353 }, { - "__id__": 343 + "__id__": 355 }, { - "__id__": 345 + "__id__": 357 } ], "_prefab": { - "__id__": 347 + "__id__": 359 }, "_lpos": { "__type__": "cc.Vec3", @@ -7603,20 +7908,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 328 + "__id__": 340 }, "_children": [], "_active": true, "_components": [ { - "__id__": 330 + "__id__": 342 }, { - "__id__": 332 + "__id__": 344 } ], "_prefab": { - "__id__": 334 + "__id__": 346 }, "_lpos": { "__type__": "cc.Vec3", @@ -7653,11 +7958,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 343 }, "_contentSize": { "__type__": "cc.Size", @@ -7681,11 +7986,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 329 + "__id__": 341 }, "_enabled": true, "__prefab": { - "__id__": 333 + "__id__": 345 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7762,20 +8067,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 328 + "__id__": 340 }, "_children": [], "_active": true, "_components": [ { - "__id__": 336 + "__id__": 348 }, { - "__id__": 338 + "__id__": 350 } ], "_prefab": { - "__id__": 340 + "__id__": 352 }, "_lpos": { "__type__": "cc.Vec3", @@ -7812,11 +8117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 347 }, "_enabled": true, "__prefab": { - "__id__": 337 + "__id__": 349 }, "_contentSize": { "__type__": "cc.Size", @@ -7840,11 +8145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 347 }, "_enabled": true, "__prefab": { - "__id__": 339 + "__id__": 351 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7898,11 +8203,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 354 }, "_contentSize": { "__type__": "cc.Size", @@ -7926,11 +8231,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 344 + "__id__": 356 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7971,11 +8276,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 346 + "__id__": 358 }, "_alignFlags": 9, "_target": null, @@ -8020,11 +8325,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 349 + "__id__": 361 }, "_contentSize": { "__type__": "cc.Size", @@ -8048,11 +8353,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 363 }, "clickEvents": [], "_interactable": true, @@ -8092,7 +8397,7 @@ "_duration": 0.1, "_zoomScale": 0.95, "_target": { - "__id__": 285 + "__id__": 297 }, "_id": "" }, @@ -8106,29 +8411,29 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 353 + "__id__": 365 }, "img": { - "__id__": 289 + "__id__": 301 }, "question": { - "__id__": 316 - }, - "video": { - "__id__": 325 - }, - "priceFrame": { "__id__": 328 }, + "video": { + "__id__": 337 + }, + "priceFrame": { + "__id__": 340 + }, "videoPrice": { - "__id__": 332 + "__id__": 344 }, "loading": { - "__id__": 292 + "__id__": 304 }, "_id": "" }, @@ -8142,11 +8447,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 355 + "__id__": 367 }, "_type": 0, "_inverted": false, @@ -8164,11 +8469,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 285 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 357 + "__id__": 369 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8227,7 +8532,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 372 }, "_contentSize": { "__type__": "cc.Size", @@ -8255,7 +8560,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 362 + "__id__": 374 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8300,7 +8605,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 376 }, "_alignFlags": 45, "_target": null, @@ -8351,20 +8656,20 @@ "_active": true, "_components": [ { - "__id__": 367 + "__id__": 379 }, { - "__id__": 369 + "__id__": 381 }, { - "__id__": 371 + "__id__": 383 }, { - "__id__": 374 + "__id__": 386 } ], "_prefab": { - "__id__": 376 + "__id__": 388 }, "_lpos": { "__type__": "cc.Vec3", @@ -8401,11 +8706,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 366 + "__id__": 378 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 380 }, "_contentSize": { "__type__": "cc.Size", @@ -8429,11 +8734,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 366 + "__id__": 378 }, "_enabled": true, "__prefab": { - "__id__": 370 + "__id__": 382 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8474,15 +8779,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 366 + "__id__": 378 }, "_enabled": true, "__prefab": { - "__id__": 372 + "__id__": 384 }, "clickEvents": [ { - "__id__": 373 + "__id__": 385 } ], "_interactable": true, @@ -8522,7 +8827,7 @@ "_duration": 0.1, "_zoomScale": 0.9, "_target": { - "__id__": 366 + "__id__": 378 }, "_id": "" }, @@ -8546,11 +8851,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 366 + "__id__": 378 }, "_enabled": true, "__prefab": { - "__id__": 375 + "__id__": 387 }, "_alignFlags": 9, "_target": null, @@ -8599,7 +8904,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 378 + "__id__": 390 }, "_contentSize": { "__type__": "cc.Size", @@ -8627,7 +8932,7 @@ }, "_enabled": false, "__prefab": { - "__id__": 380 + "__id__": 392 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8669,7 +8974,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 382 + "__id__": 394 }, "_alignFlags": 45, "_target": null, @@ -8718,7 +9023,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 397 }, "_contentSize": { "__type__": "cc.Size", @@ -8746,7 +9051,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 399 }, "_alignFlags": 45, "_target": null, @@ -8782,7 +9087,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 389 + "__id__": 401 }, "_id": "" }, @@ -8800,7 +9105,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 391 + "__id__": 403 }, "m_rootNode": null, "videoArea": { @@ -8810,22 +9115,22 @@ "__id__": 53 }, "imgToggle": { - "__id__": 206 + "__id__": 218 }, "videoToggle": { - "__id__": 240 + "__id__": 252 }, "starParent": { "__id__": 58 }, "tags": { - "__id__": 126 + "__id__": 138 }, "descAge": { - "__id__": 134 + "__id__": 146 }, "desc": { - "__id__": 158 + "__id__": 170 }, "chatBtn": { "__id__": 96 @@ -8834,10 +9139,16 @@ "__id__": 17 }, "imgItemInst": { - "__id__": 352 + "__id__": 364 }, "imgsLayout": { - "__id__": 252 + "__id__": 264 + }, + "girlPrice": { + "__id__": 122 + }, + "sendMsgText": { + "__id__": 105 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlListPopupPanel-Fix.prefab b/assets/bundles/Chat18x/GirlListPopupPanel-Fix.prefab new file mode 100644 index 00000000..0d77916c --- /dev/null +++ b/assets/bundles/Chat18x/GirlListPopupPanel-Fix.prefab @@ -0,0 +1,3751 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "GirlListPopupPanel-Fix", + "_objFlags": 0, + "__editorExtras__": {}, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "persistent": false + }, + { + "__type__": "cc.Node", + "_name": "GirlListPopupPanel-Fix", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 12 + }, + { + "__id__": 34 + } + ], + "_active": true, + "_components": [ + { + "__id__": 154 + }, + { + "__id__": 156 + }, + { + "__id__": 158 + }, + { + "__id__": 160 + } + ], + "_prefab": { + "__id__": 162 + }, + "_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": "blocker", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 5 + }, + { + "__id__": 7 + }, + { + "__id__": 9 + } + ], + "_prefab": { + "__id__": 11 + }, + "_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__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 4 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 2340 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1JO4gykFJYLhlXpehQlHu" + }, + { + "__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": 24, + "g": 15, + "b": 32, + "a": 153 + }, + "_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": "a5coSMaBpEXKS+rtkAi/Qy" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_alignFlags": 45, + "_target": null, + "_left": -107.5, + "_right": -107.5, + "_top": -530.5, + "_bottom": -530.5, + "_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": "2d2mjdFBxMSbvNwCxSQFji" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 10 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0bu3kibSRMO4yW0uG1xS3o" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35Hk7au3xFU7K74ZzmRsvb", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "current", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 13 + }, + { + "__id__": 19 + }, + { + "__id__": 25 + } + ], + "_active": true, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 33 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -526.722, + "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": "currentBalanceText", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 14 + }, + { + "__id__": 16 + } + ], + "_prefab": { + "__id__": 18 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -227.00900000000001, + "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__": 13 + }, + "_enabled": true, + "__prefab": { + "__id__": 15 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 231.234375, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "33DvnT3jFD4I12qzmDlJ4m" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 13 + }, + "_enabled": true, + "__prefab": { + "__id__": 17 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 162, + "g": 155, + "b": 169, + "a": 255 + }, + "_string": "Current Balance", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 32, + "_fontSize": 32, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0frT7n6VpLqI9J1jkkbtOl" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "42px3+NyVEbo4c+A47OIxA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "图层 600", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 22 + } + ], + "_prefab": { + "__id__": 24 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -28.992999999999995, + "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__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 117, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d9yvwrsW9Bw5eavk7iCwSB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 19 + }, + "_enabled": true, + "__prefab": { + "__id__": 23 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e42051cb-525e-48e1-9303-6c85a1b70661@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5akbMrazZJWoUMAV5HpCP3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8cWF4SfDNLeYjqx306Tdun", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "balanceCount", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 12 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 26 + }, + { + "__id__": 28 + } + ], + "_prefab": { + "__id__": 30 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 51.212999999999965, + "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__": 25 + }, + "_enabled": true, + "__prefab": { + "__id__": 27 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 280, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5f8tpdLS1Ay6Byir93wA1G" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 25 + }, + "_enabled": true, + "__prefab": { + "__id__": 29 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 170, + "g": 194, + "b": 188, + "a": 255 + }, + "_string": "999,99.99", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 42, + "_fontSize": 41, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "08nTNrTcFO2b/GmmalhngU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ed4GL5cx5BQYH3+duQOT1v", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": { + "__id__": 32 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1000, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "31FCh/pLJFm5LI9ZFokXDy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "15AarK8ytGcrJaMIz/6Y9W", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 35 + }, + { + "__id__": 49 + }, + { + "__id__": 55 + }, + { + "__id__": 137 + } + ], + "_active": true, + "_components": [ + { + "__id__": 147 + }, + { + "__id__": 149 + }, + { + "__id__": 151 + } + ], + "_prefab": { + "__id__": 153 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 164.06600000000003, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img_Frame", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [ + { + "__id__": 36 + } + ], + "_active": true, + "_components": [ + { + "__id__": 44 + }, + { + "__id__": 46 + } + ], + "_prefab": { + "__id__": 48 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 81.5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 37 + }, + { + "__id__": 39 + }, + { + "__id__": 41 + } + ], + "_prefab": { + "__id__": 43 + }, + "_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__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 38 + }, + "_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__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 40 + }, + "_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__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, + "_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": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 45 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 1116 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "62HYM4/4FMeqov90g1yrso" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 35 + }, + "_enabled": true, + "__prefab": { + "__id__": 47 + }, + "_alignFlags": 1, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7fgy36RtlO0pfKfIL1vQb/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "58xU3QFa1KWZYSsVuripTu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 50 + }, + { + "__id__": 52 + } + ], + "_prefab": { + "__id__": 54 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -639.5, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 49 + }, + "_enabled": true, + "__prefab": { + "__id__": 51 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 418 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "779CRtq0xPG4O6jSpS/63L" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 49 + }, + "_enabled": true, + "__prefab": { + "__id__": 53 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "1d3168bf-96a7-46f3-b5b5-757be687597e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "80IZovB9xFapm3TI3f2bj9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "bfV/ID0fNErLjvhU1XXRRU", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [ + { + "__id__": 56 + }, + { + "__id__": 64 + }, + { + "__id__": 72 + }, + { + "__id__": 110 + } + ], + "_active": true, + "_components": [ + { + "__id__": 130 + }, + { + "__id__": 132 + }, + { + "__id__": 134 + } + ], + "_prefab": { + "__id__": 136 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -429, + "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": "Name", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 55 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 57 + }, + { + "__id__": 59 + }, + { + "__id__": 61 + } + ], + "_prefab": { + "__id__": 63 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -418.53647650000005, + "y": 159.64, + "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__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 58 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 413.526953, + "height": 91.2 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "74iEI+eZ5Am7+gIXj3vLU/" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 60 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 237, + "g": 225, + "b": 250, + "a": 255 + }, + "_string": "Anaya", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 61, + "_fontSize": 60, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7aM5xlFmpLk5/GCqsgKZbE" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 62 + }, + "_alignFlags": 9, + "_target": null, + "_left": 13.96352349999998, + "_right": 0, + "_top": 5.260000000000019, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "72Ac6pnB1DiKQxWewTqk3Z" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a0Q+1fJZ5LlpFJCTST21Xl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Tag", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 55 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 65 + }, + { + "__id__": 67 + }, + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 71 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 212.63599999999997, + "y": 109.65699999999993, + "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__": 64 + }, + "_enabled": true, + "__prefab": { + "__id__": 66 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 389.736375, + "height": 150.212 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3pAu3bttF0o/YLLNbTlzK" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 64 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 222, + "g": 91, + "b": 255, + "a": 255 + }, + "_string": "Tag1|Tag2", + "_horizontalAlign": 2, + "_verticalAlign": 0, + "_actualFontSize": 51, + "_fontSize": 50, + "_fontFamily": "Arial", + "_lineHeight": 51.7, + "_overflow": 2, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "af1bOrWxhFZ69Vaxr/WtZb" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 64 + }, + "_enabled": true, + "__prefab": { + "__id__": 70 + }, + "_alignFlags": 33, + "_target": null, + "_left": 553.9668125000001, + "_right": 24.9958125, + "_top": 25.737000000000087, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a1vDC2W/lBF71VonVMDfxh" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0b9T5k+FhPU7yu97KcrYjE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Stars", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 73 + }, + { + "__id__": 79 + }, + { + "__id__": 85 + }, + { + "__id__": 91 + }, + { + "__id__": 97 + } + ], + "_active": true, + "_components": [ + { + "__id__": 103 + }, + { + "__id__": 105 + }, + { + "__id__": 107 + } + ], + "_prefab": { + "__id__": 109 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -402.7, + "y": 67.20100000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "star", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 74 + }, + { + "__id__": 76 + } + ], + "_prefab": { + "__id__": 78 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 36, + "y": 1.1368683772161603e-13, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 73 + }, + "_enabled": true, + "__prefab": { + "__id__": 75 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b459hgbihCBJ6xbrsrxEVa" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 73 + }, + "_enabled": true, + "__prefab": { + "__id__": 77 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f4e38fe6-4cf2-4f35-9246-f530b0bf4666@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": "2aVDFuvPFHlb8Agb7VbmSM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "43DZj8ubdJRKQVnPsAdMJ5", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "star-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 80 + }, + { + "__id__": 82 + } + ], + "_prefab": { + "__id__": 84 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 120.1, + "y": 1.1368683772161603e-13, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 79 + }, + "_enabled": true, + "__prefab": { + "__id__": 81 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a6i1sD2ypGFrg7E0Hl7C4n" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 79 + }, + "_enabled": true, + "__prefab": { + "__id__": 83 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f4e38fe6-4cf2-4f35-9246-f530b0bf4666@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": "ebFtG6/qBMmIGq2wNdnvgP" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b3O4pQc8BPZbgSW1Itm0cB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "star-002", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 86 + }, + { + "__id__": 88 + } + ], + "_prefab": { + "__id__": 90 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 204.2, + "y": 1.1368683772161603e-13, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 85 + }, + "_enabled": true, + "__prefab": { + "__id__": 87 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e81/mlt/dFmZFPFAzJrBfP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 85 + }, + "_enabled": true, + "__prefab": { + "__id__": 89 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f4e38fe6-4cf2-4f35-9246-f530b0bf4666@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": "52vCyghn5JIaYl7oMy31bs" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3asRGKVFGYb0aXvFMGaVm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "star-003", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 92 + }, + { + "__id__": 94 + } + ], + "_prefab": { + "__id__": 96 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 288.3, + "y": 1.1368683772161603e-13, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 91 + }, + "_enabled": true, + "__prefab": { + "__id__": 93 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "87Xggrvy9PWI6aQEEKkH5E" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 91 + }, + "_enabled": true, + "__prefab": { + "__id__": 95 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f4e38fe6-4cf2-4f35-9246-f530b0bf4666@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": "90a+a19KVA9JKuiherCINM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "32qkszsuFDY4WxG6+lxuqd", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "star-004", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 72 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 98 + }, + { + "__id__": 100 + } + ], + "_prefab": { + "__id__": 102 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 372.40000000000003, + "y": 1.1368683772161603e-13, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 97 + }, + "_enabled": true, + "__prefab": { + "__id__": 99 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 72, + "height": 61 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e6oCmzBhFFVLfidxBsaxnJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 97 + }, + "_enabled": true, + "__prefab": { + "__id__": 101 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "f4e38fe6-4cf2-4f35-9246-f530b0bf4666@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": "aejmuqFXZFXo2RkIvH7q5o" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "83RElmo7pDZrLKUlPKZd5T", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 72 + }, + "_enabled": true, + "__prefab": { + "__id__": 104 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 408.4, + "height": 65.3 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8b8HGU8rRBNIjvGkj6s1D4" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 72 + }, + "_enabled": true, + "__prefab": { + "__id__": 106 + }, + "_alignFlags": 8, + "_target": null, + "_left": 29.8, + "_right": -16.41399999999993, + "_top": 0, + "_bottom": 255.27999999999994, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 374, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 8, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aabx1DI9JKfJ0w5IYSLxRp" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 72 + }, + "_enabled": false, + "__prefab": { + "__id__": 108 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 12.1, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "20gm3SC5xEioKfEDZn1SAS" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4b08JUy9VKqIqCb64Ty2hc", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "BuyBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 55 + }, + "_children": [ + { + "__id__": 111 + } + ], + "_active": true, + "_components": [ + { + "__id__": 125 + }, + { + "__id__": 127 + } + ], + "_prefab": { + "__id__": 129 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -89.50300000000004, + "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": "Price", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 110 + }, + "_children": [ + { + "__id__": 112 + } + ], + "_active": true, + "_components": [ + { + "__id__": 120 + }, + { + "__id__": 122 + } + ], + "_prefab": { + "__id__": 124 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 30.587, + "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": "MoneyImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 111 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 113 + }, + { + "__id__": 115 + }, + { + "__id__": 117 + } + ], + "_prefab": { + "__id__": 119 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -144.089, + "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__": 112 + }, + "_enabled": true, + "__prefab": { + "__id__": 114 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 102, + "height": 89 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 1, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "36MGQMfSlCfYslnvHav53h" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 112 + }, + "_enabled": true, + "__prefab": { + "__id__": 116 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e72d6e10-73bf-44e8-82d5-da3a20f908b2@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "88poIAkcxCFZF2MTq9X0aZ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 112 + }, + "_enabled": false, + "__prefab": { + "__id__": 118 + }, + "_alignFlags": 8, + "_target": null, + "_left": -102.28812499999998, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 102, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8ehK81O+9DHZvKzQDCz5zb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "74cjB+QZpEUKhXCSf5fw90", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 111 + }, + "_enabled": true, + "__prefab": { + "__id__": 121 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 293.04375, + "height": 91.1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "59dAHKv0lHJpUpLlMSHyYN" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 111 + }, + "_enabled": true, + "__prefab": { + "__id__": 123 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 171, + "g": 240, + "b": 223, + "a": 255 + }, + "_string": "999,999", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 64, + "_fontSize": 64, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": false, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f2foQjffFH6onsAUpYdFjw" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41eE5jbYxKvLXkT8fEwoDC", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 110 + }, + "_enabled": true, + "__prefab": { + "__id__": 126 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 541, + "height": 146 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b0ZP7aJxFPBZavJGzrmHnN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 110 + }, + "_enabled": true, + "__prefab": { + "__id__": 128 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "3a13f329-9041-4300-a1c0-5f9f8230540a@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d4RIIwLshBA5WDQTShHEx0" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a6/RzXxIlFQp9f/pUqhxXs", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 55 + }, + "_enabled": true, + "__prefab": { + "__id__": 131 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 421 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "66MiH7pUdAvra5lQxYIflP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 55 + }, + "_enabled": true, + "__prefab": { + "__id__": 133 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "89b7ec65-f08f-44b2-8e0c-37d8bc8c54da@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4aSRUbLVdKRIlCphLy0rxy" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 55 + }, + "_enabled": true, + "__prefab": { + "__id__": 135 + }, + "_alignFlags": 4, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 4, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0dIuqIP0lB/a9+UY2XuvZ9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "3czYWP2pdJQYz8NG4lI51s", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "CloseBtn", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 34 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 138 + }, + { + "__id__": 140 + }, + { + "__id__": 142 + }, + { + "__id__": 144 + } + ], + "_prefab": { + "__id__": 146 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 342.19899999999996, + "y": 551.768, + "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__": 137 + }, + "_enabled": true, + "__prefab": { + "__id__": 139 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 56, + "height": 56 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "90eMJcYrNIo5xCDpB33MPJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 137 + }, + "_enabled": false, + "__prefab": { + "__id__": 141 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "987067e0-13ff-4d1b-a877-da3ea2a092a7@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "39ZmbiPXpKEqLZ7UbIhT+7" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 137 + }, + "_enabled": true, + "__prefab": { + "__id__": 143 + }, + "clickEvents": [], + "_interactable": false, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": { + "__uuid__": "987067e0-13ff-4d1b-a877-da3ea2a092a7@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_hoverSprite": { + "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_pressedSprite": { + "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_disabledSprite": { + "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 137 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c8A/dOL69DsoPI9uRoPMHp" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 137 + }, + "_enabled": true, + "__prefab": { + "__id__": 145 + }, + "_alignFlags": 33, + "_target": null, + "_left": 0, + "_right": 62.301000000000045, + "_top": 59.73199999999997, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "21vySrThFAjobLfHTcBha8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e8hnH2qxxO6bsLB5ALIKIG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 34 + }, + "_enabled": true, + "__prefab": { + "__id__": 148 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 1279 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a36iqNC2VO4JSfbhmR10qj" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 34 + }, + "_enabled": true, + "__prefab": { + "__id__": 150 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7e+Fn+7QJLZpb7lTwLtNJc" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 34 + }, + "_enabled": true, + "__prefab": { + "__id__": 152 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "0bdfe3e6-6632-42ac-ac0b-b4f50cbb3fc8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "75fF5RMz5FnZ/Wcqd/kLjD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a7cD1sg8dCyZcd+POWFd/h", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 155 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 865, + "height": 1279 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "edD3X3KBZFto7UrizGzPm5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": false, + "__prefab": { + "__id__": 157 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "0bdfe3e6-6632-42ac-ac0b-b4f50cbb3fc8@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "16gKzPSOlL/b2ug9RHHvPF" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": false, + "__prefab": { + "__id__": 159 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d1s++F71pCoo/ePChgCcoU" + }, + { + "__type__": "8c377CIANVCPb+LMx4FeJ9g", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 161 + }, + "m_rootNode": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1eVMW1Z2dAjZUclnA2X65+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a56vp8DEdDloy+JjDTTm7J", + "instance": null, + "targetOverrides": null + } +] \ No newline at end of file diff --git a/assets/bundles/Chat18x/GirlListPopupPanel-Fix.prefab.meta b/assets/bundles/Chat18x/GirlListPopupPanel-Fix.prefab.meta new file mode 100644 index 00000000..026a11c6 --- /dev/null +++ b/assets/bundles/Chat18x/GirlListPopupPanel-Fix.prefab.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.50", + "importer": "prefab", + "imported": true, + "uuid": "afacd1df-6501-429b-9ea5-78e88900e6fa", + "files": [ + ".json" + ], + "subMetas": {}, + "userData": { + "syncNodeName": "GirlListPopupPanel-Fix" + } +} diff --git a/assets/bundles/Chat18x/PersonalPanel.prefab b/assets/bundles/Chat18x/PersonalPanel.prefab index 68b4d10e..47b8915d 100644 --- a/assets/bundles/Chat18x/PersonalPanel.prefab +++ b/assets/bundles/Chat18x/PersonalPanel.prefab @@ -587,7 +587,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "777fc276-1999-4eba-a9a4-9bcfb84cbd72@f9941", + "__uuid__": "7e2364d2-b224-47b3-a753-ba22b201a7c7@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, diff --git a/assets/bundles/Chat18x/PurchasePanel.prefab b/assets/bundles/Chat18x/PurchasePanel.prefab index bb6225f5..41d94134 100644 --- a/assets/bundles/Chat18x/PurchasePanel.prefab +++ b/assets/bundles/Chat18x/PurchasePanel.prefab @@ -24,9 +24,6 @@ ], "_active": true, "_components": [ - { - "__id__": 427 - }, { "__id__": 429 }, @@ -35,10 +32,13 @@ }, { "__id__": 433 + }, + { + "__id__": 435 } ], "_prefab": { - "__id__": 435 + "__id__": 437 }, "_lpos": { "__type__": "cc.Vec3", @@ -87,18 +87,18 @@ ], "_active": true, "_components": [ - { - "__id__": 420 - }, { "__id__": 422 }, { "__id__": 424 + }, + { + "__id__": 426 } ], "_prefab": { - "__id__": 426 + "__id__": 428 }, "_lpos": { "__type__": "cc.Vec3", @@ -914,9 +914,6 @@ ], "_active": true, "_components": [ - { - "__id__": 411 - }, { "__id__": 413 }, @@ -925,10 +922,13 @@ }, { "__id__": 417 + }, + { + "__id__": 419 } ], "_prefab": { - "__id__": 419 + "__id__": 421 }, "_lpos": { "__type__": "cc.Vec3", @@ -974,9 +974,6 @@ ], "_active": true, "_components": [ - { - "__id__": 402 - }, { "__id__": 404 }, @@ -985,10 +982,13 @@ }, { "__id__": 408 + }, + { + "__id__": 410 } ], "_prefab": { - "__id__": 410 + "__id__": 412 }, "_lpos": { "__type__": "cc.Vec3", @@ -1032,20 +1032,20 @@ "__id__": 39 }, { - "__id__": 143 + "__id__": 145 } ], "_active": true, "_components": [ { - "__id__": 397 + "__id__": 399 }, { - "__id__": 399 + "__id__": 401 } ], "_prefab": { - "__id__": 401 + "__id__": 403 }, "_lpos": { "__type__": "cc.Vec3", @@ -1089,33 +1089,30 @@ "__id__": 40 }, { - "__id__": 56 + "__id__": 82 }, { - "__id__": 80 + "__id__": 100 }, { - "__id__": 98 - }, - { - "__id__": 118 + "__id__": 120 } ], "_active": true, "_components": [ { - "__id__": 138 + "__id__": 140 }, { - "__id__": 140 + "__id__": 142 } ], "_prefab": { - "__id__": 142 + "__id__": 144 }, "_lpos": { "__type__": "cc.Vec3", - "x": 10, + "x": 0, "y": -367.1, "z": 0 }, @@ -1144,7 +1141,7 @@ }, { "__type__": "cc.Node", - "_name": "Coin", + "_name": "Layout", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -1153,27 +1150,36 @@ "_children": [ { "__id__": 41 + }, + { + "__id__": 49 + }, + { + "__id__": 57 + }, + { + "__id__": 61 + }, + { + "__id__": 69 } ], "_active": true, "_components": [ { - "__id__": 49 + "__id__": 77 }, { - "__id__": 51 - }, - { - "__id__": 53 + "__id__": 79 } ], "_prefab": { - "__id__": 55 + "__id__": 81 }, "_lpos": { "__type__": "cc.Vec3", - "x": -101.37, - "y": 322.3739999999998, + "x": 0, + "y": 321.3290000000002, "z": 0 }, "_lrot": { @@ -1201,7 +1207,7 @@ }, { "__type__": "cc.Node", - "_name": "coinNum", + "_name": "vipText", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -1225,8 +1231,8 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 70.62900000000002, - "y": 0, + "x": 343.353125, + "y": -6.088000000000193, "z": 0 }, "_lrot": { @@ -1266,391 +1272,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 170.745508, - "height": 50.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c0dl9Sh2NIeZ3djvRHbJPD" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 41 - }, - "_enabled": true, - "__prefab": { - "__id__": 45 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 170, - "g": 194, - "b": 188, - "a": 255 - }, - "_string": "9,999,999", - "_horizontalAlign": 0, - "_verticalAlign": 2, - "_actualFontSize": 38, - "_fontSize": 42, - "_fontFamily": "Arial-MT", - "_lineHeight": 0, - "_overflow": 2, - "_enableWrapText": true, - "_font": { - "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", - "__expectedType__": "cc.TTFFont" - }, - "_isSystemFontUsed": false, - "_spacingX": 0, - "_isItalic": false, - "_isBold": false, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": false, - "_outlineColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_outlineWidth": 2, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c5dTEn/sVDMYehhNmdMlhl" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 41 - }, - "_enabled": true, - "__prefab": { - "__id__": 47 - }, - "_alignFlags": 10, - "_target": null, - "_left": 129.12900000000002, - "_right": -120.41744140624996, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 92.5048828125, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8fqm5LOVtAxoXLhiF6TGS+" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5e8r2FOi5JoYTRIy6B3GeS", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 40 - }, - "_enabled": true, - "__prefab": { - "__id__": 50 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 117, - "height": 59 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "5dp+1pvW5NeJeiOtud6HF4" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 40 - }, - "_enabled": true, - "__prefab": { - "__id__": 52 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "e42051cb-525e-48e1-9303-6c85a1b70661@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": "e0rXNNvQtH46uihh1yh9Oa" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 40 - }, - "_enabled": true, - "__prefab": { - "__id__": 54 - }, - "_alignFlags": 32, - "_target": null, - "_left": 194.1, - "_right": 582.87, - "_top": 337.04600000000005, - "_bottom": 1928.954, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 89, - "_alignMode": 2, - "_lockFlags": 8, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "8fSdYgNc1NHYYyeEM+qBdP" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c9T1qaD9JL9ZO4QNNfNL5T", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "Vip", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 39 - }, - "_children": [ - { - "__id__": 57 - }, - { - "__id__": 65 - } - ], - "_active": true, - "_components": [ - { - "__id__": 73 - }, - { - "__id__": 75 - }, - { - "__id__": 77 - } - ], - "_prefab": { - "__id__": 79 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 254.16600000000005, - "y": 322.3739999999998, - "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": "vipText", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 56 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 58 - }, - { - "__id__": 60 - }, - { - "__id__": 62 - } - ], - "_prefab": { - "__id__": 64 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 74.87199999999996, - "y": -7.132999999999811, - "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__": 57 - }, - "_enabled": true, - "__prefab": { - "__id__": 59 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 155.700977, - "height": 50.4 + "width": 113.796875, + "height": 77.994 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1669,11 +1292,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 61 + "__id__": 45 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1688,11 +1311,11 @@ "_string": "剩余7天", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 33, + "_actualFontSize": 32, "_fontSize": 32, "_fontFamily": "NotoSans-Regular", - "_lineHeight": -1.8, - "_overflow": 2, + "_lineHeight": 61.9, + "_overflow": 0, "_enableWrapText": true, "_font": { "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", @@ -1740,20 +1363,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 57 + "__id__": 41 }, "_enabled": true, "__prefab": { - "__id__": 63 + "__id__": 47 }, "_alignFlags": 34, "_target": null, "_left": 0, - "_right": -170.57297699999995, + "_right": 0, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, - "_verticalCenter": -7.132999999999811, + "_verticalCenter": -6.088000000000193, "_isAbsLeft": true, "_isAbsRight": true, "_isAbsTop": true, @@ -1785,32 +1408,32 @@ }, { "__type__": "cc.Node", - "_name": "lock", + "_name": "Vip", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 56 + "__id__": 40 }, "_children": [], - "_active": false, + "_active": true, "_components": [ { - "__id__": 66 + "__id__": 50 }, { - "__id__": 68 + "__id__": 52 }, { - "__id__": 70 + "__id__": 54 } ], "_prefab": { - "__id__": 72 + "__id__": 56 }, "_lpos": { "__type__": "cc.Vec3", - "x": 194.16499999999996, - "y": 32, + "x": 276.25312499999995, + "y": 1.044999999999618, "z": 0 }, "_lrot": { @@ -1842,156 +1465,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 65 + "__id__": 49 }, "_enabled": true, "__prefab": { - "__id__": 67 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 122, - "height": 58.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3aJXknl7ZKH6yF5yd93ArO" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 65 - }, - "_enabled": true, - "__prefab": { - "__id__": 69 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "未激活", - "_horizontalAlign": 2, - "_verticalAlign": 1, - "_actualFontSize": 38, - "_fontSize": 38, - "_fontFamily": "NotoSans-Regular", - "_lineHeight": 40, - "_overflow": 0, - "_enableWrapText": true, - "_font": null, - "_isSystemFontUsed": true, - "_spacingX": 0, - "_isItalic": false, - "_isBold": true, - "_isUnderline": false, - "_underlineHeight": 2, - "_cacheMode": 0, - "_enableOutline": true, - "_outlineColor": { - "__type__": "cc.Color", - "r": 128, - "g": 24, - "b": 24, - "a": 255 - }, - "_outlineWidth": 4, - "_enableShadow": false, - "_shadowColor": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_shadowOffset": { - "__type__": "cc.Vec2", - "x": 2, - "y": 2 - }, - "_shadowBlur": 2, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "10jGYARANMcKdqJsXY+Q5u" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 65 - }, - "_enabled": true, - "__prefab": { - "__id__": 71 - }, - "_alignFlags": 34, - "_target": null, - "_left": 0, - "_right": -135.16499999999996, - "_top": 0, - "_bottom": 0, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ffzIzerUhG8YgC4Q4YOxQj" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "45JAYdQnBHnZ4dz1WCq+jG", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 56 - }, - "_enabled": true, - "__prefab": { - "__id__": 74 + "__id__": 51 }, "_contentSize": { "__type__": "cc.Size", @@ -2015,11 +1493,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 56 + "__id__": 49 }, "_enabled": true, "__prefab": { - "__id__": 76 + "__id__": 53 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2060,16 +1538,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 56 + "__id__": 49 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 55 }, "_alignFlags": 32, "_target": null, "_left": 194.1, - "_right": 225.83399999999995, + "_right": 120.89687500000002, "_top": 334.54600000000005, "_bottom": 1941.454, "_horizontalCenter": 0, @@ -2103,6 +1581,545 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "space", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 58 + } + ], + "_prefab": { + "__id__": 60 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 180.85312499999995, + "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__": 57 + }, + "_enabled": true, + "__prefab": { + "__id__": 59 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 56.6, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "47aZvCN6pCcIEXrTi5gyjB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "091GJm6LlLRakKyxCtUo8R", + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "coinNum", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 62 + }, + { + "__id__": 64 + }, + { + "__id__": 66 + } + ], + "_prefab": { + "__id__": 68 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -41.39355468750006, + "y": 1.044999999999618, + "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__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 63 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 186.8466796875, + "height": 52.92 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c0dl9Sh2NIeZ3djvRHbJPD" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 65 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 170, + "g": 194, + "b": 188, + "a": 255 + }, + "_string": "9,999,999", + "_horizontalAlign": 0, + "_verticalAlign": 2, + "_actualFontSize": 42, + "_fontSize": 42, + "_fontFamily": "Arial-MT", + "_lineHeight": 0, + "_overflow": 0, + "_enableWrapText": true, + "_font": { + "__uuid__": "52af39e6-df78-413a-88bb-72dfdca7ec84", + "__expectedType__": "cc.TTFFont" + }, + "_isSystemFontUsed": false, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c5dTEn/sVDMYehhNmdMlhl" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 61 + }, + "_enabled": true, + "__prefab": { + "__id__": 67 + }, + "_alignFlags": 10, + "_target": null, + "_left": 415.7564453124999, + "_right": -120.41744140624996, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 1.044999999999618, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 92.5048828125, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8fqm5LOVtAxoXLhiF6TGS+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5e8r2FOi5JoYTRIy6B3GeS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Coin", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 40 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 70 + }, + { + "__id__": 72 + }, + { + "__id__": 74 + } + ], + "_prefab": { + "__id__": 76 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -106.99355468750005, + "y": 1.044999999999618, + "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__": 69 + }, + "_enabled": true, + "__prefab": { + "__id__": 71 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 117, + "height": 59 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5dp+1pvW5NeJeiOtud6HF4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 69 + }, + "_enabled": true, + "__prefab": { + "__id__": 73 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "e42051cb-525e-48e1-9303-6c85a1b70661@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": "e0rXNNvQtH46uihh1yh9Oa" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 69 + }, + "_enabled": true, + "__prefab": { + "__id__": 75 + }, + "_alignFlags": 32, + "_target": null, + "_left": 194.1, + "_right": 505.6435546875, + "_top": 337.04600000000005, + "_bottom": 1928.954, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 89, + "_alignMode": 2, + "_lockFlags": 8, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8fSdYgNc1NHYYyeEM+qBdP" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9T1qaD9JL9ZO4QNNfNL5T", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 78 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 914.3, + "height": 100 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cdIFme6wdKJbbCXBgvU84G" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 80 + }, + "_resizeMode": 0, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 0, + "_paddingRight": 0, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 7.1, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 1, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ecHPCBd59MW4guYze8ZVQr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fCxTLpn1Ew5TFhy/C6VKN", + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", "_name": "VipArea", @@ -2113,23 +2130,23 @@ }, "_children": [ { - "__id__": 81 + "__id__": 83 } ], "_active": true, "_components": [ - { - "__id__": 91 - }, { "__id__": 93 }, { "__id__": 95 + }, + { + "__id__": 97 } ], "_prefab": { - "__id__": 97 + "__id__": 99 }, "_lpos": { "__type__": "cc.Vec3", @@ -2166,14 +2183,11 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 80 + "__id__": 82 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 82 - }, { "__id__": 84 }, @@ -2182,10 +2196,13 @@ }, { "__id__": 88 + }, + { + "__id__": 90 } ], "_prefab": { - "__id__": 90 + "__id__": 92 }, "_lpos": { "__type__": "cc.Vec3", @@ -2222,11 +2239,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 85 }, "_contentSize": { "__type__": "cc.Size", @@ -2250,11 +2267,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 87 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2318,11 +2335,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 89 }, "_alignFlags": 36, "_target": null, @@ -2354,11 +2371,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 81 + "__id__": 83 }, "_enabled": true, "__prefab": { - "__id__": 89 + "__id__": 91 }, "languageKey": "purchasepanel.vip_desc", "defaultText": "", @@ -2388,11 +2405,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 92 + "__id__": 94 }, "_contentSize": { "__type__": "cc.Size", @@ -2416,11 +2433,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 94 + "__id__": 96 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2461,11 +2478,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 80 + "__id__": 82 }, "_enabled": true, "__prefab": { - "__id__": 96 + "__id__": 98 }, "_alignFlags": 40, "_target": null, @@ -2514,26 +2531,26 @@ }, "_children": [ { - "__id__": 99 + "__id__": 101 }, { - "__id__": 105 + "__id__": 107 } ], "_active": true, "_components": [ - { - "__id__": 111 - }, { "__id__": 113 }, { "__id__": 115 + }, + { + "__id__": 117 } ], "_prefab": { - "__id__": 117 + "__id__": 119 }, "_lpos": { "__type__": "cc.Vec3", @@ -2570,20 +2587,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 98 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 100 + "__id__": 102 }, { - "__id__": 102 + "__id__": 104 } ], "_prefab": { - "__id__": 104 + "__id__": 106 }, "_lpos": { "__type__": "cc.Vec3", @@ -2620,11 +2637,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 101 }, "_enabled": true, "__prefab": { - "__id__": 101 + "__id__": 103 }, "_contentSize": { "__type__": "cc.Size", @@ -2648,11 +2665,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 99 + "__id__": 101 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 105 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2732,20 +2749,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 98 + "__id__": 100 }, "_children": [], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 108 }, { - "__id__": 108 + "__id__": 110 } ], "_prefab": { - "__id__": 110 + "__id__": 112 }, "_lpos": { "__type__": "cc.Vec3", @@ -2782,11 +2799,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 107 + "__id__": 109 }, "_contentSize": { "__type__": "cc.Size", @@ -2810,11 +2827,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 107 }, "_enabled": true, "__prefab": { - "__id__": 109 + "__id__": 111 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2891,11 +2908,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 114 }, "_contentSize": { "__type__": "cc.Size", @@ -2919,11 +2936,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 116 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2964,11 +2981,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 98 + "__id__": 100 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 118 }, "clickEvents": [], "_interactable": true, @@ -3011,7 +3028,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 98 + "__id__": 100 }, "_id": "" }, @@ -3042,26 +3059,26 @@ }, "_children": [ { - "__id__": 119 + "__id__": 121 }, { - "__id__": 125 + "__id__": 127 } ], "_active": true, "_components": [ - { - "__id__": 131 - }, { "__id__": 133 }, { "__id__": 135 + }, + { + "__id__": 137 } ], "_prefab": { - "__id__": 137 + "__id__": 139 }, "_lpos": { "__type__": "cc.Vec3", @@ -3098,20 +3115,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 118 + "__id__": 120 }, "_children": [], "_active": true, "_components": [ { - "__id__": 120 + "__id__": 122 }, { - "__id__": 122 + "__id__": 124 } ], "_prefab": { - "__id__": 124 + "__id__": 126 }, "_lpos": { "__type__": "cc.Vec3", @@ -3148,11 +3165,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 121 + "__id__": 123 }, "_contentSize": { "__type__": "cc.Size", @@ -3176,11 +3193,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 119 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 123 + "__id__": 125 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3260,20 +3277,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 118 + "__id__": 120 }, "_children": [], "_active": true, "_components": [ { - "__id__": 126 + "__id__": 128 }, { - "__id__": 128 + "__id__": 130 } ], "_prefab": { - "__id__": 130 + "__id__": 132 }, "_lpos": { "__type__": "cc.Vec3", @@ -3310,11 +3327,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 125 + "__id__": 127 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 129 }, "_contentSize": { "__type__": "cc.Size", @@ -3338,11 +3355,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 125 + "__id__": 127 }, "_enabled": true, "__prefab": { - "__id__": 129 + "__id__": 131 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3419,11 +3436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 134 }, "_contentSize": { "__type__": "cc.Size", @@ -3447,11 +3464,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 134 + "__id__": 136 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3492,11 +3509,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 136 + "__id__": 138 }, "clickEvents": [], "_interactable": true, @@ -3536,7 +3553,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 118 + "__id__": 120 }, "_id": "" }, @@ -3567,7 +3584,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 141 }, "_contentSize": { "__type__": "cc.Size", @@ -3595,7 +3612,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 141 + "__id__": 143 }, "_alignFlags": 0, "_target": null, @@ -3630,8 +3647,6 @@ "__id__": 0 }, "fileId": "bfmQnNE+dDppKipXIAljrF", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -3644,29 +3659,29 @@ }, "_children": [ { - "__id__": 144 + "__id__": 146 }, { - "__id__": 152 + "__id__": 154 }, { - "__id__": 178 + "__id__": 180 }, { - "__id__": 204 + "__id__": 206 } ], "_active": true, "_components": [ { - "__id__": 392 + "__id__": 394 }, { - "__id__": 394 + "__id__": 396 } ], "_prefab": { - "__id__": 396 + "__id__": 398 }, "_lpos": { "__type__": "cc.Vec3", @@ -3703,23 +3718,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 145 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 145 - }, { "__id__": 147 }, { "__id__": 149 + }, + { + "__id__": 151 } ], "_prefab": { - "__id__": 151 + "__id__": 153 }, "_lpos": { "__type__": "cc.Vec3", @@ -3756,11 +3771,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 146 + "__id__": 148 }, "_contentSize": { "__type__": "cc.Size", @@ -3784,11 +3799,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 150 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3852,11 +3867,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 152 }, "languageKey": "purchasepanel.getdollars", "defaultText": "", @@ -3886,33 +3901,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 145 }, "_children": [ { - "__id__": 153 + "__id__": 155 }, { - "__id__": 159 + "__id__": 161 }, { - "__id__": 165 + "__id__": 167 } ], "_active": true, "_components": [ - { - "__id__": 171 - }, { "__id__": 173 }, { "__id__": 175 + }, + { + "__id__": 177 } ], "_prefab": { - "__id__": 177 + "__id__": 179 }, "_lpos": { "__type__": "cc.Vec3", @@ -3949,20 +3964,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 152 + "__id__": 154 }, "_children": [], "_active": true, "_components": [ { - "__id__": 154 + "__id__": 156 }, { - "__id__": 156 + "__id__": 158 } ], "_prefab": { - "__id__": 158 + "__id__": 160 }, "_lpos": { "__type__": "cc.Vec3", @@ -3999,11 +4014,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 157 }, "_contentSize": { "__type__": "cc.Size", @@ -4027,11 +4042,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 159 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4085,20 +4100,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 152 + "__id__": 154 }, "_children": [], "_active": true, "_components": [ { - "__id__": 160 + "__id__": 162 }, { - "__id__": 162 + "__id__": 164 } ], "_prefab": { - "__id__": 164 + "__id__": 166 }, "_lpos": { "__type__": "cc.Vec3", @@ -4135,11 +4150,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 159 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 163 }, "_contentSize": { "__type__": "cc.Size", @@ -4163,11 +4178,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 159 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 165 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4221,20 +4236,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 152 + "__id__": 154 }, "_children": [], "_active": true, "_components": [ { - "__id__": 166 + "__id__": 168 }, { - "__id__": 168 + "__id__": 170 } ], "_prefab": { - "__id__": 170 + "__id__": 172 }, "_lpos": { "__type__": "cc.Vec3", @@ -4271,11 +4286,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 169 }, "_contentSize": { "__type__": "cc.Size", @@ -4299,11 +4314,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 171 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4380,11 +4395,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 172 + "__id__": 174 }, "_contentSize": { "__type__": "cc.Size", @@ -4408,11 +4423,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 174 + "__id__": 176 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4450,11 +4465,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 152 + "__id__": 154 }, "_enabled": true, "__prefab": { - "__id__": 176 + "__id__": 178 }, "clickEvents": [], "_interactable": true, @@ -4494,7 +4509,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 152 + "__id__": 154 }, "_id": "" }, @@ -4521,33 +4536,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 145 }, "_children": [ { - "__id__": 179 + "__id__": 181 }, { - "__id__": 185 + "__id__": 187 }, { - "__id__": 191 + "__id__": 193 } ], "_active": true, "_components": [ - { - "__id__": 197 - }, { "__id__": 199 }, { "__id__": 201 + }, + { + "__id__": 203 } ], "_prefab": { - "__id__": 203 + "__id__": 205 }, "_lpos": { "__type__": "cc.Vec3", @@ -4584,20 +4599,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 178 + "__id__": 180 }, "_children": [], "_active": true, "_components": [ { - "__id__": 180 + "__id__": 182 }, { - "__id__": 182 + "__id__": 184 } ], "_prefab": { - "__id__": 184 + "__id__": 186 }, "_lpos": { "__type__": "cc.Vec3", @@ -4634,11 +4649,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 179 + "__id__": 181 }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 183 }, "_contentSize": { "__type__": "cc.Size", @@ -4662,11 +4677,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 179 + "__id__": 181 }, "_enabled": true, "__prefab": { - "__id__": 183 + "__id__": 185 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4720,20 +4735,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 178 + "__id__": 180 }, "_children": [], "_active": true, "_components": [ { - "__id__": 186 + "__id__": 188 }, { - "__id__": 188 + "__id__": 190 } ], "_prefab": { - "__id__": 190 + "__id__": 192 }, "_lpos": { "__type__": "cc.Vec3", @@ -4770,11 +4785,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 185 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 187 + "__id__": 189 }, "_contentSize": { "__type__": "cc.Size", @@ -4798,11 +4813,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 185 + "__id__": 187 }, "_enabled": true, "__prefab": { - "__id__": 189 + "__id__": 191 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4856,20 +4871,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 178 + "__id__": 180 }, "_children": [], "_active": true, "_components": [ { - "__id__": 192 + "__id__": 194 }, { - "__id__": 194 + "__id__": 196 } ], "_prefab": { - "__id__": 196 + "__id__": 198 }, "_lpos": { "__type__": "cc.Vec3", @@ -4906,11 +4921,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 191 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 193 + "__id__": 195 }, "_contentSize": { "__type__": "cc.Size", @@ -4934,11 +4949,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 191 + "__id__": 193 }, "_enabled": true, "__prefab": { - "__id__": 195 + "__id__": 197 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5015,11 +5030,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 178 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 198 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -5043,11 +5058,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 178 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 200 + "__id__": 202 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5085,11 +5100,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 178 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 204 }, "clickEvents": [], "_interactable": true, @@ -5129,7 +5144,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 178 + "__id__": 180 }, "_id": "" }, @@ -5156,42 +5171,42 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 143 + "__id__": 145 }, "_children": [ { - "__id__": 205 + "__id__": 207 }, { - "__id__": 235 + "__id__": 237 }, { - "__id__": 265 + "__id__": 267 }, { - "__id__": 295 + "__id__": 297 }, { - "__id__": 325 + "__id__": 327 }, { - "__id__": 355 + "__id__": 357 } ], "_active": true, "_components": [ - { - "__id__": 385 - }, { "__id__": 387 }, { "__id__": 389 + }, + { + "__id__": 391 } ], "_prefab": { - "__id__": 391 + "__id__": 393 }, "_lpos": { "__type__": "cc.Vec3", @@ -5228,24 +5243,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 204 + "__id__": 206 }, "_children": [ { - "__id__": 206 + "__id__": 208 }, { - "__id__": 212 + "__id__": 214 }, { - "__id__": 218 + "__id__": 220 } ], "_active": true, "_components": [ - { - "__id__": 226 - }, { "__id__": 228 }, @@ -5254,10 +5266,13 @@ }, { "__id__": 232 + }, + { + "__id__": 234 } ], "_prefab": { - "__id__": 234 + "__id__": 236 }, "_lpos": { "__type__": "cc.Vec3", @@ -5294,20 +5309,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 205 + "__id__": 207 }, "_children": [], "_active": true, "_components": [ { - "__id__": 207 + "__id__": 209 }, { - "__id__": 209 + "__id__": 211 } ], "_prefab": { - "__id__": 211 + "__id__": 213 }, "_lpos": { "__type__": "cc.Vec3", @@ -5344,11 +5359,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 208 }, "_enabled": true, "__prefab": { - "__id__": 208 + "__id__": 210 }, "_contentSize": { "__type__": "cc.Size", @@ -5372,11 +5387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 206 + "__id__": 208 }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 212 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5430,20 +5445,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 205 + "__id__": 207 }, "_children": [], "_active": true, "_components": [ { - "__id__": 213 + "__id__": 215 }, { - "__id__": 215 + "__id__": 217 } ], "_prefab": { - "__id__": 217 + "__id__": 219 }, "_lpos": { "__type__": "cc.Vec3", @@ -5480,11 +5495,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 216 }, "_contentSize": { "__type__": "cc.Size", @@ -5508,11 +5523,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 214 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 218 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5589,23 +5604,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 205 + "__id__": 207 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 219 - }, { "__id__": 221 }, { "__id__": 223 + }, + { + "__id__": 225 } ], "_prefab": { - "__id__": 225 + "__id__": 227 }, "_lpos": { "__type__": "cc.Vec3", @@ -5642,11 +5657,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 220 + "__id__": 222 }, "_contentSize": { "__type__": "cc.Size", @@ -5670,11 +5685,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 224 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5738,11 +5753,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 220 }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 226 }, "_alignFlags": 4, "_target": null, @@ -5787,11 +5802,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 205 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 227 + "__id__": 229 }, "_contentSize": { "__type__": "cc.Size", @@ -5815,11 +5830,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 205 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 231 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5860,11 +5875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 205 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 233 }, "clickEvents": [], "_interactable": true, @@ -5904,7 +5919,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 205 + "__id__": 207 }, "_id": "" }, @@ -5918,20 +5933,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 205 + "__id__": 207 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 235 }, "count": { - "__id__": 215 + "__id__": 217 }, "price": { - "__id__": 221 + "__id__": 223 }, "icon": { - "__id__": 209 + "__id__": 211 }, "_id": "" }, @@ -5958,24 +5973,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 204 + "__id__": 206 }, "_children": [ { - "__id__": 236 + "__id__": 238 }, { - "__id__": 242 + "__id__": 244 }, { - "__id__": 248 + "__id__": 250 } ], "_active": true, "_components": [ - { - "__id__": 256 - }, { "__id__": 258 }, @@ -5984,10 +5996,13 @@ }, { "__id__": 262 + }, + { + "__id__": 264 } ], "_prefab": { - "__id__": 264 + "__id__": 266 }, "_lpos": { "__type__": "cc.Vec3", @@ -6024,20 +6039,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 235 + "__id__": 237 }, "_children": [], "_active": true, "_components": [ { - "__id__": 237 + "__id__": 239 }, { - "__id__": 239 + "__id__": 241 } ], "_prefab": { - "__id__": 241 + "__id__": 243 }, "_lpos": { "__type__": "cc.Vec3", @@ -6074,11 +6089,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 240 }, "_contentSize": { "__type__": "cc.Size", @@ -6102,11 +6117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 238 }, "_enabled": true, "__prefab": { - "__id__": 240 + "__id__": 242 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6160,20 +6175,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 235 + "__id__": 237 }, "_children": [], "_active": true, "_components": [ { - "__id__": 243 + "__id__": 245 }, { - "__id__": 245 + "__id__": 247 } ], "_prefab": { - "__id__": 247 + "__id__": 249 }, "_lpos": { "__type__": "cc.Vec3", @@ -6210,11 +6225,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 244 + "__id__": 246 }, "_contentSize": { "__type__": "cc.Size", @@ -6238,11 +6253,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 248 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6319,23 +6334,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 235 + "__id__": 237 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 249 - }, { "__id__": 251 }, { "__id__": 253 + }, + { + "__id__": 255 } ], "_prefab": { - "__id__": 255 + "__id__": 257 }, "_lpos": { "__type__": "cc.Vec3", @@ -6372,11 +6387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 250 }, "_enabled": true, "__prefab": { - "__id__": 250 + "__id__": 252 }, "_contentSize": { "__type__": "cc.Size", @@ -6400,11 +6415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 250 }, "_enabled": true, "__prefab": { - "__id__": 252 + "__id__": 254 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6468,11 +6483,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 248 + "__id__": 250 }, "_enabled": true, "__prefab": { - "__id__": 254 + "__id__": 256 }, "_alignFlags": 4, "_target": null, @@ -6517,11 +6532,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 257 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", @@ -6545,11 +6560,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 259 + "__id__": 261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6590,11 +6605,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 261 + "__id__": 263 }, "clickEvents": [], "_interactable": true, @@ -6634,7 +6649,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 235 + "__id__": 237 }, "_id": "" }, @@ -6648,20 +6663,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 263 + "__id__": 265 }, "count": { - "__id__": 245 + "__id__": 247 }, "price": { - "__id__": 251 + "__id__": 253 }, "icon": { - "__id__": 239 + "__id__": 241 }, "_id": "" }, @@ -6688,24 +6703,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 204 + "__id__": 206 }, "_children": [ { - "__id__": 266 + "__id__": 268 }, { - "__id__": 272 + "__id__": 274 }, { - "__id__": 278 + "__id__": 280 } ], "_active": true, "_components": [ - { - "__id__": 286 - }, { "__id__": 288 }, @@ -6714,10 +6726,13 @@ }, { "__id__": 292 + }, + { + "__id__": 294 } ], "_prefab": { - "__id__": 294 + "__id__": 296 }, "_lpos": { "__type__": "cc.Vec3", @@ -6754,20 +6769,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 265 + "__id__": 267 }, "_children": [], "_active": true, "_components": [ { - "__id__": 267 + "__id__": 269 }, { - "__id__": 269 + "__id__": 271 } ], "_prefab": { - "__id__": 271 + "__id__": 273 }, "_lpos": { "__type__": "cc.Vec3", @@ -6804,11 +6819,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 270 }, "_contentSize": { "__type__": "cc.Size", @@ -6832,11 +6847,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 266 + "__id__": 268 }, "_enabled": true, "__prefab": { - "__id__": 270 + "__id__": 272 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6890,20 +6905,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 265 + "__id__": 267 }, "_children": [], "_active": true, "_components": [ { - "__id__": 273 + "__id__": 275 }, { - "__id__": 275 + "__id__": 277 } ], "_prefab": { - "__id__": 277 + "__id__": 279 }, "_lpos": { "__type__": "cc.Vec3", @@ -6940,11 +6955,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 272 + "__id__": 274 }, "_enabled": true, "__prefab": { - "__id__": 274 + "__id__": 276 }, "_contentSize": { "__type__": "cc.Size", @@ -6968,11 +6983,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 272 + "__id__": 274 }, "_enabled": true, "__prefab": { - "__id__": 276 + "__id__": 278 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7049,23 +7064,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 265 + "__id__": 267 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 279 - }, { "__id__": 281 }, { "__id__": 283 + }, + { + "__id__": 285 } ], "_prefab": { - "__id__": 285 + "__id__": 287 }, "_lpos": { "__type__": "cc.Vec3", @@ -7102,11 +7117,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 278 + "__id__": 280 }, "_enabled": true, "__prefab": { - "__id__": 280 + "__id__": 282 }, "_contentSize": { "__type__": "cc.Size", @@ -7130,11 +7145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 278 + "__id__": 280 }, "_enabled": true, "__prefab": { - "__id__": 282 + "__id__": 284 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7198,11 +7213,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 278 + "__id__": 280 }, "_enabled": true, "__prefab": { - "__id__": 284 + "__id__": 286 }, "_alignFlags": 4, "_target": null, @@ -7247,11 +7262,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 265 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 287 + "__id__": 289 }, "_contentSize": { "__type__": "cc.Size", @@ -7275,11 +7290,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 265 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 289 + "__id__": 291 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7320,11 +7335,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 265 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 293 }, "clickEvents": [], "_interactable": true, @@ -7364,7 +7379,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 265 + "__id__": 267 }, "_id": "" }, @@ -7378,20 +7393,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 265 + "__id__": 267 }, "_enabled": true, "__prefab": { - "__id__": 293 + "__id__": 295 }, "count": { - "__id__": 275 + "__id__": 277 }, "price": { - "__id__": 281 + "__id__": 283 }, "icon": { - "__id__": 269 + "__id__": 271 }, "_id": "" }, @@ -7418,24 +7433,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 204 + "__id__": 206 }, "_children": [ { - "__id__": 296 + "__id__": 298 }, { - "__id__": 302 + "__id__": 304 }, { - "__id__": 308 + "__id__": 310 } ], "_active": true, "_components": [ - { - "__id__": 316 - }, { "__id__": 318 }, @@ -7444,10 +7456,13 @@ }, { "__id__": 322 + }, + { + "__id__": 324 } ], "_prefab": { - "__id__": 324 + "__id__": 326 }, "_lpos": { "__type__": "cc.Vec3", @@ -7484,20 +7499,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 295 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ { - "__id__": 297 + "__id__": 299 }, { - "__id__": 299 + "__id__": 301 } ], "_prefab": { - "__id__": 301 + "__id__": 303 }, "_lpos": { "__type__": "cc.Vec3", @@ -7534,11 +7549,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 296 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 298 + "__id__": 300 }, "_contentSize": { "__type__": "cc.Size", @@ -7562,11 +7577,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 296 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 302 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7620,20 +7635,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 295 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ { - "__id__": 303 + "__id__": 305 }, { - "__id__": 305 + "__id__": 307 } ], "_prefab": { - "__id__": 307 + "__id__": 309 }, "_lpos": { "__type__": "cc.Vec3", @@ -7670,11 +7685,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 306 }, "_contentSize": { "__type__": "cc.Size", @@ -7698,11 +7713,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 308 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7779,23 +7794,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 295 + "__id__": 297 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 309 - }, { "__id__": 311 }, { "__id__": 313 + }, + { + "__id__": 315 } ], "_prefab": { - "__id__": 315 + "__id__": 317 }, "_lpos": { "__type__": "cc.Vec3", @@ -7832,11 +7847,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 310 }, "_enabled": true, "__prefab": { - "__id__": 310 + "__id__": 312 }, "_contentSize": { "__type__": "cc.Size", @@ -7860,11 +7875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 310 }, "_enabled": true, "__prefab": { - "__id__": 312 + "__id__": 314 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7928,11 +7943,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 308 + "__id__": 310 }, "_enabled": true, "__prefab": { - "__id__": 314 + "__id__": 316 }, "_alignFlags": 4, "_target": null, @@ -7977,11 +7992,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 317 + "__id__": 319 }, "_contentSize": { "__type__": "cc.Size", @@ -8005,11 +8020,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 319 + "__id__": 321 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8050,11 +8065,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 321 + "__id__": 323 }, "clickEvents": [], "_interactable": true, @@ -8094,7 +8109,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 295 + "__id__": 297 }, "_id": "" }, @@ -8108,20 +8123,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 295 + "__id__": 297 }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 325 }, "count": { - "__id__": 305 + "__id__": 307 }, "price": { - "__id__": 311 + "__id__": 313 }, "icon": { - "__id__": 299 + "__id__": 301 }, "_id": "" }, @@ -8148,24 +8163,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 204 + "__id__": 206 }, "_children": [ { - "__id__": 326 + "__id__": 328 }, { - "__id__": 332 + "__id__": 334 }, { - "__id__": 338 + "__id__": 340 } ], "_active": true, "_components": [ - { - "__id__": 346 - }, { "__id__": 348 }, @@ -8174,10 +8186,13 @@ }, { "__id__": 352 + }, + { + "__id__": 354 } ], "_prefab": { - "__id__": 354 + "__id__": 356 }, "_lpos": { "__type__": "cc.Vec3", @@ -8214,20 +8229,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 325 + "__id__": 327 }, "_children": [], "_active": true, "_components": [ { - "__id__": 327 + "__id__": 329 }, { - "__id__": 329 + "__id__": 331 } ], "_prefab": { - "__id__": 331 + "__id__": 333 }, "_lpos": { "__type__": "cc.Vec3", @@ -8264,11 +8279,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 328 + "__id__": 330 }, "_contentSize": { "__type__": "cc.Size", @@ -8292,11 +8307,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 326 + "__id__": 328 }, "_enabled": true, "__prefab": { - "__id__": 330 + "__id__": 332 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8350,20 +8365,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 325 + "__id__": 327 }, "_children": [], "_active": true, "_components": [ { - "__id__": 333 + "__id__": 335 }, { - "__id__": 335 + "__id__": 337 } ], "_prefab": { - "__id__": 337 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", @@ -8400,11 +8415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 334 }, "_enabled": true, "__prefab": { - "__id__": 334 + "__id__": 336 }, "_contentSize": { "__type__": "cc.Size", @@ -8428,11 +8443,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 332 + "__id__": 334 }, "_enabled": true, "__prefab": { - "__id__": 336 + "__id__": 338 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8509,23 +8524,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 325 + "__id__": 327 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 339 - }, { "__id__": 341 }, { "__id__": 343 + }, + { + "__id__": 345 } ], "_prefab": { - "__id__": 345 + "__id__": 347 }, "_lpos": { "__type__": "cc.Vec3", @@ -8562,11 +8577,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 338 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 342 }, "_contentSize": { "__type__": "cc.Size", @@ -8590,11 +8605,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 338 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 344 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8658,11 +8673,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 338 + "__id__": 340 }, "_enabled": true, "__prefab": { - "__id__": 344 + "__id__": 346 }, "_alignFlags": 4, "_target": null, @@ -8707,11 +8722,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 347 + "__id__": 349 }, "_contentSize": { "__type__": "cc.Size", @@ -8735,11 +8750,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 349 + "__id__": 351 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8780,11 +8795,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 351 + "__id__": 353 }, "clickEvents": [], "_interactable": true, @@ -8824,7 +8839,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 325 + "__id__": 327 }, "_id": "" }, @@ -8838,20 +8853,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 325 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 353 + "__id__": 355 }, "count": { - "__id__": 335 + "__id__": 337 }, "price": { - "__id__": 341 + "__id__": 343 }, "icon": { - "__id__": 329 + "__id__": 331 }, "_id": "" }, @@ -8878,24 +8893,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 204 + "__id__": 206 }, "_children": [ { - "__id__": 356 + "__id__": 358 }, { - "__id__": 362 + "__id__": 364 }, { - "__id__": 368 + "__id__": 370 } ], "_active": true, "_components": [ - { - "__id__": 376 - }, { "__id__": 378 }, @@ -8904,10 +8916,13 @@ }, { "__id__": 382 + }, + { + "__id__": 384 } ], "_prefab": { - "__id__": 384 + "__id__": 386 }, "_lpos": { "__type__": "cc.Vec3", @@ -8944,20 +8959,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 355 + "__id__": 357 }, "_children": [], "_active": true, "_components": [ { - "__id__": 357 + "__id__": 359 }, { - "__id__": 359 + "__id__": 361 } ], "_prefab": { - "__id__": 361 + "__id__": 363 }, "_lpos": { "__type__": "cc.Vec3", @@ -8994,11 +9009,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 358 }, "_enabled": true, "__prefab": { - "__id__": 358 + "__id__": 360 }, "_contentSize": { "__type__": "cc.Size", @@ -9022,11 +9037,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 358 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 362 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9080,20 +9095,20 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 355 + "__id__": 357 }, "_children": [], "_active": true, "_components": [ { - "__id__": 363 + "__id__": 365 }, { - "__id__": 365 + "__id__": 367 } ], "_prefab": { - "__id__": 367 + "__id__": 369 }, "_lpos": { "__type__": "cc.Vec3", @@ -9130,11 +9145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 364 + "__id__": 366 }, "_contentSize": { "__type__": "cc.Size", @@ -9158,11 +9173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 362 + "__id__": 364 }, "_enabled": true, "__prefab": { - "__id__": 366 + "__id__": 368 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9239,23 +9254,23 @@ "_objFlags": 512, "__editorExtras__": {}, "_parent": { - "__id__": 355 + "__id__": 357 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 369 - }, { "__id__": 371 }, { "__id__": 373 + }, + { + "__id__": 375 } ], "_prefab": { - "__id__": 375 + "__id__": 377 }, "_lpos": { "__type__": "cc.Vec3", @@ -9292,11 +9307,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 368 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 370 + "__id__": 372 }, "_contentSize": { "__type__": "cc.Size", @@ -9320,11 +9335,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 368 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 372 + "__id__": 374 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9388,11 +9403,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 368 + "__id__": 370 }, "_enabled": true, "__prefab": { - "__id__": 374 + "__id__": 376 }, "_alignFlags": 4, "_target": null, @@ -9437,11 +9452,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 377 + "__id__": 379 }, "_contentSize": { "__type__": "cc.Size", @@ -9465,11 +9480,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 379 + "__id__": 381 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9510,11 +9525,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 381 + "__id__": 383 }, "clickEvents": [], "_interactable": true, @@ -9554,7 +9569,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 355 + "__id__": 357 }, "_id": "" }, @@ -9568,20 +9583,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 355 + "__id__": 357 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 385 }, "count": { - "__id__": 365 + "__id__": 367 }, "price": { - "__id__": 371 + "__id__": 373 }, "icon": { - "__id__": 359 + "__id__": 361 }, "_id": "" }, @@ -9608,11 +9623,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 204 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 386 + "__id__": 388 }, "_contentSize": { "__type__": "cc.Size", @@ -9636,11 +9651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 204 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 388 + "__id__": 390 }, "_resizeMode": 1, "_layoutType": 3, @@ -9674,11 +9689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 204 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 390 + "__id__": 392 }, "_alignFlags": 16, "_target": null, @@ -9723,11 +9738,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 145 }, "_enabled": true, "__prefab": { - "__id__": 393 + "__id__": 395 }, "_contentSize": { "__type__": "cc.Size", @@ -9751,11 +9766,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 145 }, "_enabled": true, "__prefab": { - "__id__": 395 + "__id__": 397 }, "_alignFlags": 0, "_target": null, @@ -9804,7 +9819,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 398 + "__id__": 400 }, "_contentSize": { "__type__": "cc.Size", @@ -9832,7 +9847,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 400 + "__id__": 402 }, "_resizeMode": 1, "_layoutType": 2, @@ -9883,7 +9898,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 403 + "__id__": 405 }, "_contentSize": { "__type__": "cc.Size", @@ -9911,7 +9926,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 405 + "__id__": 407 }, "_type": 0, "_inverted": false, @@ -9933,7 +9948,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 407 + "__id__": 409 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9979,7 +9994,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 409 + "__id__": 411 }, "_alignFlags": 45, "_target": null, @@ -10028,7 +10043,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 412 + "__id__": 414 }, "_contentSize": { "__type__": "cc.Size", @@ -10056,7 +10071,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 414 + "__id__": 416 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10098,7 +10113,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 416 + "__id__": 418 }, "bounceDuration": 0.23, "brake": 0.75, @@ -10129,7 +10144,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 418 + "__id__": 420 }, "_alignFlags": 45, "_target": null, @@ -10164,6 +10179,8 @@ "__id__": 0 }, "fileId": "f45hS/4sFIq6wcy5xYXjo8", + "instance": null, + "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -10176,7 +10193,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 421 + "__id__": 423 }, "_contentSize": { "__type__": "cc.Size", @@ -10204,7 +10221,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 423 + "__id__": 425 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10249,7 +10266,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 425 + "__id__": 427 }, "_alignFlags": 45, "_target": null, @@ -10298,7 +10315,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 428 + "__id__": 430 }, "_contentSize": { "__type__": "cc.Size", @@ -10326,7 +10343,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 430 + "__id__": 432 }, "_alignFlags": 45, "_target": null, @@ -10362,7 +10379,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 432 + "__id__": 434 }, "_id": "" }, @@ -10380,27 +10397,27 @@ }, "_enabled": true, "__prefab": { - "__id__": 434 + "__id__": 436 }, "m_rootNode": null, "items": [ { - "__id__": 232 + "__id__": 234 }, { - "__id__": 262 + "__id__": 264 }, { - "__id__": 292 + "__id__": 294 }, { - "__id__": 322 + "__id__": 324 }, { - "__id__": 352 + "__id__": 354 }, { - "__id__": 382 + "__id__": 384 } ], "_id": "" diff --git a/assets/resources/ui/common/default-avatar.png b/assets/resources/ui/common/default-avatar.png new file mode 100644 index 00000000..9142b80d Binary files /dev/null and b/assets/resources/ui/common/default-avatar.png differ diff --git a/assets/resources/ui/common/default-avatar.png.meta b/assets/resources/ui/common/default-avatar.png.meta new file mode 100644 index 00000000..ecde23b4 --- /dev/null +++ b/assets/resources/ui/common/default-avatar.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "7e2364d2-b224-47b3-a753-ba22b201a7c7", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "7e2364d2-b224-47b3-a753-ba22b201a7c7@6c48a", + "displayName": "default-avatar", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "7e2364d2-b224-47b3-a753-ba22b201a7c7", + "isUuid": true, + "visible": false, + "minfilter": "linear", + "magfilter": "linear", + "mipfilter": "none", + "anisotropy": 0 + }, + "ver": "1.0.22", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + }, + "f9941": { + "importer": "sprite-frame", + "uuid": "7e2364d2-b224-47b3-a753-ba22b201a7c7@f9941", + "displayName": "default-avatar", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 256, + "height": 256, + "rawWidth": 256, + "rawHeight": 256, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -128, + -128, + 0, + 128, + -128, + 0, + -128, + 128, + 0, + 128, + 128, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 256, + 256, + 256, + 0, + 0, + 256, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -128, + -128, + 0 + ], + "maxPos": [ + 128, + 128, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "7e2364d2-b224-47b3-a753-ba22b201a7c7@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": false, + "fixAlphaTransparencyArtifacts": false, + "redirect": "7e2364d2-b224-47b3-a753-ba22b201a7c7@6c48a" + } +}