更新购买体力,更新所有金币不足的地方自动弹出商城

This commit is contained in:
YZ\249929363 2025-07-03 17:46:52 +08:00
parent 7855936922
commit dda758bc4c
7 changed files with 252 additions and 297 deletions

View File

@ -11753,7 +11753,7 @@
"__id__": 313 "__id__": 313
} }
], ],
"_active": false, "_active": true,
"_components": [], "_components": [],
"_prefab": null, "_prefab": null,
"_opacity": 255, "_opacity": 255,

View File

@ -268,6 +268,9 @@ stopHeathTimeCutDown() {
cc.fx.AudioManager._instance.playEffect("anniu_Big", null); cc.fx.AudioManager._instance.playEffect("anniu_Big", null);
if (cc.fx.GameConfig.GM_INFO.hp < 1) { if (cc.fx.GameConfig.GM_INFO.hp < 1) {
MiniGameSdk.API.showToast("体力值不足"); MiniGameSdk.API.showToast("体力值不足");
setTimeout(() => {
this.openHeath();
}, 500);
return; return;
} }
if (this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl")._touch) { if (this.node.getChildByName("Load").getChildByName("startBtn").getComponent("btnControl")._touch) {

View File

@ -1332,10 +1332,10 @@ export default class MapConroler extends cc.Component {
if (wincoin) { if (wincoin) {
wincoin.updateWinCoin(); wincoin.updateWinCoin();
} else { } else {
console.warn("JiaZai 组件未找到"); console.log("JiaZai 组件未找到");
} }
} else { } else {
console.warn("JiaZai 节点未找到"); console.log("JiaZai 节点未找到");
} }
this.check_NewMode(); this.check_NewMode();
setTimeout(() => { setTimeout(() => {
@ -1464,7 +1464,11 @@ export default class MapConroler extends cc.Component {
// console.log("自身金币:",cc.fx.GameConfig.GM_INFO.coin,"消耗金币:",coin); // console.log("自身金币:",cc.fx.GameConfig.GM_INFO.coin,"消耗金币:",coin);
if (cc.fx.GameConfig.GM_INFO.coin < Math.abs(coin)) { if (cc.fx.GameConfig.GM_INFO.coin < Math.abs(coin)) {
MiniGameSdk.API.showToast("金币不足,无法加时间"); MiniGameSdk.API.showToast("金币不足,无法加时间");
setTimeout(() => {
this.openShop();
this.reviewState = false; this.reviewState = false;
}, 500);
return; return;
} }
else { else {
@ -1665,7 +1669,11 @@ export default class MapConroler extends cc.Component {
if (cc.fx.GameConfig.GM_INFO.freezeAmount < 1) { if (cc.fx.GameConfig.GM_INFO.freezeAmount < 1) {
if (cc.fx.GameConfig.GM_INFO.coin < 1500) { if (cc.fx.GameConfig.GM_INFO.coin < 1500) {
MiniGameSdk.API.showToast("金币不足,无法购买道具"); MiniGameSdk.API.showToast("金币不足,无法购买道具");
setTimeout(() => {
this.openShop();
freezeBtn.getComponent("btnControl").setTouch(true); freezeBtn.getComponent("btnControl").setTouch(true);
}, 500);
return; return;
} }
this.node.parent.parent.getChildByName("propWindow").active = true; this.node.parent.parent.getChildByName("propWindow").active = true;
@ -1783,7 +1791,11 @@ export default class MapConroler extends cc.Component {
if (cc.fx.GameConfig.GM_INFO.hammerAmount < 1) { if (cc.fx.GameConfig.GM_INFO.hammerAmount < 1) {
if (cc.fx.GameConfig.GM_INFO.coin < 1500) { if (cc.fx.GameConfig.GM_INFO.coin < 1500) {
MiniGameSdk.API.showToast("金币不足,无法购买道具"); MiniGameSdk.API.showToast("金币不足,无法购买道具");
setTimeout(() => {
this.openShop();
hammerBtn.getComponent("btnControl").setTouch(true); hammerBtn.getComponent("btnControl").setTouch(true);
}, 500);
return; return;
} }
this.node.parent.parent.getChildByName("propWindow").active = true; this.node.parent.parent.getChildByName("propWindow").active = true;
@ -1822,6 +1834,9 @@ export default class MapConroler extends cc.Component {
buyMagic() { buyMagic() {
if (cc.fx.GameConfig.GM_INFO.coin < 1500) { if (cc.fx.GameConfig.GM_INFO.coin < 1500) {
MiniGameSdk.API.showToast("金币不足,无法购买道具"); MiniGameSdk.API.showToast("金币不足,无法购买道具");
setTimeout(() => {
this.openShop();
}, 500);
return; return;
} }
cc.fx.GameTool.buyProp(2003, this.handleBuySuccess.bind(this, "magicAmount")); cc.fx.GameTool.buyProp(2003, this.handleBuySuccess.bind(this, "magicAmount"));
@ -1830,6 +1845,9 @@ export default class MapConroler extends cc.Component {
buyHammer() { buyHammer() {
if (cc.fx.GameConfig.GM_INFO.coin < 1500) { if (cc.fx.GameConfig.GM_INFO.coin < 1500) {
MiniGameSdk.API.showToast("金币不足,无法购买道具"); MiniGameSdk.API.showToast("金币不足,无法购买道具");
setTimeout(() => {
this.openShop();
}, 500);
return; return;
} }
cc.fx.GameTool.buyProp(2002, this.handleBuySuccess.bind(this, "hammerAmount")); cc.fx.GameTool.buyProp(2002, this.handleBuySuccess.bind(this, "hammerAmount"));
@ -1838,11 +1856,28 @@ export default class MapConroler extends cc.Component {
buyFreeze() { buyFreeze() {
if (cc.fx.GameConfig.GM_INFO.coin < 1500) { if (cc.fx.GameConfig.GM_INFO.coin < 1500) {
MiniGameSdk.API.showToast("金币不足,无法购买道具"); MiniGameSdk.API.showToast("金币不足,无法购买道具");
setTimeout(() => {
this.openShop();
}, 500);
return; return;
} }
cc.fx.GameTool.buyProp(2001, this.handleBuySuccess.bind(this, "freezeAmount")); cc.fx.GameTool.buyProp(2001, this.handleBuySuccess.bind(this, "freezeAmount"));
} }
openShop(){
const winCOIN = cc.find("Canvas"); // 假设 Canvas 节点
if (winCOIN) {
const wincoin = winCOIN.getComponent(SceneManager);
if (wincoin) {
wincoin.openShop();
} else {
console.log("JiaZai 组件未找到");
}
} else {
console.log("JiaZai 节点未找到");
}
}
//使用魔法棒随机消除两个方块 //使用魔法棒随机消除两个方块
useMagic() { useMagic() {
if (this.node.parent.getChildByName("Ice").active == true || this.hammer == true if (this.node.parent.getChildByName("Ice").active == true || this.hammer == true
@ -1855,7 +1890,11 @@ export default class MapConroler extends cc.Component {
if (cc.fx.GameConfig.GM_INFO.magicAmount < 1) { if (cc.fx.GameConfig.GM_INFO.magicAmount < 1) {
if (cc.fx.GameConfig.GM_INFO.coin < 1500) { if (cc.fx.GameConfig.GM_INFO.coin < 1500) {
MiniGameSdk.API.showToast("金币不足,无法购买道具"); MiniGameSdk.API.showToast("金币不足,无法购买道具");
setTimeout(() => {
this.openShop();
magicBtn.getComponent("btnControl").setTouch(true); magicBtn.getComponent("btnControl").setTouch(true);
}, 500);
return; return;
} }
this.node.parent.parent.getChildByName("propWindow").active = true; this.node.parent.parent.getChildByName("propWindow").active = true;

View File

@ -1,5 +1,6 @@
import NumberToImage from "./NumberToImage"; import NumberToImage from "./NumberToImage";
import JiaZai from "./JiaZai"; import JiaZai from "./JiaZai";
import { MiniGameSdk } from "./Sdk/MiniGameSdk";
const { ccclass, property } = cc._decorator; const { ccclass, property } = cc._decorator;
@ -49,6 +50,47 @@ export default class NewClass extends cc.Component {
this.closePop(); this.closePop();
} }
//购买体力
buyHeath(){
//获取当前体力
let curHeath = cc.fx.GameConfig.GM_INFO.hp;
//获取当前金币
let curCoin = cc.fx.GameConfig.GM_INFO.coin;
if(curCoin >= 1000){
cc.fx.GameTool.changeCoin(-1000);
cc.fx.GameTool.setUserHealth(5, (data) => {
cc.fx.GameTool.getHealth(null);
const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
if (parentNode) {
const jiazaiComp = parentNode.getComponent(JiaZai);
if (jiazaiComp) {
jiazaiComp.setHealthInfo();
jiazaiComp.updateCoin();
}
}
this.closePop();
})
}
else{
MiniGameSdk.API.showToast("金币不足,无法购买体力");
setTimeout(() => {
this.openShop();
}, 500);
}
}
//金币不够购买金币
openShop(){
//获取场景中的 JiaZai 组件
const parentNode = cc.find("Canvas"); // 假设 JiaZai 挂在 Canvas 节点
if (parentNode) {
const jiazaiComp = parentNode.getComponent(JiaZai);
if (jiazaiComp) {
jiazaiComp.openShop();
}
}
}
//关闭弹窗 //关闭弹窗
closePop() { closePop() {
//销毁预制体 //销毁预制体

View File

@ -200,7 +200,7 @@ export class GameConfig {
useravatar:"", //用户头像地址 useravatar:"", //用户头像地址
guide: true, //是否有引导 guide: true, //是否有引导
url: "https://api.sparkus.cn",//访问域名 url: "https://api.sparkus.cn",//访问域名
coin: 0, //用户金币 coin: 10000, //用户金币
success: false, //用户游戏成功与否 success: false, //用户游戏成功与否
matchId: null, //用于埋点上传的ID matchId: null, //用于埋点上传的ID
gameState:false, gameState:false,

View File

@ -30,14 +30,14 @@
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 70 "__id__": 72
}, },
{ {
"__id__": 71 "__id__": 73
} }
], ],
"_prefab": { "_prefab": {
"__id__": 72 "__id__": 74
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -570,22 +570,22 @@
"__id__": 41 "__id__": 41
}, },
{ {
"__id__": 52 "__id__": 54
}, },
{ {
"__id__": 55 "__id__": 57
}, },
{ {
"__id__": 63 "__id__": 65
}, },
{ {
"__id__": 66 "__id__": 68
} }
], ],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 69 "__id__": 71
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -1576,10 +1576,13 @@
"_components": [ "_components": [
{ {
"__id__": 50 "__id__": 50
},
{
"__id__": 51
} }
], ],
"_prefab": { "_prefab": {
"__id__": 51 "__id__": 53
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -1612,7 +1615,7 @@
1, 1,
1, 1,
1, 1,
1 0
] ]
}, },
"_eulerAngles": { "_eulerAngles": {
@ -1951,6 +1954,90 @@
}, },
"_id": "" "_id": ""
}, },
{
"__type__": "cc.Button",
"_name": "",
"_objFlags": 0,
"node": {
"__id__": 41
},
"_enabled": true,
"_normalMaterial": null,
"_grayMaterial": null,
"duration": 0.1,
"zoomScale": 1.1,
"clickEvents": [
{
"__id__": 52
}
],
"_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__": 41
},
"_id": ""
},
{
"__type__": "cc.ClickEvent",
"target": {
"__id__": 1
},
"component": "",
"_componentId": "6624fhcuF5DF67gzSViWhRV",
"handler": "buyHeath",
"customEventData": ""
},
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {
@ -1973,11 +2060,11 @@
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 53 "__id__": 55
} }
], ],
"_prefab": { "_prefab": {
"__id__": 54 "__id__": 56
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -2031,7 +2118,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 52 "__id__": 54
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -2080,20 +2167,20 @@
}, },
"_children": [ "_children": [
{ {
"__id__": 56 "__id__": 58
}, },
{ {
"__id__": 59 "__id__": 61
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 61 "__id__": 63
} }
], ],
"_prefab": { "_prefab": {
"__id__": 62 "__id__": 64
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -2147,17 +2234,17 @@
"_name": "tili_x", "_name": "tili_x",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 55 "__id__": 57
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 57 "__id__": 59
} }
], ],
"_prefab": { "_prefab": {
"__id__": 58 "__id__": 60
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -2211,7 +2298,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 56 "__id__": 58
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -2256,13 +2343,13 @@
"_name": "huifuyidian", "_name": "huifuyidian",
"_objFlags": 0, "_objFlags": 0,
"_parent": { "_parent": {
"__id__": 55 "__id__": 57
}, },
"_children": [], "_children": [],
"_active": true, "_active": true,
"_components": [], "_components": [],
"_prefab": { "_prefab": {
"__id__": 60 "__id__": 62
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -2327,7 +2414,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 55 "__id__": 57
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -2378,11 +2465,11 @@
"_active": false, "_active": false,
"_components": [ "_components": [
{ {
"__id__": 64 "__id__": 66
} }
], ],
"_prefab": { "_prefab": {
"__id__": 65 "__id__": 67
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -2436,7 +2523,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 63 "__id__": 65
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -2487,11 +2574,11 @@
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 67 "__id__": 69
} }
], ],
"_prefab": { "_prefab": {
"__id__": 68 "__id__": 70
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -2545,7 +2632,7 @@
"_name": "", "_name": "",
"_objFlags": 0, "_objFlags": 0,
"node": { "node": {
"__id__": 66 "__id__": 68
}, },
"_enabled": true, "_enabled": true,
"_materials": [ "_materials": [
@ -2639,14 +2726,14 @@
}, },
"switchNode": [ "switchNode": [
{ {
"__id__": 52 "__id__": 54
}, },
{ {
"__id__": 55 "__id__": 57
} }
], ],
"timeNode": { "timeNode": {
"__id__": 59 "__id__": 61
}, },
"switchButtons": [ "switchButtons": [
{ {

View File

@ -31,22 +31,19 @@
}, },
{ {
"__id__": 193 "__id__": 193
},
{
"__id__": 199
},
{
"__id__": 203
} }
], ],
"_active": true, "_active": true,
"_components": [ "_components": [
{ {
"__id__": 207 "__id__": 199
},
{
"__id__": 200
} }
], ],
"_prefab": { "_prefab": {
"__id__": 208 "__id__": 201
}, },
"_opacity": 255, "_opacity": 255,
"_color": { "_color": {
@ -70,8 +67,8 @@
"__type__": "TypedArray", "__type__": "TypedArray",
"ctor": "Float64Array", "ctor": "Float64Array",
"array": [ "array": [
0, 540,
0, 960,
0, 0,
0, 0,
0, 0,
@ -129,7 +126,7 @@
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1080, "width": 1080,
"height": 2340 "height": 1920
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
@ -220,8 +217,8 @@
"_alignFlags": 45, "_alignFlags": 45,
"_left": 0, "_left": 0,
"_right": 0, "_right": 0,
"_top": -210, "_top": 0,
"_bottom": -210, "_bottom": 0,
"_verticalCenter": 0, "_verticalCenter": 0,
"_horizontalCenter": 0, "_horizontalCenter": 0,
"_isAbsLeft": true, "_isAbsLeft": true,
@ -276,7 +273,7 @@
"_contentSize": { "_contentSize": {
"__type__": "cc.Size", "__type__": "cc.Size",
"width": 1080, "width": 1080,
"height": 2340 "height": 1920
}, },
"_anchorPoint": { "_anchorPoint": {
"__type__": "cc.Vec2", "__type__": "cc.Vec2",
@ -359,8 +356,8 @@
"_alignFlags": 45, "_alignFlags": 45,
"_left": 0, "_left": 0,
"_right": 0, "_right": 0,
"_top": -210, "_top": 0,
"_bottom": -210, "_bottom": 0,
"_verticalCenter": 0, "_verticalCenter": 0,
"_horizontalCenter": 0, "_horizontalCenter": 0,
"_isAbsLeft": true, "_isAbsLeft": true,
@ -7327,246 +7324,6 @@
"fileId": "efF/+2Hu1I7J8/LZABlnv9", "fileId": "efF/+2Hu1I7J8/LZABlnv9",
"sync": false "sync": false
}, },
{
"__type__": "cc.Node",
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 200
},
{
"__id__": 201
}
],
"_prefab": {
"__id__": 202
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 200
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
1062.507,
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__": 199
},
"_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__": 199
},
"_enabled": true,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "9dgIB3VNlAC4rOLKR63X1h",
"sync": false
},
{
"__type__": "cc.Node",
"_name": "New Sprite",
"_objFlags": 0,
"_parent": {
"__id__": 1
},
"_children": [],
"_active": true,
"_components": [
{
"__id__": 204
},
{
"__id__": 205
}
],
"_prefab": {
"__id__": 206
},
"_opacity": 150,
"_color": {
"__type__": "cc.Color",
"r": 0,
"g": 0,
"b": 0,
"a": 255
},
"_contentSize": {
"__type__": "cc.Size",
"width": 1080,
"height": 200
},
"_anchorPoint": {
"__type__": "cc.Vec2",
"x": 0.5,
"y": 0.5
},
"_trs": {
"__type__": "TypedArray",
"ctor": "Float64Array",
"array": [
0,
-1059.951,
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__": 203
},
"_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__": 203
},
"_enabled": true,
"_id": ""
},
{
"__type__": "cc.PrefabInfo",
"root": {
"__id__": 1
},
"asset": {
"__id__": 0
},
"fileId": "c5IbgSqWhDerwgA0hdz30t",
"sync": false
},
{ {
"__type__": "48bfeZuYFZE2qmgxbW2IigB", "__type__": "48bfeZuYFZE2qmgxbW2IigB",
"_name": "", "_name": "",
@ -7586,6 +7343,33 @@
}, },
"_id": "" "_id": ""
}, },
{
"__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": 1080,
"_originalHeight": 1920,
"_id": ""
},
{ {
"__type__": "cc.PrefabInfo", "__type__": "cc.PrefabInfo",
"root": { "root": {