From 0639f3fab40b29b73a334050803c36b1b95386b2 Mon Sep 17 00:00:00 2001 From: "COMPUTER\\EDY" <249929363@qq.com> Date: Mon, 12 Jan 2026 10:39:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=88=86=E4=BA=AB=E5=9B=BE?= =?UTF-8?q?=E7=89=87?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/Script/JiaZai.ts | 108 +- assets/Script/Map.ts | 8 + assets/Script/SceneManager.ts | 41 +- assets/Script/module/Pay/Utils.ts | 25 +- assets/Script/prop/Lock.ts | 4 +- assets/action_bundle/img/share.meta | 13 + assets/action_bundle/img/share/shareBG.png | Bin 0 -> 11855 bytes .../action_bundle/img/share/shareBG.png.meta | 38 + assets/action_bundle/img/share/shareTitle.png | Bin 0 -> 3261 bytes .../img/share/shareTitle.png.meta | 38 + assets/action_bundle/img/share/share_dian.png | Bin 0 -> 406 bytes .../img/share/share_dian.png.meta | 38 + .../action_bundle/img/share/share_getBtn.png | Bin 0 -> 4772 bytes .../img/share/share_getBtn.png.meta | 38 + .../action_bundle/img/share/share_wenzi.png | Bin 0 -> 2222 bytes .../img/share/share_wenzi.png.meta | 38 + assets/action_bundle/img/share/share_x.png | Bin 0 -> 1713 bytes .../action_bundle/img/share/share_x.png.meta | 38 + assets/action_bundle/prefab/Share.prefab | 2181 +++++++++++++++++ assets/action_bundle/prefab/Share.prefab.meta | 9 + assets/action_bundle/script/shareFriend.ts | 117 + .../action_bundle/script/shareFriend.ts.meta | 10 + 22 files changed, 2712 insertions(+), 32 deletions(-) create mode 100644 assets/action_bundle/img/share.meta create mode 100644 assets/action_bundle/img/share/shareBG.png create mode 100644 assets/action_bundle/img/share/shareBG.png.meta create mode 100644 assets/action_bundle/img/share/shareTitle.png create mode 100644 assets/action_bundle/img/share/shareTitle.png.meta create mode 100644 assets/action_bundle/img/share/share_dian.png create mode 100644 assets/action_bundle/img/share/share_dian.png.meta create mode 100644 assets/action_bundle/img/share/share_getBtn.png create mode 100644 assets/action_bundle/img/share/share_getBtn.png.meta create mode 100644 assets/action_bundle/img/share/share_wenzi.png create mode 100644 assets/action_bundle/img/share/share_wenzi.png.meta create mode 100644 assets/action_bundle/img/share/share_x.png create mode 100644 assets/action_bundle/img/share/share_x.png.meta create mode 100644 assets/action_bundle/prefab/Share.prefab create mode 100644 assets/action_bundle/prefab/Share.prefab.meta create mode 100644 assets/action_bundle/script/shareFriend.ts create mode 100644 assets/action_bundle/script/shareFriend.ts.meta diff --git a/assets/Script/JiaZai.ts b/assets/Script/JiaZai.ts index 454263a..44c86f2 100644 --- a/assets/Script/JiaZai.ts +++ b/assets/Script/JiaZai.ts @@ -43,6 +43,8 @@ export default class JiaZai extends cc.Component { private dailyQuestsNode: cc.Node | null = null; private static cachedWinStreakPrefab: cc.Prefab | null = null; private winStreakNode: cc.Node | null = null; + private static cachedSharePrefab: cc.Prefab | null = null; + private ShareNode: cc.Node | null = null; // 缓存 通行证 private static cachedPassCheckPrefab: cc.Prefab | null = null; @@ -116,9 +118,7 @@ export default class JiaZai extends cc.Component { // LIFE-CYCLE CALLBACKS: onLoad() { - if (cc.fx.GameConfig.GM_INFO.otherUid != "") { - this.getShareInfo(); - } + cc.fx.GameConfig.GM_INFO.sceneValue = "HomeScene"; initProvinceLocator(); // this.RankNode = null; @@ -129,6 +129,9 @@ export default class JiaZai extends cc.Component { this.node.getChildByName("zhuanchang").zIndex = 1000; this.careerRank = null; this.closeLoad(); + if (cc.fx.GameConfig.GM_INFO.otherUid != "") { + this.getShareInfo(); + } this.checkShare(); this.closeAvatar(); this.setShareInfo(); @@ -213,6 +216,15 @@ export default class JiaZai extends cc.Component { JiaZai.cachedWinStreakPrefab = prefab; console.log("连胜活动预制体已经准备好"); }); + bundle.load('prefab/Share', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedSharePrefab = prefab; + console.log("分享预制体已经准备好"); + }); + }); } @@ -285,8 +297,8 @@ export default class JiaZai extends cc.Component { } else { // this.closeLoad(); - this.isShow = false; - cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, true); + // this.isShow = false; + // cc.fx.GameConfig.LEVEL_INFO_init(true, 1000, true); } } else { @@ -1114,7 +1126,7 @@ export default class JiaZai extends cc.Component { } else { // 非第一次使用,直接激活节点 this.monthlyCardNode.active = true; - this.monthlyCardNode.zIndex = 1000; + this.monthlyCardNode.zIndex = 799; this.monthlyCardNode.getComponent("monthlyCard").init(); this.monthlyCardNode.getComponent("monthlyCard").juwai = true; } @@ -1605,6 +1617,80 @@ export default class JiaZai extends cc.Component { } } + openShare() { + this.openLoad(); + let otherNickName = null; + let otherAvatarUrl = null; + let otherKuang = "0"; + let otherLevel = cc.fx.GameConfig.GM_INFO.otherLevel; + Utils.getUserInfoByID((data) => { + if (data.code == 1) { + console.log("获取好友信息:", data.data.name); + if (data.data.name) { + otherNickName = data.data.name; + } + if (data.data.useravatar) { + otherAvatarUrl = data.data.useravatar; + } + if (data.data.useravatarIcon) { + otherKuang = data.data.useravatarIcon; + } + let shuju = { + otherNickName: otherNickName, + otherAvatarUrl: otherAvatarUrl, + otherKuang: otherKuang, + otherLevel: otherLevel, + } + // 预加载 活动 预制体 + console.log("好友名字:", otherNickName); + if (!JiaZai.cachedActionPrefab) { + cc.assetManager.loadBundle('action_bundle', (err: Error, bundle: cc.AssetManager.Bundle) => { + if (err) { + cc.error(err.message || err); + return; + } + bundle.load('prefab/Share', cc.Prefab, (err: Error, prefab: cc.Prefab) => { + if (err) { + cc.error(err.message || err); + return; + } + JiaZai.cachedSharePrefab = prefab; + console.log("2222分享预制体已经准备好", shuju); + if (!this.ShareNode) { + this.ShareNode = cc.instantiate(JiaZai.cachedSharePrefab); + if (this.node && this.ShareNode) + this.node.addChild(this.ShareNode); + this.ShareNode.zIndex = 800; + this.ShareNode.getComponent("shareFriend").init(true, shuju); + } else { + this.ShareNode.active = true; + this.ShareNode.getComponent("shareFriend").init(false, shuju); + } + }); + + + }); + } + else { + if (!this.ShareNode) { + this.ShareNode = cc.instantiate(JiaZai.cachedSharePrefab); + if (this.node && this.ShareNode) + this.node.addChild(this.ShareNode); + this.ShareNode.zIndex = 800; + this.ShareNode.getComponent("Share").init(true, shuju); + } else { + this.ShareNode.active = true; + this.ShareNode.getComponent("Share").init(false, shuju); + } + } + } + else { + this.closeLoad(); + MiniGameSdk.API.showToast("网络异常,获取好友帮玩信息失败,请从帮玩链接重新进入游戏"); + } + }) + } + rewarded() { Utils.monthGetReward((data) => { if (data.data == null) { @@ -1806,7 +1892,7 @@ export default class JiaZai extends cc.Component { level: level //被帮助关卡等级 } cc.fx.GameTool.shushu_Track("stage_help", eventData); //帮助通关 - this.openLoad(); + this.openShare(); } else { cc.fx.GameConfig.GM_INFO.otherLevel = 0; @@ -1841,19 +1927,19 @@ export default class JiaZai extends cc.Component { //检测当日是否有分享行为,用不用主动获取分享关卡信息 checkShare() { const otherInfo = cc.fx.StorageMessage.getStorage("otherLevel"); - // console.log("分享信息:", otherInfo); + console.log("分享信息:", otherInfo); if (otherInfo != null && otherInfo != undefined && otherInfo != "") { const currentTime = Date.now(); const timeDifference = currentTime - otherInfo.timeStamp; const oneDayInMilliseconds = 24 * 60 * 60 * 1000; - // console.log("计入时间计算"); + console.log("计入时间计算"); if (timeDifference > oneDayInMilliseconds || cc.fx.GameConfig.GM_INFO.level >= otherInfo.otherLevel) { - // console.log("_______________检查分享信息过期或已获取过,清除存储信息"); + console.log("_______________检查分享信息过期或已获取过,清除存储信息"); cc.fx.StorageMessage.setStorage("otherLevel", null); } else { // if ((cc.fx.GameConfig.GM_INFO.level + 1) == otherInfo.otherLevel) { - // console.log("_______________有分享信息,并且符合条件"); + console.log("_______________有分享信息,并且符合条件"); Utils.getShareLevel((res) => { if (res.code == 1 && res.data) { if (res.data.length > 0) { diff --git a/assets/Script/Map.ts b/assets/Script/Map.ts index 01890e0..e905f58 100644 --- a/assets/Script/Map.ts +++ b/assets/Script/Map.ts @@ -475,6 +475,14 @@ export default class MapConroler extends cc.Component { } initMap() { + if (cc.fx.GameConfig.GM_INFO.otherLevel > 0) { + this.node.parent.getChildByName("Top").getChildByName("shareBtn").active = false; + this.node.parent.parent.parent.getChildByName("Pause").getChildByName("share").active = false; + } + else { + this.node.parent.getChildByName("Top").getChildByName("shareBtn").active = true; + this.node.parent.parent.parent.getChildByName("Pause").getChildByName("share").active = true; + } if (cc.fx.GameConfig.GM_INFO.winStreak < 10 || cc.fx.GameConfig.GM_INFO.otherLevel > 0) { this.winStreakBtn.node.active = false; this.destroyBtn.node.getChildByName("mul10").opacity = 255; diff --git a/assets/Script/SceneManager.ts b/assets/Script/SceneManager.ts index b1b462c..dc6b302 100644 --- a/assets/Script/SceneManager.ts +++ b/assets/Script/SceneManager.ts @@ -582,32 +582,39 @@ export default class SceneManager extends cc.Component { } shareFriend() { - let shareTips = this.node.getChildByName("Game").getChildByName("Lose").getChildByName("share_tips"); - let closeBtn = shareTips.getChildByName("closeBtn"); - let shareBtn = shareTips.getChildByName("shareBtn"); - let checkbox = shareTips.getChildByName("checkbox"); - // let isCheckboxChecked = cc.sys.localStorage.getItem("share_checkbox_state"); - let isCheckboxChecked = cc.fx.StorageMessage.getStorage("share_checkbox_state"); + if (this.node.getChildByName("Game").getChildByName("Lose").active == true) { + let shareTips = this.node.getChildByName("Game").getChildByName("Lose").getChildByName("share_tips"); - if (isCheckboxChecked == 0 || isCheckboxChecked == "" || isCheckboxChecked == null || isCheckboxChecked == undefined) { - shareTips.active = true; - } else { + // let isCheckboxChecked = cc.sys.localStorage.getItem("share_checkbox_state"); + let isCheckboxChecked = cc.fx.StorageMessage.getStorage("share_checkbox_state"); + + if (isCheckboxChecked == 0 || isCheckboxChecked == "" || isCheckboxChecked == null || isCheckboxChecked == undefined) { + shareTips.active = true; + } else { + this.shareFriend2(); + } + } + else { this.shareFriend2(); } } shareFriend2() { - let shareTips = this.node.getChildByName("Game").getChildByName("Lose").getChildByName("share_tips"); - if (shareTips.active) { - shareTips.active = false; - let checkbox = shareTips.getChildByName("checkbox"); + if (this.node.getChildByName("Game").getChildByName("Lose").active == true) { + let shareTips = this.node.getChildByName("Game").getChildByName("Lose").getChildByName("share_tips"); + if (shareTips.active) { + shareTips.active = false; + let checkbox = shareTips.getChildByName("checkbox"); - let checkboxSelect = 0; - if (checkbox.getComponent(cc.Toggle).isChecked) { - checkboxSelect = 1; + let checkboxSelect = 0; + if (checkbox.getComponent(cc.Toggle).isChecked) { + checkboxSelect = 1; + } + cc.fx.StorageMessage.setStorage("share_checkbox_state", checkboxSelect); } - cc.fx.StorageMessage.setStorage("share_checkbox_state", checkboxSelect); + } + else { } if (this.share_time) { this.share_time = false; diff --git a/assets/Script/module/Pay/Utils.ts b/assets/Script/module/Pay/Utils.ts index 7a4bacf..1155d88 100644 --- a/assets/Script/module/Pay/Utils.ts +++ b/assets/Script/module/Pay/Utils.ts @@ -894,9 +894,9 @@ export default class Utils { //@ts-ignore if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) { Utils.POST("getShareLv", data, res => { - //console.log("获得shareLvSuccess数据:", res); + console.log("获得shareLvSuccess数据:", res); if (res.code === 1) { - //console.log("服务器:分享帮助通过关卡数据成功", res); + console.log("服务器:分享帮助通过关卡数据成功", res); if (callBack) callBack(res); } else { if (callBack) callBack(res); @@ -1422,4 +1422,25 @@ export default class Utils { }); } } + + static getUserInfoByID(callBack) { + //@ts-ignore + if ((typeof wx !== 'undefined' && wx !== null) || (typeof tt !== 'undefined' && tt !== null)) { + let uid = cc.fx.GameConfig.GM_INFO.otherUid; + //旧的读取数据设置数据方法,以强联网为主 + let setData = { + uid: uid + } + Utils.POST("getUserInfoByID", setData, res => { + // //console.log("获得monthGetReward数据:", res); + if (res.code === 1) { + console.log("服务器:获得分享人头像昵称'✅ ", res); + if (callBack) callBack(res); + } else { + console.log("服务器:获得分享人头像昵称'❌ ", res); + if (callBack) callBack(res); + } + }); + } + } } diff --git a/assets/Script/prop/Lock.ts b/assets/Script/prop/Lock.ts index 6581bd2..4cfea93 100644 --- a/assets/Script/prop/Lock.ts +++ b/assets/Script/prop/Lock.ts @@ -134,8 +134,8 @@ export default class Lock extends cc.Component { reduce() { this.time -= 1; - NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("time"), false); - cc.fx.GameTool.numberScaleAction(this.node.getChildByName("time")); + NumberToImage.numberToImageNodes(this.time, 20, 8, "lock_", this.node.getChildByName("icon").getChildByName("time"), false); + cc.fx.GameTool.numberScaleAction(this.node.getChildByName("icon").getChildByName("time")); if (this.time <= 0) { if (this.type == "block") { if (this.node.parent) this.node.parent.getComponent("Block").type = 0; diff --git a/assets/action_bundle/img/share.meta b/assets/action_bundle/img/share.meta new file mode 100644 index 0000000..4fae836 --- /dev/null +++ b/assets/action_bundle/img/share.meta @@ -0,0 +1,13 @@ +{ + "ver": "1.1.3", + "uuid": "eb6669f0-70c9-446f-a77e-2c13e6bd3102", + "importer": "folder", + "isBundle": false, + "bundleName": "", + "priority": 1, + "compressionType": {}, + "optimizeHotUpdate": {}, + "inlineSpriteFrames": {}, + "isRemoteBundle": {}, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/img/share/shareBG.png b/assets/action_bundle/img/share/shareBG.png new file mode 100644 index 0000000000000000000000000000000000000000..ee00ce668e2df206b1c649bb4e9bf30be90ad097 GIT binary patch literal 11855 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 literal 0 HcmV?d00001 diff --git a/assets/action_bundle/img/share/shareTitle.png.meta b/assets/action_bundle/img/share/shareTitle.png.meta new file mode 100644 index 0000000..85a7309 --- /dev/null +++ b/assets/action_bundle/img/share/shareTitle.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "766944d5-d47c-4cbd-ac18-105514e53972", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 260, + "height": 65, + "platformSettings": {}, + "subMetas": { + "shareTitle": { + "ver": "1.0.6", + "uuid": "5bf6daf8-5aed-47f4-b8a1-026e2ba8cde0", + "importer": "sprite-frame", + "rawTextureUuid": "766944d5-d47c-4cbd-ac18-105514e53972", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 260, + "height": 65, + "rawWidth": 260, + "rawHeight": 65, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/share/share_dian.png b/assets/action_bundle/img/share/share_dian.png new file mode 100644 index 0000000000000000000000000000000000000000..295a9603c9ff6ed7013c53e1499250f9056d96e4 GIT binary patch literal 406 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UREa{HEjtmSN`?>!lvI6IlP!i-9eEO5So5LaX?mI^hcO6lDoqWcgx$~5UCu5S`=i5v# zelnckxpfApc9W-zV~EE2+R4|2niT|G&Cd$$4syBm?|-<|F@eQQ&s!zWT`1E}*k53H z^_E0zc++po8*HZDe-zWd>Pt7Vdu%?P-mM<>@af?Pti|_J$__JlKYQX~z#(a0bc|yz zt6p+Yk%Yl1hTs^#4}GV_U+lP&@aWQ#)S}x@T31~Op5*E=#lP{bQ0sQ(me}`EX)lFx z%hKv!1dupe~PfPkGFubCI)t0bS4F M>FVdQ&MBb@0MB5-aR2}S literal 0 HcmV?d00001 diff --git a/assets/action_bundle/img/share/share_dian.png.meta b/assets/action_bundle/img/share/share_dian.png.meta new file mode 100644 index 0000000..50bc15c --- /dev/null +++ b/assets/action_bundle/img/share/share_dian.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "be066ea2-fe0c-4bf7-a3c3-fc80bc746d22", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 28, + "height": 28, + "platformSettings": {}, + "subMetas": { + "share_dian": { + "ver": "1.0.6", + "uuid": "a7c8232f-778c-4ee4-825b-4c626cbe9933", + "importer": "sprite-frame", + "rawTextureUuid": "be066ea2-fe0c-4bf7-a3c3-fc80bc746d22", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 28, + "height": 28, + "rawWidth": 28, + "rawHeight": 28, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/share/share_getBtn.png b/assets/action_bundle/img/share/share_getBtn.png new file mode 100644 index 0000000000000000000000000000000000000000..663680eeec33c776a95930ec31f803d07eb33b28 GIT binary patch literal 4772 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 literal 0 HcmV?d00001 diff --git a/assets/action_bundle/img/share/share_getBtn.png.meta b/assets/action_bundle/img/share/share_getBtn.png.meta new file mode 100644 index 0000000..1a780a4 --- /dev/null +++ b/assets/action_bundle/img/share/share_getBtn.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "bba5414e-af50-4671-abdf-79038741b308", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 556, + "height": 157, + "platformSettings": {}, + "subMetas": { + "share_getBtn": { + "ver": "1.0.6", + "uuid": "4d0555ca-53af-482b-a155-31611cd9ec9c", + "importer": "sprite-frame", + "rawTextureUuid": "bba5414e-af50-4671-abdf-79038741b308", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 556, + "height": 157, + "rawWidth": 556, + "rawHeight": 157, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/img/share/share_wenzi.png b/assets/action_bundle/img/share/share_wenzi.png new file mode 100644 index 0000000000000000000000000000000000000000..5b7bdaadfe6433b2c960000c73049ac1128da568 GIT binary patch literal 2222 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 Q=P)pMy85}Sb4q9e0L3Cd9smFU literal 0 HcmV?d00001 diff --git a/assets/action_bundle/img/share/share_x.png.meta b/assets/action_bundle/img/share/share_x.png.meta new file mode 100644 index 0000000..61fe2e4 --- /dev/null +++ b/assets/action_bundle/img/share/share_x.png.meta @@ -0,0 +1,38 @@ +{ + "ver": "2.3.7", + "uuid": "e72d2d12-30fc-4953-98a7-08ef94b56d64", + "importer": "texture", + "type": "sprite", + "wrapMode": "clamp", + "filterMode": "bilinear", + "premultiplyAlpha": false, + "genMipmaps": false, + "packable": true, + "width": 69, + "height": 68, + "platformSettings": {}, + "subMetas": { + "share_x": { + "ver": "1.0.6", + "uuid": "c4912a0d-9bac-4f41-8a63-b2e0f3327d68", + "importer": "sprite-frame", + "rawTextureUuid": "e72d2d12-30fc-4953-98a7-08ef94b56d64", + "trimType": "auto", + "trimThreshold": 1, + "rotated": false, + "offsetX": 0, + "offsetY": 0, + "trimX": 0, + "trimY": 0, + "width": 69, + "height": 68, + "rawWidth": 69, + "rawHeight": 68, + "borderTop": 0, + "borderBottom": 0, + "borderLeft": 0, + "borderRight": 0, + "subMetas": {} + } + } +} \ No newline at end of file diff --git a/assets/action_bundle/prefab/Share.prefab b/assets/action_bundle/prefab/Share.prefab new file mode 100644 index 0000000..1bc9439 --- /dev/null +++ b/assets/action_bundle/prefab/Share.prefab @@ -0,0 +1,2181 @@ +[ + { + "__type__": "cc.Prefab", + "_name": "", + "_objFlags": 0, + "_native": "", + "data": { + "__id__": 1 + }, + "optimizationPolicy": 0, + "asyncLoadAssets": false, + "readonly": false + }, + { + "__type__": "cc.Node", + "_name": "Share", + "_objFlags": 0, + "_parent": null, + "_children": [ + { + "__id__": 2 + }, + { + "__id__": 7 + }, + { + "__id__": 10 + }, + { + "__id__": 17 + }, + { + "__id__": 20 + }, + { + "__id__": 23 + }, + { + "__id__": 26 + }, + { + "__id__": 29 + }, + { + "__id__": 35 + }, + { + "__id__": 38 + }, + { + "__id__": 41 + }, + { + "__id__": 44 + }, + { + "__id__": 47 + }, + { + "__id__": 50 + }, + { + "__id__": 53 + } + ], + "_active": true, + "_components": [ + { + "__id__": 58 + }, + { + "__id__": 59 + } + ], + "_prefab": { + "__id__": 60 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 540, + 960, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "New Sprite(Splash)", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 3 + }, + { + "__id__": 4 + }, + { + "__id__": 5 + } + ], + "_prefab": { + "__id__": 6 + }, + "_opacity": 150, + "_color": { + "__type__": "cc.Color", + "r": 0, + "g": 0, + "b": 0, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 1080, + "height": 1920 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.BlockInputEvents", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "_id": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 2 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 100, + "_originalHeight": 100, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "06u5gBe+ZNNb/XgLY5QmNY", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 8 + } + ], + "_prefab": { + "__id__": 9 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 880, + "height": 1402 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 7 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "027a1bc7-6d3a-46c6-a949-c2f76487035e" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6f+QSK3xNLII8M56OBUwth", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shareBtn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 11 + } + ], + "_active": true, + "_components": [ + { + "__id__": 14 + } + ], + "_prefab": { + "__id__": 16 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 200 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 348.263, + 628, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "share_x", + "_objFlags": 0, + "_parent": { + "__id__": 10 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 12 + } + ], + "_prefab": { + "__id__": 13 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 69, + "height": 68 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 11 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c4912a0d-9bac-4f41-8a63-b2e0f3327d68" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e2MUgJAFdM4bL+hl9Cxaoi", + "sync": false + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 10 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 15 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 10 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "62af9KEuDlCdo/V4yJ3Ehju", + "handler": "closeBtn", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9bn8ybLeJLgKWh/oHNuFim", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "shareTitle", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 18 + } + ], + "_prefab": { + "__id__": 19 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 260, + "height": 65 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 650.163, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 17 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "5bf6daf8-5aed-47f4-b8a1-026e2ba8cde0" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ce3xayZ+tL9IQesHNjz0qG", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "share_wenzi", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 21 + } + ], + "_prefab": { + "__id__": 22 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 447, + "height": 46 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -284.67, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 20 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4179e049-07eb-4773-b07d-50804e3525dc" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70xJ0W58tI7qQ9GqRfZ/pE", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "level", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 25 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 0, + "height": 75.6 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -99.37, + -291.776, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 23 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "", + "_N$string": "", + "_fontSize": 60, + "_lineHeight": 60, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "dfL4Ow4lBO/LSzF/OCrnpZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "kuang", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 27 + } + ], + "_prefab": { + "__id__": 28 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 300, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 26 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "c2b141f2-de71-4481-b9ee-440c893c28b3" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c4VYdECfJEiJqEIKJPjwqM", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "iphone", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 30 + } + ], + "_active": true, + "_components": [ + { + "__id__": 33 + } + ], + "_prefab": { + "__id__": 34 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 304.857, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "_parent": { + "__id__": 29 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 31 + } + ], + "_prefab": { + "__id__": 32 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 230, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -5.483, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 30 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a10b3eca-6801-4c7d-9102-b2a50ed87c44" + }, + "_type": 0, + "_sizeMode": 0, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c3ajVa85VPxr8KbFOayTFk", + "sync": false + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 29 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_spriteFrame": { + "__uuid__": "c2b141f2-de71-4481-b9ee-440c893c28b3" + }, + "_type": 2, + "_segments": 64, + "_N$alphaThreshold": 0.1, + "_N$inverted": false, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c9pcijvCpMuZ3ZnepL66wA", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "name", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 36 + } + ], + "_prefab": { + "__id__": 37 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 160, + "height": 50.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 132.501, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 35 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_string": "你的好友", + "_N$string": "你的好友", + "_fontSize": 40, + "_lineHeight": 40, + "_enableWrapText": true, + "_N$file": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_batchAsBitmap": false, + "_styleFlags": 1, + "_underlineHeight": 0, + "_N$horizontalAlign": 1, + "_N$verticalAlign": 0, + "_N$fontFamily": "Arial", + "_N$overflow": 0, + "_N$cacheMode": 0, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5vDPGLf9LqbQXrej4mVR+", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 39 + } + ], + "_prefab": { + "__id__": 40 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + 6.974, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 38 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7c8232f-778c-4ee4-825b-4c626cbe9933" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fagY/CPsxOk4QQYVdw2G/g", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 42 + } + ], + "_prefab": { + "__id__": 43 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -50, + 6.974, + 0, + 0, + 0, + 0, + 1, + 0.75, + 0.75, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 41 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7c8232f-778c-4ee4-825b-4c626cbe9933" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2XiCnasZPFbbjgyMdrd1y", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 46 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 50, + 6.974, + 0, + 0, + 0, + 0, + 1, + 0.75, + 0.75, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 44 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7c8232f-778c-4ee4-825b-4c626cbe9933" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e7fHYPZfdJeoEyibfnXziZ", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 48 + } + ], + "_prefab": { + "__id__": 49 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + -100, + 6.974, + 0, + 0, + 0, + 0, + 1, + 0.75, + 0.75, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 47 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7c8232f-778c-4ee4-825b-4c626cbe9933" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "6dnsmhoaxDJpjadbAZkTvu", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "New Sprite", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 51 + } + ], + "_prefab": { + "__id__": 52 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 28, + "height": 28 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 100, + 6.974, + 0, + 0, + 0, + 0, + 1, + 0.75, + 0.75, + 1 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 50 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "a7c8232f-778c-4ee4-825b-4c626cbe9933" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5el6YsdOFP46ua0UCpWtqS", + "sync": false + }, + { + "__type__": "cc.Node", + "_name": "share_getBtn", + "_objFlags": 0, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 54 + }, + { + "__id__": 55 + } + ], + "_prefab": { + "__id__": 57 + }, + "_opacity": 255, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 556, + "height": 157 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_trs": { + "__type__": "TypedArray", + "ctor": "Float64Array", + "array": [ + 0, + -476.601, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0 + ] + }, + "_eulerAngles": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_skewX": 0, + "_skewY": 0, + "_is3DNode": false, + "_groupIndex": 0, + "groupIndex": 0, + "_id": "" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_materials": [ + { + "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432" + } + ], + "_srcBlendFactor": 770, + "_dstBlendFactor": 771, + "_spriteFrame": { + "__uuid__": "4d0555ca-53af-482b-a155-31611cd9ec9c" + }, + "_type": 0, + "_sizeMode": 1, + "_fillType": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 53 + }, + "_enabled": true, + "_normalMaterial": null, + "_grayMaterial": null, + "duration": 0.1, + "zoomScale": 1.1, + "clickEvents": [ + { + "__id__": 56 + } + ], + "_N$interactable": true, + "_N$enableAutoGrayEffect": false, + "_N$transition": 3, + "transition": 3, + "_N$normalColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "pressedColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_N$hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "hoverColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_N$disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_N$normalSprite": null, + "_N$pressedSprite": null, + "pressedSprite": null, + "_N$hoverSprite": null, + "hoverSprite": null, + "_N$disabledSprite": null, + "_N$target": { + "__id__": 53 + }, + "_id": "" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "62af9KEuDlCdo/V4yJ3Ehju", + "handler": "helpBtn", + "customEventData": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51wuHSM6FC+JqCLjm4iRju", + "sync": false + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "alignMode": 1, + "_target": null, + "_alignFlags": 45, + "_left": 0, + "_right": 0, + "_top": 0, + "_bottom": 0, + "_verticalCenter": 0, + "_horizontalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 0, + "_originalHeight": 0, + "_id": "" + }, + { + "__type__": "62af9KEuDlCdo/V4yJ3Ehju", + "_name": "", + "_objFlags": 0, + "node": { + "__id__": 1 + }, + "_enabled": true, + "ui": { + "__uuid__": "fd85df88-648f-4407-bab2-da4f15478fb9" + }, + "_id": "" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "", + "sync": false + } +] \ No newline at end of file diff --git a/assets/action_bundle/prefab/Share.prefab.meta b/assets/action_bundle/prefab/Share.prefab.meta new file mode 100644 index 0000000..c88b1a5 --- /dev/null +++ b/assets/action_bundle/prefab/Share.prefab.meta @@ -0,0 +1,9 @@ +{ + "ver": "1.3.2", + "uuid": "b28790fb-50a0-4b31-8543-9c0a17693de0", + "importer": "prefab", + "optimizationPolicy": "AUTO", + "asyncLoadAssets": false, + "readonly": false, + "subMetas": {} +} \ No newline at end of file diff --git a/assets/action_bundle/script/shareFriend.ts b/assets/action_bundle/script/shareFriend.ts new file mode 100644 index 0000000..2e43251 --- /dev/null +++ b/assets/action_bundle/script/shareFriend.ts @@ -0,0 +1,117 @@ +import MapConroler from "../../Script/Map"; + +const { ccclass, property } = cc._decorator; + +@ccclass +export default class shareFriend extends cc.Component { + + @property(cc.SpriteAtlas) + ui: cc.SpriteAtlas = null; + + onLoad() { + + } + + start() { + + } + + init(type, shuju) { + console.log("111111111", shuju); + this.node.getChildByName("level").getComponent(cc.Label).string = shuju.otherLevel + ""; + + let useravatarIcon = shuju.otherKuang; + useravatarIcon = "kuang_" + (parseInt(useravatarIcon) + 1); + console.log("3333333", useravatarIcon); + if (this.node.getChildByName("kuang")) + this.node.getChildByName("kuang").getComponent(cc.Sprite).spriteFrame = + this.ui.getSpriteFrame(useravatarIcon); + + + + if (shuju.otherAvatarUrl == "" || shuju.otherAvatarUrl == null || shuju.otherAvatarUrl == undefined + ) { + console.log("头像为空", shuju.otherAvatarUrl); + } + else if (shuju.otherAvatarUrl == "0" || shuju.otherAvatarUrl == "1" || shuju.otherAvatarUrl == "2" + || shuju.otherAvatarUrl == "3" || shuju.otherAvatarUrl == "4" || shuju.otherAvatarUrl == "5" + || shuju.otherAvatarUrl == "6" || shuju.otherAvatarUrl == "7" || shuju.otherAvatarUrl == "8" + || shuju.otherAvatarUrl == "9" || shuju.otherAvatarUrl == "10" || shuju.otherAvatarUrl == "11" + || shuju.otherAvatarUrl == "12" || shuju.otherAvatarUrl == "13" || shuju.otherAvatarUrl == "14" + || shuju.otherAvatarUrl == "15" || shuju.otherAvatarUrl == "16" || shuju.otherAvatarUrl == "17") { + let useravatar = shuju.otherAvatarUrl; + let useravatarTemp = "icon_" + useravatar; + console.log("用户头像:", useravatarTemp); + console.log("44444444"); + if (this.node.getChildByName("iphone")) + this.node.getChildByName("iphone").getChildByName("icon").getComponent(cc.Sprite).spriteFrame = this.ui.getSpriteFrame(useravatarTemp); + } + + else this.setPic(shuju.otherAvatarUrl); + + + let name = shuju.otherNickName; + if (name == "user" || name == null) name = "你的好友"; + else { + if (shuju.otherNickName.length >= 7) + name = cc.fx.GameTool.subName(shuju.otherNickName, 7); + } + + console.log("7777777"); + + if (this.node.getChildByName("name")) { + console.log("8888888", name); + this.node.getChildByName("name").getComponent(cc.Label).string = name + ""; + } + + + } + + helpBtn() { + const canvasTemp = cc.find("Canvas"); // 假设 Canvas 节点 + if (canvasTemp) { + const JiaZai = canvasTemp.getComponent("JiaZai"); + if (JiaZai) { + JiaZai.startGame(); + + } + } + } + + closeBtn() { + this.node.active = false; + } + public setPic(url) { + // console.log("设置头像:", this.data.useravatar); + var self = this; + console.log("6666666", url); + self.node.getChildByName("iphone").getChildByName("icon").active = false; + + + cc.assetManager.loadRemote(url, { ext: '.png' }, (err, texture: cc.Texture2D) => { + if (texture) { + console.log("设置头像成功", self.node.getChildByName("iphone")); + + + if (self.node.getChildByName("iphone")) { + console.log("okokokokokok") + var sprite = self.node.getChildByName("iphone").getChildByName("icon").getComponent(cc.Sprite); + sprite.spriteFrame = new cc.SpriteFrame(texture); + console.log("最终设置成功") + self.node.getChildByName("iphone").getChildByName("icon").active = true; + } + } + else { + self.node.getChildByName("iphone").getChildByName("icon").active = true; + console.log("设置头像失败", url); + console.log(err, texture) + } + }) + } + + + + update() { + + } +} \ No newline at end of file diff --git a/assets/action_bundle/script/shareFriend.ts.meta b/assets/action_bundle/script/shareFriend.ts.meta new file mode 100644 index 0000000..25e2f59 --- /dev/null +++ b/assets/action_bundle/script/shareFriend.ts.meta @@ -0,0 +1,10 @@ +{ + "ver": "1.1.0", + "uuid": "62af9284-b839-4276-8fd5-e322771218ee", + "importer": "typescript", + "isPlugin": false, + "loadPluginInWeb": true, + "loadPluginInNative": true, + "loadPluginInEditor": false, + "subMetas": {} +} \ No newline at end of file