diff --git a/.trae/documents/plan_hero_ui_refactor.md b/.trae/documents/plan_hero_ui_refactor.md new file mode 100644 index 00000000..1b109594 --- /dev/null +++ b/.trae/documents/plan_hero_ui_refactor.md @@ -0,0 +1,55 @@ +# 重构场上英雄UI表现及交互计划 + +## 1. 目标与现状分析 + +**现状**: +目前游戏中 `HInfoComp.ts` 负责在界面下方显示场上英雄的信息(生命、攻击、出售),由 `MissionCardComp` 管理 6 个固定槽位。 +`HeroViewComp.ts` 负责战斗场景中英雄实体的动画表现。 + +**目标**: +1. 保留 `HInfoComp.ts` 组件及预制体,但**取消其在底部的常驻显示**,将其改造为**弹窗形式**(类似 `IBoxComp`)。 +2. 在战斗或准备阶段,玩家**直接点击场上的英雄模型**(`HeroViewComp`)时,弹出 `HInfoComp` 面板。 +3. 清理 `MissionCardComp.ts` 中管理底层 `HInfoComp` 的旧逻辑。 + +## 2. 具体修改步骤 + +### 2.1 注册 HInfo 为独立弹窗 +* 修改 `assets/script/game/common/config/GameUIConfig.ts`: + * 在 `UIID` 枚举中添加 `HInfo`。 + * 在 `UIConfigData` 中注册:`[UIID.HInfo]: { layer: LayerType.UI, prefab: "gui/element/hnode" }`。 + +### 2.2 改造 HInfoComp.ts +* **数据传入**:添加 `onAdded(args: { eid: number })`,根据 `eid` 查询 `HeroAttrsComp` 实体进行数据绑定。 +* **自驱动刷新**:原先由外部驱动刷新,现在添加 `update(dt: number)` 生命周期,在内部调用 `this.refresh()` 以保持血量等信息实时更新。 +* **移除旧逻辑**:删除 `node_index`、`refreshByNodeIndex` 等固定槽位相关的代码。 +* **交互恢复**:取消注释 `bindEvents` 和 `unbindEvents`,恢复出售按钮的点击事件。出售完成后调用 `oops.gui.remove(UIID.HInfo)`。打开 `IBox` 的点击逻辑可保持不变(或者作为详情按钮)。 +* **添加关闭机制**:考虑到它是弹窗,可以添加一个点击非按钮区域关闭自身的功能,或者点击英雄之外的区域关闭。为简单起见,可以暂时复用点击面板打开 IBox(同时关闭 HInfo),并在 HInfo 添加额外的关闭按钮,或由 UI 框架自动处理(如果注册为 PopUp 并带有背景)。如果它是纯 UI,可以点击其他地方关闭。这里我们让它在打开 `IBox` 后关闭自己:`oops.gui.remove(UIID.HInfo)`。 + +### 2.3 清理 MissionCardComp.ts +* **移除属性**:删除 `@property(Node) hero_info_node` 和 `@property(Prefab) hero_info_prefab` 及其编辑器绑定。 +* **移除内部状态**:删除 `cachedHInfoComps` 和 `heroInfoSyncTimer`。 +* **移除生命周期调用**:在 `onLoad`、`update`、`onMissionStart`、`onMissionEnd`、`onDestroy`、`reset`、`enterPreparePhase`、`enterBattlePhase` 中,删除所有涉及 `HInfoComp` 实例创建、刷新、显隐控制、销毁的代码。 + +### 2.4 修改 HeroViewComp.ts 添加点击交互 +* **绑定事件**:在 `onLoad` 中为英雄模型节点绑定点击事件 `this.node.on(NodeEventType.TOUCH_END, this.onHeroClicked, this);`,并在 `reset` 等清理处解绑。 +* **点击回调逻辑**: + ```typescript + private onHeroClicked(event: EventTouch) { + if (!this.model) return; + if (this.model.fac !== FacSet.HERO) return; // 仅对玩家英雄生效 + + const eid = this.ent?.eid; + if (!eid) return; + + // 呼出英雄信息弹窗 + oops.gui.remove(UIID.HInfo); + oops.gui.open(UIID.HInfo, { eid: eid }); + } + ``` + +## 3. 验证步骤 +1. 进入战斗,确认下方不再有常驻的英雄信息面板。 +2. 点击场上的英雄模型,确认能弹出该英雄的 `HInfoComp` 弹窗。 +3. 观察弹窗内的血量和攻击力是否能随战斗实时刷新。 +4. 点击弹窗上的出售按钮,确认英雄消失、金币增加且弹窗关闭。 +5. 点击弹窗上的信息区域,确认能弹出 `IBoxComp` 详情面板。 \ No newline at end of file diff --git a/assets/resources/gui/element/card.prefab b/assets/resources/gui/element/card.prefab index 9b5eb3e2..d97e872c 100644 --- a/assets/resources/gui/element/card.prefab +++ b/assets/resources/gui/element/card.prefab @@ -25,53 +25,62 @@ "__id__": 10 }, { - "__id__": 94 + "__id__": 82 }, { - "__id__": 118 + "__id__": 98 }, { - "__id__": 124 + "__id__": 114 }, { - "__id__": 132 + "__id__": 198 }, { - "__id__": 186 + "__id__": 222 }, { - "__id__": 257 + "__id__": 228 }, { - "__id__": 277 + "__id__": 236 }, { - "__id__": 335 + "__id__": 290 }, { - "__id__": 357 + "__id__": 361 }, { - "__id__": 387 + "__id__": 381 }, { - "__id__": 549 + "__id__": 439 }, { - "__id__": 577 + "__id__": 461 + }, + { + "__id__": 491 + }, + { + "__id__": 653 + }, + { + "__id__": 681 } ], "_active": true, "_components": [ { - "__id__": 605 + "__id__": 709 }, { - "__id__": 607 + "__id__": 711 } ], "_prefab": { - "__id__": 609 + "__id__": 713 }, "_lpos": { "__type__": "cc.Vec3", @@ -283,19 +292,1629 @@ "__id__": 11 }, { - "__id__": 19 + "__id__": 27 + }, + { + "__id__": 43 + }, + { + "__id__": 59 + } + ], + "_active": true, + "_components": [ + { + "__id__": 75 + }, + { + "__id__": 77 + }, + { + "__id__": 79 + } + ], + "_prefab": { + "__id__": 81 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Card", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 10 + }, + "_children": [ + { + "__id__": 12 + } + ], + "_active": true, + "_components": [ + { + "__id__": 20 + }, + { + "__id__": 22 + }, + { + "__id__": 24 + } + ], + "_prefab": { + "__id__": 26 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 1, + "y": 1, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 11 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 13 + }, + { + "__id__": 15 + }, + { + "__id__": 17 + } + ], + "_prefab": { + "__id__": 19 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 30, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": { + "__id__": 14 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5bqWE7B1hNxJJ9MEMyQGSY" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": { + "__id__": 16 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@49830", + "__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": "e02VFFoAlPw4gN0GvgTmMT" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 12 + }, + "_enabled": true, + "__prefab": { + "__id__": 18 + }, + "_alignFlags": 41, + "_target": null, + "_left": 15, + "_right": 15, + "_top": 15, + "_bottom": 7, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 216, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "01NLpQB41MJ4lVfI3SJezr" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "8cBhUgIYpOnK7rUEU4w0nM", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 11 + }, + "_enabled": true, + "__prefab": { + "__id__": 21 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49WiV9RVxE6qovqXOGIVh6" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 11 + }, + "_enabled": true, + "__prefab": { + "__id__": 23 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@c77a7", + "__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": "87/jOkZoZKip+tEcN29vLC" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 11 + }, + "_enabled": true, + "__prefab": { + "__id__": 25 + }, + "_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": 228, + "_originalHeight": 293, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0a6KAQpABBDJzTgQSzYq+f" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "51/3ox1UBB2bZAXoWhOfPL", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Hero", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 10 + }, + "_children": [ + { + "__id__": 28 + } + ], + "_active": true, + "_components": [ + { + "__id__": 36 + }, + { + "__id__": 38 + }, + { + "__id__": 40 + } + ], + "_prefab": { + "__id__": 42 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 27 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 29 + }, + { + "__id__": 31 }, { "__id__": 33 + } + ], + "_prefab": { + "__id__": 35 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 30, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 30 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f7xlgQvgVCjYxW8fOMJn2H" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 32 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@0ecfe", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6bRG7xPVBJK78eb9+0vlfr" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 28 + }, + "_enabled": true, + "__prefab": { + "__id__": 34 + }, + "_alignFlags": 41, + "_target": null, + "_left": 15, + "_right": 15, + "_top": 15, + "_bottom": 7, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 216, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "007nHQjV9ADoFVIA3gfK+J" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d3DwcJ/BVKUK/C1+mLZbGh", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 37 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "cfv/QvSiZGPo51VxiJzfq7" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 39 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@f8fdb", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f3/r8qu4xNcpJtfgJFLprX" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 27 + }, + "_enabled": true, + "__prefab": { + "__id__": 41 + }, + "_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": 228, + "_originalHeight": 293, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "51VKkddu1FJLZFpGqYXB28" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "45WSS+yj1OK7FNY9jME7ca", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Skill", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 10 + }, + "_children": [ + { + "__id__": 44 + } + ], + "_active": false, + "_components": [ + { + "__id__": 52 + }, + { + "__id__": 54 + }, + { + "__id__": 56 + } + ], + "_prefab": { + "__id__": 58 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 43 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 45 }, { "__id__": 47 }, + { + "__id__": 49 + } + ], + "_prefab": { + "__id__": 51 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 30, + "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": 1073741824, + "_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": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eck2Mq50ZCm44g+6PtCpIL" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 44 + }, + "_enabled": true, + "__prefab": { + "__id__": 48 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@e1707", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2cb3TAUK1FALD5roTXgfcX" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 44 + }, + "_enabled": true, + "__prefab": { + "__id__": 50 + }, + "_alignFlags": 41, + "_target": null, + "_left": 15, + "_right": 15, + "_top": 15, + "_bottom": 7, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 216, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "49VLMHU89H0rJ2WtOKRtbu" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "feVBC29FtNyooeqadLBnPZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 43 + }, + "_enabled": true, + "__prefab": { + "__id__": 53 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "294r9urylNOrGgPo5K7eqw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 43 + }, + "_enabled": true, + "__prefab": { + "__id__": 55 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@0d310", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d5xteBu1ZPpZJSv3RFnOCO" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 43 + }, + "_enabled": true, + "__prefab": { + "__id__": 57 + }, + "_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": 228, + "_originalHeight": 293, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "41sL7Yp5RJv4aJvOTrZwNF" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d1nGg9fHhAc44J4s6BNm10", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Potion", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 10 + }, + "_children": [ + { + "__id__": 60 + } + ], + "_active": false, + "_components": [ + { + "__id__": 68 + }, + { + "__id__": 70 + }, + { + "__id__": 72 + } + ], + "_prefab": { + "__id__": 74 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 59 + }, + "_children": [], + "_active": true, + "_components": [ { "__id__": 61 }, { - "__id__": 75 + "__id__": 63 + }, + { + "__id__": 65 + } + ], + "_prefab": { + "__id__": 67 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 30, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 60 + }, + "_enabled": true, + "__prefab": { + "__id__": 62 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "efFglnX+5FFKaSg4uCjakO" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 60 + }, + "_enabled": true, + "__prefab": { + "__id__": 64 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@78ee3", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8d0qO0/C5CFZ70lQ/0fWW4" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 60 + }, + "_enabled": true, + "__prefab": { + "__id__": 66 + }, + "_alignFlags": 41, + "_target": null, + "_left": 15, + "_right": 15, + "_top": 15, + "_bottom": 7, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 216, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f0hQRJzIlNe6D21oFttFCl" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "d60mZdxttM/r3+hOlIbNgt", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 69 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27wAXPTsxJf5lpgG9/4bw8" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 71 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@41c54", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ffEK6naHVN3bshbRmazcH1" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 59 + }, + "_enabled": true, + "__prefab": { + "__id__": 73 + }, + "_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": 228, + "_originalHeight": 293, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "38HESGW9hMPrfkraSKrU9K" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "88lbr6mYFJ1IRULEOj4F2R", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 76 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "99yf9rnjlM147Oc5ugZxZA" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": false, + "__prefab": { + "__id__": 78 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@c77a7", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "11j6o9dtZKkpwqRniNfeyM" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 80 + }, + "_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": 510, + "_originalHeight": 66, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "61x3pJerRGsbylittFG2lL" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "40n0LdBjNFe5UPFihdLgY/", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Mask", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 83 } ], "_active": true, @@ -305,10 +1924,714 @@ }, { "__id__": 91 + }, + { + "__id__": 93 + }, + { + "__id__": 95 } ], "_prefab": { - "__id__": 93 + "__id__": 97 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 30, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 82 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 84 + }, + { + "__id__": 86 + } + ], + "_prefab": { + "__id__": 88 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 83 + }, + "_enabled": true, + "__prefab": { + "__id__": 85 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 125, + "height": 125 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6brO0gQERFhKTvy0dcD/6C" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 83 + }, + "_enabled": true, + "__prefab": { + "__id__": 87 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "031877cb-0f3d-4e92-bc5d-e492a0d95a08@f8e94", + "__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": { + "__uuid__": "031877cb-0f3d-4e92-bc5d-e492a0d95a08", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7cosjDf05EiIhghQMGeFkV" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "08p7XmUnpCJKHgFSs+XBKi", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 82 + }, + "_enabled": true, + "__prefab": { + "__id__": 90 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "aePszddr1FjZ9yJvRxiJCh" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 82 + }, + "_enabled": true, + "__prefab": { + "__id__": 92 + }, + "_type": 3, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "30z9tbKlRCK6y2Qz9fwmlG" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 82 + }, + "_enabled": true, + "__prefab": { + "__id__": 94 + }, + "_alignFlags": 41, + "_target": null, + "_left": 15, + "_right": 15, + "_top": 15, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "04ra6VOgxPp6iBjs7Skbtw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 82 + }, + "_enabled": true, + "__prefab": { + "__id__": 96 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@c77a7", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "83K+DBbRxDtKtzBV5gs2Ow" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5cWLGvgr1MdLSDfUJV31tJ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "Mask2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 99 + } + ], + "_active": false, + "_components": [ + { + "__id__": 105 + }, + { + "__id__": 107 + }, + { + "__id__": 109 + }, + { + "__id__": 111 + } + ], + "_prefab": { + "__id__": 113 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 29.180999999999997, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 98 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 100 + }, + { + "__id__": 102 + } + ], + "_prefab": { + "__id__": 104 + }, + "_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.5, + "y": 1.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 99 + }, + "_enabled": true, + "__prefab": { + "__id__": 101 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 125, + "height": 125 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "79Fyb8tEpMAKfWQxPDPaMQ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 99 + }, + "_enabled": true, + "__prefab": { + "__id__": 103 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "031877cb-0f3d-4e92-bc5d-e492a0d95a08@f8e94", + "__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": { + "__uuid__": "031877cb-0f3d-4e92-bc5d-e492a0d95a08", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "48YT6qRolIgYBCT9Di/tXV" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "70voniVzFORZJ5AI91vENH", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 98 + }, + "_enabled": true, + "__prefab": { + "__id__": 106 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 140 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f1svZ3mv5JUrXxf5HYtnbw" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 98 + }, + "_enabled": false, + "__prefab": { + "__id__": 108 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@49830", + "__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": "12ndcLy2xA9r6AaTO6ykvv" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 98 + }, + "_enabled": true, + "__prefab": { + "__id__": 110 + }, + "_alignFlags": 41, + "_target": null, + "_left": 15, + "_right": 15, + "_top": 15.818999999999999, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 200, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "89FtTj8uhIfKCF/0RHK2Rh" + }, + { + "__type__": "cc.Mask", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 98 + }, + "_enabled": true, + "__prefab": { + "__id__": 112 + }, + "_type": 0, + "_inverted": false, + "_segments": 64, + "_alphaThreshold": 0.1, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "23e4C18aBMvZgZe+aLAONs" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "f7ij6ZhrtP8Z7lhDQJjs29", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "bg1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 115 + }, + { + "__id__": 123 + }, + { + "__id__": 137 + }, + { + "__id__": 151 + }, + { + "__id__": 165 + }, + { + "__id__": 179 + } + ], + "_active": false, + "_components": [ + { + "__id__": 193 + }, + { + "__id__": 195 + } + ], + "_prefab": { + "__id__": 197 }, "_lpos": { "__type__": "cc.Vec3", @@ -345,23 +2668,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 10 + "__id__": 114 }, "_children": [], "_active": false, "_components": [ { - "__id__": 12 + "__id__": 116 }, { - "__id__": 14 + "__id__": 118 }, { - "__id__": 16 + "__id__": 120 } ], "_prefab": { - "__id__": 18 + "__id__": 122 }, "_lpos": { "__type__": "cc.Vec3", @@ -398,11 +2721,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 11 + "__id__": 115 }, "_enabled": true, "__prefab": { - "__id__": 13 + "__id__": 117 }, "_contentSize": { "__type__": "cc.Size", @@ -426,11 +2749,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 11 + "__id__": 115 }, "_enabled": true, "__prefab": { - "__id__": 15 + "__id__": 119 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -474,11 +2797,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 11 + "__id__": 115 }, "_enabled": true, "__prefab": { - "__id__": 17 + "__id__": 121 }, "_alignFlags": 45, "_target": null, @@ -523,27 +2846,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 10 + "__id__": 114 }, "_children": [ { - "__id__": 20 + "__id__": 124 } ], "_active": true, "_components": [ { - "__id__": 26 + "__id__": 130 }, { - "__id__": 28 + "__id__": 132 }, { - "__id__": 30 + "__id__": 134 } ], "_prefab": { - "__id__": 32 + "__id__": 136 }, "_lpos": { "__type__": "cc.Vec3", @@ -580,20 +2903,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 19 + "__id__": 123 }, "_children": [], "_active": true, "_components": [ { - "__id__": 21 + "__id__": 125 }, { - "__id__": 23 + "__id__": 127 } ], "_prefab": { - "__id__": 25 + "__id__": 129 }, "_lpos": { "__type__": "cc.Vec3", @@ -630,11 +2953,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 124 }, "_enabled": true, "__prefab": { - "__id__": 22 + "__id__": 126 }, "_contentSize": { "__type__": "cc.Size", @@ -658,11 +2981,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 20 + "__id__": 124 }, "_enabled": true, "__prefab": { - "__id__": 24 + "__id__": 128 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -719,11 +3042,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 19 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 27 + "__id__": 131 }, "_contentSize": { "__type__": "cc.Size", @@ -747,11 +3070,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 19 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 29 + "__id__": 133 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -795,11 +3118,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 19 + "__id__": 123 }, "_enabled": true, "__prefab": { - "__id__": 31 + "__id__": 135 }, "_alignFlags": 45, "_target": null, @@ -844,27 +3167,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 10 + "__id__": 114 }, "_children": [ { - "__id__": 34 + "__id__": 138 } ], "_active": false, "_components": [ { - "__id__": 40 + "__id__": 144 }, { - "__id__": 42 + "__id__": 146 }, { - "__id__": 44 + "__id__": 148 } ], "_prefab": { - "__id__": 46 + "__id__": 150 }, "_lpos": { "__type__": "cc.Vec3", @@ -901,20 +3224,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 33 + "__id__": 137 }, "_children": [], "_active": true, "_components": [ { - "__id__": 35 + "__id__": 139 }, { - "__id__": 37 + "__id__": 141 } ], "_prefab": { - "__id__": 39 + "__id__": 143 }, "_lpos": { "__type__": "cc.Vec3", @@ -951,11 +3274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 36 + "__id__": 140 }, "_contentSize": { "__type__": "cc.Size", @@ -979,11 +3302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 34 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 38 + "__id__": 142 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1040,11 +3363,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 41 + "__id__": 145 }, "_contentSize": { "__type__": "cc.Size", @@ -1068,11 +3391,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 147 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1116,11 +3439,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 33 + "__id__": 137 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 149 }, "_alignFlags": 45, "_target": null, @@ -1165,27 +3488,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 10 + "__id__": 114 }, "_children": [ { - "__id__": 48 + "__id__": 152 } ], "_active": false, "_components": [ { - "__id__": 54 + "__id__": 158 }, { - "__id__": 56 + "__id__": 160 }, { - "__id__": 58 + "__id__": 162 } ], "_prefab": { - "__id__": 60 + "__id__": 164 }, "_lpos": { "__type__": "cc.Vec3", @@ -1222,20 +3545,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 47 + "__id__": 151 }, "_children": [], "_active": true, "_components": [ { - "__id__": 49 + "__id__": 153 }, { - "__id__": 51 + "__id__": 155 } ], "_prefab": { - "__id__": 53 + "__id__": 157 }, "_lpos": { "__type__": "cc.Vec3", @@ -1272,11 +3595,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 48 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 50 + "__id__": 154 }, "_contentSize": { "__type__": "cc.Size", @@ -1300,11 +3623,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 48 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 52 + "__id__": 156 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1361,11 +3684,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 55 + "__id__": 159 }, "_contentSize": { "__type__": "cc.Size", @@ -1389,11 +3712,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 161 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1437,11 +3760,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 47 + "__id__": 151 }, "_enabled": true, "__prefab": { - "__id__": 59 + "__id__": 163 }, "_alignFlags": 45, "_target": null, @@ -1486,27 +3809,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 10 + "__id__": 114 }, "_children": [ { - "__id__": 62 + "__id__": 166 } ], "_active": false, "_components": [ { - "__id__": 68 + "__id__": 172 }, { - "__id__": 70 + "__id__": 174 }, { - "__id__": 72 + "__id__": 176 } ], "_prefab": { - "__id__": 74 + "__id__": 178 }, "_lpos": { "__type__": "cc.Vec3", @@ -1543,20 +3866,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 61 + "__id__": 165 }, "_children": [], "_active": true, "_components": [ { - "__id__": 63 + "__id__": 167 }, { - "__id__": 65 + "__id__": 169 } ], "_prefab": { - "__id__": 67 + "__id__": 171 }, "_lpos": { "__type__": "cc.Vec3", @@ -1593,11 +3916,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 62 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 64 + "__id__": 168 }, "_contentSize": { "__type__": "cc.Size", @@ -1621,11 +3944,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 62 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 66 + "__id__": 170 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1682,11 +4005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 69 + "__id__": 173 }, "_contentSize": { "__type__": "cc.Size", @@ -1710,11 +4033,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 175 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1758,11 +4081,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 61 + "__id__": 165 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 177 }, "_alignFlags": 45, "_target": null, @@ -1807,27 +4130,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 10 + "__id__": 114 }, "_children": [ { - "__id__": 76 + "__id__": 180 } ], "_active": false, "_components": [ { - "__id__": 82 + "__id__": 186 }, { - "__id__": 84 + "__id__": 188 }, { - "__id__": 86 + "__id__": 190 } ], "_prefab": { - "__id__": 88 + "__id__": 192 }, "_lpos": { "__type__": "cc.Vec3", @@ -1864,20 +4187,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 75 + "__id__": 179 }, "_children": [], "_active": true, "_components": [ { - "__id__": 77 + "__id__": 181 }, { - "__id__": 79 + "__id__": 183 } ], "_prefab": { - "__id__": 81 + "__id__": 185 }, "_lpos": { "__type__": "cc.Vec3", @@ -1914,11 +4237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 76 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 78 + "__id__": 182 }, "_contentSize": { "__type__": "cc.Size", @@ -1942,11 +4265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 76 + "__id__": 180 }, "_enabled": true, "__prefab": { - "__id__": 80 + "__id__": 184 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2003,11 +4326,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 83 + "__id__": 187 }, "_contentSize": { "__type__": "cc.Size", @@ -2031,11 +4354,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 189 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2079,11 +4402,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 75 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 191 }, "_alignFlags": 45, "_target": null, @@ -2128,11 +4451,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 90 + "__id__": 194 }, "_contentSize": { "__type__": "cc.Size", @@ -2156,11 +4479,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 92 + "__id__": 196 }, "_alignFlags": 45, "_target": null, @@ -2201,7 +4524,7 @@ }, { "__type__": "cc.Node", - "_name": "Mask", + "_name": "Mask1", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -2209,29 +4532,29 @@ }, "_children": [ { - "__id__": 95 + "__id__": 199 }, { - "__id__": 101 + "__id__": 205 } ], - "_active": true, + "_active": false, "_components": [ { - "__id__": 109 + "__id__": 213 }, { - "__id__": 111 + "__id__": 215 }, { - "__id__": 113 + "__id__": 217 }, { - "__id__": 115 + "__id__": 219 } ], "_prefab": { - "__id__": 117 + "__id__": 221 }, "_lpos": { "__type__": "cc.Vec3", @@ -2268,20 +4591,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 94 + "__id__": 198 }, "_children": [], "_active": false, "_components": [ { - "__id__": 96 + "__id__": 200 }, { - "__id__": 98 + "__id__": 202 } ], "_prefab": { - "__id__": 100 + "__id__": 204 }, "_lpos": { "__type__": "cc.Vec3", @@ -2318,11 +4641,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 199 }, "_enabled": true, "__prefab": { - "__id__": 97 + "__id__": 201 }, "_contentSize": { "__type__": "cc.Size", @@ -2346,11 +4669,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 95 + "__id__": 199 }, "_enabled": true, "__prefab": { - "__id__": 99 + "__id__": 203 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2407,23 +4730,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 94 + "__id__": 198 }, "_children": [], "_active": true, "_components": [ { - "__id__": 102 + "__id__": 206 }, { - "__id__": 104 + "__id__": 208 }, { - "__id__": 106 + "__id__": 210 } ], "_prefab": { - "__id__": 108 + "__id__": 212 }, "_lpos": { "__type__": "cc.Vec3", @@ -2440,8 +4763,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 2, - "y": 2, + "x": 1.8, + "y": 1.8, "z": 1 }, "_mobility": 0, @@ -2460,11 +4783,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 101 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 103 + "__id__": 207 }, "_contentSize": { "__type__": "cc.Size", @@ -2488,11 +4811,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 101 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 105 + "__id__": 209 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2536,11 +4859,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 101 + "__id__": 205 }, "_enabled": true, "__prefab": { - "__id__": 107 + "__id__": 211 }, "playOnLoad": false, "_clips": [], @@ -2570,15 +4893,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 110 + "__id__": 214 }, "_contentSize": { "__type__": "cc.Size", - "width": 160, + "width": 150, "height": 140 }, "_anchorPoint": { @@ -2598,11 +4921,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 112 + "__id__": 216 }, "_type": 0, "_inverted": false, @@ -2620,11 +4943,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 114 + "__id__": 218 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2666,16 +4989,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 94 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 116 + "__id__": 220 }, "_alignFlags": 41, "_target": null, - "_left": 5, - "_right": 5, + "_left": 10, + "_right": 10, "_top": 20, "_bottom": 133.5725, "_horizontalCenter": 0, @@ -2721,14 +5044,14 @@ "_active": false, "_components": [ { - "__id__": 119 + "__id__": 223 }, { - "__id__": 121 + "__id__": 225 } ], "_prefab": { - "__id__": 123 + "__id__": 227 }, "_lpos": { "__type__": "cc.Vec3", @@ -2765,11 +5088,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 222 }, "_enabled": true, "__prefab": { - "__id__": 120 + "__id__": 224 }, "_contentSize": { "__type__": "cc.Size", @@ -2793,11 +5116,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 118 + "__id__": 222 }, "_enabled": true, "__prefab": { - "__id__": 122 + "__id__": 226 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2860,17 +5183,17 @@ "_active": true, "_components": [ { - "__id__": 125 + "__id__": 229 }, { - "__id__": 127 + "__id__": 231 }, { - "__id__": 129 + "__id__": 233 } ], "_prefab": { - "__id__": 131 + "__id__": 235 }, "_lpos": { "__type__": "cc.Vec3", @@ -2907,11 +5230,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 126 + "__id__": 230 }, "_contentSize": { "__type__": "cc.Size", @@ -2935,11 +5258,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 128 + "__id__": 232 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3003,11 +5326,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 124 + "__id__": 228 }, "_enabled": true, "__prefab": { - "__id__": 130 + "__id__": 234 }, "_alignFlags": 17, "_target": null, @@ -3056,35 +5379,35 @@ }, "_children": [ { - "__id__": 133 + "__id__": 237 }, { - "__id__": 141 + "__id__": 245 }, { - "__id__": 149 + "__id__": 253 }, { - "__id__": 157 + "__id__": 261 }, { - "__id__": 165 + "__id__": 269 }, { - "__id__": 173 + "__id__": 277 } ], "_active": false, "_components": [ { - "__id__": 181 + "__id__": 285 }, { - "__id__": 183 + "__id__": 287 } ], "_prefab": { - "__id__": 185 + "__id__": 289 }, "_lpos": { "__type__": "cc.Vec3", @@ -3121,23 +5444,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 236 }, "_children": [], "_active": false, "_components": [ { - "__id__": 134 + "__id__": 238 }, { - "__id__": 136 + "__id__": 240 }, { - "__id__": 138 + "__id__": 242 } ], "_prefab": { - "__id__": 140 + "__id__": 244 }, "_lpos": { "__type__": "cc.Vec3", @@ -3174,11 +5497,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 133 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 135 + "__id__": 239 }, "_contentSize": { "__type__": "cc.Size", @@ -3202,11 +5525,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 133 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 137 + "__id__": 241 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3250,11 +5573,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 133 + "__id__": 237 }, "_enabled": true, "__prefab": { - "__id__": 139 + "__id__": 243 }, "_alignFlags": 45, "_target": null, @@ -3299,23 +5622,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 236 }, "_children": [], "_active": true, "_components": [ { - "__id__": 142 + "__id__": 246 }, { - "__id__": 144 + "__id__": 248 }, { - "__id__": 146 + "__id__": 250 } ], "_prefab": { - "__id__": 148 + "__id__": 252 }, "_lpos": { "__type__": "cc.Vec3", @@ -3352,11 +5675,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 143 + "__id__": 247 }, "_contentSize": { "__type__": "cc.Size", @@ -3380,11 +5703,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 145 + "__id__": 249 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3428,11 +5751,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 141 + "__id__": 245 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 251 }, "_alignFlags": 45, "_target": null, @@ -3477,23 +5800,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 236 }, "_children": [], "_active": false, "_components": [ { - "__id__": 150 + "__id__": 254 }, { - "__id__": 152 + "__id__": 256 }, { - "__id__": 154 + "__id__": 258 } ], "_prefab": { - "__id__": 156 + "__id__": 260 }, "_lpos": { "__type__": "cc.Vec3", @@ -3530,11 +5853,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 149 + "__id__": 253 }, "_enabled": true, "__prefab": { - "__id__": 151 + "__id__": 255 }, "_contentSize": { "__type__": "cc.Size", @@ -3558,11 +5881,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 149 + "__id__": 253 }, "_enabled": true, "__prefab": { - "__id__": 153 + "__id__": 257 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3606,11 +5929,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 149 + "__id__": 253 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 259 }, "_alignFlags": 45, "_target": null, @@ -3655,23 +5978,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 236 }, "_children": [], "_active": false, "_components": [ { - "__id__": 158 + "__id__": 262 }, { - "__id__": 160 + "__id__": 264 }, { - "__id__": 162 + "__id__": 266 } ], "_prefab": { - "__id__": 164 + "__id__": 268 }, "_lpos": { "__type__": "cc.Vec3", @@ -3708,11 +6031,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 159 + "__id__": 263 }, "_contentSize": { "__type__": "cc.Size", @@ -3736,11 +6059,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 265 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3784,11 +6107,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 157 + "__id__": 261 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 267 }, "_alignFlags": 45, "_target": null, @@ -3833,23 +6156,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 236 }, "_children": [], "_active": false, "_components": [ { - "__id__": 166 + "__id__": 270 }, { - "__id__": 168 + "__id__": 272 }, { - "__id__": 170 + "__id__": 274 } ], "_prefab": { - "__id__": 172 + "__id__": 276 }, "_lpos": { "__type__": "cc.Vec3", @@ -3886,11 +6209,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 167 + "__id__": 271 }, "_contentSize": { "__type__": "cc.Size", @@ -3914,11 +6237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 273 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3962,11 +6285,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 165 + "__id__": 269 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 275 }, "_alignFlags": 45, "_target": null, @@ -4011,23 +6334,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 132 + "__id__": 236 }, "_children": [], "_active": false, "_components": [ { - "__id__": 174 + "__id__": 278 }, { - "__id__": 176 + "__id__": 280 }, { - "__id__": 178 + "__id__": 282 } ], "_prefab": { - "__id__": 180 + "__id__": 284 }, "_lpos": { "__type__": "cc.Vec3", @@ -4064,11 +6387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 277 }, "_enabled": true, "__prefab": { - "__id__": 175 + "__id__": 279 }, "_contentSize": { "__type__": "cc.Size", @@ -4092,11 +6415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 277 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 281 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4140,11 +6463,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 173 + "__id__": 277 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 283 }, "_alignFlags": 45, "_target": null, @@ -4189,11 +6512,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 132 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 182 + "__id__": 286 }, "_contentSize": { "__type__": "cc.Size", @@ -4217,11 +6540,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 132 + "__id__": 236 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 288 }, "_alignFlags": 45, "_target": null, @@ -4270,41 +6593,41 @@ }, "_children": [ { - "__id__": 187 + "__id__": 291 }, { - "__id__": 195 + "__id__": 299 }, { - "__id__": 203 + "__id__": 307 }, { - "__id__": 211 + "__id__": 315 }, { - "__id__": 219 + "__id__": 323 }, { - "__id__": 227 + "__id__": 331 }, { - "__id__": 235 + "__id__": 339 }, { - "__id__": 243 + "__id__": 347 } ], - "_active": true, + "_active": false, "_components": [ { - "__id__": 252 + "__id__": 356 }, { - "__id__": 254 + "__id__": 358 } ], "_prefab": { - "__id__": 256 + "__id__": 360 }, "_lpos": { "__type__": "cc.Vec3", @@ -4341,23 +6664,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": false, "_components": [ { - "__id__": 188 + "__id__": 292 }, { - "__id__": 190 + "__id__": 294 }, { - "__id__": 192 + "__id__": 296 } ], "_prefab": { - "__id__": 194 + "__id__": 298 }, "_lpos": { "__type__": "cc.Vec3", @@ -4394,11 +6717,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 189 + "__id__": 293 }, "_contentSize": { "__type__": "cc.Size", @@ -4422,11 +6745,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 191 + "__id__": 295 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4470,11 +6793,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 187 + "__id__": 291 }, "_enabled": true, "__prefab": { - "__id__": 193 + "__id__": 297 }, "_alignFlags": 45, "_target": null, @@ -4519,23 +6842,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": true, "_components": [ { - "__id__": 196 + "__id__": 300 }, { - "__id__": 198 + "__id__": 302 }, { - "__id__": 200 + "__id__": 304 } ], "_prefab": { - "__id__": 202 + "__id__": 306 }, "_lpos": { "__type__": "cc.Vec3", @@ -4572,11 +6895,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 299 }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 301 }, "_contentSize": { "__type__": "cc.Size", @@ -4600,11 +6923,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 299 }, "_enabled": true, "__prefab": { - "__id__": 199 + "__id__": 303 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4648,11 +6971,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 299 }, "_enabled": true, "__prefab": { - "__id__": 201 + "__id__": 305 }, "_alignFlags": 45, "_target": null, @@ -4697,23 +7020,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": false, "_components": [ { - "__id__": 204 + "__id__": 308 }, { - "__id__": 206 + "__id__": 310 }, { - "__id__": 208 + "__id__": 312 } ], "_prefab": { - "__id__": 210 + "__id__": 314 }, "_lpos": { "__type__": "cc.Vec3", @@ -4750,11 +7073,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 203 + "__id__": 307 }, "_enabled": true, "__prefab": { - "__id__": 205 + "__id__": 309 }, "_contentSize": { "__type__": "cc.Size", @@ -4778,11 +7101,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 203 + "__id__": 307 }, "_enabled": true, "__prefab": { - "__id__": 207 + "__id__": 311 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4826,11 +7149,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 203 + "__id__": 307 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 313 }, "_alignFlags": 45, "_target": null, @@ -4875,23 +7198,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": false, "_components": [ { - "__id__": 212 + "__id__": 316 }, { - "__id__": 214 + "__id__": 318 }, { - "__id__": 216 + "__id__": 320 } ], "_prefab": { - "__id__": 218 + "__id__": 322 }, "_lpos": { "__type__": "cc.Vec3", @@ -4928,11 +7251,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 315 }, "_enabled": true, "__prefab": { - "__id__": 213 + "__id__": 317 }, "_contentSize": { "__type__": "cc.Size", @@ -4956,11 +7279,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 315 }, "_enabled": true, "__prefab": { - "__id__": 215 + "__id__": 319 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5004,11 +7327,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 315 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 321 }, "_alignFlags": 45, "_target": null, @@ -5053,23 +7376,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": false, "_components": [ { - "__id__": 220 + "__id__": 324 }, { - "__id__": 222 + "__id__": 326 }, { - "__id__": 224 + "__id__": 328 } ], "_prefab": { - "__id__": 226 + "__id__": 330 }, "_lpos": { "__type__": "cc.Vec3", @@ -5106,11 +7429,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 325 }, "_contentSize": { "__type__": "cc.Size", @@ -5134,11 +7457,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 327 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5182,11 +7505,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 323 }, "_enabled": true, "__prefab": { - "__id__": 225 + "__id__": 329 }, "_alignFlags": 45, "_target": null, @@ -5231,23 +7554,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": false, "_components": [ { - "__id__": 228 + "__id__": 332 }, { - "__id__": 230 + "__id__": 334 }, { - "__id__": 232 + "__id__": 336 } ], "_prefab": { - "__id__": 234 + "__id__": 338 }, "_lpos": { "__type__": "cc.Vec3", @@ -5284,11 +7607,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 227 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 229 + "__id__": 333 }, "_contentSize": { "__type__": "cc.Size", @@ -5312,11 +7635,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 227 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 231 + "__id__": 335 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5360,11 +7683,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 227 + "__id__": 331 }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 337 }, "_alignFlags": 45, "_target": null, @@ -5409,23 +7732,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 186 + "__id__": 290 }, "_children": [], "_active": false, "_components": [ { - "__id__": 236 + "__id__": 340 }, { - "__id__": 238 + "__id__": 342 }, { - "__id__": 240 + "__id__": 344 } ], "_prefab": { - "__id__": 242 + "__id__": 346 }, "_lpos": { "__type__": "cc.Vec3", @@ -5462,11 +7785,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 339 }, "_enabled": true, "__prefab": { - "__id__": 237 + "__id__": 341 }, "_contentSize": { "__type__": "cc.Size", @@ -5490,11 +7813,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 339 }, "_enabled": true, "__prefab": { - "__id__": 239 + "__id__": 343 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5535,11 +7858,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 235 + "__id__": 339 }, "_enabled": true, "__prefab": { - "__id__": 241 + "__id__": 345 }, "_alignFlags": 44, "_target": null, @@ -5582,17 +7905,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 186 + "__id__": 290 }, "_prefab": { - "__id__": 244 + "__id__": 348 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 243 + "__id__": 347 }, "asset": { "__uuid__": "5aae4a6d-b697-4c4b-86d3-8ea91be92be6", @@ -5600,7 +7923,7 @@ }, "fileId": "7347RlFLBEdJZ/A06wfR5f", "instance": { - "__id__": 245 + "__id__": 349 }, "targetOverrides": null }, @@ -5614,19 +7937,19 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 246 + "__id__": 350 }, { - "__id__": 248 + "__id__": 352 }, { - "__id__": 249 + "__id__": 353 }, { - "__id__": 250 + "__id__": 354 }, { - "__id__": 251 + "__id__": 355 } ], "removedComponents": [] @@ -5634,7 +7957,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 247 + "__id__": 351 }, "propertyPath": [ "_name" @@ -5650,7 +7973,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 247 + "__id__": 351 }, "propertyPath": [ "_lpos" @@ -5665,7 +7988,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 247 + "__id__": 351 }, "propertyPath": [ "_lrot" @@ -5681,7 +8004,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 247 + "__id__": 351 }, "propertyPath": [ "_euler" @@ -5696,7 +8019,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 247 + "__id__": 351 }, "propertyPath": [ "_active" @@ -5709,11 +8032,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 253 + "__id__": 357 }, "_contentSize": { "__type__": "cc.Size", @@ -5737,11 +8060,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 186 + "__id__": 290 }, "_enabled": true, "__prefab": { - "__id__": 255 + "__id__": 359 }, "_alignFlags": 45, "_target": null, @@ -5790,31 +8113,31 @@ }, "_children": [ { - "__id__": 258 + "__id__": 362 }, { - "__id__": 264 + "__id__": 368 } ], "_active": true, "_components": [ { - "__id__": 270 + "__id__": 374 }, { - "__id__": 272 + "__id__": 376 }, { - "__id__": 274 + "__id__": 378 } ], "_prefab": { - "__id__": 276 + "__id__": 380 }, "_lpos": { "__type__": "cc.Vec3", - "x": -65.798, - "y": 27.573000000000008, + "x": -73.99699999999999, + "y": 26.235, "z": 0 }, "_lrot": { @@ -5846,20 +8169,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 257 + "__id__": 361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 259 + "__id__": 363 }, { - "__id__": 261 + "__id__": 365 } ], "_prefab": { - "__id__": 263 + "__id__": 367 }, "_lpos": { "__type__": "cc.Vec3", @@ -5896,11 +8219,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 258 + "__id__": 362 }, "_enabled": true, "__prefab": { - "__id__": 260 + "__id__": 364 }, "_contentSize": { "__type__": "cc.Size", @@ -5924,11 +8247,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 258 + "__id__": 362 }, "_enabled": true, "__prefab": { - "__id__": 262 + "__id__": 366 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5985,20 +8308,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 257 + "__id__": 361 }, "_children": [], "_active": true, "_components": [ { - "__id__": 265 + "__id__": 369 }, { - "__id__": 267 + "__id__": 371 } ], "_prefab": { - "__id__": 269 + "__id__": 373 }, "_lpos": { "__type__": "cc.Vec3", @@ -6035,11 +8358,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 264 + "__id__": 368 }, "_enabled": true, "__prefab": { - "__id__": 266 + "__id__": 370 }, "_contentSize": { "__type__": "cc.Size", @@ -6063,11 +8386,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 264 + "__id__": 368 }, "_enabled": true, "__prefab": { - "__id__": 268 + "__id__": 372 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6144,11 +8467,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 257 + "__id__": 361 }, "_enabled": true, "__prefab": { - "__id__": 271 + "__id__": 375 }, "_contentSize": { "__type__": "cc.Size", @@ -6172,11 +8495,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 257 + "__id__": 361 }, "_enabled": true, "__prefab": { - "__id__": 273 + "__id__": 377 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6214,17 +8537,17 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 257 + "__id__": 361 }, "_enabled": true, "__prefab": { - "__id__": 275 + "__id__": 379 }, "_alignFlags": 9, "_target": null, - "_left": -0.7980000000000018, + "_left": -8.996999999999993, "_right": 130.798, - "_top": 67.42699999999999, + "_top": 68.765, "_bottom": -6.274000000000001, "_horizontalCenter": 0, "_verticalCenter": 0, @@ -6267,23 +8590,23 @@ }, "_children": [ { - "__id__": 278 + "__id__": 382 }, { - "__id__": 304 + "__id__": 408 } ], "_active": false, "_components": [ { - "__id__": 330 + "__id__": 434 }, { - "__id__": 332 + "__id__": 436 } ], "_prefab": { - "__id__": 334 + "__id__": 438 }, "_lpos": { "__type__": "cc.Vec3", @@ -6320,30 +8643,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 277 + "__id__": 381 }, "_children": [ { - "__id__": 279 + "__id__": 383 }, { - "__id__": 287 + "__id__": 391 }, { - "__id__": 293 + "__id__": 397 } ], "_active": true, "_components": [ { - "__id__": 299 + "__id__": 403 }, { - "__id__": 301 + "__id__": 405 } ], "_prefab": { - "__id__": 303 + "__id__": 407 }, "_lpos": { "__type__": "cc.Vec3", @@ -6380,23 +8703,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 278 + "__id__": 382 }, "_children": [], "_active": true, "_components": [ { - "__id__": 280 + "__id__": 384 }, { - "__id__": 282 + "__id__": 386 }, { - "__id__": 284 + "__id__": 388 } ], "_prefab": { - "__id__": 286 + "__id__": 390 }, "_lpos": { "__type__": "cc.Vec3", @@ -6433,11 +8756,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 279 + "__id__": 383 }, "_enabled": true, "__prefab": { - "__id__": 281 + "__id__": 385 }, "_contentSize": { "__type__": "cc.Size", @@ -6461,11 +8784,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 279 + "__id__": 383 }, "_enabled": true, "__prefab": { - "__id__": 283 + "__id__": 387 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6506,11 +8829,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 279 + "__id__": 383 }, "_enabled": true, "__prefab": { - "__id__": 285 + "__id__": 389 }, "_alignFlags": 45, "_target": null, @@ -6555,20 +8878,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 278 + "__id__": 382 }, "_children": [], "_active": true, "_components": [ { - "__id__": 288 + "__id__": 392 }, { - "__id__": 290 + "__id__": 394 } ], "_prefab": { - "__id__": 292 + "__id__": 396 }, "_lpos": { "__type__": "cc.Vec3", @@ -6605,11 +8928,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 287 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 289 + "__id__": 393 }, "_contentSize": { "__type__": "cc.Size", @@ -6633,11 +8956,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 287 + "__id__": 391 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 395 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6691,20 +9014,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 278 + "__id__": 382 }, "_children": [], "_active": true, "_components": [ { - "__id__": 294 + "__id__": 398 }, { - "__id__": 296 + "__id__": 400 } ], "_prefab": { - "__id__": 298 + "__id__": 402 }, "_lpos": { "__type__": "cc.Vec3", @@ -6741,11 +9064,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 397 }, "_enabled": true, "__prefab": { - "__id__": 295 + "__id__": 399 }, "_contentSize": { "__type__": "cc.Size", @@ -6769,11 +9092,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 397 }, "_enabled": true, "__prefab": { - "__id__": 297 + "__id__": 401 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6850,11 +9173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 278 + "__id__": 382 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 404 }, "_contentSize": { "__type__": "cc.Size", @@ -6878,11 +9201,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 278 + "__id__": 382 }, "_enabled": false, "__prefab": { - "__id__": 302 + "__id__": 406 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6936,30 +9259,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 277 + "__id__": 381 }, "_children": [ { - "__id__": 305 + "__id__": 409 }, { - "__id__": 313 + "__id__": 417 }, { - "__id__": 319 + "__id__": 423 } ], "_active": true, "_components": [ { - "__id__": 325 + "__id__": 429 }, { - "__id__": 327 + "__id__": 431 } ], "_prefab": { - "__id__": 329 + "__id__": 433 }, "_lpos": { "__type__": "cc.Vec3", @@ -6996,23 +9319,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 304 + "__id__": 408 }, "_children": [], "_active": true, "_components": [ { - "__id__": 306 + "__id__": 410 }, { - "__id__": 308 + "__id__": 412 }, { - "__id__": 310 + "__id__": 414 } ], "_prefab": { - "__id__": 312 + "__id__": 416 }, "_lpos": { "__type__": "cc.Vec3", @@ -7049,11 +9372,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 305 + "__id__": 409 }, "_enabled": true, "__prefab": { - "__id__": 307 + "__id__": 411 }, "_contentSize": { "__type__": "cc.Size", @@ -7077,11 +9400,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 305 + "__id__": 409 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 413 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7122,11 +9445,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 305 + "__id__": 409 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 415 }, "_alignFlags": 45, "_target": null, @@ -7171,20 +9494,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 304 + "__id__": 408 }, "_children": [], "_active": true, "_components": [ { - "__id__": 314 + "__id__": 418 }, { - "__id__": 316 + "__id__": 420 } ], "_prefab": { - "__id__": 318 + "__id__": 422 }, "_lpos": { "__type__": "cc.Vec3", @@ -7221,11 +9544,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 313 + "__id__": 417 }, "_enabled": true, "__prefab": { - "__id__": 315 + "__id__": 419 }, "_contentSize": { "__type__": "cc.Size", @@ -7249,11 +9572,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 313 + "__id__": 417 }, "_enabled": true, "__prefab": { - "__id__": 317 + "__id__": 421 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7307,20 +9630,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 304 + "__id__": 408 }, "_children": [], "_active": true, "_components": [ { - "__id__": 320 + "__id__": 424 }, { - "__id__": 322 + "__id__": 426 } ], "_prefab": { - "__id__": 324 + "__id__": 428 }, "_lpos": { "__type__": "cc.Vec3", @@ -7357,11 +9680,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 423 }, "_enabled": true, "__prefab": { - "__id__": 321 + "__id__": 425 }, "_contentSize": { "__type__": "cc.Size", @@ -7385,11 +9708,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 319 + "__id__": 423 }, "_enabled": true, "__prefab": { - "__id__": 323 + "__id__": 427 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7466,11 +9789,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 408 }, "_enabled": true, "__prefab": { - "__id__": 326 + "__id__": 430 }, "_contentSize": { "__type__": "cc.Size", @@ -7494,11 +9817,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 304 + "__id__": 408 }, "_enabled": false, "__prefab": { - "__id__": 328 + "__id__": 432 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7552,11 +9875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 381 }, "_enabled": true, "__prefab": { - "__id__": 331 + "__id__": 435 }, "_contentSize": { "__type__": "cc.Size", @@ -7580,11 +9903,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 277 + "__id__": 381 }, "_enabled": false, "__prefab": { - "__id__": 333 + "__id__": 437 }, "_alignFlags": 20, "_target": null, @@ -7633,23 +9956,23 @@ }, "_children": [ { - "__id__": 336 + "__id__": 440 }, { - "__id__": 344 + "__id__": 448 } ], - "_active": true, + "_active": false, "_components": [ { - "__id__": 352 + "__id__": 456 }, { - "__id__": 354 + "__id__": 458 } ], "_prefab": { - "__id__": 356 + "__id__": 460 }, "_lpos": { "__type__": "cc.Vec3", @@ -7686,23 +10009,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 335 + "__id__": 439 }, "_children": [], "_active": true, "_components": [ { - "__id__": 337 + "__id__": 441 }, { - "__id__": 339 + "__id__": 443 }, { - "__id__": 341 + "__id__": 445 } ], "_prefab": { - "__id__": 343 + "__id__": 447 }, "_lpos": { "__type__": "cc.Vec3", @@ -7739,11 +10062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 336 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 338 + "__id__": 442 }, "_contentSize": { "__type__": "cc.Size", @@ -7767,11 +10090,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 336 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 340 + "__id__": 444 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7812,11 +10135,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 336 + "__id__": 440 }, "_enabled": true, "__prefab": { - "__id__": 342 + "__id__": 446 }, "_alignFlags": 45, "_target": null, @@ -7861,23 +10184,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 335 + "__id__": 439 }, "_children": [], "_active": true, "_components": [ { - "__id__": 345 + "__id__": 449 }, { - "__id__": 347 + "__id__": 451 }, { - "__id__": 349 + "__id__": 453 } ], "_prefab": { - "__id__": 351 + "__id__": 455 }, "_lpos": { "__type__": "cc.Vec3", @@ -7914,11 +10237,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 344 + "__id__": 448 }, "_enabled": true, "__prefab": { - "__id__": 346 + "__id__": 450 }, "_contentSize": { "__type__": "cc.Size", @@ -7942,11 +10265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 344 + "__id__": 448 }, "_enabled": true, "__prefab": { - "__id__": 348 + "__id__": 452 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8010,11 +10333,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 344 + "__id__": 448 }, "_enabled": true, "__prefab": { - "__id__": 350 + "__id__": 454 }, "_alignFlags": 45, "_target": null, @@ -8059,11 +10382,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 439 }, "_enabled": true, "__prefab": { - "__id__": 353 + "__id__": 457 }, "_contentSize": { "__type__": "cc.Size", @@ -8087,11 +10410,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 439 }, "_enabled": true, "__prefab": { - "__id__": 355 + "__id__": 459 }, "_alignFlags": 16, "_target": null, @@ -8140,29 +10463,29 @@ }, "_children": [ { - "__id__": 358 + "__id__": 462 }, { - "__id__": 364 + "__id__": 468 }, { - "__id__": 370 + "__id__": 474 }, { - "__id__": 376 + "__id__": 480 } ], "_active": false, "_components": [ { - "__id__": 382 + "__id__": 486 }, { - "__id__": 384 + "__id__": 488 } ], "_prefab": { - "__id__": 386 + "__id__": 490 }, "_lpos": { "__type__": "cc.Vec3", @@ -8199,20 +10522,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 357 + "__id__": 461 }, "_children": [], "_active": true, "_components": [ { - "__id__": 359 + "__id__": 463 }, { - "__id__": 361 + "__id__": 465 } ], "_prefab": { - "__id__": 363 + "__id__": 467 }, "_lpos": { "__type__": "cc.Vec3", @@ -8249,11 +10572,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 358 + "__id__": 462 }, "_enabled": true, "__prefab": { - "__id__": 360 + "__id__": 464 }, "_contentSize": { "__type__": "cc.Size", @@ -8277,11 +10600,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 358 + "__id__": 462 }, "_enabled": true, "__prefab": { - "__id__": 362 + "__id__": 466 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8335,20 +10658,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 357 + "__id__": 461 }, "_children": [], "_active": true, "_components": [ { - "__id__": 365 + "__id__": 469 }, { - "__id__": 367 + "__id__": 471 } ], "_prefab": { - "__id__": 369 + "__id__": 473 }, "_lpos": { "__type__": "cc.Vec3", @@ -8385,11 +10708,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 364 + "__id__": 468 }, "_enabled": true, "__prefab": { - "__id__": 366 + "__id__": 470 }, "_contentSize": { "__type__": "cc.Size", @@ -8413,11 +10736,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 364 + "__id__": 468 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 472 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8474,20 +10797,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 357 + "__id__": 461 }, "_children": [], "_active": true, "_components": [ { - "__id__": 371 + "__id__": 475 }, { - "__id__": 373 + "__id__": 477 } ], "_prefab": { - "__id__": 375 + "__id__": 479 }, "_lpos": { "__type__": "cc.Vec3", @@ -8524,11 +10847,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 370 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 372 + "__id__": 476 }, "_contentSize": { "__type__": "cc.Size", @@ -8552,11 +10875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 370 + "__id__": 474 }, "_enabled": true, "__prefab": { - "__id__": 374 + "__id__": 478 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8613,20 +10936,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 357 + "__id__": 461 }, "_children": [], "_active": true, "_components": [ { - "__id__": 377 + "__id__": 481 }, { - "__id__": 379 + "__id__": 483 } ], "_prefab": { - "__id__": 381 + "__id__": 485 }, "_lpos": { "__type__": "cc.Vec3", @@ -8663,11 +10986,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 376 + "__id__": 480 }, "_enabled": true, "__prefab": { - "__id__": 378 + "__id__": 482 }, "_contentSize": { "__type__": "cc.Size", @@ -8691,11 +11014,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 376 + "__id__": 480 }, "_enabled": true, "__prefab": { - "__id__": 380 + "__id__": 484 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8752,11 +11075,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 357 + "__id__": 461 }, "_enabled": true, "__prefab": { - "__id__": 383 + "__id__": 487 }, "_contentSize": { "__type__": "cc.Size", @@ -8780,11 +11103,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 357 + "__id__": 461 }, "_enabled": true, "__prefab": { - "__id__": 385 + "__id__": 489 }, "_alignFlags": 33, "_target": null, @@ -8833,42 +11156,42 @@ }, "_children": [ { - "__id__": 388 + "__id__": 492 }, { - "__id__": 394 + "__id__": 498 }, { - "__id__": 404 + "__id__": 508 }, { - "__id__": 420 + "__id__": 524 }, { - "__id__": 442 + "__id__": 546 }, { - "__id__": 470 + "__id__": 574 }, { - "__id__": 504 + "__id__": 608 } ], "_active": true, "_components": [ { - "__id__": 544 + "__id__": 648 }, { - "__id__": 546 + "__id__": 650 } ], "_prefab": { - "__id__": 548 + "__id__": 652 }, "_lpos": { "__type__": "cc.Vec3", - "x": -65.957, + "x": -74.469, "y": 82.79499999999999, "z": 0 }, @@ -8901,20 +11224,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [], "_active": true, "_components": [ { - "__id__": 389 + "__id__": 493 }, { - "__id__": 391 + "__id__": 495 } ], "_prefab": { - "__id__": 393 + "__id__": 497 }, "_lpos": { "__type__": "cc.Vec3", @@ -8951,11 +11274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 388 + "__id__": 492 }, "_enabled": true, "__prefab": { - "__id__": 390 + "__id__": 494 }, "_contentSize": { "__type__": "cc.Size", @@ -8979,11 +11302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 388 + "__id__": 492 }, "_enabled": true, "__prefab": { - "__id__": 392 + "__id__": 496 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9037,21 +11360,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [ { - "__id__": 395 + "__id__": 499 } ], "_active": true, "_components": [ { - "__id__": 401 + "__id__": 505 } ], "_prefab": { - "__id__": 403 + "__id__": 507 }, "_lpos": { "__type__": "cc.Vec3", @@ -9088,20 +11411,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 394 + "__id__": 498 }, "_children": [], "_active": true, "_components": [ { - "__id__": 396 + "__id__": 500 }, { - "__id__": 398 + "__id__": 502 } ], "_prefab": { - "__id__": 400 + "__id__": 504 }, "_lpos": { "__type__": "cc.Vec3", @@ -9138,11 +11461,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 395 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 397 + "__id__": 501 }, "_contentSize": { "__type__": "cc.Size", @@ -9166,11 +11489,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 395 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 399 + "__id__": 503 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9224,11 +11547,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 394 + "__id__": 498 }, "_enabled": true, "__prefab": { - "__id__": 402 + "__id__": 506 }, "_contentSize": { "__type__": "cc.Size", @@ -9265,24 +11588,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [ { - "__id__": 405 + "__id__": 509 }, { - "__id__": 411 + "__id__": 515 } ], "_active": true, "_components": [ { - "__id__": 417 + "__id__": 521 } ], "_prefab": { - "__id__": 419 + "__id__": 523 }, "_lpos": { "__type__": "cc.Vec3", @@ -9319,20 +11642,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 404 + "__id__": 508 }, "_children": [], "_active": true, "_components": [ { - "__id__": 406 + "__id__": 510 }, { - "__id__": 408 + "__id__": 512 } ], "_prefab": { - "__id__": 410 + "__id__": 514 }, "_lpos": { "__type__": "cc.Vec3", @@ -9369,11 +11692,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 405 + "__id__": 509 }, "_enabled": true, "__prefab": { - "__id__": 407 + "__id__": 511 }, "_contentSize": { "__type__": "cc.Size", @@ -9397,11 +11720,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 405 + "__id__": 509 }, "_enabled": true, "__prefab": { - "__id__": 409 + "__id__": 513 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9455,20 +11778,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 404 + "__id__": 508 }, "_children": [], "_active": true, "_components": [ { - "__id__": 412 + "__id__": 516 }, { - "__id__": 414 + "__id__": 518 } ], "_prefab": { - "__id__": 416 + "__id__": 520 }, "_lpos": { "__type__": "cc.Vec3", @@ -9505,11 +11828,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 515 }, "_enabled": true, "__prefab": { - "__id__": 413 + "__id__": 517 }, "_contentSize": { "__type__": "cc.Size", @@ -9533,11 +11856,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 411 + "__id__": 515 }, "_enabled": true, "__prefab": { - "__id__": 415 + "__id__": 519 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9591,11 +11914,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 404 + "__id__": 508 }, "_enabled": true, "__prefab": { - "__id__": 418 + "__id__": 522 }, "_contentSize": { "__type__": "cc.Size", @@ -9632,27 +11955,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [ { - "__id__": 421 + "__id__": 525 }, { - "__id__": 427 + "__id__": 531 }, { - "__id__": 433 + "__id__": 537 } ], "_active": true, "_components": [ { - "__id__": 439 + "__id__": 543 } ], "_prefab": { - "__id__": 441 + "__id__": 545 }, "_lpos": { "__type__": "cc.Vec3", @@ -9689,20 +12012,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 420 + "__id__": 524 }, "_children": [], "_active": true, "_components": [ { - "__id__": 422 + "__id__": 526 }, { - "__id__": 424 + "__id__": 528 } ], "_prefab": { - "__id__": 426 + "__id__": 530 }, "_lpos": { "__type__": "cc.Vec3", @@ -9739,11 +12062,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 421 + "__id__": 525 }, "_enabled": true, "__prefab": { - "__id__": 423 + "__id__": 527 }, "_contentSize": { "__type__": "cc.Size", @@ -9767,11 +12090,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 421 + "__id__": 525 }, "_enabled": true, "__prefab": { - "__id__": 425 + "__id__": 529 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9825,20 +12148,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 420 + "__id__": 524 }, "_children": [], "_active": true, "_components": [ { - "__id__": 428 + "__id__": 532 }, { - "__id__": 430 + "__id__": 534 } ], "_prefab": { - "__id__": 432 + "__id__": 536 }, "_lpos": { "__type__": "cc.Vec3", @@ -9875,11 +12198,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 531 }, "_enabled": true, "__prefab": { - "__id__": 429 + "__id__": 533 }, "_contentSize": { "__type__": "cc.Size", @@ -9903,11 +12226,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 427 + "__id__": 531 }, "_enabled": true, "__prefab": { - "__id__": 431 + "__id__": 535 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9961,20 +12284,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 420 + "__id__": 524 }, "_children": [], "_active": true, "_components": [ { - "__id__": 434 + "__id__": 538 }, { - "__id__": 436 + "__id__": 540 } ], "_prefab": { - "__id__": 438 + "__id__": 542 }, "_lpos": { "__type__": "cc.Vec3", @@ -10011,11 +12334,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 433 + "__id__": 537 }, "_enabled": true, "__prefab": { - "__id__": 435 + "__id__": 539 }, "_contentSize": { "__type__": "cc.Size", @@ -10039,11 +12362,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 433 + "__id__": 537 }, "_enabled": true, "__prefab": { - "__id__": 437 + "__id__": 541 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10097,11 +12420,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 420 + "__id__": 524 }, "_enabled": true, "__prefab": { - "__id__": 440 + "__id__": 544 }, "_contentSize": { "__type__": "cc.Size", @@ -10138,30 +12461,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [ { - "__id__": 443 + "__id__": 547 }, { - "__id__": 449 + "__id__": 553 }, { - "__id__": 455 + "__id__": 559 }, { - "__id__": 461 + "__id__": 565 } ], "_active": true, "_components": [ { - "__id__": 467 + "__id__": 571 } ], "_prefab": { - "__id__": 469 + "__id__": 573 }, "_lpos": { "__type__": "cc.Vec3", @@ -10198,20 +12521,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 442 + "__id__": 546 }, "_children": [], "_active": true, "_components": [ { - "__id__": 444 + "__id__": 548 }, { - "__id__": 446 + "__id__": 550 } ], "_prefab": { - "__id__": 448 + "__id__": 552 }, "_lpos": { "__type__": "cc.Vec3", @@ -10248,11 +12571,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 443 + "__id__": 547 }, "_enabled": true, "__prefab": { - "__id__": 445 + "__id__": 549 }, "_contentSize": { "__type__": "cc.Size", @@ -10276,11 +12599,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 443 + "__id__": 547 }, "_enabled": true, "__prefab": { - "__id__": 447 + "__id__": 551 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10334,20 +12657,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 442 + "__id__": 546 }, "_children": [], "_active": true, "_components": [ { - "__id__": 450 + "__id__": 554 }, { - "__id__": 452 + "__id__": 556 } ], "_prefab": { - "__id__": 454 + "__id__": 558 }, "_lpos": { "__type__": "cc.Vec3", @@ -10384,11 +12707,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 449 + "__id__": 553 }, "_enabled": true, "__prefab": { - "__id__": 451 + "__id__": 555 }, "_contentSize": { "__type__": "cc.Size", @@ -10412,11 +12735,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 449 + "__id__": 553 }, "_enabled": true, "__prefab": { - "__id__": 453 + "__id__": 557 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10470,20 +12793,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 442 + "__id__": 546 }, "_children": [], "_active": true, "_components": [ { - "__id__": 456 + "__id__": 560 }, { - "__id__": 458 + "__id__": 562 } ], "_prefab": { - "__id__": 460 + "__id__": 564 }, "_lpos": { "__type__": "cc.Vec3", @@ -10520,11 +12843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 455 + "__id__": 559 }, "_enabled": true, "__prefab": { - "__id__": 457 + "__id__": 561 }, "_contentSize": { "__type__": "cc.Size", @@ -10548,11 +12871,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 455 + "__id__": 559 }, "_enabled": true, "__prefab": { - "__id__": 459 + "__id__": 563 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10606,20 +12929,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 442 + "__id__": 546 }, "_children": [], "_active": true, "_components": [ { - "__id__": 462 + "__id__": 566 }, { - "__id__": 464 + "__id__": 568 } ], "_prefab": { - "__id__": 466 + "__id__": 570 }, "_lpos": { "__type__": "cc.Vec3", @@ -10656,11 +12979,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 565 }, "_enabled": true, "__prefab": { - "__id__": 463 + "__id__": 567 }, "_contentSize": { "__type__": "cc.Size", @@ -10684,11 +13007,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 461 + "__id__": 565 }, "_enabled": true, "__prefab": { - "__id__": 465 + "__id__": 569 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10742,11 +13065,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 442 + "__id__": 546 }, "_enabled": true, "__prefab": { - "__id__": 468 + "__id__": 572 }, "_contentSize": { "__type__": "cc.Size", @@ -10783,33 +13106,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [ { - "__id__": 471 + "__id__": 575 }, { - "__id__": 477 + "__id__": 581 }, { - "__id__": 483 + "__id__": 587 }, { - "__id__": 489 + "__id__": 593 }, { - "__id__": 495 + "__id__": 599 } ], "_active": true, "_components": [ { - "__id__": 501 + "__id__": 605 } ], "_prefab": { - "__id__": 503 + "__id__": 607 }, "_lpos": { "__type__": "cc.Vec3", @@ -10846,20 +13169,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 470 + "__id__": 574 }, "_children": [], "_active": true, "_components": [ { - "__id__": 472 + "__id__": 576 }, { - "__id__": 474 + "__id__": 578 } ], "_prefab": { - "__id__": 476 + "__id__": 580 }, "_lpos": { "__type__": "cc.Vec3", @@ -10896,11 +13219,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 471 + "__id__": 575 }, "_enabled": true, "__prefab": { - "__id__": 473 + "__id__": 577 }, "_contentSize": { "__type__": "cc.Size", @@ -10924,11 +13247,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 471 + "__id__": 575 }, "_enabled": true, "__prefab": { - "__id__": 475 + "__id__": 579 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10982,20 +13305,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 470 + "__id__": 574 }, "_children": [], "_active": true, "_components": [ { - "__id__": 478 + "__id__": 582 }, { - "__id__": 480 + "__id__": 584 } ], "_prefab": { - "__id__": 482 + "__id__": 586 }, "_lpos": { "__type__": "cc.Vec3", @@ -11032,11 +13355,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 477 + "__id__": 581 }, "_enabled": true, "__prefab": { - "__id__": 479 + "__id__": 583 }, "_contentSize": { "__type__": "cc.Size", @@ -11060,11 +13383,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 477 + "__id__": 581 }, "_enabled": true, "__prefab": { - "__id__": 481 + "__id__": 585 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11118,20 +13441,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 470 + "__id__": 574 }, "_children": [], "_active": true, "_components": [ { - "__id__": 484 + "__id__": 588 }, { - "__id__": 486 + "__id__": 590 } ], "_prefab": { - "__id__": 488 + "__id__": 592 }, "_lpos": { "__type__": "cc.Vec3", @@ -11168,11 +13491,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 483 + "__id__": 587 }, "_enabled": true, "__prefab": { - "__id__": 485 + "__id__": 589 }, "_contentSize": { "__type__": "cc.Size", @@ -11196,11 +13519,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 483 + "__id__": 587 }, "_enabled": true, "__prefab": { - "__id__": 487 + "__id__": 591 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11254,20 +13577,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 470 + "__id__": 574 }, "_children": [], "_active": true, "_components": [ { - "__id__": 490 + "__id__": 594 }, { - "__id__": 492 + "__id__": 596 } ], "_prefab": { - "__id__": 494 + "__id__": 598 }, "_lpos": { "__type__": "cc.Vec3", @@ -11304,11 +13627,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 489 + "__id__": 593 }, "_enabled": true, "__prefab": { - "__id__": 491 + "__id__": 595 }, "_contentSize": { "__type__": "cc.Size", @@ -11332,11 +13655,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 489 + "__id__": 593 }, "_enabled": true, "__prefab": { - "__id__": 493 + "__id__": 597 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11390,20 +13713,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 470 + "__id__": 574 }, "_children": [], "_active": true, "_components": [ { - "__id__": 496 + "__id__": 600 }, { - "__id__": 498 + "__id__": 602 } ], "_prefab": { - "__id__": 500 + "__id__": 604 }, "_lpos": { "__type__": "cc.Vec3", @@ -11440,11 +13763,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 599 }, "_enabled": true, "__prefab": { - "__id__": 497 + "__id__": 601 }, "_contentSize": { "__type__": "cc.Size", @@ -11468,11 +13791,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 495 + "__id__": 599 }, "_enabled": true, "__prefab": { - "__id__": 499 + "__id__": 603 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11526,11 +13849,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 470 + "__id__": 574 }, "_enabled": true, "__prefab": { - "__id__": 502 + "__id__": 606 }, "_contentSize": { "__type__": "cc.Size", @@ -11567,36 +13890,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 387 + "__id__": 491 }, "_children": [ { - "__id__": 505 + "__id__": 609 }, { - "__id__": 511 + "__id__": 615 }, { - "__id__": 517 + "__id__": 621 }, { - "__id__": 523 + "__id__": 627 }, { - "__id__": 529 + "__id__": 633 }, { - "__id__": 535 + "__id__": 639 } ], "_active": true, "_components": [ { - "__id__": 541 + "__id__": 645 } ], "_prefab": { - "__id__": 543 + "__id__": 647 }, "_lpos": { "__type__": "cc.Vec3", @@ -11633,20 +13956,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 506 + "__id__": 610 }, { - "__id__": 508 + "__id__": 612 } ], "_prefab": { - "__id__": 510 + "__id__": 614 }, "_lpos": { "__type__": "cc.Vec3", @@ -11683,11 +14006,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 609 }, "_enabled": true, "__prefab": { - "__id__": 507 + "__id__": 611 }, "_contentSize": { "__type__": "cc.Size", @@ -11711,11 +14034,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 505 + "__id__": 609 }, "_enabled": true, "__prefab": { - "__id__": 509 + "__id__": 613 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11769,20 +14092,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 512 + "__id__": 616 }, { - "__id__": 514 + "__id__": 618 } ], "_prefab": { - "__id__": 516 + "__id__": 620 }, "_lpos": { "__type__": "cc.Vec3", @@ -11819,11 +14142,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 513 + "__id__": 617 }, "_contentSize": { "__type__": "cc.Size", @@ -11847,11 +14170,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 511 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 515 + "__id__": 619 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11905,20 +14228,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 518 + "__id__": 622 }, { - "__id__": 520 + "__id__": 624 } ], "_prefab": { - "__id__": 522 + "__id__": 626 }, "_lpos": { "__type__": "cc.Vec3", @@ -11955,11 +14278,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 621 }, "_enabled": true, "__prefab": { - "__id__": 519 + "__id__": 623 }, "_contentSize": { "__type__": "cc.Size", @@ -11983,11 +14306,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 517 + "__id__": 621 }, "_enabled": true, "__prefab": { - "__id__": 521 + "__id__": 625 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12041,20 +14364,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 524 + "__id__": 628 }, { - "__id__": 526 + "__id__": 630 } ], "_prefab": { - "__id__": 528 + "__id__": 632 }, "_lpos": { "__type__": "cc.Vec3", @@ -12091,11 +14414,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 523 + "__id__": 627 }, "_enabled": true, "__prefab": { - "__id__": 525 + "__id__": 629 }, "_contentSize": { "__type__": "cc.Size", @@ -12119,11 +14442,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 523 + "__id__": 627 }, "_enabled": true, "__prefab": { - "__id__": 527 + "__id__": 631 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12177,20 +14500,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 530 + "__id__": 634 }, { - "__id__": 532 + "__id__": 636 } ], "_prefab": { - "__id__": 534 + "__id__": 638 }, "_lpos": { "__type__": "cc.Vec3", @@ -12227,11 +14550,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 633 }, "_enabled": true, "__prefab": { - "__id__": 531 + "__id__": 635 }, "_contentSize": { "__type__": "cc.Size", @@ -12255,11 +14578,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 529 + "__id__": 633 }, "_enabled": true, "__prefab": { - "__id__": 533 + "__id__": 637 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12313,20 +14636,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 504 + "__id__": 608 }, "_children": [], "_active": true, "_components": [ { - "__id__": 536 + "__id__": 640 }, { - "__id__": 538 + "__id__": 642 } ], "_prefab": { - "__id__": 540 + "__id__": 644 }, "_lpos": { "__type__": "cc.Vec3", @@ -12363,11 +14686,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 535 + "__id__": 639 }, "_enabled": true, "__prefab": { - "__id__": 537 + "__id__": 641 }, "_contentSize": { "__type__": "cc.Size", @@ -12391,11 +14714,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 535 + "__id__": 639 }, "_enabled": true, "__prefab": { - "__id__": 539 + "__id__": 643 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12449,11 +14772,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 504 + "__id__": 608 }, "_enabled": true, "__prefab": { - "__id__": 542 + "__id__": 646 }, "_contentSize": { "__type__": "cc.Size", @@ -12490,11 +14813,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 491 }, "_enabled": true, "__prefab": { - "__id__": 545 + "__id__": 649 }, "_contentSize": { "__type__": "cc.Size", @@ -12518,15 +14841,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 387 + "__id__": 491 }, "_enabled": true, "__prefab": { - "__id__": 547 + "__id__": 651 }, "_alignFlags": 9, "_target": null, - "_left": -30.956999999999994, + "_left": -39.468999999999994, "_right": 0, "_top": -17.794999999999987, "_bottom": 0, @@ -12571,29 +14894,29 @@ }, "_children": [ { - "__id__": 550 + "__id__": 654 }, { - "__id__": 558 + "__id__": 662 }, { - "__id__": 564 + "__id__": 668 } ], "_active": true, "_components": [ { - "__id__": 570 + "__id__": 674 }, { - "__id__": 572 + "__id__": 676 }, { - "__id__": 574 + "__id__": 678 } ], "_prefab": { - "__id__": 576 + "__id__": 680 }, "_lpos": { "__type__": "cc.Vec3", @@ -12630,23 +14953,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 549 + "__id__": 653 }, "_children": [], "_active": true, "_components": [ { - "__id__": 551 + "__id__": 655 }, { - "__id__": 553 + "__id__": 657 }, { - "__id__": 555 + "__id__": 659 } ], "_prefab": { - "__id__": 557 + "__id__": 661 }, "_lpos": { "__type__": "cc.Vec3", @@ -12683,11 +15006,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 550 + "__id__": 654 }, "_enabled": true, "__prefab": { - "__id__": 552 + "__id__": 656 }, "_contentSize": { "__type__": "cc.Size", @@ -12711,11 +15034,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 550 + "__id__": 654 }, "_enabled": false, "__prefab": { - "__id__": 554 + "__id__": 658 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12756,11 +15079,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 550 + "__id__": 654 }, "_enabled": true, "__prefab": { - "__id__": 556 + "__id__": 660 }, "_alignFlags": 45, "_target": null, @@ -12805,20 +15128,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 549 + "__id__": 653 }, "_children": [], "_active": true, "_components": [ { - "__id__": 559 + "__id__": 663 }, { - "__id__": 561 + "__id__": 665 } ], "_prefab": { - "__id__": 563 + "__id__": 667 }, "_lpos": { "__type__": "cc.Vec3", @@ -12855,11 +15178,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 558 + "__id__": 662 }, "_enabled": true, "__prefab": { - "__id__": 560 + "__id__": 664 }, "_contentSize": { "__type__": "cc.Size", @@ -12883,11 +15206,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 558 + "__id__": 662 }, "_enabled": true, "__prefab": { - "__id__": 562 + "__id__": 666 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12941,20 +15264,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 549 + "__id__": 653 }, "_children": [], "_active": true, "_components": [ { - "__id__": 565 + "__id__": 669 }, { - "__id__": 567 + "__id__": 671 } ], "_prefab": { - "__id__": 569 + "__id__": 673 }, "_lpos": { "__type__": "cc.Vec3", @@ -12991,11 +15314,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 668 }, "_enabled": true, "__prefab": { - "__id__": 566 + "__id__": 670 }, "_contentSize": { "__type__": "cc.Size", @@ -13019,11 +15342,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 564 + "__id__": 668 }, "_enabled": true, "__prefab": { - "__id__": 568 + "__id__": 672 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13100,11 +15423,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 549 + "__id__": 653 }, "_enabled": true, "__prefab": { - "__id__": 571 + "__id__": 675 }, "_contentSize": { "__type__": "cc.Size", @@ -13128,11 +15451,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 549 + "__id__": 653 }, "_enabled": false, "__prefab": { - "__id__": 573 + "__id__": 677 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13173,11 +15496,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 549 + "__id__": 653 }, "_enabled": true, "__prefab": { - "__id__": 575 + "__id__": 679 }, "_alignFlags": 36, "_target": null, @@ -13226,29 +15549,29 @@ }, "_children": [ { - "__id__": 578 + "__id__": 682 }, { - "__id__": 586 + "__id__": 690 }, { - "__id__": 592 + "__id__": 696 } ], "_active": true, "_components": [ { - "__id__": 598 + "__id__": 702 }, { - "__id__": 600 + "__id__": 704 }, { - "__id__": 602 + "__id__": 706 } ], "_prefab": { - "__id__": 604 + "__id__": 708 }, "_lpos": { "__type__": "cc.Vec3", @@ -13285,23 +15608,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 577 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 579 + "__id__": 683 }, { - "__id__": 581 + "__id__": 685 }, { - "__id__": 583 + "__id__": 687 } ], "_prefab": { - "__id__": 585 + "__id__": 689 }, "_lpos": { "__type__": "cc.Vec3", @@ -13338,11 +15661,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 682 }, "_enabled": true, "__prefab": { - "__id__": 580 + "__id__": 684 }, "_contentSize": { "__type__": "cc.Size", @@ -13366,11 +15689,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 682 }, "_enabled": false, "__prefab": { - "__id__": 582 + "__id__": 686 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13411,11 +15734,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 578 + "__id__": 682 }, "_enabled": true, "__prefab": { - "__id__": 584 + "__id__": 688 }, "_alignFlags": 45, "_target": null, @@ -13460,20 +15783,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 577 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 587 + "__id__": 691 }, { - "__id__": 589 + "__id__": 693 } ], "_prefab": { - "__id__": 591 + "__id__": 695 }, "_lpos": { "__type__": "cc.Vec3", @@ -13510,11 +15833,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 690 }, "_enabled": true, "__prefab": { - "__id__": 588 + "__id__": 692 }, "_contentSize": { "__type__": "cc.Size", @@ -13538,11 +15861,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 586 + "__id__": 690 }, "_enabled": true, "__prefab": { - "__id__": 590 + "__id__": 694 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13596,20 +15919,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 577 + "__id__": 681 }, "_children": [], "_active": true, "_components": [ { - "__id__": 593 + "__id__": 697 }, { - "__id__": 595 + "__id__": 699 } ], "_prefab": { - "__id__": 597 + "__id__": 701 }, "_lpos": { "__type__": "cc.Vec3", @@ -13646,11 +15969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 592 + "__id__": 696 }, "_enabled": true, "__prefab": { - "__id__": 594 + "__id__": 698 }, "_contentSize": { "__type__": "cc.Size", @@ -13674,11 +15997,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 592 + "__id__": 696 }, "_enabled": true, "__prefab": { - "__id__": 596 + "__id__": 700 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13755,11 +16078,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 681 }, "_enabled": true, "__prefab": { - "__id__": 599 + "__id__": 703 }, "_contentSize": { "__type__": "cc.Size", @@ -13783,11 +16106,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 681 }, "_enabled": false, "__prefab": { - "__id__": 601 + "__id__": 705 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13828,11 +16151,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 681 }, "_enabled": true, "__prefab": { - "__id__": 603 + "__id__": 707 }, "_alignFlags": 12, "_target": null, @@ -13881,7 +16204,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 606 + "__id__": 710 }, "_contentSize": { "__type__": "cc.Size", @@ -13909,42 +16232,42 @@ }, "_enabled": true, "__prefab": { - "__id__": 608 + "__id__": 712 }, "Lock": null, "unLock": null, "oinfo_node": { - "__id__": 335 + "__id__": 439 }, "name_node": { - "__id__": 124 + "__id__": 228 }, "icon_node": { - "__id__": 101 + "__id__": 83 }, "cost_node": { - "__id__": 257 + "__id__": 361 }, "Ckind_node": { - "__id__": 357 + "__id__": 461 }, "BG_node": { "__id__": 10 }, "NF_node": { - "__id__": 132 + "__id__": 236 }, "HF_node": { - "__id__": 186 + "__id__": 290 }, "lv_node": { - "__id__": 387 + "__id__": 491 }, "ap_node": { - "__id__": 577 + "__id__": 681 }, "hp_node": { - "__id__": 549 + "__id__": 653 }, "_id": "" }, @@ -13965,7 +16288,7 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": [ { - "__id__": 243 + "__id__": 347 } ] } diff --git a/assets/resources/gui/element/hnode.prefab b/assets/resources/gui/element/hnode.prefab index f7b13a2d..8ffe96d1 100644 --- a/assets/resources/gui/element/hnode.prefab +++ b/assets/resources/gui/element/hnode.prefab @@ -25,43 +25,55 @@ "__id__": 10 }, { - "__id__": 23 + "__id__": 18 }, { - "__id__": 40 + "__id__": 31 }, { - "__id__": 68 + "__id__": 77 }, { - "__id__": 96 + "__id__": 105 }, { - "__id__": 142 + "__id__": 133 }, { - "__id__": 188 + "__id__": 179 }, { - "__id__": 194 + "__id__": 185 + }, + { + "__id__": 223 + }, + { + "__id__": 229 + }, + { + "__id__": 246 } ], "_active": true, "_components": [ { - "__id__": 232 + "__id__": 263 }, { - "__id__": 234 + "__id__": 265 + }, + { + "__id__": 267 } ], "_prefab": { - "__id__": 236 + "__id__": 269 }, "_lpos": { "__type__": "cc.Vec3", - "x": -295, - "y": 0, + "x": 0, + "y": -170, "z": 0 }, "_lrot": { @@ -89,7 +101,7 @@ }, { "__type__": "cc.Node", - "_name": "bg5", + "_name": "bg", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -126,8 +138,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 0.5, - "y": 0.5, + "x": 1, + "y": 1, "z": 1 }, "_mobility": 0, @@ -152,6 +164,181 @@ "__prefab": { "__id__": 4 }, + "_contentSize": { + "__type__": "cc.Size", + "width": 700, + "height": 240 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b6dUPmZpFAZYNhEIj3sXJe" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 6 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 245, + "g": 243, + "b": 243, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@abf7b", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": true, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "96V73fH2RIE6EW0rLn95YC" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 2 + }, + "_enabled": true, + "__prefab": { + "__id__": 8 + }, + "_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": 48, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "53YPPZKqFJpKsYS99lcSCA" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "46MuIooQtFcacsEIg3ZdJI", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "bg5", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 11 + }, + { + "__id__": 13 + }, + { + "__id__": 15 + } + ], + "_prefab": { + "__id__": 17 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -275.074, + "y": 43.278, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 10 + }, + "_enabled": true, + "__prefab": { + "__id__": 12 + }, "_contentSize": { "__type__": "cc.Size", "width": 200, @@ -174,11 +361,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2 + "__id__": 10 }, "_enabled": true, "__prefab": { - "__id__": 6 + "__id__": 14 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -191,7 +378,7 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@536b9", + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@f8fdb", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -207,7 +394,7 @@ "_isTrimmedMode": true, "_useGrayscale": false, "_atlas": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", "__expectedType__": "cc.SpriteAtlas" }, "_id": "" @@ -222,11 +409,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 2 + "__id__": 10 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 8 + "__id__": 16 }, "_alignFlags": 45, "_target": null, @@ -277,28 +464,28 @@ "_active": true, "_components": [ { - "__id__": 11 + "__id__": 19 }, { - "__id__": 13 + "__id__": 21 }, { - "__id__": 15 + "__id__": 23 }, { - "__id__": 17 + "__id__": 25 }, { - "__id__": 20 + "__id__": 28 } ], "_prefab": { - "__id__": 22 + "__id__": 30 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 16.804, + "x": -275.074, + "y": 51.124, "z": 0 }, "_lrot": { @@ -310,8 +497,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": -1, - "y": 1, + "x": -1.5, + "y": 1.5, "z": 1 }, "_mobility": 0, @@ -330,16 +517,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 18 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 12 + "__id__": 20 }, "_contentSize": { "__type__": "cc.Size", - "width": 100, - "height": 100 + "width": 128, + "height": 128 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -358,11 +545,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 14 + "__id__": 22 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -374,7 +561,10 @@ "b": 255, "a": 255 }, - "_spriteFrame": null, + "_spriteFrame": { + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05@46381", + "__expectedType__": "cc.SpriteFrame" + }, "_type": 0, "_fillType": 0, "_sizeMode": 1, @@ -387,7 +577,10 @@ "_fillRange": 0, "_isTrimmedMode": true, "_useGrayscale": false, - "_atlas": null, + "_atlas": { + "__uuid__": "1fda2882-2baf-4446-96cc-492ef2722f05", + "__expectedType__": "cc.SpriteAtlas" + }, "_id": "" }, { @@ -400,11 +593,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 16 + "__id__": 24 }, "playOnLoad": true, "_clips": [ @@ -429,15 +622,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 18 }, "_enabled": true, "__prefab": { - "__id__": 18 + "__id__": 26 }, "clickEvents": [ { - "__id__": 19 + "__id__": 27 } ], "_interactable": true, @@ -476,7 +669,9 @@ "_disabledSprite": null, "_duration": 0.1, "_zoomScale": 1.2, - "_target": null, + "_target": { + "__id__": 18 + }, "_id": "" }, { @@ -499,11 +694,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 10 + "__id__": 18 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 21 + "__id__": 29 }, "_alignFlags": 18, "_target": null, @@ -544,39 +739,45 @@ }, { "__type__": "cc.Node", - "_name": "sell", + "_name": "NF", "_objFlags": 0, "__editorExtras__": {}, "_parent": { "__id__": 1 }, "_children": [ - { - "__id__": 24 - } - ], - "_active": true, - "_components": [ - { - "__id__": 30 - }, { "__id__": 32 }, { - "__id__": 34 + "__id__": 40 }, { - "__id__": 37 + "__id__": 48 + }, + { + "__id__": 56 + }, + { + "__id__": 64 + } + ], + "_active": false, + "_components": [ + { + "__id__": 72 + }, + { + "__id__": 74 } ], "_prefab": { - "__id__": 39 + "__id__": 76 }, "_lpos": { "__type__": "cc.Vec3", - "x": 72.111, - "y": 0, + "x": -275.074, + "y": 43.278, "z": 0 }, "_lrot": { @@ -588,8 +789,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 0.5, - "y": 0.5, + "x": 1, + "y": 1, "z": 1 }, "_mobility": 0, @@ -604,29 +805,32 @@ }, { "__type__": "cc.Node", - "_name": "Label", - "_objFlags": 512, + "_name": "lv1", + "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 23 + "__id__": 31 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 25 + "__id__": 33 }, { - "__id__": 27 + "__id__": 35 + }, + { + "__id__": 37 } ], "_prefab": { - "__id__": 29 + "__id__": 39 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 1.673, + "y": 0, "z": 0 }, "_lrot": { @@ -658,16 +862,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 32 }, "_enabled": true, "__prefab": { - "__id__": 26 + "__id__": 34 }, "_contentSize": { "__type__": "cc.Size", - "width": 50, - "height": 170 + "width": 100, + "height": 110.23 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -678,19 +882,19 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "beLiMTPttGcq3lnu7v4T24" + "fileId": "c57F8z/HBFNqjgb5xG4GtI" }, { - "__type__": "cc.Label", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 24 + "__id__": 32 }, "_enabled": true, "__prefab": { - "__id__": 28 + "__id__": 36 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -702,117 +906,8 @@ "b": 255, "a": 255 }, - "_string": "出售", - "_horizontalAlign": 1, - "_verticalAlign": 1, - "_actualFontSize": 45, - "_fontSize": 45, - "_fontFamily": "Arial", - "_lineHeight": 55, - "_overflow": 1, - "_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": 255 - }, - "_outlineWidth": 3, - "_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": "51Wu0y8SdOULl5DoOOp3rz" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "2bHJzGsaZL07qUuOeI326l", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": { - "__id__": 31 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 80, - "height": 210 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4cFZYaVY1KjqFaFxy/FjK9" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": { - "__id__": 33 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 143, - "b": 0, - "a": 255 - }, "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@abf7b", + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@d5c11", "__expectedType__": "cc.SpriteFrame" }, "_type": 1, @@ -826,7 +921,7 @@ "_fillStart": 0, "_fillRange": 0, "_isTrimmedMode": true, - "_useGrayscale": true, + "_useGrayscale": false, "_atlas": { "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", "__expectedType__": "cc.SpriteAtlas" @@ -835,79 +930,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "13NwE3uwdMeZLanD/Kirhv" - }, - { - "__type__": "cc.Button", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 23 - }, - "_enabled": true, - "__prefab": { - "__id__": 35 - }, - "clickEvents": [ - { - "__id__": 36 - } - ], - "_interactable": true, - "_transition": 3, - "_normalColor": { - "__type__": "cc.Color", - "r": 214, - "g": 214, - "b": 214, - "a": 255 - }, - "_hoverColor": { - "__type__": "cc.Color", - "r": 211, - "g": 211, - "b": 211, - "a": 255 - }, - "_pressedColor": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_disabledColor": { - "__type__": "cc.Color", - "r": 124, - "g": 124, - "b": 124, - "a": 255 - }, - "_normalSprite": null, - "_hoverSprite": null, - "_pressedSprite": null, - "_disabledSprite": null, - "_duration": 0.1, - "_zoomScale": 1.2, - "_target": { - "__id__": 23 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "56wpoEM/ZMrpxad3T7+vHu" - }, - { - "__type__": "cc.ClickEvent", - "target": { - "__id__": 1 - }, - "component": "", - "_componentId": "a832fh9yR9LJK1kR+tZ1lin", - "handler": "onSellHero", - "customEventData": "" + "fileId": "492EvPQ0ZF979/V3VTLahg" }, { "__type__": "cc.Widget", @@ -915,13 +938,13 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 23 + "__id__": 32 }, - "_enabled": false, + "_enabled": true, "__prefab": { "__id__": 38 }, - "_alignFlags": 44, + "_alignFlags": 45, "_target": null, "_left": 0, "_right": 0, @@ -935,15 +958,15 @@ "_isAbsBottom": true, "_isAbsHorizontalCenter": true, "_isAbsVerticalCenter": true, - "_originalWidth": 110, - "_originalHeight": 0, + "_originalWidth": 181, + "_originalHeight": 202, "_alignMode": 2, "_lockFlags": 0, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "6bdxa82p5HPqhKb3e5YPRm" + "fileId": "ecPV63g7NBoJNNrjzGPHj8" }, { "__type__": "cc.PrefabInfo", @@ -953,7 +976,796 @@ "asset": { "__id__": 0 }, - "fileId": "02JrX+YSZAXZFrDj1ZF6Vq", + "fileId": "a9ikMW9KRNsrEXcI6Nwxso", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lv2", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 31 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 41 + }, + { + "__id__": 43 + }, + { + "__id__": 45 + } + ], + "_prefab": { + "__id__": 47 + }, + "_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": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 42 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 220, + "height": 220 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "82ycXHnXxFtbdke+92iKu4" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 44 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@cb195", + "__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": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c9Lx6Fy05DiabhsB1udGhJ" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 40 + }, + "_enabled": true, + "__prefab": { + "__id__": 46 + }, + "_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": 181, + "_originalHeight": 202, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "17ITU12AdCSZJ+0iJtU0GT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "c2HKm7BvFLg7DTlF5ZW2NN", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lv3", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 31 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 49 + }, + { + "__id__": 51 + }, + { + "__id__": 53 + } + ], + "_prefab": { + "__id__": 55 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 48 + }, + "_enabled": true, + "__prefab": { + "__id__": 50 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "d27LrWUqBPSr+iA8cXfhND" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 48 + }, + "_enabled": true, + "__prefab": { + "__id__": 52 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@8de73", + "__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": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "0a9kPOCl1GAIZ2GWm8jGK7" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 48 + }, + "_enabled": true, + "__prefab": { + "__id__": 54 + }, + "_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": 181, + "_originalHeight": 202, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "12qDOWc2dHpZQvkBPhR4TK" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "5dmFh5IPFBNZ9DkdY0vt05", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lv4", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 31 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 57 + }, + { + "__id__": 59 + }, + { + "__id__": 61 + } + ], + "_prefab": { + "__id__": 63 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 58 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2e4mpfuiBPXYZrY5N860qZ" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 60 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@4fde0", + "__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": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "27dSxRXDNE844EHvQ5KBlv" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 56 + }, + "_enabled": true, + "__prefab": { + "__id__": 62 + }, + "_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": 181, + "_originalHeight": 202, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "89V0mJwKFM9ZaAoX76guGI" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "ca2zjIyPJPB7Sa0+NBukWq", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "lv5", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 31 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 65 + }, + { + "__id__": 67 + }, + { + "__id__": 69 + } + ], + "_prefab": { + "__id__": 71 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 64 + }, + "_enabled": true, + "__prefab": { + "__id__": 66 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 170, + "height": 230 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "7aVYPzbapCToTj7Ol067xD" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 64 + }, + "_enabled": true, + "__prefab": { + "__id__": 68 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@fc735", + "__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": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c4PHyPQGlIxL31cPnbY1mz" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 64 + }, + "_enabled": true, + "__prefab": { + "__id__": 70 + }, + "_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": 181, + "_originalHeight": 202, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "e34ErdQZ5NY4upMVsDXAN3" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "4aO5bDvVhBaaoH/5Ud2Pvf", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": true, + "__prefab": { + "__id__": 73 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 110, + "height": 110 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ceVADeu8dAtIO68JO53JvD" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 31 + }, + "_enabled": false, + "__prefab": { + "__id__": 75 + }, + "_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": "cdQj7DsrhBI6rV6CyV5D8Q" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "1bTN3e+IhJMo33yUkwdRd/", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -968,34 +1780,34 @@ }, "_children": [ { - "__id__": 41 + "__id__": 78 }, { - "__id__": 49 + "__id__": 86 }, { - "__id__": 55 + "__id__": 92 } ], "_active": true, "_components": [ { - "__id__": 61 + "__id__": 98 }, { - "__id__": 63 + "__id__": 100 }, { - "__id__": 65 + "__id__": 102 } ], "_prefab": { - "__id__": 67 + "__id__": 104 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": -12.461, + "x": -272.895, + "y": -60.632, "z": 0 }, "_lrot": { @@ -1027,23 +1839,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 40 + "__id__": 77 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 42 + "__id__": 79 }, { - "__id__": 44 + "__id__": 81 }, { - "__id__": 46 + "__id__": 83 } ], "_prefab": { - "__id__": 48 + "__id__": 85 }, "_lpos": { "__type__": "cc.Vec3", @@ -1080,11 +1892,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 43 + "__id__": 80 }, "_contentSize": { "__type__": "cc.Size", @@ -1108,11 +1920,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 45 + "__id__": 82 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1156,11 +1968,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 41 + "__id__": 78 }, "_enabled": true, "__prefab": { - "__id__": 47 + "__id__": 84 }, "_alignFlags": 45, "_target": null, @@ -1205,24 +2017,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 40 + "__id__": 77 }, "_children": [], "_active": true, "_components": [ { - "__id__": 50 + "__id__": 87 }, { - "__id__": 52 + "__id__": 89 } ], "_prefab": { - "__id__": 54 + "__id__": 91 }, "_lpos": { "__type__": "cc.Vec3", - "x": -30.048, + "x": -39.263, "y": 0, "z": 0 }, @@ -1255,16 +2067,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 49 + "__id__": 86 }, "_enabled": true, "__prefab": { - "__id__": 51 + "__id__": 88 }, "_contentSize": { "__type__": "cc.Size", - "width": 15, - "height": 15 + "width": 20, + "height": 20 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1283,11 +2095,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 49 + "__id__": 86 }, "_enabled": true, "__prefab": { - "__id__": 53 + "__id__": 90 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1341,20 +2153,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 40 + "__id__": 77 }, "_children": [], "_active": true, "_components": [ { - "__id__": 56 + "__id__": 93 }, { - "__id__": 58 + "__id__": 95 } ], "_prefab": { - "__id__": 60 + "__id__": 97 }, "_lpos": { "__type__": "cc.Vec3", @@ -1391,16 +2203,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 55 + "__id__": 92 }, "_enabled": true, "__prefab": { - "__id__": 57 + "__id__": 94 }, "_contentSize": { "__type__": "cc.Size", "width": 75, - "height": 20 + "height": 30 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1419,11 +2231,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 55 + "__id__": 92 }, "_enabled": true, "__prefab": { - "__id__": 59 + "__id__": 96 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1438,10 +2250,10 @@ "_string": "99999", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 20, - "_fontSize": 20, + "_actualFontSize": 25, + "_fontSize": 25, "_fontFamily": "Arial", - "_lineHeight": 20, + "_lineHeight": 30, "_overflow": 2, "_enableWrapText": true, "_font": null, @@ -1500,11 +2312,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 40 + "__id__": 77 }, "_enabled": true, "__prefab": { - "__id__": 62 + "__id__": 99 }, "_contentSize": { "__type__": "cc.Size", @@ -1528,11 +2340,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 40 + "__id__": 77 }, "_enabled": false, "__prefab": { - "__id__": 64 + "__id__": 101 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1573,11 +2385,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 40 + "__id__": 77 }, "_enabled": false, "__prefab": { - "__id__": 66 + "__id__": 103 }, "_alignFlags": 44, "_target": null, @@ -1626,34 +2438,34 @@ }, "_children": [ { - "__id__": 69 + "__id__": 106 }, { - "__id__": 77 + "__id__": 114 }, { - "__id__": 83 + "__id__": 120 } ], "_active": true, "_components": [ { - "__id__": 89 + "__id__": 126 }, { - "__id__": 91 + "__id__": 128 }, { - "__id__": 93 + "__id__": 130 } ], "_prefab": { - "__id__": 95 + "__id__": 132 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": -35.14, + "x": -272.895, + "y": -86.348, "z": 0 }, "_lrot": { @@ -1685,23 +2497,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 105 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { - "__id__": 70 + "__id__": 107 }, { - "__id__": 72 + "__id__": 109 }, { - "__id__": 74 + "__id__": 111 } ], "_prefab": { - "__id__": 76 + "__id__": 113 }, "_lpos": { "__type__": "cc.Vec3", @@ -1738,11 +2550,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 69 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 71 + "__id__": 108 }, "_contentSize": { "__type__": "cc.Size", @@ -1766,11 +2578,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 69 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 73 + "__id__": 110 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1814,11 +2626,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 69 + "__id__": 106 }, "_enabled": true, "__prefab": { - "__id__": 75 + "__id__": 112 }, "_alignFlags": 45, "_target": null, @@ -1863,24 +2675,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 105 }, "_children": [], "_active": true, "_components": [ { - "__id__": 78 + "__id__": 115 }, { - "__id__": 80 + "__id__": 117 } ], "_prefab": { - "__id__": 82 + "__id__": 119 }, "_lpos": { "__type__": "cc.Vec3", - "x": -30.048, + "x": -39.263, "y": 0, "z": 0 }, @@ -1913,16 +2725,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 79 + "__id__": 116 }, "_contentSize": { "__type__": "cc.Size", - "width": 15, - "height": 15 + "width": 20, + "height": 20 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -1941,11 +2753,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 77 + "__id__": 114 }, "_enabled": true, "__prefab": { - "__id__": 81 + "__id__": 118 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -1999,20 +2811,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 68 + "__id__": 105 }, "_children": [], "_active": true, "_components": [ { - "__id__": 84 + "__id__": 121 }, { - "__id__": 86 + "__id__": 123 } ], "_prefab": { - "__id__": 88 + "__id__": 125 }, "_lpos": { "__type__": "cc.Vec3", @@ -2049,16 +2861,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 85 + "__id__": 122 }, "_contentSize": { "__type__": "cc.Size", "width": 75, - "height": 20 + "height": 30 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -2077,11 +2889,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 83 + "__id__": 120 }, "_enabled": true, "__prefab": { - "__id__": 87 + "__id__": 124 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2096,10 +2908,10 @@ "_string": "99999", "_horizontalAlign": 1, "_verticalAlign": 1, - "_actualFontSize": 20, - "_fontSize": 20, + "_actualFontSize": 25, + "_fontSize": 25, "_fontFamily": "Arial", - "_lineHeight": 20, + "_lineHeight": 30, "_overflow": 2, "_enableWrapText": true, "_font": null, @@ -2158,11 +2970,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 105 }, "_enabled": true, "__prefab": { - "__id__": 90 + "__id__": 127 }, "_contentSize": { "__type__": "cc.Size", @@ -2186,11 +2998,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 105 }, "_enabled": false, "__prefab": { - "__id__": 92 + "__id__": 129 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -2231,11 +3043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 68 + "__id__": 105 }, "_enabled": false, "__prefab": { - "__id__": 94 + "__id__": 131 }, "_alignFlags": 44, "_target": null, @@ -2276,7 +3088,7 @@ }, { "__type__": "cc.Node", - "_name": "NF", + "_name": "HF", "_objFlags": 0, "__editorExtras__": {}, "_parent": { @@ -2284,23 +3096,76 @@ }, "_children": [ { - "__id__": 97 + "__id__": 134 }, { - "__id__": 105 + "__id__": 142 }, { - "__id__": 113 + "__id__": 150 }, { - "__id__": 121 + "__id__": 158 }, { - "__id__": 129 + "__id__": 166 } ], - "_active": true, + "_active": false, "_components": [ + { + "__id__": 174 + }, + { + "__id__": 176 + } + ], + "_prefab": { + "__id__": 178 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 45, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "lv1", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 133 + }, + "_children": [], + "_active": false, + "_components": [ + { + "__id__": 135 + }, { "__id__": 137 }, @@ -2340,1104 +3205,18 @@ }, "_id": "" }, - { - "__type__": "cc.Node", - "_name": "lv1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 98 - }, - { - "__id__": 100 - }, - { - "__id__": 102 - } - ], - "_prefab": { - "__id__": 104 - }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, { "__type__": "cc.UITransform", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 97 + "__id__": 134 }, "_enabled": true, "__prefab": { - "__id__": 99 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 100, - "height": 110.23 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c57F8z/HBFNqjgb5xG4GtI" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 97 - }, - "_enabled": true, - "__prefab": { - "__id__": 101 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@d5c11", - "__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": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "492EvPQ0ZF979/V3VTLahg" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 97 - }, - "_enabled": true, - "__prefab": { - "__id__": 103 - }, - "_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": 181, - "_originalHeight": 202, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ecPV63g7NBoJNNrjzGPHj8" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "a9ikMW9KRNsrEXcI6Nwxso", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lv2", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 106 - }, - { - "__id__": 108 - }, - { - "__id__": 110 - } - ], - "_prefab": { - "__id__": 112 - }, - "_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": 0.5, - "y": 0.5, - "z": 1 - }, - "_mobility": 0, - "_layer": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 105 - }, - "_enabled": true, - "__prefab": { - "__id__": 107 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 220, - "height": 220 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "82ycXHnXxFtbdke+92iKu4" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 105 - }, - "_enabled": true, - "__prefab": { - "__id__": 109 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@cb195", - "__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": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c9Lx6Fy05DiabhsB1udGhJ" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 105 - }, - "_enabled": true, - "__prefab": { - "__id__": 111 - }, - "_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": 181, - "_originalHeight": 202, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "17ITU12AdCSZJ+0iJtU0GT" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "c2HKm7BvFLg7DTlF5ZW2NN", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lv3", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 114 - }, - { - "__id__": 116 - }, - { - "__id__": 118 - } - ], - "_prefab": { - "__id__": 120 - }, - "_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": 1073741824, - "_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", - "width": 170, - "height": 230 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d27LrWUqBPSr+iA8cXfhND" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 113 - }, - "_enabled": true, - "__prefab": { - "__id__": 117 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@8de73", - "__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": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "0a9kPOCl1GAIZ2GWm8jGK7" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 113 - }, - "_enabled": true, - "__prefab": { - "__id__": 119 - }, - "_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": 181, - "_originalHeight": 202, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "12qDOWc2dHpZQvkBPhR4TK" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "5dmFh5IPFBNZ9DkdY0vt05", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lv4", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 122 - }, - { - "__id__": 124 - }, - { - "__id__": 126 - } - ], - "_prefab": { - "__id__": 128 - }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 121 - }, - "_enabled": true, - "__prefab": { - "__id__": 123 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 170, - "height": 230 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2e4mpfuiBPXYZrY5N860qZ" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 121 - }, - "_enabled": true, - "__prefab": { - "__id__": 125 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@4fde0", - "__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": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "27dSxRXDNE844EHvQ5KBlv" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 121 - }, - "_enabled": true, - "__prefab": { - "__id__": 127 - }, - "_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": 181, - "_originalHeight": 202, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "89V0mJwKFM9ZaAoX76guGI" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ca2zjIyPJPB7Sa0+NBukWq", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "lv5", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 96 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 130 - }, - { - "__id__": 132 - }, - { - "__id__": 134 - } - ], - "_prefab": { "__id__": 136 }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 129 - }, - "_enabled": true, - "__prefab": { - "__id__": 131 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 170, - "height": 230 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "7aVYPzbapCToTj7Ol067xD" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 129 - }, - "_enabled": true, - "__prefab": { - "__id__": 133 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@fc735", - "__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": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "c4PHyPQGlIxL31cPnbY1mz" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 129 - }, - "_enabled": true, - "__prefab": { - "__id__": 135 - }, - "_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": 181, - "_originalHeight": 202, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "e34ErdQZ5NY4upMVsDXAN3" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "4aO5bDvVhBaaoH/5Ud2Pvf", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 138 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 110, - "height": 110 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ceVADeu8dAtIO68JO53JvD" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 96 - }, - "_enabled": true, - "__prefab": { - "__id__": 140 - }, - "_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": "cdQj7DsrhBI6rV6CyV5D8Q" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "1bTN3e+IhJMo33yUkwdRd/", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "HF", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 1 - }, - "_children": [ - { - "__id__": 143 - }, - { - "__id__": 151 - }, - { - "__id__": 159 - }, - { - "__id__": 167 - }, - { - "__id__": 175 - } - ], - "_active": false, - "_components": [ - { - "__id__": 183 - }, - { - "__id__": 185 - } - ], - "_prefab": { - "__id__": 187 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 45, - "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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "lv1", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 142 - }, - "_children": [], - "_active": false, - "_components": [ - { - "__id__": 144 - }, - { - "__id__": 146 - }, - { - "__id__": 148 - } - ], - "_prefab": { - "__id__": 150 - }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 143 - }, - "_enabled": true, - "__prefab": { - "__id__": 145 - }, "_contentSize": { "__type__": "cc.Size", "width": 135, @@ -3460,11 +3239,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 134 }, "_enabled": true, "__prefab": { - "__id__": 147 + "__id__": 138 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3508,11 +3287,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 143 + "__id__": 134 }, "_enabled": true, "__prefab": { - "__id__": 149 + "__id__": 140 }, "_alignFlags": 45, "_target": null, @@ -3557,23 +3336,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 133 }, "_children": [], "_active": false, "_components": [ { - "__id__": 152 + "__id__": 143 }, { - "__id__": 154 + "__id__": 145 }, { - "__id__": 156 + "__id__": 147 } ], "_prefab": { - "__id__": 158 + "__id__": 149 }, "_lpos": { "__type__": "cc.Vec3", @@ -3610,11 +3389,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 142 }, "_enabled": true, "__prefab": { - "__id__": 153 + "__id__": 144 }, "_contentSize": { "__type__": "cc.Size", @@ -3638,11 +3417,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 142 }, "_enabled": true, "__prefab": { - "__id__": 155 + "__id__": 146 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3686,11 +3465,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 151 + "__id__": 142 }, "_enabled": true, "__prefab": { - "__id__": 157 + "__id__": 148 }, "_alignFlags": 45, "_target": null, @@ -3735,23 +3514,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 133 }, "_children": [], "_active": false, "_components": [ { - "__id__": 160 + "__id__": 151 }, { - "__id__": 162 + "__id__": 153 }, { - "__id__": 164 + "__id__": 155 } ], "_prefab": { - "__id__": 166 + "__id__": 157 }, "_lpos": { "__type__": "cc.Vec3", @@ -3788,11 +3567,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 159 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 161 + "__id__": 152 }, "_contentSize": { "__type__": "cc.Size", @@ -3816,11 +3595,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 159 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 163 + "__id__": 154 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3864,11 +3643,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 159 + "__id__": 150 }, "_enabled": true, "__prefab": { - "__id__": 165 + "__id__": 156 }, "_alignFlags": 45, "_target": null, @@ -3913,23 +3692,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 133 }, "_children": [], "_active": false, "_components": [ { - "__id__": 168 + "__id__": 159 }, { - "__id__": 170 + "__id__": 161 }, { - "__id__": 172 + "__id__": 163 } ], "_prefab": { - "__id__": 174 + "__id__": 165 }, "_lpos": { "__type__": "cc.Vec3", @@ -3966,11 +3745,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 169 + "__id__": 160 }, "_contentSize": { "__type__": "cc.Size", @@ -3994,11 +3773,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 171 + "__id__": 162 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4042,11 +3821,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 167 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 173 + "__id__": 164 }, "_alignFlags": 45, "_target": null, @@ -4091,23 +3870,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 142 + "__id__": 133 }, "_children": [], "_active": false, "_components": [ { - "__id__": 176 + "__id__": 167 }, { - "__id__": 178 + "__id__": 169 }, { - "__id__": 180 + "__id__": 171 } ], "_prefab": { - "__id__": 182 + "__id__": 173 }, "_lpos": { "__type__": "cc.Vec3", @@ -4144,11 +3923,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 177 + "__id__": 168 }, "_contentSize": { "__type__": "cc.Size", @@ -4172,11 +3951,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 179 + "__id__": 170 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4220,11 +3999,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 175 + "__id__": 166 }, "_enabled": true, "__prefab": { - "__id__": 181 + "__id__": 172 }, "_alignFlags": 45, "_target": null, @@ -4269,16 +4048,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 142 + "__id__": 133 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 175 }, "_contentSize": { "__type__": "cc.Size", - "width": 90, - "height": 90 + "width": 110, + "height": 110 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -4297,11 +4076,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 142 + "__id__": 133 }, - "_enabled": true, + "_enabled": false, "__prefab": { - "__id__": 186 + "__id__": 177 }, "_alignFlags": 45, "_target": null, @@ -4352,14 +4131,14 @@ "_active": false, "_components": [ { - "__id__": 189 + "__id__": 180 }, { - "__id__": 191 + "__id__": 182 } ], "_prefab": { - "__id__": 193 + "__id__": 184 }, "_lpos": { "__type__": "cc.Vec3", @@ -4396,11 +4175,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 181 }, "_contentSize": { "__type__": "cc.Size", @@ -4424,11 +4203,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 179 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 183 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4509,40 +4288,40 @@ }, "_children": [ { - "__id__": 195 + "__id__": 186 }, { - "__id__": 201 + "__id__": 192 }, { - "__id__": 207 + "__id__": 198 }, { - "__id__": 213 + "__id__": 204 }, { - "__id__": 219 + "__id__": 210 } ], "_active": true, "_components": [ { - "__id__": 225 + "__id__": 216 }, { - "__id__": 227 + "__id__": 218 }, { - "__id__": 229 + "__id__": 220 } ], "_prefab": { - "__id__": 231 + "__id__": 222 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 53.819, + "x": -173.26, + "y": 85.665, "z": 0 }, "_lrot": { @@ -4574,20 +4353,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 194 + "__id__": 185 }, "_children": [], "_active": true, "_components": [ { - "__id__": 196 + "__id__": 187 }, { - "__id__": 198 + "__id__": 189 } ], "_prefab": { - "__id__": 200 + "__id__": 191 }, "_lpos": { "__type__": "cc.Vec3", @@ -4624,11 +4403,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 197 + "__id__": 188 }, "_contentSize": { "__type__": "cc.Size", @@ -4652,11 +4431,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 195 + "__id__": 186 }, "_enabled": true, "__prefab": { - "__id__": 199 + "__id__": 190 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4713,20 +4492,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 194 + "__id__": 185 }, "_children": [], "_active": true, "_components": [ { - "__id__": 202 + "__id__": 193 }, { - "__id__": 204 + "__id__": 195 } ], "_prefab": { - "__id__": 206 + "__id__": 197 }, "_lpos": { "__type__": "cc.Vec3", @@ -4763,11 +4542,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 201 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 203 + "__id__": 194 }, "_contentSize": { "__type__": "cc.Size", @@ -4791,11 +4570,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 201 + "__id__": 192 }, "_enabled": true, "__prefab": { - "__id__": 205 + "__id__": 196 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4852,20 +4631,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 194 + "__id__": 185 }, "_children": [], "_active": true, "_components": [ { - "__id__": 208 + "__id__": 199 }, { - "__id__": 210 + "__id__": 201 } ], "_prefab": { - "__id__": 212 + "__id__": 203 }, "_lpos": { "__type__": "cc.Vec3", @@ -4902,11 +4681,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 200 }, "_contentSize": { "__type__": "cc.Size", @@ -4930,11 +4709,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 207 + "__id__": 198 }, "_enabled": true, "__prefab": { - "__id__": 211 + "__id__": 202 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4991,20 +4770,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 194 + "__id__": 185 }, "_children": [], "_active": false, "_components": [ { - "__id__": 214 + "__id__": 205 }, { - "__id__": 216 + "__id__": 207 } ], "_prefab": { - "__id__": 218 + "__id__": 209 }, "_lpos": { "__type__": "cc.Vec3", @@ -5041,11 +4820,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 213 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 215 + "__id__": 206 }, "_contentSize": { "__type__": "cc.Size", @@ -5069,11 +4848,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 213 + "__id__": 204 }, "_enabled": true, "__prefab": { - "__id__": 217 + "__id__": 208 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5130,20 +4909,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 194 + "__id__": 185 }, "_children": [], "_active": false, "_components": [ { - "__id__": 220 + "__id__": 211 }, { - "__id__": 222 + "__id__": 213 } ], "_prefab": { - "__id__": 224 + "__id__": 215 }, "_lpos": { "__type__": "cc.Vec3", @@ -5180,11 +4959,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 210 }, "_enabled": true, "__prefab": { - "__id__": 221 + "__id__": 212 }, "_contentSize": { "__type__": "cc.Size", @@ -5208,11 +4987,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 219 + "__id__": 210 }, "_enabled": true, "__prefab": { - "__id__": 223 + "__id__": 214 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5269,11 +5048,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 217 }, "_contentSize": { "__type__": "cc.Size", @@ -5297,11 +5076,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 219 }, "_resizeMode": 1, "_layoutType": 1, @@ -5335,11 +5114,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 185 }, "_enabled": true, "__prefab": { - "__id__": 230 + "__id__": 221 }, "_alignFlags": 16, "_target": null, @@ -5347,7 +5126,7 @@ "_right": 0, "_top": 0, "_bottom": 0, - "_horizontalCenter": 0, + "_horizontalCenter": -173.26, "_verticalCenter": 0, "_isAbsLeft": true, "_isAbsRight": true, @@ -5378,6 +5157,997 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, + { + "__type__": "cc.Node", + "_name": "name", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 224 + }, + { + "__id__": 226 + } + ], + "_prefab": { + "__id__": 228 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -274.179, + "y": -26.24, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 223 + }, + "_enabled": true, + "__prefab": { + "__id__": 225 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 82.369140625, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "69Ny7pI2pAroanvgXriOjk" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 223 + }, + "_enabled": true, + "__prefab": { + "__id__": 227 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "name", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 30, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 0, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 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": "57q9Xc1XREqZo/cTB+ucOo" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "49vLqdJldD46TjLX4xzkNA", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "sell", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 230 + } + ], + "_active": true, + "_components": [ + { + "__id__": 236 + }, + { + "__id__": 238 + }, + { + "__id__": 240 + }, + { + "__id__": 243 + } + ], + "_prefab": { + "__id__": 245 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 267.872, + "y": -87.852, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 229 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 231 + }, + { + "__id__": 233 + } + ], + "_prefab": { + "__id__": 235 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1.673, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 230 + }, + "_enabled": true, + "__prefab": { + "__id__": 232 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "beLiMTPttGcq3lnu7v4T24" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 230 + }, + "_enabled": true, + "__prefab": { + "__id__": 234 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "出售", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 55, + "_overflow": 1, + "_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": 255 + }, + "_outlineWidth": 3, + "_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": "51Wu0y8SdOULl5DoOOp3rz" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "2bHJzGsaZL07qUuOeI326l", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 229 + }, + "_enabled": true, + "__prefab": { + "__id__": 237 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "4cFZYaVY1KjqFaFxy/FjK9" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 229 + }, + "_enabled": true, + "__prefab": { + "__id__": 239 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 143, + "b": 0, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@abf7b", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": true, + "_atlas": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "13NwE3uwdMeZLanD/Kirhv" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 229 + }, + "_enabled": true, + "__prefab": { + "__id__": 241 + }, + "clickEvents": [ + { + "__id__": 242 + } + ], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 229 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "56wpoEM/ZMrpxad3T7+vHu" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "a832fh9yR9LJK1kR+tZ1lin", + "handler": "onSellHero", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 229 + }, + "_enabled": false, + "__prefab": { + "__id__": 244 + }, + "_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": 110, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6bdxa82p5HPqhKb3e5YPRm" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "02JrX+YSZAXZFrDj1ZF6Vq", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "close", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 1 + }, + "_children": [ + { + "__id__": 247 + } + ], + "_active": true, + "_components": [ + { + "__id__": 253 + }, + { + "__id__": 255 + }, + { + "__id__": 257 + }, + { + "__id__": 260 + } + ], + "_prefab": { + "__id__": 262 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 127.518, + "y": -87.852, + "z": 0 + }, + "_lrot": { + "__type__": "cc.Quat", + "x": 0, + "y": 0, + "z": 0, + "w": 1 + }, + "_lscale": { + "__type__": "cc.Vec3", + "x": 0.5, + "y": 0.5, + "z": 1 + }, + "_mobility": 0, + "_layer": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "Label", + "_objFlags": 512, + "__editorExtras__": {}, + "_parent": { + "__id__": 246 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 248 + }, + { + "__id__": 250 + } + ], + "_prefab": { + "__id__": 252 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 1.673, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 247 + }, + "_enabled": true, + "__prefab": { + "__id__": 249 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 200, + "height": 45 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "ffgrhNZkBAkrLKVJZ4ZZGB" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 247 + }, + "_enabled": true, + "__prefab": { + "__id__": 251 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "关闭", + "_horizontalAlign": 1, + "_verticalAlign": 1, + "_actualFontSize": 45, + "_fontSize": 45, + "_fontFamily": "Arial", + "_lineHeight": 55, + "_overflow": 1, + "_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": 255 + }, + "_outlineWidth": 3, + "_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": "d0Z1hlLJFBepAn42YpjU16" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e5B/pRQx5BMrm8xAsgu9Ir", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 246 + }, + "_enabled": true, + "__prefab": { + "__id__": 254 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 240, + "height": 90 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "f78pxFMxVIZYOgCUFhg1S+" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 246 + }, + "_enabled": true, + "__prefab": { + "__id__": 256 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@abf7b", + "__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": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "09pLINZzZJdodD7g3qLz9k" + }, + { + "__type__": "cc.Button", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 246 + }, + "_enabled": true, + "__prefab": { + "__id__": 258 + }, + "clickEvents": [ + { + "__id__": 259 + } + ], + "_interactable": true, + "_transition": 3, + "_normalColor": { + "__type__": "cc.Color", + "r": 214, + "g": 214, + "b": 214, + "a": 255 + }, + "_hoverColor": { + "__type__": "cc.Color", + "r": 211, + "g": 211, + "b": 211, + "a": 255 + }, + "_pressedColor": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_disabledColor": { + "__type__": "cc.Color", + "r": 124, + "g": 124, + "b": 124, + "a": 255 + }, + "_normalSprite": null, + "_hoverSprite": null, + "_pressedSprite": null, + "_disabledSprite": null, + "_duration": 0.1, + "_zoomScale": 1.2, + "_target": { + "__id__": 246 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "00TM0QJRdFTqMlhIrIiPZn" + }, + { + "__type__": "cc.ClickEvent", + "target": { + "__id__": 1 + }, + "component": "", + "_componentId": "a832fh9yR9LJK1kR+tZ1lin", + "handler": "onSellHero", + "customEventData": "" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 246 + }, + "_enabled": false, + "__prefab": { + "__id__": 261 + }, + "_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": 110, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "8bP1ys3a9D/r+kny9wOaDk" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "9aGBnxZRJN1JY/njs+nZus", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, { "__type__": "cc.UITransform", "_name": "", @@ -5388,12 +6158,12 @@ }, "_enabled": true, "__prefab": { - "__id__": 233 + "__id__": 264 }, "_contentSize": { "__type__": "cc.Size", - "width": 110, - "height": 110 + "width": 700, + "height": 240 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -5416,30 +6186,61 @@ }, "_enabled": true, "__prefab": { - "__id__": 235 + "__id__": 266 }, "icon_node": { - "__id__": 10 + "__id__": 18 }, "sell_node": { - "__id__": 23 - }, - "NF_node": { - "__id__": 96 - }, - "HF_node": { - "__id__": 142 + "__id__": 229 }, + "NF_node": null, + "HF_node": null, "lv_node": { - "__id__": 194 + "__id__": 185 }, - "node_index": 0, "_id": "" }, { "__type__": "cc.CompPrefabInfo", "fileId": "11S1XoDG5Ndo+S7MbRH4us" }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 1 + }, + "_enabled": true, + "__prefab": { + "__id__": 268 + }, + "_alignFlags": 44, + "_target": null, + "_left": 10, + "_right": 10, + "_top": 0, + "_bottom": 350, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 110, + "_originalHeight": 0, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c6WuE+edNEqpgAQiK6egQ0" + }, { "__type__": "cc.PrefabInfo", "root": { diff --git a/assets/resources/gui/element/mission.prefab b/assets/resources/gui/element/mission.prefab index d06de5db..fdcf7ab2 100644 --- a/assets/resources/gui/element/mission.prefab +++ b/assets/resources/gui/element/mission.prefab @@ -28,41 +28,41 @@ "__id__": 54 }, { - "__id__": 168 + "__id__": 138 }, { - "__id__": 906 + "__id__": 914 }, { - "__id__": 917 + "__id__": 925 }, { - "__id__": 942 + "__id__": 950 } ], "_active": true, "_components": [ - { - "__id__": 972 - }, - { - "__id__": 974 - }, - { - "__id__": 976 - }, - { - "__id__": 978 - }, { "__id__": 980 }, { "__id__": 982 + }, + { + "__id__": 984 + }, + { + "__id__": 986 + }, + { + "__id__": 988 + }, + { + "__id__": 990 } ], "_prefab": { - "__id__": 984 + "__id__": 992 }, "_lpos": { "__type__": "cc.Vec3", @@ -1362,22 +1362,19 @@ }, { "__id__": 63 - }, - { - "__id__": 133 } ], "_active": true, "_components": [ { - "__id__": 163 + "__id__": 133 }, { - "__id__": 165 + "__id__": 135 } ], "_prefab": { - "__id__": 167 + "__id__": 137 }, "_lpos": { "__type__": "cc.Vec3", @@ -1417,7 +1414,7 @@ "__id__": 54 }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 56 @@ -1614,7 +1611,7 @@ "__id__": 116 } ], - "_active": true, + "_active": false, "_components": [ { "__id__": 126 @@ -2585,692 +2582,6 @@ "targetOverrides": null, "nestedPrefabInstanceRoots": null }, - { - "__type__": "cc.Node", - "_name": "hero", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 54 - }, - "_children": [ - { - "__id__": 134 - }, - { - "__id__": 142 - }, - { - "__id__": 148 - } - ], - "_active": true, - "_components": [ - { - "__id__": 156 - }, - { - "__id__": 158 - }, - { - "__id__": 160 - } - ], - "_prefab": { - "__id__": 162 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 259.067, - "y": 158.268, - "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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.Node", - "_name": "bg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 133 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 135 - }, - { - "__id__": 137 - }, - { - "__id__": 139 - } - ], - "_prefab": { - "__id__": 141 - }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 134 - }, - "_enabled": true, - "__prefab": { - "__id__": 136 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 510.00000000000006, - "height": 50 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2cUj3Q4DZLCoozORfwKbf4" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 134 - }, - "_enabled": true, - "__prefab": { - "__id__": 138 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@96e5b", - "__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": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "29lpRqwkFEtptpWZmrVFC2" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 134 - }, - "_enabled": true, - "__prefab": { - "__id__": 140 - }, - "_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": 45, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "abchfEW1ZBSZOFr/NUO5q6" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "ebDo8RYmhKJoLQcsDOvm6d", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 133 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 143 - }, - { - "__id__": 145 - } - ], - "_prefab": { - "__id__": 147 - }, - "_lpos": { - "__type__": "cc.Vec3", - "x": -20, - "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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 142 - }, - "_enabled": true, - "__prefab": { - "__id__": 144 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 43.2, - "height": 36 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "23qUuUxkBMurmQwTpy+EPH" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 142 - }, - "_enabled": true, - "__prefab": { - "__id__": 146 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@8429c", - "__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": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "b9ofSi335KTb6xi+ky1Tj7" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "84qEY2WspHubd3RtrAP2OD", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "num", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 133 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 149 - }, - { - "__id__": 151 - }, - { - "__id__": 153 - } - ], - "_prefab": { - "__id__": 155 - }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 148 - }, - "_enabled": true, - "__prefab": { - "__id__": 150 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 105.55029296875, - "height": 54.4 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "9dVbx7RW5PJph13g6JcE7f" - }, - { - "__type__": "cc.Label", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 148 - }, - "_enabled": true, - "__prefab": { - "__id__": 152 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_string": "{{0}}/{{1}}", - "_horizontalAlign": 0, - "_verticalAlign": 1, - "_actualFontSize": 25, - "_fontSize": 25, - "_fontFamily": "Arial", - "_lineHeight": 40, - "_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": 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": "01P1XFffFI0YeiDoBu0o4q" - }, - { - "__type__": "545c05XsG9GDJispEGWKvYv", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 148 - }, - "_enabled": true, - "__prefab": { - "__id__": 154 - }, - "templateMode": true, - "watchPath": "", - "labelType": "cc.Label", - "watchPathArr": [ - "data.mission_data.hero_num", - "data.mission_data.hero_max_num" - ], - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "67gp0S7s1LbJrRJxA2hyAY" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "b3xI06b3hKYYXhvxKA/RVk", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 133 - }, - "_enabled": true, - "__prefab": { - "__id__": 157 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 510.00000000000006, - "height": 50 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "ab5M6WKotJg40uWXPTZ1ob" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 133 - }, - "_enabled": true, - "__prefab": { - "__id__": 159 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": null, - "_type": 0, - "_fillType": 0, - "_sizeMode": 1, - "_fillCenter": { - "__type__": "cc.Vec2", - "x": 0, - "y": 0 - }, - "_fillStart": 0, - "_fillRange": 0, - "_isTrimmedMode": true, - "_useGrayscale": false, - "_atlas": null, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "4e8JM6nBZJqrvjHs0V8aai" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 133 - }, - "_enabled": true, - "__prefab": { - "__id__": 161 - }, - "_alignFlags": 40, - "_target": null, - "_left": 4.06699999999995, - "_right": -4.06699999999995, - "_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": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "d3VFgYPnNFJ5pernm2R/lv" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "92fF6VNGhL4KGhc565gFRM", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, { "__type__": "cc.UITransform", "_name": "", @@ -3281,7 +2592,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 164 + "__id__": 134 }, "_contentSize": { "__type__": "cc.Size", @@ -3309,7 +2620,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 166 + "__id__": 136 }, "_alignFlags": 12, "_target": null, @@ -3358,62 +2669,62 @@ }, "_children": [ { - "__id__": 169 + "__id__": 139 }, { - "__id__": 211 + "__id__": 181 }, { - "__id__": 253 + "__id__": 223 }, { - "__id__": 273 + "__id__": 243 }, { - "__id__": 293 + "__id__": 263 }, { - "__id__": 313 - }, - { - "__id__": 635 + "__id__": 283 }, { "__id__": 643 }, { - "__id__": 698 + "__id__": 651 }, { - "__id__": 753 + "__id__": 706 }, { - "__id__": 786 + "__id__": 761 }, { - "__id__": 819 + "__id__": 794 }, { "__id__": 827 + }, + { + "__id__": 835 } ], "_active": true, "_components": [ { - "__id__": 897 + "__id__": 905 }, { - "__id__": 899 + "__id__": 907 }, { - "__id__": 901 + "__id__": 909 }, { - "__id__": 903 + "__id__": 911 } ], "_prefab": { - "__id__": 905 + "__id__": 913 }, "_lpos": { "__type__": "cc.Vec3", @@ -3450,39 +2761,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ + { + "__id__": 140 + }, + { + "__id__": 146 + }, + { + "__id__": 152 + }, + { + "__id__": 158 + }, + { + "__id__": 164 + }, { "__id__": 170 - }, - { - "__id__": 176 - }, - { - "__id__": 182 - }, - { - "__id__": 188 - }, - { - "__id__": 194 - }, - { - "__id__": 200 } ], "_active": false, "_components": [ { - "__id__": 206 + "__id__": 176 }, { - "__id__": 208 + "__id__": 178 } ], "_prefab": { - "__id__": 210 + "__id__": 180 }, "_lpos": { "__type__": "cc.Vec3", @@ -3519,20 +2830,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 169 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 171 + "__id__": 141 }, { - "__id__": 173 + "__id__": 143 } ], "_prefab": { - "__id__": 175 + "__id__": 145 }, "_lpos": { "__type__": "cc.Vec3", @@ -3569,11 +2880,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 170 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 172 + "__id__": 142 }, "_contentSize": { "__type__": "cc.Size", @@ -3597,11 +2908,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 170 + "__id__": 140 }, "_enabled": true, "__prefab": { - "__id__": 174 + "__id__": 144 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3655,20 +2966,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 169 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 177 + "__id__": 147 }, { - "__id__": 179 + "__id__": 149 } ], "_prefab": { - "__id__": 181 + "__id__": 151 }, "_lpos": { "__type__": "cc.Vec3", @@ -3705,11 +3016,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 178 + "__id__": 148 }, "_contentSize": { "__type__": "cc.Size", @@ -3733,11 +3044,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 176 + "__id__": 146 }, "_enabled": true, "__prefab": { - "__id__": 180 + "__id__": 150 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3791,20 +3102,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 169 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 183 + "__id__": 153 }, { - "__id__": 185 + "__id__": 155 } ], "_prefab": { - "__id__": 187 + "__id__": 157 }, "_lpos": { "__type__": "cc.Vec3", @@ -3841,11 +3152,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 184 + "__id__": 154 }, "_contentSize": { "__type__": "cc.Size", @@ -3869,11 +3180,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 182 + "__id__": 152 }, "_enabled": true, "__prefab": { - "__id__": 186 + "__id__": 156 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -3927,20 +3238,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 169 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 189 + "__id__": 159 }, { - "__id__": 191 + "__id__": 161 } ], "_prefab": { - "__id__": 193 + "__id__": 163 }, "_lpos": { "__type__": "cc.Vec3", @@ -3977,11 +3288,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 190 + "__id__": 160 }, "_contentSize": { "__type__": "cc.Size", @@ -4005,11 +3316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 188 + "__id__": 158 }, "_enabled": true, "__prefab": { - "__id__": 192 + "__id__": 162 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4063,20 +3374,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 169 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 195 + "__id__": 165 }, { - "__id__": 197 + "__id__": 167 } ], "_prefab": { - "__id__": 199 + "__id__": 169 }, "_lpos": { "__type__": "cc.Vec3", @@ -4113,11 +3424,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 164 }, "_enabled": true, "__prefab": { - "__id__": 196 + "__id__": 166 }, "_contentSize": { "__type__": "cc.Size", @@ -4141,11 +3452,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 194 + "__id__": 164 }, "_enabled": true, "__prefab": { - "__id__": 198 + "__id__": 168 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4199,20 +3510,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 169 + "__id__": 139 }, "_children": [], "_active": true, "_components": [ { - "__id__": 201 + "__id__": 171 }, { - "__id__": 203 + "__id__": 173 } ], "_prefab": { - "__id__": 205 + "__id__": 175 }, "_lpos": { "__type__": "cc.Vec3", @@ -4249,11 +3560,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 202 + "__id__": 172 }, "_contentSize": { "__type__": "cc.Size", @@ -4277,11 +3588,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 200 + "__id__": 170 }, "_enabled": true, "__prefab": { - "__id__": 204 + "__id__": 174 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4335,11 +3646,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 207 + "__id__": 177 }, "_contentSize": { "__type__": "cc.Size", @@ -4363,11 +3674,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 169 + "__id__": 139 }, "_enabled": true, "__prefab": { - "__id__": 209 + "__id__": 179 }, "_resizeMode": 0, "_layoutType": 1, @@ -4414,39 +3725,39 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ + { + "__id__": 182 + }, + { + "__id__": 188 + }, + { + "__id__": 194 + }, + { + "__id__": 200 + }, + { + "__id__": 206 + }, { "__id__": 212 - }, - { - "__id__": 218 - }, - { - "__id__": 224 - }, - { - "__id__": 230 - }, - { - "__id__": 236 - }, - { - "__id__": 242 } ], "_active": false, "_components": [ { - "__id__": 248 + "__id__": 218 }, { - "__id__": 250 + "__id__": 220 } ], "_prefab": { - "__id__": 252 + "__id__": 222 }, "_lpos": { "__type__": "cc.Vec3", @@ -4483,20 +3794,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 213 + "__id__": 183 }, { - "__id__": 215 + "__id__": 185 } ], "_prefab": { - "__id__": 217 + "__id__": 187 }, "_lpos": { "__type__": "cc.Vec3", @@ -4533,11 +3844,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 214 + "__id__": 184 }, "_contentSize": { "__type__": "cc.Size", @@ -4561,11 +3872,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 212 + "__id__": 182 }, "_enabled": true, "__prefab": { - "__id__": 216 + "__id__": 186 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4619,20 +3930,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 219 + "__id__": 189 }, { - "__id__": 221 + "__id__": 191 } ], "_prefab": { - "__id__": 223 + "__id__": 193 }, "_lpos": { "__type__": "cc.Vec3", @@ -4669,11 +3980,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 188 }, "_enabled": true, "__prefab": { - "__id__": 220 + "__id__": 190 }, "_contentSize": { "__type__": "cc.Size", @@ -4697,11 +4008,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 218 + "__id__": 188 }, "_enabled": true, "__prefab": { - "__id__": 222 + "__id__": 192 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4755,20 +4066,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 225 + "__id__": 195 }, { - "__id__": 227 + "__id__": 197 } ], "_prefab": { - "__id__": 229 + "__id__": 199 }, "_lpos": { "__type__": "cc.Vec3", @@ -4805,11 +4116,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 194 }, "_enabled": true, "__prefab": { - "__id__": 226 + "__id__": 196 }, "_contentSize": { "__type__": "cc.Size", @@ -4833,11 +4144,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 224 + "__id__": 194 }, "_enabled": true, "__prefab": { - "__id__": 228 + "__id__": 198 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -4891,20 +4202,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 231 + "__id__": 201 }, { - "__id__": 233 + "__id__": 203 } ], "_prefab": { - "__id__": 235 + "__id__": 205 }, "_lpos": { "__type__": "cc.Vec3", @@ -4941,11 +4252,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 232 + "__id__": 202 }, "_contentSize": { "__type__": "cc.Size", @@ -4969,11 +4280,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 230 + "__id__": 200 }, "_enabled": true, "__prefab": { - "__id__": 234 + "__id__": 204 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5027,20 +4338,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 237 + "__id__": 207 }, { - "__id__": 239 + "__id__": 209 } ], "_prefab": { - "__id__": 241 + "__id__": 211 }, "_lpos": { "__type__": "cc.Vec3", @@ -5077,11 +4388,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 238 + "__id__": 208 }, "_contentSize": { "__type__": "cc.Size", @@ -5105,11 +4416,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 236 + "__id__": 206 }, "_enabled": true, "__prefab": { - "__id__": 240 + "__id__": 210 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5163,20 +4474,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 211 + "__id__": 181 }, "_children": [], "_active": true, "_components": [ { - "__id__": 243 + "__id__": 213 }, { - "__id__": 245 + "__id__": 215 } ], "_prefab": { - "__id__": 247 + "__id__": 217 }, "_lpos": { "__type__": "cc.Vec3", @@ -5213,11 +4524,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 244 + "__id__": 214 }, "_contentSize": { "__type__": "cc.Size", @@ -5241,11 +4552,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 242 + "__id__": 212 }, "_enabled": true, "__prefab": { - "__id__": 246 + "__id__": 216 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5299,11 +4610,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 181 }, "_enabled": true, "__prefab": { - "__id__": 249 + "__id__": 219 }, "_contentSize": { "__type__": "cc.Size", @@ -5327,11 +4638,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 211 + "__id__": 181 }, "_enabled": true, "__prefab": { - "__id__": 251 + "__id__": 221 }, "_resizeMode": 0, "_layoutType": 1, @@ -5378,27 +4689,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ { - "__id__": 254 + "__id__": 224 }, { - "__id__": 262 + "__id__": 232 } ], "_active": true, "_components": [ { - "__id__": 268 + "__id__": 238 }, { - "__id__": 270 + "__id__": 240 } ], "_prefab": { - "__id__": 272 + "__id__": 242 }, "_lpos": { "__type__": "cc.Vec3", @@ -5435,23 +4746,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 253 + "__id__": 223 }, "_children": [], "_active": true, "_components": [ { - "__id__": 255 + "__id__": 225 }, { - "__id__": 257 + "__id__": 227 }, { - "__id__": 259 + "__id__": 229 } ], "_prefab": { - "__id__": 261 + "__id__": 231 }, "_lpos": { "__type__": "cc.Vec3", @@ -5488,11 +4799,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 224 }, "_enabled": true, "__prefab": { - "__id__": 256 + "__id__": 226 }, "_contentSize": { "__type__": "cc.Size", @@ -5516,11 +4827,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 224 }, "_enabled": true, "__prefab": { - "__id__": 258 + "__id__": 228 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5564,11 +4875,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 254 + "__id__": 224 }, "_enabled": true, "__prefab": { - "__id__": 260 + "__id__": 230 }, "_alignFlags": 45, "_target": null, @@ -5613,20 +4924,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 253 + "__id__": 223 }, "_children": [], "_active": true, "_components": [ { - "__id__": 263 + "__id__": 233 }, { - "__id__": 265 + "__id__": 235 } ], "_prefab": { - "__id__": 267 + "__id__": 237 }, "_lpos": { "__type__": "cc.Vec3", @@ -5663,11 +4974,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 262 + "__id__": 232 }, "_enabled": true, "__prefab": { - "__id__": 264 + "__id__": 234 }, "_contentSize": { "__type__": "cc.Size", @@ -5691,11 +5002,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 262 + "__id__": 232 }, "_enabled": true, "__prefab": { - "__id__": 266 + "__id__": 236 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5752,11 +5063,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 253 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 269 + "__id__": 239 }, "_contentSize": { "__type__": "cc.Size", @@ -5780,11 +5091,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 253 + "__id__": 223 }, "_enabled": true, "__prefab": { - "__id__": 271 + "__id__": 241 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -5835,27 +5146,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ { - "__id__": 274 + "__id__": 244 }, { - "__id__": 282 + "__id__": 252 } ], "_active": true, "_components": [ { - "__id__": 288 + "__id__": 258 }, { - "__id__": 290 + "__id__": 260 } ], "_prefab": { - "__id__": 292 + "__id__": 262 }, "_lpos": { "__type__": "cc.Vec3", @@ -5892,23 +5203,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 273 + "__id__": 243 }, "_children": [], "_active": true, "_components": [ { - "__id__": 275 + "__id__": 245 }, { - "__id__": 277 + "__id__": 247 }, { - "__id__": 279 + "__id__": 249 } ], "_prefab": { - "__id__": 281 + "__id__": 251 }, "_lpos": { "__type__": "cc.Vec3", @@ -5945,11 +5256,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 274 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 276 + "__id__": 246 }, "_contentSize": { "__type__": "cc.Size", @@ -5973,11 +5284,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 274 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 278 + "__id__": 248 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6021,11 +5332,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 274 + "__id__": 244 }, "_enabled": true, "__prefab": { - "__id__": 280 + "__id__": 250 }, "_alignFlags": 45, "_target": null, @@ -6070,20 +5381,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 273 + "__id__": 243 }, "_children": [], "_active": true, "_components": [ { - "__id__": 283 + "__id__": 253 }, { - "__id__": 285 + "__id__": 255 } ], "_prefab": { - "__id__": 287 + "__id__": 257 }, "_lpos": { "__type__": "cc.Vec3", @@ -6120,11 +5431,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 252 }, "_enabled": true, "__prefab": { - "__id__": 284 + "__id__": 254 }, "_contentSize": { "__type__": "cc.Size", @@ -6148,11 +5459,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 282 + "__id__": 252 }, "_enabled": true, "__prefab": { - "__id__": 286 + "__id__": 256 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6209,11 +5520,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 273 + "__id__": 243 }, "_enabled": true, "__prefab": { - "__id__": 289 + "__id__": 259 }, "_contentSize": { "__type__": "cc.Size", @@ -6237,11 +5548,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 273 + "__id__": 243 }, "_enabled": true, "__prefab": { - "__id__": 291 + "__id__": 261 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6292,27 +5603,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ { - "__id__": 294 + "__id__": 264 }, { - "__id__": 302 + "__id__": 272 } ], "_active": true, "_components": [ { - "__id__": 308 + "__id__": 278 }, { - "__id__": 310 + "__id__": 280 } ], "_prefab": { - "__id__": 312 + "__id__": 282 }, "_lpos": { "__type__": "cc.Vec3", @@ -6349,23 +5660,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 293 + "__id__": 263 }, "_children": [], "_active": true, "_components": [ { - "__id__": 295 + "__id__": 265 }, { - "__id__": 297 + "__id__": 267 }, { - "__id__": 299 + "__id__": 269 } ], "_prefab": { - "__id__": 301 + "__id__": 271 }, "_lpos": { "__type__": "cc.Vec3", @@ -6402,11 +5713,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 296 + "__id__": 266 }, "_contentSize": { "__type__": "cc.Size", @@ -6430,11 +5741,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 298 + "__id__": 268 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6478,11 +5789,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 294 + "__id__": 264 }, "_enabled": true, "__prefab": { - "__id__": 300 + "__id__": 270 }, "_alignFlags": 45, "_target": null, @@ -6527,20 +5838,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 293 + "__id__": 263 }, "_children": [], "_active": true, "_components": [ { - "__id__": 303 + "__id__": 273 }, { - "__id__": 305 + "__id__": 275 } ], "_prefab": { - "__id__": 307 + "__id__": 277 }, "_lpos": { "__type__": "cc.Vec3", @@ -6577,11 +5888,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 304 + "__id__": 274 }, "_contentSize": { "__type__": "cc.Size", @@ -6605,11 +5916,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 302 + "__id__": 272 }, "_enabled": true, "__prefab": { - "__id__": 306 + "__id__": 276 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6666,11 +5977,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 309 + "__id__": 279 }, "_contentSize": { "__type__": "cc.Size", @@ -6694,11 +6005,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 293 + "__id__": 263 }, "_enabled": true, "__prefab": { - "__id__": 311 + "__id__": 281 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6749,45 +6060,48 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ { - "__id__": 314 + "__id__": 284 }, { - "__id__": 322 + "__id__": 292 }, { - "__id__": 328 + "__id__": 298 }, { - "__id__": 334 + "__id__": 304 }, { - "__id__": 384 + "__id__": 354 }, { - "__id__": 416 + "__id__": 386 }, { - "__id__": 598 + "__id__": 424 + }, + { + "__id__": 606 } ], "_active": true, "_components": [ { - "__id__": 628 + "__id__": 636 }, { - "__id__": 630 + "__id__": 638 }, { - "__id__": 632 + "__id__": 640 } ], "_prefab": { - "__id__": 634 + "__id__": 642 }, "_lpos": { "__type__": "cc.Vec3", @@ -6824,23 +6138,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [], "_active": false, "_components": [ { - "__id__": 315 + "__id__": 285 }, { - "__id__": 317 + "__id__": 287 }, { - "__id__": 319 + "__id__": 289 } ], "_prefab": { - "__id__": 321 + "__id__": 291 }, "_lpos": { "__type__": "cc.Vec3", @@ -6877,11 +6191,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 314 + "__id__": 284 }, "_enabled": true, "__prefab": { - "__id__": 316 + "__id__": 286 }, "_contentSize": { "__type__": "cc.Size", @@ -6905,11 +6219,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 314 + "__id__": 284 }, "_enabled": true, "__prefab": { - "__id__": 318 + "__id__": 288 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -6950,11 +6264,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 314 + "__id__": 284 }, "_enabled": true, "__prefab": { - "__id__": 320 + "__id__": 290 }, "_alignFlags": 45, "_target": null, @@ -6999,25 +6313,25 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [], "_active": true, "_components": [ { - "__id__": 323 + "__id__": 293 }, { - "__id__": 325 + "__id__": 295 } ], "_prefab": { - "__id__": 327 + "__id__": 297 }, "_lpos": { "__type__": "cc.Vec3", "x": 7.392, - "y": 26.435, + "y": -199.504, "z": 0 }, "_lrot": { @@ -7049,11 +6363,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 322 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 324 + "__id__": 294 }, "_contentSize": { "__type__": "cc.Size", @@ -7077,11 +6391,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 322 + "__id__": 292 }, "_enabled": true, "__prefab": { - "__id__": 326 + "__id__": 296 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7135,20 +6449,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [], "_active": false, "_components": [ { - "__id__": 329 + "__id__": 299 }, { - "__id__": 331 + "__id__": 301 } ], "_prefab": { - "__id__": 333 + "__id__": 303 }, "_lpos": { "__type__": "cc.Vec3", @@ -7185,11 +6499,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 330 + "__id__": 300 }, "_contentSize": { "__type__": "cc.Size", @@ -7213,11 +6527,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 328 + "__id__": 298 }, "_enabled": true, "__prefab": { - "__id__": 332 + "__id__": 302 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7274,27 +6588,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [ { - "__id__": 335 + "__id__": 305 }, { - "__id__": 343 + "__id__": 313 }, { - "__id__": 375 + "__id__": 345 } ], "_active": true, "_components": [ { - "__id__": 381 + "__id__": 351 } ], "_prefab": { - "__id__": 383 + "__id__": 353 }, "_lpos": { "__type__": "cc.Vec3", @@ -7331,23 +6645,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 334 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 336 + "__id__": 306 }, { - "__id__": 338 + "__id__": 308 }, { - "__id__": 340 + "__id__": 310 } ], "_prefab": { - "__id__": 342 + "__id__": 312 }, "_lpos": { "__type__": "cc.Vec3", @@ -7384,11 +6698,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 337 + "__id__": 307 }, "_contentSize": { "__type__": "cc.Size", @@ -7412,11 +6726,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 339 + "__id__": 309 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7460,11 +6774,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 335 + "__id__": 305 }, "_enabled": true, "__prefab": { - "__id__": 341 + "__id__": 311 }, "_alignFlags": 45, "_target": null, @@ -7509,30 +6823,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 334 + "__id__": 304 }, "_children": [ { - "__id__": 344 + "__id__": 314 }, { - "__id__": 350 + "__id__": 320 }, { - "__id__": 356 + "__id__": 326 } ], "_active": true, "_components": [ { - "__id__": 370 + "__id__": 340 }, { - "__id__": 372 + "__id__": 342 } ], "_prefab": { - "__id__": 374 + "__id__": 344 }, "_lpos": { "__type__": "cc.Vec3", @@ -7569,20 +6883,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 343 + "__id__": 313 }, "_children": [], "_active": false, "_components": [ { - "__id__": 345 + "__id__": 315 }, { - "__id__": 347 + "__id__": 317 } ], "_prefab": { - "__id__": 349 + "__id__": 319 }, "_lpos": { "__type__": "cc.Vec3", @@ -7619,11 +6933,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 344 + "__id__": 314 }, "_enabled": true, "__prefab": { - "__id__": 346 + "__id__": 316 }, "_contentSize": { "__type__": "cc.Size", @@ -7647,11 +6961,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 344 + "__id__": 314 }, "_enabled": true, "__prefab": { - "__id__": 348 + "__id__": 318 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7705,20 +7019,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 343 + "__id__": 313 }, "_children": [], "_active": true, "_components": [ { - "__id__": 351 + "__id__": 321 }, { - "__id__": 353 + "__id__": 323 } ], "_prefab": { - "__id__": 355 + "__id__": 325 }, "_lpos": { "__type__": "cc.Vec3", @@ -7755,11 +7069,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 320 }, "_enabled": true, "__prefab": { - "__id__": 352 + "__id__": 322 }, "_contentSize": { "__type__": "cc.Size", @@ -7783,11 +7097,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 350 + "__id__": 320 }, "_enabled": true, "__prefab": { - "__id__": 354 + "__id__": 324 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -7844,24 +7158,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 343 + "__id__": 313 }, "_children": [ { - "__id__": 357 + "__id__": 327 } ], "_active": true, "_components": [ { - "__id__": 365 + "__id__": 335 }, { - "__id__": 367 + "__id__": 337 } ], "_prefab": { - "__id__": 369 + "__id__": 339 }, "_lpos": { "__type__": "cc.Vec3", @@ -7898,23 +7212,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 356 + "__id__": 326 }, "_children": [], "_active": false, "_components": [ { - "__id__": 358 + "__id__": 328 }, { - "__id__": 360 + "__id__": 330 }, { - "__id__": 362 + "__id__": 332 } ], "_prefab": { - "__id__": 364 + "__id__": 334 }, "_lpos": { "__type__": "cc.Vec3", @@ -7951,11 +7265,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 357 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 359 + "__id__": 329 }, "_contentSize": { "__type__": "cc.Size", @@ -7979,11 +7293,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 357 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 361 + "__id__": 331 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8047,11 +7361,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 357 + "__id__": 327 }, "_enabled": true, "__prefab": { - "__id__": 363 + "__id__": 333 }, "_alignFlags": 8, "_target": null, @@ -8096,11 +7410,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 366 + "__id__": 336 }, "_contentSize": { "__type__": "cc.Size", @@ -8124,11 +7438,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 356 + "__id__": 326 }, "_enabled": true, "__prefab": { - "__id__": 368 + "__id__": 338 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8205,11 +7519,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 343 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 371 + "__id__": 341 }, "_contentSize": { "__type__": "cc.Size", @@ -8233,11 +7547,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 343 + "__id__": 313 }, "_enabled": true, "__prefab": { - "__id__": 373 + "__id__": 343 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8288,20 +7602,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 334 + "__id__": 304 }, "_children": [], "_active": true, "_components": [ { - "__id__": 376 + "__id__": 346 }, { - "__id__": 378 + "__id__": 348 } ], "_prefab": { - "__id__": 380 + "__id__": 350 }, "_lpos": { "__type__": "cc.Vec3", @@ -8338,11 +7652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 375 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 377 + "__id__": 347 }, "_contentSize": { "__type__": "cc.Size", @@ -8366,11 +7680,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 375 + "__id__": 345 }, "_enabled": true, "__prefab": { - "__id__": 379 + "__id__": 349 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8447,11 +7761,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 334 + "__id__": 304 }, "_enabled": true, "__prefab": { - "__id__": 382 + "__id__": 352 }, "_contentSize": { "__type__": "cc.Size", @@ -8488,33 +7802,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [ { - "__id__": 385 + "__id__": 355 }, { - "__id__": 393 + "__id__": 363 }, { - "__id__": 401 + "__id__": 371 } ], "_active": true, "_components": [ { - "__id__": 409 + "__id__": 379 }, { - "__id__": 411 + "__id__": 381 }, { - "__id__": 413 + "__id__": 383 } ], "_prefab": { - "__id__": 415 + "__id__": 385 }, "_lpos": { "__type__": "cc.Vec3", @@ -8551,23 +7865,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 384 + "__id__": 354 }, "_children": [], "_active": true, "_components": [ { - "__id__": 386 + "__id__": 356 }, { - "__id__": 388 + "__id__": 358 }, { - "__id__": 390 + "__id__": 360 } ], "_prefab": { - "__id__": 392 + "__id__": 362 }, "_lpos": { "__type__": "cc.Vec3", @@ -8604,11 +7918,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 385 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 387 + "__id__": 357 }, "_contentSize": { "__type__": "cc.Size", @@ -8632,11 +7946,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 385 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 389 + "__id__": 359 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8680,11 +7994,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 385 + "__id__": 355 }, "_enabled": true, "__prefab": { - "__id__": 391 + "__id__": 361 }, "_alignFlags": 45, "_target": null, @@ -8729,23 +8043,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 384 + "__id__": 354 }, "_children": [], "_active": true, "_components": [ { - "__id__": 394 + "__id__": 364 }, { - "__id__": 396 + "__id__": 366 }, { - "__id__": 398 + "__id__": 368 } ], "_prefab": { - "__id__": 400 + "__id__": 370 }, "_lpos": { "__type__": "cc.Vec3", @@ -8782,11 +8096,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 393 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 395 + "__id__": 365 }, "_contentSize": { "__type__": "cc.Size", @@ -8810,11 +8124,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 393 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 397 + "__id__": 367 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -8858,11 +8172,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 393 + "__id__": 363 }, "_enabled": true, "__prefab": { - "__id__": 399 + "__id__": 369 }, "_alignFlags": 45, "_target": null, @@ -8907,23 +8221,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 384 + "__id__": 354 }, "_children": [], "_active": true, "_components": [ { - "__id__": 402 + "__id__": 372 }, { - "__id__": 404 + "__id__": 374 }, { - "__id__": 406 + "__id__": 376 } ], "_prefab": { - "__id__": 408 + "__id__": 378 }, "_lpos": { "__type__": "cc.Vec3", @@ -8960,11 +8274,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 401 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 403 + "__id__": 373 }, "_contentSize": { "__type__": "cc.Size", @@ -8988,11 +8302,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 401 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 405 + "__id__": 375 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9056,11 +8370,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 401 + "__id__": 371 }, "_enabled": true, "__prefab": { - "__id__": 407 + "__id__": 377 }, "_alignFlags": 16, "_target": null, @@ -9105,11 +8419,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 384 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 410 + "__id__": 380 }, "_contentSize": { "__type__": "cc.Size", @@ -9133,11 +8447,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 384 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 412 + "__id__": 382 }, "_alignFlags": 20, "_target": null, @@ -9169,11 +8483,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 384 + "__id__": 354 }, "_enabled": true, "__prefab": { - "__id__": 414 + "__id__": 384 }, "clickEvents": [], "_interactable": true, @@ -9234,42 +8548,906 @@ }, { "__type__": "cc.Node", - "_name": "pool", + "_name": "coin", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [ { - "__id__": 417 + "__id__": 387 }, { - "__id__": 423 + "__id__": 395 }, { - "__id__": 429 + "__id__": 403 + }, + { + "__id__": 409 } ], "_active": true, "_components": [ { - "__id__": 591 + "__id__": 417 }, { - "__id__": 593 + "__id__": 419 }, { - "__id__": 595 + "__id__": 421 } ], "_prefab": { - "__id__": 597 + "__id__": 423 }, "_lpos": { "__type__": "cc.Vec3", - "x": 10.381999999999998, - "y": 75.08499999999998, + "x": -351.084, + "y": 49.919, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 386 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 388 + }, + { + "__id__": 390 + }, + { + "__id__": 392 + } + ], + "_prefab": { + "__id__": 394 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 387 + }, + "_enabled": true, + "__prefab": { + "__id__": 389 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 525, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "28ZGKEBdpBAqFPub0Olip3" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 387 + }, + "_enabled": true, + "__prefab": { + "__id__": 391 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@96e5b", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "353ecBSC1JBoNxgcWEhNSN" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 387 + }, + "_enabled": true, + "__prefab": { + "__id__": 393 + }, + "_alignFlags": 45, + "_target": null, + "_left": -192.5, + "_right": -192.5, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 45, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "acL89WN9FBNaYd0u2UkDFO" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "b2Vu+xUnlM0Ix1GqcZr6gH", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "bg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 386 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 396 + }, + { + "__id__": 398 + }, + { + "__id__": 400 + } + ], + "_prefab": { + "__id__": 402 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 395 + }, + "_enabled": true, + "__prefab": { + "__id__": 397 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 30, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "eb0YjNRJNFzY6bgC84uk12" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 395 + }, + "_enabled": false, + "__prefab": { + "__id__": 399 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@96e5b", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2aDejbZfVBDbuZSiZui7Sp" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 395 + }, + "_enabled": true, + "__prefab": { + "__id__": 401 + }, + "_alignFlags": 45, + "_target": null, + "_left": 55, + "_right": 55, + "_top": 0, + "_bottom": 0, + "_horizontalCenter": 0, + "_verticalCenter": 0, + "_isAbsLeft": true, + "_isAbsRight": true, + "_isAbsTop": true, + "_isAbsBottom": true, + "_isAbsHorizontalCenter": true, + "_isAbsVerticalCenter": true, + "_originalWidth": 240, + "_originalHeight": 45, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "3bjier/LpLYJ8BSIL4b4+r" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "35dr0lJV9CO5Ld8TLk7eCZ", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "icon", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 386 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 404 + }, + { + "__id__": 406 + } + ], + "_prefab": { + "__id__": 408 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -210.555, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 403 + }, + "_enabled": true, + "__prefab": { + "__id__": 405 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 35, + "height": 35 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9e9DrNzxtOFL4m/t0+A3P0" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 403 + }, + "_enabled": true, + "__prefab": { + "__id__": 407 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@4b5bf", + "__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": { + "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "efGW8b0ThNXKk6onRGpH30" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "e7dPNasr5IyqES0tbwxJX3", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 386 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 410 + }, + { + "__id__": 412 + }, + { + "__id__": 414 + } + ], + "_prefab": { + "__id__": 416 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": -191.012, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 409 + }, + "_enabled": true, + "__prefab": { + "__id__": 411 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 250, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "74KOydbBZPaL33+dUhhJRe" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 409 + }, + "_enabled": true, + "__prefab": { + "__id__": 413 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "{{0}}", + "_horizontalAlign": 0, + "_verticalAlign": 1, + "_actualFontSize": 31, + "_fontSize": 30, + "_fontFamily": "Arial", + "_lineHeight": 40, + "_overflow": 2, + "_enableWrapText": true, + "_font": null, + "_isSystemFontUsed": true, + "_spacingX": 0, + "_isItalic": false, + "_isBold": true, + "_isUnderline": false, + "_underlineHeight": 2, + "_cacheMode": 0, + "_enableOutline": true, + "_outlineColor": { + "__type__": "cc.Color", + "r": 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": "bdrNNK7thMNZHa9Y2Lvam7" + }, + { + "__type__": "545c05XsG9GDJispEGWKvYv", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 409 + }, + "_enabled": true, + "__prefab": { + "__id__": 415 + }, + "templateMode": true, + "watchPath": "0", + "labelType": "cc.Label", + "watchPathArr": [ + "data.mission_data.coin" + ], + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "c63uq0wtFICbfJrLh+pZmp" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "65zRY1wpZPNLTXws9hsdcE", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 386 + }, + "_enabled": true, + "__prefab": { + "__id__": 418 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 140, + "height": 60 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "35quWEUmxMjKYP1nsLJ2VA" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 386 + }, + "_enabled": true, + "__prefab": { + "__id__": 420 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": null, + "_type": 0, + "_fillType": 0, + "_sizeMode": 1, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": null, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "5ancMx0I9HBaaQDn7GsHwj" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 386 + }, + "_enabled": true, + "__prefab": { + "__id__": 422 + }, + "_alignFlags": 40, + "_target": null, + "_left": -351.084, + "_right": 351.084, + "_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": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "2bBsRP7v9KRJjiuLdqa2aT" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "a2T+9jtpFDK6TbGmUuF01c", + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "pool", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 283 + }, + "_children": [ + { + "__id__": 425 + }, + { + "__id__": 431 + }, + { + "__id__": 437 + } + ], + "_active": true, + "_components": [ + { + "__id__": 599 + }, + { + "__id__": 601 + }, + { + "__id__": 603 + } + ], + "_prefab": { + "__id__": 605 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 23.077000000000005, + "y": 14.159000000000006, "z": 0 }, "_lrot": { @@ -9301,20 +9479,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 416 + "__id__": 424 }, "_children": [], "_active": false, "_components": [ { - "__id__": 418 + "__id__": 426 }, { - "__id__": 420 + "__id__": 428 } ], "_prefab": { - "__id__": 422 + "__id__": 430 }, "_lpos": { "__type__": "cc.Vec3", @@ -9351,11 +9529,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 417 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 419 + "__id__": 427 }, "_contentSize": { "__type__": "cc.Size", @@ -9379,11 +9557,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 417 + "__id__": 425 }, "_enabled": true, "__prefab": { - "__id__": 421 + "__id__": 429 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9460,20 +9638,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 416 + "__id__": 424 }, "_children": [], "_active": false, "_components": [ { - "__id__": 424 + "__id__": 432 }, { - "__id__": 426 + "__id__": 434 } ], "_prefab": { - "__id__": 428 + "__id__": 436 }, "_lpos": { "__type__": "cc.Vec3", @@ -9510,11 +9688,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 425 + "__id__": 433 }, "_contentSize": { "__type__": "cc.Size", @@ -9538,11 +9716,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 423 + "__id__": 431 }, "_enabled": true, "__prefab": { - "__id__": 427 + "__id__": 435 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9619,47 +9797,47 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 416 + "__id__": 424 }, "_children": [ { - "__id__": 430 + "__id__": 438 }, { - "__id__": 436 + "__id__": 444 }, { - "__id__": 446 + "__id__": 454 }, { - "__id__": 462 + "__id__": 470 }, { - "__id__": 484 + "__id__": 492 }, { - "__id__": 512 + "__id__": 520 }, { - "__id__": 546 + "__id__": 554 } ], "_active": true, "_components": [ { - "__id__": 586 + "__id__": 594 }, { - "__id__": 588 + "__id__": 596 } ], "_prefab": { - "__id__": 590 + "__id__": 598 }, "_lpos": { "__type__": "cc.Vec3", - "x": 0, - "y": 26.25700000000002, + "x": -10, + "y": 36.25700000000002, "z": 0 }, "_lrot": { @@ -9671,8 +9849,8 @@ }, "_lscale": { "__type__": "cc.Vec3", - "x": 1, - "y": 1, + "x": 0.8, + "y": 0.8, "z": 1 }, "_mobility": 0, @@ -9691,20 +9869,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [], "_active": true, "_components": [ { - "__id__": 431 + "__id__": 439 }, { - "__id__": 433 + "__id__": 441 } ], "_prefab": { - "__id__": 435 + "__id__": 443 }, "_lpos": { "__type__": "cc.Vec3", @@ -9741,11 +9919,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 430 + "__id__": 438 }, "_enabled": true, "__prefab": { - "__id__": 432 + "__id__": 440 }, "_contentSize": { "__type__": "cc.Size", @@ -9769,11 +9947,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 430 + "__id__": 438 }, "_enabled": true, "__prefab": { - "__id__": 434 + "__id__": 442 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -9827,21 +10005,21 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [ { - "__id__": 437 + "__id__": 445 } ], "_active": true, "_components": [ { - "__id__": 443 + "__id__": 451 } ], "_prefab": { - "__id__": 445 + "__id__": 453 }, "_lpos": { "__type__": "cc.Vec3", @@ -9878,20 +10056,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 436 + "__id__": 444 }, "_children": [], "_active": true, "_components": [ { - "__id__": 438 + "__id__": 446 }, { - "__id__": 440 + "__id__": 448 } ], "_prefab": { - "__id__": 442 + "__id__": 450 }, "_lpos": { "__type__": "cc.Vec3", @@ -9928,11 +10106,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 437 + "__id__": 445 }, "_enabled": true, "__prefab": { - "__id__": 439 + "__id__": 447 }, "_contentSize": { "__type__": "cc.Size", @@ -9956,11 +10134,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 437 + "__id__": 445 }, "_enabled": true, "__prefab": { - "__id__": 441 + "__id__": 449 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10014,11 +10192,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 436 + "__id__": 444 }, "_enabled": true, "__prefab": { - "__id__": 444 + "__id__": 452 }, "_contentSize": { "__type__": "cc.Size", @@ -10055,29 +10233,29 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [ { - "__id__": 447 + "__id__": 455 }, { - "__id__": 453 + "__id__": 461 } ], - "_active": false, + "_active": true, "_components": [ { - "__id__": 459 + "__id__": 467 } ], "_prefab": { - "__id__": 461 + "__id__": 469 }, "_lpos": { "__type__": "cc.Vec3", "x": 0, - "y": 9.508, + "y": 4.197, "z": 0 }, "_lrot": { @@ -10109,20 +10287,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 446 + "__id__": 454 }, "_children": [], "_active": true, "_components": [ { - "__id__": 448 + "__id__": 456 }, { - "__id__": 450 + "__id__": 458 } ], "_prefab": { - "__id__": 452 + "__id__": 460 }, "_lpos": { "__type__": "cc.Vec3", @@ -10159,11 +10337,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 447 + "__id__": 455 }, "_enabled": true, "__prefab": { - "__id__": 449 + "__id__": 457 }, "_contentSize": { "__type__": "cc.Size", @@ -10187,11 +10365,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 447 + "__id__": 455 }, "_enabled": true, "__prefab": { - "__id__": 451 + "__id__": 459 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10245,20 +10423,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 446 + "__id__": 454 }, "_children": [], "_active": true, "_components": [ { - "__id__": 454 + "__id__": 462 }, { - "__id__": 456 + "__id__": 464 } ], "_prefab": { - "__id__": 458 + "__id__": 466 }, "_lpos": { "__type__": "cc.Vec3", @@ -10295,11 +10473,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 461 }, "_enabled": true, "__prefab": { - "__id__": 455 + "__id__": 463 }, "_contentSize": { "__type__": "cc.Size", @@ -10323,11 +10501,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 453 + "__id__": 461 }, "_enabled": true, "__prefab": { - "__id__": 457 + "__id__": 465 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10381,11 +10559,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 446 + "__id__": 454 }, "_enabled": true, "__prefab": { - "__id__": 460 + "__id__": 468 }, "_contentSize": { "__type__": "cc.Size", @@ -10422,27 +10600,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [ { - "__id__": 463 + "__id__": 471 }, { - "__id__": 469 + "__id__": 477 }, { - "__id__": 475 + "__id__": 483 } ], "_active": false, "_components": [ { - "__id__": 481 + "__id__": 489 } ], "_prefab": { - "__id__": 483 + "__id__": 491 }, "_lpos": { "__type__": "cc.Vec3", @@ -10479,20 +10657,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 462 + "__id__": 470 }, "_children": [], "_active": true, "_components": [ { - "__id__": 464 + "__id__": 472 }, { - "__id__": 466 + "__id__": 474 } ], "_prefab": { - "__id__": 468 + "__id__": 476 }, "_lpos": { "__type__": "cc.Vec3", @@ -10529,11 +10707,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 463 + "__id__": 471 }, "_enabled": true, "__prefab": { - "__id__": 465 + "__id__": 473 }, "_contentSize": { "__type__": "cc.Size", @@ -10557,11 +10735,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 463 + "__id__": 471 }, "_enabled": true, "__prefab": { - "__id__": 467 + "__id__": 475 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10615,20 +10793,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 462 + "__id__": 470 }, "_children": [], "_active": true, "_components": [ { - "__id__": 470 + "__id__": 478 }, { - "__id__": 472 + "__id__": 480 } ], "_prefab": { - "__id__": 474 + "__id__": 482 }, "_lpos": { "__type__": "cc.Vec3", @@ -10665,11 +10843,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 477 }, "_enabled": true, "__prefab": { - "__id__": 471 + "__id__": 479 }, "_contentSize": { "__type__": "cc.Size", @@ -10693,11 +10871,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 469 + "__id__": 477 }, "_enabled": true, "__prefab": { - "__id__": 473 + "__id__": 481 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10751,20 +10929,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 462 + "__id__": 470 }, "_children": [], "_active": true, "_components": [ { - "__id__": 476 + "__id__": 484 }, { - "__id__": 478 + "__id__": 486 } ], "_prefab": { - "__id__": 480 + "__id__": 488 }, "_lpos": { "__type__": "cc.Vec3", @@ -10801,11 +10979,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 475 + "__id__": 483 }, "_enabled": true, "__prefab": { - "__id__": 477 + "__id__": 485 }, "_contentSize": { "__type__": "cc.Size", @@ -10829,11 +11007,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 475 + "__id__": 483 }, "_enabled": true, "__prefab": { - "__id__": 479 + "__id__": 487 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -10887,11 +11065,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 462 + "__id__": 470 }, "_enabled": true, "__prefab": { - "__id__": 482 + "__id__": 490 }, "_contentSize": { "__type__": "cc.Size", @@ -10928,30 +11106,30 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [ { - "__id__": 485 + "__id__": 493 }, { - "__id__": 491 + "__id__": 499 }, { - "__id__": 497 + "__id__": 505 }, { - "__id__": 503 + "__id__": 511 } ], "_active": false, "_components": [ { - "__id__": 509 + "__id__": 517 } ], "_prefab": { - "__id__": 511 + "__id__": 519 }, "_lpos": { "__type__": "cc.Vec3", @@ -10988,20 +11166,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 484 + "__id__": 492 }, "_children": [], "_active": true, "_components": [ { - "__id__": 486 + "__id__": 494 }, { - "__id__": 488 + "__id__": 496 } ], "_prefab": { - "__id__": 490 + "__id__": 498 }, "_lpos": { "__type__": "cc.Vec3", @@ -11038,11 +11216,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 493 }, "_enabled": true, "__prefab": { - "__id__": 487 + "__id__": 495 }, "_contentSize": { "__type__": "cc.Size", @@ -11066,11 +11244,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 485 + "__id__": 493 }, "_enabled": true, "__prefab": { - "__id__": 489 + "__id__": 497 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11124,20 +11302,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 484 + "__id__": 492 }, "_children": [], "_active": true, "_components": [ { - "__id__": 492 + "__id__": 500 }, { - "__id__": 494 + "__id__": 502 } ], "_prefab": { - "__id__": 496 + "__id__": 504 }, "_lpos": { "__type__": "cc.Vec3", @@ -11174,11 +11352,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 493 + "__id__": 501 }, "_contentSize": { "__type__": "cc.Size", @@ -11202,11 +11380,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 491 + "__id__": 499 }, "_enabled": true, "__prefab": { - "__id__": 495 + "__id__": 503 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11260,20 +11438,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 484 + "__id__": 492 }, "_children": [], "_active": true, "_components": [ { - "__id__": 498 + "__id__": 506 }, { - "__id__": 500 + "__id__": 508 } ], "_prefab": { - "__id__": 502 + "__id__": 510 }, "_lpos": { "__type__": "cc.Vec3", @@ -11310,11 +11488,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 497 + "__id__": 505 }, "_enabled": true, "__prefab": { - "__id__": 499 + "__id__": 507 }, "_contentSize": { "__type__": "cc.Size", @@ -11338,11 +11516,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 497 + "__id__": 505 }, "_enabled": true, "__prefab": { - "__id__": 501 + "__id__": 509 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11396,20 +11574,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 484 + "__id__": 492 }, "_children": [], "_active": true, "_components": [ { - "__id__": 504 + "__id__": 512 }, { - "__id__": 506 + "__id__": 514 } ], "_prefab": { - "__id__": 508 + "__id__": 516 }, "_lpos": { "__type__": "cc.Vec3", @@ -11446,11 +11624,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 511 }, "_enabled": true, "__prefab": { - "__id__": 505 + "__id__": 513 }, "_contentSize": { "__type__": "cc.Size", @@ -11474,11 +11652,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 503 + "__id__": 511 }, "_enabled": true, "__prefab": { - "__id__": 507 + "__id__": 515 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11532,11 +11710,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 484 + "__id__": 492 }, "_enabled": true, "__prefab": { - "__id__": 510 + "__id__": 518 }, "_contentSize": { "__type__": "cc.Size", @@ -11573,33 +11751,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [ { - "__id__": 513 + "__id__": 521 }, { - "__id__": 519 + "__id__": 527 }, { - "__id__": 525 + "__id__": 533 }, { - "__id__": 531 + "__id__": 539 }, { - "__id__": 537 + "__id__": 545 } ], "_active": false, "_components": [ { - "__id__": 543 + "__id__": 551 } ], "_prefab": { - "__id__": 545 + "__id__": 553 }, "_lpos": { "__type__": "cc.Vec3", @@ -11636,20 +11814,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 512 + "__id__": 520 }, "_children": [], "_active": true, "_components": [ { - "__id__": 514 + "__id__": 522 }, { - "__id__": 516 + "__id__": 524 } ], "_prefab": { - "__id__": 518 + "__id__": 526 }, "_lpos": { "__type__": "cc.Vec3", @@ -11686,11 +11864,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 513 + "__id__": 521 }, "_enabled": true, "__prefab": { - "__id__": 515 + "__id__": 523 }, "_contentSize": { "__type__": "cc.Size", @@ -11714,11 +11892,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 513 + "__id__": 521 }, "_enabled": true, "__prefab": { - "__id__": 517 + "__id__": 525 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11772,20 +11950,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 512 + "__id__": 520 }, "_children": [], "_active": true, "_components": [ { - "__id__": 520 + "__id__": 528 }, { - "__id__": 522 + "__id__": 530 } ], "_prefab": { - "__id__": 524 + "__id__": 532 }, "_lpos": { "__type__": "cc.Vec3", @@ -11822,11 +12000,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 519 + "__id__": 527 }, "_enabled": true, "__prefab": { - "__id__": 521 + "__id__": 529 }, "_contentSize": { "__type__": "cc.Size", @@ -11850,11 +12028,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 519 + "__id__": 527 }, "_enabled": true, "__prefab": { - "__id__": 523 + "__id__": 531 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -11908,20 +12086,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 512 + "__id__": 520 }, "_children": [], "_active": true, "_components": [ { - "__id__": 526 + "__id__": 534 }, { - "__id__": 528 + "__id__": 536 } ], "_prefab": { - "__id__": 530 + "__id__": 538 }, "_lpos": { "__type__": "cc.Vec3", @@ -11958,11 +12136,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 533 }, "_enabled": true, "__prefab": { - "__id__": 527 + "__id__": 535 }, "_contentSize": { "__type__": "cc.Size", @@ -11986,11 +12164,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 525 + "__id__": 533 }, "_enabled": true, "__prefab": { - "__id__": 529 + "__id__": 537 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12044,20 +12222,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 512 + "__id__": 520 }, "_children": [], "_active": true, "_components": [ { - "__id__": 532 + "__id__": 540 }, { - "__id__": 534 + "__id__": 542 } ], "_prefab": { - "__id__": 536 + "__id__": 544 }, "_lpos": { "__type__": "cc.Vec3", @@ -12094,11 +12272,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 531 + "__id__": 539 }, "_enabled": true, "__prefab": { - "__id__": 533 + "__id__": 541 }, "_contentSize": { "__type__": "cc.Size", @@ -12122,11 +12300,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 531 + "__id__": 539 }, "_enabled": true, "__prefab": { - "__id__": 535 + "__id__": 543 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12180,20 +12358,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 512 + "__id__": 520 }, "_children": [], "_active": true, "_components": [ { - "__id__": 538 + "__id__": 546 }, { - "__id__": 540 + "__id__": 548 } ], "_prefab": { - "__id__": 542 + "__id__": 550 }, "_lpos": { "__type__": "cc.Vec3", @@ -12230,11 +12408,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 537 + "__id__": 545 }, "_enabled": true, "__prefab": { - "__id__": 539 + "__id__": 547 }, "_contentSize": { "__type__": "cc.Size", @@ -12258,11 +12436,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 537 + "__id__": 545 }, "_enabled": true, "__prefab": { - "__id__": 541 + "__id__": 549 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12316,11 +12494,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 512 + "__id__": 520 }, "_enabled": true, "__prefab": { - "__id__": 544 + "__id__": 552 }, "_contentSize": { "__type__": "cc.Size", @@ -12357,36 +12535,36 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 429 + "__id__": 437 }, "_children": [ { - "__id__": 547 + "__id__": 555 }, { - "__id__": 553 + "__id__": 561 }, { - "__id__": 559 + "__id__": 567 }, { - "__id__": 565 + "__id__": 573 }, { - "__id__": 571 + "__id__": 579 }, { - "__id__": 577 + "__id__": 585 } ], "_active": false, "_components": [ { - "__id__": 583 + "__id__": 591 } ], "_prefab": { - "__id__": 585 + "__id__": 593 }, "_lpos": { "__type__": "cc.Vec3", @@ -12423,20 +12601,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 546 + "__id__": 554 }, "_children": [], "_active": true, "_components": [ { - "__id__": 548 + "__id__": 556 }, { - "__id__": 550 + "__id__": 558 } ], "_prefab": { - "__id__": 552 + "__id__": 560 }, "_lpos": { "__type__": "cc.Vec3", @@ -12473,11 +12651,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 547 + "__id__": 555 }, "_enabled": true, "__prefab": { - "__id__": 549 + "__id__": 557 }, "_contentSize": { "__type__": "cc.Size", @@ -12501,11 +12679,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 547 + "__id__": 555 }, "_enabled": true, "__prefab": { - "__id__": 551 + "__id__": 559 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12559,20 +12737,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 546 + "__id__": 554 }, "_children": [], "_active": true, "_components": [ { - "__id__": 554 + "__id__": 562 }, { - "__id__": 556 + "__id__": 564 } ], "_prefab": { - "__id__": 558 + "__id__": 566 }, "_lpos": { "__type__": "cc.Vec3", @@ -12609,11 +12787,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 553 + "__id__": 561 }, "_enabled": true, "__prefab": { - "__id__": 555 + "__id__": 563 }, "_contentSize": { "__type__": "cc.Size", @@ -12637,11 +12815,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 553 + "__id__": 561 }, "_enabled": true, "__prefab": { - "__id__": 557 + "__id__": 565 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12695,20 +12873,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 546 + "__id__": 554 }, "_children": [], "_active": true, "_components": [ { - "__id__": 560 + "__id__": 568 }, { - "__id__": 562 + "__id__": 570 } ], "_prefab": { - "__id__": 564 + "__id__": 572 }, "_lpos": { "__type__": "cc.Vec3", @@ -12745,11 +12923,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 559 + "__id__": 567 }, "_enabled": true, "__prefab": { - "__id__": 561 + "__id__": 569 }, "_contentSize": { "__type__": "cc.Size", @@ -12773,11 +12951,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 559 + "__id__": 567 }, "_enabled": true, "__prefab": { - "__id__": 563 + "__id__": 571 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12831,20 +13009,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 546 + "__id__": 554 }, "_children": [], "_active": true, "_components": [ { - "__id__": 566 + "__id__": 574 }, { - "__id__": 568 + "__id__": 576 } ], "_prefab": { - "__id__": 570 + "__id__": 578 }, "_lpos": { "__type__": "cc.Vec3", @@ -12881,11 +13059,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 565 + "__id__": 573 }, "_enabled": true, "__prefab": { - "__id__": 567 + "__id__": 575 }, "_contentSize": { "__type__": "cc.Size", @@ -12909,11 +13087,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 565 + "__id__": 573 }, "_enabled": true, "__prefab": { - "__id__": 569 + "__id__": 577 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -12967,20 +13145,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 546 + "__id__": 554 }, "_children": [], "_active": true, "_components": [ { - "__id__": 572 + "__id__": 580 }, { - "__id__": 574 + "__id__": 582 } ], "_prefab": { - "__id__": 576 + "__id__": 584 }, "_lpos": { "__type__": "cc.Vec3", @@ -13017,11 +13195,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 571 + "__id__": 579 }, "_enabled": true, "__prefab": { - "__id__": 573 + "__id__": 581 }, "_contentSize": { "__type__": "cc.Size", @@ -13045,11 +13223,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 571 + "__id__": 579 }, "_enabled": true, "__prefab": { - "__id__": 575 + "__id__": 583 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13103,20 +13281,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 546 + "__id__": 554 }, "_children": [], "_active": true, "_components": [ { - "__id__": 578 + "__id__": 586 }, { - "__id__": 580 + "__id__": 588 } ], "_prefab": { - "__id__": 582 + "__id__": 590 }, "_lpos": { "__type__": "cc.Vec3", @@ -13153,11 +13331,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 585 }, "_enabled": true, "__prefab": { - "__id__": 579 + "__id__": 587 }, "_contentSize": { "__type__": "cc.Size", @@ -13181,11 +13359,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 577 + "__id__": 585 }, "_enabled": true, "__prefab": { - "__id__": 581 + "__id__": 589 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13239,11 +13417,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 546 + "__id__": 554 }, "_enabled": true, "__prefab": { - "__id__": 584 + "__id__": 592 }, "_contentSize": { "__type__": "cc.Size", @@ -13280,11 +13458,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 429 + "__id__": 437 }, "_enabled": true, "__prefab": { - "__id__": 587 + "__id__": 595 }, "_contentSize": { "__type__": "cc.Size", @@ -13308,11 +13486,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 429 + "__id__": 437 }, "_enabled": true, "__prefab": { - "__id__": 589 + "__id__": 597 }, "_alignFlags": 9, "_target": null, @@ -13357,11 +13535,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 416 + "__id__": 424 }, "_enabled": true, "__prefab": { - "__id__": 592 + "__id__": 600 }, "_contentSize": { "__type__": "cc.Size", @@ -13385,11 +13563,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 416 + "__id__": 424 }, "_enabled": false, "__prefab": { - "__id__": 594 + "__id__": 602 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13430,18 +13608,18 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 416 + "__id__": 424 }, "_enabled": true, "__prefab": { - "__id__": 596 + "__id__": 604 }, "_alignFlags": 44, "_target": null, - "_left": 10.382, - "_right": -10.382, + "_left": 23.077000000000005, + "_right": -23.077000000000005, "_top": 0, - "_bottom": 166.58499999999998, + "_bottom": 105.659, "_horizontalCenter": 0, "_verticalCenter": 0, "_isAbsLeft": true, @@ -13475,42 +13653,42 @@ }, { "__type__": "cc.Node", - "_name": "coin", + "_name": "hero", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 313 + "__id__": 283 }, "_children": [ - { - "__id__": 599 - }, { "__id__": 607 }, { - "__id__": 613 + "__id__": 615 + }, + { + "__id__": 621 } ], "_active": true, "_components": [ { - "__id__": 621 + "__id__": 629 }, { - "__id__": 623 + "__id__": 631 }, { - "__id__": 625 + "__id__": 633 } ], "_prefab": { - "__id__": 627 + "__id__": 635 }, "_lpos": { "__type__": "cc.Vec3", - "x": 15.920999999999992, - "y": 36.716, + "x": -230.95999999999998, + "y": 49.919, "z": 0 }, "_lrot": { @@ -13542,202 +13720,27 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 598 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 600 - }, - { - "__id__": 602 - }, - { - "__id__": 604 - } - ], - "_prefab": { "__id__": 606 }, - "_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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 599 - }, - "_enabled": true, - "__prefab": { - "__id__": 601 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 140, - "height": 45 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "eb0YjNRJNFzY6bgC84uk12" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 599 - }, - "_enabled": false, - "__prefab": { - "__id__": 603 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@96e5b", - "__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": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "2aDejbZfVBDbuZSiZui7Sp" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 599 - }, - "_enabled": true, - "__prefab": { - "__id__": 605 - }, - "_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": 45, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "3bjier/LpLYJ8BSIL4b4+r" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "35dr0lJV9CO5Ld8TLk7eCZ", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "icon", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 598 - }, "_children": [], - "_active": true, + "_active": false, "_components": [ { "__id__": 608 }, { "__id__": 610 + }, + { + "__id__": 612 } ], "_prefab": { - "__id__": 612 + "__id__": 614 }, "_lpos": { "__type__": "cc.Vec3", - "x": -35, + "x": 0, "y": 0, "z": 0 }, @@ -13778,8 +13781,8 @@ }, "_contentSize": { "__type__": "cc.Size", - "width": 35, - "height": 35 + "width": 510.00000000000006, + "height": 50 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -13790,7 +13793,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "9e9DrNzxtOFL4m/t0+A3P0" + "fileId": "2cUj3Q4DZLCoozORfwKbf4" }, { "__type__": "cc.Sprite", @@ -13815,10 +13818,10 @@ "a": 255 }, "_spriteFrame": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73@4b5bf", + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@96e5b", "__expectedType__": "cc.SpriteFrame" }, - "_type": 0, + "_type": 1, "_fillType": 0, "_sizeMode": 0, "_fillCenter": { @@ -13831,14 +13834,50 @@ "_isTrimmedMode": true, "_useGrayscale": false, "_atlas": { - "__uuid__": "cb93c900-b440-4571-91d1-7da1636e3d73", + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", "__expectedType__": "cc.SpriteAtlas" }, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "efGW8b0ThNXKk6onRGpH30" + "fileId": "29lpRqwkFEtptpWZmrVFC2" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 607 + }, + "_enabled": true, + "__prefab": { + "__id__": 613 + }, + "_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": 45, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "abchfEW1ZBSZOFr/NUO5q6" }, { "__type__": "cc.PrefabInfo", @@ -13848,25 +13887,22 @@ "asset": { "__id__": 0 }, - "fileId": "e7dPNasr5IyqES0tbwxJX3", + "fileId": "ebDo8RYmhKJoLQcsDOvm6d", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null }, { "__type__": "cc.Node", - "_name": "num", + "_name": "icon", "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 598 + "__id__": 606 }, "_children": [], "_active": true, "_components": [ - { - "__id__": 614 - }, { "__id__": 616 }, @@ -13879,7 +13915,7 @@ }, "_lpos": { "__type__": "cc.Vec3", - "x": -15.457, + "x": -20, "y": 0, "z": 0 }, @@ -13912,39 +13948,39 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 613 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 615 + "__id__": 617 }, "_contentSize": { "__type__": "cc.Size", - "width": 250, - "height": 54.4 + "width": 43.2, + "height": 36 }, "_anchorPoint": { "__type__": "cc.Vec2", - "x": 0, + "x": 0.5, "y": 0.5 }, "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "74KOydbBZPaL33+dUhhJRe" + "fileId": "23qUuUxkBMurmQwTpy+EPH" }, { - "__type__": "cc.Label", + "__type__": "cc.Sprite", "_name": "", "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 613 + "__id__": 615 }, "_enabled": true, "__prefab": { - "__id__": 617 + "__id__": 619 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -13956,20 +13992,162 @@ "b": 255, "a": 255 }, - "_string": "{{0}}", + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@8429c", + "__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": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "b9ofSi335KTb6xi+ky1Tj7" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "84qEY2WspHubd3RtrAP2OD", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "num", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 606 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 622 + }, + { + "__id__": 624 + }, + { + "__id__": 626 + } + ], + "_prefab": { + "__id__": 628 + }, + "_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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 621 + }, + "_enabled": true, + "__prefab": { + "__id__": 623 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 105.55029296875, + "height": 54.4 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "9dVbx7RW5PJph13g6JcE7f" + }, + { + "__type__": "cc.Label", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 621 + }, + "_enabled": true, + "__prefab": { + "__id__": 625 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_string": "{{0}}/{{1}}", "_horizontalAlign": 0, "_verticalAlign": 1, - "_actualFontSize": 31, - "_fontSize": 30, + "_actualFontSize": 25, + "_fontSize": 25, "_fontFamily": "Arial", "_lineHeight": 40, - "_overflow": 2, + "_overflow": 0, "_enableWrapText": true, "_font": null, "_isSystemFontUsed": true, "_spacingX": 0, "_isItalic": false, - "_isBold": true, + "_isBold": false, "_isUnderline": false, "_underlineHeight": 2, "_cacheMode": 0, @@ -14000,7 +14178,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "bdrNNK7thMNZHa9Y2Lvam7" + "fileId": "01P1XFffFI0YeiDoBu0o4q" }, { "__type__": "545c05XsG9GDJispEGWKvYv", @@ -14008,23 +14186,24 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 613 + "__id__": 621 }, "_enabled": true, "__prefab": { - "__id__": 619 + "__id__": 627 }, "templateMode": true, - "watchPath": "0", + "watchPath": "", "labelType": "cc.Label", "watchPathArr": [ - "data.mission_data.coin" + "data.mission_data.hero_num", + "data.mission_data.hero_max_num" ], "_id": "" }, { "__type__": "cc.CompPrefabInfo", - "fileId": "c63uq0wtFICbfJrLh+pZmp" + "fileId": "67gp0S7s1LbJrRJxA2hyAY" }, { "__type__": "cc.PrefabInfo", @@ -14034,7 +14213,7 @@ "asset": { "__id__": 0 }, - "fileId": "65zRY1wpZPNLTXws9hsdcE", + "fileId": "b3xI06b3hKYYXhvxKA/RVk", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -14045,16 +14224,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 598 + "__id__": 606 }, "_enabled": true, "__prefab": { - "__id__": 622 + "__id__": 630 }, "_contentSize": { "__type__": "cc.Size", "width": 140, - "height": 45 + "height": 50 }, "_anchorPoint": { "__type__": "cc.Vec2", @@ -14065,7 +14244,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "35quWEUmxMjKYP1nsLJ2VA" + "fileId": "ab5M6WKotJg40uWXPTZ1ob" }, { "__type__": "cc.Sprite", @@ -14073,11 +14252,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 598 + "__id__": 606 }, "_enabled": true, "__prefab": { - "__id__": 624 + "__id__": 632 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14107,7 +14286,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "5ancMx0I9HBaaQDn7GsHwj" + "fileId": "4e8JM6nBZJqrvjHs0V8aai" }, { "__type__": "cc.Widget", @@ -14115,16 +14294,16 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 598 + "__id__": 606 }, "_enabled": true, "__prefab": { - "__id__": 626 + "__id__": 634 }, "_alignFlags": 40, "_target": null, - "_left": 15.920999999999996, - "_right": -15.920999999999996, + "_left": -230.95999999999998, + "_right": 230.95999999999998, "_top": 0, "_bottom": 0, "_horizontalCenter": 0, @@ -14143,7 +14322,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "2bBsRP7v9KRJjiuLdqa2aT" + "fileId": "d3VFgYPnNFJ5pernm2R/lv" }, { "__type__": "cc.PrefabInfo", @@ -14153,7 +14332,7 @@ "asset": { "__id__": 0 }, - "fileId": "a2T+9jtpFDK6TbGmUuF01c", + "fileId": "92fF6VNGhL4KGhc565gFRM", "instance": null, "targetOverrides": null, "nestedPrefabInstanceRoots": null @@ -14164,11 +14343,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 313 + "__id__": 283 }, "_enabled": true, "__prefab": { - "__id__": 629 + "__id__": 637 }, "_contentSize": { "__type__": "cc.Size", @@ -14192,11 +14371,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 313 + "__id__": 283 }, "_enabled": true, "__prefab": { - "__id__": 631 + "__id__": 639 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14234,11 +14413,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 313 + "__id__": 283 }, "_enabled": true, "__prefab": { - "__id__": 633 + "__id__": 641 }, "_alignFlags": 32, "_target": null, @@ -14283,23 +14462,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [], "_active": false, "_components": [ { - "__id__": 636 + "__id__": 644 }, { - "__id__": 638 + "__id__": 646 }, { - "__id__": 640 + "__id__": 648 } ], "_prefab": { - "__id__": 642 + "__id__": 650 }, "_lpos": { "__type__": "cc.Vec3", @@ -14336,11 +14515,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 635 + "__id__": 643 }, "_enabled": true, "__prefab": { - "__id__": 637 + "__id__": 645 }, "_contentSize": { "__type__": "cc.Size", @@ -14364,11 +14543,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 635 + "__id__": 643 }, "_enabled": true, "__prefab": { - "__id__": 639 + "__id__": 647 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -14412,11 +14591,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 635 + "__id__": 643 }, "_enabled": true, "__prefab": { - "__id__": 641 + "__id__": 649 }, "_alignFlags": 45, "_target": null, @@ -14459,17 +14638,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 168 + "__id__": 138 }, "_prefab": { - "__id__": 644 + "__id__": 652 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 643 + "__id__": 651 }, "asset": { "__uuid__": "8aaff904-8c27-4173-9716-7161893b336e", @@ -14477,7 +14656,7 @@ }, "fileId": "24rlgXRJ9AHLGpMW+aYyEx", "instance": { - "__id__": 645 + "__id__": 653 }, "targetOverrides": null }, @@ -14490,18 +14669,6 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ - { - "__id__": 646 - }, - { - "__id__": 648 - }, - { - "__id__": 650 - }, - { - "__id__": 652 - }, { "__id__": 654 }, @@ -14567,6 +14734,18 @@ }, { "__id__": 696 + }, + { + "__id__": 698 + }, + { + "__id__": 700 + }, + { + "__id__": 702 + }, + { + "__id__": 704 } ], "removedComponents": [] @@ -14574,7 +14753,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 647 + "__id__": 655 }, "propertyPath": [ "_name" @@ -14590,7 +14769,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 649 + "__id__": 657 }, "propertyPath": [ "_lpos" @@ -14611,7 +14790,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 651 + "__id__": 659 }, "propertyPath": [ "_lrot" @@ -14633,7 +14812,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 653 + "__id__": 661 }, "propertyPath": [ "_euler" @@ -14654,7 +14833,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 655 + "__id__": 663 }, "propertyPath": [ "_lpos" @@ -14675,7 +14854,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 657 + "__id__": 665 }, "propertyPath": [ "_lpos" @@ -14696,7 +14875,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 659 + "__id__": 667 }, "propertyPath": [ "_active" @@ -14712,7 +14891,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 661 + "__id__": 669 }, "propertyPath": [ "_lpos" @@ -14733,7 +14912,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 663 + "__id__": 671 }, "propertyPath": [ "_lpos" @@ -14754,7 +14933,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 665 + "__id__": 673 }, "propertyPath": [ "_contentSize" @@ -14774,7 +14953,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 667 + "__id__": 675 }, "propertyPath": [ "_contentSize" @@ -14794,7 +14973,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 669 + "__id__": 677 }, "propertyPath": [ "_contentSize" @@ -14814,7 +14993,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 671 + "__id__": 679 }, "propertyPath": [ "_contentSize" @@ -14834,7 +15013,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 673 + "__id__": 681 }, "propertyPath": [ "_contentSize" @@ -14854,7 +15033,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 675 + "__id__": 683 }, "propertyPath": [ "_contentSize" @@ -14874,7 +15053,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 677 + "__id__": 685 }, "propertyPath": [ "_contentSize" @@ -14894,7 +15073,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 679 + "__id__": 687 }, "propertyPath": [ "_contentSize" @@ -14914,7 +15093,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 681 + "__id__": 689 }, "propertyPath": [ "_contentSize" @@ -14934,7 +15113,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 683 + "__id__": 691 }, "propertyPath": [ "_contentSize" @@ -14954,7 +15133,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 685 + "__id__": 693 }, "propertyPath": [ "_contentSize" @@ -14974,7 +15153,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 687 + "__id__": 695 }, "propertyPath": [ "_contentSize" @@ -14994,7 +15173,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 689 + "__id__": 697 }, "propertyPath": [ "_contentSize" @@ -15014,7 +15193,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 691 + "__id__": 699 }, "propertyPath": [ "_contentSize" @@ -15034,7 +15213,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 693 + "__id__": 701 }, "propertyPath": [ "_lpos" @@ -15055,7 +15234,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 695 + "__id__": 703 }, "propertyPath": [ "_lpos" @@ -15076,7 +15255,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 697 + "__id__": 705 }, "propertyPath": [ "_lpos" @@ -15098,17 +15277,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 168 + "__id__": 138 }, "_prefab": { - "__id__": 699 + "__id__": 707 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 698 + "__id__": 706 }, "asset": { "__uuid__": "8aaff904-8c27-4173-9716-7161893b336e", @@ -15116,7 +15295,7 @@ }, "fileId": "24rlgXRJ9AHLGpMW+aYyEx", "instance": { - "__id__": 700 + "__id__": 708 }, "targetOverrides": null }, @@ -15129,18 +15308,6 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ - { - "__id__": 701 - }, - { - "__id__": 703 - }, - { - "__id__": 705 - }, - { - "__id__": 707 - }, { "__id__": 709 }, @@ -15206,6 +15373,18 @@ }, { "__id__": 751 + }, + { + "__id__": 753 + }, + { + "__id__": 755 + }, + { + "__id__": 757 + }, + { + "__id__": 759 } ], "removedComponents": [] @@ -15213,7 +15392,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 702 + "__id__": 710 }, "propertyPath": [ "_name" @@ -15229,7 +15408,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 704 + "__id__": 712 }, "propertyPath": [ "_lpos" @@ -15250,7 +15429,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 706 + "__id__": 714 }, "propertyPath": [ "_lrot" @@ -15272,7 +15451,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 708 + "__id__": 716 }, "propertyPath": [ "_euler" @@ -15293,7 +15472,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 710 + "__id__": 718 }, "propertyPath": [ "_lpos" @@ -15314,7 +15493,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 712 + "__id__": 720 }, "propertyPath": [ "_lpos" @@ -15335,7 +15514,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 714 + "__id__": 722 }, "propertyPath": [ "_active" @@ -15351,7 +15530,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 716 + "__id__": 724 }, "propertyPath": [ "_lpos" @@ -15372,7 +15551,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 718 + "__id__": 726 }, "propertyPath": [ "_lpos" @@ -15393,7 +15572,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 720 + "__id__": 728 }, "propertyPath": [ "_contentSize" @@ -15413,7 +15592,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 722 + "__id__": 730 }, "propertyPath": [ "_contentSize" @@ -15433,7 +15612,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 724 + "__id__": 732 }, "propertyPath": [ "_contentSize" @@ -15453,7 +15632,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 726 + "__id__": 734 }, "propertyPath": [ "_contentSize" @@ -15473,7 +15652,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 728 + "__id__": 736 }, "propertyPath": [ "_contentSize" @@ -15493,7 +15672,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 730 + "__id__": 738 }, "propertyPath": [ "_contentSize" @@ -15513,7 +15692,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 732 + "__id__": 740 }, "propertyPath": [ "_contentSize" @@ -15533,7 +15712,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 734 + "__id__": 742 }, "propertyPath": [ "_contentSize" @@ -15553,7 +15732,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 736 + "__id__": 744 }, "propertyPath": [ "_contentSize" @@ -15573,7 +15752,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 738 + "__id__": 746 }, "propertyPath": [ "_contentSize" @@ -15593,7 +15772,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 740 + "__id__": 748 }, "propertyPath": [ "_contentSize" @@ -15613,7 +15792,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 742 + "__id__": 750 }, "propertyPath": [ "_contentSize" @@ -15633,7 +15812,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 744 + "__id__": 752 }, "propertyPath": [ "_contentSize" @@ -15653,7 +15832,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 746 + "__id__": 754 }, "propertyPath": [ "_contentSize" @@ -15673,7 +15852,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 748 + "__id__": 756 }, "propertyPath": [ "_lpos" @@ -15694,7 +15873,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 750 + "__id__": 758 }, "propertyPath": [ "_lpos" @@ -15715,7 +15894,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 752 + "__id__": 760 }, "propertyPath": [ "_lpos" @@ -15737,17 +15916,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 168 + "__id__": 138 }, "_prefab": { - "__id__": 754 + "__id__": 762 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 753 + "__id__": 761 }, "asset": { "__uuid__": "8aaff904-8c27-4173-9716-7161893b336e", @@ -15755,7 +15934,7 @@ }, "fileId": "24rlgXRJ9AHLGpMW+aYyEx", "instance": { - "__id__": 755 + "__id__": 763 }, "targetOverrides": null }, @@ -15768,18 +15947,6 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ - { - "__id__": 756 - }, - { - "__id__": 758 - }, - { - "__id__": 760 - }, - { - "__id__": 762 - }, { "__id__": 764 }, @@ -15812,6 +15979,18 @@ }, { "__id__": 784 + }, + { + "__id__": 786 + }, + { + "__id__": 788 + }, + { + "__id__": 790 + }, + { + "__id__": 792 } ], "removedComponents": [] @@ -15819,7 +15998,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 757 + "__id__": 765 }, "propertyPath": [ "_name" @@ -15835,7 +16014,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 759 + "__id__": 767 }, "propertyPath": [ "_lpos" @@ -15856,7 +16035,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 761 + "__id__": 769 }, "propertyPath": [ "_lrot" @@ -15878,7 +16057,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 763 + "__id__": 771 }, "propertyPath": [ "_euler" @@ -15899,7 +16078,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 765 + "__id__": 773 }, "propertyPath": [ "_lpos" @@ -15920,7 +16099,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 767 + "__id__": 775 }, "propertyPath": [ "_lpos" @@ -15941,7 +16120,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 769 + "__id__": 777 }, "propertyPath": [ "_active" @@ -15957,7 +16136,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 771 + "__id__": 779 }, "propertyPath": [ "_lpos" @@ -15978,7 +16157,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 773 + "__id__": 781 }, "propertyPath": [ "_lpos" @@ -15999,7 +16178,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 775 + "__id__": 783 }, "propertyPath": [ "_contentSize" @@ -16019,7 +16198,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 777 + "__id__": 785 }, "propertyPath": [ "_contentSize" @@ -16039,7 +16218,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 779 + "__id__": 787 }, "propertyPath": [ "_contentSize" @@ -16059,7 +16238,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 781 + "__id__": 789 }, "propertyPath": [ "_contentSize" @@ -16079,7 +16258,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 783 + "__id__": 791 }, "propertyPath": [ "_contentSize" @@ -16099,7 +16278,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 785 + "__id__": 793 }, "propertyPath": [ "_contentSize" @@ -16120,17 +16299,17 @@ "__type__": "cc.Node", "_objFlags": 0, "_parent": { - "__id__": 168 + "__id__": 138 }, "_prefab": { - "__id__": 787 + "__id__": 795 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 786 + "__id__": 794 }, "asset": { "__uuid__": "8aaff904-8c27-4173-9716-7161893b336e", @@ -16138,7 +16317,7 @@ }, "fileId": "24rlgXRJ9AHLGpMW+aYyEx", "instance": { - "__id__": 788 + "__id__": 796 }, "targetOverrides": null }, @@ -16151,18 +16330,6 @@ "mountedChildren": [], "mountedComponents": [], "propertyOverrides": [ - { - "__id__": 789 - }, - { - "__id__": 791 - }, - { - "__id__": 793 - }, - { - "__id__": 795 - }, { "__id__": 797 }, @@ -16195,6 +16362,18 @@ }, { "__id__": 817 + }, + { + "__id__": 819 + }, + { + "__id__": 821 + }, + { + "__id__": 823 + }, + { + "__id__": 825 } ], "removedComponents": [] @@ -16202,7 +16381,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 790 + "__id__": 798 }, "propertyPath": [ "_name" @@ -16218,7 +16397,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 792 + "__id__": 800 }, "propertyPath": [ "_lpos" @@ -16239,7 +16418,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 794 + "__id__": 802 }, "propertyPath": [ "_lrot" @@ -16261,7 +16440,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 796 + "__id__": 804 }, "propertyPath": [ "_euler" @@ -16282,7 +16461,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 798 + "__id__": 806 }, "propertyPath": [ "_lpos" @@ -16303,7 +16482,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 800 + "__id__": 808 }, "propertyPath": [ "_lpos" @@ -16324,7 +16503,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 802 + "__id__": 810 }, "propertyPath": [ "_active" @@ -16340,7 +16519,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 804 + "__id__": 812 }, "propertyPath": [ "_lpos" @@ -16361,7 +16540,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 806 + "__id__": 814 }, "propertyPath": [ "_lpos" @@ -16382,7 +16561,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 808 + "__id__": 816 }, "propertyPath": [ "_contentSize" @@ -16402,7 +16581,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 810 + "__id__": 818 }, "propertyPath": [ "_contentSize" @@ -16422,7 +16601,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 812 + "__id__": 820 }, "propertyPath": [ "_contentSize" @@ -16442,7 +16621,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 814 + "__id__": 822 }, "propertyPath": [ "_contentSize" @@ -16462,7 +16641,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 816 + "__id__": 824 }, "propertyPath": [ "_contentSize" @@ -16482,7 +16661,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 818 + "__id__": 826 }, "propertyPath": [ "_contentSize" @@ -16505,23 +16684,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [], "_active": true, "_components": [ { - "__id__": 820 + "__id__": 828 }, { - "__id__": 822 + "__id__": 830 }, { - "__id__": 824 + "__id__": 832 } ], "_prefab": { - "__id__": 826 + "__id__": 834 }, "_lpos": { "__type__": "cc.Vec3", @@ -16558,11 +16737,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 827 }, "_enabled": true, "__prefab": { - "__id__": 821 + "__id__": 829 }, "_contentSize": { "__type__": "cc.Size", @@ -16586,11 +16765,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 827 }, "_enabled": true, "__prefab": { - "__id__": 823 + "__id__": 831 }, "_resizeMode": 1, "_layoutType": 1, @@ -16624,11 +16803,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 819 + "__id__": 827 }, "_enabled": true, "__prefab": { - "__id__": 825 + "__id__": 833 }, "_alignFlags": 44, "_target": null, @@ -16673,12 +16852,9 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 168 + "__id__": 138 }, "_children": [ - { - "__id__": 828 - }, { "__id__": 836 }, @@ -16686,23 +16862,26 @@ "__id__": 844 }, { - "__id__": 878 + "__id__": 852 }, { "__id__": 886 - } - ], - "_active": false, - "_components": [ - { - "__id__": 892 }, { "__id__": 894 } ], + "_active": false, + "_components": [ + { + "__id__": 900 + }, + { + "__id__": 902 + } + ], "_prefab": { - "__id__": 896 + "__id__": 904 }, "_lpos": { "__type__": "cc.Vec3", @@ -16739,186 +16918,8 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 827 - }, - "_children": [], - "_active": true, - "_components": [ - { - "__id__": 829 - }, - { - "__id__": 831 - }, - { - "__id__": 833 - } - ], - "_prefab": { "__id__": 835 }, - "_lpos": { - "__type__": "cc.Vec3", - "x": 0, - "y": 55, - "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": 1073741824, - "_euler": { - "__type__": "cc.Vec3", - "x": 0, - "y": 0, - "z": 0 - }, - "_id": "" - }, - { - "__type__": "cc.UITransform", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 828 - }, - "_enabled": true, - "__prefab": { - "__id__": 830 - }, - "_contentSize": { - "__type__": "cc.Size", - "width": 220, - "height": 110 - }, - "_anchorPoint": { - "__type__": "cc.Vec2", - "x": 0.5, - "y": 0.5 - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "6akkasJtRKsKGIQ6iE2fLR" - }, - { - "__type__": "cc.Sprite", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 828 - }, - "_enabled": true, - "__prefab": { - "__id__": 832 - }, - "_customMaterial": null, - "_srcBlendFactor": 2, - "_dstBlendFactor": 4, - "_color": { - "__type__": "cc.Color", - "r": 255, - "g": 255, - "b": 255, - "a": 255 - }, - "_spriteFrame": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@e9165", - "__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": { - "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", - "__expectedType__": "cc.SpriteAtlas" - }, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "acPy7f7sJBg4R5Dd6deMoS" - }, - { - "__type__": "cc.Widget", - "_name": "", - "_objFlags": 0, - "__editorExtras__": {}, - "node": { - "__id__": 828 - }, - "_enabled": true, - "__prefab": { - "__id__": 834 - }, - "_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": 180, - "_originalHeight": 120, - "_alignMode": 2, - "_lockFlags": 0, - "_id": "" - }, - { - "__type__": "cc.CompPrefabInfo", - "fileId": "07jVqQ6fhP6odyTB1XLUyx" - }, - { - "__type__": "cc.PrefabInfo", - "root": { - "__id__": 1 - }, - "asset": { - "__id__": 0 - }, - "fileId": "fb++6W6z5Lo6uWOXJ516hh", - "instance": null, - "targetOverrides": null, - "nestedPrefabInstanceRoots": null - }, - { - "__type__": "cc.Node", - "_name": "nobg", - "_objFlags": 0, - "__editorExtras__": {}, - "_parent": { - "__id__": 827 - }, "_children": [], "_active": true, "_components": [ @@ -16990,7 +16991,7 @@ }, { "__type__": "cc.CompPrefabInfo", - "fileId": "6eL31eymxLlJ9K3llqLmad" + "fileId": "6akkasJtRKsKGIQ6iE2fLR" }, { "__type__": "cc.Sprite", @@ -17029,6 +17030,184 @@ "_fillStart": 0, "_fillRange": 0, "_isTrimmedMode": true, + "_useGrayscale": false, + "_atlas": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", + "__expectedType__": "cc.SpriteAtlas" + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "acPy7f7sJBg4R5Dd6deMoS" + }, + { + "__type__": "cc.Widget", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 836 + }, + "_enabled": true, + "__prefab": { + "__id__": 842 + }, + "_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": 180, + "_originalHeight": 120, + "_alignMode": 2, + "_lockFlags": 0, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "07jVqQ6fhP6odyTB1XLUyx" + }, + { + "__type__": "cc.PrefabInfo", + "root": { + "__id__": 1 + }, + "asset": { + "__id__": 0 + }, + "fileId": "fb++6W6z5Lo6uWOXJ516hh", + "instance": null, + "targetOverrides": null, + "nestedPrefabInstanceRoots": null + }, + { + "__type__": "cc.Node", + "_name": "nobg", + "_objFlags": 0, + "__editorExtras__": {}, + "_parent": { + "__id__": 835 + }, + "_children": [], + "_active": true, + "_components": [ + { + "__id__": 845 + }, + { + "__id__": 847 + }, + { + "__id__": 849 + } + ], + "_prefab": { + "__id__": 851 + }, + "_lpos": { + "__type__": "cc.Vec3", + "x": 0, + "y": 55, + "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": 1073741824, + "_euler": { + "__type__": "cc.Vec3", + "x": 0, + "y": 0, + "z": 0 + }, + "_id": "" + }, + { + "__type__": "cc.UITransform", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 844 + }, + "_enabled": true, + "__prefab": { + "__id__": 846 + }, + "_contentSize": { + "__type__": "cc.Size", + "width": 220, + "height": 110 + }, + "_anchorPoint": { + "__type__": "cc.Vec2", + "x": 0.5, + "y": 0.5 + }, + "_id": "" + }, + { + "__type__": "cc.CompPrefabInfo", + "fileId": "6eL31eymxLlJ9K3llqLmad" + }, + { + "__type__": "cc.Sprite", + "_name": "", + "_objFlags": 0, + "__editorExtras__": {}, + "node": { + "__id__": 844 + }, + "_enabled": true, + "__prefab": { + "__id__": 848 + }, + "_customMaterial": null, + "_srcBlendFactor": 2, + "_dstBlendFactor": 4, + "_color": { + "__type__": "cc.Color", + "r": 255, + "g": 255, + "b": 255, + "a": 255 + }, + "_spriteFrame": { + "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4@e9165", + "__expectedType__": "cc.SpriteFrame" + }, + "_type": 1, + "_fillType": 0, + "_sizeMode": 0, + "_fillCenter": { + "__type__": "cc.Vec2", + "x": 0, + "y": 0 + }, + "_fillStart": 0, + "_fillRange": 0, + "_isTrimmedMode": true, "_useGrayscale": true, "_atlas": { "__uuid__": "6165ffc9-a838-4a33-b569-bdbaaab0e6b4", @@ -17046,11 +17225,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 836 + "__id__": 844 }, "_enabled": true, "__prefab": { - "__id__": 842 + "__id__": 850 }, "_alignFlags": 45, "_target": null, @@ -17095,33 +17274,33 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 827 + "__id__": 835 }, "_children": [ { - "__id__": 845 + "__id__": 853 }, { - "__id__": 851 + "__id__": 859 }, { - "__id__": 857 + "__id__": 865 } ], "_active": true, "_components": [ { - "__id__": 871 + "__id__": 879 }, { - "__id__": 873 + "__id__": 881 }, { - "__id__": 875 + "__id__": 883 } ], "_prefab": { - "__id__": 877 + "__id__": 885 }, "_lpos": { "__type__": "cc.Vec3", @@ -17158,20 +17337,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 844 + "__id__": 852 }, "_children": [], "_active": true, "_components": [ { - "__id__": 846 + "__id__": 854 }, { - "__id__": 848 + "__id__": 856 } ], "_prefab": { - "__id__": 850 + "__id__": 858 }, "_lpos": { "__type__": "cc.Vec3", @@ -17208,11 +17387,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 845 + "__id__": 853 }, "_enabled": true, "__prefab": { - "__id__": 847 + "__id__": 855 }, "_contentSize": { "__type__": "cc.Size", @@ -17236,11 +17415,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 845 + "__id__": 853 }, "_enabled": true, "__prefab": { - "__id__": 849 + "__id__": 857 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17294,20 +17473,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 844 + "__id__": 852 }, "_children": [], "_active": true, "_components": [ { - "__id__": 852 + "__id__": 860 }, { - "__id__": 854 + "__id__": 862 } ], "_prefab": { - "__id__": 856 + "__id__": 864 }, "_lpos": { "__type__": "cc.Vec3", @@ -17344,11 +17523,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 851 + "__id__": 859 }, "_enabled": true, "__prefab": { - "__id__": 853 + "__id__": 861 }, "_contentSize": { "__type__": "cc.Size", @@ -17372,11 +17551,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 851 + "__id__": 859 }, "_enabled": true, "__prefab": { - "__id__": 855 + "__id__": 863 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17433,24 +17612,24 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 844 + "__id__": 852 }, "_children": [ { - "__id__": 858 + "__id__": 866 } ], "_active": true, "_components": [ { - "__id__": 866 + "__id__": 874 }, { - "__id__": 868 + "__id__": 876 } ], "_prefab": { - "__id__": 870 + "__id__": 878 }, "_lpos": { "__type__": "cc.Vec3", @@ -17487,23 +17666,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 857 + "__id__": 865 }, "_children": [], "_active": true, "_components": [ { - "__id__": 859 + "__id__": 867 }, { - "__id__": 861 + "__id__": 869 }, { - "__id__": 863 + "__id__": 871 } ], "_prefab": { - "__id__": 865 + "__id__": 873 }, "_lpos": { "__type__": "cc.Vec3", @@ -17540,11 +17719,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 866 }, "_enabled": true, "__prefab": { - "__id__": 860 + "__id__": 868 }, "_contentSize": { "__type__": "cc.Size", @@ -17568,11 +17747,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 866 }, "_enabled": true, "__prefab": { - "__id__": 862 + "__id__": 870 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17636,11 +17815,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 858 + "__id__": 866 }, "_enabled": true, "__prefab": { - "__id__": 864 + "__id__": 872 }, "_alignFlags": 8, "_target": null, @@ -17685,11 +17864,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 857 + "__id__": 865 }, "_enabled": true, "__prefab": { - "__id__": 867 + "__id__": 875 }, "_contentSize": { "__type__": "cc.Size", @@ -17713,11 +17892,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 857 + "__id__": 865 }, "_enabled": true, "__prefab": { - "__id__": 869 + "__id__": 877 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17794,11 +17973,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 844 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 872 + "__id__": 880 }, "_contentSize": { "__type__": "cc.Size", @@ -17822,11 +18001,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 844 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 874 + "__id__": 882 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -17864,11 +18043,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 844 + "__id__": 852 }, "_enabled": true, "__prefab": { - "__id__": 876 + "__id__": 884 }, "_alignFlags": 16, "_target": null, @@ -17913,23 +18092,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 827 + "__id__": 835 }, "_children": [], "_active": true, "_components": [ { - "__id__": 879 + "__id__": 887 }, { - "__id__": 881 + "__id__": 889 }, { - "__id__": 883 + "__id__": 891 } ], "_prefab": { - "__id__": 885 + "__id__": 893 }, "_lpos": { "__type__": "cc.Vec3", @@ -17966,11 +18145,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 886 }, "_enabled": true, "__prefab": { - "__id__": 880 + "__id__": 888 }, "_contentSize": { "__type__": "cc.Size", @@ -17994,11 +18173,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 886 }, "_enabled": true, "__prefab": { - "__id__": 882 + "__id__": 890 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18062,11 +18241,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 878 + "__id__": 886 }, "_enabled": true, "__prefab": { - "__id__": 884 + "__id__": 892 }, "_alignFlags": 16, "_target": null, @@ -18111,20 +18290,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 827 + "__id__": 835 }, "_children": [], "_active": false, "_components": [ { - "__id__": 887 + "__id__": 895 }, { - "__id__": 889 + "__id__": 897 } ], "_prefab": { - "__id__": 891 + "__id__": 899 }, "_lpos": { "__type__": "cc.Vec3", @@ -18161,11 +18340,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 886 + "__id__": 894 }, "_enabled": true, "__prefab": { - "__id__": 888 + "__id__": 896 }, "_contentSize": { "__type__": "cc.Size", @@ -18189,11 +18368,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 886 + "__id__": 894 }, "_enabled": true, "__prefab": { - "__id__": 890 + "__id__": 898 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18247,11 +18426,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 827 + "__id__": 835 }, "_enabled": true, "__prefab": { - "__id__": 893 + "__id__": 901 }, "_contentSize": { "__type__": "cc.Size", @@ -18275,11 +18454,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 827 + "__id__": 835 }, "_enabled": false, "__prefab": { - "__id__": 895 + "__id__": 903 }, "_alignFlags": 12, "_target": null, @@ -18324,11 +18503,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 898 + "__id__": 906 }, "_contentSize": { "__type__": "cc.Size", @@ -18352,11 +18531,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 138 }, "_enabled": true, "__prefab": { - "__id__": 900 + "__id__": 908 }, "_alignFlags": 44, "_target": null, @@ -18388,11 +18567,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 138 }, "_enabled": false, "__prefab": { - "__id__": 902 + "__id__": 910 }, "_resizeMode": 1, "_layoutType": 1, @@ -18426,11 +18605,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 168 + "__id__": 138 }, "_enabled": false, "__prefab": { - "__id__": 904 + "__id__": 912 }, "_id": "" }, @@ -18458,14 +18637,14 @@ "__id__": 1 }, "_prefab": { - "__id__": 907 + "__id__": 915 }, "__editorExtras__": {} }, { "__type__": "cc.PrefabInfo", "root": { - "__id__": 906 + "__id__": 914 }, "asset": { "__uuid__": "0f2aeee0-d590-4c36-9f20-a93b058d5b91", @@ -18473,7 +18652,7 @@ }, "fileId": "5622mxbS1PNqMFP0FH5Mir", "instance": { - "__id__": 908 + "__id__": 916 }, "targetOverrides": null }, @@ -18487,22 +18666,22 @@ "mountedComponents": [], "propertyOverrides": [ { - "__id__": 909 + "__id__": 917 }, { - "__id__": 911 + "__id__": 919 }, { - "__id__": 912 + "__id__": 920 }, { - "__id__": 913 + "__id__": 921 }, { - "__id__": 914 + "__id__": 922 }, { - "__id__": 916 + "__id__": 924 } ], "removedComponents": [] @@ -18510,7 +18689,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 910 + "__id__": 918 }, "propertyPath": [ "_name" @@ -18526,7 +18705,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 910 + "__id__": 918 }, "propertyPath": [ "_lpos" @@ -18541,7 +18720,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 910 + "__id__": 918 }, "propertyPath": [ "_lrot" @@ -18557,7 +18736,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 910 + "__id__": 918 }, "propertyPath": [ "_euler" @@ -18572,7 +18751,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 915 + "__id__": 923 }, "propertyPath": [ "_left" @@ -18588,7 +18767,7 @@ { "__type__": "CCPropertyOverrideInfo", "targetInfo": { - "__id__": 915 + "__id__": 923 }, "propertyPath": [ "_verticalCenter" @@ -18605,26 +18784,26 @@ }, "_children": [ { - "__id__": 918 + "__id__": 926 }, { - "__id__": 926 + "__id__": 934 } ], "_active": true, "_components": [ { - "__id__": 934 + "__id__": 942 }, { - "__id__": 936 + "__id__": 944 }, { - "__id__": 939 + "__id__": 947 } ], "_prefab": { - "__id__": 941 + "__id__": 949 }, "_lpos": { "__type__": "cc.Vec3", @@ -18661,23 +18840,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 917 + "__id__": 925 }, "_children": [], "_active": true, "_components": [ { - "__id__": 919 + "__id__": 927 }, { - "__id__": 921 + "__id__": 929 }, { - "__id__": 923 + "__id__": 931 } ], "_prefab": { - "__id__": 925 + "__id__": 933 }, "_lpos": { "__type__": "cc.Vec3", @@ -18714,11 +18893,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 926 }, "_enabled": true, "__prefab": { - "__id__": 920 + "__id__": 928 }, "_contentSize": { "__type__": "cc.Size", @@ -18742,11 +18921,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 926 }, "_enabled": true, "__prefab": { - "__id__": 922 + "__id__": 930 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18790,11 +18969,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 918 + "__id__": 926 }, "_enabled": false, "__prefab": { - "__id__": 924 + "__id__": 932 }, "_alignFlags": 45, "_target": null, @@ -18839,23 +19018,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 917 + "__id__": 925 }, "_children": [], "_active": false, "_components": [ { - "__id__": 927 + "__id__": 935 }, { - "__id__": 929 + "__id__": 937 }, { - "__id__": 931 + "__id__": 939 } ], "_prefab": { - "__id__": 933 + "__id__": 941 }, "_lpos": { "__type__": "cc.Vec3", @@ -18892,11 +19071,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 926 + "__id__": 934 }, "_enabled": true, "__prefab": { - "__id__": 928 + "__id__": 936 }, "_contentSize": { "__type__": "cc.Size", @@ -18920,11 +19099,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 926 + "__id__": 934 }, "_enabled": true, "__prefab": { - "__id__": 930 + "__id__": 938 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -18988,11 +19167,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 926 + "__id__": 934 }, "_enabled": true, "__prefab": { - "__id__": 932 + "__id__": 940 }, "_alignFlags": 16, "_target": null, @@ -19037,11 +19216,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 917 + "__id__": 925 }, "_enabled": true, "__prefab": { - "__id__": 935 + "__id__": 943 }, "_contentSize": { "__type__": "cc.Size", @@ -19065,15 +19244,15 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 917 + "__id__": 925 }, "_enabled": true, "__prefab": { - "__id__": 937 + "__id__": 945 }, "clickEvents": [ { - "__id__": 938 + "__id__": 946 } ], "_interactable": true, @@ -19113,7 +19292,7 @@ "_duration": 0.1, "_zoomScale": 1.2, "_target": { - "__id__": 917 + "__id__": 925 }, "_id": "" }, @@ -19137,11 +19316,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 917 + "__id__": 925 }, "_enabled": true, "__prefab": { - "__id__": 940 + "__id__": 948 }, "_alignFlags": 36, "_target": null, @@ -19190,26 +19369,26 @@ }, "_children": [ { - "__id__": 943 - }, - { - "__id__": 949 + "__id__": 951 }, { "__id__": 957 + }, + { + "__id__": 965 } ], "_active": true, "_components": [ { - "__id__": 967 + "__id__": 975 }, { - "__id__": 969 + "__id__": 977 } ], "_prefab": { - "__id__": 971 + "__id__": 979 }, "_lpos": { "__type__": "cc.Vec3", @@ -19246,20 +19425,20 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 942 + "__id__": 950 }, "_children": [], "_active": true, "_components": [ { - "__id__": 944 + "__id__": 952 }, { - "__id__": 946 + "__id__": 954 } ], "_prefab": { - "__id__": 948 + "__id__": 956 }, "_lpos": { "__type__": "cc.Vec3", @@ -19296,11 +19475,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 943 + "__id__": 951 }, "_enabled": true, "__prefab": { - "__id__": 945 + "__id__": 953 }, "_contentSize": { "__type__": "cc.Size", @@ -19324,11 +19503,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 943 + "__id__": 951 }, "_enabled": true, "__prefab": { - "__id__": 947 + "__id__": 955 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19382,23 +19561,23 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 942 + "__id__": 950 }, "_children": [], "_active": false, "_components": [ { - "__id__": 950 + "__id__": 958 }, { - "__id__": 952 + "__id__": 960 }, { - "__id__": 954 + "__id__": 962 } ], "_prefab": { - "__id__": 956 + "__id__": 964 }, "_lpos": { "__type__": "cc.Vec3", @@ -19435,11 +19614,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 957 }, "_enabled": true, "__prefab": { - "__id__": 951 + "__id__": 959 }, "_contentSize": { "__type__": "cc.Size", @@ -19463,11 +19642,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 957 }, "_enabled": true, "__prefab": { - "__id__": 953 + "__id__": 961 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19511,11 +19690,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 949 + "__id__": 957 }, "_enabled": true, "__prefab": { - "__id__": 955 + "__id__": 963 }, "_alignFlags": 40, "_target": null, @@ -19560,26 +19739,26 @@ "_objFlags": 0, "__editorExtras__": {}, "_parent": { - "__id__": 942 + "__id__": 950 }, "_children": [], "_active": true, "_components": [ { - "__id__": 958 + "__id__": 966 }, { - "__id__": 960 + "__id__": 968 }, { - "__id__": 962 + "__id__": 970 }, { - "__id__": 964 + "__id__": 972 } ], "_prefab": { - "__id__": 966 + "__id__": 974 }, "_lpos": { "__type__": "cc.Vec3", @@ -19616,11 +19795,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 965 }, "_enabled": true, "__prefab": { - "__id__": 959 + "__id__": 967 }, "_contentSize": { "__type__": "cc.Size", @@ -19644,11 +19823,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 965 }, "_enabled": true, "__prefab": { - "__id__": 961 + "__id__": 969 }, "_customMaterial": null, "_srcBlendFactor": 2, @@ -19712,11 +19891,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 965 }, "_enabled": true, "__prefab": { - "__id__": 963 + "__id__": 971 }, "_params": [], "_dataID": "", @@ -19732,11 +19911,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 957 + "__id__": 965 }, "_enabled": true, "__prefab": { - "__id__": 965 + "__id__": 973 }, "_alignFlags": 45, "_target": null, @@ -19781,11 +19960,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 950 }, "_enabled": true, "__prefab": { - "__id__": 968 + "__id__": 976 }, "_contentSize": { "__type__": "cc.Size", @@ -19809,11 +19988,11 @@ "_objFlags": 0, "__editorExtras__": {}, "node": { - "__id__": 942 + "__id__": 950 }, "_enabled": true, "__prefab": { - "__id__": 970 + "__id__": 978 }, "_alignFlags": 1, "_target": null, @@ -19862,7 +20041,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 973 + "__id__": 981 }, "_contentSize": { "__type__": "cc.Size", @@ -19890,7 +20069,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 975 + "__id__": 983 }, "_alignFlags": 21, "_target": null, @@ -19926,7 +20105,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 977 + "__id__": 985 }, "debugMode": false, "showMemoryPanel": true, @@ -19935,13 +20114,13 @@ 10 ], "start_btn": { - "__id__": 384 + "__id__": 354 }, "time_node": { "__id__": 2 }, "tooltip": { - "__id__": 942 + "__id__": 950 }, "_id": "" }, @@ -19959,7 +20138,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 979 + "__id__": 987 }, "_id": "" }, @@ -19977,7 +20156,7 @@ }, "_enabled": true, "__prefab": { - "__id__": 981 + "__id__": 989 }, "debugMode": false, "_id": "" @@ -19996,44 +20175,37 @@ }, "_enabled": true, "__prefab": { - "__id__": 983 + "__id__": 991 }, "cards_node": { - "__id__": 168 + "__id__": 138 }, "card1": { - "__id__": 643 + "__id__": 651 }, "card2": { - "__id__": 698 + "__id__": 706 }, "card3": { - "__id__": 753 + "__id__": 761 }, "card4": { - "__id__": 786 + "__id__": 794 }, "cards_chou": { - "__id__": 334 + "__id__": 304 }, "cards_up": { - "__id__": 827 + "__id__": 835 }, "coins_node": { - "__id__": 598 + "__id__": 386 }, "pool_lv_node": { - "__id__": 429 - }, - "hero_info_node": { - "__id__": 63 - }, - "hero_info_prefab": { - "__uuid__": "46f1e2cb-6fa7-4e9e-b419-e424ba47fe68", - "__expectedType__": "cc.Prefab" + "__id__": 437 }, "hero_num_node": { - "__id__": 133 + "__id__": 606 }, "_id": "" }, @@ -20053,111 +20225,111 @@ "instance": null, "targetOverrides": [ { - "__id__": 985 + "__id__": 993 }, { - "__id__": 988 + "__id__": 996 }, { - "__id__": 991 + "__id__": 999 }, { - "__id__": 994 + "__id__": 1002 }, { - "__id__": 997 + "__id__": 1005 }, { - "__id__": 1000 + "__id__": 1008 }, { - "__id__": 1003 + "__id__": 1011 }, { - "__id__": 1006 + "__id__": 1014 }, { - "__id__": 1009 + "__id__": 1017 }, { - "__id__": 1012 + "__id__": 1020 }, { - "__id__": 1015 + "__id__": 1023 }, { - "__id__": 1018 + "__id__": 1026 }, { - "__id__": 1021 + "__id__": 1029 }, { - "__id__": 1024 + "__id__": 1032 }, { - "__id__": 1027 + "__id__": 1035 }, { - "__id__": 1030 + "__id__": 1038 }, { - "__id__": 1033 + "__id__": 1041 }, { - "__id__": 1036 + "__id__": 1044 }, { - "__id__": 1039 + "__id__": 1047 }, { - "__id__": 1042 + "__id__": 1050 }, { - "__id__": 1045 + "__id__": 1053 }, { - "__id__": 1048 + "__id__": 1056 }, { - "__id__": 1051 + "__id__": 1059 }, { - "__id__": 1054 + "__id__": 1062 }, { - "__id__": 1057 + "__id__": 1065 }, { - "__id__": 1060 + "__id__": 1068 }, { - "__id__": 1063 + "__id__": 1071 }, { - "__id__": 1066 + "__id__": 1074 }, { - "__id__": 1069 + "__id__": 1077 }, { - "__id__": 1072 + "__id__": 1080 } ], "nestedPrefabInstanceRoots": [ { - "__id__": 906 + "__id__": 914 }, { - "__id__": 786 + "__id__": 794 }, { - "__id__": 753 + "__id__": 761 }, { - "__id__": 698 + "__id__": 706 }, { - "__id__": 643 + "__id__": 651 }, { "__id__": 116 @@ -20185,7 +20357,7 @@ "__id__": 64 }, "sourceInfo": { - "__id__": 986 + "__id__": 994 }, "propertyPath": [ "icon_node" @@ -20194,97 +20366,7 @@ "__id__": 64 }, "targetInfo": { - "__id__": 987 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b5xpz003VN+JjcOmrDrKg0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 64 - }, - "sourceInfo": { - "__id__": 989 - }, - "propertyPath": [ - "sell_node" - ], - "target": { - "__id__": 64 - }, - "targetInfo": { - "__id__": 990 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "02JrX+YSZAXZFrDj1ZF6Vq" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 64 - }, - "sourceInfo": { - "__id__": 992 - }, - "propertyPath": [ - "NF_node" - ], - "target": { - "__id__": 64 - }, - "targetInfo": { - "__id__": 993 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "1bTN3e+IhJMo33yUkwdRd/" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 64 - }, - "sourceInfo": { "__id__": 995 - }, - "propertyPath": [ - "HF_node" - ], - "target": { - "__id__": 64 - }, - "targetInfo": { - "__id__": 996 } }, { @@ -20296,7 +20378,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "51DO/CMaRGiLgGId42EXTq" + "b5xpz003VN+JjcOmrDrKg0" ] }, { @@ -20305,7 +20387,97 @@ "__id__": 64 }, "sourceInfo": { + "__id__": 997 + }, + "propertyPath": [ + "sell_node" + ], + "target": { + "__id__": 64 + }, + "targetInfo": { "__id__": 998 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "02JrX+YSZAXZFrDj1ZF6Vq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 64 + }, + "sourceInfo": { + "__id__": 1000 + }, + "propertyPath": [ + "NF_node" + ], + "target": { + "__id__": 64 + }, + "targetInfo": { + "__id__": 1001 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "1bTN3e+IhJMo33yUkwdRd/" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 64 + }, + "sourceInfo": { + "__id__": 1003 + }, + "propertyPath": [ + "HF_node" + ], + "target": { + "__id__": 64 + }, + "targetInfo": { + "__id__": 1004 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "51DO/CMaRGiLgGId42EXTq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 64 + }, + "sourceInfo": { + "__id__": 1006 }, "propertyPath": [ "lv_node" @@ -20314,97 +20486,7 @@ "__id__": 64 }, "targetInfo": { - "__id__": 999 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "7db2dcAdFAHqJvUA4+zNEA" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 75 - }, - "sourceInfo": { - "__id__": 1001 - }, - "propertyPath": [ - "icon_node" - ], - "target": { - "__id__": 75 - }, - "targetInfo": { - "__id__": 1002 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b5xpz003VN+JjcOmrDrKg0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 75 - }, - "sourceInfo": { - "__id__": 1004 - }, - "propertyPath": [ - "sell_node" - ], - "target": { - "__id__": 75 - }, - "targetInfo": { - "__id__": 1005 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "02JrX+YSZAXZFrDj1ZF6Vq" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 75 - }, - "sourceInfo": { "__id__": 1007 - }, - "propertyPath": [ - "NF_node" - ], - "target": { - "__id__": 75 - }, - "targetInfo": { - "__id__": 1008 } }, { @@ -20416,7 +20498,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "1bTN3e+IhJMo33yUkwdRd/" + "7db2dcAdFAHqJvUA4+zNEA" ] }, { @@ -20425,16 +20507,16 @@ "__id__": 75 }, "sourceInfo": { + "__id__": 1009 + }, + "propertyPath": [ + "icon_node" + ], + "target": { + "__id__": 75 + }, + "targetInfo": { "__id__": 1010 - }, - "propertyPath": [ - "HF_node" - ], - "target": { - "__id__": 75 - }, - "targetInfo": { - "__id__": 1011 } }, { @@ -20446,7 +20528,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "51DO/CMaRGiLgGId42EXTq" + "b5xpz003VN+JjcOmrDrKg0" ] }, { @@ -20455,7 +20537,97 @@ "__id__": 75 }, "sourceInfo": { + "__id__": 1012 + }, + "propertyPath": [ + "sell_node" + ], + "target": { + "__id__": 75 + }, + "targetInfo": { "__id__": 1013 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "02JrX+YSZAXZFrDj1ZF6Vq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 75 + }, + "sourceInfo": { + "__id__": 1015 + }, + "propertyPath": [ + "NF_node" + ], + "target": { + "__id__": 75 + }, + "targetInfo": { + "__id__": 1016 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "1bTN3e+IhJMo33yUkwdRd/" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 75 + }, + "sourceInfo": { + "__id__": 1018 + }, + "propertyPath": [ + "HF_node" + ], + "target": { + "__id__": 75 + }, + "targetInfo": { + "__id__": 1019 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "51DO/CMaRGiLgGId42EXTq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 75 + }, + "sourceInfo": { + "__id__": 1021 }, "propertyPath": [ "lv_node" @@ -20464,97 +20636,7 @@ "__id__": 75 }, "targetInfo": { - "__id__": 1014 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "7db2dcAdFAHqJvUA4+zNEA" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 86 - }, - "sourceInfo": { - "__id__": 1016 - }, - "propertyPath": [ - "icon_node" - ], - "target": { - "__id__": 86 - }, - "targetInfo": { - "__id__": 1017 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b5xpz003VN+JjcOmrDrKg0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 86 - }, - "sourceInfo": { - "__id__": 1019 - }, - "propertyPath": [ - "sell_node" - ], - "target": { - "__id__": 86 - }, - "targetInfo": { - "__id__": 1020 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "02JrX+YSZAXZFrDj1ZF6Vq" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 86 - }, - "sourceInfo": { "__id__": 1022 - }, - "propertyPath": [ - "NF_node" - ], - "target": { - "__id__": 86 - }, - "targetInfo": { - "__id__": 1023 } }, { @@ -20566,7 +20648,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "1bTN3e+IhJMo33yUkwdRd/" + "7db2dcAdFAHqJvUA4+zNEA" ] }, { @@ -20575,16 +20657,16 @@ "__id__": 86 }, "sourceInfo": { + "__id__": 1024 + }, + "propertyPath": [ + "icon_node" + ], + "target": { + "__id__": 86 + }, + "targetInfo": { "__id__": 1025 - }, - "propertyPath": [ - "HF_node" - ], - "target": { - "__id__": 86 - }, - "targetInfo": { - "__id__": 1026 } }, { @@ -20596,7 +20678,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "51DO/CMaRGiLgGId42EXTq" + "b5xpz003VN+JjcOmrDrKg0" ] }, { @@ -20605,7 +20687,97 @@ "__id__": 86 }, "sourceInfo": { + "__id__": 1027 + }, + "propertyPath": [ + "sell_node" + ], + "target": { + "__id__": 86 + }, + "targetInfo": { "__id__": 1028 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "02JrX+YSZAXZFrDj1ZF6Vq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 86 + }, + "sourceInfo": { + "__id__": 1030 + }, + "propertyPath": [ + "NF_node" + ], + "target": { + "__id__": 86 + }, + "targetInfo": { + "__id__": 1031 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "1bTN3e+IhJMo33yUkwdRd/" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 86 + }, + "sourceInfo": { + "__id__": 1033 + }, + "propertyPath": [ + "HF_node" + ], + "target": { + "__id__": 86 + }, + "targetInfo": { + "__id__": 1034 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "51DO/CMaRGiLgGId42EXTq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 86 + }, + "sourceInfo": { + "__id__": 1036 }, "propertyPath": [ "lv_node" @@ -20614,97 +20786,7 @@ "__id__": 86 }, "targetInfo": { - "__id__": 1029 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "7db2dcAdFAHqJvUA4+zNEA" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 96 - }, - "sourceInfo": { - "__id__": 1031 - }, - "propertyPath": [ - "icon_node" - ], - "target": { - "__id__": 96 - }, - "targetInfo": { - "__id__": 1032 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b5xpz003VN+JjcOmrDrKg0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 96 - }, - "sourceInfo": { - "__id__": 1034 - }, - "propertyPath": [ - "sell_node" - ], - "target": { - "__id__": 96 - }, - "targetInfo": { - "__id__": 1035 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "02JrX+YSZAXZFrDj1ZF6Vq" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 96 - }, - "sourceInfo": { "__id__": 1037 - }, - "propertyPath": [ - "NF_node" - ], - "target": { - "__id__": 96 - }, - "targetInfo": { - "__id__": 1038 } }, { @@ -20716,7 +20798,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "1bTN3e+IhJMo33yUkwdRd/" + "7db2dcAdFAHqJvUA4+zNEA" ] }, { @@ -20725,16 +20807,16 @@ "__id__": 96 }, "sourceInfo": { + "__id__": 1039 + }, + "propertyPath": [ + "icon_node" + ], + "target": { + "__id__": 96 + }, + "targetInfo": { "__id__": 1040 - }, - "propertyPath": [ - "HF_node" - ], - "target": { - "__id__": 96 - }, - "targetInfo": { - "__id__": 1041 } }, { @@ -20746,7 +20828,7 @@ { "__type__": "cc.TargetInfo", "localID": [ - "51DO/CMaRGiLgGId42EXTq" + "b5xpz003VN+JjcOmrDrKg0" ] }, { @@ -20755,7 +20837,97 @@ "__id__": 96 }, "sourceInfo": { + "__id__": 1042 + }, + "propertyPath": [ + "sell_node" + ], + "target": { + "__id__": 96 + }, + "targetInfo": { "__id__": 1043 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "02JrX+YSZAXZFrDj1ZF6Vq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 96 + }, + "sourceInfo": { + "__id__": 1045 + }, + "propertyPath": [ + "NF_node" + ], + "target": { + "__id__": 96 + }, + "targetInfo": { + "__id__": 1046 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "1bTN3e+IhJMo33yUkwdRd/" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 96 + }, + "sourceInfo": { + "__id__": 1048 + }, + "propertyPath": [ + "HF_node" + ], + "target": { + "__id__": 96 + }, + "targetInfo": { + "__id__": 1049 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "51DO/CMaRGiLgGId42EXTq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 96 + }, + "sourceInfo": { + "__id__": 1051 }, "propertyPath": [ "lv_node" @@ -20764,88 +20936,88 @@ "__id__": 96 }, "targetInfo": { - "__id__": 1044 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "7db2dcAdFAHqJvUA4+zNEA" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 106 - }, - "sourceInfo": { - "__id__": 1046 - }, - "propertyPath": [ - "icon_node" - ], - "target": { - "__id__": 106 - }, - "targetInfo": { - "__id__": 1047 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "b5xpz003VN+JjcOmrDrKg0" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 106 - }, - "sourceInfo": { - "__id__": 1049 - }, - "propertyPath": [ - "sell_node" - ], - "target": { - "__id__": 106 - }, - "targetInfo": { - "__id__": 1050 - } - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "11S1XoDG5Ndo+S7MbRH4us" - ] - }, - { - "__type__": "cc.TargetInfo", - "localID": [ - "02JrX+YSZAXZFrDj1ZF6Vq" - ] - }, - { - "__type__": "cc.TargetOverrideInfo", - "source": { - "__id__": 106 - }, - "sourceInfo": { "__id__": 1052 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "7db2dcAdFAHqJvUA4+zNEA" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 106 + }, + "sourceInfo": { + "__id__": 1054 + }, + "propertyPath": [ + "icon_node" + ], + "target": { + "__id__": 106 + }, + "targetInfo": { + "__id__": 1055 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "b5xpz003VN+JjcOmrDrKg0" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 106 + }, + "sourceInfo": { + "__id__": 1057 + }, + "propertyPath": [ + "sell_node" + ], + "target": { + "__id__": 106 + }, + "targetInfo": { + "__id__": 1058 + } + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "11S1XoDG5Ndo+S7MbRH4us" + ] + }, + { + "__type__": "cc.TargetInfo", + "localID": [ + "02JrX+YSZAXZFrDj1ZF6Vq" + ] + }, + { + "__type__": "cc.TargetOverrideInfo", + "source": { + "__id__": 106 + }, + "sourceInfo": { + "__id__": 1060 }, "propertyPath": [ "NF_node" @@ -20854,7 +21026,7 @@ "__id__": 106 }, "targetInfo": { - "__id__": 1053 + "__id__": 1061 } }, { @@ -20875,7 +21047,7 @@ "__id__": 106 }, "sourceInfo": { - "__id__": 1055 + "__id__": 1063 }, "propertyPath": [ "HF_node" @@ -20884,7 +21056,7 @@ "__id__": 106 }, "targetInfo": { - "__id__": 1056 + "__id__": 1064 } }, { @@ -20905,7 +21077,7 @@ "__id__": 106 }, "sourceInfo": { - "__id__": 1058 + "__id__": 1066 }, "propertyPath": [ "lv_node" @@ -20914,7 +21086,7 @@ "__id__": 106 }, "targetInfo": { - "__id__": 1059 + "__id__": 1067 } }, { @@ -20935,7 +21107,7 @@ "__id__": 116 }, "sourceInfo": { - "__id__": 1061 + "__id__": 1069 }, "propertyPath": [ "icon_node" @@ -20944,7 +21116,7 @@ "__id__": 116 }, "targetInfo": { - "__id__": 1062 + "__id__": 1070 } }, { @@ -20965,7 +21137,7 @@ "__id__": 116 }, "sourceInfo": { - "__id__": 1064 + "__id__": 1072 }, "propertyPath": [ "sell_node" @@ -20974,7 +21146,7 @@ "__id__": 116 }, "targetInfo": { - "__id__": 1065 + "__id__": 1073 } }, { @@ -20995,7 +21167,7 @@ "__id__": 116 }, "sourceInfo": { - "__id__": 1067 + "__id__": 1075 }, "propertyPath": [ "NF_node" @@ -21004,7 +21176,7 @@ "__id__": 116 }, "targetInfo": { - "__id__": 1068 + "__id__": 1076 } }, { @@ -21025,7 +21197,7 @@ "__id__": 116 }, "sourceInfo": { - "__id__": 1070 + "__id__": 1078 }, "propertyPath": [ "HF_node" @@ -21034,7 +21206,7 @@ "__id__": 116 }, "targetInfo": { - "__id__": 1071 + "__id__": 1079 } }, { @@ -21055,7 +21227,7 @@ "__id__": 116 }, "sourceInfo": { - "__id__": 1073 + "__id__": 1081 }, "propertyPath": [ "lv_node" @@ -21064,7 +21236,7 @@ "__id__": 116 }, "targetInfo": { - "__id__": 1074 + "__id__": 1082 } }, { diff --git a/assets/script/game/common/config/GameUIConfig.ts b/assets/script/game/common/config/GameUIConfig.ts index 6c6f85c7..bb1e9e03 100644 --- a/assets/script/game/common/config/GameUIConfig.ts +++ b/assets/script/game/common/config/GameUIConfig.ts @@ -21,6 +21,7 @@ export enum UIID { Heros, Talents, Mission, + HInfo, } /** 打开界面方式的配置数据 */ @@ -35,4 +36,5 @@ export var UIConfigData: { [key: number]: UIConfig } = { [UIID.Heros]: { layer: LayerType.UI, prefab: "gui/element/heros" }, [UIID.Talents]: { layer: LayerType.UI, prefab: "gui/element/talents" }, [UIID.Mission]: { layer: LayerType.UI, prefab: "gui/element/mission" }, + [UIID.HInfo]: { layer: LayerType.UI, prefab: "gui/element/hnode" }, } \ No newline at end of file diff --git a/assets/script/game/hero/Hero.ts b/assets/script/game/hero/Hero.ts index 733460dc..f26f13a5 100644 --- a/assets/script/game/hero/Hero.ts +++ b/assets/script/game/hero/Hero.ts @@ -137,7 +137,7 @@ export class Hero extends ecs.Entity { model.critical = HeroAttrsComp.getTalentValue(TalentType.Critical); // 暴击强化 model.wfuny = HeroAttrsComp.getTalentValue(TalentType.WindFury); // 风怒强化 model.freeze_chance = HeroAttrsComp.getTalentValue(TalentType.Freeze); // 冰冻强化 - model.puncture = HeroAttrsComp.getTalentValue(TalentType.Puncture); // 穿刺强化 + model.puncture_chance = HeroAttrsComp.getTalentValue(TalentType.Puncture); // 穿刺强化 // 护盾强化 和 亡语强化 在对应逻辑中应用 } else { model.ap = base_ap; diff --git a/assets/script/game/hero/HeroViewComp.ts b/assets/script/game/hero/HeroViewComp.ts index 1a2bff36..da50243b 100644 --- a/assets/script/game/hero/HeroViewComp.ts +++ b/assets/script/game/hero/HeroViewComp.ts @@ -1,4 +1,4 @@ -import { Vec3, _decorator , v3,Collider2D,Contact2DType,Label ,Node,Prefab,instantiate,ProgressBar, Component, Material, Sprite, math, clamp, Game, tween, Tween, Color, BoxCollider2D, UITransform, UIOpacity} from "cc"; +import { Vec3, _decorator , v3,Collider2D,Contact2DType,Label ,Node,Prefab,instantiate,ProgressBar, Component, Material, Sprite, math, clamp, Game, tween, Tween, Color, BoxCollider2D, UITransform, UIOpacity, NodeEventType} from "cc"; import { ecs } from "../../../../extensions/oops-plugin-framework/assets/libs/ecs/ECS"; import { CCComp } from "../../../../extensions/oops-plugin-framework/assets/module/common/CCComp"; import { mLogger } from "../common/Logger"; @@ -8,6 +8,7 @@ import { smc } from "../common/SingletonModuleComp"; import { SkillSet,} from "../common/config/SkillSet"; import { HeroInfo } from "../common/config/heroSet"; import { oops } from "db://oops-framework/core/Oops"; +import { UIID } from "../common/config/GameUIConfig"; import { HeroAttrsComp } from "./HeroAttrsComp"; import { Tooltip } from "../skill/Tooltip"; import { timedCom } from "../skill/timedCom"; @@ -80,7 +81,22 @@ export class HeroViewComp extends CCComp { },0.1) // let anm = this.node.getChildByName("anm") // anm.setScale(anm.scale.x*0.8,anm.scale.y*0.8); + + // 绑定点击事件,点击打开英雄信息面板弹窗 + this.node.on(NodeEventType.TOUCH_END, this.onHeroClicked, this); } + + private onHeroClicked() { + if (!this.model) return; + if (this.model.fac !== FacSet.HERO) return; + + const eid = this.ent?.eid; + if (!eid) return; + + oops.gui.remove(UIID.HInfo); + oops.gui.open(UIID.HInfo, { eid: eid }); + } + /** 视图层逻辑代码分离演示 */ start () { this.init(); @@ -621,6 +637,9 @@ export class HeroViewComp extends CCComp { this.damageQueue.length = 0; this.isProcessingDamage = false; + // 解绑点击事件 + this.node.off(NodeEventType.TOUCH_END, this.onHeroClicked, this); + // 节点生命周期由 Monster 对象池管理,此处不再销毁 // if (this.node && this.node.isValid) { // this.node.destroy(); diff --git a/assets/script/game/map/CardComp.ts b/assets/script/game/map/CardComp.ts index 5e657b07..e8f63927 100644 --- a/assets/script/game/map/CardComp.ts +++ b/assets/script/game/map/CardComp.ts @@ -689,16 +689,16 @@ export class CardComp extends CCComp { }); } - if (this.HF_node) { - this.HF_node.active = true; - this.HF_node.children.forEach(child => { - child.active = (child.name === kindName); - }); - } + // if (this.HF_node) { + // this.HF_node.active = true; + // this.HF_node.children.forEach(child => { + // child.active = (child.name === kindName); + // }); + // } - if (this.NF_node) { - this.NF_node.active = false; - } + // if (this.NF_node) { + // this.NF_node.active = false; + // } const hbNodeUI = this.node.getChildByName("HB"); if (hbNodeUI) hbNodeUI.active = false; @@ -753,39 +753,39 @@ export class CardComp extends CCComp { }); } - if (this.HF_node) { - const hfTrans = this.HF_node.getComponent(UITransform); - if (hfTrans) { - hfTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); - const widget = this.HF_node.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - this.HF_node.children.forEach(child => { - const childTrans = child.getComponent(UITransform); - if (childTrans) { - childTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); - const widget = child.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - }); - } + // if (this.HF_node) { + // const hfTrans = this.HF_node.getComponent(UITransform); + // if (hfTrans) { + // hfTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); + // const widget = this.HF_node.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // this.HF_node.children.forEach(child => { + // const childTrans = child.getComponent(UITransform); + // if (childTrans) { + // childTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); + // const widget = child.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // }); + // } - if (this.NF_node) { - const nfTrans = this.NF_node.getComponent(UITransform); - if (nfTrans) { - nfTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); - const widget = this.NF_node.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - this.NF_node.children.forEach(child => { - const childTrans = child.getComponent(UITransform); - if (childTrans) { - childTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); - const widget = child.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - }); - } + // if (this.NF_node) { + // const nfTrans = this.NF_node.getComponent(UITransform); + // if (nfTrans) { + // nfTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); + // const widget = this.NF_node.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // this.NF_node.children.forEach(child => { + // const childTrans = child.getComponent(UITransform); + // if (childTrans) { + // childTrans.setContentSize(this.isEnlarged ? 230 : 170, this.isEnlarged ? 340 : 230); + // const widget = child.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // }); + // } const hbNode = this.node.getChildByName("HB"); if (hbNode) { @@ -892,10 +892,12 @@ export class CardComp extends CCComp { // ---- 图标 ---- const iconNode = this.icon_node as Node; if (this.card_type === CardType.Hero) { + iconNode.setScale(new Vec3(-1.5, 1.5, 1)); // 英雄卡使用 AnimationClip,加载 idle 动画 this.updateHeroAnimation(iconNode, this.card_uuid, this.iconVisualToken); return; } + iconNode.setScale(new Vec3(1, 1, 1)); // 非英雄卡使用静态图标 this.clearIconAnimation(iconNode); const iconId = this.resolveCardIconId(this.card_type, this.card_uuid); @@ -1005,38 +1007,38 @@ export class CardComp extends CCComp { if (childWidget) childWidget.updateAlignment(); }); } - if (this.HF_node) { - const hfTrans = this.HF_node.getComponent(UITransform); - if (hfTrans) { - hfTrans.setContentSize(170, 230); - const widget = this.HF_node.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - this.HF_node.children.forEach(child => { - const childTrans = child.getComponent(UITransform); - if (childTrans) { - childTrans.setContentSize(170, 230); - const widget = child.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - }); - } - if (this.NF_node) { - const nfTrans = this.NF_node.getComponent(UITransform); - if (nfTrans) { - nfTrans.setContentSize(170, 230); - const widget = this.NF_node.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - this.NF_node.children.forEach(child => { - const childTrans = child.getComponent(UITransform); - if (childTrans) { - childTrans.setContentSize(170, 230); - const widget = child.getComponent(Widget); - if (widget) widget.updateAlignment(); - } - }); - } + // if (this.HF_node) { + // const hfTrans = this.HF_node.getComponent(UITransform); + // if (hfTrans) { + // hfTrans.setContentSize(170, 230); + // const widget = this.HF_node.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // this.HF_node.children.forEach(child => { + // const childTrans = child.getComponent(UITransform); + // if (childTrans) { + // childTrans.setContentSize(170, 230); + // const widget = child.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // }); + // } + // if (this.NF_node) { + // const nfTrans = this.NF_node.getComponent(UITransform); + // if (nfTrans) { + // nfTrans.setContentSize(170, 230); + // const widget = this.NF_node.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // this.NF_node.children.forEach(child => { + // const childTrans = child.getComponent(UITransform); + // if (childTrans) { + // childTrans.setContentSize(170, 230); + // const widget = child.getComponent(Widget); + // if (widget) widget.updateAlignment(); + // } + // }); + // } const hbNode = this.node.getChildByName("HB"); if (hbNode) { const hbTrans = hbNode.getComponent(UITransform); @@ -1079,15 +1081,16 @@ export class CardComp extends CCComp { if (this.BG_node) { this.BG_node.children.forEach(child => child.active = false); } - if (this.HF_node) { - this.HF_node.active = false; - this.HF_node.children.forEach(child => child.active = false); - } - if (this.NF_node) this.NF_node.active = false; - if (this.lv_node) { - this.lv_node.children.forEach(child => child.active = false); - } + // if (this.HF_node) { + // this.HF_node.active = false; + // this.HF_node.children.forEach(child => child.active = false); + // } + // if (this.NF_node) this.NF_node.active = false; + // if (this.lv_node) { + // this.lv_node.children.forEach(child => child.active = false); + // } if (this.cost_node) this.cost_node.active = false; + if (this.icon_node) (this.icon_node as Node).setScale(new Vec3(1, 1, 1)); this.clearIconAnimation(this.icon_node as Node); const sprite = this.icon_node?.getComponent(Sprite) || this.icon_node?.getComponentInChildren(Sprite); if (sprite) sprite.spriteFrame = null; diff --git a/assets/script/game/map/HInfoComp.ts b/assets/script/game/map/HInfoComp.ts index 6c230038..80459bf8 100644 --- a/assets/script/game/map/HInfoComp.ts +++ b/assets/script/game/map/HInfoComp.ts @@ -64,9 +64,6 @@ export class HInfoComp extends CCComp { @property(Node) lv_node=null! - @property(CCInteger) - node_index=0 - /** 绑定的英雄 ECS 实体 ID */ private eid: number = 0; /** 绑定的英雄属性数据模型引用 */ @@ -84,10 +81,44 @@ export class HInfoComp extends CCComp { onLoad() { this.cacheLabels(); + this.bindEvents(); + } + + onAdded(args: { eid: number }) { + const eid = args?.eid ?? 0; + if (!eid) return; + + let foundModel: HeroAttrsComp | null = null; + ecs.query(ecs.allOf(HeroAttrsComp)).forEach((entity: ecs.Entity) => { + if (entity.eid === eid) { + foundModel = entity.get(HeroAttrsComp); + } + }); + + if (foundModel) { + this.bindData(eid, foundModel); + } else { + this.isClosing = true; + oops.gui.remove(UIID.HInfo); + } + } + + /** 是否正在关闭中,防止重复调用 remove */ + private isClosing: boolean = false; + + update(dt: number) { + if (this.isClosing) return; + if (!this.isModelAlive()) { + this.isClosing = true; + oops.gui.remove(UIID.HInfo); + return; + } + this.refresh(); } onDestroy() { super.onDestroy(); + this.unbindEvents(); } /** @@ -102,54 +133,6 @@ export class HInfoComp extends CCComp { this.refresh(); } - /** - * 根据 node_index 获取对应的硬编码位置,并查找该位置的英雄 - */ - refreshByNodeIndex() { - if (this.node_index < 1 || this.node_index > 6) return; - const targetPos = MissionHeroComp.HERO_POSITIONS[this.node_index - 1]; - - let foundModel: HeroAttrsComp | null = null; - let foundEid: number = 0; - - // 遍历所有英雄,查找 targetX 和 targetY 匹配该位置的英雄 - ecs.query(ecs.allOf(HeroAttrsComp, MoveComp)).forEach((entity: ecs.Entity) => { - const model = entity.get(HeroAttrsComp); - const move = entity.get(MoveComp); - if (model && move && !model.is_dead && model.fac === FacSet.HERO) { - if (Math.abs(move.targetX - targetPos.x) < 2 && Math.abs(move.baseY - targetPos.y) < 2) { - foundModel = model; - foundEid = entity.eid; - } - } - }); - - if (foundModel) { - if (this.eid !== foundEid) { - this.bindData(foundEid, foundModel); - if (!this.node.active) this.node.active = true; - } else { - this.refresh(); - } - } else { - if (this.eid !== 0) { - this.eid = 0; - this.model = null; - if (this.node.active) this.node.active = false; - } - } - } - - /** - * 设置当前是否处于战斗阶段,控制出售按钮显示/隐藏 - * @param isBattlePhase 是否处于战斗阶段 - */ - setBattlePhase(isBattlePhase: boolean) { - if (this.sell_node && this.sell_node.isValid) { - this.sell_node.active = !isBattlePhase; - } - } - /** * 刷新显示: * 1. 根据英雄等级切换高级 / 普通边框。 @@ -268,34 +251,42 @@ export class HInfoComp extends CCComp { [...clips].forEach(clip => anim.removeClip(clip, true)); } - // ======================== 交互(当前已注释) ======================== + // ======================== 交互 ======================== - // private bindEvents() { - // this.sell_node?.on(Button.EventType.CLICK, this.onSellHero, this); - // this.node.on(NodeEventType.TOUCH_END, this.onOpenIBox, this); - // } + private bindEvents() { + this.sell_node?.on(Button.EventType.CLICK, this.onSellHero, this); + this.node.on(NodeEventType.TOUCH_END, this.onOpenIBox, this); + } - // private unbindEvents() { - // this.sell_node?.off(Button.EventType.CLICK, this.onSellHero, this); - // this.node.off(NodeEventType.TOUCH_END, this.onOpenIBox, this); - // } + private unbindEvents() { + if (this.sell_node && this.sell_node.isValid) { + this.sell_node.off(Button.EventType.CLICK, this.onSellHero, this); + } + if (this.node && this.node.isValid) { + this.node.off(NodeEventType.TOUCH_END, this.onOpenIBox, this); + } + } /** * 点击面板时打开英雄详情弹窗(IBox)。 * 传入英雄 UUID、等级和技能列表。 */ private onOpenIBox() { - if (!this.model) return; - if (!this.isModelAlive()) return; - const heroUuid = this.model.hero_uuid ?? 0; - if (!heroUuid || !HeroInfo[heroUuid]) return; - const heroLv = Math.max(1, Math.floor(this.model.lv ?? 1)); - oops.gui.remove(UIID.IBox); - oops.gui.open(UIID.IBox, { - heroUuid, - heroLv, - skills: this.model.skills - }); + // if (this.isClosing) return; + // if (!this.model) return; + // if (!this.isModelAlive()) return; + // const heroUuid = this.model.hero_uuid ?? 0; + // if (!heroUuid || !HeroInfo[heroUuid]) return; + // const heroLv = Math.max(1, Math.floor(this.model.lv ?? 1)); + + // this.isClosing = true; + // oops.gui.remove(UIID.HInfo); // 打开 IBox 前关闭自身 + // oops.gui.remove(UIID.IBox); + // oops.gui.open(UIID.IBox, { + // heroUuid, + // heroLv, + // skills: this.model.skills + // }); } /** @@ -303,6 +294,7 @@ export class HInfoComp extends CCComp { * 并关闭详情弹窗。 */ private onSellHero(event?: Event) { + if (this.isClosing) return; if (!this.eid) return; const heroLv = Math.max(1, Math.floor(this.model?.lv ?? 1)); const removed = Hero.removeByEid(this.eid); @@ -317,7 +309,8 @@ export class HInfoComp extends CCComp { // 使用统一经济管理入口出售英雄(按等级计算卖价) MissionEconomy.executeSellHero(heroLv); - oops.gui.remove(UIID.IBox); + this.isClosing = true; + oops.gui.remove(UIID.HInfo); } /** ECS 组件移除时的释放钩子:清理动画资源并销毁节点 */ @@ -327,6 +320,9 @@ export class HInfoComp extends CCComp { this.iconHeroUuid = 0; this.model = null; this.eid = 0; - this.node.destroy(); + // 弹窗节点的生命周期由 oops.gui 统一管理,此处不再主动销毁节点 + // if (this.node && this.node.isValid) { + // this.node.destroy(); + // } } } diff --git a/assets/script/game/map/MissionCardComp.ts b/assets/script/game/map/MissionCardComp.ts index 6fc04abc..b9100da9 100644 --- a/assets/script/game/map/MissionCardComp.ts +++ b/assets/script/game/map/MissionCardComp.ts @@ -41,7 +41,6 @@ import { CARD_POOL_INIT_LEVEL, CARD_POOL_MAX_LEVEL, CARD_POOL_UPGRADE_DISCOUNT_P import { CardComp } from "./CardComp"; import { oops } from "db://oops-framework/core/Oops"; import { HeroAttrsComp } from "../hero/HeroAttrsComp"; -import { HInfoComp } from "./HInfoComp"; import { smc } from "../common/SingletonModuleComp"; import { HeroInfo, HType } from "../common/config/heroSet"; import { HeroViewComp } from "../hero/HeroViewComp"; @@ -107,12 +106,6 @@ export class MissionCardComp extends CCComp { /** 卡池等级显示节点 */ @property(Node) pool_lv_node:Node = null! - /** 场上英雄信息面板容器节点(HInfoComp 实例的父节点) */ - @property(Node) - hero_info_node:Node = null! - /** 英雄信息面板预制体(每个英雄上场时实例化一份) */ - @property(Prefab) - hero_info_prefab:Prefab=null! /** 英雄数量显示节点(含 icon + num 子节点) */ @property(Node) hero_num_node:Node=null! @@ -126,12 +119,6 @@ export class MissionCardComp extends CCComp { private cardComps: CardComp[] = []; /** 当前卡池等级(仅影响抽卡来源,不直接改卡槽现有内容) */ private poolLv: number = CARD_POOL_INIT_LEVEL; - /** 英雄信息面板项间距(像素) */ - private readonly heroInfoItemGap: number = 135; - /** 英雄信息面板项间额外间距(像素) */ - private readonly heroInfoItemSpacing: number = 5; - /** 英雄信息面板同步计时器(降频刷新用) */ - private heroInfoSyncTimer: number = 0; /** 是否已缓存卡牌面板基准缩放 */ private hasCachedCardsBaseScale: boolean = false; /** 卡牌面板基准缩放(从场景读取) */ @@ -142,8 +129,7 @@ export class MissionCardComp extends CCComp { private cardsHideScale: Vec3 = new Vec3(0, 0, 1); /** 卡牌原始定位点 */ private cardsPos = [-260,-75,108,260] - /** 缓存预先放置的 6 个 HInfoComp */ - private cachedHInfoComps: Map = new Map(); + // ======================== 生命周期 ======================== /** @@ -155,7 +141,6 @@ export class MissionCardComp extends CCComp { * 5. 触发首次任务开始流程。 */ onLoad() { - this.cacheHInfoComps(); this.bindEvents(); this.cacheCardComps(); this.layoutCardSlots(); @@ -167,19 +152,6 @@ export class MissionCardComp extends CCComp { }); } - private cacheHInfoComps() { - this.cachedHInfoComps.clear(); - if (!this.hero_info_node) return; - for (let i = 0; i < this.hero_info_node.children.length; i++) { - const child = this.hero_info_node.children[i]; - const comp = (child.getComponent(HInfoComp) || child.getComponent("HInfoComp")) as HInfoComp; - if (comp && comp.node_index > 0) { - this.cachedHInfoComps.set(comp.node_index, comp); - child.active = false; - } - } - } - /** 组件销毁时解绑所有事件并清理英雄信息面板 */ onDestroy() { super.onDestroy(); @@ -189,7 +161,6 @@ export class MissionCardComp extends CCComp { this.cards_chou.off(NodeEventType.TOUCH_CANCEL, this.onDrawTouchCancel, this); } this.unbindEvents(); - this.clearHeroInfoPanels(); } /** 外部初始化入口(由 CardController 调用) */ @@ -223,7 +194,6 @@ export class MissionCardComp extends CCComp { this.cacheCardComps(); } - this.clearHeroInfoPanels(); this.layoutCardSlots(); this.clearAllCards(); // if (this.cards_up) { @@ -246,7 +216,6 @@ export class MissionCardComp extends CCComp { /** 任务结束:清空 4 槽 + 英雄面板并隐藏整个节点 */ onMissionEnd() { this.clearAllCards(); - this.clearHeroInfoPanels(); if (this.node && this.node.isValid) { this.node.active = false; } @@ -260,20 +229,8 @@ export class MissionCardComp extends CCComp { * 检测已死亡 / 已失效的面板并移除,刷新存活面板属性。 */ update(dt: number) { - this.heroInfoSyncTimer += dt; - if (this.heroInfoSyncTimer < 0.15) return; - this.heroInfoSyncTimer = 0; - - // 遍历所有预设的 HInfoComp,让其根据 node_index 自己刷新 - this.cachedHInfoComps.forEach(comp => { - if (comp && comp.isValid) { - comp.refreshByNodeIndex(); - } - }); } - - /** 关闭面板(不销毁数据模型,仅隐藏) */ close() { if (this.node && this.node.isValid) { @@ -647,12 +604,6 @@ export class MissionCardComp extends CCComp { this.cards_node.active = true; Tween.stopAllByTarget(this.cards_node); this.cards_node.setScale(this.cardsShowScale); - - this.cachedHInfoComps.forEach(comp => { - if (comp && comp.isValid) { - comp.setBattlePhase(false); - } - }); } private enterBattlePhase() { @@ -668,12 +619,6 @@ export class MissionCardComp extends CCComp { // } // }) // .start(); - - this.cachedHInfoComps.forEach(comp => { - if (comp && comp.isValid) { - comp.setBattlePhase(true); - } - }); } /** 构建本次抽卡结果,保证最终可分发3条数据 */ @@ -874,21 +819,6 @@ export class MissionCardComp extends CCComp { return Math.max(0, baseCost - discount); } - - - private clearHeroInfoPanels() { - if (this.cachedHInfoComps) { - this.cachedHInfoComps.forEach(comp => { - if (comp && comp.node && comp.node.isValid) { - comp.node.active = false; - } - }); - } - this.heroInfoSyncTimer = 0; - this.syncMissionHeroData(0); - this.updateHeroNumUI(false, false); - } - public setHeroMaxCount(max: number) { const missionData = this.getMissionData(); if (!missionData) return; @@ -1055,7 +985,6 @@ export class MissionCardComp extends CCComp { /** 视图对象通过 ecs.Entity.remove(ModuleViewComp) 删除组件是触发组件处理自定义释放逻辑 */ reset() { - this.clearHeroInfoPanels(); this.resetButtonScale(this.cards_chou); // this.resetButtonScale(this.cards_up);