Game.scene 44 KB

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