main.scene 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_name": "main",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. }
  20. ],
  21. "_active": true,
  22. "_components": [],
  23. "_prefab": null,
  24. "autoReleaseAssets": false,
  25. "_globals": {
  26. "__id__": 136
  27. },
  28. "_id": "1d098814-0801-4a0e-8a7f-862174376c88"
  29. },
  30. {
  31. "__type__": "cc.Node",
  32. "_name": "Canvas",
  33. "_objFlags": 0,
  34. "_parent": {
  35. "__id__": 1
  36. },
  37. "_children": [
  38. {
  39. "__id__": 3
  40. },
  41. {
  42. "__id__": 5
  43. },
  44. {
  45. "__id__": 86
  46. },
  47. {
  48. "__id__": 94
  49. },
  50. {
  51. "__id__": 98
  52. },
  53. {
  54. "__id__": 13
  55. },
  56. {
  57. "__id__": 101
  58. },
  59. {
  60. "__id__": 22
  61. },
  62. {
  63. "__id__": 120
  64. },
  65. {
  66. "__id__": 123
  67. }
  68. ],
  69. "_active": true,
  70. "_components": [
  71. {
  72. "__id__": 130
  73. },
  74. {
  75. "__id__": 132
  76. },
  77. {
  78. "__id__": 134
  79. }
  80. ],
  81. "_prefab": null,
  82. "_lpos": {
  83. "__type__": "cc.Vec3",
  84. "x": 375,
  85. "y": 667,
  86. "z": 0
  87. },
  88. "_lrot": {
  89. "__type__": "cc.Quat",
  90. "x": 0,
  91. "y": 0,
  92. "z": 0,
  93. "w": 1
  94. },
  95. "_lscale": {
  96. "__type__": "cc.Vec3",
  97. "x": 1,
  98. "y": 1,
  99. "z": 1
  100. },
  101. "_layer": 33554432,
  102. "_euler": {
  103. "__type__": "cc.Vec3",
  104. "x": 0,
  105. "y": 0,
  106. "z": 0
  107. },
  108. "_id": "beUFJunwBLTqQyNQwaHsQ+"
  109. },
  110. {
  111. "__type__": "cc.Node",
  112. "_name": "Camera",
  113. "_objFlags": 0,
  114. "_parent": {
  115. "__id__": 2
  116. },
  117. "_children": [],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 4
  122. }
  123. ],
  124. "_prefab": null,
  125. "_lpos": {
  126. "__type__": "cc.Vec3",
  127. "x": 0,
  128. "y": 0,
  129. "z": 1000
  130. },
  131. "_lrot": {
  132. "__type__": "cc.Quat",
  133. "x": 0,
  134. "y": 0,
  135. "z": 0,
  136. "w": 1
  137. },
  138. "_lscale": {
  139. "__type__": "cc.Vec3",
  140. "x": 1,
  141. "y": 1,
  142. "z": 1
  143. },
  144. "_layer": 1073741824,
  145. "_euler": {
  146. "__type__": "cc.Vec3",
  147. "x": 0,
  148. "y": 0,
  149. "z": 0
  150. },
  151. "_id": "a7kR7rqFdCk7PW13+MvRAh"
  152. },
  153. {
  154. "__type__": "cc.Camera",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 3
  159. },
  160. "_enabled": true,
  161. "__prefab": null,
  162. "_projection": 0,
  163. "_priority": 1073741824,
  164. "_fov": 45,
  165. "_fovAxis": 0,
  166. "_orthoHeight": 667,
  167. "_near": 1,
  168. "_far": 2000,
  169. "_color": {
  170. "__type__": "cc.Color",
  171. "r": 0,
  172. "g": 0,
  173. "b": 0,
  174. "a": 255
  175. },
  176. "_depth": 1,
  177. "_stencil": 0,
  178. "_clearFlags": 6,
  179. "_rect": {
  180. "__type__": "cc.Rect",
  181. "x": 0,
  182. "y": 0,
  183. "width": 1,
  184. "height": 1
  185. },
  186. "_aperture": 19,
  187. "_shutter": 7,
  188. "_iso": 0,
  189. "_screenScale": 1,
  190. "_visibility": 1115684864,
  191. "_targetTexture": null,
  192. "_id": "d8rCJvqzhO4JxatlwJJtNW"
  193. },
  194. {
  195. "__type__": "cc.Node",
  196. "_objFlags": 0,
  197. "_parent": {
  198. "__id__": 2
  199. },
  200. "_prefab": {
  201. "__id__": 6
  202. },
  203. "_id": "d4GUtUZcNHUJvtCLvf0txc"
  204. },
  205. {
  206. "__type__": "cc.PrefabInfo",
  207. "root": {
  208. "__id__": 5
  209. },
  210. "asset": {
  211. "__uuid__": "eace6f73-9a1a-4315-b42d-d0cea989770e",
  212. "__expectedType__": "cc.Prefab"
  213. },
  214. "fileId": "fbWpkleTNOA6Jiz5MOzfJ8",
  215. "instance": {
  216. "__id__": 7
  217. }
  218. },
  219. {
  220. "__type__": "cc.PrefabInstance",
  221. "fileId": "fanqtfVbVKEqtDdvS5Mh/e",
  222. "mountedChildren": [],
  223. "mountedComponents": [],
  224. "propertyOverrides": [
  225. {
  226. "__id__": 8
  227. },
  228. {
  229. "__id__": 10
  230. },
  231. {
  232. "__id__": 11
  233. },
  234. {
  235. "__id__": 16
  236. },
  237. {
  238. "__id__": 17
  239. },
  240. {
  241. "__id__": 19
  242. },
  243. {
  244. "__id__": 81
  245. },
  246. {
  247. "__id__": 82
  248. },
  249. {
  250. "__id__": 84
  251. }
  252. ],
  253. "removedComponents": []
  254. },
  255. {
  256. "__type__": "CCPropertyOverrideInfo",
  257. "targetInfo": {
  258. "__id__": 9
  259. },
  260. "propertyPath": [
  261. "name"
  262. ],
  263. "value": "战斗层"
  264. },
  265. {
  266. "__type__": "cc.TargetInfo",
  267. "localID": [
  268. "fbWpkleTNOA6Jiz5MOzfJ8"
  269. ]
  270. },
  271. {
  272. "__type__": "CCPropertyOverrideInfo",
  273. "targetInfo": {
  274. "__id__": 9
  275. },
  276. "propertyPath": [
  277. "rotation"
  278. ],
  279. "value": {
  280. "__type__": "cc.Quat",
  281. "x": 0,
  282. "y": 0,
  283. "z": 0,
  284. "w": 1
  285. }
  286. },
  287. {
  288. "__type__": "CCPropertyOverrideInfo",
  289. "targetInfo": {
  290. "__id__": 12
  291. },
  292. "propertyPath": [
  293. "leadeShow"
  294. ],
  295. "value": {
  296. "__id__": 13
  297. }
  298. },
  299. {
  300. "__type__": "cc.TargetInfo",
  301. "localID": [
  302. "f8kCQr3DxDGY2G/dqILO6s"
  303. ]
  304. },
  305. {
  306. "__type__": "cc.Node",
  307. "_name": "统帅特写",
  308. "_objFlags": 0,
  309. "_parent": {
  310. "__id__": 2
  311. },
  312. "_children": [],
  313. "_active": true,
  314. "_components": [
  315. {
  316. "__id__": 14
  317. },
  318. {
  319. "__id__": 15
  320. }
  321. ],
  322. "_prefab": null,
  323. "_lpos": {
  324. "__type__": "cc.Vec3",
  325. "x": 0,
  326. "y": 0,
  327. "z": 0
  328. },
  329. "_lrot": {
  330. "__type__": "cc.Quat",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0,
  334. "w": 1
  335. },
  336. "_lscale": {
  337. "__type__": "cc.Vec3",
  338. "x": 1,
  339. "y": 1,
  340. "z": 1
  341. },
  342. "_layer": 1073741824,
  343. "_euler": {
  344. "__type__": "cc.Vec3",
  345. "x": 0,
  346. "y": 0,
  347. "z": 0
  348. },
  349. "_id": "0bvc1qXF1MH4w2Cy9Gs9BH"
  350. },
  351. {
  352. "__type__": "cc.UITransform",
  353. "_name": "",
  354. "_objFlags": 0,
  355. "node": {
  356. "__id__": 13
  357. },
  358. "_enabled": true,
  359. "__prefab": null,
  360. "_contentSize": {
  361. "__type__": "cc.Size",
  362. "width": 750,
  363. "height": 1334
  364. },
  365. "_anchorPoint": {
  366. "__type__": "cc.Vec2",
  367. "x": 0.5,
  368. "y": 0.5
  369. },
  370. "_id": "d7ahZl09RCGoIIKEIpiz/F"
  371. },
  372. {
  373. "__type__": "cc.Widget",
  374. "_name": "",
  375. "_objFlags": 0,
  376. "node": {
  377. "__id__": 13
  378. },
  379. "_enabled": true,
  380. "__prefab": null,
  381. "_alignFlags": 45,
  382. "_target": null,
  383. "_left": 0,
  384. "_right": 0,
  385. "_top": 0,
  386. "_bottom": 0,
  387. "_horizontalCenter": 0,
  388. "_verticalCenter": 0,
  389. "_isAbsLeft": true,
  390. "_isAbsRight": true,
  391. "_isAbsTop": true,
  392. "_isAbsBottom": true,
  393. "_isAbsHorizontalCenter": true,
  394. "_isAbsVerticalCenter": true,
  395. "_originalWidth": 100,
  396. "_originalHeight": 100,
  397. "_alignMode": 2,
  398. "_lockFlags": 0,
  399. "_id": "698I8oaXlAgKUTyuwe4kqI"
  400. },
  401. {
  402. "__type__": "CCPropertyOverrideInfo",
  403. "targetInfo": {
  404. "__id__": 12
  405. },
  406. "propertyPath": [
  407. "leaderShow"
  408. ],
  409. "value": {
  410. "__id__": 13
  411. }
  412. },
  413. {
  414. "__type__": "CCPropertyOverrideInfo",
  415. "targetInfo": {
  416. "__id__": 18
  417. },
  418. "propertyPath": [
  419. "scale"
  420. ],
  421. "value": {
  422. "__type__": "cc.Vec3",
  423. "x": 1,
  424. "y": 1,
  425. "z": 1
  426. }
  427. },
  428. {
  429. "__type__": "cc.TargetInfo",
  430. "localID": [
  431. "9c6W9PQRFFHIjHc8Ho7voa"
  432. ]
  433. },
  434. {
  435. "__type__": "CCPropertyOverrideInfo",
  436. "targetInfo": {
  437. "__id__": 20
  438. },
  439. "propertyPath": [
  440. "openComplete"
  441. ],
  442. "value": {
  443. "__id__": 21
  444. }
  445. },
  446. {
  447. "__type__": "cc.TargetInfo",
  448. "localID": [
  449. "b8zp/9v7lPoagxDbhVR6L/"
  450. ]
  451. },
  452. {
  453. "__type__": "cc.Node",
  454. "_objFlags": 0,
  455. "_parent": {
  456. "__id__": 22
  457. },
  458. "_prefab": {
  459. "__id__": 61
  460. },
  461. "_id": "3d30RpFo9Gm75d6r/1pnbh"
  462. },
  463. {
  464. "__type__": "cc.Node",
  465. "_name": "结算窗口",
  466. "_objFlags": 0,
  467. "_parent": {
  468. "__id__": 2
  469. },
  470. "_children": [
  471. {
  472. "__id__": 21
  473. },
  474. {
  475. "__id__": 23
  476. }
  477. ],
  478. "_active": true,
  479. "_components": [
  480. {
  481. "__id__": 59
  482. },
  483. {
  484. "__id__": 60
  485. }
  486. ],
  487. "_prefab": null,
  488. "_lpos": {
  489. "__type__": "cc.Vec3",
  490. "x": 0,
  491. "y": 0,
  492. "z": 0
  493. },
  494. "_lrot": {
  495. "__type__": "cc.Quat",
  496. "x": 0,
  497. "y": 0,
  498. "z": 0,
  499. "w": 1
  500. },
  501. "_lscale": {
  502. "__type__": "cc.Vec3",
  503. "x": 1,
  504. "y": 1,
  505. "z": 1
  506. },
  507. "_layer": 1073741824,
  508. "_euler": {
  509. "__type__": "cc.Vec3",
  510. "x": 0,
  511. "y": 0,
  512. "z": 0
  513. },
  514. "_id": "absPNHkWdHm7uH14ho2thp"
  515. },
  516. {
  517. "__type__": "cc.Node",
  518. "_objFlags": 0,
  519. "_parent": {
  520. "__id__": 22
  521. },
  522. "_prefab": {
  523. "__id__": 24
  524. },
  525. "_id": "dcGzWUFD9J8KiiZ8JlMNe/"
  526. },
  527. {
  528. "__type__": "cc.PrefabInfo",
  529. "root": {
  530. "__id__": 23
  531. },
  532. "asset": {
  533. "__uuid__": "803e2df8-6579-4ecf-93c1-05abf9e5b31c",
  534. "__expectedType__": "cc.Prefab"
  535. },
  536. "fileId": "58nATjGwxMaJbcFQOOYq7D",
  537. "instance": {
  538. "__id__": 25
  539. }
  540. },
  541. {
  542. "__type__": "cc.PrefabInstance",
  543. "fileId": "cc8xGJeZVMs5tIgr3KifAt",
  544. "mountedChildren": [],
  545. "mountedComponents": [],
  546. "propertyOverrides": [
  547. {
  548. "__id__": 26
  549. },
  550. {
  551. "__id__": 28
  552. },
  553. {
  554. "__id__": 29
  555. },
  556. {
  557. "__id__": 30
  558. },
  559. {
  560. "__id__": 32
  561. },
  562. {
  563. "__id__": 34
  564. },
  565. {
  566. "__id__": 36
  567. },
  568. {
  569. "__id__": 38
  570. },
  571. {
  572. "__id__": 40
  573. },
  574. {
  575. "__id__": 42
  576. },
  577. {
  578. "__id__": 44
  579. },
  580. {
  581. "__id__": 46
  582. },
  583. {
  584. "__id__": 48
  585. },
  586. {
  587. "__id__": 49
  588. },
  589. {
  590. "__id__": 50
  591. },
  592. {
  593. "__id__": 51
  594. },
  595. {
  596. "__id__": 52
  597. },
  598. {
  599. "__id__": 53
  600. },
  601. {
  602. "__id__": 55
  603. },
  604. {
  605. "__id__": 58
  606. }
  607. ],
  608. "removedComponents": []
  609. },
  610. {
  611. "__type__": "CCPropertyOverrideInfo",
  612. "targetInfo": {
  613. "__id__": 27
  614. },
  615. "propertyPath": [
  616. "name"
  617. ],
  618. "value": "missionFail"
  619. },
  620. {
  621. "__type__": "cc.TargetInfo",
  622. "localID": [
  623. "58nATjGwxMaJbcFQOOYq7D"
  624. ]
  625. },
  626. {
  627. "__type__": "CCPropertyOverrideInfo",
  628. "targetInfo": {
  629. "__id__": 27
  630. },
  631. "propertyPath": [
  632. "position"
  633. ],
  634. "value": {
  635. "__type__": "cc.Vec3",
  636. "x": 0,
  637. "y": 0,
  638. "z": 0
  639. }
  640. },
  641. {
  642. "__type__": "CCPropertyOverrideInfo",
  643. "targetInfo": {
  644. "__id__": 27
  645. },
  646. "propertyPath": [
  647. "rotation"
  648. ],
  649. "value": {
  650. "__type__": "cc.Quat",
  651. "x": 0,
  652. "y": 0,
  653. "z": 0,
  654. "w": 1
  655. }
  656. },
  657. {
  658. "__type__": "CCPropertyOverrideInfo",
  659. "targetInfo": {
  660. "__id__": 31
  661. },
  662. "propertyPath": [
  663. "scale"
  664. ],
  665. "value": {
  666. "__type__": "cc.Vec3",
  667. "x": 1,
  668. "y": 1,
  669. "z": 1
  670. }
  671. },
  672. {
  673. "__type__": "cc.TargetInfo",
  674. "localID": [
  675. "bcLW1WxzdO2K6c2Wrk5P7Z"
  676. ]
  677. },
  678. {
  679. "__type__": "CCPropertyOverrideInfo",
  680. "targetInfo": {
  681. "__id__": 33
  682. },
  683. "propertyPath": [
  684. "scale"
  685. ],
  686. "value": {
  687. "__type__": "cc.Vec3",
  688. "x": 1,
  689. "y": 1,
  690. "z": 1
  691. }
  692. },
  693. {
  694. "__type__": "cc.TargetInfo",
  695. "localID": [
  696. "5d6VAXwLpJbYjFIQXkz13Z"
  697. ]
  698. },
  699. {
  700. "__type__": "CCPropertyOverrideInfo",
  701. "targetInfo": {
  702. "__id__": 35
  703. },
  704. "propertyPath": [
  705. "scale"
  706. ],
  707. "value": {
  708. "__type__": "cc.Vec3",
  709. "x": 1,
  710. "y": 1,
  711. "z": 1
  712. }
  713. },
  714. {
  715. "__type__": "cc.TargetInfo",
  716. "localID": [
  717. "ceu86AnSVMr5IBx2o6dxi4"
  718. ]
  719. },
  720. {
  721. "__type__": "CCPropertyOverrideInfo",
  722. "targetInfo": {
  723. "__id__": 37
  724. },
  725. "propertyPath": [
  726. "scale"
  727. ],
  728. "value": {
  729. "__type__": "cc.Vec3",
  730. "x": 1,
  731. "y": 1,
  732. "z": 1
  733. }
  734. },
  735. {
  736. "__type__": "cc.TargetInfo",
  737. "localID": [
  738. "c1vSyRPS5CHYvF88JpRTf9"
  739. ]
  740. },
  741. {
  742. "__type__": "CCPropertyOverrideInfo",
  743. "targetInfo": {
  744. "__id__": 39
  745. },
  746. "propertyPath": [
  747. "scale"
  748. ],
  749. "value": {
  750. "__type__": "cc.Vec3",
  751. "x": 1,
  752. "y": 1,
  753. "z": 1
  754. }
  755. },
  756. {
  757. "__type__": "cc.TargetInfo",
  758. "localID": [
  759. "9c5gAYu+JAar2m3XQGopN+"
  760. ]
  761. },
  762. {
  763. "__type__": "CCPropertyOverrideInfo",
  764. "targetInfo": {
  765. "__id__": 41
  766. },
  767. "propertyPath": [
  768. "position"
  769. ],
  770. "value": {
  771. "__type__": "cc.Vec3",
  772. "x": 0,
  773. "y": 0,
  774. "z": 0
  775. }
  776. },
  777. {
  778. "__type__": "cc.TargetInfo",
  779. "localID": [
  780. "98LoL2cX1Acoxz0xMOe1uN"
  781. ]
  782. },
  783. {
  784. "__type__": "CCPropertyOverrideInfo",
  785. "targetInfo": {
  786. "__id__": 43
  787. },
  788. "propertyPath": [
  789. "position"
  790. ],
  791. "value": {
  792. "__type__": "cc.Vec3",
  793. "x": 0,
  794. "y": 0,
  795. "z": 0
  796. }
  797. },
  798. {
  799. "__type__": "cc.TargetInfo",
  800. "localID": [
  801. "c0d1m1T41OfZ2W1vH9tsYF"
  802. ]
  803. },
  804. {
  805. "__type__": "CCPropertyOverrideInfo",
  806. "targetInfo": {
  807. "__id__": 45
  808. },
  809. "propertyPath": [
  810. "position"
  811. ],
  812. "value": {
  813. "__type__": "cc.Vec3",
  814. "x": 0,
  815. "y": 0,
  816. "z": 0
  817. }
  818. },
  819. {
  820. "__type__": "cc.TargetInfo",
  821. "localID": [
  822. "62+t9YaVhJkJZnHu2DBrNQ"
  823. ]
  824. },
  825. {
  826. "__type__": "CCPropertyOverrideInfo",
  827. "targetInfo": {
  828. "__id__": 47
  829. },
  830. "propertyPath": [
  831. "position"
  832. ],
  833. "value": {
  834. "__type__": "cc.Vec3",
  835. "x": 0,
  836. "y": -160,
  837. "z": 0
  838. }
  839. },
  840. {
  841. "__type__": "cc.TargetInfo",
  842. "localID": [
  843. "bflGMn15FGEJky3L/d0eO/"
  844. ]
  845. },
  846. {
  847. "__type__": "CCPropertyOverrideInfo",
  848. "targetInfo": {
  849. "__id__": 31
  850. },
  851. "propertyPath": [
  852. "position"
  853. ],
  854. "value": {
  855. "__type__": "cc.Vec3",
  856. "x": -220.5,
  857. "y": 0,
  858. "z": 0
  859. }
  860. },
  861. {
  862. "__type__": "CCPropertyOverrideInfo",
  863. "targetInfo": {
  864. "__id__": 33
  865. },
  866. "propertyPath": [
  867. "position"
  868. ],
  869. "value": {
  870. "__type__": "cc.Vec3",
  871. "x": -5.5,
  872. "y": 0,
  873. "z": 0
  874. }
  875. },
  876. {
  877. "__type__": "CCPropertyOverrideInfo",
  878. "targetInfo": {
  879. "__id__": 35
  880. },
  881. "propertyPath": [
  882. "position"
  883. ],
  884. "value": {
  885. "__type__": "cc.Vec3",
  886. "x": 215,
  887. "y": 0,
  888. "z": 0
  889. }
  890. },
  891. {
  892. "__type__": "CCPropertyOverrideInfo",
  893. "targetInfo": {
  894. "__id__": 37
  895. },
  896. "propertyPath": [
  897. "position"
  898. ],
  899. "value": {
  900. "__type__": "cc.Vec3",
  901. "x": -110.5,
  902. "y": 0,
  903. "z": 0
  904. }
  905. },
  906. {
  907. "__type__": "CCPropertyOverrideInfo",
  908. "targetInfo": {
  909. "__id__": 39
  910. },
  911. "propertyPath": [
  912. "position"
  913. ],
  914. "value": {
  915. "__type__": "cc.Vec3",
  916. "x": 109,
  917. "y": 0,
  918. "z": 0
  919. }
  920. },
  921. {
  922. "__type__": "CCPropertyOverrideInfo",
  923. "targetInfo": {
  924. "__id__": 54
  925. },
  926. "propertyPath": [
  927. "enabled"
  928. ],
  929. "value": true
  930. },
  931. {
  932. "__type__": "cc.TargetInfo",
  933. "localID": [
  934. "cby0LlYdBFhLPu1ssJmwuU"
  935. ]
  936. },
  937. {
  938. "__type__": "CCPropertyOverrideInfo",
  939. "targetInfo": {
  940. "__id__": 56
  941. },
  942. "propertyPath": [
  943. "handler"
  944. ],
  945. "value": {
  946. "__id__": 57
  947. }
  948. },
  949. {
  950. "__type__": "cc.TargetInfo",
  951. "localID": [
  952. "47LeHssqZDP5YkSI3Zl3Od"
  953. ]
  954. },
  955. {
  956. "__type__": "cc.ClickEvent",
  957. "target": null,
  958. "component": "",
  959. "_componentId": "32d98E1GrpGNq8fUk8T6kI5",
  960. "handler": "next",
  961. "customEventData": ""
  962. },
  963. {
  964. "__type__": "CCPropertyOverrideInfo",
  965. "targetInfo": {
  966. "__id__": 27
  967. },
  968. "propertyPath": [
  969. "active"
  970. ],
  971. "value": false
  972. },
  973. {
  974. "__type__": "cc.UITransform",
  975. "_name": "",
  976. "_objFlags": 0,
  977. "node": {
  978. "__id__": 22
  979. },
  980. "_enabled": true,
  981. "__prefab": null,
  982. "_contentSize": {
  983. "__type__": "cc.Size",
  984. "width": 750,
  985. "height": 1334
  986. },
  987. "_anchorPoint": {
  988. "__type__": "cc.Vec2",
  989. "x": 0.5,
  990. "y": 0.5
  991. },
  992. "_id": "ca21IALjpIzI2XixvZ+fow"
  993. },
  994. {
  995. "__type__": "cc.Widget",
  996. "_name": "",
  997. "_objFlags": 0,
  998. "node": {
  999. "__id__": 22
  1000. },
  1001. "_enabled": true,
  1002. "__prefab": null,
  1003. "_alignFlags": 45,
  1004. "_target": null,
  1005. "_left": 0,
  1006. "_right": 0,
  1007. "_top": 0,
  1008. "_bottom": 0,
  1009. "_horizontalCenter": 0,
  1010. "_verticalCenter": 0,
  1011. "_isAbsLeft": true,
  1012. "_isAbsRight": true,
  1013. "_isAbsTop": true,
  1014. "_isAbsBottom": true,
  1015. "_isAbsHorizontalCenter": true,
  1016. "_isAbsVerticalCenter": true,
  1017. "_originalWidth": 100,
  1018. "_originalHeight": 100,
  1019. "_alignMode": 2,
  1020. "_lockFlags": 0,
  1021. "_id": "92w7/mtbdGy46y38PcG5DT"
  1022. },
  1023. {
  1024. "__type__": "cc.PrefabInfo",
  1025. "root": {
  1026. "__id__": 21
  1027. },
  1028. "asset": {
  1029. "__uuid__": "48607849-9de2-4134-9266-3a5c944a5005",
  1030. "__expectedType__": "cc.Prefab"
  1031. },
  1032. "fileId": "1eWaNIes5N1JV/rCm/BwGv",
  1033. "instance": {
  1034. "__id__": 62
  1035. }
  1036. },
  1037. {
  1038. "__type__": "cc.PrefabInstance",
  1039. "fileId": "3eeSv1EDFPs7K72R0ykO2l",
  1040. "mountedChildren": [],
  1041. "mountedComponents": [],
  1042. "propertyOverrides": [
  1043. {
  1044. "__id__": 63
  1045. },
  1046. {
  1047. "__id__": 65
  1048. },
  1049. {
  1050. "__id__": 66
  1051. },
  1052. {
  1053. "__id__": 67
  1054. },
  1055. {
  1056. "__id__": 69
  1057. },
  1058. {
  1059. "__id__": 71
  1060. },
  1061. {
  1062. "__id__": 73
  1063. },
  1064. {
  1065. "__id__": 75
  1066. },
  1067. {
  1068. "__id__": 77
  1069. },
  1070. {
  1071. "__id__": 80
  1072. }
  1073. ],
  1074. "removedComponents": []
  1075. },
  1076. {
  1077. "__type__": "CCPropertyOverrideInfo",
  1078. "targetInfo": {
  1079. "__id__": 64
  1080. },
  1081. "propertyPath": [
  1082. "name"
  1083. ],
  1084. "value": "MissionComplete"
  1085. },
  1086. {
  1087. "__type__": "cc.TargetInfo",
  1088. "localID": [
  1089. "1eWaNIes5N1JV/rCm/BwGv"
  1090. ]
  1091. },
  1092. {
  1093. "__type__": "CCPropertyOverrideInfo",
  1094. "targetInfo": {
  1095. "__id__": 64
  1096. },
  1097. "propertyPath": [
  1098. "position"
  1099. ],
  1100. "value": {
  1101. "__type__": "cc.Vec3",
  1102. "x": 0,
  1103. "y": 0,
  1104. "z": 0
  1105. }
  1106. },
  1107. {
  1108. "__type__": "CCPropertyOverrideInfo",
  1109. "targetInfo": {
  1110. "__id__": 64
  1111. },
  1112. "propertyPath": [
  1113. "rotation"
  1114. ],
  1115. "value": {
  1116. "__type__": "cc.Quat",
  1117. "x": 0,
  1118. "y": 0,
  1119. "z": 0,
  1120. "w": 1
  1121. }
  1122. },
  1123. {
  1124. "__type__": "CCPropertyOverrideInfo",
  1125. "targetInfo": {
  1126. "__id__": 68
  1127. },
  1128. "propertyPath": [
  1129. "position"
  1130. ],
  1131. "value": {
  1132. "__type__": "cc.Vec3",
  1133. "x": 0,
  1134. "y": 0,
  1135. "z": 0
  1136. }
  1137. },
  1138. {
  1139. "__type__": "cc.TargetInfo",
  1140. "localID": [
  1141. "c5ITxJQbRLiISMrsVs7KwZ"
  1142. ]
  1143. },
  1144. {
  1145. "__type__": "CCPropertyOverrideInfo",
  1146. "targetInfo": {
  1147. "__id__": 70
  1148. },
  1149. "propertyPath": [
  1150. "position"
  1151. ],
  1152. "value": {
  1153. "__type__": "cc.Vec3",
  1154. "x": 0,
  1155. "y": 0,
  1156. "z": 0
  1157. }
  1158. },
  1159. {
  1160. "__type__": "cc.TargetInfo",
  1161. "localID": [
  1162. "4fde6TdyJBS4WRkuuJYqAm"
  1163. ]
  1164. },
  1165. {
  1166. "__type__": "CCPropertyOverrideInfo",
  1167. "targetInfo": {
  1168. "__id__": 72
  1169. },
  1170. "propertyPath": [
  1171. "position"
  1172. ],
  1173. "value": {
  1174. "__type__": "cc.Vec3",
  1175. "x": -139.5,
  1176. "y": 0,
  1177. "z": 0
  1178. }
  1179. },
  1180. {
  1181. "__type__": "cc.TargetInfo",
  1182. "localID": [
  1183. "88naJN17pDIKzP68aVQ0bK"
  1184. ]
  1185. },
  1186. {
  1187. "__type__": "CCPropertyOverrideInfo",
  1188. "targetInfo": {
  1189. "__id__": 74
  1190. },
  1191. "propertyPath": [
  1192. "position"
  1193. ],
  1194. "value": {
  1195. "__type__": "cc.Vec3",
  1196. "x": 75,
  1197. "y": 0,
  1198. "z": 0
  1199. }
  1200. },
  1201. {
  1202. "__type__": "cc.TargetInfo",
  1203. "localID": [
  1204. "bc/qWv5qZGhaox3o6kAguY"
  1205. ]
  1206. },
  1207. {
  1208. "__type__": "CCPropertyOverrideInfo",
  1209. "targetInfo": {
  1210. "__id__": 76
  1211. },
  1212. "propertyPath": [
  1213. "enabled"
  1214. ],
  1215. "value": true
  1216. },
  1217. {
  1218. "__type__": "cc.TargetInfo",
  1219. "localID": [
  1220. "8dFy5k255NIo8aPKlOaYAE"
  1221. ]
  1222. },
  1223. {
  1224. "__type__": "CCPropertyOverrideInfo",
  1225. "targetInfo": {
  1226. "__id__": 78
  1227. },
  1228. "propertyPath": [
  1229. "handler"
  1230. ],
  1231. "value": {
  1232. "__id__": 79
  1233. }
  1234. },
  1235. {
  1236. "__type__": "cc.TargetInfo",
  1237. "localID": [
  1238. "bbP2qzletCrKcRqzkFFi7o"
  1239. ]
  1240. },
  1241. {
  1242. "__type__": "cc.ClickEvent",
  1243. "target": null,
  1244. "component": "",
  1245. "_componentId": "32d98E1GrpGNq8fUk8T6kI5",
  1246. "handler": "next",
  1247. "customEventData": ""
  1248. },
  1249. {
  1250. "__type__": "CCPropertyOverrideInfo",
  1251. "targetInfo": {
  1252. "__id__": 64
  1253. },
  1254. "propertyPath": [
  1255. "active"
  1256. ],
  1257. "value": false
  1258. },
  1259. {
  1260. "__type__": "CCPropertyOverrideInfo",
  1261. "targetInfo": {
  1262. "__id__": 20
  1263. },
  1264. "propertyPath": [
  1265. "openFail"
  1266. ],
  1267. "value": {
  1268. "__id__": 23
  1269. }
  1270. },
  1271. {
  1272. "__type__": "CCPropertyOverrideInfo",
  1273. "targetInfo": {
  1274. "__id__": 83
  1275. },
  1276. "propertyPath": [
  1277. "_active"
  1278. ],
  1279. "value": true
  1280. },
  1281. {
  1282. "__type__": "cc.TargetInfo",
  1283. "localID": [
  1284. "83EFUDYR5E94uCLhOhUL01",
  1285. "1fE7LHAU1PNIABmDcNYtIz"
  1286. ]
  1287. },
  1288. {
  1289. "__type__": "CCPropertyOverrideInfo",
  1290. "targetInfo": {
  1291. "__id__": 85
  1292. },
  1293. "propertyPath": [
  1294. "_active"
  1295. ],
  1296. "value": false
  1297. },
  1298. {
  1299. "__type__": "cc.TargetInfo",
  1300. "localID": [
  1301. "83EFUDYR5E94uCLhOhUL01",
  1302. "c3eYHQ/PtOs6CpBU8Z3UKb"
  1303. ]
  1304. },
  1305. {
  1306. "__type__": "cc.Node",
  1307. "_objFlags": 0,
  1308. "_parent": {
  1309. "__id__": 2
  1310. },
  1311. "_prefab": {
  1312. "__id__": 87
  1313. },
  1314. "_id": "afiF86Uj1MKpagJ+/91H1E"
  1315. },
  1316. {
  1317. "__type__": "cc.PrefabInfo",
  1318. "root": {
  1319. "__id__": 86
  1320. },
  1321. "asset": {
  1322. "__uuid__": "3a7b6405-2f22-47e5-944b-b03cec6e09fe",
  1323. "__expectedType__": "cc.Prefab"
  1324. },
  1325. "fileId": "c7zRIqKG5KuasDj+kz6S9o",
  1326. "instance": {
  1327. "__id__": 88
  1328. }
  1329. },
  1330. {
  1331. "__type__": "cc.PrefabInstance",
  1332. "fileId": "20UBeAYdFNNpSgV6heXTDU",
  1333. "mountedChildren": [],
  1334. "mountedComponents": [],
  1335. "propertyOverrides": [
  1336. {
  1337. "__id__": 89
  1338. },
  1339. {
  1340. "__id__": 91
  1341. },
  1342. {
  1343. "__id__": 92
  1344. },
  1345. {
  1346. "__id__": 93
  1347. }
  1348. ],
  1349. "removedComponents": []
  1350. },
  1351. {
  1352. "__type__": "CCPropertyOverrideInfo",
  1353. "targetInfo": {
  1354. "__id__": 90
  1355. },
  1356. "propertyPath": [
  1357. "_name"
  1358. ],
  1359. "value": "界面层"
  1360. },
  1361. {
  1362. "__type__": "cc.TargetInfo",
  1363. "localID": [
  1364. "c7zRIqKG5KuasDj+kz6S9o"
  1365. ]
  1366. },
  1367. {
  1368. "__type__": "CCPropertyOverrideInfo",
  1369. "targetInfo": {
  1370. "__id__": 90
  1371. },
  1372. "propertyPath": [
  1373. "_lpos"
  1374. ],
  1375. "value": {
  1376. "__type__": "cc.Vec3",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0
  1380. }
  1381. },
  1382. {
  1383. "__type__": "CCPropertyOverrideInfo",
  1384. "targetInfo": {
  1385. "__id__": 90
  1386. },
  1387. "propertyPath": [
  1388. "_lrot"
  1389. ],
  1390. "value": {
  1391. "__type__": "cc.Quat",
  1392. "x": 0,
  1393. "y": 0,
  1394. "z": 0,
  1395. "w": 1
  1396. }
  1397. },
  1398. {
  1399. "__type__": "CCPropertyOverrideInfo",
  1400. "targetInfo": {
  1401. "__id__": 90
  1402. },
  1403. "propertyPath": [
  1404. "_active"
  1405. ],
  1406. "value": false
  1407. },
  1408. {
  1409. "__type__": "cc.Node",
  1410. "_name": "数据拉取",
  1411. "_objFlags": 0,
  1412. "_parent": {
  1413. "__id__": 2
  1414. },
  1415. "_children": [],
  1416. "_active": true,
  1417. "_components": [
  1418. {
  1419. "__id__": 95
  1420. },
  1421. {
  1422. "__id__": 96
  1423. },
  1424. {
  1425. "__id__": 97
  1426. }
  1427. ],
  1428. "_prefab": null,
  1429. "_lpos": {
  1430. "__type__": "cc.Vec3",
  1431. "x": 0,
  1432. "y": 0,
  1433. "z": 0
  1434. },
  1435. "_lrot": {
  1436. "__type__": "cc.Quat",
  1437. "x": 0,
  1438. "y": 0,
  1439. "z": 0,
  1440. "w": 1
  1441. },
  1442. "_lscale": {
  1443. "__type__": "cc.Vec3",
  1444. "x": 1,
  1445. "y": 1,
  1446. "z": 1
  1447. },
  1448. "_layer": 33554432,
  1449. "_euler": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 0,
  1452. "y": 0,
  1453. "z": 0
  1454. },
  1455. "_id": "0ahAe+4fZGq48+F+rOoz4z"
  1456. },
  1457. {
  1458. "__type__": "cc.UITransform",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "node": {
  1462. "__id__": 94
  1463. },
  1464. "_enabled": true,
  1465. "__prefab": null,
  1466. "_contentSize": {
  1467. "__type__": "cc.Size",
  1468. "width": 100,
  1469. "height": 100
  1470. },
  1471. "_anchorPoint": {
  1472. "__type__": "cc.Vec2",
  1473. "x": 0.5,
  1474. "y": 0.5
  1475. },
  1476. "_id": "51g+0cEctNPpmo07jT0inL"
  1477. },
  1478. {
  1479. "__type__": "fcf29bmHThDzZf/lzYNo409",
  1480. "_name": "",
  1481. "_objFlags": 0,
  1482. "node": {
  1483. "__id__": 94
  1484. },
  1485. "_enabled": true,
  1486. "__prefab": null,
  1487. "hostAlias": "",
  1488. "withCredentials": false,
  1489. "timeout": 0,
  1490. "responseType": 3,
  1491. "onProgress": [],
  1492. "useEncrypt": true,
  1493. "useLog": true,
  1494. "_id": "15tmIOBB9AgYeLIx8tEqHi"
  1495. },
  1496. {
  1497. "__type__": "ee2f0BBF6FHi6ysl5vfi1oq",
  1498. "_name": "",
  1499. "_objFlags": 0,
  1500. "node": {
  1501. "__id__": 94
  1502. },
  1503. "_enabled": true,
  1504. "__prefab": null,
  1505. "mainUI": {
  1506. "__id__": 86
  1507. },
  1508. "spineList": [],
  1509. "_id": "c1VFl1wFlKtLtZXfaIJv7q"
  1510. },
  1511. {
  1512. "__type__": "cc.Node",
  1513. "_name": "统帅技能",
  1514. "_objFlags": 0,
  1515. "_parent": {
  1516. "__id__": 2
  1517. },
  1518. "_children": [],
  1519. "_active": true,
  1520. "_components": [
  1521. {
  1522. "__id__": 99
  1523. },
  1524. {
  1525. "__id__": 100
  1526. }
  1527. ],
  1528. "_prefab": null,
  1529. "_lpos": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0
  1534. },
  1535. "_lrot": {
  1536. "__type__": "cc.Quat",
  1537. "x": 0,
  1538. "y": 0,
  1539. "z": 0,
  1540. "w": 1
  1541. },
  1542. "_lscale": {
  1543. "__type__": "cc.Vec3",
  1544. "x": 1,
  1545. "y": 1,
  1546. "z": 1
  1547. },
  1548. "_layer": 1073741824,
  1549. "_euler": {
  1550. "__type__": "cc.Vec3",
  1551. "x": 0,
  1552. "y": 0,
  1553. "z": 0
  1554. },
  1555. "_id": "feATvrQipLj4a0H+8Z36V2"
  1556. },
  1557. {
  1558. "__type__": "cc.UITransform",
  1559. "_name": "",
  1560. "_objFlags": 0,
  1561. "node": {
  1562. "__id__": 98
  1563. },
  1564. "_enabled": true,
  1565. "__prefab": null,
  1566. "_contentSize": {
  1567. "__type__": "cc.Size",
  1568. "width": 100,
  1569. "height": 100
  1570. },
  1571. "_anchorPoint": {
  1572. "__type__": "cc.Vec2",
  1573. "x": 0.5,
  1574. "y": 0.5
  1575. },
  1576. "_id": "8b/3P3QIVN5IlGurvnmsLd"
  1577. },
  1578. {
  1579. "__type__": "0bc57B5cN5Kd5FBwL9BSWIq",
  1580. "_name": "",
  1581. "_objFlags": 0,
  1582. "node": {
  1583. "__id__": 98
  1584. },
  1585. "_enabled": true,
  1586. "__prefab": null,
  1587. "_id": "b8XQQv1uZAp5I9/suvJOZO"
  1588. },
  1589. {
  1590. "__type__": "cc.Node",
  1591. "_name": "gm命令输入框",
  1592. "_objFlags": 0,
  1593. "_parent": {
  1594. "__id__": 2
  1595. },
  1596. "_children": [
  1597. {
  1598. "__id__": 102
  1599. },
  1600. {
  1601. "__id__": 107
  1602. }
  1603. ],
  1604. "_active": true,
  1605. "_components": [
  1606. {
  1607. "__id__": 112
  1608. },
  1609. {
  1610. "__id__": 114
  1611. },
  1612. {
  1613. "__id__": 116
  1614. },
  1615. {
  1616. "__id__": 119
  1617. }
  1618. ],
  1619. "_prefab": null,
  1620. "_lpos": {
  1621. "__type__": "cc.Vec3",
  1622. "x": -271.407,
  1623. "y": 512.917,
  1624. "z": 0
  1625. },
  1626. "_lrot": {
  1627. "__type__": "cc.Quat",
  1628. "x": 0,
  1629. "y": 0,
  1630. "z": 0,
  1631. "w": 1
  1632. },
  1633. "_lscale": {
  1634. "__type__": "cc.Vec3",
  1635. "x": 1,
  1636. "y": 1,
  1637. "z": 1
  1638. },
  1639. "_layer": 33554432,
  1640. "_euler": {
  1641. "__type__": "cc.Vec3",
  1642. "x": 0,
  1643. "y": 0,
  1644. "z": 0
  1645. },
  1646. "_id": "ea6r7BZ11DYo/zvGhoAVjA"
  1647. },
  1648. {
  1649. "__type__": "cc.Node",
  1650. "_name": "TEXT_LABEL",
  1651. "_objFlags": 0,
  1652. "_parent": {
  1653. "__id__": 101
  1654. },
  1655. "_children": [],
  1656. "_active": false,
  1657. "_components": [
  1658. {
  1659. "__id__": 103
  1660. },
  1661. {
  1662. "__id__": 105
  1663. }
  1664. ],
  1665. "_prefab": null,
  1666. "_lpos": {
  1667. "__type__": "cc.Vec3",
  1668. "x": -98,
  1669. "y": 20,
  1670. "z": 0
  1671. },
  1672. "_lrot": {
  1673. "__type__": "cc.Quat",
  1674. "x": 0,
  1675. "y": 0,
  1676. "z": 0,
  1677. "w": 1
  1678. },
  1679. "_lscale": {
  1680. "__type__": "cc.Vec3",
  1681. "x": 1,
  1682. "y": 1,
  1683. "z": 1
  1684. },
  1685. "_layer": 33554432,
  1686. "_euler": {
  1687. "__type__": "cc.Vec3",
  1688. "x": 0,
  1689. "y": 0,
  1690. "z": 0
  1691. },
  1692. "_id": "e2Wai1W6FD3KpD8MbJilSd"
  1693. },
  1694. {
  1695. "__type__": "cc.UITransform",
  1696. "_name": "",
  1697. "_objFlags": 0,
  1698. "node": {
  1699. "__id__": 102
  1700. },
  1701. "_enabled": true,
  1702. "__prefab": {
  1703. "__id__": 104
  1704. },
  1705. "_contentSize": {
  1706. "__type__": "cc.Size",
  1707. "width": 198,
  1708. "height": 40
  1709. },
  1710. "_anchorPoint": {
  1711. "__type__": "cc.Vec2",
  1712. "x": 0,
  1713. "y": 1
  1714. },
  1715. "_id": "3elnymfF9EF7OowUMA1vKO"
  1716. },
  1717. {
  1718. "__type__": "cc.CompPrefabInfo",
  1719. "fileId": "779kAXGTtMZKXfYlOg0Tfd"
  1720. },
  1721. {
  1722. "__type__": "cc.Label",
  1723. "_name": "",
  1724. "_objFlags": 0,
  1725. "node": {
  1726. "__id__": 102
  1727. },
  1728. "_enabled": true,
  1729. "__prefab": {
  1730. "__id__": 106
  1731. },
  1732. "_visFlags": 0,
  1733. "_customMaterial": null,
  1734. "_srcBlendFactor": 2,
  1735. "_dstBlendFactor": 4,
  1736. "_color": {
  1737. "__type__": "cc.Color",
  1738. "r": 255,
  1739. "g": 255,
  1740. "b": 255,
  1741. "a": 255
  1742. },
  1743. "_string": "",
  1744. "_horizontalAlign": 0,
  1745. "_verticalAlign": 1,
  1746. "_actualFontSize": 22,
  1747. "_fontSize": 22,
  1748. "_fontFamily": "Arial",
  1749. "_lineHeight": 40,
  1750. "_overflow": 1,
  1751. "_enableWrapText": false,
  1752. "_font": null,
  1753. "_isSystemFontUsed": true,
  1754. "_isItalic": false,
  1755. "_isBold": false,
  1756. "_isUnderline": false,
  1757. "_underlineHeight": 2,
  1758. "_cacheMode": 0,
  1759. "_id": "0ejAUwIN9MAIKAVr48DjQd"
  1760. },
  1761. {
  1762. "__type__": "cc.CompPrefabInfo",
  1763. "fileId": "ddIY+NJvlDTIQAg7PLVrGo"
  1764. },
  1765. {
  1766. "__type__": "cc.Node",
  1767. "_name": "PLACEHOLDER_LABEL",
  1768. "_objFlags": 0,
  1769. "_parent": {
  1770. "__id__": 101
  1771. },
  1772. "_children": [],
  1773. "_active": true,
  1774. "_components": [
  1775. {
  1776. "__id__": 108
  1777. },
  1778. {
  1779. "__id__": 110
  1780. }
  1781. ],
  1782. "_prefab": null,
  1783. "_lpos": {
  1784. "__type__": "cc.Vec3",
  1785. "x": -98,
  1786. "y": 20,
  1787. "z": 0
  1788. },
  1789. "_lrot": {
  1790. "__type__": "cc.Quat",
  1791. "x": 0,
  1792. "y": 0,
  1793. "z": 0,
  1794. "w": 1
  1795. },
  1796. "_lscale": {
  1797. "__type__": "cc.Vec3",
  1798. "x": 1,
  1799. "y": 1,
  1800. "z": 1
  1801. },
  1802. "_layer": 33554432,
  1803. "_euler": {
  1804. "__type__": "cc.Vec3",
  1805. "x": 0,
  1806. "y": 0,
  1807. "z": 0
  1808. },
  1809. "_id": "72SN4A0U9EQIFx8cDyTrW+"
  1810. },
  1811. {
  1812. "__type__": "cc.UITransform",
  1813. "_name": "",
  1814. "_objFlags": 0,
  1815. "node": {
  1816. "__id__": 107
  1817. },
  1818. "_enabled": true,
  1819. "__prefab": {
  1820. "__id__": 109
  1821. },
  1822. "_contentSize": {
  1823. "__type__": "cc.Size",
  1824. "width": 198,
  1825. "height": 40
  1826. },
  1827. "_anchorPoint": {
  1828. "__type__": "cc.Vec2",
  1829. "x": 0,
  1830. "y": 1
  1831. },
  1832. "_id": "00o143fjZME4bkFi3v+GYt"
  1833. },
  1834. {
  1835. "__type__": "cc.CompPrefabInfo",
  1836. "fileId": "d07wQj4whCUqYGJH1lEpVp"
  1837. },
  1838. {
  1839. "__type__": "cc.Label",
  1840. "_name": "",
  1841. "_objFlags": 0,
  1842. "node": {
  1843. "__id__": 107
  1844. },
  1845. "_enabled": true,
  1846. "__prefab": {
  1847. "__id__": 111
  1848. },
  1849. "_visFlags": 0,
  1850. "_customMaterial": null,
  1851. "_srcBlendFactor": 2,
  1852. "_dstBlendFactor": 4,
  1853. "_color": {
  1854. "__type__": "cc.Color",
  1855. "r": 201,
  1856. "g": 199,
  1857. "b": 199,
  1858. "a": 255
  1859. },
  1860. "_string": "输入命令",
  1861. "_horizontalAlign": 0,
  1862. "_verticalAlign": 1,
  1863. "_actualFontSize": 22,
  1864. "_fontSize": 22,
  1865. "_fontFamily": "Arial",
  1866. "_lineHeight": 40,
  1867. "_overflow": 1,
  1868. "_enableWrapText": false,
  1869. "_font": null,
  1870. "_isSystemFontUsed": true,
  1871. "_isItalic": false,
  1872. "_isBold": false,
  1873. "_isUnderline": false,
  1874. "_underlineHeight": 2,
  1875. "_cacheMode": 0,
  1876. "_id": "a9Fh4/ftdBzJtUuGlf03wy"
  1877. },
  1878. {
  1879. "__type__": "cc.CompPrefabInfo",
  1880. "fileId": "8fhi7qRLFJbK0abIJuXmCW"
  1881. },
  1882. {
  1883. "__type__": "cc.UITransform",
  1884. "_name": "",
  1885. "_objFlags": 0,
  1886. "node": {
  1887. "__id__": 101
  1888. },
  1889. "_enabled": true,
  1890. "__prefab": {
  1891. "__id__": 113
  1892. },
  1893. "_contentSize": {
  1894. "__type__": "cc.Size",
  1895. "width": 200,
  1896. "height": 40
  1897. },
  1898. "_anchorPoint": {
  1899. "__type__": "cc.Vec2",
  1900. "x": 0.5,
  1901. "y": 0.5
  1902. },
  1903. "_id": "e0LL3X3LlIX6yVgL6Pla3V"
  1904. },
  1905. {
  1906. "__type__": "cc.CompPrefabInfo",
  1907. "fileId": "1fhJOVuOVAGYSYZoiE25Uz"
  1908. },
  1909. {
  1910. "__type__": "cc.Sprite",
  1911. "_name": "",
  1912. "_objFlags": 0,
  1913. "node": {
  1914. "__id__": 101
  1915. },
  1916. "_enabled": true,
  1917. "__prefab": {
  1918. "__id__": 115
  1919. },
  1920. "_visFlags": 0,
  1921. "_customMaterial": null,
  1922. "_srcBlendFactor": 2,
  1923. "_dstBlendFactor": 4,
  1924. "_color": {
  1925. "__type__": "cc.Color",
  1926. "r": 255,
  1927. "g": 255,
  1928. "b": 255,
  1929. "a": 255
  1930. },
  1931. "_spriteFrame": {
  1932. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  1933. "__expectedType__": "cc.SpriteFrame"
  1934. },
  1935. "_type": 1,
  1936. "_fillType": 0,
  1937. "_sizeMode": 0,
  1938. "_fillCenter": {
  1939. "__type__": "cc.Vec2",
  1940. "x": 0,
  1941. "y": 0
  1942. },
  1943. "_fillStart": 0,
  1944. "_fillRange": 0,
  1945. "_isTrimmedMode": true,
  1946. "_useGrayscale": false,
  1947. "_atlas": null,
  1948. "_id": "547VEW+A5F35+DRaDRx4TS"
  1949. },
  1950. {
  1951. "__type__": "cc.CompPrefabInfo",
  1952. "fileId": "43qH95z3VGeYelCElKd6FW"
  1953. },
  1954. {
  1955. "__type__": "cc.EditBox",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "node": {
  1959. "__id__": 101
  1960. },
  1961. "_enabled": true,
  1962. "__prefab": {
  1963. "__id__": 117
  1964. },
  1965. "editingDidBegan": [],
  1966. "textChanged": [],
  1967. "editingDidEnded": [],
  1968. "editingReturn": [
  1969. {
  1970. "__id__": 118
  1971. }
  1972. ],
  1973. "_textLabel": {
  1974. "__id__": 105
  1975. },
  1976. "_placeholderLabel": {
  1977. "__id__": 110
  1978. },
  1979. "_returnType": 0,
  1980. "_string": "",
  1981. "_tabIndex": 0,
  1982. "_backgroundImage": {
  1983. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  1984. "__expectedType__": "cc.SpriteFrame"
  1985. },
  1986. "_inputFlag": 5,
  1987. "_inputMode": 6,
  1988. "_maxLength": 100,
  1989. "_id": "14BAX1B59Pd4nLqPUPvedz"
  1990. },
  1991. {
  1992. "__type__": "cc.CompPrefabInfo",
  1993. "fileId": "1bCHrwPGZOPrbmPh93kwpe"
  1994. },
  1995. {
  1996. "__type__": "cc.ClickEvent",
  1997. "target": {
  1998. "__id__": 101
  1999. },
  2000. "component": "",
  2001. "_componentId": "4a579w4GNJDZrkHfY201iK2",
  2002. "handler": "onOk",
  2003. "customEventData": ""
  2004. },
  2005. {
  2006. "__type__": "4a579w4GNJDZrkHfY201iK2",
  2007. "_name": "",
  2008. "_objFlags": 0,
  2009. "node": {
  2010. "__id__": 101
  2011. },
  2012. "_enabled": true,
  2013. "__prefab": null,
  2014. "_id": "f3RligxRBOWqhU09EOffRW"
  2015. },
  2016. {
  2017. "__type__": "cc.Node",
  2018. "_name": "弹窗",
  2019. "_objFlags": 0,
  2020. "_parent": {
  2021. "__id__": 2
  2022. },
  2023. "_children": [],
  2024. "_active": true,
  2025. "_components": [
  2026. {
  2027. "__id__": 121
  2028. },
  2029. {
  2030. "__id__": 122
  2031. }
  2032. ],
  2033. "_prefab": null,
  2034. "_lpos": {
  2035. "__type__": "cc.Vec3",
  2036. "x": 0,
  2037. "y": 0,
  2038. "z": 0
  2039. },
  2040. "_lrot": {
  2041. "__type__": "cc.Quat",
  2042. "x": 0,
  2043. "y": 0,
  2044. "z": 0,
  2045. "w": 1
  2046. },
  2047. "_lscale": {
  2048. "__type__": "cc.Vec3",
  2049. "x": 1,
  2050. "y": 1,
  2051. "z": 1
  2052. },
  2053. "_layer": 1073741824,
  2054. "_euler": {
  2055. "__type__": "cc.Vec3",
  2056. "x": 0,
  2057. "y": 0,
  2058. "z": 0
  2059. },
  2060. "_id": "60f7NjKpxEY6MxbT7VXtSr"
  2061. },
  2062. {
  2063. "__type__": "cc.UITransform",
  2064. "_name": "",
  2065. "_objFlags": 0,
  2066. "node": {
  2067. "__id__": 120
  2068. },
  2069. "_enabled": true,
  2070. "__prefab": null,
  2071. "_contentSize": {
  2072. "__type__": "cc.Size",
  2073. "width": 750,
  2074. "height": 1334
  2075. },
  2076. "_anchorPoint": {
  2077. "__type__": "cc.Vec2",
  2078. "x": 0.5,
  2079. "y": 0.5
  2080. },
  2081. "_id": "c1LZaaREtNZJ7bQZb4Truh"
  2082. },
  2083. {
  2084. "__type__": "cc.Widget",
  2085. "_name": "",
  2086. "_objFlags": 0,
  2087. "node": {
  2088. "__id__": 120
  2089. },
  2090. "_enabled": true,
  2091. "__prefab": null,
  2092. "_alignFlags": 45,
  2093. "_target": null,
  2094. "_left": 0,
  2095. "_right": 0,
  2096. "_top": 0,
  2097. "_bottom": 0,
  2098. "_horizontalCenter": 0,
  2099. "_verticalCenter": 0,
  2100. "_isAbsLeft": true,
  2101. "_isAbsRight": true,
  2102. "_isAbsTop": true,
  2103. "_isAbsBottom": true,
  2104. "_isAbsHorizontalCenter": true,
  2105. "_isAbsVerticalCenter": true,
  2106. "_originalWidth": 100,
  2107. "_originalHeight": 100,
  2108. "_alignMode": 2,
  2109. "_lockFlags": 0,
  2110. "_id": "e7Aya+vAJINoh6mRi4iro6"
  2111. },
  2112. {
  2113. "__type__": "cc.Node",
  2114. "_objFlags": 0,
  2115. "_parent": {
  2116. "__id__": 2
  2117. },
  2118. "_prefab": {
  2119. "__id__": 124
  2120. },
  2121. "_id": "3fErcDE29OHaOYHLTlVQKe"
  2122. },
  2123. {
  2124. "__type__": "cc.PrefabInfo",
  2125. "root": {
  2126. "__id__": 123
  2127. },
  2128. "asset": {
  2129. "__uuid__": "479d5cf8-5d67-411d-b051-05ab9dfc8c9e",
  2130. "__expectedType__": "cc.Prefab"
  2131. },
  2132. "fileId": "3c1fHPhu5CuZPWy4IHZxE+",
  2133. "instance": {
  2134. "__id__": 125
  2135. }
  2136. },
  2137. {
  2138. "__type__": "cc.PrefabInstance",
  2139. "fileId": "17Hgm2FklLDofl11I0kC0i",
  2140. "mountedChildren": [],
  2141. "mountedComponents": [],
  2142. "propertyOverrides": [
  2143. {
  2144. "__id__": 126
  2145. },
  2146. {
  2147. "__id__": 128
  2148. },
  2149. {
  2150. "__id__": 129
  2151. }
  2152. ],
  2153. "removedComponents": []
  2154. },
  2155. {
  2156. "__type__": "CCPropertyOverrideInfo",
  2157. "targetInfo": {
  2158. "__id__": 127
  2159. },
  2160. "propertyPath": [
  2161. "_name"
  2162. ],
  2163. "value": "新手引导"
  2164. },
  2165. {
  2166. "__type__": "cc.TargetInfo",
  2167. "localID": [
  2168. "3c1fHPhu5CuZPWy4IHZxE+"
  2169. ]
  2170. },
  2171. {
  2172. "__type__": "CCPropertyOverrideInfo",
  2173. "targetInfo": {
  2174. "__id__": 127
  2175. },
  2176. "propertyPath": [
  2177. "_lpos"
  2178. ],
  2179. "value": {
  2180. "__type__": "cc.Vec3",
  2181. "x": 0,
  2182. "y": 0,
  2183. "z": 0
  2184. }
  2185. },
  2186. {
  2187. "__type__": "CCPropertyOverrideInfo",
  2188. "targetInfo": {
  2189. "__id__": 127
  2190. },
  2191. "propertyPath": [
  2192. "_lrot"
  2193. ],
  2194. "value": {
  2195. "__type__": "cc.Quat",
  2196. "x": 0,
  2197. "y": 0,
  2198. "z": 0,
  2199. "w": 1
  2200. }
  2201. },
  2202. {
  2203. "__type__": "cc.UITransform",
  2204. "_name": "",
  2205. "_objFlags": 0,
  2206. "node": {
  2207. "__id__": 2
  2208. },
  2209. "_enabled": true,
  2210. "__prefab": {
  2211. "__id__": 131
  2212. },
  2213. "_contentSize": {
  2214. "__type__": "cc.Size",
  2215. "width": 750,
  2216. "height": 1334
  2217. },
  2218. "_anchorPoint": {
  2219. "__type__": "cc.Vec2",
  2220. "x": 0.5,
  2221. "y": 0.5
  2222. },
  2223. "_id": "f79M3nkh9MLJkJ6y0F5tLz"
  2224. },
  2225. {
  2226. "__type__": "cc.CompPrefabInfo",
  2227. "fileId": "0dngp/9gNO34wUQjZfN/CX"
  2228. },
  2229. {
  2230. "__type__": "cc.Canvas",
  2231. "_name": "",
  2232. "_objFlags": 0,
  2233. "node": {
  2234. "__id__": 2
  2235. },
  2236. "_enabled": true,
  2237. "__prefab": {
  2238. "__id__": 133
  2239. },
  2240. "_cameraComponent": {
  2241. "__id__": 4
  2242. },
  2243. "_alignCanvasWithScreen": true,
  2244. "_id": "265qkao6VBrZkrRKHeVEGw"
  2245. },
  2246. {
  2247. "__type__": "cc.CompPrefabInfo",
  2248. "fileId": "3f2oTdCepERZdpmIfLsrhd"
  2249. },
  2250. {
  2251. "__type__": "cc.Widget",
  2252. "_name": "",
  2253. "_objFlags": 0,
  2254. "node": {
  2255. "__id__": 2
  2256. },
  2257. "_enabled": true,
  2258. "__prefab": {
  2259. "__id__": 135
  2260. },
  2261. "_alignFlags": 45,
  2262. "_target": null,
  2263. "_left": 0,
  2264. "_right": 0,
  2265. "_top": 0,
  2266. "_bottom": 0,
  2267. "_horizontalCenter": 0,
  2268. "_verticalCenter": 0,
  2269. "_isAbsLeft": true,
  2270. "_isAbsRight": true,
  2271. "_isAbsTop": true,
  2272. "_isAbsBottom": true,
  2273. "_isAbsHorizontalCenter": true,
  2274. "_isAbsVerticalCenter": true,
  2275. "_originalWidth": 0,
  2276. "_originalHeight": 0,
  2277. "_alignMode": 2,
  2278. "_lockFlags": 0,
  2279. "_id": "83lKTXYMtIOpgJEymm+bob"
  2280. },
  2281. {
  2282. "__type__": "cc.CompPrefabInfo",
  2283. "fileId": "e8a+bU/8dPDbbJguUzLdoF"
  2284. },
  2285. {
  2286. "__type__": "cc.SceneGlobals",
  2287. "ambient": {
  2288. "__id__": 137
  2289. },
  2290. "shadows": {
  2291. "__id__": 138
  2292. },
  2293. "_skybox": {
  2294. "__id__": 139
  2295. },
  2296. "fog": {
  2297. "__id__": 140
  2298. }
  2299. },
  2300. {
  2301. "__type__": "cc.AmbientInfo",
  2302. "_skyColor": {
  2303. "__type__": "cc.Color",
  2304. "r": 51,
  2305. "g": 128,
  2306. "b": 204,
  2307. "a": 1
  2308. },
  2309. "_skyIllum": 20000,
  2310. "_groundAlbedo": {
  2311. "__type__": "cc.Color",
  2312. "r": 51,
  2313. "g": 51,
  2314. "b": 51,
  2315. "a": 255
  2316. }
  2317. },
  2318. {
  2319. "__type__": "cc.ShadowsInfo",
  2320. "_type": 0,
  2321. "_enabled": false,
  2322. "_normal": {
  2323. "__type__": "cc.Vec3",
  2324. "x": 0,
  2325. "y": 1,
  2326. "z": 0
  2327. },
  2328. "_distance": 0,
  2329. "_shadowColor": {
  2330. "__type__": "cc.Color",
  2331. "r": 76,
  2332. "g": 76,
  2333. "b": 76,
  2334. "a": 255
  2335. },
  2336. "_autoAdapt": true,
  2337. "_pcf": 0,
  2338. "_bias": 0.00001,
  2339. "_packing": false,
  2340. "_linear": true,
  2341. "_selfShadow": false,
  2342. "_normalBias": 0,
  2343. "_near": 1,
  2344. "_far": 30,
  2345. "_aspect": 1,
  2346. "_orthoSize": 5,
  2347. "_maxReceived": 4,
  2348. "_size": {
  2349. "__type__": "cc.Vec2",
  2350. "x": 512,
  2351. "y": 512
  2352. }
  2353. },
  2354. {
  2355. "__type__": "cc.SkyboxInfo",
  2356. "_envmap": null,
  2357. "_isRGBE": false,
  2358. "_enabled": false,
  2359. "_useIBL": false
  2360. },
  2361. {
  2362. "__type__": "cc.FogInfo",
  2363. "_type": 0,
  2364. "_fogColor": {
  2365. "__type__": "cc.Color",
  2366. "r": 200,
  2367. "g": 200,
  2368. "b": 200,
  2369. "a": 255
  2370. },
  2371. "_enabled": false,
  2372. "_fogDensity": 0.3,
  2373. "_fogStart": 0.5,
  2374. "_fogEnd": 300,
  2375. "_fogAtten": 5,
  2376. "_fogTop": 1.5,
  2377. "_fogRange": 1.2
  2378. }
  2379. ]