diff --git a/DataTables/Datas/__enums__.xlsx b/DataTables/Datas/__enums__.xlsx index 69439db6..0b0b5a5a 100644 Binary files a/DataTables/Datas/__enums__.xlsx and b/DataTables/Datas/__enums__.xlsx differ diff --git a/DataTables/Datas/language.xlsx b/DataTables/Datas/language.xlsx index b029da50..d105053c 100644 Binary files a/DataTables/Datas/language.xlsx and b/DataTables/Datas/language.xlsx differ diff --git a/DataTables/Datas/themes.xlsx b/DataTables/Datas/themes.xlsx index 500330d0..a40db8aa 100644 Binary files a/DataTables/Datas/themes.xlsx and b/DataTables/Datas/themes.xlsx differ diff --git a/DataTables/output/tblanguage.json b/DataTables/output/tblanguage.json index be653b58..c095f77b 100644 --- a/DataTables/output/tblanguage.json +++ b/DataTables/output/tblanguage.json @@ -65,7 +65,7 @@ }, { "key": "category_1001", - "language_en": "mature_lady", + "language_en": "Mature Lady", "language_cn": "熟女", "language_hi": "परिपक्व महिला", "language_fr": "Femme mature", @@ -73,7 +73,7 @@ }, { "key": "category_1002", - "language_en": "eighteen", + "language_en": "Eighteen", "language_cn": "18岁", "language_hi": "अठारह वर्ष", "language_fr": "Dix-huit ans", @@ -81,7 +81,7 @@ }, { "key": "category_1003", - "language_en": "hot_mommy", + "language_en": "Hot Mommy", "language_cn": "辣妈", "language_hi": "सेक्सी माँ", "language_fr": "Maman sexy", @@ -89,7 +89,7 @@ }, { "key": "category_1004", - "language_en": "binding", + "language_en": "Binding", "language_cn": "捆绑", "language_hi": "बंधन", "language_fr": "Bondage", @@ -97,7 +97,7 @@ }, { "key": "category_1005", - "language_en": "public_fight", + "language_en": "Public Fight", "language_cn": "公众野战", "language_hi": "सार्वजनिक संभोग", "language_fr": "Sexe public", @@ -105,12 +105,20 @@ }, { "key": "category_1006", - "language_en": "cartoon", + "language_en": "Cartoon", "language_cn": "卡通", "language_hi": "कार्टून", "language_fr": "Dessin animé", "language_de": "Zeichentrick" }, + { + "key": "category_1007", + "language_en": "Up Coming", + "language_cn": "Up Coming", + "language_hi": "कार्टून", + "language_fr": "Dessin animé", + "language_de": "Zeichentrick" + }, { "key": "girl_10001_name", "language_en": "Anaya Kapoor", diff --git a/DataTables/output/tbthemes.json b/DataTables/output/tbthemes.json index 68e22324..97f9a7cf 100644 --- a/DataTables/output/tbthemes.json +++ b/DataTables/output/tbthemes.json @@ -46,5 +46,13 @@ "category": 5, "isRelease": false, "path": "Image/Theme/1006" + }, + { + "id": 1007, + "key": "category_1007", + "name": "upcomming", + "category": 6, + "isRelease": false, + "path": "Image/Theme/1007" } ] \ No newline at end of file diff --git a/assets/Scripts/Sub/UI/SceneBgVideoLayer.ts b/assets/Scripts/Sub/UI/SceneBgVideoLayer.ts index e45c879b..1fd533ef 100644 --- a/assets/Scripts/Sub/UI/SceneBgVideoLayer.ts +++ b/assets/Scripts/Sub/UI/SceneBgVideoLayer.ts @@ -119,12 +119,19 @@ export class SceneBgVideoLayer extends li_BaseView { this.videoPlayer.play(); let uiT:UITransform = this.videoPlayer.node.getComponent(UITransform); - const size = uiT.contentSize; - console.log(size); + const videoSize = uiT.contentSize; const targetSize = data.size; - console.log(targetSize); + console.log('Video size:', videoSize, 'Target size:', targetSize); - this.videoPlayer.node.setScale(new Vec3(targetSize.y/576,targetSize.y/576,1)); + // 计算宽度和高度的缩放比例 + const scaleX = targetSize.width / videoSize.width; + const scaleY = targetSize.height / videoSize.height; + + // 选择较大的缩放比例以填满整个区域(可能超出但不会有黑边) + const scale = Math.max(scaleX, scaleY); + + console.log(`Video scaling: scaleX=${scaleX}, scaleY=${scaleY}, final scale=${scale}`); + this.videoPlayer.node.setScale(new Vec3(scale, scale, 1)); }); } diff --git a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts index 5ec88dee..9299fced 100644 --- a/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts +++ b/assets/Scripts/chat18x/ui/panels/GirlDetailPanel.ts @@ -1,4 +1,12 @@ -import { _decorator, Label, Node, Sprite, VideoPlayer, instantiate } from "cc"; +import { + _decorator, + Label, + Node, + Sprite, + VideoPlayer, + instantiate, + UITransform, +} from "cc"; import li_BaseView from "db://assets/Scripts/Main/Common/li_BaseView"; import ResManager from "db://assets/Scripts/Main/Manager/ResManager"; import { DetailImageItem } from "../../uiitems/DetailImageItem"; @@ -71,6 +79,39 @@ export class GirlDetailPanel extends li_BaseView { this.avatarVideo.play(); } } + + adjustVideoScale() { + if (!this.avatarVideo || !this.avatarVideo.node.parent) { + return; + } + + const tryAdjustScale = () => { + const parentTransform = + this.avatarVideo.node.parent.getComponent(UITransform); + const videoTransform = this.avatarVideo.node.getComponent(UITransform); + + if (parentTransform && videoTransform && videoTransform.height > 0) { + const scale = parentTransform.height / videoTransform.height; + this.avatarVideo.node.setScale(scale, scale, 1); + console.log(`Video scaled to: ${scale}, parent height: ${parentTransform.height}, video height: ${videoTransform.height}`); + return true; + } + return false; + }; + + // 立即尝试一次 + if (!tryAdjustScale()) { + // 如果失败,延迟尝试 + this.scheduleOnce(() => { + if (!tryAdjustScale()) { + // 再次延迟尝试 + this.scheduleOnce(() => { + tryAdjustScale(); + }, 0.5); + } + }, 0.1); + } + } nameKey: string; tagKey: string; category; @@ -90,6 +131,14 @@ export class GirlDetailPanel extends li_BaseView { dataDetail.pics[0], "Chat18x" ); + + // 添加视频加载完成回调 + this.avatarVideo.node.on(VideoPlayer.EventType.READY_TO_PLAY, () => { + this.adjustVideoScale(); + }, this); + + // 也立即尝试调整(以防已经加载完成) + this.adjustVideoScale(); } if (dataDetail.pics.length > 1) { for (let i = this.imgsLayout.children.length - 1; i >= 0; i--) { diff --git a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts index 2616a920..8f154196 100644 --- a/assets/Scripts/chat18x/ui/panels/ThemePanel.ts +++ b/assets/Scripts/chat18x/ui/panels/ThemePanel.ts @@ -45,7 +45,7 @@ export class ThemePanel extends li_BaseView { this.registerListener(); this.itemInst = this._nodeTab.ThemeItem.getComponent(ThemeItem); this.itemInst.node.active = false; - this.content = this._nodeTab.AllThemesLayout; + this.content = this._nodeTab.allThemecontent; this.Show(); } diff --git a/assets/Scripts/chat18x/uiitems/ThemeItem.ts b/assets/Scripts/chat18x/uiitems/ThemeItem.ts index 33c88d88..24717a78 100644 --- a/assets/Scripts/chat18x/uiitems/ThemeItem.ts +++ b/assets/Scripts/chat18x/uiitems/ThemeItem.ts @@ -12,6 +12,8 @@ const { ccclass, property } = _decorator; export class ThemeItem extends Component { @property(Sprite) lockImg: Sprite; + @property(Sprite) + lockCover: Sprite; @property(Label) titleName: Label; @@ -35,7 +37,8 @@ export class ThemeItem extends Component { } refresh(themeData: Theme) { - this.lockImg.node.active = !themeData.isRelease; + this.lockImg.node.active = this.lockCover.node.active = + !themeData.isRelease; this.isLocked = !themeData.isRelease; this.key = themeData.key; this.titleName.string = LanguageUtils.getText(themeData.key); diff --git a/assets/Scripts/schema/schema.ts b/assets/Scripts/schema/schema.ts index 208f9391..72e34967 100644 --- a/assets/Scripts/schema/schema.ts +++ b/assets/Scripts/schema/schema.ts @@ -36,6 +36,10 @@ export enum Category { * 卡通 */ cartoon = 5, + /** + * 未完成 + */ + upcomming = 6, } diff --git a/assets/bundles/Chat18x/ChatPanel.prefab b/assets/bundles/Chat18x/ChatPanel.prefab index 775fcd34..58bc6dc1 100644 --- a/assets/bundles/Chat18x/ChatPanel.prefab +++ b/assets/bundles/Chat18x/ChatPanel.prefab @@ -87,9 +87,6 @@ { "__id__": 3 }, - { - "__id__": 9 - }, { "__id__": 62 }, @@ -150,142 +147,6 @@ }, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "deco", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 2 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 4 - }, - { - "__id__": 6 - } - ], - "_prefab": { - "__id__": 8 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 1109.011, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 5 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 1170, - "height": 298.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2828Qz8CBG6I1BcsGR7RhD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 3 - }, - "_enabled": true, - "__prefab": { - "__id__": 7 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "0b9ea17a-dae1-42ae-b32f-1571d1658fa6@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 0, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bNWAaZptKuaKI9FIRXX+K" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "47f8uAldRGvYYei/4UkdOo", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.Node", "_name": "Upper", @@ -295,6 +156,9 @@ "__id__": 2 }, "_children": [ + { + "__id__": 4 + }, { "__id__": 10 }, @@ -352,13 +216,149 @@ }, "_id": "" }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 3 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 5 + }, + { + "__id__": 7 + } + ], + "_prefab": { + "__id__": 9 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -1162.804, + "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__": 4 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1170, + "height": 2532 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9erai1mrdJu5Qyj/fHCVMP" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 4 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 3, + "_fillType": 1, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 1, + "_fillRange": -0.13, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "66jwQtTIpE0LZDTiL6kTcZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a6RMmHy2BLu4x3mwPxPeqB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.Node", "_name": "ReturnBtn", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, @@ -453,9 +453,9 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -502,9 +502,9 @@ "_transition": 1, "_normalColor": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_hoverColor": { @@ -598,8 +598,6 @@ "__id__": 0 }, "fileId": "72Zr8T/ixB7bYZRSWtwmd/", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -608,7 +606,7 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, @@ -629,7 +627,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -108.3130000000001, + "y": -126.88400000000001, "z": 0 }, "_lrot": { @@ -700,14 +698,14 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 10, - "g": 10, - "b": 10, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Valeria", "_horizontalAlign": 1, - "_verticalAlign": 1, + "_verticalAlign": 2, "_actualFontSize": 70, "_fontSize": 70, "_fontFamily": "NotoSans-Regular", @@ -768,7 +766,7 @@ "_left": 0, "_right": 0, "_top": 0, - "_bottom": 35.49099999999989, + "_bottom": 16.91999999999998, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -796,8 +794,6 @@ "__id__": 0 }, "fileId": "39EnTuibZGCr652I/KtAjK", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -806,7 +802,7 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [ { @@ -1172,8 +1168,6 @@ "__id__": 0 }, "fileId": "57e5J7vh1M7p6trwHvaWGq", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -1182,7 +1176,7 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 9 + "__id__": 3 }, "_children": [], "_active": true, @@ -1274,9 +1268,9 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 130, - "g": 54, - "b": 136, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -1347,8 +1341,6 @@ "__id__": 0 }, "fileId": "bfSWNeNClPV7y6vofKsuzM", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -1357,7 +1349,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 3 }, "_enabled": true, "__prefab": { @@ -1385,9 +1377,9 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 3 }, - "_enabled": true, + "_enabled": false, "__prefab": { "__id__": 58 }, @@ -1430,7 +1422,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 9 + "__id__": 3 }, "_enabled": true, "__prefab": { @@ -1469,8 +1461,6 @@ "__id__": 0 }, "fileId": "bbti0yYsZHGpPCtqZ37P2r", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -3291,7 +3281,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -50, + "y": -61.700000000000045, "z": 0 }, "_lrot": { @@ -3332,7 +3322,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1167, - "height": 2032 + "height": 2008.6 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3361,7 +3351,7 @@ "_target": null, "_left": 0, "_right": 0, - "_top": 300, + "_top": 323.4, "_bottom": 200, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -3702,7 +3692,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -505.45, + "x": -483.71500000000003, "y": 47, "z": 0 }, @@ -4300,7 +4290,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__uuid__": "4cef8664-eeed-4be5-b33b-1bb74a6019cb@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -4340,7 +4330,7 @@ } ], "_interactable": true, - "_transition": 2, + "_transition": 0, "_normalColor": { "__type__": "cc.Color", "r": 214, @@ -4370,7 +4360,7 @@ "a": 255 }, "_normalSprite": { - "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941", + "__uuid__": "4cef8664-eeed-4be5-b33b-1bb74a6019cb@f9941", "__expectedType__": "cc.SpriteFrame" }, "_hoverSprite": { @@ -4415,8 +4405,6 @@ "__id__": 0 }, "fileId": "63rx8crEFCYI2KnhlywsIA", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { @@ -4819,8 +4807,6 @@ "__id__": 0 }, "fileId": "81Uff7uwFDBpNbH8mEhRRb", - "instance": null, - "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { diff --git a/assets/bundles/Chat18x/GirlDetailPanel.prefab b/assets/bundles/Chat18x/GirlDetailPanel.prefab index d559cfe0..3106d735 100644 --- a/assets/bundles/Chat18x/GirlDetailPanel.prefab +++ b/assets/bundles/Chat18x/GirlDetailPanel.prefab @@ -25,20 +25,20 @@ "_active": true, "_components": [ { - "__id__": 248 + "__id__": 518 }, { - "__id__": 250 + "__id__": 520 }, { - "__id__": 252 + "__id__": 522 }, { - "__id__": 254 + "__id__": 524 } ], "_prefab": { - "__id__": 256 + "__id__": 526 }, "_lpos": { "__type__": "cc.Vec3", @@ -91,17 +91,17 @@ "_active": true, "_components": [ { - "__id__": 241 + "__id__": 511 }, { - "__id__": 243 + "__id__": 513 }, { - "__id__": 245 + "__id__": 515 } ], "_prefab": { - "__id__": 247 + "__id__": 517 }, "_lpos": { "__type__": "cc.Vec3", @@ -293,9 +293,9 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -342,9 +342,9 @@ "_transition": 1, "_normalColor": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_hoverColor": { @@ -540,14 +540,14 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 0, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Name", "_horizontalAlign": 1, - "_verticalAlign": 1, + "_verticalAlign": 2, "_actualFontSize": 70, "_fontSize": 70, "_fontFamily": "NotoSans-Regular", @@ -676,7 +676,7 @@ "node": { "__id__": 3 }, - "_enabled": true, + "_enabled": false, "__prefab": { "__id__": 26 }, @@ -796,7 +796,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 466, + "y": 547.05, "z": 0 }, "_lrot": { @@ -859,7 +859,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 41.763999999999896, + "y": -28.593000000000018, "z": 0 }, "_lrot": { @@ -1232,7 +1232,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 600, - "height": 700 + "height": 780.7139999999999 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1324,12 +1324,12 @@ "__prefab": { "__id__": 55 }, - "_alignFlags": 18, + "_alignFlags": 21, "_target": null, "_left": 0, "_right": 65, - "_top": 0, - "_bottom": 20, + "_top": 57.18600000000009, + "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 41.763999999999896, "_isAbsLeft": true, @@ -1339,9 +1339,9 @@ "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, "_originalWidth": 0, - "_originalHeight": 0, + "_originalHeight": 700, "_alignMode": 2, - "_lockFlags": 36, + "_lockFlags": 37, "_id": "" }, { @@ -1404,7 +1404,7 @@ "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 451.58899999999994, + "y": 394.14700000000016, "z": 0 }, "_lrot": { @@ -2240,7 +2240,7 @@ "_contentSize": { "__type__": "cc.Size", "width": 1167, - "height": 1000 + "height": 837.9 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2261,7 +2261,7 @@ "node": { "__id__": 30 }, - "_enabled": true, + "_enabled": false, "__prefab": { "__id__": 98 }, @@ -2327,7 +2327,7 @@ "_originalWidth": 100, "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 0, + "_lockFlags": 1, "_id": "" }, { @@ -2360,23 +2360,23 @@ "__id__": 103 }, { - "__id__": 144 + "__id__": 160 } ], "_active": true, "_components": [ { - "__id__": 234 + "__id__": 504 }, { - "__id__": 236 + "__id__": 506 }, { - "__id__": 238 + "__id__": 508 } ], "_prefab": { - "__id__": 240 + "__id__": 510 }, "_lpos": { "__type__": "cc.Vec3", @@ -2420,23 +2420,29 @@ "__id__": 104 }, { - "__id__": 129 + "__id__": 112 + }, + { + "__id__": 137 + }, + { + "__id__": 145 } ], "_active": true, "_components": [ { - "__id__": 137 + "__id__": 153 }, { - "__id__": 139 + "__id__": 155 }, { - "__id__": 141 + "__id__": 157 } ], "_prefab": { - "__id__": 143 + "__id__": 159 }, "_lpos": { "__type__": "cc.Vec3", @@ -2469,95 +2475,32 @@ }, { "__type__": "cc.Node", - "_name": "Button", + "_name": "bg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 103 }, - "_children": [ - { - "__id__": 105 - }, - { - "__id__": 113 - } - ], - "_active": true, - "_components": [ - { - "__id__": 119 - }, - { - "__id__": 121 - }, - { - "__id__": 123 - }, - { - "__id__": 126 - } - ], - "_prefab": { - "__id__": 128 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": -95.93100000000004, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 104 - }, "_children": [], "_active": true, "_components": [ { - "__id__": 106 + "__id__": 105 }, { - "__id__": 108 + "__id__": 107 }, { - "__id__": 110 + "__id__": 109 } ], "_prefab": { - "__id__": 112 + "__id__": 111 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1.3519999999998618, + "y": 0, "z": 0 }, "_lrot": { @@ -2589,11 +2532,249 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 104 }, "_enabled": true, "__prefab": { - "__id__": 107 + "__id__": 106 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1157, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0b+/t/EM5B8ZiPbR7JiH2H" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 104 + }, + "_enabled": true, + "__prefab": { + "__id__": 108 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 57, + "g": 0, + "b": 71, + "a": 89 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83QynoypRPCLQMrcWfk09/" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 104 + }, + "_enabled": true, + "__prefab": { + "__id__": 110 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "92xMiMeyxHEYXtm8U1g7Ag" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "30Y/ksyBxMHaP3nhLfx2yw", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Button", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 103 + }, + "_children": [ + { + "__id__": 113 + }, + { + "__id__": 121 + } + ], + "_active": true, + "_components": [ + { + "__id__": 127 + }, + { + "__id__": 129 + }, + { + "__id__": 131 + }, + { + "__id__": 134 + } + ], + "_prefab": { + "__id__": 136 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -108.923, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 112 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 114 + }, + { + "__id__": 116 + }, + { + "__id__": 118 + } + ], + "_prefab": { + "__id__": 120 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 298.82500000000005, + "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__": 113 + }, + "_enabled": true, + "__prefab": { + "__id__": 115 }, "_contentSize": { "__type__": "cc.Size", @@ -2617,11 +2798,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 109 + "__id__": 117 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2634,7 +2815,7 @@ "a": 255 }, "_string": "Send Msgs!", - "_horizontalAlign": 1, + "_horizontalAlign": 2, "_verticalAlign": 1, "_actualFontSize": 81.3, "_fontSize": 81.3, @@ -2685,11 +2866,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 105 + "__id__": 113 }, "_enabled": true, "__prefab": { - "__id__": 111 + "__id__": 119 }, "languageKey": "girldetailpanel.chatbtn", "defaultText": "", @@ -2719,25 +2900,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 104 + "__id__": 112 }, "_children": [], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 122 }, { - "__id__": 116 + "__id__": 124 } ], "_prefab": { - "__id__": 118 + "__id__": 126 }, "_lpos": { "__type__": "cc.Vec3", - "x": -378.898, - "y": 0, + "x": -465.29, + "y": -2.1649999999999636, "z": 0 }, "_lrot": { @@ -2769,16 +2950,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 123 }, "_contentSize": { "__type__": "cc.Size", - "width": 100, - "height": 100 + "width": 130, + "height": 130 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2797,11 +2978,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 113 + "__id__": 121 }, "_enabled": true, "__prefab": { - "__id__": 117 + "__id__": 125 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2855,16 +3036,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 128 }, "_contentSize": { "__type__": "cc.Size", - "width": 1000, - "height": 130 + "width": 1127, + "height": 159.5 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2883,24 +3064,24 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 130 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 201, - "g": 144, - "b": 206, + "r": 192, + "g": 91, + "b": 192, "a": 255 }, "_spriteFrame": { - "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@f9941", + "__uuid__": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -2928,24 +3109,24 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 124 + "__id__": 132 }, "clickEvents": [ { - "__id__": 125 + "__id__": 133 } ], "_interactable": true, "_transition": 1, "_normalColor": { "__type__": "cc.Color", - "r": 201, - "g": 144, - "b": 206, + "r": 192, + "g": 91, + "b": 192, "a": 255 }, "_hoverColor": { @@ -2969,26 +3150,14 @@ "b": 167, "a": 255 }, - "_normalSprite": { - "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@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" - }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 104 + "__id__": 112 }, "_id": "" }, @@ -3012,11 +3181,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 104 + "__id__": 112 }, "_enabled": true, "__prefab": { - "__id__": 127 + "__id__": 135 }, "_alignFlags": 16, "_target": null, @@ -3067,22 +3236,22 @@ "_active": true, "_components": [ { - "__id__": 130 + "__id__": 138 }, { - "__id__": 132 + "__id__": 140 }, { - "__id__": 134 + "__id__": 142 } ], "_prefab": { - "__id__": 136 + "__id__": 144 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 100, + "y": 85.75, "z": 0 }, "_lrot": { @@ -3114,16 +3283,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 139 }, "_contentSize": { "__type__": "cc.Size", "width": 987.4, - "height": 200 + "height": 228.5 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3142,11 +3311,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 141 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3210,11 +3379,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 143 }, "_alignFlags": 41, "_target": null, @@ -3253,6 +3422,181 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "bg-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 103 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 146 + }, + { + "__id__": 148 + }, + { + "__id__": 150 + } + ], + "_prefab": { + "__id__": 152 + }, + "_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__": 145 + }, + "_enabled": true, + "__prefab": { + "__id__": 147 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1157, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "baKL/kUzZD/L4OipkBLl27" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 145 + }, + "_enabled": true, + "__prefab": { + "__id__": 149 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 104 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8BeBwnahGCayigmcTJcfJ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 145 + }, + "_enabled": true, + "__prefab": { + "__id__": 151 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "06V50ZWjBLsbtKhlt4zNY5" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8b3WfhW4ZM6r9xWeI9zCWi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -3263,7 +3607,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 138 + "__id__": 154 }, "_contentSize": { "__type__": "cc.Size", @@ -3291,7 +3635,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 156 }, "_alignFlags": 41, "_target": null, @@ -3325,18 +3669,18 @@ "node": { "__id__": 103 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 142 + "__id__": 158 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -3384,39 +3728,48 @@ "__id__": 102 }, "_children": [ - { - "__id__": 145 - }, - { - "__id__": 153 - }, { "__id__": 161 }, { - "__id__": 171 + "__id__": 169 }, { - "__id__": 179 + "__id__": 177 }, { - "__id__": 219 + "__id__": 185 + }, + { + "__id__": 195 + }, + { + "__id__": 203 + }, + { + "__id__": 251 + }, + { + "__id__": 463 + }, + { + "__id__": 471 } ], "_active": true, "_components": [ { - "__id__": 227 + "__id__": 497 }, { - "__id__": 229 + "__id__": 499 }, { - "__id__": 231 + "__id__": 501 } ], "_prefab": { - "__id__": 233 + "__id__": 503 }, "_lpos": { "__type__": "cc.Vec3", @@ -3449,27 +3802,202 @@ }, { "__type__": "cc.Node", - "_name": "Name", + "_name": "bg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 160 }, "_children": [], "_active": true, "_components": [ { - "__id__": 146 + "__id__": 162 }, { - "__id__": 148 + "__id__": 164 }, { - "__id__": 150 + "__id__": 166 } ], "_prefab": { - "__id__": 152 + "__id__": 168 + }, + "_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__": 161 + }, + "_enabled": true, + "__prefab": { + "__id__": 163 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 980 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a0GYDnJN9FSpeUcLzA3941" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 161 + }, + "_enabled": true, + "__prefab": { + "__id__": 165 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 57, + "g": 0, + "b": 71, + "a": 89 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "18GxTTGNhLzJ7VOSesp3lx" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 161 + }, + "_enabled": true, + "__prefab": { + "__id__": 167 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c7oMc2ST9LbYA6NlLZggDg" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "25pKa3b9dHo4w5m9BVYz8M", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Name", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 160 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 170 + }, + { + "__id__": 172 + }, + { + "__id__": 174 + } + ], + "_prefab": { + "__id__": 176 }, "_lpos": { "__type__": "cc.Vec3", @@ -3506,11 +4034,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 171 }, "_contentSize": { "__type__": "cc.Size", @@ -3534,20 +4062,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 173 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 27, - "g": 27, - "b": 27, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Name:Namsaldjaks", @@ -3602,11 +4130,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 169 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 175 }, "_alignFlags": 33, "_target": null, @@ -3651,23 +4179,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 160 }, "_children": [], "_active": true, "_components": [ { - "__id__": 154 + "__id__": 178 }, { - "__id__": 156 + "__id__": 180 }, { - "__id__": 158 + "__id__": 182 } ], "_prefab": { - "__id__": 160 + "__id__": 184 }, "_lpos": { "__type__": "cc.Vec3", @@ -3704,11 +4232,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 177 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 179 }, "_contentSize": { "__type__": "cc.Size", @@ -3732,20 +4260,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 177 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 181 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 27, - "g": 27, - "b": 27, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Age:28", @@ -3800,11 +4328,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 153 + "__id__": 177 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 183 }, "_alignFlags": 33, "_target": null, @@ -3849,26 +4377,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 160 }, "_children": [], "_active": true, "_components": [ { - "__id__": 162 + "__id__": 186 }, { - "__id__": 164 + "__id__": 188 }, { - "__id__": 166 + "__id__": 190 }, { - "__id__": 168 + "__id__": 192 } ], "_prefab": { - "__id__": 170 + "__id__": 194 }, "_lpos": { "__type__": "cc.Vec3", @@ -3905,11 +4433,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 161 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 187 }, "_contentSize": { "__type__": "cc.Size", @@ -3933,20 +4461,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 161 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 189 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 27, - "g": 27, - "b": 27, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Description:\n", @@ -4001,11 +4529,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 161 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 191 }, "_alignFlags": 45, "_target": null, @@ -4037,11 +4565,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 161 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 193 }, "languageKey": "girldetailpanel.desc", "defaultText": "", @@ -4071,23 +4599,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 160 }, "_children": [], "_active": true, "_components": [ { - "__id__": 172 + "__id__": 196 }, { - "__id__": 174 + "__id__": 198 }, { - "__id__": 176 + "__id__": 200 } ], "_prefab": { - "__id__": 178 + "__id__": 202 }, "_lpos": { "__type__": "cc.Vec3", @@ -4124,11 +4652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 197 }, "_contentSize": { "__type__": "cc.Size", @@ -4152,20 +4680,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 199 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 27, - "g": 27, - "b": 27, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "AAAAA\nAAAAA\nAAAAA", @@ -4220,11 +4748,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 171 + "__id__": 195 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 201 }, "_alignFlags": 41, "_target": null, @@ -4269,32 +4797,35 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 160 }, "_children": [ { - "__id__": 180 + "__id__": 204 + }, + { + "__id__": 236 } ], "_active": true, "_components": [ { - "__id__": 212 + "__id__": 244 }, { - "__id__": 214 + "__id__": 246 }, { - "__id__": 216 + "__id__": 248 } ], "_prefab": { - "__id__": 218 + "__id__": 250 }, "_lpos": { "__type__": "cc.Vec3", "x": -407.20000000000005, - "y": 0, + "y": -225, "z": 0 }, "_lrot": { @@ -4326,39 +4857,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 179 + "__id__": 203 }, "_children": [ { - "__id__": 181 + "__id__": 205 }, { - "__id__": 187 + "__id__": 211 }, { - "__id__": 193 + "__id__": 217 }, { - "__id__": 197 + "__id__": 221 } ], "_active": true, "_components": [ { - "__id__": 203 + "__id__": 227 }, { - "__id__": 205 + "__id__": 229 }, { - "__id__": 207 + "__id__": 231 }, { - "__id__": 209 + "__id__": 233 } ], "_prefab": { - "__id__": 211 + "__id__": 235 }, "_lpos": { "__type__": "cc.Vec3", @@ -4395,20 +4926,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 180 + "__id__": 204 }, "_children": [], "_active": true, "_components": [ { - "__id__": 182 + "__id__": 206 }, { - "__id__": 184 + "__id__": 208 } ], "_prefab": { - "__id__": 186 + "__id__": 210 }, "_lpos": { "__type__": "cc.Vec3", @@ -4445,11 +4976,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 183 + "__id__": 207 }, "_contentSize": { "__type__": "cc.Size", @@ -4473,11 +5004,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 181 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 209 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4531,20 +5062,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 180 + "__id__": 204 }, "_children": [], "_active": true, "_components": [ { - "__id__": 188 + "__id__": 212 }, { - "__id__": 190 + "__id__": 214 } ], "_prefab": { - "__id__": 192 + "__id__": 216 }, "_lpos": { "__type__": "cc.Vec3", @@ -4581,11 +5112,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 189 + "__id__": 213 }, "_contentSize": { "__type__": "cc.Size", @@ -4609,11 +5140,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 211 }, "_enabled": true, "__prefab": { - "__id__": 191 + "__id__": 215 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4667,17 +5198,17 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 180 + "__id__": 204 }, "_children": [], "_active": false, "_components": [ { - "__id__": 194 + "__id__": 218 } ], "_prefab": { - "__id__": 196 + "__id__": 220 }, "_lpos": { "__type__": "cc.Vec3", @@ -4714,11 +5245,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 193 + "__id__": 217 }, "_enabled": true, "__prefab": { - "__id__": 195 + "__id__": 219 }, "_contentSize": { "__type__": "cc.Size", @@ -4755,20 +5286,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 180 + "__id__": 204 }, "_children": [], "_active": true, "_components": [ { - "__id__": 198 + "__id__": 222 }, { - "__id__": 200 + "__id__": 224 } ], "_prefab": { - "__id__": 202 + "__id__": 226 }, "_lpos": { "__type__": "cc.Vec3", @@ -4805,11 +5336,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 197 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 199 + "__id__": 223 }, "_contentSize": { "__type__": "cc.Size", @@ -4833,11 +5364,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 197 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 201 + "__id__": 225 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4914,11 +5445,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 180 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 228 }, "_contentSize": { "__type__": "cc.Size", @@ -4942,11 +5473,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 180 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 206 + "__id__": 230 }, "_alignFlags": 45, "_target": null, @@ -4978,11 +5509,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 180 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 208 + "__id__": 232 }, "_type": 3, "_inverted": false, @@ -5000,11 +5531,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 180 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 234 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5052,17 +5583,192 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "Mask-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 203 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 237 + }, + { + "__id__": 239 + }, + { + "__id__": 241 + } + ], + "_prefab": { + "__id__": 243 + }, + "_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__": 179 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 238 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0aH9b5Q7hG1Igq/3cAizqF" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 236 + }, + "_enabled": true, + "__prefab": { + "__id__": 240 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "72Gr7nnBtJ5LrniJtFfc3B" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 236 + }, + "_enabled": true, + "__prefab": { + "__id__": 242 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fzh0SyCZEUopguKA4uADb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4fBgRdVjRImIpfGyFyApzj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 203 + }, + "_enabled": true, + "__prefab": { + "__id__": 245 }, "_contentSize": { "__type__": "cc.Size", @@ -5086,11 +5792,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 179 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 215 + "__id__": 247 }, "clickEvents": [], "_interactable": true, @@ -5142,20 +5848,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 179 + "__id__": 203 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 249 }, "img": { - "__id__": 184 + "__id__": 208 }, "lock": { - "__id__": 187 + "__id__": 211 }, "question": { - "__id__": 197 + "__id__": 221 }, "_id": "" }, @@ -5182,28 +5888,226 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 144 + "__id__": 160 + }, + "_children": [ + { + "__id__": 252 + }, + { + "__id__": 292 + }, + { + "__id__": 332 + }, + { + "__id__": 372 + }, + { + "__id__": 412 + } + ], + "_active": false, + "_components": [ + { + "__id__": 452 + }, + { + "__id__": 454 + }, + { + "__id__": 456 + }, + { + "__id__": 458 + }, + { + "__id__": 460 + } + ], + "_prefab": { + "__id__": 462 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -243.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": "ImageItem-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 251 + }, + "_children": [ + { + "__id__": 253 + } + ], + "_active": true, + "_components": [ + { + "__id__": 285 + }, + { + "__id__": 287 + }, + { + "__id__": 289 + } + ], + "_prefab": { + "__id__": 291 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -405.70000000000005, + "y": -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": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 252 + }, + "_children": [ + { + "__id__": 254 + }, + { + "__id__": 260 + }, + { + "__id__": 266 + }, + { + "__id__": 270 + } + ], + "_active": true, + "_components": [ + { + "__id__": 276 + }, + { + "__id__": 278 + }, + { + "__id__": 280 + }, + { + "__id__": 282 + } + ], + "_prefab": { + "__id__": 284 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 253 }, "_children": [], "_active": true, "_components": [ { - "__id__": 220 + "__id__": 255 }, { - "__id__": 222 - }, - { - "__id__": 224 + "__id__": 257 } ], "_prefab": { - "__id__": 226 + "__id__": 259 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": -220, + "x": 5.684341886080802e-14, + "y": 0, "z": 0 }, "_lrot": { @@ -5235,16 +6139,4405 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 254 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 256 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c7mIE/f6hIR5qBZCjj+3eh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 254 + }, + "_enabled": true, + "__prefab": { + "__id__": 258 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "11pI4g/+VOPpe4GoxDjMJI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "30xwx9ymJGTIr9vGFAUh0X", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 253 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 261 + }, + { + "__id__": 263 + } + ], + "_prefab": { + "__id__": 265 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 260 + }, + "_enabled": true, + "__prefab": { + "__id__": 262 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "63zoKDIlJCQLAftVki9N5T" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 260 + }, + "_enabled": true, + "__prefab": { + "__id__": 264 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c9KsFvJkBCXpdvV7lkHrih" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ca36L9UVZN6oo3fc1JlLBe", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 253 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 267 + } + ], + "_prefab": { + "__id__": 269 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 266 + }, + "_enabled": true, + "__prefab": { + "__id__": 268 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "89qMsL/QlHZ5JKNRGQxdAE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1duD+d6KNJRabhswckgsdR", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 253 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 271 + }, + { + "__id__": 273 + } + ], + "_prefab": { + "__id__": 275 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 270 + }, + "_enabled": true, + "__prefab": { + "__id__": 272 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 305.419921875, + "height": 630 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6aKLKGtkZA3bHt88BPeDzO" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 270 + }, + "_enabled": true, + "__prefab": { + "__id__": 274 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "?", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 500, + "_fontSize": 500, + "_fontFamily": "Arial", + "_lineHeight": 500, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "adgbZU+xZHe4psObRt0bIc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a2cBsPiJ1GLqnglOgUd5ya", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 253 + }, + "_enabled": true, + "__prefab": { + "__id__": 277 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "51aRsvKY9GEq1didqew2zd" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 253 + }, + "_enabled": true, + "__prefab": { + "__id__": 279 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a82fRpQE5BD5RuIDh1laFg" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 253 + }, + "_enabled": true, + "__prefab": { + "__id__": 281 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ebLjBTHHBN15mCOGQpo7rd" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 253 + }, + "_enabled": true, + "__prefab": { + "__id__": 283 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d6JN5qU2NDMYpu2NiWYG2O" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f431Ye47lLFKgw5sId2ExE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 252 + }, + "_enabled": true, + "__prefab": { + "__id__": 286 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "78cf81y6lMOqDtDndFSz5U" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 252 + }, + "_enabled": true, + "__prefab": { + "__id__": 288 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "26aFY389xH945bgFUn7U+T" + }, + { + "__type__": "4ce70ScWKpFGalZ/RcxTbmk", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 252 + }, + "_enabled": true, + "__prefab": { + "__id__": 290 + }, + "img": { + "__id__": 257 + }, + "lock": { + "__id__": 260 + }, + "question": { + "__id__": 270 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "adLGtHyohDmKX/Jqr1sTpb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a0DfcGQTRDI67/dWqUY7Nl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ImageItem-002", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 251 + }, + "_children": [ + { + "__id__": 293 + } + ], + "_active": true, + "_components": [ + { + "__id__": 325 + }, + { + "__id__": 327 + }, + { + "__id__": 329 + } + ], + "_prefab": { + "__id__": 331 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -94.80000000000004, + "y": -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": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 292 + }, + "_children": [ + { + "__id__": 294 + }, + { + "__id__": 300 + }, + { + "__id__": 306 + }, + { + "__id__": 310 + } + ], + "_active": true, + "_components": [ + { + "__id__": 316 + }, + { + "__id__": 318 + }, + { + "__id__": 320 + }, + { + "__id__": 322 + } + ], + "_prefab": { + "__id__": 324 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 295 + }, + { + "__id__": 297 + } + ], + "_prefab": { + "__id__": 299 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 294 + }, + "_enabled": true, + "__prefab": { + "__id__": 296 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "966uBqohND860HL8z62QGV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 294 + }, + "_enabled": true, + "__prefab": { + "__id__": 298 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "81VYNXjaBDtadiz63NfXzr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1fuGnuCnxLNqToaRZu5h+v", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 301 + }, + { + "__id__": 303 + } + ], + "_prefab": { + "__id__": 305 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 300 + }, + "_enabled": true, + "__prefab": { + "__id__": 302 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "96tEiUPVlH26aMqjJKccJY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 300 + }, + "_enabled": true, + "__prefab": { + "__id__": 304 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "80nvcf5ThKN5M+JQhr9Gxe" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "900uTdf8BN8Jor6Ng+1lOJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 307 + } + ], + "_prefab": { + "__id__": 309 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 306 + }, + "_enabled": true, + "__prefab": { + "__id__": 308 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "81y67OMD9OYrz3J/bc7dfC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b107zxTYRIpJVtYiwGpSvi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 293 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 311 + }, + { + "__id__": 313 + } + ], + "_prefab": { + "__id__": 315 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 310 + }, + "_enabled": true, + "__prefab": { + "__id__": 312 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 305.419921875, + "height": 630 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "75bmPp2gxK35LHe18qcLpv" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 310 + }, + "_enabled": true, + "__prefab": { + "__id__": 314 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "?", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 500, + "_fontSize": 500, + "_fontFamily": "Arial", + "_lineHeight": 500, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "88W+1jeqFGu44C8+yatMqq" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9x7iZvAhLV6VmRfQmRHPr", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 293 + }, + "_enabled": true, + "__prefab": { + "__id__": 317 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c8btEoq2RGqZw9n7LcU0hJ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 293 + }, + "_enabled": true, + "__prefab": { + "__id__": 319 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "383uAOW7ZKyrQGvG7acSfj" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 293 + }, + "_enabled": true, + "__prefab": { + "__id__": 321 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "43Tq4qs21J0IJ38H8WOz89" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 293 + }, + "_enabled": true, + "__prefab": { + "__id__": 323 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6cGljL7ABMr5LM2/MzluvR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ccvk7KHnFMo4FNDTk5BQyL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 326 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9bdhjovw5P268TJA0cX1gQ" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 328 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53eq5B8xxFuayZielPBKB7" + }, + { + "__type__": "4ce70ScWKpFGalZ/RcxTbmk", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 330 + }, + "img": { + "__id__": 297 + }, + "lock": { + "__id__": 300 + }, + "question": { + "__id__": 310 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "78BxRx9alPfIR9s0nnzpJO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "56LaHZQ9hJCbzssYg3gh51", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ImageItem-003", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 251 + }, + "_children": [ + { + "__id__": 333 + } + ], + "_active": true, + "_components": [ + { + "__id__": 365 + }, + { + "__id__": 367 + }, + { + "__id__": 369 + } + ], + "_prefab": { + "__id__": 371 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 216.09999999999997, + "y": -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": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 332 + }, + "_children": [ + { + "__id__": 334 + }, + { + "__id__": 340 + }, + { + "__id__": 346 + }, + { + "__id__": 350 + } + ], + "_active": true, + "_components": [ + { + "__id__": 356 + }, + { + "__id__": 358 + }, + { + "__id__": 360 + }, + { + "__id__": 362 + } + ], + "_prefab": { + "__id__": 364 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 333 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 335 + }, + { + "__id__": 337 + } + ], + "_prefab": { + "__id__": 339 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 334 + }, + "_enabled": true, + "__prefab": { + "__id__": 336 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3z3z1LUJIHJEai1FwEpeM" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 334 + }, + "_enabled": true, + "__prefab": { + "__id__": 338 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8a26KqGlFMRb9L9DWbbdJt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ffzd7DjbRJNa7Oi7DWSPHz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 333 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 341 + }, + { + "__id__": 343 + } + ], + "_prefab": { + "__id__": 345 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 340 + }, + "_enabled": true, + "__prefab": { + "__id__": 342 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "786eajoLdM8ZGu7LaIrWe+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 340 + }, + "_enabled": true, + "__prefab": { + "__id__": 344 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4dpkHvoddBDb0AXXW5KPSR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cdTDhL4lNL8rukye1j/fCA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 333 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 347 + } + ], + "_prefab": { + "__id__": 349 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 346 + }, + "_enabled": true, + "__prefab": { + "__id__": 348 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8dsOBnFglHxZmy8xfvErAk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6fuJ8ANiRMJ63QRa4cGuSe", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 333 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 351 + }, + { + "__id__": 353 + } + ], + "_prefab": { + "__id__": 355 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 350 + }, + "_enabled": true, + "__prefab": { + "__id__": 352 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 305.419921875, + "height": 630 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ddNIk48MVBcrt9FnvsKT81" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 350 + }, + "_enabled": true, + "__prefab": { + "__id__": 354 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "?", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 500, + "_fontSize": 500, + "_fontFamily": "Arial", + "_lineHeight": 500, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2aAPb2WXRFXIyzKFlWrv1V" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "42h91wRRZOXryMUhpbZtx1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 333 + }, + "_enabled": true, + "__prefab": { + "__id__": 357 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cb7Rs5SD9F4K1QYjzhx+2C" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 333 + }, + "_enabled": true, + "__prefab": { + "__id__": 359 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "30OlC68g9AeKQtIE8lrTqa" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 333 + }, + "_enabled": true, + "__prefab": { + "__id__": 361 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f5772ud5FBubBCxydqLO7B" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 333 + }, + "_enabled": true, + "__prefab": { + "__id__": 363 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "66Y0IoyEhGhYfXMRjelbOq" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fcxGWAVNNLq5t/LCqTcz0y", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 332 + }, + "_enabled": true, + "__prefab": { + "__id__": 366 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3bz6wbm0xEnZBO0ZyU1sNl" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 332 + }, + "_enabled": true, + "__prefab": { + "__id__": 368 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61t01QwsNLx53p9kE63hCV" + }, + { + "__type__": "4ce70ScWKpFGalZ/RcxTbmk", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 332 + }, + "_enabled": true, + "__prefab": { + "__id__": 370 + }, + "img": { + "__id__": 337 + }, + "lock": { + "__id__": 340 + }, + "question": { + "__id__": 350 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c2rMOLj5VBy4QF8BiELIx3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19r1Ffj8hDs4PsNRaFTU4J", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ImageItem-004", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 251 + }, + "_children": [ + { + "__id__": 373 + } + ], + "_active": true, + "_components": [ + { + "__id__": 405 + }, + { + "__id__": 407 + }, + { + "__id__": 409 + } + ], + "_prefab": { + "__id__": 411 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 527, + "y": -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": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 372 + }, + "_children": [ + { + "__id__": 374 + }, + { + "__id__": 380 + }, + { + "__id__": 386 + }, + { + "__id__": 390 + } + ], + "_active": true, + "_components": [ + { + "__id__": 396 + }, + { + "__id__": 398 + }, + { + "__id__": 400 + }, + { + "__id__": 402 + } + ], + "_prefab": { + "__id__": 404 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 373 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 375 + }, + { + "__id__": 377 + } + ], + "_prefab": { + "__id__": 379 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 374 + }, + "_enabled": true, + "__prefab": { + "__id__": 376 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49ST5DHelHw7JBTFVBWP1F" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 374 + }, + "_enabled": true, + "__prefab": { + "__id__": 378 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfGN8sD/dB67ZtD1B8o8gC" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6aTFz/lghNWLhMlXXna4sC", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 373 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 381 + }, + { + "__id__": 383 + } + ], + "_prefab": { + "__id__": 385 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 380 + }, + "_enabled": true, + "__prefab": { + "__id__": 382 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3cJSQ76q5Baq6ICVYHbNp4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 380 + }, + "_enabled": true, + "__prefab": { + "__id__": 384 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4b54bKJExALYs9R6yfm9AB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72Oj7WNMJOhb93vja3YoJ4", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 373 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 387 + } + ], + "_prefab": { + "__id__": 389 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 386 + }, + "_enabled": true, + "__prefab": { + "__id__": 388 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "84U7UUx9dAXI0QbFfk0r8o" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "de0rJD3cRDNahQtDvfE8Fm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 373 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 391 + }, + { + "__id__": 393 + } + ], + "_prefab": { + "__id__": 395 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 390 + }, + "_enabled": true, + "__prefab": { + "__id__": 392 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 305.419921875, + "height": 630 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "80A9ASpZFLBaU4e+fNhafo" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 390 + }, + "_enabled": true, + "__prefab": { + "__id__": 394 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "?", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 500, + "_fontSize": 500, + "_fontFamily": "Arial", + "_lineHeight": 500, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "95h6lEtZtJ6YjAru8KMb8+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c7wdX+40REZIMb20uLxuKj", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 373 + }, + "_enabled": true, + "__prefab": { + "__id__": 397 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0dlICSPSVJLaL9rz5pXjpW" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 373 + }, + "_enabled": true, + "__prefab": { + "__id__": 399 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e3nDjuozFLE7/IDxHBAI9r" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 373 + }, + "_enabled": true, + "__prefab": { + "__id__": 401 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "00iB3O1wFF1Yjq+5D0Orrs" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 373 + }, + "_enabled": true, + "__prefab": { + "__id__": 403 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "161b7QWoNN4Za3KTKookFc" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4aYucVMhxJEJ+PnWquWar7", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 372 + }, + "_enabled": true, + "__prefab": { + "__id__": 406 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0ep8Juq+FChIWkvSYHKK/s" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 372 + }, + "_enabled": true, + "__prefab": { + "__id__": 408 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9elcKzUlJMX4QHiZPqCmmk" + }, + { + "__type__": "4ce70ScWKpFGalZ/RcxTbmk", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 372 + }, + "_enabled": true, + "__prefab": { + "__id__": 410 + }, + "img": { + "__id__": 377 + }, + "lock": { + "__id__": 380 + }, + "question": { + "__id__": 390 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "60sdso5nFN7p7R4pbSp9db" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "da0K38uJtEmqbZ8WFVN8QH", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ImageItem-005", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 251 + }, + "_children": [ + { + "__id__": 413 + } + ], + "_active": true, + "_components": [ + { + "__id__": 445 + }, + { + "__id__": 447 + }, + { + "__id__": 449 + } + ], + "_prefab": { + "__id__": 451 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 837.9, + "y": -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": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 412 + }, + "_children": [ + { + "__id__": 414 + }, + { + "__id__": 420 + }, + { + "__id__": 426 + }, + { + "__id__": 430 + } + ], + "_active": true, + "_components": [ + { + "__id__": 436 + }, + { + "__id__": 438 + }, + { + "__id__": 440 + }, + { + "__id__": 442 + } + ], + "_prefab": { + "__id__": 444 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 413 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 415 + }, + { + "__id__": 417 + } + ], + "_prefab": { + "__id__": 419 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 414 + }, + "_enabled": true, + "__prefab": { + "__id__": 416 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "25OsUncdNMfbXCl/Tq9pdx" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 414 + }, + "_enabled": true, + "__prefab": { + "__id__": 418 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "71a3fa99-cfe5-4e71-a5c9-5bb17e8b581c@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4dccv41QBD0qSAcCNBB2PY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8cCwrOlPxPNKqlcXUvZ13w", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lock", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 413 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 421 + }, + { + "__id__": 423 + } + ], + "_prefab": { + "__id__": 425 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 420 + }, + "_enabled": true, + "__prefab": { + "__id__": 422 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aedS+b8ehGEYg6YU29n9xg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 420 + }, + "_enabled": true, + "__prefab": { + "__id__": 424 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6drafj0KlAt6x2+djxwJ4D" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5efjftaPhLaJDbREMs3lV4", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "video", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 413 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 427 + } + ], + "_prefab": { + "__id__": 429 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 426 + }, + "_enabled": true, + "__prefab": { + "__id__": 428 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 360, + "height": 540 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9fz1a4++1Nd4ndyhzxl+rQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c8vOHWEOhCHaCmcEnBDQ9C", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "question", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 413 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 431 + }, + { + "__id__": 433 + } + ], + "_prefab": { + "__id__": 435 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.2, + "y": 0.2, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 430 + }, + "_enabled": true, + "__prefab": { + "__id__": 432 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 305.419921875, + "height": 630 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2b7I0KPLZMM73IFRsU0uqj" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 430 + }, + "_enabled": true, + "__prefab": { + "__id__": 434 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "?", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 500, + "_fontSize": 500, + "_fontFamily": "Arial", + "_lineHeight": 500, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": false, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": 2, + "y": 2 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "238anUlqdLqoM6rG147vT1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "36j7sz5IxPeLmmO/s7z5xm", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 413 + }, + "_enabled": true, + "__prefab": { + "__id__": 437 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2bi409XPJGCox1koTqDFyr" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 413 + }, + "_enabled": true, + "__prefab": { + "__id__": 439 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "98y4OXBdtIoJ/yMZN4zZ7b" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 413 + }, + "_enabled": true, + "__prefab": { + "__id__": 441 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8e57zFsodPe6lJzzHIWa24" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 413 + }, + "_enabled": true, + "__prefab": { + "__id__": 443 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "79I0eMP85Gw4KSJL2MR+uG" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "60gkiknOtMzIKLIfyTUvRV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 412 + }, + "_enabled": true, + "__prefab": { + "__id__": 446 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 300, + "height": 400 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cdNQJGiyZAd6mOkf+puWKN" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 412 + }, + "_enabled": true, + "__prefab": { + "__id__": 448 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f5V8PSEG1LdYPrR74YmBIC" + }, + { + "__type__": "4ce70ScWKpFGalZ/RcxTbmk", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 412 + }, + "_enabled": true, + "__prefab": { + "__id__": 450 + }, + "img": { + "__id__": 417 + }, + "lock": { + "__id__": 420 + }, + "question": { + "__id__": 430 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c30bhzT69Pi4/ThqgCINkk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "803lSqEsVO6J+pglEoCaY/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 251 + }, + "_enabled": true, + "__prefab": { + "__id__": 453 }, "_contentSize": { "__type__": "cc.Size", "width": 1167, - "height": 540 + "height": 493 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5263,17 +10556,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 455 }, "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, - "_top": 440, + "_top": 487, "_bottom": 0, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -5299,11 +10592,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 251 }, "_enabled": true, "__prefab": { - "__id__": 225 + "__id__": 457 }, "_resizeMode": 0, "_layoutType": 1, @@ -5331,6 +10624,74 @@ "__type__": "cc.CompPrefabInfo", "fileId": "27rUXgNVZDgqhnQfCr/tla" }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 251 + }, + "_enabled": true, + "__prefab": { + "__id__": 459 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "95wcJ8VrNKuppCKao4hfZT" + }, + { + "__type__": "cc.Graphics", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 251 + }, + "_enabled": true, + "__prefab": { + "__id__": 461 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_lineWidth": 1, + "_strokeColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_lineJoin": 2, + "_lineCap": 0, + "_fillColor": { + "__type__": "cc.Color", + "r": 100, + "g": 37, + "b": 37, + "a": 0 + }, + "_miterLimit": 10, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "332m7exLNBIaE/ymFvf4DO" + }, { "__type__": "cc.PrefabInfo", "root": { @@ -5344,17 +10705,739 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "bg-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 160 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 464 + }, + { + "__id__": 466 + }, + { + "__id__": 468 + } + ], + "_prefab": { + "__id__": 470 + }, + "_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__": 144 + "__id__": 463 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 465 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 980 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "50GxdNXpBA2JHX6LpCWwZh" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 463 + }, + "_enabled": true, + "__prefab": { + "__id__": 467 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 104 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eaIUfrj2pEsrmQgEwoVxc2" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 463 + }, + "_enabled": true, + "__prefab": { + "__id__": 469 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 40, + "_originalHeight": 36, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6cxmueXL9DEbCmA/010FWD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c02RcIZbBFUJbj3hydlTUz", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ScrollView", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 160 + }, + "_children": [ + { + "__id__": 472 + } + ], + "_active": true, + "_components": [ + { + "__id__": 488 + }, + { + "__id__": 490 + }, + { + "__id__": 492 + }, + { + "__id__": 494 + } + ], + "_prefab": { + "__id__": 496 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -253, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 471 + }, + "_children": [ + { + "__id__": 473 + } + ], + "_active": true, + "_components": [ + { + "__id__": 479 + }, + { + "__id__": 481 + }, + { + "__id__": 483 + }, + { + "__id__": 485 + } + ], + "_prefab": { + "__id__": 487 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -583.5, + "y": 237, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "content", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 472 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 474 + }, + { + "__id__": 476 + } + ], + "_prefab": { + "__id__": 478 + }, + "_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__": 473 + }, + "_enabled": true, + "__prefab": { + "__id__": 475 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 5, + "height": 454.9 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7bi+RIXnFECKH2/m3BG8iV" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 473 + }, + "_enabled": true, + "__prefab": { + "__id__": 477 + }, + "_resizeMode": 1, + "_layoutType": 1, + "_cellSize": { + "__type__": "cc.Size", + "width": 40, + "height": 40 + }, + "_startAxis": 0, + "_paddingLeft": 20, + "_paddingRight": 20, + "_paddingTop": 0, + "_paddingBottom": 0, + "_spacingX": 35, + "_spacingY": 0, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 0, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fdOaVk/kVEGb/gczTlkZxp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "93dAiS3fFNcbPNEaVTnY6H", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 472 + }, + "_enabled": true, + "__prefab": { + "__id__": 480 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 474 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4dPvWjbppHkIgeyDGqfNhe" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 472 + }, + "_enabled": true, + "__prefab": { + "__id__": 482 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "72amr4/TdPD7O5L3dYLIIp" + }, + { + "__type__": "cc.Graphics", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 472 + }, + "_enabled": true, + "__prefab": { + "__id__": 484 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_lineWidth": 1, + "_strokeColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_lineJoin": 2, + "_lineCap": 0, + "_fillColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_miterLimit": 10, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f8sf2i3eNCEZ5KOgF7Pthe" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 472 + }, + "_enabled": true, + "__prefab": { + "__id__": 486 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 250, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfpKP5pkdOcYnikbUdkIqV" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2410806z5LVJSESQ5ZJWgh", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 471 + }, + "_enabled": true, + "__prefab": { + "__id__": 489 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 474 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23LOevUZhK+I2N1c1GxcpT" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 471 + }, + "_enabled": false, + "__prefab": { + "__id__": 491 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2aRo8JKdNDeZq8krdmtkcW" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 471 + }, + "_enabled": true, + "__prefab": { + "__id__": 493 + }, + "bounceDuration": 0.23, + "brake": 0.75, + "elastic": true, + "inertia": true, + "horizontal": true, + "vertical": false, + "cancelInnerEvents": true, + "scrollEvents": [], + "_content": { + "__id__": 473 + }, + "_horizontalScrollBar": null, + "_verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c6K7zSaRFLiakyMOhRgGKw" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 471 + }, + "_enabled": true, + "__prefab": { + "__id__": 495 + }, + "_alignFlags": 44, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 4, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b1t3KFBeBIxbYl12oE8KO9" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d34CyvYEJGl4a5cmuZO58I", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 160 + }, + "_enabled": true, + "__prefab": { + "__id__": 498 }, "_contentSize": { "__type__": "cc.Size", @@ -5378,11 +11461,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 160 }, "_enabled": true, "__prefab": { - "__id__": 230 + "__id__": 500 }, "_alignFlags": 45, "_target": null, @@ -5414,11 +11497,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 144 + "__id__": 160 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 232 + "__id__": 502 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5476,7 +11559,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 505 }, "_contentSize": { "__type__": "cc.Size", @@ -5502,9 +11585,9 @@ "node": { "__id__": 102 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 237 + "__id__": 507 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5549,7 +11632,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 509 }, "_alignFlags": 44, "_target": null, @@ -5598,7 +11681,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 242 + "__id__": 512 }, "_contentSize": { "__type__": "cc.Size", @@ -5626,7 +11709,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 244 + "__id__": 514 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5639,7 +11722,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -5671,7 +11754,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 516 }, "_alignFlags": 45, "_target": null, @@ -5720,7 +11803,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 519 }, "_contentSize": { "__type__": "cc.Size", @@ -5748,7 +11831,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 251 + "__id__": 521 }, "_alignFlags": 45, "_target": null, @@ -5784,7 +11867,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 523 }, "_id": "" }, @@ -5802,7 +11885,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 525 }, "m_rootNode": null, "avatar": { @@ -5818,25 +11901,25 @@ "__id__": 57 }, "tags": { - "__id__": 132 + "__id__": 140 }, "descName": { - "__id__": 148 + "__id__": 172 }, "descAge": { - "__id__": 156 + "__id__": 180 }, "desc": { - "__id__": 174 + "__id__": 198 }, "chatBtn": { - "__id__": 104 + "__id__": 112 }, "imgItemInst": { - "__id__": 216 + "__id__": 248 }, "imgsLayout": { - "__id__": 219 + "__id__": 473 }, "_id": "" }, diff --git a/assets/bundles/Chat18x/GirlListPanel.prefab b/assets/bundles/Chat18x/GirlListPanel.prefab index f541f926..b27d569c 100644 --- a/assets/bundles/Chat18x/GirlListPanel.prefab +++ b/assets/bundles/Chat18x/GirlListPanel.prefab @@ -25,17 +25,17 @@ "_active": true, "_components": [ { - "__id__": 230 + "__id__": 238 }, { - "__id__": 232 + "__id__": 240 }, { - "__id__": 234 + "__id__": 242 } ], "_prefab": { - "__id__": 236 + "__id__": 244 }, "_lpos": { "__type__": "cc.Vec3", @@ -85,17 +85,17 @@ "_active": true, "_components": [ { - "__id__": 223 + "__id__": 231 }, { - "__id__": 225 + "__id__": 233 }, { - "__id__": 227 + "__id__": 235 } ], "_prefab": { - "__id__": 229 + "__id__": 237 }, "_lpos": { "__type__": "cc.Vec3", @@ -287,9 +287,9 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { @@ -336,9 +336,9 @@ "_transition": 1, "_normalColor": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 63, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_hoverColor": { @@ -537,9 +537,9 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 0, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Girls Online", @@ -694,7 +694,7 @@ "node": { "__id__": 3 }, - "_enabled": true, + "_enabled": false, "__prefab": { "__id__": 28 }, @@ -796,20 +796,20 @@ "_active": true, "_components": [ { - "__id__": 214 + "__id__": 222 }, { - "__id__": 216 + "__id__": 224 }, { - "__id__": 218 + "__id__": 226 }, { - "__id__": 220 + "__id__": 228 } ], "_prefab": { - "__id__": 222 + "__id__": 230 }, "_lpos": { "__type__": "cc.Vec3", @@ -856,20 +856,20 @@ "_active": true, "_components": [ { - "__id__": 205 + "__id__": 213 }, { - "__id__": 207 + "__id__": 215 }, { - "__id__": 209 + "__id__": 217 }, { - "__id__": 211 + "__id__": 219 } ], "_prefab": { - "__id__": 213 + "__id__": 221 }, "_lpos": { "__type__": "cc.Vec3", @@ -913,26 +913,26 @@ "__id__": 35 }, { - "__id__": 190 + "__id__": 198 } ], "_active": true, "_components": [ { - "__id__": 196 + "__id__": 204 }, { - "__id__": 198 + "__id__": 206 }, { - "__id__": 200 + "__id__": 208 }, { - "__id__": 202 + "__id__": 210 } ], "_prefab": { - "__id__": 204 + "__id__": 212 }, "_lpos": { "__type__": "cc.Vec3", @@ -976,35 +976,41 @@ "__id__": 36 }, { - "__id__": 42 + "__id__": 44 }, { - "__id__": 60 + "__id__": 50 }, { "__id__": 66 }, { - "__id__": 128 + "__id__": 72 + }, + { + "__id__": 134 + }, + { + "__id__": 181 } ], "_active": true, "_components": [ { - "__id__": 181 + "__id__": 189 }, { - "__id__": 183 + "__id__": 191 }, { - "__id__": 185 + "__id__": 193 }, { - "__id__": 187 + "__id__": 195 } ], "_prefab": { - "__id__": 189 + "__id__": 197 }, "_lpos": { "__type__": "cc.Vec3", @@ -1037,7 +1043,7 @@ }, { "__type__": "cc.Node", - "_name": "deco", + "_name": "bg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -1051,10 +1057,13 @@ }, { "__id__": 39 + }, + { + "__id__": 41 } ], "_prefab": { - "__id__": 41 + "__id__": 43 }, "_lpos": { "__type__": "cc.Vec3", @@ -1097,6 +1106,178 @@ "__prefab": { "__id__": 38 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1152.8, + "height": 290 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "feLFboacxO6qpoQIuovuDW" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 40 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 71, + "g": 2, + "b": 80, + "a": 104 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27k721NS5GlKsftffq/C/X" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 36 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1170, + "_originalHeight": 283.8, + "_alignMode": 2, + "_lockFlags": 45, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eaI0swOr9H1ahOWjkBThcn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "48mDgoEoZDD7cffiELOaDw", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "deco", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 45 + }, + { + "__id__": 47 + } + ], + "_prefab": { + "__id__": 49 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 44 + }, + "_enabled": true, + "__prefab": { + "__id__": 46 + }, "_contentSize": { "__type__": "cc.Size", "width": 1170, @@ -1119,11 +1300,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 36 + "__id__": 44 }, "_enabled": true, "__prefab": { - "__id__": 40 + "__id__": 48 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1181,30 +1362,27 @@ }, "_children": [ { - "__id__": 43 + "__id__": 51 } ], "_active": true, "_components": [ { - "__id__": 51 + "__id__": 59 }, { - "__id__": 53 + "__id__": 61 }, { - "__id__": 55 - }, - { - "__id__": 57 + "__id__": 63 } ], "_prefab": { - "__id__": 59 + "__id__": 65 }, "_lpos": { "__type__": "cc.Vec3", - "x": 418.5, + "x": 420.5, "y": 0, "z": 0 }, @@ -1237,23 +1415,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 42 + "__id__": 50 }, "_children": [], "_active": true, "_components": [ { - "__id__": 44 + "__id__": 52 }, { - "__id__": 46 + "__id__": 54 }, { - "__id__": 48 + "__id__": 56 } ], "_prefab": { - "__id__": 50 + "__id__": 58 }, "_lpos": { "__type__": "cc.Vec3", @@ -1290,16 +1468,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 51 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 53 }, "_contentSize": { "__type__": "cc.Size", - "width": 200, - "height": 200 + "width": 220, + "height": 220 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1318,11 +1496,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 51 }, "_enabled": true, "__prefab": { - "__id__": 47 + "__id__": 55 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1334,7 +1512,10 @@ "b": 255, "a": 255 }, - "_spriteFrame": null, + "_spriteFrame": { + "__uuid__": "cfd5524f-1860-4b97-ac54-edfe0990e92f@f9941", + "__expectedType__": "cc.SpriteFrame" + }, "_type": 0, "_fillType": 0, "_sizeMode": 0, @@ -1360,11 +1541,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 43 + "__id__": 51 }, "_enabled": true, "__prefab": { - "__id__": 49 + "__id__": 57 }, "_alignFlags": 18, "_target": null, @@ -1409,16 +1590,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 52 + "__id__": 60 }, "_contentSize": { "__type__": "cc.Size", - "width": 200, - "height": 200 + "width": 220, + "height": 220 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1437,11 +1618,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 54 + "__id__": 62 }, "_type": 3, "_inverted": false, @@ -1459,11 +1640,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 42 + "__id__": 50 }, "_enabled": true, "__prefab": { - "__id__": 56 + "__id__": 64 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1498,42 +1679,6 @@ "__type__": "cc.CompPrefabInfo", "fileId": "caXnjicEBJCbCjKuMue2oF" }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 42 - }, - "_enabled": true, - "__prefab": { - "__id__": 58 - }, - "_alignFlags": 34, - "_target": null, - "_left": 0, - "_right": 65, - "_top": 0, - "_bottom": 20, - "_horizontalCenter": 0, - "_verticalCenter": 0, - "_isAbsLeft": true, - "_isAbsRight": true, - "_isAbsTop": true, - "_isAbsBottom": true, - "_isAbsHorizontalCenter": true, - "_isAbsVerticalCenter": true, - "_originalWidth": 0, - "_originalHeight": 0, - "_alignMode": 2, - "_lockFlags": 36, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ffrBmP6JlMqbLyMfXXdnF2" - }, { "__type__": "cc.PrefabInfo", "root": { @@ -1559,14 +1704,14 @@ "_active": true, "_components": [ { - "__id__": 61 + "__id__": 67 }, { - "__id__": 63 + "__id__": 69 } ], "_prefab": { - "__id__": 65 + "__id__": 71 }, "_lpos": { "__type__": "cc.Vec3", @@ -1603,11 +1748,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 66 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 68 }, "_contentSize": { "__type__": "cc.Size", @@ -1631,11 +1776,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 60 + "__id__": 66 }, "_enabled": true, "__prefab": { - "__id__": 64 + "__id__": 70 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1693,34 +1838,34 @@ }, "_children": [ { - "__id__": 67 + "__id__": 73 }, { - "__id__": 75 + "__id__": 81 }, { - "__id__": 83 + "__id__": 89 } ], "_active": true, "_components": [ { - "__id__": 121 + "__id__": 127 }, { - "__id__": 123 + "__id__": 129 }, { - "__id__": 125 + "__id__": 131 } ], "_prefab": { - "__id__": 127 + "__id__": 133 }, "_lpos": { "__type__": "cc.Vec3", - "x": 295.74, - "y": 0, + "x": 266.89300000000003, + "y": 13.048000000000002, "z": 0 }, "_lrot": { @@ -1752,28 +1897,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 66 + "__id__": 72 }, "_children": [], "_active": true, "_components": [ { - "__id__": 68 + "__id__": 74 }, { - "__id__": 70 + "__id__": 76 }, { - "__id__": 72 + "__id__": 78 } ], "_prefab": { - "__id__": 74 + "__id__": 80 }, "_lpos": { "__type__": "cc.Vec3", - "x": -304.4046875, - "y": 76.268, + "x": -222.3546875, + "y": 76.2679999999998, "z": 0 }, "_lrot": { @@ -1805,15 +1950,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 73 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 75 }, "_contentSize": { "__type__": "cc.Size", - "width": 548.809375, + "width": 429.109375, "height": 74.718 }, "_anchorPoint": { @@ -1833,20 +1978,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 73 }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 77 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 88, - "g": 23, - "b": 103, + "r": 218, + "g": 158, + "b": 252, "a": 255 }, "_string": "Anaya Kapoor", @@ -1862,8 +2007,8 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": false, - "_isUnderline": false, + "_isBold": true, + "_isUnderline": true, "_underlineHeight": 2, "_cacheMode": 0, "_enableOutline": false, @@ -1901,16 +2046,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 67 + "__id__": 73 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 79 }, "_alignFlags": 32, "_target": null, "_left": 0, - "_right": 30, + "_right": 7.8, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -1950,28 +2095,28 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 66 + "__id__": 72 }, "_children": [], "_active": true, "_components": [ { - "__id__": 76 + "__id__": 82 }, { - "__id__": 78 + "__id__": 84 }, { - "__id__": 80 + "__id__": 86 } ], "_prefab": { - "__id__": 82 + "__id__": 88 }, "_lpos": { "__type__": "cc.Vec3", - "x": -30, - "y": -6.269371904445386, + "x": -7.7999999999999545, + "y": -14.878000000000156, "z": 0 }, "_lrot": { @@ -2003,16 +2148,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 77 + "__id__": 83 }, "_contentSize": { "__type__": "cc.Size", "width": 418.696094, - "height": 87.23599999999993 + "height": 87.23599999999999 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2031,20 +2176,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 85 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 141, - "g": 80, - "b": 155, + "r": 217, + "g": 178, + "b": 226, "a": 255 }, "_string": "Tag1````\nTag2---", @@ -2099,18 +2244,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 81 }, "_enabled": true, "__prefab": { - "__id__": 81 + "__id__": 87 }, "_alignFlags": 37, "_target": null, "_left": 0, - "_right": 30, - "_top": 89.12837190444543, - "_bottom": 76.58962809555464, + "_right": 7.8, + "_top": 100.18700000000015, + "_bottom": 70.43099999999984, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -2148,12 +2293,9 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 66 + "__id__": 72 }, "_children": [ - { - "__id__": 84 - }, { "__id__": 90 }, @@ -2165,27 +2307,30 @@ }, { "__id__": 108 + }, + { + "__id__": 114 } ], "_active": true, "_components": [ { - "__id__": 114 + "__id__": 120 }, { - "__id__": 116 + "__id__": 122 }, { - "__id__": 118 + "__id__": 124 } ], "_prefab": { - "__id__": 120 + "__id__": 126 }, "_lpos": { "__type__": "cc.Vec3", "x": -154.2, - "y": -93.827, + "y": -96.27699999999999, "z": 0 }, "_lrot": { @@ -2217,20 +2362,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 83 + "__id__": 89 }, "_children": [], "_active": true, "_components": [ { - "__id__": 85 + "__id__": 91 }, { - "__id__": 87 + "__id__": 93 } ], "_prefab": { - "__id__": 89 + "__id__": 95 }, "_lpos": { "__type__": "cc.Vec3", @@ -2267,11 +2412,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 84 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 86 + "__id__": 92 }, "_contentSize": { "__type__": "cc.Size", @@ -2295,11 +2440,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 84 + "__id__": 90 }, "_enabled": true, "__prefab": { - "__id__": 88 + "__id__": 94 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2353,20 +2498,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 83 + "__id__": 89 }, "_children": [], "_active": true, "_components": [ { - "__id__": 91 + "__id__": 97 }, { - "__id__": 93 + "__id__": 99 } ], "_prefab": { - "__id__": 95 + "__id__": 101 }, "_lpos": { "__type__": "cc.Vec3", @@ -2403,11 +2548,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 90 + "__id__": 96 }, "_enabled": true, "__prefab": { - "__id__": 92 + "__id__": 98 }, "_contentSize": { "__type__": "cc.Size", @@ -2431,11 +2576,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 90 + "__id__": 96 }, "_enabled": true, "__prefab": { - "__id__": 94 + "__id__": 100 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2489,20 +2634,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 83 + "__id__": 89 }, "_children": [], "_active": true, "_components": [ { - "__id__": 97 + "__id__": 103 }, { - "__id__": 99 + "__id__": 105 } ], "_prefab": { - "__id__": 101 + "__id__": 107 }, "_lpos": { "__type__": "cc.Vec3", @@ -2539,11 +2684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 96 + "__id__": 102 }, "_enabled": true, "__prefab": { - "__id__": 98 + "__id__": 104 }, "_contentSize": { "__type__": "cc.Size", @@ -2567,11 +2712,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 96 + "__id__": 102 }, "_enabled": true, "__prefab": { - "__id__": 100 + "__id__": 106 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2625,20 +2770,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 83 + "__id__": 89 }, "_children": [], "_active": true, "_components": [ { - "__id__": 103 + "__id__": 109 }, { - "__id__": 105 + "__id__": 111 } ], "_prefab": { - "__id__": 107 + "__id__": 113 }, "_lpos": { "__type__": "cc.Vec3", @@ -2675,11 +2820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 104 + "__id__": 110 }, "_contentSize": { "__type__": "cc.Size", @@ -2703,11 +2848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 102 + "__id__": 108 }, "_enabled": true, "__prefab": { - "__id__": 106 + "__id__": 112 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2761,20 +2906,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 83 + "__id__": 89 }, "_children": [], "_active": true, "_components": [ { - "__id__": 109 + "__id__": 115 }, { - "__id__": 111 + "__id__": 117 } ], "_prefab": { - "__id__": 113 + "__id__": 119 }, "_lpos": { "__type__": "cc.Vec3", @@ -2811,11 +2956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 116 }, "_contentSize": { "__type__": "cc.Size", @@ -2839,11 +2984,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 108 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 118 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2897,11 +3042,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 89 }, "_enabled": true, "__prefab": { - "__id__": 115 + "__id__": 121 }, "_contentSize": { "__type__": "cc.Size", @@ -2925,11 +3070,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 89 }, "_enabled": true, "__prefab": { - "__id__": 117 + "__id__": 123 }, "_alignFlags": 36, "_target": null, @@ -2961,11 +3106,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 89 }, "_enabled": true, "__prefab": { - "__id__": 119 + "__id__": 125 }, "_resizeMode": 1, "_layoutType": 1, @@ -3012,16 +3157,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 72 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 128 }, "_contentSize": { "__type__": "cc.Size", "width": 500, - "height": 252.954 + "height": 257.854 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3040,18 +3185,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 72 }, "_enabled": true, "__prefab": { - "__id__": 124 + "__id__": 130 }, "_alignFlags": 37, "_target": null, "_left": 0, - "_right": 287.76, - "_top": 16.073000000000008, - "_bottom": 16.073000000000008, + "_right": 309.50699999999995, + "_top": 3.0250000000000057, + "_bottom": 29.12100000000001, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -3076,11 +3221,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 66 + "__id__": 72 }, "_enabled": false, "__prefab": { - "__id__": 126 + "__id__": 132 }, "_resizeMode": 1, "_layoutType": 2, @@ -3131,10 +3276,10 @@ }, "_children": [ { - "__id__": 129 + "__id__": 135 }, { - "__id__": 157 + "__id__": 146 } ], "_active": true, @@ -3154,7 +3299,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -583.5, + "x": -576.4, "y": 0, "z": 0 }, @@ -3183,36 +3328,286 @@ }, { "__type__": "cc.Node", - "_name": "PriceTags", + "_name": "Button", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 128 + "__id__": 134 }, - "_children": [ + "_children": [], + "_active": true, + "_components": [ { - "__id__": 130 + "__id__": 136 }, { "__id__": 138 }, { - "__id__": 146 + "__id__": 140 + }, + { + "__id__": 143 + } + ], + "_prefab": { + "__id__": 145 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 182.59999999999997, + "y": -15.525000000000091, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 137 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 156, + "height": 156 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bcRB3E3kpEN7FSCjRxSBSV" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 139 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "0da16aeb-f5bf-4214-8d27-65bfcda7f165@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": "acYY+rmM5Lr7AVqcPUXem+" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 141 + }, + "clickEvents": [ + { + "__id__": 142 + } + ], + "_interactable": true, + "_transition": 1, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 152, + "g": 81, + "b": 158, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 103, + "g": 36, + "b": 109, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 167, + "g": 167, + "b": 167, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 135 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2zrkjBkFEp6Wn3KDQg6iN" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 35 + }, + "component": "", + "_componentId": "6d3e03kLy5EwLqOppF+UTV7", + "handler": "onClickDetail", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 135 + }, + "_enabled": true, + "__prefab": { + "__id__": 144 + }, + "_alignFlags": 16, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": -2.842170943040401e-14, + "_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": "d05g3rvGdLm4GijJQQlMJY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2eQMEX/lVFCYsIsSQ3m1rB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "PriceTags", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 134 + }, + "_children": [ + { + "__id__": 147 + }, + { + "__id__": 155 + }, + { + "__id__": 163 } ], "_active": true, "_components": [ { - "__id__": 154 + "__id__": 171 } ], "_prefab": { - "__id__": 156 + "__id__": 173 }, "_lpos": { "__type__": "cc.Vec3", - "x": 199.1, - "y": 59.00000000000023, + "x": 183.2, + "y": 93.24399999999991, "z": 0 }, "_lrot": { @@ -3244,23 +3639,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 129 + "__id__": 146 }, "_children": [], "_active": true, "_components": [ { - "__id__": 131 + "__id__": 148 }, { - "__id__": 133 + "__id__": 150 }, { - "__id__": 135 + "__id__": 152 } ], "_prefab": { - "__id__": 137 + "__id__": 154 }, "_lpos": { "__type__": "cc.Vec3", @@ -3297,11 +3692,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 132 + "__id__": 149 }, "_contentSize": { "__type__": "cc.Size", @@ -3325,20 +3720,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 134 + "__id__": 151 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 88, - "g": 23, - "b": 103, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "$3.99", @@ -3393,11 +3788,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 130 + "__id__": 147 }, "_enabled": true, "__prefab": { - "__id__": 136 + "__id__": 153 }, "_alignFlags": 18, "_target": null, @@ -3442,23 +3837,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 129 + "__id__": 146 }, "_children": [], "_active": true, "_components": [ { - "__id__": 139 + "__id__": 156 }, { - "__id__": 141 + "__id__": 158 }, { - "__id__": 143 + "__id__": 160 } ], "_prefab": { - "__id__": 145 + "__id__": 162 }, "_lpos": { "__type__": "cc.Vec3", @@ -3495,11 +3890,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 140 + "__id__": 157 }, "_contentSize": { "__type__": "cc.Size", @@ -3523,20 +3918,20 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 142 + "__id__": 159 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 13, - "g": 195, - "b": 27, + "r": 83, + "g": 197, + "b": 92, "a": 255 }, "_string": "Free", @@ -3591,11 +3986,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 138 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 144 + "__id__": 161 }, "_alignFlags": 18, "_target": null, @@ -3640,23 +4035,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 129 + "__id__": 146 }, "_children": [], "_active": true, "_components": [ { - "__id__": 147 + "__id__": 164 }, { - "__id__": 149 + "__id__": 166 }, { - "__id__": 151 + "__id__": 168 } ], "_prefab": { - "__id__": 153 + "__id__": 170 }, "_lpos": { "__type__": "cc.Vec3", @@ -3693,15 +4088,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 163 }, "_enabled": true, "__prefab": { - "__id__": 148 + "__id__": 165 }, "_contentSize": { "__type__": "cc.Size", - "width": 107.2998046875, + "width": 81.1767578125, "height": 74.718 }, "_anchorPoint": { @@ -3721,23 +4116,23 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 163 }, "_enabled": true, "__prefab": { - "__id__": 150 + "__id__": 167 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 13, - "g": 57, - "b": 195, + "r": 175, + "g": 194, + "b": 255, "a": 255 }, - "_string": "Free", + "_string": "Try", "_horizontalAlign": 1, "_verticalAlign": 1, "_actualFontSize": 50, @@ -3789,11 +4184,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 146 + "__id__": 163 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 169 }, "_alignFlags": 18, "_target": null, @@ -3838,11 +4233,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 129 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 172 }, "_contentSize": { "__type__": "cc.Size", @@ -3873,438 +4268,13 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "Button", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 128 - }, - "_children": [ - { - "__id__": 158 - } - ], - "_active": true, - "_components": [ - { - "__id__": 164 - }, - { - "__id__": 166 - }, - { - "__id__": 168 - }, - { - "__id__": 171 - } - ], - "_prefab": { - "__id__": 173 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 199.1, - "y": -12.99200000000019, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, - "__editorExtras__": {}, - "_parent": { - "__id__": 157 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 159 - }, - { - "__id__": 161 - } - ], - "_prefab": { - "__id__": 163 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 1.3519999999998618, - "z": 0 - }, - "_lrot": { - "__type__": "cc.Quat", - "x": 0, - "y": 0, - "z": 0, - "w": 1 - }, - "_lscale": { - "__type__": "cc.Vec3", - "x": 1, - "y": 1, - "z": 1 - }, - "_mobility": 0, - "_layer": 33554432, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 - }, - "_enabled": true, - "__prefab": { - "__id__": 160 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 87.52937316894531, - "height": 65.52 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "55PTKT3GxDYK+0DKIo3BTm" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 158 - }, - "_enabled": true, - "__prefab": { - "__id__": 162 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 0, - "g": 0, - "b": 0, - "a": 255 - }, - "_string": "Chat!", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 34.7, - "_fontSize": 34.7, - "_fontFamily": "NotoSans-Regular", - "_lineHeight": 52, - "_overflow": 0, - "_enableWrapText": false, - "_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": "9a756ZPuJAj4J/Y5+CwBqU" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "58URVJZ/JAnbMUYQsTxEkY", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 157 - }, - "_enabled": true, - "__prefab": { - "__id__": 165 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 200, - "height": 70 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "bcRB3E3kpEN7FSCjRxSBSV" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 157 - }, - "_enabled": true, - "__prefab": { - "__id__": 167 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 201, - "g": 144, - "b": 206, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@f9941", - "__expectedType__": "cc.SpriteFrame" - }, - "_type": 1, - "_fillType": 0, - "_sizeMode": 0, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acYY+rmM5Lr7AVqcPUXem+" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 157 - }, - "_enabled": true, - "__prefab": { - "__id__": 169 - }, - "clickEvents": [ - { - "__id__": 170 - } - ], - "_interactable": true, - "_transition": 1, - "_normalColor": { - "__type__": "cc.Color", - "r": 201, - "g": 144, - "b": 206, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 152, - "g": 81, - "b": 158, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 103, - "g": 36, - "b": 109, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 167, - "g": 167, - "b": 167, - "a": 255 - }, - "_normalSprite": { - "__uuid__": "d3a6a283-9dd4-4193-b450-46f35eea4a3e@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__": 157 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "a2zrkjBkFEp6Wn3KDQg6iN" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 35 - }, - "component": "", - "_componentId": "6d3e03kLy5EwLqOppF+UTV7", - "handler": "onClickDetail", - "customEventData": "" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 157 - }, - "_enabled": true, - "__prefab": { - "__id__": 172 - }, - "_alignFlags": 16, - "_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": "d05g3rvGdLm4GijJQQlMJY" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2eQMEX/lVFCYsIsSQ3m1rB", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 128 + "__id__": 134 }, "_enabled": true, "__prefab": { @@ -4312,8 +4282,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 398.2, - "height": 285.1 + "width": 365.2, + "height": 290 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4332,9 +4302,9 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 128 + "__id__": 134 }, - "_enabled": true, + "_enabled": false, "__prefab": { "__id__": 177 }, @@ -4377,7 +4347,7 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 128 + "__id__": 134 }, "_enabled": true, "__prefab": { @@ -4420,6 +4390,181 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "bg-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 35 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 182 + }, + { + "__id__": 184 + }, + { + "__id__": 186 + } + ], + "_prefab": { + "__id__": 188 + }, + "_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__": 181 + }, + "_enabled": true, + "__prefab": { + "__id__": 183 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1152.8, + "height": 290 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c2b8VFJD1B3LxhFlV/MZyf" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 181 + }, + "_enabled": true, + "__prefab": { + "__id__": 185 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 174 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5eeGqF6apGkb364zo/ICgd" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 181 + }, + "_enabled": true, + "__prefab": { + "__id__": 187 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 1170, + "_originalHeight": 283.8, + "_alignMode": 2, + "_lockFlags": 45, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bcoiM4ciZB/7/L1+xLq26b" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "28boVZ6LhPUrkEXf0AFxB2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -4430,12 +4575,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 182 + "__id__": 190 }, "_contentSize": { "__type__": "cc.Size", - "width": 1167, - "height": 285.1 + "width": 1152.8, + "height": 290 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4456,9 +4601,9 @@ "node": { "__id__": 35 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 184 + "__id__": 192 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4471,7 +4616,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -4501,9 +4646,9 @@ "node": { "__id__": 35 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 186 + "__id__": 194 }, "_alignFlags": 40, "_target": null, @@ -4539,31 +4684,31 @@ }, "_enabled": true, "__prefab": { - "__id__": 188 + "__id__": 196 }, "avatar": { - "__id__": 46 + "__id__": 54 }, "girlName": { - "__id__": 70 + "__id__": 76 }, "tags": { - "__id__": 78 + "__id__": 84 }, "price": { - "__id__": 133 + "__id__": 150 }, "freeNode": { - "__id__": 138 + "__id__": 155 }, "tryNode": { - "__id__": 146 + "__id__": 163 }, "chatBtn": { - "__id__": 157 + "__id__": 135 }, "starParent": { - "__id__": 83 + "__id__": 89 }, "_id": "" }, @@ -4596,14 +4741,14 @@ "_active": true, "_components": [ { - "__id__": 191 + "__id__": 199 }, { - "__id__": 193 + "__id__": 201 } ], "_prefab": { - "__id__": 195 + "__id__": 203 }, "_lpos": { "__type__": "cc.Vec3", @@ -4640,11 +4785,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -4668,11 +4813,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 190 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 194 + "__id__": 202 }, "_resizeMode": 1, "_layoutType": 2, @@ -4723,7 +4868,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 205 }, "_contentSize": { "__type__": "cc.Size", @@ -4751,7 +4896,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 199 + "__id__": 207 }, "_type": 0, "_inverted": false, @@ -4773,7 +4918,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 201 + "__id__": 209 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4819,7 +4964,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 203 + "__id__": 211 }, "_alignFlags": 45, "_target": null, @@ -4868,7 +5013,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 206 + "__id__": 214 }, "_contentSize": { "__type__": "cc.Size", @@ -4894,9 +5039,9 @@ "node": { "__id__": 33 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 208 + "__id__": 216 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4941,7 +5086,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 210 + "__id__": 218 }, "bounceDuration": 0.23, "brake": 0.75, @@ -4952,7 +5097,7 @@ "cancelInnerEvents": true, "scrollEvents": [], "_content": { - "__id__": 190 + "__id__": 198 }, "_horizontalScrollBar": null, "_verticalScrollBar": null, @@ -4972,7 +5117,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 212 + "__id__": 220 }, "_alignFlags": 45, "_target": null, @@ -5021,7 +5166,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 215 + "__id__": 223 }, "_contentSize": { "__type__": "cc.Size", @@ -5049,7 +5194,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 225 }, "_alignFlags": 45, "_target": null, @@ -5085,7 +5230,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 219 + "__id__": 227 }, "_type": 0, "_inverted": false, @@ -5107,7 +5252,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 229 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5166,7 +5311,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 224 + "__id__": 232 }, "_contentSize": { "__type__": "cc.Size", @@ -5194,7 +5339,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 234 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5207,7 +5352,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -5239,7 +5384,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 236 }, "_alignFlags": 45, "_target": null, @@ -5258,7 +5403,7 @@ "_originalWidth": 100, "_originalHeight": 100, "_alignMode": 2, - "_lockFlags": 0, + "_lockFlags": 45, "_id": "" }, { @@ -5288,7 +5433,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 239 }, "_contentSize": { "__type__": "cc.Size", @@ -5316,7 +5461,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 241 }, "_alignFlags": 45, "_target": null, @@ -5352,7 +5497,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 243 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/Chat18x/Image/Theme/1007.png b/assets/bundles/Chat18x/Image/Theme/1007.png new file mode 100644 index 00000000..40508065 Binary files /dev/null and b/assets/bundles/Chat18x/Image/Theme/1007.png differ diff --git a/assets/bundles/Chat18x/Image/Theme/1007.png.meta b/assets/bundles/Chat18x/Image/Theme/1007.png.meta new file mode 100644 index 00000000..411d2067 --- /dev/null +++ b/assets/bundles/Chat18x/Image/Theme/1007.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "82aaafa8-eac0-4090-8a18-35d5a474cfec", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "82aaafa8-eac0-4090-8a18-35d5a474cfec@6c48a", + "displayName": "1007", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "82aaafa8-eac0-4090-8a18-35d5a474cfec", + "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": "82aaafa8-eac0-4090-8a18-35d5a474cfec@f9941", + "displayName": "1007", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 550, + "height": 450, + "rawWidth": 550, + "rawHeight": 450, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -275, + -225, + 0, + 275, + -225, + 0, + -275, + 225, + 0, + 275, + 225, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 450, + 550, + 450, + 0, + 0, + 550, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -275, + -225, + 0 + ], + "maxPos": [ + 275, + 225, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "82aaafa8-eac0-4090-8a18-35d5a474cfec@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "82aaafa8-eac0-4090-8a18-35d5a474cfec@6c48a" + } +} diff --git a/assets/bundles/Chat18x/ThemePanel.prefab b/assets/bundles/Chat18x/ThemePanel.prefab index b6b1505d..49e84954 100644 --- a/assets/bundles/Chat18x/ThemePanel.prefab +++ b/assets/bundles/Chat18x/ThemePanel.prefab @@ -25,17 +25,17 @@ "_active": true, "_components": [ { - "__id__": 180 + "__id__": 482 }, { - "__id__": 182 + "__id__": 484 }, { - "__id__": 184 + "__id__": 486 } ], "_prefab": { - "__id__": 186 + "__id__": 488 }, "_lpos": { "__type__": "cc.Vec3", @@ -85,17 +85,17 @@ "_active": true, "_components": [ { - "__id__": 173 + "__id__": 475 }, { - "__id__": 175 + "__id__": 477 }, { - "__id__": 177 + "__id__": 479 } ], "_prefab": { - "__id__": 179 + "__id__": 481 }, "_lpos": { "__type__": "cc.Vec3", @@ -529,14 +529,14 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 236, - "g": 160, - "b": 0, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_string": "Girls Online", "_horizontalAlign": 1, - "_verticalAlign": 1, + "_verticalAlign": 2, "_actualFontSize": 70, "_fontSize": 70, "_fontFamily": "NotoSans-Regular", @@ -659,7 +659,7 @@ "__id__": 3 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 25 @@ -1360,7 +1360,7 @@ "node": { "__id__": 3 }, - "_enabled": true, + "_enabled": false, "__prefab": { "__id__": 55 }, @@ -1426,7 +1426,7 @@ "_originalWidth": 100, "_originalHeight": 0, "_alignMode": 2, - "_lockFlags": 1, + "_lockFlags": 41, "_id": "" }, { @@ -1459,26 +1459,29 @@ "__id__": 60 }, { - "__id__": 122 + "__id__": 130 }, { - "__id__": 158 + "__id__": 182 + }, + { + "__id__": 442 } ], "_active": true, "_components": [ { - "__id__": 166 + "__id__": 468 }, { - "__id__": 168 + "__id__": 470 }, { - "__id__": 170 + "__id__": 472 } ], "_prefab": { - "__id__": 172 + "__id__": 474 }, "_lpos": { "__type__": "cc.Vec3", @@ -1523,19 +1526,22 @@ }, { "__id__": 69 + }, + { + "__id__": 117 } ], "_active": true, "_components": [ { - "__id__": 117 + "__id__": 125 }, { - "__id__": 119 + "__id__": 127 } ], "_prefab": { - "__id__": 121 + "__id__": 129 }, "_lpos": { "__type__": "cc.Vec3", @@ -1664,13 +1670,13 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 166, - "g": 110, - "b": 184, - "a": 255 + "r": 17, + "g": 17, + "b": 17, + "a": 74 }, "_spriteFrame": { - "__uuid__": "49560e92-9da5-41f3-92ab-760ded61be44@f9941", + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -2260,7 +2266,7 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": false, + "_isBold": true, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -2353,7 +2359,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": 2.716000000000008, + "x": 22.640999999999963, "y": -35.57099999999991, "z": 0 }, @@ -2425,9 +2431,9 @@ "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 253, - "g": 219, - "b": 54, + "r": 218, + "g": 158, + "b": 252, "a": 255 }, "_string": "主妇nana", @@ -2443,8 +2449,8 @@ "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": false, - "_isUnderline": false, + "_isBold": true, + "_isUnderline": true, "_underlineHeight": 2, "_cacheMode": 0, "_enableOutline": false, @@ -2580,8 +2586,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 100, - "height": 100 + "width": 156, + "height": 156 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2654,7 +2660,7 @@ "_alignFlags": 34, "_target": null, "_left": 20, - "_right": 140, + "_right": 112, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -2821,6 +2827,181 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "frame-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 60 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 118 + }, + { + "__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.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 117 + }, + "_enabled": true, + "__prefab": { + "__id__": 119 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1147, + "height": 380 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cbaMDOc3VLMpCCMXKVDtZ8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 117 + }, + "_enabled": true, + "__prefab": { + "__id__": 121 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a7kXRfL+JF2bckhJuWs+ds" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 117 + }, + "_enabled": true, + "__prefab": { + "__id__": 123 + }, + "_alignFlags": 45, + "_target": null, + "_left": 10, + "_right": 10, + "_top": 10, + "_bottom": 10, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 56, + "_originalHeight": 56, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0286P71/lGya7wPhFECCBW" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35jX8y0hxJlIqkDT/BDH1Y", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -2831,7 +3012,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 118 + "__id__": 126 }, "_contentSize": { "__type__": "cc.Size", @@ -2859,7 +3040,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 128 }, "_alignFlags": 41, "_target": null, @@ -2908,29 +3089,35 @@ }, "_children": [ { - "__id__": 123 + "__id__": 131 }, { - "__id__": 139 + "__id__": 147 }, { - "__id__": 145 + "__id__": 155 + }, + { + "__id__": 161 + }, + { + "__id__": 167 } ], "_active": true, "_components": [ { - "__id__": 151 + "__id__": 175 }, { - "__id__": 153 + "__id__": 177 }, { - "__id__": 155 + "__id__": 179 } ], "_prefab": { - "__id__": 157 + "__id__": 181 }, "_lpos": { "__type__": "cc.Vec3", @@ -2967,30 +3154,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 122 + "__id__": 130 }, "_children": [ { - "__id__": 124 + "__id__": 132 } ], "_active": true, "_components": [ { - "__id__": 130 + "__id__": 138 }, { - "__id__": 132 + "__id__": 140 }, { - "__id__": 134 + "__id__": 142 }, { - "__id__": 136 + "__id__": 144 } ], "_prefab": { - "__id__": 138 + "__id__": 146 }, "_lpos": { "__type__": "cc.Vec3", @@ -3027,20 +3214,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 123 + "__id__": 131 }, "_children": [], "_active": true, "_components": [ { - "__id__": 125 + "__id__": 133 }, { - "__id__": 127 + "__id__": 135 } ], "_prefab": { - "__id__": 129 + "__id__": 137 }, "_lpos": { "__type__": "cc.Vec3", @@ -3077,11 +3264,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 134 }, "_contentSize": { "__type__": "cc.Size", @@ -3105,11 +3292,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 132 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 136 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3163,11 +3350,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 131 + "__id__": 139 }, "_contentSize": { "__type__": "cc.Size", @@ -3191,11 +3378,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 133 + "__id__": 141 }, "_alignFlags": 45, "_target": null, @@ -3227,11 +3414,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 143 }, "_type": 3, "_inverted": false, @@ -3249,11 +3436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 123 + "__id__": 131 }, "_enabled": true, "__prefab": { - "__id__": 137 + "__id__": 145 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3303,29 +3490,32 @@ }, { "__type__": "cc.Node", - "_name": "LockImg", + "_name": "lockCover", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 122 + "__id__": 130 }, "_children": [], "_active": true, "_components": [ { - "__id__": 140 + "__id__": 148 }, { - "__id__": 142 + "__id__": 150 + }, + { + "__id__": 152 } ], "_prefab": { - "__id__": 144 + "__id__": 154 }, "_lpos": { "__type__": "cc.Vec3", - "x": -236.92199999999997, - "y": 184.35500000000002, + "x": 5.684341886080802e-14, + "y": 0, "z": 0 }, "_lrot": { @@ -3337,8 +3527,180 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 0.15, - "y": 0.15, + "x": 1, + "y": 1, + "z": 0.9999999999999999 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": { + "__id__": 149 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dfaFns3a5LppJrhlNTmJDQ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": { + "__id__": 151 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ef1MTCLi9OCLaJ0eDNhln1" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 147 + }, + "_enabled": true, + "__prefab": { + "__id__": 153 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 45, + "g": 0, + "b": 90, + "a": 171 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b95JdSIwhFSZdU8Sou6jPr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5awZg8KxdFo5rm0CmzbaLf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 130 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 156 + }, + { + "__id__": 158 + } + ], + "_prefab": { + "__id__": 160 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 2.325999999999965, + "y": 1.6320000000000618, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.3, + "y": 0.3, "z": 1 }, "_mobility": 0, @@ -3357,11 +3719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 141 + "__id__": 157 }, "_contentSize": { "__type__": "cc.Size", @@ -3385,11 +3747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 139 + "__id__": 155 }, "_enabled": true, "__prefab": { - "__id__": 143 + "__id__": 159 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3443,20 +3805,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 122 + "__id__": 130 }, "_children": [], "_active": true, "_components": [ { - "__id__": 146 + "__id__": 162 }, { - "__id__": 148 + "__id__": 164 } ], "_prefab": { - "__id__": 150 + "__id__": 166 }, "_lpos": { "__type__": "cc.Vec3", @@ -3493,11 +3855,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 163 }, "_contentSize": { "__type__": "cc.Size", @@ -3521,11 +3883,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 145 + "__id__": 161 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 165 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3596,17 +3958,192 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "frame", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 130 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 168 + }, + { + "__id__": 170 + }, + { + "__id__": 172 + } + ], + "_prefab": { + "__id__": 174 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 167 }, "_enabled": true, "__prefab": { - "__id__": 152 + "__id__": 169 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d8VAytvo5Kr7iCBHoFS8r4" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 167 + }, + "_enabled": true, + "__prefab": { + "__id__": 171 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "89D4U1UGdKZpc7dgUde6Xn" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 167 + }, + "_enabled": true, + "__prefab": { + "__id__": 173 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c1GcskrrxN24pVywWqIBgU" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "906FyFpKVId5jVRpQWyV85", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 130 + }, + "_enabled": true, + "__prefab": { + "__id__": 176 }, "_contentSize": { "__type__": "cc.Size", @@ -3630,11 +4167,913 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 130 }, "_enabled": true, "__prefab": { - "__id__": 154 + "__id__": 178 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 0, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": { + "__id__": 130 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "01F+XJMwNDqp8VHnbxx0iN" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 130 + }, + "_enabled": true, + "__prefab": { + "__id__": 180 + }, + "lockImg": { + "__id__": 158 + }, + "lockCover": { + "__id__": 152 + }, + "titleName": { + "__id__": 164 + }, + "img": { + "__id__": 135 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fd8C8P8JhP9LoKNCFDdpGm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a9vGIqZuFHvqaRLIg/9aTt", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "AllThemesLayout", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 59 + }, + "_children": [ + { + "__id__": 183 + }, + { + "__id__": 219 + }, + { + "__id__": 255 + }, + { + "__id__": 291 + }, + { + "__id__": 327 + }, + { + "__id__": 363 + }, + { + "__id__": 399 + } + ], + "_active": false, + "_components": [ + { + "__id__": 435 + }, + { + "__id__": 437 + }, + { + "__id__": 439 + } + ], + "_prefab": { + "__id__": 441 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -200, + "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": "ThemeItem-001", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 182 + }, + "_children": [ + { + "__id__": 184 + }, + { + "__id__": 200 + }, + { + "__id__": 206 + } + ], + "_active": true, + "_components": [ + { + "__id__": 212 + }, + { + "__id__": 214 + }, + { + "__id__": 216 + } + ], + "_prefab": { + "__id__": 218 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -278.5, + "y": 605.6, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 183 + }, + "_children": [ + { + "__id__": 185 + } + ], + "_active": true, + "_components": [ + { + "__id__": 191 + }, + { + "__id__": 193 + }, + { + "__id__": 195 + }, + { + "__id__": 197 + } + ], + "_prefab": { + "__id__": 199 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 184 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 186 + }, + { + "__id__": 188 + } + ], + "_prefab": { + "__id__": 190 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 185 + }, + "_enabled": true, + "__prefab": { + "__id__": 187 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "98X2nk6pZIzI1lDtREmYsJ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 185 + }, + "_enabled": true, + "__prefab": { + "__id__": 189 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eceoChq7JKVYtlmkk8iLfK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "cbqYcYpuZIdoXt1nru7x6Z", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 184 + }, + "_enabled": true, + "__prefab": { + "__id__": 192 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0f8zWR4u1JIJgWUXdgUZ8Y" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 184 + }, + "_enabled": true, + "__prefab": { + "__id__": 194 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "20HUFm9v1N44Y5IBFyARGt" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 184 + }, + "_enabled": true, + "__prefab": { + "__id__": 196 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c0uX4Op15GyZC0Ojvndfqg" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 184 + }, + "_enabled": true, + "__prefab": { + "__id__": 198 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfiiZfk2pCBJsPfkW+3MMN" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "04+oIM2dREk6ajKzH5f1dM", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 183 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 201 + }, + { + "__id__": 203 + } + ], + "_prefab": { + "__id__": 205 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "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__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 202 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "68Wvp3iJtNpIn5zZy08HGs" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 200 + }, + "_enabled": true, + "__prefab": { + "__id__": 204 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "49cnxpyaxOCYwN5DaUvprr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e1YF5TVRRFLrjXsW+Cf4QL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 183 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 207 + }, + { + "__id__": 209 + } + ], + "_prefab": { + "__id__": 211 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "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__": 206 + }, + "_enabled": true, + "__prefab": { + "__id__": 208 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3efm6T3SRFAIccmSpvNXtX" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 206 + }, + "_enabled": true, + "__prefab": { + "__id__": 210 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "dcgVQqUf5IBZUf3C2Vvy6M" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "84lhqvePZCPYJ2ZefHCstb", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 183 + }, + "_enabled": true, + "__prefab": { + "__id__": 213 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1aQHpfz+pPqoLu3+NJjAxP" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 183 + }, + "_enabled": true, + "__prefab": { + "__id__": 215 }, "clickEvents": [], "_interactable": true, @@ -3678,7 +5117,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "01F+XJMwNDqp8VHnbxx0iN" + "fileId": "10gU9Q/EdAz68ZLid8oiq9" }, { "__type__": "a41b6kNXWFGSLK8TJwZuxV7", @@ -3686,26 +5125,26 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 122 + "__id__": 183 }, "_enabled": true, "__prefab": { - "__id__": 156 + "__id__": 217 }, "lockImg": { - "__id__": 142 + "__id__": 203 }, "titleName": { - "__id__": 148 + "__id__": 209 }, "img": { - "__id__": 127 + "__id__": 188 }, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "fd8C8P8JhP9LoKNCFDdpGm" + "fileId": "6ctq5/d+FG+YfAXjqralA6" }, { "__type__": "cc.PrefabInfo", @@ -3715,39 +5154,159 @@ "asset": { "__id__": 0 }, - "fileId": "a9vGIqZuFHvqaRLIg/9aTt", + "fileId": "7cvbkWoGtOi6qmjynnSnsX", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "AllThemesLayout", + "_name": "ThemeItem-002", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 59 + "__id__": 182 + }, + "_children": [ + { + "__id__": 220 + }, + { + "__id__": 236 + }, + { + "__id__": 242 + } + ], + "_active": true, + "_components": [ + { + "__id__": 248 + }, + { + "__id__": 250 + }, + { + "__id__": 252 + } + ], + "_prefab": { + "__id__": 254 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 294.9, + "y": 605.6, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 219 + }, + "_children": [ + { + "__id__": 221 + } + ], + "_active": true, + "_components": [ + { + "__id__": 227 + }, + { + "__id__": 229 + }, + { + "__id__": 231 + }, + { + "__id__": 233 + } + ], + "_prefab": { + "__id__": 235 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 220 }, "_children": [], "_active": true, "_components": [ { - "__id__": 159 + "__id__": 222 }, { - "__id__": 161 - }, - { - "__id__": 163 + "__id__": 224 } ], "_prefab": { - "__id__": 165 + "__id__": 226 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": -200, + "y": 0, "z": 0 }, "_lrot": { @@ -3779,16 +5338,4775 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 221 }, "_enabled": true, "__prefab": { - "__id__": 160 + "__id__": 223 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "86NZHEvnJAYarF7Z01CLba" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 221 + }, + "_enabled": true, + "__prefab": { + "__id__": 225 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "abzZjsUcpOlKjUVraxROjm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "eepmGoQhxPFL5QGsK7a1L8", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 220 + }, + "_enabled": true, + "__prefab": { + "__id__": 228 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bfTz5g5JdBxJf3kyVEaluh" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 220 + }, + "_enabled": true, + "__prefab": { + "__id__": 230 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "93ZlEz9BJJu7zZxLVG4hxf" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 220 + }, + "_enabled": true, + "__prefab": { + "__id__": 232 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b44Lm9chpJgplRnSGKI9+f" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 220 + }, + "_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__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bbpmfo/fxIeIuoxR+SMz6b" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1csZkAl7tOfKvNMEJPjb1d", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 219 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 237 + }, + { + "__id__": 239 + } + ], + "_prefab": { + "__id__": 241 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 236 + }, + "_enabled": true, + "__prefab": { + "__id__": 238 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "20ErLJuH9AMZwLFkmRWuKK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 236 + }, + "_enabled": true, + "__prefab": { + "__id__": 240 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "76v0zZI9VIu41KCiHqQ9wj" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35hd3FwfhNzaQPQfuiQnmT", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 219 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 243 + }, + { + "__id__": 245 + } + ], + "_prefab": { + "__id__": 247 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "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__": 242 + }, + "_enabled": true, + "__prefab": { + "__id__": 244 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "28SA47kjdKQ6gSPKN2OEyw" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 242 + }, + "_enabled": true, + "__prefab": { + "__id__": 246 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "86cUYiR5RC55qOFKb0g7W/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fbyC7KAEFDB5yARChYo8/m", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 219 + }, + "_enabled": true, + "__prefab": { + "__id__": 249 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27otcbFrBDBbVzAvDuwgSY" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 219 + }, + "_enabled": true, + "__prefab": { + "__id__": 251 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "01zLKqSfhE+KKnG+6rMW9g" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 219 + }, + "_enabled": true, + "__prefab": { + "__id__": 253 + }, + "lockImg": { + "__id__": 239 + }, + "titleName": { + "__id__": 245 + }, + "img": { + "__id__": 224 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fbcq+qzuNKl6dACEaLsm1+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "98sziApIpPL5QUbKsWqvpP", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeItem-003", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 182 + }, + "_children": [ + { + "__id__": 256 + }, + { + "__id__": 272 + }, + { + "__id__": 278 + } + ], + "_active": true, + "_components": [ + { + "__id__": 284 + }, + { + "__id__": 286 + }, + { + "__id__": 288 + } + ], + "_prefab": { + "__id__": 290 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -278.5, + "y": 77, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 255 + }, + "_children": [ + { + "__id__": 257 + } + ], + "_active": true, + "_components": [ + { + "__id__": 263 + }, + { + "__id__": 265 + }, + { + "__id__": 267 + }, + { + "__id__": 269 + } + ], + "_prefab": { + "__id__": 271 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 256 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 258 + }, + { + "__id__": 260 + } + ], + "_prefab": { + "__id__": 262 + }, + "_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__": 257 + }, + "_enabled": true, + "__prefab": { + "__id__": 259 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "efqb+FLppPXoGZ2kY1CcH+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 257 + }, + "_enabled": true, + "__prefab": { + "__id__": 261 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "22qDmWya9KyYlhb8q+oGRE" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "41wkwIl1pCC6lGmtbBxHd9", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 256 + }, + "_enabled": true, + "__prefab": { + "__id__": 264 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d9Di3xjeVN9pWb87yDgICd" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 256 + }, + "_enabled": true, + "__prefab": { + "__id__": 266 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7eUI66DD9KgpOQQe7OFffR" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 256 + }, + "_enabled": true, + "__prefab": { + "__id__": 268 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "05z2YWDDtMIrftqzcN+ud5" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 256 + }, + "_enabled": true, + "__prefab": { + "__id__": 270 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c6ZDdeNc5P1K0iyocQuxtD" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9eDMAMABBCJrbakeYuOZR3", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 255 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 273 + }, + { + "__id__": 275 + } + ], + "_prefab": { + "__id__": 277 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "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__": 272 + }, + "_enabled": true, + "__prefab": { + "__id__": 274 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "57EpN1hSpA+4frhCslUoxr" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 272 + }, + "_enabled": true, + "__prefab": { + "__id__": 276 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "24nq1BjtBM8JbI/BLWI/Ox" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0fFKpai4RD35rvQBazzDKC", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 255 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 279 + }, + { + "__id__": 281 + } + ], + "_prefab": { + "__id__": 283 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "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__": 278 + }, + "_enabled": true, + "__prefab": { + "__id__": 280 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e8iQrHt4JHI6RpzKaAdQ6K" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 278 + }, + "_enabled": true, + "__prefab": { + "__id__": 282 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a1wJsiyehB1Y9cZEjNBqUB" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "522krgW/BJno0zigTDqMlG", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 255 + }, + "_enabled": true, + "__prefab": { + "__id__": 285 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bdOXMEBNdIhqa4Qu/qTxWh" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 255 + }, + "_enabled": true, + "__prefab": { + "__id__": 287 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "14xQhzERtItJClZzAwMKB7" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 255 + }, + "_enabled": true, + "__prefab": { + "__id__": 289 + }, + "lockImg": { + "__id__": 275 + }, + "titleName": { + "__id__": 281 + }, + "img": { + "__id__": 260 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "1aUGoh5ZxBMp3pWaEmBiqQ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "18x/OVvXBI95qGccGTs+8p", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeItem-004", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 182 + }, + "_children": [ + { + "__id__": 292 + }, + { + "__id__": 308 + }, + { + "__id__": 314 + } + ], + "_active": true, + "_components": [ + { + "__id__": 320 + }, + { + "__id__": 322 + }, + { + "__id__": 324 + } + ], + "_prefab": { + "__id__": 326 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 294.9, + "y": 77, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 291 + }, + "_children": [ + { + "__id__": 293 + } + ], + "_active": true, + "_components": [ + { + "__id__": 299 + }, + { + "__id__": 301 + }, + { + "__id__": 303 + }, + { + "__id__": 305 + } + ], + "_prefab": { + "__id__": 307 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 292 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 294 + }, + { + "__id__": 296 + } + ], + "_prefab": { + "__id__": 298 + }, + "_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__": 293 + }, + "_enabled": true, + "__prefab": { + "__id__": 295 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6dZ68NGRFMMYhzL9mEvxKm" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 293 + }, + "_enabled": true, + "__prefab": { + "__id__": 297 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "fesNe310xBxpEsCGK728Cb" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "999bbyFY9BoqRbsQWTtZWA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 300 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6ceer5lU5FlI6h8Vbt6VV+" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 302 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9dYaYrYb1AZZFUX8Dm4LPp" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 304 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7cu5R/gTpM67RmFmFYIQYK" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 292 + }, + "_enabled": true, + "__prefab": { + "__id__": 306 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d0tCZAWAdEeZ559GeX1Bla" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "47RV1jbOBFkYpMBJMsq5xO", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 291 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 309 + }, + { + "__id__": 311 + } + ], + "_prefab": { + "__id__": 313 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "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__": 308 + }, + "_enabled": true, + "__prefab": { + "__id__": 310 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d0/y3kIidFv6DR2T23Vg5P" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 308 + }, + "_enabled": true, + "__prefab": { + "__id__": 312 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "b9vZ1G0HJBo6ppP7sfPvyY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "casosnAtdAiYNeIflJZGmS", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 291 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 315 + }, + { + "__id__": 317 + } + ], + "_prefab": { + "__id__": 319 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 314 + }, + "_enabled": true, + "__prefab": { + "__id__": 316 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e3+vtMv3hBt5XTL6avUBww" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 314 + }, + "_enabled": true, + "__prefab": { + "__id__": 318 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a327K2HbRDi7vUTkU1IFJt" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8fyTarFXJNKYACh0Uq7vKL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 291 + }, + "_enabled": true, + "__prefab": { + "__id__": 321 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "bb01kY91ZONpjI6ppYp8dG" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 291 + }, + "_enabled": true, + "__prefab": { + "__id__": 323 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "06hXtY35ZPKaIffXT1ArGE" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 291 + }, + "_enabled": true, + "__prefab": { + "__id__": 325 + }, + "lockImg": { + "__id__": 311 + }, + "titleName": { + "__id__": 317 + }, + "img": { + "__id__": 296 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "acnZX1oQBGDIAQGLyGsM05" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0bbx2sx8BGe4ao9HvGrqA1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeItem-005", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 182 + }, + "_children": [ + { + "__id__": 328 + }, + { + "__id__": 344 + }, + { + "__id__": 350 + } + ], + "_active": true, + "_components": [ + { + "__id__": 356 + }, + { + "__id__": 358 + }, + { + "__id__": 360 + } + ], + "_prefab": { + "__id__": 362 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -278.5, + "y": -451.60000000000014, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 327 + }, + "_children": [ + { + "__id__": 329 + } + ], + "_active": true, + "_components": [ + { + "__id__": 335 + }, + { + "__id__": 337 + }, + { + "__id__": 339 + }, + { + "__id__": 341 + } + ], + "_prefab": { + "__id__": 343 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 328 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 330 + }, + { + "__id__": 332 + } + ], + "_prefab": { + "__id__": 334 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 329 + }, + "_enabled": true, + "__prefab": { + "__id__": 331 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4cud5e+olDwpeiTsSpoR0j" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 329 + }, + "_enabled": true, + "__prefab": { + "__id__": 333 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "46dxk/MfVP+I9rw7tFLOsH" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e83DB3eg1K3Y9qLpV5TEFO", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 328 + }, + "_enabled": true, + "__prefab": { + "__id__": 336 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9eM/PH7i9MMIw55SkpBKDo" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 328 + }, + "_enabled": true, + "__prefab": { + "__id__": 338 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2eNchtJdxBupoMh7oRTrPJ" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 328 + }, + "_enabled": true, + "__prefab": { + "__id__": 340 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "56msVAPQ1CdYgSwRCSRc5a" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 328 + }, + "_enabled": true, + "__prefab": { + "__id__": 342 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49EW3aF2lCF7Kr39sYQ4en" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e66iDZWppHkIy9rijXqwJV", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 327 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 345 + }, + { + "__id__": 347 + } + ], + "_prefab": { + "__id__": 349 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "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__": 344 + }, + "_enabled": true, + "__prefab": { + "__id__": 346 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83ZefC5gFPaLiWAP7MWSo2" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 344 + }, + "_enabled": true, + "__prefab": { + "__id__": 348 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "d9zorf1BdMJbv75ePIZONZ" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9o2wthvhAVb+0LW0ASEm2", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 327 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 351 + }, + { + "__id__": 353 + } + ], + "_prefab": { + "__id__": 355 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "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__": 350 + }, + "_enabled": true, + "__prefab": { + "__id__": 352 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2cCVB3An5KCIublfTA+NjS" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 350 + }, + "_enabled": true, + "__prefab": { + "__id__": 354 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8ciz0mEHBDr5g/eRETEnsn" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "54VyxQ5W9O+Yz6iNPi2swr", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 327 + }, + "_enabled": true, + "__prefab": { + "__id__": 357 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "07a07jIDhKIKFpCnOW9e6a" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 327 + }, + "_enabled": true, + "__prefab": { + "__id__": 359 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "14Zpo56rtFX4fGv6fnnr2h" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 327 + }, + "_enabled": true, + "__prefab": { + "__id__": 361 + }, + "lockImg": { + "__id__": 347 + }, + "titleName": { + "__id__": 353 + }, + "img": { + "__id__": 332 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d3S85adVdOh4JheGnUp3+f" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "29tZATIIFEvro8LyapxcBo", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeItem-006", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 182 + }, + "_children": [ + { + "__id__": 364 + }, + { + "__id__": 380 + }, + { + "__id__": 386 + } + ], + "_active": true, + "_components": [ + { + "__id__": 392 + }, + { + "__id__": 394 + }, + { + "__id__": 396 + } + ], + "_prefab": { + "__id__": 398 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 294.9, + "y": -451.60000000000014, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 363 + }, + "_children": [ + { + "__id__": 365 + } + ], + "_active": true, + "_components": [ + { + "__id__": 371 + }, + { + "__id__": 373 + }, + { + "__id__": 375 + }, + { + "__id__": 377 + } + ], + "_prefab": { + "__id__": 379 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 364 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 366 + }, + { + "__id__": 368 + } + ], + "_prefab": { + "__id__": 370 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 365 + }, + "_enabled": true, + "__prefab": { + "__id__": 367 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "be0FzludRItqW1UZ2cFR0G" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 365 + }, + "_enabled": true, + "__prefab": { + "__id__": 369 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "71PLy+geZFSKYTzhFn7jR/" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "72emabtuBHcrPegqIp9oZu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 364 + }, + "_enabled": true, + "__prefab": { + "__id__": 372 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61uI33n/1AHaxJh9kxxcYm" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 364 + }, + "_enabled": true, + "__prefab": { + "__id__": 374 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4ehltnlfFJKL2yxGzlpXCH" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 364 + }, + "_enabled": true, + "__prefab": { + "__id__": 376 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3pNH9NGBIZYaXMBvlKopB" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 364 + }, + "_enabled": true, + "__prefab": { + "__id__": 378 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "76llNQPTZN4Jm4TRVtXxv8" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "7aBXrW+XFPRrmA9SDp2BWl", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 363 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 381 + }, + { + "__id__": 383 + } + ], + "_prefab": { + "__id__": 385 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "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__": 380 + }, + "_enabled": true, + "__prefab": { + "__id__": 382 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f6gf/ULHFOAqu/EQu4HRQN" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 380 + }, + "_enabled": true, + "__prefab": { + "__id__": 384 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "09CNIILXFAbrpXbYdN7ok4" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "27cQ8gcUlGg5R6zLI98MTq", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 363 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 387 + }, + { + "__id__": 389 + } + ], + "_prefab": { + "__id__": 391 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "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__": 386 + }, + "_enabled": true, + "__prefab": { + "__id__": 388 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e2O46kZhFBS6XYevAN5v8w" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 386 + }, + "_enabled": true, + "__prefab": { + "__id__": 390 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "40cYSzjtZNCovPEpuSQcrM" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "778WJB18tKj5soWgB3HMnZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 363 + }, + "_enabled": true, + "__prefab": { + "__id__": 393 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "17h/c5fS5OYJrpEgpONk5G" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 363 + }, + "_enabled": true, + "__prefab": { + "__id__": 395 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "45L6e5zopGSYiJXzEstOWS" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 363 + }, + "_enabled": true, + "__prefab": { + "__id__": 397 + }, + "lockImg": { + "__id__": 383 + }, + "titleName": { + "__id__": 389 + }, + "img": { + "__id__": 368 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "87/0VyinNGDpYuZa8eq9V+" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4f14Jp5ftKOJArfdxTD98P", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeItem-007", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 182 + }, + "_children": [ + { + "__id__": 400 + }, + { + "__id__": 416 + }, + { + "__id__": 422 + } + ], + "_active": true, + "_components": [ + { + "__id__": 428 + }, + { + "__id__": 430 + }, + { + "__id__": 432 + } + ], + "_prefab": { + "__id__": 434 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -278.5, + "y": -980.2000000000003, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [ + { + "__id__": 401 + } + ], + "_active": true, + "_components": [ + { + "__id__": 407 + }, + { + "__id__": 409 + }, + { + "__id__": 411 + }, + { + "__id__": 413 + } + ], + "_prefab": { + "__id__": 415 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 5.684341886080802e-14, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Img", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 400 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 402 + }, + { + "__id__": 404 + } + ], + "_prefab": { + "__id__": 406 + }, + "_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__": 401 + }, + "_enabled": true, + "__prefab": { + "__id__": 403 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "854qPKiDJJI5N9dSYvSv83" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 401 + }, + "_enabled": true, + "__prefab": { + "__id__": 405 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a0pj6t061GrqR5vOYebTRY" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "19BsMdXAdCkq2vNsnUPMA1", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 400 + }, + "_enabled": true, + "__prefab": { + "__id__": 408 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a37iMivH1MdYy4liVnVgb+" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 400 + }, + "_enabled": true, + "__prefab": { + "__id__": 410 + }, + "_alignFlags": 45, + "_target": null, + "_left": 5.684341886080802e-14, + "_right": -5.684341886080802e-14, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7ajwfnCa9MaroiJNDfu0WX" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 400 + }, + "_enabled": true, + "__prefab": { + "__id__": 412 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23F/9H3E1Etru6RY4dSDtt" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 400 + }, + "_enabled": true, + "__prefab": { + "__id__": 414 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b17d4aec-b45f-44f3-86b4-b9653f3c44bd@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ef8lr6AuZIRpE4pzYlPy+C" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ebMnoXT6dOhb4wU2rtcZIB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "LockImg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 417 + }, + { + "__id__": 419 + } + ], + "_prefab": { + "__id__": 421 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -236.92199999999997, + "y": 184.35500000000002, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.15, + "y": 0.15, + "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__": 416 + }, + "_enabled": true, + "__prefab": { + "__id__": 418 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 384, + "height": 448 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "02jJ/ZzPpO7LHNHvD7nbby" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 416 + }, + "_enabled": true, + "__prefab": { + "__id__": 420 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "fef002f2-a825-4e01-a786-01c53c5c32ff@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": "e3X1f3HWJKRqwxysJNxBM1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1a9xA3gGBEUYFMUOuLIb4R", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "ThemeName", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 399 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 423 + }, + { + "__id__": 425 + } + ], + "_prefab": { + "__id__": 427 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -264.145, + "y": -163.13199999999983, + "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__": 422 + }, + "_enabled": true, + "__prefab": { + "__id__": 424 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 144, + "height": 73.048 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "22woUwuiJM07ApfjyqZnHK" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 422 + }, + "_enabled": true, + "__prefab": { + "__id__": 426 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "熟女", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 70, + "_fontSize": 70, + "_fontFamily": "NotoSans-Regular", + "_lineHeight": 54.8, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": false, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 125 + }, + "_outlineWidth": 2, + "_enableShadow": false, + "_shadowColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 119 + }, + "_shadowOffset": { + "__type__": "cc.Vec2", + "x": -1, + "y": -1 + }, + "_shadowBlur": 2, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "852hl0wYZL8YEYk/R/9/wO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "0dpM57bFZEK7Av5f8kcJsu", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 399 + }, + "_enabled": true, + "__prefab": { + "__id__": 429 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "78rX6JbItDLqFwn0IYq9JV" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 399 + }, + "_enabled": true, + "__prefab": { + "__id__": 431 + }, + "clickEvents": [], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 0.95, + "_target": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5eG3L87aFCQLlx1Twy2Ob2" + }, + { + "__type__": "a41b6kNXWFGSLK8TJwZuxV7", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 399 + }, + "_enabled": true, + "__prefab": { + "__id__": 433 + }, + "lockImg": { + "__id__": 419 + }, + "titleName": { + "__id__": 425 + }, + "img": { + "__id__": 404 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f9m4XmeHhJs4vr4dHLggo6" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "aeMPkKYV1IjZI/AGA4rxnR", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 182 + }, + "_enabled": true, + "__prefab": { + "__id__": 436 }, "_contentSize": { "__type__": "cc.Size", "width": 1167, - "height": 85.4 + "height": 1832 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -3807,11 +10125,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 162 + "__id__": 438 }, "_alignFlags": 45, "_target": null, @@ -3843,18 +10161,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 158 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 440 }, - "_resizeMode": 1, + "_resizeMode": 2, "_layoutType": 3, "_cellSize": { "__type__": "cc.Size", - "width": 40, - "height": 40 + "width": 550, + "height": 450 }, "_startAxis": 0, "_paddingLeft": 30, @@ -3888,6 +10206,553 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "ScrollView", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 59 + }, + "_children": [ + { + "__id__": 443 + } + ], + "_active": true, + "_components": [ + { + "__id__": 459 + }, + { + "__id__": 461 + }, + { + "__id__": 463 + }, + { + "__id__": 465 + } + ], + "_prefab": { + "__id__": 467 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": -208.95000000000005, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 33554432, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "view", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 442 + }, + "_children": [ + { + "__id__": 444 + } + ], + "_active": true, + "_components": [ + { + "__id__": 450 + }, + { + "__id__": 452 + }, + { + "__id__": 454 + }, + { + "__id__": 456 + } + ], + "_prefab": { + "__id__": 458 + }, + "_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": "allThemecontent", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 443 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 445 + }, + { + "__id__": 447 + } + ], + "_prefab": { + "__id__": 449 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -583.5, + "y": 907.0500000000002, + "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__": 444 + }, + "_enabled": true, + "__prefab": { + "__id__": 446 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 80 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 1 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b29vOYBSFBE6iasaI09xjb" + }, + { + "__type__": "cc.Layout", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 444 + }, + "_enabled": true, + "__prefab": { + "__id__": 448 + }, + "_resizeMode": 1, + "_layoutType": 3, + "_cellSize": { + "__type__": "cc.Size", + "width": 550, + "height": 450 + }, + "_startAxis": 0, + "_paddingLeft": 30, + "_paddingRight": 30, + "_paddingTop": 80, + "_paddingBottom": 0, + "_spacingX": 25, + "_spacingY": 80, + "_verticalDirection": 1, + "_horizontalDirection": 0, + "_constraint": 2, + "_constraintNum": 2, + "_affectedByScale": false, + "_isAlign": false, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "06wGjmynBGhaMe3n0TR6Uy" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8ebvTeO6lMSYYDg4uDho8z", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 443 + }, + "_enabled": true, + "__prefab": { + "__id__": 451 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 1814.1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "16UjlwbI1JX7NT6Qny6i6J" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 443 + }, + "_enabled": true, + "__prefab": { + "__id__": 453 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eelqQnLzBDvbhNp613/oQR" + }, + { + "__type__": "cc.Graphics", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 443 + }, + "_enabled": true, + "__prefab": { + "__id__": 455 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_lineWidth": 1, + "_strokeColor": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_lineJoin": 2, + "_lineCap": 0, + "_fillColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 0 + }, + "_miterLimit": 10, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e4r/Z6UnFD7554mFKxkdfS" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 443 + }, + "_enabled": true, + "__prefab": { + "__id__": 457 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 250, + "_alignMode": 2, + "_lockFlags": 45, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "18MVFGbF9OR5vxDjfL2oH1" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70oATObmVB8YbRUVE9gFZQ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 460 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1167, + "height": 1814.1 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0fXqZJaUNEQqH4iBbd+WjY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": false, + "__prefab": { + "__id__": 462 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "18VZIQYsxIh4Zh0BByxBA5" + }, + { + "__type__": "cc.ScrollView", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 464 + }, + "bounceDuration": 0.23, + "brake": 0.75, + "elastic": true, + "inertia": true, + "horizontal": false, + "vertical": true, + "cancelInnerEvents": true, + "scrollEvents": [], + "_content": { + "__id__": 444 + }, + "_horizontalScrollBar": null, + "_verticalScrollBar": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "89Nr3Vh8FCcrD6uHEFPgt3" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 442 + }, + "_enabled": true, + "__prefab": { + "__id__": 466 + }, + "_alignFlags": 45, + "_target": null, + "_left": 0, + "_right": 0, + "_top": 417.9, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 250, + "_alignMode": 2, + "_lockFlags": 45, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "a2qCSal3FKv46dDRePkTgR" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2bqgxckgtEj7FyqYh565MB", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -3898,7 +10763,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 469 }, "_contentSize": { "__type__": "cc.Size", @@ -3924,9 +10789,9 @@ "node": { "__id__": 59 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 169 + "__id__": 471 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3971,7 +10836,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 473 }, "_alignFlags": 45, "_target": null, @@ -3990,7 +10855,7 @@ "_originalWidth": 100, "_originalHeight": 400, "_alignMode": 2, - "_lockFlags": 5, + "_lockFlags": 45, "_id": "" }, { @@ -4020,7 +10885,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 174 + "__id__": 476 }, "_contentSize": { "__type__": "cc.Size", @@ -4048,20 +10913,20 @@ }, "_enabled": true, "__prefab": { - "__id__": 176 + "__id__": 478 }, "_customMaterial": null, "_srcBlendFactor": 2, "_dstBlendFactor": 4, "_color": { "__type__": "cc.Color", - "r": 130, - "g": 54, - "b": 136, + "r": 255, + "g": 255, + "b": 255, "a": 255 }, "_spriteFrame": { - "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941", + "__uuid__": "943325de-7f76-4f86-881b-e3413d3ec18e@f9941", "__expectedType__": "cc.SpriteFrame" }, "_type": 0, @@ -4093,7 +10958,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 178 + "__id__": 480 }, "_alignFlags": 45, "_target": null, @@ -4142,7 +11007,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 483 }, "_contentSize": { "__type__": "cc.Size", @@ -4170,7 +11035,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 183 + "__id__": 485 }, "_alignFlags": 45, "_target": null, @@ -4189,7 +11054,7 @@ "_originalWidth": 100, "_originalHeight": 100, "_alignMode": 2, - "_lockFlags": 0, + "_lockFlags": 45, "_id": "" }, { @@ -4206,7 +11071,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 185 + "__id__": 487 }, "m_rootNode": null, "_id": "" diff --git a/assets/bundles/DataTable/tblanguage.bin b/assets/bundles/DataTable/tblanguage.bin index 14514139..d4b0cfbb 100644 --- a/assets/bundles/DataTable/tblanguage.bin +++ b/assets/bundles/DataTable/tblanguage.bin @@ -1,8 +1,8 @@ -themepanel.title Girls Online 在线选妃+ऑनलाइन लड़कियाँFilles en ligneMädchen Onlinethemepanel.recomandtextDaily Recomand 每日推荐%दैनिक सिफारिशRecommandation quotidienneTägliche Empfehlunggirllistpanel.title Girl List 技师列表,लड़कियों की सूचीListe des filles Mädchenlistegirldetailpanel.chatbtn +themepanel.title Girls Online 在线选妃+ऑनलाइन लड़कियाँFilles en ligneMädchen Onlinethemepanel.recomandtextDaily Recomand 每日推荐%दैनिक सिफारिशRecommandation quotidienneTägliche Empfehlunggirllistpanel.title Girl List 技师列表,लड़कियों की सूचीListe des filles Mädchenlistegirldetailpanel.chatbtn Send Msgs! 发送消息संदेश भेजेंEnvoyer un messageNachricht sendengirldetailpanel.nameName:名字: -नाम:Nom:Name:girldetailpanel.ageAge:年龄: उम्र:Âge:Alter:girldetailpanel.desc Description: 自我介绍:विवरण: Description: Beschreibung:chatpanel.inputplaceholder Messages! 请输入:संदेश लिखेंÉcrivez ici...Nachricht eingeben category_1001 mature_lady熟女%परिपक्व महिला Femme mature -Reife Dame category_1002eighteen18岁अठारह वर्ष Dix-huit ansAchtzehn category_1003 hot_mommy辣妈सेक्सी माँ -Maman sexy Heiße Mama category_1004binding捆绑 बंधनBondageFesseln category_1005 public_fight 公众野战+सार्वजनिक संभोग Sexe publicÖffentlicher Sex category_1006cartoon卡通कार्टून Dessin animé Zeichentrickgirl_10001_name Anaya Kapoor 阿纳雅आन्या कपूर Anaya Kapoor Anaya Kapoorgirl_10002_name Meher Joshi梅尔मेहर जोशी Meher Joshi Meher Joshigirl_10003_name +नाम:Nom:Name:girldetailpanel.ageAge:年龄: उम्र:Âge:Alter:girldetailpanel.desc Description: 自我介绍:विवरण: Description: Beschreibung:chatpanel.inputplaceholder Messages! 请输入:संदेश लिखेंÉcrivez ici...Nachricht eingeben category_1001 Mature Lady熟女%परिपक्व महिला Femme mature +Reife Dame category_1002Eighteen18岁अठारह वर्ष Dix-huit ansAchtzehn category_1003 Hot Mommy辣妈सेक्सी माँ +Maman sexy Heiße Mama category_1004Binding捆绑 बंधनBondageFesseln category_1005 Public Fight 公众野战+सार्वजनिक संभोग Sexe publicÖffentlicher Sex category_1006Cartoon卡通कार्टून Dessin animé Zeichentrick category_1007 Up Coming Up Comingकार्टून Dessin animé Zeichentrickgirl_10001_name Anaya Kapoor 阿纳雅आन्या कपूर Anaya Kapoor Anaya Kapoorgirl_10002_name Meher Joshi梅尔मेहर जोशी Meher Joshi Meher Joshigirl_10003_name Sana Reddy萨娜साना रेड्डी Sana Reddy Sana Reddygirl_10001_tag Hot|Horny 火辣|饥渴"सेक्सी|कामुकChaude|Excitée diff --git a/assets/bundles/DataTable/tbthemes.bin b/assets/bundles/DataTable/tbthemes.bin index b45e2a01..825a84b0 100644 Binary files a/assets/bundles/DataTable/tbthemes.bin and b/assets/bundles/DataTable/tbthemes.bin differ diff --git a/assets/resources/chat_ui/avatar_mask_cover.png b/assets/resources/chat_ui/avatar_mask_cover.png index cd8bd1b1..d21a8d76 100644 Binary files a/assets/resources/chat_ui/avatar_mask_cover.png and b/assets/resources/chat_ui/avatar_mask_cover.png differ diff --git a/assets/resources/chat_ui/bg.png b/assets/resources/chat_ui/bg.png index 71ae8f29..ae4d1a9c 100644 Binary files a/assets/resources/chat_ui/bg.png and b/assets/resources/chat_ui/bg.png differ diff --git a/assets/resources/chat_ui/bg.png.meta b/assets/resources/chat_ui/bg.png.meta index 3a86248e..b382f0de 100644 --- a/assets/resources/chat_ui/bg.png.meta +++ b/assets/resources/chat_ui/bg.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 204, - "height": 217, - "rawWidth": 204, - "rawHeight": 217, + "width": 351, + "height": 800, + "rawWidth": 351, + "rawHeight": 800, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -102, - -108.5, + -175.5, + -400, 0, - 102, - -108.5, + 175.5, + -400, 0, - -102, - 108.5, + -175.5, + 400, 0, - 102, - 108.5, + 175.5, + 400, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 217, - 204, - 217, + 800, + 351, + 800, 0, 0, - 204, + 351, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -102, - -108.5, + -175.5, + -400, 0 ], "maxPos": [ - 102, - 108.5, + 175.5, + 400, 0 ] }, diff --git a/assets/resources/chat_ui/chat_btn.png b/assets/resources/chat_ui/chat_btn.png index 3332a0bf..72445489 100644 Binary files a/assets/resources/chat_ui/chat_btn.png and b/assets/resources/chat_ui/chat_btn.png differ diff --git a/assets/resources/chat_ui/chat_btn.png.meta b/assets/resources/chat_ui/chat_btn.png.meta index e51de958..f5c53c1d 100644 --- a/assets/resources/chat_ui/chat_btn.png.meta +++ b/assets/resources/chat_ui/chat_btn.png.meta @@ -46,10 +46,10 @@ "offsetY": 0, "trimX": 0, "trimY": 0, - "width": 44, - "height": 44, - "rawWidth": 44, - "rawHeight": 44, + "width": 208, + "height": 208, + "rawWidth": 208, + "rawHeight": 208, "borderTop": 0, "borderBottom": 0, "borderLeft": 0, @@ -61,17 +61,17 @@ "meshType": 0, "vertices": { "rawPosition": [ - -22, - -22, + -104, + -104, 0, - 22, - -22, + 104, + -104, 0, - -22, - 22, + -104, + 104, 0, - 22, - 22, + 104, + 104, 0 ], "indexes": [ @@ -84,12 +84,12 @@ ], "uv": [ 0, - 44, - 44, - 44, + 208, + 208, + 208, 0, 0, - 44, + 208, 0 ], "nuv": [ @@ -103,13 +103,13 @@ 1 ], "minPos": [ - -22, - -22, + -104, + -104, 0 ], "maxPos": [ - 22, - 22, + 104, + 104, 0 ] }, diff --git a/assets/resources/chat_ui/chat_bubble_002.png b/assets/resources/chat_ui/chat_bubble_002.png new file mode 100644 index 00000000..efc9996e Binary files /dev/null and b/assets/resources/chat_ui/chat_bubble_002.png differ diff --git a/assets/resources/chat_ui/chat_bubble_002.png.meta b/assets/resources/chat_ui/chat_bubble_002.png.meta new file mode 100644 index 00000000..35745932 --- /dev/null +++ b/assets/resources/chat_ui/chat_bubble_002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@6c48a", + "displayName": "chat_bubble_002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016", + "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": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@f9941", + "displayName": "chat_bubble_002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 69, + "height": 60, + "rawWidth": 69, + "rawHeight": 60, + "borderTop": 27.1, + "borderBottom": 27.1, + "borderLeft": 30, + "borderRight": 30, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -34.5, + -30, + 0, + 34.5, + -30, + 0, + -34.5, + 30, + 0, + 34.5, + 30, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 60, + 69, + 60, + 0, + 0, + 69, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -34.5, + -30, + 0 + ], + "maxPos": [ + 34.5, + 30, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "4fb0d3b0-40f8-4bbc-913a-ec04cba7e016@6c48a" + } +} diff --git a/assets/resources/chat_ui/simple_frame_002.png b/assets/resources/chat_ui/simple_frame_002.png new file mode 100644 index 00000000..76c8e25d Binary files /dev/null and b/assets/resources/chat_ui/simple_frame_002.png differ diff --git a/assets/resources/chat_ui/simple_frame_002.png.meta b/assets/resources/chat_ui/simple_frame_002.png.meta new file mode 100644 index 00000000..359c4043 --- /dev/null +++ b/assets/resources/chat_ui/simple_frame_002.png.meta @@ -0,0 +1,134 @@ +{ + "ver": "1.0.27", + "importer": "image", + "imported": true, + "uuid": "1622aad1-df40-4d88-94cb-fe395a2b26fd", + "files": [ + ".json", + ".png" + ], + "subMetas": { + "6c48a": { + "importer": "texture", + "uuid": "1622aad1-df40-4d88-94cb-fe395a2b26fd@6c48a", + "displayName": "simple_frame_002", + "id": "6c48a", + "name": "texture", + "userData": { + "wrapModeS": "clamp-to-edge", + "wrapModeT": "clamp-to-edge", + "imageUuidOrDatabaseUri": "1622aad1-df40-4d88-94cb-fe395a2b26fd", + "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": "1622aad1-df40-4d88-94cb-fe395a2b26fd@f9941", + "displayName": "simple_frame_002", + "id": "f9941", + "name": "spriteFrame", + "userData": { + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 56, + "height": 56, + "rawWidth": 56, + "rawHeight": 56, + "borderTop": 25, + "borderBottom": 25, + "borderLeft": 25, + "borderRight": 25, + "packable": true, + "pixelsToUnit": 100, + "pivotX": 0.5, + "pivotY": 0.5, + "meshType": 0, + "vertices": { + "rawPosition": [ + -28, + -28, + 0, + 28, + -28, + 0, + -28, + 28, + 0, + 28, + 28, + 0 + ], + "indexes": [ + 0, + 1, + 2, + 2, + 1, + 3 + ], + "uv": [ + 0, + 56, + 56, + 56, + 0, + 0, + 56, + 0 + ], + "nuv": [ + 0, + 0, + 1, + 0, + 0, + 1, + 1, + 1 + ], + "minPos": [ + -28, + -28, + 0 + ], + "maxPos": [ + 28, + 28, + 0 + ] + }, + "isUuid": true, + "imageUuidOrDatabaseUri": "1622aad1-df40-4d88-94cb-fe395a2b26fd@6c48a", + "atlasUuid": "" + }, + "ver": "1.0.12", + "imported": true, + "files": [ + ".json" + ], + "subMetas": {} + } + }, + "userData": { + "type": "sprite-frame", + "hasAlpha": true, + "fixAlphaTransparencyArtifacts": false, + "redirect": "1622aad1-df40-4d88-94cb-fe395a2b26fd@6c48a" + } +}