Merge remote-tracking branch 'origin/YiZiTing' into Lenheart
# Conflicts: # assets/scene/main.scene # settings/v2/packages/information.json
This commit is contained in:
		
						commit
						ac2b1768e9
					
				|  | @ -29,7 +29,6 @@ export class BaseSpriteFrame { | ||||||
|             tex.updateImage(); |             tex.updateImage(); | ||||||
|             this._SpriteFrame.texture = tex; |             this._SpriteFrame.texture = tex; | ||||||
|             this._SpriteFrame.offset = v2(Png.Xpos, -Png.Ypos); |             this._SpriteFrame.offset = v2(Png.Xpos, -Png.Ypos); | ||||||
|             console.log(this._SpriteFrame.offset); |  | ||||||
| 
 | 
 | ||||||
|             this.CallBackFunc(this._SpriteFrame); |             this.CallBackFunc(this._SpriteFrame); | ||||||
|             this.InitState = true; |             this.InitState = true; | ||||||
|  |  | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | { | ||||||
|  |   "ver": "1.2.0", | ||||||
|  |   "importer": "directory", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "c48db437-e006-4733-98c9-041b5842c734", | ||||||
|  |   "files": [], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": {} | ||||||
|  | } | ||||||
|  | @ -0,0 +1,23 @@ | ||||||
|  | import { _decorator, Component, Node } from 'cc'; | ||||||
|  | const { ccclass, property } = _decorator; | ||||||
|  | 
 | ||||||
|  | @ccclass('Pressent') | ||||||
|  | export class Pressent extends Component { | ||||||
|  | 
 | ||||||
|  |     @property(Node) cancel: Node; | ||||||
|  | 
 | ||||||
|  |     start() { | ||||||
|  |         this.cancel.on(Node.EventType.TOUCH_END,this.touchEnd,this); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     touchEnd(event:Event){ | ||||||
|  |         /// 销毁节点
 | ||||||
|  |         this.node.destroy(); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     update(deltaTime: number) { | ||||||
|  |          | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | { | ||||||
|  |   "ver": "4.0.23", | ||||||
|  |   "importer": "typescript", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "fa300c02-7511-4957-9ad5-a4577f3f1524", | ||||||
|  |   "files": [], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": {} | ||||||
|  | } | ||||||
|  | @ -0,0 +1,41 @@ | ||||||
|  | import { _decorator, Button, Component, EventTouch, instantiate, Node, Prefab } from 'cc'; | ||||||
|  | const { ccclass, property } = _decorator; | ||||||
|  | 
 | ||||||
|  | @ccclass('StartGameRoot') | ||||||
|  | export class StartGameRoot extends Component { | ||||||
|  | 
 | ||||||
|  |     /// 玩法介绍按钮
 | ||||||
|  |     @property(Node) PressenButton: Node; | ||||||
|  | 
 | ||||||
|  |     /// 玩法介绍UI预制件
 | ||||||
|  |     @property(Prefab) pressenPrefab: Prefab; | ||||||
|  | 
 | ||||||
|  |     //// 开始游戏按钮
 | ||||||
|  |     @property(Node) StartButton: Node; | ||||||
|  | 
 | ||||||
|  |     /// UI层预制件
 | ||||||
|  |     @property(Prefab) UIPrefab: Prefab; | ||||||
|  |      | ||||||
|  |     start() { | ||||||
|  |         this.PressenButton.on(Node.EventType.TOUCH_END,this.pressenOnTouchEnd,this); | ||||||
|  |         this.StartButton.on(Node.EventType.TOUCH_END,this.startOnTouchEnd,this); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     pressenOnTouchEnd(event:Event){ | ||||||
|  |         const pressent = instantiate(this.pressenPrefab); | ||||||
|  |         this.node.addChild(pressent); | ||||||
|  |         pressent.setPosition(0,0); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     startOnTouchEnd(event:Event){ | ||||||
|  |         this.node.destroy(); | ||||||
|  |         const ui = instantiate(this.UIPrefab); | ||||||
|  |         this.node.parent.addChild(ui); | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     update(deltaTime: number) { | ||||||
|  |          | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | { | ||||||
|  |   "ver": "4.0.23", | ||||||
|  |   "importer": "typescript", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "37227f6a-00a4-4840-a07e-025b6be2f27c", | ||||||
|  |   "files": [], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": {} | ||||||
|  | } | ||||||
|  | @ -0,0 +1,21 @@ | ||||||
|  | import { _decorator, assetManager, Component, instantiate, Node, Prefab  } from 'cc'; | ||||||
|  | const { ccclass, property } = _decorator; | ||||||
|  | 
 | ||||||
|  | @ccclass('UIRoot') | ||||||
|  | export class UIRoot extends Component { | ||||||
|  | 
 | ||||||
|  |     @property({ type: Prefab, displayName: 'Ani帧数', tooltip: "Ani总共有多少帧" }) | ||||||
|  |     startGameRootPrefab:Prefab; | ||||||
|  | 
 | ||||||
|  |     start() { | ||||||
|  |          | ||||||
|  |         this.node.addChild(instantiate(this.startGameRootPrefab)); | ||||||
|  | 
 | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     update(deltaTime: number) { | ||||||
|  |          | ||||||
|  |     } | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | { | ||||||
|  |   "ver": "4.0.23", | ||||||
|  |   "importer": "typescript", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "a578cd6a-ad34-4875-a305-844b629bc2cc", | ||||||
|  |   "files": [], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": {} | ||||||
|  | } | ||||||
|  | @ -0,0 +1,9 @@ | ||||||
|  | { | ||||||
|  |   "ver": "1.2.0", | ||||||
|  |   "importer": "directory", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "eaa1d08a-5e6f-4341-9f6a-8e27ed47b322", | ||||||
|  |   "files": [], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": {} | ||||||
|  | } | ||||||
|  | @ -0,0 +1,259 @@ | ||||||
|  | [ | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Prefab", | ||||||
|  |     "_name": "Gamer", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_native": "", | ||||||
|  |     "data": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "optimizationPolicy": 0, | ||||||
|  |     "persistent": false | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Node", | ||||||
|  |     "_name": "Gamer", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_parent": null, | ||||||
|  |     "_children": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 2 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_active": true, | ||||||
|  |     "_components": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 6 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 8 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 10 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 12 | ||||||
|  |     }, | ||||||
|  |     "_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": "Role", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_parent": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_children": [], | ||||||
|  |     "_active": true, | ||||||
|  |     "_components": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 3 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 5 | ||||||
|  |     }, | ||||||
|  |     "_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__": 2 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 4 | ||||||
|  |     }, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 100, | ||||||
|  |       "height": 100 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "6206qxk1NFE5QmAvH3zvq1" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__id__": 0 | ||||||
|  |     }, | ||||||
|  |     "fileId": "65epnVCaxNSIGMknmNdcpA", | ||||||
|  |     "instance": null, | ||||||
|  |     "targetOverrides": null, | ||||||
|  |     "nestedPrefabInstanceRoots": null | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.UITransform", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 7 | ||||||
|  |     }, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 40, | ||||||
|  |       "height": 36 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "c6XJpShO1IiISvt/47nt+K" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Sprite", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 9 | ||||||
|  |     }, | ||||||
|  |     "_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": "f1HLPxYllBtLhId3RcwwDZ" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "a80463xbJJM5qU8FUhHK84e", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 11 | ||||||
|  |     }, | ||||||
|  |     "ImgPath": "interface2/event/chn_event_2020/200922_dnf_marble/01_ingame.img", | ||||||
|  |     "ImgIndex": 32, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "5fuqRs6VlLV6IWVYCnfh42" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__id__": 0 | ||||||
|  |     }, | ||||||
|  |     "fileId": "4dIR0b3MJAHIpU7ERJwTWq", | ||||||
|  |     "instance": null, | ||||||
|  |     "targetOverrides": null | ||||||
|  |   } | ||||||
|  | ] | ||||||
|  | @ -0,0 +1,13 @@ | ||||||
|  | { | ||||||
|  |   "ver": "1.1.50", | ||||||
|  |   "importer": "prefab", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "7fb32db3-b3d6-44f1-abaa-f6063c24e07f", | ||||||
|  |   "files": [ | ||||||
|  |     ".json" | ||||||
|  |   ], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": { | ||||||
|  |     "syncNodeName": "Gamer" | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,540 @@ | ||||||
|  | [ | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Prefab", | ||||||
|  |     "_name": "Present", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_native": "", | ||||||
|  |     "data": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "optimizationPolicy": 0, | ||||||
|  |     "persistent": false | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Node", | ||||||
|  |     "_name": "Present", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_parent": null, | ||||||
|  |     "_children": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 2 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 10 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_active": true, | ||||||
|  |     "_components": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 18 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 20 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 22 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 24 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 26 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 28 | ||||||
|  |     }, | ||||||
|  |     "_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": "Sprite", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_parent": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_children": [], | ||||||
|  |     "_active": true, | ||||||
|  |     "_components": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 3 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 5 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 7 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 9 | ||||||
|  |     }, | ||||||
|  |     "_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__": 2 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 4 | ||||||
|  |     }, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 40, | ||||||
|  |       "height": 36 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "5eWu0X+FVNgI5z0WVe7YQ6" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__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": 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": "fc0twlF1lOR4HK7BeyC25p" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "a80463xbJJM5qU8FUhHK84e", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 2 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 8 | ||||||
|  |     }, | ||||||
|  |     "ImgPath": "interface2/event/chn_event_2020/200922_dnf_marble/00_main.img", | ||||||
|  |     "ImgIndex": 25, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "e8MHts9wpBCLjui8vsEugz" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__id__": 0 | ||||||
|  |     }, | ||||||
|  |     "fileId": "6f3bSlwHhGTrCoRP/4nXYb", | ||||||
|  |     "instance": null, | ||||||
|  |     "targetOverrides": null, | ||||||
|  |     "nestedPrefabInstanceRoots": null | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Node", | ||||||
|  |     "_name": "CancelButton", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_parent": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_children": [], | ||||||
|  |     "_active": true, | ||||||
|  |     "_components": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 11 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 13 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 15 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 17 | ||||||
|  |     }, | ||||||
|  |     "_lpos": { | ||||||
|  |       "__type__": "cc.Vec3", | ||||||
|  |       "x": 368, | ||||||
|  |       "y": 270, | ||||||
|  |       "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__": 10 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 12 | ||||||
|  |     }, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 40, | ||||||
|  |       "height": 36 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "9ct7fqJXZPW72loHtkPyZI" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Sprite", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 10 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 14 | ||||||
|  |     }, | ||||||
|  |     "_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": "50krRdvUxGV5JwIT29GeY2" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "227e93p2mxEV5zjvG1ofJkL", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 10 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 16 | ||||||
|  |     }, | ||||||
|  |     "ImgPath": "interface2/event/chn_event_2020/200922_dnf_marble/01_ingame.img", | ||||||
|  |     "NormalImgIndex": 39, | ||||||
|  |     "HoverImgIndex": 40, | ||||||
|  |     "PressImgIndex": 41, | ||||||
|  |     "DisableImgIndex": 42, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "616ESzd7tK6azbhkiSn+wZ" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__id__": 0 | ||||||
|  |     }, | ||||||
|  |     "fileId": "19a5NWpspNOq0ziWf+VKn3", | ||||||
|  |     "instance": null, | ||||||
|  |     "targetOverrides": null, | ||||||
|  |     "nestedPrefabInstanceRoots": null | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.UITransform", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 19 | ||||||
|  |     }, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 1067, | ||||||
|  |       "height": 600 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "84kljvQdpCXpvHHsZcsIfi" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Mask", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 21 | ||||||
|  |     }, | ||||||
|  |     "_type": 0, | ||||||
|  |     "_inverted": false, | ||||||
|  |     "_segments": 64, | ||||||
|  |     "_alphaThreshold": 0.1, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "d18TIUsPZJNor4depBAoLj" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Graphics", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 23 | ||||||
|  |     }, | ||||||
|  |     "_customMaterial": null, | ||||||
|  |     "_srcBlendFactor": 2, | ||||||
|  |     "_dstBlendFactor": 4, | ||||||
|  |     "_color": { | ||||||
|  |       "__type__": "cc.Color", | ||||||
|  |       "r": 255, | ||||||
|  |       "g": 255, | ||||||
|  |       "b": 255, | ||||||
|  |       "a": 255 | ||||||
|  |     }, | ||||||
|  |     "_lineWidth": 1, | ||||||
|  |     "_strokeColor": { | ||||||
|  |       "__type__": "cc.Color", | ||||||
|  |       "r": 0, | ||||||
|  |       "g": 0, | ||||||
|  |       "b": 0, | ||||||
|  |       "a": 255 | ||||||
|  |     }, | ||||||
|  |     "_lineJoin": 2, | ||||||
|  |     "_lineCap": 0, | ||||||
|  |     "_fillColor": { | ||||||
|  |       "__type__": "cc.Color", | ||||||
|  |       "r": 255, | ||||||
|  |       "g": 255, | ||||||
|  |       "b": 255, | ||||||
|  |       "a": 0 | ||||||
|  |     }, | ||||||
|  |     "_miterLimit": 10, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "abKlZKzBBOOIS0f81wPKoZ" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.BlockInputEvents", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 25 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "8eYsyz39JAFoU0NowSG2Us" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "fa300wCdRFJV5rVpFd/PxUk", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 27 | ||||||
|  |     }, | ||||||
|  |     "cancel": { | ||||||
|  |       "__id__": 10 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "cf7mnl4l9L/7pkHBxOV4kG" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__id__": 0 | ||||||
|  |     }, | ||||||
|  |     "fileId": "45U0bsLzxF75ClciJzcbfs", | ||||||
|  |     "instance": null, | ||||||
|  |     "targetOverrides": null | ||||||
|  |   } | ||||||
|  | ] | ||||||
|  | @ -0,0 +1,13 @@ | ||||||
|  | { | ||||||
|  |   "ver": "1.1.50", | ||||||
|  |   "importer": "prefab", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "345ab5d0-8a20-42ec-a630-62a235d82b34", | ||||||
|  |   "files": [ | ||||||
|  |     ".json" | ||||||
|  |   ], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": { | ||||||
|  |     "syncNodeName": "Present" | ||||||
|  |   } | ||||||
|  | } | ||||||
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							|  | @ -0,0 +1,13 @@ | ||||||
|  | { | ||||||
|  |   "ver": "1.1.50", | ||||||
|  |   "importer": "prefab", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "500c80cc-b47e-4a2d-98c7-4f6ce6113811", | ||||||
|  |   "files": [ | ||||||
|  |     ".json" | ||||||
|  |   ], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": { | ||||||
|  |     "syncNodeName": "StartGameRoot" | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | @ -0,0 +1,220 @@ | ||||||
|  | [ | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Prefab", | ||||||
|  |     "_name": "UI", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_native": "", | ||||||
|  |     "data": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "optimizationPolicy": 0, | ||||||
|  |     "persistent": false | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.Node", | ||||||
|  |     "_name": "UI", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "_parent": null, | ||||||
|  |     "_children": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 2 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_active": true, | ||||||
|  |     "_components": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 10 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 12 | ||||||
|  |     }, | ||||||
|  |     "_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", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "_parent": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_prefab": { | ||||||
|  |       "__id__": 3 | ||||||
|  |     }, | ||||||
|  |     "__editorExtras__": {} | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 2 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__uuid__": "7fb32db3-b3d6-44f1-abaa-f6063c24e07f", | ||||||
|  |       "__expectedType__": "cc.Prefab" | ||||||
|  |     }, | ||||||
|  |     "fileId": "4dIR0b3MJAHIpU7ERJwTWq", | ||||||
|  |     "instance": { | ||||||
|  |       "__id__": 4 | ||||||
|  |     }, | ||||||
|  |     "targetOverrides": null | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInstance", | ||||||
|  |     "fileId": "d7vgkaVD5OmapjIefZvdyK", | ||||||
|  |     "prefabRootNode": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "mountedChildren": [], | ||||||
|  |     "mountedComponents": [], | ||||||
|  |     "propertyOverrides": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 5 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 7 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 8 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 9 | ||||||
|  |       } | ||||||
|  |     ], | ||||||
|  |     "removedComponents": [] | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "CCPropertyOverrideInfo", | ||||||
|  |     "targetInfo": { | ||||||
|  |       "__id__": 6 | ||||||
|  |     }, | ||||||
|  |     "propertyPath": [ | ||||||
|  |       "_name" | ||||||
|  |     ], | ||||||
|  |     "value": "Gamer" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.TargetInfo", | ||||||
|  |     "localID": [ | ||||||
|  |       "4dIR0b3MJAHIpU7ERJwTWq" | ||||||
|  |     ] | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "CCPropertyOverrideInfo", | ||||||
|  |     "targetInfo": { | ||||||
|  |       "__id__": 6 | ||||||
|  |     }, | ||||||
|  |     "propertyPath": [ | ||||||
|  |       "_lpos" | ||||||
|  |     ], | ||||||
|  |     "value": { | ||||||
|  |       "__type__": "cc.Vec3", | ||||||
|  |       "x": 266.766, | ||||||
|  |       "y": 240.999, | ||||||
|  |       "z": 0 | ||||||
|  |     } | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "CCPropertyOverrideInfo", | ||||||
|  |     "targetInfo": { | ||||||
|  |       "__id__": 6 | ||||||
|  |     }, | ||||||
|  |     "propertyPath": [ | ||||||
|  |       "_lrot" | ||||||
|  |     ], | ||||||
|  |     "value": { | ||||||
|  |       "__type__": "cc.Quat", | ||||||
|  |       "x": 0, | ||||||
|  |       "y": 0, | ||||||
|  |       "z": 0, | ||||||
|  |       "w": 1 | ||||||
|  |     } | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "CCPropertyOverrideInfo", | ||||||
|  |     "targetInfo": { | ||||||
|  |       "__id__": 6 | ||||||
|  |     }, | ||||||
|  |     "propertyPath": [ | ||||||
|  |       "_euler" | ||||||
|  |     ], | ||||||
|  |     "value": { | ||||||
|  |       "__type__": "cc.Vec3", | ||||||
|  |       "x": 0, | ||||||
|  |       "y": 0, | ||||||
|  |       "z": 0 | ||||||
|  |     } | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.UITransform", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": { | ||||||
|  |       "__id__": 11 | ||||||
|  |     }, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 100, | ||||||
|  |       "height": 100 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.CompPrefabInfo", | ||||||
|  |     "fileId": "ebXzZerpNCrpui6J6cpIgs" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.PrefabInfo", | ||||||
|  |     "root": { | ||||||
|  |       "__id__": 1 | ||||||
|  |     }, | ||||||
|  |     "asset": { | ||||||
|  |       "__id__": 0 | ||||||
|  |     }, | ||||||
|  |     "fileId": "54XqsHof9Fxrxjq1dsKg2i", | ||||||
|  |     "instance": null, | ||||||
|  |     "targetOverrides": null, | ||||||
|  |     "nestedPrefabInstanceRoots": [ | ||||||
|  |       { | ||||||
|  |         "__id__": 2 | ||||||
|  |       } | ||||||
|  |     ] | ||||||
|  |   } | ||||||
|  | ] | ||||||
|  | @ -0,0 +1,13 @@ | ||||||
|  | { | ||||||
|  |   "ver": "1.1.50", | ||||||
|  |   "importer": "prefab", | ||||||
|  |   "imported": true, | ||||||
|  |   "uuid": "b5b15b0a-c30d-4b95-aee9-b2798a9ad12d", | ||||||
|  |   "files": [ | ||||||
|  |     ".json" | ||||||
|  |   ], | ||||||
|  |   "subMetas": {}, | ||||||
|  |   "userData": { | ||||||
|  |     "syncNodeName": "UI" | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | @ -1,7 +1,10 @@ | ||||||
| import { _decorator, Component, director, Node } from 'cc'; | import { _decorator, Component, director, instantiate, Node, Prefab, resources, Scene } from 'cc'; | ||||||
| import { GlobalAudio } from '../../GlobalScript/GlobalAudio/GlobalAudio'; | import { GlobalAudio } from '../../GlobalScript/GlobalAudio/GlobalAudio'; | ||||||
| import { ImagePack } from '../../GlobalScript/ImagePack/ImagePack'; | import { ImagePack } from '../../GlobalScript/ImagePack/ImagePack'; | ||||||
| import { GameScript } from '../../GlobalScript/GameScript/GameScript'; | import { GameScript } from '../../GlobalScript/GameScript/GameScript'; | ||||||
|  | import { UIRoot } from '../../Script/UIRoot'; | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
| const { ccclass, property } = _decorator; | const { ccclass, property } = _decorator; | ||||||
| 
 | 
 | ||||||
| 
 | 
 | ||||||
|  | @ -18,6 +21,8 @@ export class LodingLogic extends Component { | ||||||
|     NpkManage: boolean = false; |     NpkManage: boolean = false; | ||||||
|     //Pvf管理器初始化状态
 |     //Pvf管理器初始化状态
 | ||||||
|     PvfManage: boolean = false; |     PvfManage: boolean = false; | ||||||
|  | 
 | ||||||
|  |   | ||||||
|     start() { |     start() { | ||||||
|         //初始化音频Map
 |         //初始化音频Map
 | ||||||
|         GlobalAudio.getInstance().Init(() => { |         GlobalAudio.getInstance().Init(() => { | ||||||
|  | @ -31,6 +36,7 @@ export class LodingLogic extends Component { | ||||||
|         GameScript.getInstance().Init(() => { |         GameScript.getInstance().Init(() => { | ||||||
|             this.PvfManage = true; |             this.PvfManage = true; | ||||||
|         }); |         }); | ||||||
|  | 
 | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     CheckInitState() { |     CheckInitState() { | ||||||
|  | @ -40,18 +46,24 @@ export class LodingLogic extends Component { | ||||||
|         else return true; |         else return true; | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|     update(deltaTime: number) { |     update(deltaTime: number) { | ||||||
|         if (this.CheckInitState() && !this.InitFlag && this.LogoFlag) { |         if (this.CheckInitState() && !this.InitFlag && this.LogoFlag) { | ||||||
| 
 | 
 | ||||||
|             this.scheduleOnce(function () { |             this.scheduleOnce(function () { | ||||||
|                 // director.loadScene("LoginGame");
 |                 // director.loadScene("LoginGame");
 | ||||||
|  |                  | ||||||
|  |                 director.preloadScene("main",()=>{ | ||||||
|                     director.loadScene("main"); |                     director.loadScene("main"); | ||||||
|  |                 }); | ||||||
|             }, 0); |             }, 0); | ||||||
| 
 | 
 | ||||||
|             this.InitFlag = true; |             this.InitFlag = true; | ||||||
|         } else { |         } else { | ||||||
|             //每帧调用
 |             //每帧调用
 | ||||||
|             GameScript.getInstance().Update(); |             GameScript.getInstance().Update(); | ||||||
|  |              | ||||||
|         } |         } | ||||||
|     } |     } | ||||||
| } | } | ||||||
|  |  | ||||||
|  | @ -23,7 +23,7 @@ | ||||||
|     "_active": true, |     "_active": true, | ||||||
|     "_components": [], |     "_components": [], | ||||||
|     "_prefab": { |     "_prefab": { | ||||||
|       "__id__": 24 |       "__id__": 18 | ||||||
|     }, |     }, | ||||||
|     "_lpos": { |     "_lpos": { | ||||||
|       "__type__": "cc.Vec3", |       "__type__": "cc.Vec3", | ||||||
|  | @ -54,7 +54,7 @@ | ||||||
|     }, |     }, | ||||||
|     "autoReleaseAssets": false, |     "autoReleaseAssets": false, | ||||||
|     "_globals": { |     "_globals": { | ||||||
|       "__id__": 25 |       "__id__": 19 | ||||||
|     }, |     }, | ||||||
|     "_id": "f713b5ea-a70f-486c-8260-0338f089a5b8" |     "_id": "f713b5ea-a70f-486c-8260-0338f089a5b8" | ||||||
|   }, |   }, | ||||||
|  | @ -77,13 +77,13 @@ | ||||||
|     "_active": true, |     "_active": true, | ||||||
|     "_components": [ |     "_components": [ | ||||||
|       { |       { | ||||||
|         "__id__": 21 |         "__id__": 15 | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         "__id__": 22 |         "__id__": 16 | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         "__id__": 23 |         "__id__": 17 | ||||||
|       } |       } | ||||||
|     ], |     ], | ||||||
|     "_prefab": null, |     "_prefab": null, | ||||||
|  | @ -175,7 +175,7 @@ | ||||||
|     "_priority": 0, |     "_priority": 0, | ||||||
|     "_fov": 45, |     "_fov": 45, | ||||||
|     "_fovAxis": 0, |     "_fovAxis": 0, | ||||||
|     "_orthoHeight": 300, |     "_orthoHeight": 434.12254901960785, | ||||||
|     "_near": 0, |     "_near": 0, | ||||||
|     "_far": 1000, |     "_far": 1000, | ||||||
|     "_color": { |     "_color": { | ||||||
|  | @ -220,7 +220,10 @@ | ||||||
|         "__id__": 6 |         "__id__": 6 | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         "__id__": 15 |         "__id__": 10 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 13 | ||||||
|       } |       } | ||||||
|     ], |     ], | ||||||
|     "_active": true, |     "_active": true, | ||||||
|  | @ -257,27 +260,23 @@ | ||||||
|   }, |   }, | ||||||
|   { |   { | ||||||
|     "__type__": "cc.Node", |     "__type__": "cc.Node", | ||||||
|     "_name": "SpriteSplash", |     "_name": "BoardRoot", | ||||||
|     "_objFlags": 0, |     "_objFlags": 0, | ||||||
|     "__editorExtras__": {}, |     "__editorExtras__": {}, | ||||||
|     "_parent": { |     "_parent": { | ||||||
|       "__id__": 5 |       "__id__": 5 | ||||||
|     }, |     }, | ||||||
|     "_children": [ |     "_children": [], | ||||||
|       { |  | ||||||
|         "__id__": 7 |  | ||||||
|       } |  | ||||||
|     ], |  | ||||||
|     "_active": true, |     "_active": true, | ||||||
|     "_components": [ |     "_components": [ | ||||||
|       { |       { | ||||||
|         "__id__": 12 |         "__id__": 7 | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         "__id__": 13 |         "__id__": 8 | ||||||
|       }, |       }, | ||||||
|       { |       { | ||||||
|         "__id__": 14 |         "__id__": 9 | ||||||
|       } |       } | ||||||
|     ], |     ], | ||||||
|     "_prefab": null, |     "_prefab": null, | ||||||
|  | @ -310,164 +309,6 @@ | ||||||
|     }, |     }, | ||||||
|     "_id": "f3uurI1edKpb/AsUQZyW7c" |     "_id": "f3uurI1edKpb/AsUQZyW7c" | ||||||
|   }, |   }, | ||||||
|   { |  | ||||||
|     "__type__": "cc.Node", |  | ||||||
|     "_name": "Node", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "_parent": { |  | ||||||
|       "__id__": 6 |  | ||||||
|     }, |  | ||||||
|     "_children": [ |  | ||||||
|       { |  | ||||||
|         "__id__": 8 |  | ||||||
|       } |  | ||||||
|     ], |  | ||||||
|     "_active": true, |  | ||||||
|     "_components": [ |  | ||||||
|       { |  | ||||||
|         "__id__": 11 |  | ||||||
|       } |  | ||||||
|     ], |  | ||||||
|     "_prefab": null, |  | ||||||
|     "_lpos": { |  | ||||||
|       "__type__": "cc.Vec3", |  | ||||||
|       "x": 406.656, |  | ||||||
|       "y": -285.541, |  | ||||||
|       "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": "2eqXq8mlZNEo1OEHiSCz+/" |  | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "cc.Node", |  | ||||||
|     "_name": "Button", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "_parent": { |  | ||||||
|       "__id__": 7 |  | ||||||
|     }, |  | ||||||
|     "_children": [], |  | ||||||
|     "_active": true, |  | ||||||
|     "_components": [ |  | ||||||
|       { |  | ||||||
|         "__id__": 9 |  | ||||||
|       }, |  | ||||||
|       { |  | ||||||
|         "__id__": 10 |  | ||||||
|       } |  | ||||||
|     ], |  | ||||||
|     "_prefab": null, |  | ||||||
|     "_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": "3cMhmwzlJJ4qTMaShfKXN9" |  | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "cc.UITransform", |  | ||||||
|     "_name": "", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "node": { |  | ||||||
|       "__id__": 8 |  | ||||||
|     }, |  | ||||||
|     "_enabled": true, |  | ||||||
|     "__prefab": null, |  | ||||||
|     "_contentSize": { |  | ||||||
|       "__type__": "cc.Size", |  | ||||||
|       "width": 40, |  | ||||||
|       "height": 36 |  | ||||||
|     }, |  | ||||||
|     "_anchorPoint": { |  | ||||||
|       "__type__": "cc.Vec2", |  | ||||||
|       "x": 0.5, |  | ||||||
|       "y": 0.5 |  | ||||||
|     }, |  | ||||||
|     "_id": "6b2rDbQKRJBI5YM2ruCZ/7" |  | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "227e93p2mxEV5zjvG1ofJkL", |  | ||||||
|     "_name": "", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "node": { |  | ||||||
|       "__id__": 8 |  | ||||||
|     }, |  | ||||||
|     "_enabled": true, |  | ||||||
|     "__prefab": null, |  | ||||||
|     "ImgPath": "interface2/event/chn_event_2020/200922_dnf_marble/00_main.img", |  | ||||||
|     "NormalImgIndex": 1, |  | ||||||
|     "HoverImgIndex": 2, |  | ||||||
|     "PressImgIndex": 3, |  | ||||||
|     "DisableImgIndex": 4, |  | ||||||
|     "_id": "b2Dl0a+fBCVb43F/u+R87a" |  | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "cc.UITransform", |  | ||||||
|     "_name": "", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "node": { |  | ||||||
|       "__id__": 7 |  | ||||||
|     }, |  | ||||||
|     "_enabled": true, |  | ||||||
|     "__prefab": null, |  | ||||||
|     "_contentSize": { |  | ||||||
|       "__type__": "cc.Size", |  | ||||||
|       "width": 100, |  | ||||||
|       "height": 100 |  | ||||||
|     }, |  | ||||||
|     "_anchorPoint": { |  | ||||||
|       "__type__": "cc.Vec2", |  | ||||||
|       "x": 0.5, |  | ||||||
|       "y": 0.5 |  | ||||||
|     }, |  | ||||||
|     "_id": "d52kwcSPVPjYkvdV5Y3yKc" |  | ||||||
|   }, |  | ||||||
|   { |   { | ||||||
|     "__type__": "cc.UITransform", |     "__type__": "cc.UITransform", | ||||||
|     "_name": "", |     "_name": "", | ||||||
|  | @ -541,32 +382,31 @@ | ||||||
|     "__prefab": null, |     "__prefab": null, | ||||||
|     "ImgPath": "interface2/event/chn_event_2020/200922_dnf_marble/00_main.img", |     "ImgPath": "interface2/event/chn_event_2020/200922_dnf_marble/00_main.img", | ||||||
|     "ImgIndex": 0, |     "ImgIndex": 0, | ||||||
|     "_id": "63oRTrNBxMGLodUQWYSkjV" |     "_id": "fc2gTwXM1Lq68bZxSz8rQ1" | ||||||
|   }, |   }, | ||||||
|   { |   { | ||||||
|     "__type__": "cc.Node", |     "__type__": "cc.Node", | ||||||
|     "_name": "touzi", |     "_name": "UIRoot", | ||||||
|     "_objFlags": 0, |     "_objFlags": 0, | ||||||
|     "__editorExtras__": {}, |     "__editorExtras__": {}, | ||||||
|     "_parent": { |     "_parent": { | ||||||
|       "__id__": 5 |       "__id__": 5 | ||||||
|     }, |     }, | ||||||
|     "_children": [ |     "_children": [], | ||||||
|       { |  | ||||||
|         "__id__": 16 |  | ||||||
|       } |  | ||||||
|     ], |  | ||||||
|     "_active": true, |     "_active": true, | ||||||
|     "_components": [ |     "_components": [ | ||||||
|       { |       { | ||||||
|         "__id__": 20 |         "__id__": 11 | ||||||
|  |       }, | ||||||
|  |       { | ||||||
|  |         "__id__": 12 | ||||||
|       } |       } | ||||||
|     ], |     ], | ||||||
|     "_prefab": null, |     "_prefab": null, | ||||||
|     "_lpos": { |     "_lpos": { | ||||||
|       "__type__": "cc.Vec3", |       "__type__": "cc.Vec3", | ||||||
|       "x": 552.147, |       "x": 0, | ||||||
|       "y": 198.485, |       "y": 0, | ||||||
|       "z": 0 |       "z": 0 | ||||||
|     }, |     }, | ||||||
|     "_lrot": { |     "_lrot": { | ||||||
|  | @ -590,34 +430,66 @@ | ||||||
|       "y": 0, |       "y": 0, | ||||||
|       "z": 0 |       "z": 0 | ||||||
|     }, |     }, | ||||||
|     "_id": "72Pcn+hmZEIpMeO4JclUIB" |     "_id": "b70q1cqLNPiaJjOCmvNnRI" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "cc.UITransform", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 10 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": null, | ||||||
|  |     "_contentSize": { | ||||||
|  |       "__type__": "cc.Size", | ||||||
|  |       "width": 100, | ||||||
|  |       "height": 100 | ||||||
|  |     }, | ||||||
|  |     "_anchorPoint": { | ||||||
|  |       "__type__": "cc.Vec2", | ||||||
|  |       "x": 0.5, | ||||||
|  |       "y": 0.5 | ||||||
|  |     }, | ||||||
|  |     "_id": "6cbBeNcXdJr6bJDAOt5tLP" | ||||||
|  |   }, | ||||||
|  |   { | ||||||
|  |     "__type__": "a578c1qrTRIdaMFhEtim8LM", | ||||||
|  |     "_name": "", | ||||||
|  |     "_objFlags": 0, | ||||||
|  |     "__editorExtras__": {}, | ||||||
|  |     "node": { | ||||||
|  |       "__id__": 10 | ||||||
|  |     }, | ||||||
|  |     "_enabled": true, | ||||||
|  |     "__prefab": null, | ||||||
|  |     "startGameRootPrefab": { | ||||||
|  |       "__uuid__": "500c80cc-b47e-4a2d-98c7-4f6ce6113811", | ||||||
|  |       "__expectedType__": "cc.Prefab" | ||||||
|  |     }, | ||||||
|  |     "_id": "6clS3n6E1O3Ir6YO9pV5rA" | ||||||
|   }, |   }, | ||||||
|   { |   { | ||||||
|     "__type__": "cc.Node", |     "__type__": "cc.Node", | ||||||
|     "_name": "Test", |     "_name": "DialogRoot", | ||||||
|     "_objFlags": 0, |     "_objFlags": 0, | ||||||
|     "__editorExtras__": {}, |     "__editorExtras__": {}, | ||||||
|     "_parent": { |     "_parent": { | ||||||
|       "__id__": 15 |       "__id__": 5 | ||||||
|     }, |     }, | ||||||
|     "_children": [], |     "_children": [], | ||||||
|     "_active": true, |     "_active": true, | ||||||
|     "_components": [ |     "_components": [ | ||||||
|       { |       { | ||||||
|         "__id__": 17 |         "__id__": 14 | ||||||
|       }, |  | ||||||
|       { |  | ||||||
|         "__id__": 18 |  | ||||||
|       }, |  | ||||||
|       { |  | ||||||
|         "__id__": 19 |  | ||||||
|       } |       } | ||||||
|     ], |     ], | ||||||
|     "_prefab": null, |     "_prefab": null, | ||||||
|     "_lpos": { |     "_lpos": { | ||||||
|       "__type__": "cc.Vec3", |       "__type__": "cc.Vec3", | ||||||
|       "x": 646.928, |       "x": 0, | ||||||
|       "y": 177.592, |       "y": 0, | ||||||
|       "z": 0 |       "z": 0 | ||||||
|     }, |     }, | ||||||
|     "_lrot": { |     "_lrot": { | ||||||
|  | @ -634,14 +506,14 @@ | ||||||
|       "z": 1 |       "z": 1 | ||||||
|     }, |     }, | ||||||
|     "_mobility": 0, |     "_mobility": 0, | ||||||
|     "_layer": 33554432, |     "_layer": 1073741824, | ||||||
|     "_euler": { |     "_euler": { | ||||||
|       "__type__": "cc.Vec3", |       "__type__": "cc.Vec3", | ||||||
|       "x": 0, |       "x": 0, | ||||||
|       "y": 0, |       "y": 0, | ||||||
|       "z": 0 |       "z": 0 | ||||||
|     }, |     }, | ||||||
|     "_id": "58nLsryTdISqQKID5Hb4CI" |     "_id": "d8/VyHU6hLfKN4/JXsnt1M" | ||||||
|   }, |   }, | ||||||
|   { |   { | ||||||
|     "__type__": "cc.UITransform", |     "__type__": "cc.UITransform", | ||||||
|  | @ -649,7 +521,7 @@ | ||||||
|     "_objFlags": 0, |     "_objFlags": 0, | ||||||
|     "__editorExtras__": {}, |     "__editorExtras__": {}, | ||||||
|     "node": { |     "node": { | ||||||
|       "__id__": 16 |       "__id__": 13 | ||||||
|     }, |     }, | ||||||
|     "_enabled": true, |     "_enabled": true, | ||||||
|     "__prefab": null, |     "__prefab": null, | ||||||
|  | @ -663,78 +535,7 @@ | ||||||
|       "x": 0.5, |       "x": 0.5, | ||||||
|       "y": 0.5 |       "y": 0.5 | ||||||
|     }, |     }, | ||||||
|     "_id": "e3PWU61UNEv7dpgCI4tyOQ" |     "_id": "28/iYuYk1JyqaQ0l2uDYPY" | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "cc.Sprite", |  | ||||||
|     "_name": "", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "node": { |  | ||||||
|       "__id__": 16 |  | ||||||
|     }, |  | ||||||
|     "_enabled": true, |  | ||||||
|     "__prefab": null, |  | ||||||
|     "_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": "2fzSKdC4tJv4cl+tDLmGI9" |  | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "da8cbJJkjxC+qVdpm9/+8LT", |  | ||||||
|     "_name": "", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "node": { |  | ||||||
|       "__id__": 16 |  | ||||||
|     }, |  | ||||||
|     "_enabled": true, |  | ||||||
|     "__prefab": null, |  | ||||||
|     "AnimationPath": "ani/000_1x1_double.ani", |  | ||||||
|     "_id": "86S/B40YdJLqyx40ueYpvW" |  | ||||||
|   }, |  | ||||||
|   { |  | ||||||
|     "__type__": "cc.UITransform", |  | ||||||
|     "_name": "", |  | ||||||
|     "_objFlags": 0, |  | ||||||
|     "__editorExtras__": {}, |  | ||||||
|     "node": { |  | ||||||
|       "__id__": 15 |  | ||||||
|     }, |  | ||||||
|     "_enabled": true, |  | ||||||
|     "__prefab": null, |  | ||||||
|     "_contentSize": { |  | ||||||
|       "__type__": "cc.Size", |  | ||||||
|       "width": 100, |  | ||||||
|       "height": 100 |  | ||||||
|     }, |  | ||||||
|     "_anchorPoint": { |  | ||||||
|       "__type__": "cc.Vec2", |  | ||||||
|       "x": 0.5, |  | ||||||
|       "y": 0.5 |  | ||||||
|     }, |  | ||||||
|     "_id": "7fDqoE7tdNjLdQj8L8oM8f" |  | ||||||
|   }, |   }, | ||||||
|   { |   { | ||||||
|     "__type__": "cc.UITransform", |     "__type__": "cc.UITransform", | ||||||
|  | @ -815,28 +616,28 @@ | ||||||
|   { |   { | ||||||
|     "__type__": "cc.SceneGlobals", |     "__type__": "cc.SceneGlobals", | ||||||
|     "ambient": { |     "ambient": { | ||||||
|       "__id__": 26 |       "__id__": 20 | ||||||
|     }, |     }, | ||||||
|     "shadows": { |     "shadows": { | ||||||
|       "__id__": 27 |       "__id__": 21 | ||||||
|     }, |     }, | ||||||
|     "_skybox": { |     "_skybox": { | ||||||
|       "__id__": 28 |       "__id__": 22 | ||||||
|     }, |     }, | ||||||
|     "fog": { |     "fog": { | ||||||
|       "__id__": 29 |       "__id__": 23 | ||||||
|     }, |     }, | ||||||
|     "octree": { |     "octree": { | ||||||
|       "__id__": 30 |       "__id__": 24 | ||||||
|     }, |     }, | ||||||
|     "skin": { |     "skin": { | ||||||
|       "__id__": 31 |       "__id__": 25 | ||||||
|     }, |     }, | ||||||
|     "lightProbeInfo": { |     "lightProbeInfo": { | ||||||
|       "__id__": 32 |       "__id__": 26 | ||||||
|     }, |     }, | ||||||
|     "postSettings": { |     "postSettings": { | ||||||
|       "__id__": 33 |       "__id__": 27 | ||||||
|     }, |     }, | ||||||
|     "bakedWithStationaryMainLight": false, |     "bakedWithStationaryMainLight": false, | ||||||
|     "bakedWithHighpLightmap": false |     "bakedWithHighpLightmap": false | ||||||
|  |  | ||||||
|  | @ -7,7 +7,7 @@ | ||||||
|       "enable": true, |       "enable": true, | ||||||
|       "customSplash": { |       "customSplash": { | ||||||
|         "complete": true, |         "complete": true, | ||||||
|         "form": "https://creator-api.cocos.com/api/form/show?sid=9ca4a815f78c9bcd01d30320bbf2f99b" |         "form": "https://creator-api.cocos.com/api/form/show?sid=713f3d658f5b15c1ab406d720b890938" | ||||||
|       } |       } | ||||||
|     }, |     }, | ||||||
|     "removeSplash": { |     "removeSplash": { | ||||||
|  | @ -16,7 +16,7 @@ | ||||||
|       "enable": true, |       "enable": true, | ||||||
|       "removeSplash": { |       "removeSplash": { | ||||||
|         "complete": true, |         "complete": true, | ||||||
|         "form": "https://creator-api.cocos.com/api/form/show?sid=9ca4a815f78c9bcd01d30320bbf2f99b" |         "form": "https://creator-api.cocos.com/api/form/show?sid=713f3d658f5b15c1ab406d720b890938" | ||||||
|       } |       } | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue