34f65195-aa9a-4638-bf0f-d5eda721ea76.json 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "Win",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "Win",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 16
  29. },
  30. {
  31. "__id__": 22
  32. },
  33. {
  34. "__id__": 52
  35. }
  36. ],
  37. "_active": true,
  38. "_components": [
  39. {
  40. "__id__": 90
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 92
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "Mask",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 3
  88. },
  89. {
  90. "__id__": 5
  91. },
  92. {
  93. "__id__": 7
  94. }
  95. ],
  96. "_prefab": {
  97. "__id__": 9
  98. },
  99. "_lpos": {
  100. "__type__": "cc.Vec3",
  101. "x": 0,
  102. "y": 0,
  103. "z": 0
  104. },
  105. "_lrot": {
  106. "__type__": "cc.Quat",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0,
  110. "w": 1
  111. },
  112. "_lscale": {
  113. "__type__": "cc.Vec3",
  114. "x": 1,
  115. "y": 1,
  116. "z": 1
  117. },
  118. "_mobility": 0,
  119. "_layer": 33554432,
  120. "_euler": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_id": ""
  127. },
  128. {
  129. "__type__": "cc.UITransform",
  130. "_name": "",
  131. "_objFlags": 0,
  132. "__editorExtras__": {},
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "__prefab": {
  138. "__id__": 4
  139. },
  140. "_contentSize": {
  141. "__type__": "cc.Size",
  142. "width": 750,
  143. "height": 1632
  144. },
  145. "_anchorPoint": {
  146. "__type__": "cc.Vec2",
  147. "x": 0.5,
  148. "y": 0.5
  149. },
  150. "_id": ""
  151. },
  152. {
  153. "__type__": "cc.CompPrefabInfo",
  154. "fileId": "193oagVDBKl6FcWKffdhOB"
  155. },
  156. {
  157. "__type__": "cc.Sprite",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "__editorExtras__": {},
  161. "node": {
  162. "__id__": 2
  163. },
  164. "_enabled": true,
  165. "__prefab": {
  166. "__id__": 6
  167. },
  168. "_customMaterial": null,
  169. "_srcBlendFactor": 2,
  170. "_dstBlendFactor": 4,
  171. "_color": {
  172. "__type__": "cc.Color",
  173. "r": 255,
  174. "g": 255,
  175. "b": 255,
  176. "a": 255
  177. },
  178. "_spriteFrame": {
  179. "__uuid__": "5cad1374-0d9d-415c-b3dc-fc9c432c8bfe@f9941",
  180. "__expectedType__": "cc.SpriteFrame"
  181. },
  182. "_type": 0,
  183. "_fillType": 0,
  184. "_sizeMode": 1,
  185. "_fillCenter": {
  186. "__type__": "cc.Vec2",
  187. "x": 0,
  188. "y": 0
  189. },
  190. "_fillStart": 0,
  191. "_fillRange": 0,
  192. "_isTrimmedMode": true,
  193. "_useGrayscale": false,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.CompPrefabInfo",
  199. "fileId": "59nSCZI4pCXJAnB/XvXiTo"
  200. },
  201. {
  202. "__type__": "cc.BlockInputEvents",
  203. "_name": "",
  204. "_objFlags": 0,
  205. "__editorExtras__": {},
  206. "node": {
  207. "__id__": 2
  208. },
  209. "_enabled": true,
  210. "__prefab": {
  211. "__id__": 8
  212. },
  213. "_id": ""
  214. },
  215. {
  216. "__type__": "cc.CompPrefabInfo",
  217. "fileId": "ee2+zCKH1PUp71WbFxTI1C"
  218. },
  219. {
  220. "__type__": "cc.PrefabInfo",
  221. "root": {
  222. "__id__": 1
  223. },
  224. "asset": {
  225. "__id__": 0
  226. },
  227. "fileId": "85v3f0k21Igb40SFarCmMU",
  228. "instance": null,
  229. "targetOverrides": null,
  230. "nestedPrefabInstanceRoots": null
  231. },
  232. {
  233. "__type__": "cc.Node",
  234. "_name": "Title",
  235. "_objFlags": 0,
  236. "__editorExtras__": {},
  237. "_parent": {
  238. "__id__": 1
  239. },
  240. "_children": [],
  241. "_active": true,
  242. "_components": [
  243. {
  244. "__id__": 11
  245. },
  246. {
  247. "__id__": 13
  248. }
  249. ],
  250. "_prefab": {
  251. "__id__": 15
  252. },
  253. "_lpos": {
  254. "__type__": "cc.Vec3",
  255. "x": 0,
  256. "y": 492.6569999999999,
  257. "z": 0
  258. },
  259. "_lrot": {
  260. "__type__": "cc.Quat",
  261. "x": 0,
  262. "y": 0,
  263. "z": 0,
  264. "w": 1
  265. },
  266. "_lscale": {
  267. "__type__": "cc.Vec3",
  268. "x": 1,
  269. "y": 1,
  270. "z": 1
  271. },
  272. "_mobility": 0,
  273. "_layer": 33554432,
  274. "_euler": {
  275. "__type__": "cc.Vec3",
  276. "x": 0,
  277. "y": 0,
  278. "z": 0
  279. },
  280. "_id": ""
  281. },
  282. {
  283. "__type__": "cc.UITransform",
  284. "_name": "",
  285. "_objFlags": 0,
  286. "__editorExtras__": {},
  287. "node": {
  288. "__id__": 10
  289. },
  290. "_enabled": true,
  291. "__prefab": {
  292. "__id__": 12
  293. },
  294. "_contentSize": {
  295. "__type__": "cc.Size",
  296. "width": 407,
  297. "height": 72
  298. },
  299. "_anchorPoint": {
  300. "__type__": "cc.Vec2",
  301. "x": 0.5,
  302. "y": 0.5
  303. },
  304. "_id": ""
  305. },
  306. {
  307. "__type__": "cc.CompPrefabInfo",
  308. "fileId": "caFmbK/zVHuLUgciEjbN2A"
  309. },
  310. {
  311. "__type__": "cc.Sprite",
  312. "_name": "",
  313. "_objFlags": 0,
  314. "__editorExtras__": {},
  315. "node": {
  316. "__id__": 10
  317. },
  318. "_enabled": true,
  319. "__prefab": {
  320. "__id__": 14
  321. },
  322. "_customMaterial": null,
  323. "_srcBlendFactor": 2,
  324. "_dstBlendFactor": 4,
  325. "_color": {
  326. "__type__": "cc.Color",
  327. "r": 255,
  328. "g": 255,
  329. "b": 255,
  330. "a": 255
  331. },
  332. "_spriteFrame": {
  333. "__uuid__": "de953421-f038-471b-825f-aaac14f2ac75@f9941",
  334. "__expectedType__": "cc.SpriteFrame"
  335. },
  336. "_type": 0,
  337. "_fillType": 0,
  338. "_sizeMode": 1,
  339. "_fillCenter": {
  340. "__type__": "cc.Vec2",
  341. "x": 0,
  342. "y": 0
  343. },
  344. "_fillStart": 0,
  345. "_fillRange": 0,
  346. "_isTrimmedMode": true,
  347. "_useGrayscale": false,
  348. "_atlas": null,
  349. "_id": ""
  350. },
  351. {
  352. "__type__": "cc.CompPrefabInfo",
  353. "fileId": "488lJHFglJt5kGk70CPHes"
  354. },
  355. {
  356. "__type__": "cc.PrefabInfo",
  357. "root": {
  358. "__id__": 1
  359. },
  360. "asset": {
  361. "__id__": 0
  362. },
  363. "fileId": "4cwhZiYohKl4oGOwjSqwh/",
  364. "instance": null,
  365. "targetOverrides": null,
  366. "nestedPrefabInstanceRoots": null
  367. },
  368. {
  369. "__type__": "cc.Node",
  370. "_name": "Logo",
  371. "_objFlags": 0,
  372. "__editorExtras__": {},
  373. "_parent": {
  374. "__id__": 1
  375. },
  376. "_children": [],
  377. "_active": true,
  378. "_components": [
  379. {
  380. "__id__": 17
  381. },
  382. {
  383. "__id__": 19
  384. }
  385. ],
  386. "_prefab": {
  387. "__id__": 21
  388. },
  389. "_lpos": {
  390. "__type__": "cc.Vec3",
  391. "x": 0,
  392. "y": 197.89599999999996,
  393. "z": 0
  394. },
  395. "_lrot": {
  396. "__type__": "cc.Quat",
  397. "x": 0,
  398. "y": 0,
  399. "z": 0,
  400. "w": 1
  401. },
  402. "_lscale": {
  403. "__type__": "cc.Vec3",
  404. "x": 1,
  405. "y": 1,
  406. "z": 1
  407. },
  408. "_mobility": 0,
  409. "_layer": 33554432,
  410. "_euler": {
  411. "__type__": "cc.Vec3",
  412. "x": 0,
  413. "y": 0,
  414. "z": 0
  415. },
  416. "_id": ""
  417. },
  418. {
  419. "__type__": "cc.UITransform",
  420. "_name": "",
  421. "_objFlags": 0,
  422. "__editorExtras__": {},
  423. "node": {
  424. "__id__": 16
  425. },
  426. "_enabled": true,
  427. "__prefab": {
  428. "__id__": 18
  429. },
  430. "_contentSize": {
  431. "__type__": "cc.Size",
  432. "width": 426,
  433. "height": 460
  434. },
  435. "_anchorPoint": {
  436. "__type__": "cc.Vec2",
  437. "x": 0.5,
  438. "y": 0.5
  439. },
  440. "_id": ""
  441. },
  442. {
  443. "__type__": "cc.CompPrefabInfo",
  444. "fileId": "cbIh4taYRF14gTuyE+Jk+H"
  445. },
  446. {
  447. "__type__": "cc.Sprite",
  448. "_name": "",
  449. "_objFlags": 0,
  450. "__editorExtras__": {},
  451. "node": {
  452. "__id__": 16
  453. },
  454. "_enabled": true,
  455. "__prefab": {
  456. "__id__": 20
  457. },
  458. "_customMaterial": null,
  459. "_srcBlendFactor": 2,
  460. "_dstBlendFactor": 4,
  461. "_color": {
  462. "__type__": "cc.Color",
  463. "r": 255,
  464. "g": 255,
  465. "b": 255,
  466. "a": 255
  467. },
  468. "_spriteFrame": {
  469. "__uuid__": "1ff39b12-aee8-4bb4-99b9-e07e62789202@f9941",
  470. "__expectedType__": "cc.SpriteFrame"
  471. },
  472. "_type": 0,
  473. "_fillType": 0,
  474. "_sizeMode": 1,
  475. "_fillCenter": {
  476. "__type__": "cc.Vec2",
  477. "x": 0,
  478. "y": 0
  479. },
  480. "_fillStart": 0,
  481. "_fillRange": 0,
  482. "_isTrimmedMode": true,
  483. "_useGrayscale": false,
  484. "_atlas": null,
  485. "_id": ""
  486. },
  487. {
  488. "__type__": "cc.CompPrefabInfo",
  489. "fileId": "40ZrCa1VZJJ6P6cu5YEt81"
  490. },
  491. {
  492. "__type__": "cc.PrefabInfo",
  493. "root": {
  494. "__id__": 1
  495. },
  496. "asset": {
  497. "__id__": 0
  498. },
  499. "fileId": "38179VYjNI/q42in/BfgN4",
  500. "instance": null,
  501. "targetOverrides": null,
  502. "nestedPrefabInstanceRoots": null
  503. },
  504. {
  505. "__type__": "cc.Node",
  506. "_name": "Progress",
  507. "_objFlags": 0,
  508. "__editorExtras__": {},
  509. "_parent": {
  510. "__id__": 1
  511. },
  512. "_children": [
  513. {
  514. "__id__": 23
  515. },
  516. {
  517. "__id__": 29
  518. }
  519. ],
  520. "_active": true,
  521. "_components": [
  522. {
  523. "__id__": 49
  524. }
  525. ],
  526. "_prefab": {
  527. "__id__": 51
  528. },
  529. "_lpos": {
  530. "__type__": "cc.Vec3",
  531. "x": 0,
  532. "y": -119.91399999999999,
  533. "z": 0
  534. },
  535. "_lrot": {
  536. "__type__": "cc.Quat",
  537. "x": 0,
  538. "y": 0,
  539. "z": 0,
  540. "w": 1
  541. },
  542. "_lscale": {
  543. "__type__": "cc.Vec3",
  544. "x": 1,
  545. "y": 1,
  546. "z": 1
  547. },
  548. "_mobility": 0,
  549. "_layer": 33554432,
  550. "_euler": {
  551. "__type__": "cc.Vec3",
  552. "x": 0,
  553. "y": 0,
  554. "z": 0
  555. },
  556. "_id": ""
  557. },
  558. {
  559. "__type__": "cc.Node",
  560. "_name": "Title",
  561. "_objFlags": 0,
  562. "__editorExtras__": {},
  563. "_parent": {
  564. "__id__": 22
  565. },
  566. "_children": [],
  567. "_active": true,
  568. "_components": [
  569. {
  570. "__id__": 24
  571. },
  572. {
  573. "__id__": 26
  574. }
  575. ],
  576. "_prefab": {
  577. "__id__": 28
  578. },
  579. "_lpos": {
  580. "__type__": "cc.Vec3",
  581. "x": 0,
  582. "y": 49.077999999999975,
  583. "z": 0
  584. },
  585. "_lrot": {
  586. "__type__": "cc.Quat",
  587. "x": 0,
  588. "y": 0,
  589. "z": 0,
  590. "w": 1
  591. },
  592. "_lscale": {
  593. "__type__": "cc.Vec3",
  594. "x": 1,
  595. "y": 1,
  596. "z": 1
  597. },
  598. "_mobility": 0,
  599. "_layer": 33554432,
  600. "_euler": {
  601. "__type__": "cc.Vec3",
  602. "x": 0,
  603. "y": 0,
  604. "z": 0
  605. },
  606. "_id": ""
  607. },
  608. {
  609. "__type__": "cc.UITransform",
  610. "_name": "",
  611. "_objFlags": 0,
  612. "__editorExtras__": {},
  613. "node": {
  614. "__id__": 23
  615. },
  616. "_enabled": true,
  617. "__prefab": {
  618. "__id__": 25
  619. },
  620. "_contentSize": {
  621. "__type__": "cc.Size",
  622. "width": 119,
  623. "height": 29
  624. },
  625. "_anchorPoint": {
  626. "__type__": "cc.Vec2",
  627. "x": 0.5,
  628. "y": 0.5
  629. },
  630. "_id": ""
  631. },
  632. {
  633. "__type__": "cc.CompPrefabInfo",
  634. "fileId": "b9zMjwU25NSrel6UkvUmet"
  635. },
  636. {
  637. "__type__": "cc.Sprite",
  638. "_name": "",
  639. "_objFlags": 0,
  640. "__editorExtras__": {},
  641. "node": {
  642. "__id__": 23
  643. },
  644. "_enabled": true,
  645. "__prefab": {
  646. "__id__": 27
  647. },
  648. "_customMaterial": null,
  649. "_srcBlendFactor": 2,
  650. "_dstBlendFactor": 4,
  651. "_color": {
  652. "__type__": "cc.Color",
  653. "r": 255,
  654. "g": 255,
  655. "b": 255,
  656. "a": 255
  657. },
  658. "_spriteFrame": {
  659. "__uuid__": "b12179b6-2b2c-43a6-933a-ae9416cf6d72@f9941",
  660. "__expectedType__": "cc.SpriteFrame"
  661. },
  662. "_type": 0,
  663. "_fillType": 0,
  664. "_sizeMode": 1,
  665. "_fillCenter": {
  666. "__type__": "cc.Vec2",
  667. "x": 0,
  668. "y": 0
  669. },
  670. "_fillStart": 0,
  671. "_fillRange": 0,
  672. "_isTrimmedMode": true,
  673. "_useGrayscale": false,
  674. "_atlas": null,
  675. "_id": ""
  676. },
  677. {
  678. "__type__": "cc.CompPrefabInfo",
  679. "fileId": "b1cT4TVydBiaQSEqwhXfdM"
  680. },
  681. {
  682. "__type__": "cc.PrefabInfo",
  683. "root": {
  684. "__id__": 1
  685. },
  686. "asset": {
  687. "__id__": 0
  688. },
  689. "fileId": "36HLMAoK9CcLgzdcUocVbX",
  690. "instance": null,
  691. "targetOverrides": null,
  692. "nestedPrefabInstanceRoots": null
  693. },
  694. {
  695. "__type__": "cc.Node",
  696. "_name": "ProgressBar",
  697. "_objFlags": 0,
  698. "__editorExtras__": {},
  699. "_parent": {
  700. "__id__": 22
  701. },
  702. "_children": [
  703. {
  704. "__id__": 30
  705. },
  706. {
  707. "__id__": 36
  708. }
  709. ],
  710. "_active": true,
  711. "_components": [
  712. {
  713. "__id__": 42
  714. },
  715. {
  716. "__id__": 44
  717. },
  718. {
  719. "__id__": 46
  720. }
  721. ],
  722. "_prefab": {
  723. "__id__": 48
  724. },
  725. "_lpos": {
  726. "__type__": "cc.Vec3",
  727. "x": 0,
  728. "y": 0,
  729. "z": 0
  730. },
  731. "_lrot": {
  732. "__type__": "cc.Quat",
  733. "x": 0,
  734. "y": 0,
  735. "z": 0,
  736. "w": 1
  737. },
  738. "_lscale": {
  739. "__type__": "cc.Vec3",
  740. "x": 1,
  741. "y": 1,
  742. "z": 1
  743. },
  744. "_mobility": 0,
  745. "_layer": 33554432,
  746. "_euler": {
  747. "__type__": "cc.Vec3",
  748. "x": 0,
  749. "y": 0,
  750. "z": 0
  751. },
  752. "_id": ""
  753. },
  754. {
  755. "__type__": "cc.Node",
  756. "_name": "Bar",
  757. "_objFlags": 0,
  758. "__editorExtras__": {},
  759. "_parent": {
  760. "__id__": 29
  761. },
  762. "_children": [],
  763. "_active": true,
  764. "_components": [
  765. {
  766. "__id__": 31
  767. },
  768. {
  769. "__id__": 33
  770. }
  771. ],
  772. "_prefab": {
  773. "__id__": 35
  774. },
  775. "_lpos": {
  776. "__type__": "cc.Vec3",
  777. "x": -221.577,
  778. "y": 0,
  779. "z": 0
  780. },
  781. "_lrot": {
  782. "__type__": "cc.Quat",
  783. "x": 0,
  784. "y": 0,
  785. "z": 0,
  786. "w": 1
  787. },
  788. "_lscale": {
  789. "__type__": "cc.Vec3",
  790. "x": 1,
  791. "y": 1,
  792. "z": 1
  793. },
  794. "_mobility": 0,
  795. "_layer": 33554432,
  796. "_euler": {
  797. "__type__": "cc.Vec3",
  798. "x": 0,
  799. "y": 0,
  800. "z": 0
  801. },
  802. "_id": ""
  803. },
  804. {
  805. "__type__": "cc.UITransform",
  806. "_name": "",
  807. "_objFlags": 0,
  808. "__editorExtras__": {},
  809. "node": {
  810. "__id__": 30
  811. },
  812. "_enabled": true,
  813. "__prefab": {
  814. "__id__": 32
  815. },
  816. "_contentSize": {
  817. "__type__": "cc.Size",
  818. "width": 150,
  819. "height": 29
  820. },
  821. "_anchorPoint": {
  822. "__type__": "cc.Vec2",
  823. "x": 0,
  824. "y": 0.5
  825. },
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.CompPrefabInfo",
  830. "fileId": "15RGaoH1lN2IURxAlqMEZC"
  831. },
  832. {
  833. "__type__": "cc.Sprite",
  834. "_name": "",
  835. "_objFlags": 0,
  836. "__editorExtras__": {},
  837. "node": {
  838. "__id__": 30
  839. },
  840. "_enabled": true,
  841. "__prefab": {
  842. "__id__": 34
  843. },
  844. "_customMaterial": null,
  845. "_srcBlendFactor": 2,
  846. "_dstBlendFactor": 4,
  847. "_color": {
  848. "__type__": "cc.Color",
  849. "r": 255,
  850. "g": 255,
  851. "b": 255,
  852. "a": 255
  853. },
  854. "_spriteFrame": {
  855. "__uuid__": "08a1224d-380a-40db-ba69-98f85fd75e95@f9941",
  856. "__expectedType__": "cc.SpriteFrame"
  857. },
  858. "_type": 1,
  859. "_fillType": 0,
  860. "_sizeMode": 0,
  861. "_fillCenter": {
  862. "__type__": "cc.Vec2",
  863. "x": 0,
  864. "y": 0
  865. },
  866. "_fillStart": 0,
  867. "_fillRange": 0,
  868. "_isTrimmedMode": true,
  869. "_useGrayscale": false,
  870. "_atlas": null,
  871. "_id": ""
  872. },
  873. {
  874. "__type__": "cc.CompPrefabInfo",
  875. "fileId": "a7OG1/8SFBQa8MNwW820an"
  876. },
  877. {
  878. "__type__": "cc.PrefabInfo",
  879. "root": {
  880. "__id__": 1
  881. },
  882. "asset": {
  883. "__id__": 0
  884. },
  885. "fileId": "cckxv04phBq48MucbAzfNp",
  886. "instance": null,
  887. "targetOverrides": null,
  888. "nestedPrefabInstanceRoots": null
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "Num",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "_parent": {
  896. "__id__": 29
  897. },
  898. "_children": [],
  899. "_active": true,
  900. "_components": [
  901. {
  902. "__id__": 37
  903. },
  904. {
  905. "__id__": 39
  906. }
  907. ],
  908. "_prefab": {
  909. "__id__": 41
  910. },
  911. "_lpos": {
  912. "__type__": "cc.Vec3",
  913. "x": 0,
  914. "y": 0,
  915. "z": 0
  916. },
  917. "_lrot": {
  918. "__type__": "cc.Quat",
  919. "x": 0,
  920. "y": 0,
  921. "z": 0,
  922. "w": 1
  923. },
  924. "_lscale": {
  925. "__type__": "cc.Vec3",
  926. "x": 1,
  927. "y": 1,
  928. "z": 1
  929. },
  930. "_mobility": 0,
  931. "_layer": 33554432,
  932. "_euler": {
  933. "__type__": "cc.Vec3",
  934. "x": 0,
  935. "y": 0,
  936. "z": 0
  937. },
  938. "_id": ""
  939. },
  940. {
  941. "__type__": "cc.UITransform",
  942. "_name": "",
  943. "_objFlags": 0,
  944. "__editorExtras__": {},
  945. "node": {
  946. "__id__": 36
  947. },
  948. "_enabled": true,
  949. "__prefab": {
  950. "__id__": 38
  951. },
  952. "_contentSize": {
  953. "__type__": "cc.Size",
  954. "width": 64.046875,
  955. "height": 50.4
  956. },
  957. "_anchorPoint": {
  958. "__type__": "cc.Vec2",
  959. "x": 0.5,
  960. "y": 0.5
  961. },
  962. "_id": ""
  963. },
  964. {
  965. "__type__": "cc.CompPrefabInfo",
  966. "fileId": "f3GlxurClOGqqaJSO/FCmZ"
  967. },
  968. {
  969. "__type__": "cc.Label",
  970. "_name": "",
  971. "_objFlags": 0,
  972. "__editorExtras__": {},
  973. "node": {
  974. "__id__": 36
  975. },
  976. "_enabled": true,
  977. "__prefab": {
  978. "__id__": 40
  979. },
  980. "_customMaterial": null,
  981. "_srcBlendFactor": 2,
  982. "_dstBlendFactor": 4,
  983. "_color": {
  984. "__type__": "cc.Color",
  985. "r": 0,
  986. "g": 0,
  987. "b": 0,
  988. "a": 255
  989. },
  990. "_string": "30%",
  991. "_horizontalAlign": 1,
  992. "_verticalAlign": 1,
  993. "_actualFontSize": 32,
  994. "_fontSize": 32,
  995. "_fontFamily": "Arial",
  996. "_lineHeight": 40,
  997. "_overflow": 0,
  998. "_enableWrapText": true,
  999. "_font": null,
  1000. "_isSystemFontUsed": true,
  1001. "_spacingX": 0,
  1002. "_isItalic": false,
  1003. "_isBold": true,
  1004. "_isUnderline": false,
  1005. "_underlineHeight": 2,
  1006. "_cacheMode": 1,
  1007. "_enableOutline": false,
  1008. "_outlineColor": {
  1009. "__type__": "cc.Color",
  1010. "r": 0,
  1011. "g": 0,
  1012. "b": 0,
  1013. "a": 255
  1014. },
  1015. "_outlineWidth": 2,
  1016. "_enableShadow": false,
  1017. "_shadowColor": {
  1018. "__type__": "cc.Color",
  1019. "r": 0,
  1020. "g": 0,
  1021. "b": 0,
  1022. "a": 255
  1023. },
  1024. "_shadowOffset": {
  1025. "__type__": "cc.Vec2",
  1026. "x": 2,
  1027. "y": 2
  1028. },
  1029. "_shadowBlur": 2,
  1030. "_id": ""
  1031. },
  1032. {
  1033. "__type__": "cc.CompPrefabInfo",
  1034. "fileId": "77HdW6NmdPrqqYiZdzQKBe"
  1035. },
  1036. {
  1037. "__type__": "cc.PrefabInfo",
  1038. "root": {
  1039. "__id__": 1
  1040. },
  1041. "asset": {
  1042. "__id__": 0
  1043. },
  1044. "fileId": "9d5/zt5C9Ml4NVgf9uTB54",
  1045. "instance": null,
  1046. "targetOverrides": null,
  1047. "nestedPrefabInstanceRoots": null
  1048. },
  1049. {
  1050. "__type__": "cc.UITransform",
  1051. "_name": "",
  1052. "_objFlags": 0,
  1053. "__editorExtras__": {},
  1054. "node": {
  1055. "__id__": 29
  1056. },
  1057. "_enabled": true,
  1058. "__prefab": {
  1059. "__id__": 43
  1060. },
  1061. "_contentSize": {
  1062. "__type__": "cc.Size",
  1063. "width": 456,
  1064. "height": 37
  1065. },
  1066. "_anchorPoint": {
  1067. "__type__": "cc.Vec2",
  1068. "x": 0.5,
  1069. "y": 0.5
  1070. },
  1071. "_id": ""
  1072. },
  1073. {
  1074. "__type__": "cc.CompPrefabInfo",
  1075. "fileId": "10S1CrlWhC7aBKI+264STc"
  1076. },
  1077. {
  1078. "__type__": "cc.Sprite",
  1079. "_name": "",
  1080. "_objFlags": 0,
  1081. "__editorExtras__": {},
  1082. "node": {
  1083. "__id__": 29
  1084. },
  1085. "_enabled": true,
  1086. "__prefab": {
  1087. "__id__": 45
  1088. },
  1089. "_customMaterial": null,
  1090. "_srcBlendFactor": 2,
  1091. "_dstBlendFactor": 4,
  1092. "_color": {
  1093. "__type__": "cc.Color",
  1094. "r": 255,
  1095. "g": 255,
  1096. "b": 255,
  1097. "a": 255
  1098. },
  1099. "_spriteFrame": {
  1100. "__uuid__": "618749a6-6460-4ac8-950d-7bdb7fec882d@f9941",
  1101. "__expectedType__": "cc.SpriteFrame"
  1102. },
  1103. "_type": 1,
  1104. "_fillType": 0,
  1105. "_sizeMode": 0,
  1106. "_fillCenter": {
  1107. "__type__": "cc.Vec2",
  1108. "x": 0,
  1109. "y": 0
  1110. },
  1111. "_fillStart": 0,
  1112. "_fillRange": 0,
  1113. "_isTrimmedMode": true,
  1114. "_useGrayscale": false,
  1115. "_atlas": null,
  1116. "_id": ""
  1117. },
  1118. {
  1119. "__type__": "cc.CompPrefabInfo",
  1120. "fileId": "9emaH6A0RPa4oBC4R4aj1q"
  1121. },
  1122. {
  1123. "__type__": "cc.ProgressBar",
  1124. "_name": "",
  1125. "_objFlags": 0,
  1126. "__editorExtras__": {},
  1127. "node": {
  1128. "__id__": 29
  1129. },
  1130. "_enabled": true,
  1131. "__prefab": {
  1132. "__id__": 47
  1133. },
  1134. "_barSprite": {
  1135. "__id__": 33
  1136. },
  1137. "_mode": 0,
  1138. "_totalLength": 300,
  1139. "_progress": 0.5,
  1140. "_reverse": false,
  1141. "_id": ""
  1142. },
  1143. {
  1144. "__type__": "cc.CompPrefabInfo",
  1145. "fileId": "e7wb/eG3hDrasLjGjWYk8J"
  1146. },
  1147. {
  1148. "__type__": "cc.PrefabInfo",
  1149. "root": {
  1150. "__id__": 1
  1151. },
  1152. "asset": {
  1153. "__id__": 0
  1154. },
  1155. "fileId": "57OchwAMpKw5yTj0L75xVP",
  1156. "instance": null,
  1157. "targetOverrides": null,
  1158. "nestedPrefabInstanceRoots": null
  1159. },
  1160. {
  1161. "__type__": "cc.UITransform",
  1162. "_name": "",
  1163. "_objFlags": 0,
  1164. "__editorExtras__": {},
  1165. "node": {
  1166. "__id__": 22
  1167. },
  1168. "_enabled": true,
  1169. "__prefab": {
  1170. "__id__": 50
  1171. },
  1172. "_contentSize": {
  1173. "__type__": "cc.Size",
  1174. "width": 100,
  1175. "height": 100
  1176. },
  1177. "_anchorPoint": {
  1178. "__type__": "cc.Vec2",
  1179. "x": 0.5,
  1180. "y": 0.5
  1181. },
  1182. "_id": ""
  1183. },
  1184. {
  1185. "__type__": "cc.CompPrefabInfo",
  1186. "fileId": "1aGspGKKxBMZbrRycq9XcA"
  1187. },
  1188. {
  1189. "__type__": "cc.PrefabInfo",
  1190. "root": {
  1191. "__id__": 1
  1192. },
  1193. "asset": {
  1194. "__id__": 0
  1195. },
  1196. "fileId": "36r2JnRlVFcLC/yVacyDwD",
  1197. "instance": null,
  1198. "targetOverrides": null,
  1199. "nestedPrefabInstanceRoots": null
  1200. },
  1201. {
  1202. "__type__": "cc.Node",
  1203. "_name": "Btns",
  1204. "_objFlags": 0,
  1205. "__editorExtras__": {},
  1206. "_parent": {
  1207. "__id__": 1
  1208. },
  1209. "_children": [
  1210. {
  1211. "__id__": 53
  1212. },
  1213. {
  1214. "__id__": 73
  1215. }
  1216. ],
  1217. "_active": true,
  1218. "_components": [
  1219. {
  1220. "__id__": 87
  1221. }
  1222. ],
  1223. "_prefab": {
  1224. "__id__": 89
  1225. },
  1226. "_lpos": {
  1227. "__type__": "cc.Vec3",
  1228. "x": 0,
  1229. "y": 0,
  1230. "z": 0
  1231. },
  1232. "_lrot": {
  1233. "__type__": "cc.Quat",
  1234. "x": 0,
  1235. "y": 0,
  1236. "z": 0,
  1237. "w": 1
  1238. },
  1239. "_lscale": {
  1240. "__type__": "cc.Vec3",
  1241. "x": 1,
  1242. "y": 1,
  1243. "z": 1
  1244. },
  1245. "_mobility": 0,
  1246. "_layer": 33554432,
  1247. "_euler": {
  1248. "__type__": "cc.Vec3",
  1249. "x": 0,
  1250. "y": 0,
  1251. "z": 0
  1252. },
  1253. "_id": ""
  1254. },
  1255. {
  1256. "__type__": "cc.Node",
  1257. "_name": "Relife",
  1258. "_objFlags": 0,
  1259. "__editorExtras__": {},
  1260. "_parent": {
  1261. "__id__": 52
  1262. },
  1263. "_children": [
  1264. {
  1265. "__id__": 54
  1266. },
  1267. {
  1268. "__id__": 60
  1269. }
  1270. ],
  1271. "_active": true,
  1272. "_components": [
  1273. {
  1274. "__id__": 66
  1275. },
  1276. {
  1277. "__id__": 68
  1278. },
  1279. {
  1280. "__id__": 70
  1281. }
  1282. ],
  1283. "_prefab": {
  1284. "__id__": 72
  1285. },
  1286. "_lpos": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 0,
  1289. "y": -247.515,
  1290. "z": 0
  1291. },
  1292. "_lrot": {
  1293. "__type__": "cc.Quat",
  1294. "x": 0,
  1295. "y": 0,
  1296. "z": 0,
  1297. "w": 1
  1298. },
  1299. "_lscale": {
  1300. "__type__": "cc.Vec3",
  1301. "x": 1,
  1302. "y": 1,
  1303. "z": 1
  1304. },
  1305. "_mobility": 0,
  1306. "_layer": 33554432,
  1307. "_euler": {
  1308. "__type__": "cc.Vec3",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0
  1312. },
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.Node",
  1317. "_name": "Video",
  1318. "_objFlags": 0,
  1319. "__editorExtras__": {},
  1320. "_parent": {
  1321. "__id__": 53
  1322. },
  1323. "_children": [],
  1324. "_active": true,
  1325. "_components": [
  1326. {
  1327. "__id__": 55
  1328. },
  1329. {
  1330. "__id__": 57
  1331. }
  1332. ],
  1333. "_prefab": {
  1334. "__id__": 59
  1335. },
  1336. "_lpos": {
  1337. "__type__": "cc.Vec3",
  1338. "x": -135.274,
  1339. "y": 31.908000000000015,
  1340. "z": 0
  1341. },
  1342. "_lrot": {
  1343. "__type__": "cc.Quat",
  1344. "x": 0,
  1345. "y": 0,
  1346. "z": 0,
  1347. "w": 1
  1348. },
  1349. "_lscale": {
  1350. "__type__": "cc.Vec3",
  1351. "x": 1,
  1352. "y": 1,
  1353. "z": 1
  1354. },
  1355. "_mobility": 0,
  1356. "_layer": 33554432,
  1357. "_euler": {
  1358. "__type__": "cc.Vec3",
  1359. "x": 0,
  1360. "y": 0,
  1361. "z": 0
  1362. },
  1363. "_id": ""
  1364. },
  1365. {
  1366. "__type__": "cc.UITransform",
  1367. "_name": "",
  1368. "_objFlags": 0,
  1369. "__editorExtras__": {},
  1370. "node": {
  1371. "__id__": 54
  1372. },
  1373. "_enabled": true,
  1374. "__prefab": {
  1375. "__id__": 56
  1376. },
  1377. "_contentSize": {
  1378. "__type__": "cc.Size",
  1379. "width": 59,
  1380. "height": 44
  1381. },
  1382. "_anchorPoint": {
  1383. "__type__": "cc.Vec2",
  1384. "x": 0.5,
  1385. "y": 0.5
  1386. },
  1387. "_id": ""
  1388. },
  1389. {
  1390. "__type__": "cc.CompPrefabInfo",
  1391. "fileId": "5d1q88sm5E550KhNjvg9Uj"
  1392. },
  1393. {
  1394. "__type__": "cc.Sprite",
  1395. "_name": "",
  1396. "_objFlags": 0,
  1397. "__editorExtras__": {},
  1398. "node": {
  1399. "__id__": 54
  1400. },
  1401. "_enabled": true,
  1402. "__prefab": {
  1403. "__id__": 58
  1404. },
  1405. "_customMaterial": null,
  1406. "_srcBlendFactor": 2,
  1407. "_dstBlendFactor": 4,
  1408. "_color": {
  1409. "__type__": "cc.Color",
  1410. "r": 255,
  1411. "g": 255,
  1412. "b": 255,
  1413. "a": 255
  1414. },
  1415. "_spriteFrame": {
  1416. "__uuid__": "6103f028-c7ff-4354-8d51-93ae782c19f5@f9941",
  1417. "__expectedType__": "cc.SpriteFrame"
  1418. },
  1419. "_type": 0,
  1420. "_fillType": 0,
  1421. "_sizeMode": 1,
  1422. "_fillCenter": {
  1423. "__type__": "cc.Vec2",
  1424. "x": 0,
  1425. "y": 0
  1426. },
  1427. "_fillStart": 0,
  1428. "_fillRange": 0,
  1429. "_isTrimmedMode": true,
  1430. "_useGrayscale": false,
  1431. "_atlas": null,
  1432. "_id": ""
  1433. },
  1434. {
  1435. "__type__": "cc.CompPrefabInfo",
  1436. "fileId": "26FG27tYlC7Yh2hnmdP6cl"
  1437. },
  1438. {
  1439. "__type__": "cc.PrefabInfo",
  1440. "root": {
  1441. "__id__": 1
  1442. },
  1443. "asset": {
  1444. "__id__": 0
  1445. },
  1446. "fileId": "f77ddiQklK1674hQzTjfwg",
  1447. "instance": null,
  1448. "targetOverrides": null,
  1449. "nestedPrefabInstanceRoots": null
  1450. },
  1451. {
  1452. "__type__": "cc.Node",
  1453. "_name": "Txt",
  1454. "_objFlags": 0,
  1455. "__editorExtras__": {},
  1456. "_parent": {
  1457. "__id__": 53
  1458. },
  1459. "_children": [],
  1460. "_active": true,
  1461. "_components": [
  1462. {
  1463. "__id__": 61
  1464. },
  1465. {
  1466. "__id__": 63
  1467. }
  1468. ],
  1469. "_prefab": {
  1470. "__id__": 65
  1471. },
  1472. "_lpos": {
  1473. "__type__": "cc.Vec3",
  1474. "x": 0,
  1475. "y": 0,
  1476. "z": 0
  1477. },
  1478. "_lrot": {
  1479. "__type__": "cc.Quat",
  1480. "x": 0,
  1481. "y": 0,
  1482. "z": 0,
  1483. "w": 1
  1484. },
  1485. "_lscale": {
  1486. "__type__": "cc.Vec3",
  1487. "x": 1,
  1488. "y": 1,
  1489. "z": 1
  1490. },
  1491. "_mobility": 0,
  1492. "_layer": 33554432,
  1493. "_euler": {
  1494. "__type__": "cc.Vec3",
  1495. "x": 0,
  1496. "y": 0,
  1497. "z": 0
  1498. },
  1499. "_id": ""
  1500. },
  1501. {
  1502. "__type__": "cc.UITransform",
  1503. "_name": "",
  1504. "_objFlags": 0,
  1505. "__editorExtras__": {},
  1506. "node": {
  1507. "__id__": 60
  1508. },
  1509. "_enabled": true,
  1510. "__prefab": {
  1511. "__id__": 62
  1512. },
  1513. "_contentSize": {
  1514. "__type__": "cc.Size",
  1515. "width": 91,
  1516. "height": 49
  1517. },
  1518. "_anchorPoint": {
  1519. "__type__": "cc.Vec2",
  1520. "x": 0.5,
  1521. "y": 0.5
  1522. },
  1523. "_id": ""
  1524. },
  1525. {
  1526. "__type__": "cc.CompPrefabInfo",
  1527. "fileId": "b0ZzzOs+NHu5C9IPE/j4Wb"
  1528. },
  1529. {
  1530. "__type__": "cc.Sprite",
  1531. "_name": "",
  1532. "_objFlags": 0,
  1533. "__editorExtras__": {},
  1534. "node": {
  1535. "__id__": 60
  1536. },
  1537. "_enabled": true,
  1538. "__prefab": {
  1539. "__id__": 64
  1540. },
  1541. "_customMaterial": null,
  1542. "_srcBlendFactor": 2,
  1543. "_dstBlendFactor": 4,
  1544. "_color": {
  1545. "__type__": "cc.Color",
  1546. "r": 255,
  1547. "g": 255,
  1548. "b": 255,
  1549. "a": 255
  1550. },
  1551. "_spriteFrame": {
  1552. "__uuid__": "5b1c39af-15c5-4578-9db3-d13b3368965b@f9941",
  1553. "__expectedType__": "cc.SpriteFrame"
  1554. },
  1555. "_type": 0,
  1556. "_fillType": 0,
  1557. "_sizeMode": 1,
  1558. "_fillCenter": {
  1559. "__type__": "cc.Vec2",
  1560. "x": 0,
  1561. "y": 0
  1562. },
  1563. "_fillStart": 0,
  1564. "_fillRange": 0,
  1565. "_isTrimmedMode": true,
  1566. "_useGrayscale": false,
  1567. "_atlas": null,
  1568. "_id": ""
  1569. },
  1570. {
  1571. "__type__": "cc.CompPrefabInfo",
  1572. "fileId": "b1hEZoa5VCeKusb0psWrFy"
  1573. },
  1574. {
  1575. "__type__": "cc.PrefabInfo",
  1576. "root": {
  1577. "__id__": 1
  1578. },
  1579. "asset": {
  1580. "__id__": 0
  1581. },
  1582. "fileId": "96BeDwNMpD66m8xu3Illhq",
  1583. "instance": null,
  1584. "targetOverrides": null,
  1585. "nestedPrefabInstanceRoots": null
  1586. },
  1587. {
  1588. "__type__": "cc.UITransform",
  1589. "_name": "",
  1590. "_objFlags": 0,
  1591. "__editorExtras__": {},
  1592. "node": {
  1593. "__id__": 53
  1594. },
  1595. "_enabled": true,
  1596. "__prefab": {
  1597. "__id__": 67
  1598. },
  1599. "_contentSize": {
  1600. "__type__": "cc.Size",
  1601. "width": 286,
  1602. "height": 89
  1603. },
  1604. "_anchorPoint": {
  1605. "__type__": "cc.Vec2",
  1606. "x": 0.5,
  1607. "y": 0.5
  1608. },
  1609. "_id": ""
  1610. },
  1611. {
  1612. "__type__": "cc.CompPrefabInfo",
  1613. "fileId": "d5jxRTF7lL1Kisi+BSv6xF"
  1614. },
  1615. {
  1616. "__type__": "cc.Sprite",
  1617. "_name": "",
  1618. "_objFlags": 0,
  1619. "__editorExtras__": {},
  1620. "node": {
  1621. "__id__": 53
  1622. },
  1623. "_enabled": true,
  1624. "__prefab": {
  1625. "__id__": 69
  1626. },
  1627. "_customMaterial": null,
  1628. "_srcBlendFactor": 2,
  1629. "_dstBlendFactor": 4,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 255,
  1633. "g": 255,
  1634. "b": 255,
  1635. "a": 255
  1636. },
  1637. "_spriteFrame": {
  1638. "__uuid__": "2760efa9-0a19-41a7-9f27-2f0367ebf592@f9941",
  1639. "__expectedType__": "cc.SpriteFrame"
  1640. },
  1641. "_type": 1,
  1642. "_fillType": 0,
  1643. "_sizeMode": 0,
  1644. "_fillCenter": {
  1645. "__type__": "cc.Vec2",
  1646. "x": 0,
  1647. "y": 0
  1648. },
  1649. "_fillStart": 0,
  1650. "_fillRange": 0,
  1651. "_isTrimmedMode": true,
  1652. "_useGrayscale": false,
  1653. "_atlas": null,
  1654. "_id": ""
  1655. },
  1656. {
  1657. "__type__": "cc.CompPrefabInfo",
  1658. "fileId": "7aInOpMnFAwqEu8JXYSYFR"
  1659. },
  1660. {
  1661. "__type__": "cc.Button",
  1662. "_name": "",
  1663. "_objFlags": 0,
  1664. "__editorExtras__": {},
  1665. "node": {
  1666. "__id__": 53
  1667. },
  1668. "_enabled": true,
  1669. "__prefab": {
  1670. "__id__": 71
  1671. },
  1672. "clickEvents": [],
  1673. "_interactable": true,
  1674. "_transition": 3,
  1675. "_normalColor": {
  1676. "__type__": "cc.Color",
  1677. "r": 214,
  1678. "g": 214,
  1679. "b": 214,
  1680. "a": 255
  1681. },
  1682. "_hoverColor": {
  1683. "__type__": "cc.Color",
  1684. "r": 211,
  1685. "g": 211,
  1686. "b": 211,
  1687. "a": 255
  1688. },
  1689. "_pressedColor": {
  1690. "__type__": "cc.Color",
  1691. "r": 255,
  1692. "g": 255,
  1693. "b": 255,
  1694. "a": 255
  1695. },
  1696. "_disabledColor": {
  1697. "__type__": "cc.Color",
  1698. "r": 124,
  1699. "g": 124,
  1700. "b": 124,
  1701. "a": 255
  1702. },
  1703. "_normalSprite": null,
  1704. "_hoverSprite": null,
  1705. "_pressedSprite": null,
  1706. "_disabledSprite": null,
  1707. "_duration": 0.1,
  1708. "_zoomScale": 1.2,
  1709. "_target": {
  1710. "__id__": 53
  1711. },
  1712. "_id": ""
  1713. },
  1714. {
  1715. "__type__": "cc.CompPrefabInfo",
  1716. "fileId": "1aO4RDsxpH4aKMn9uKAip0"
  1717. },
  1718. {
  1719. "__type__": "cc.PrefabInfo",
  1720. "root": {
  1721. "__id__": 1
  1722. },
  1723. "asset": {
  1724. "__id__": 0
  1725. },
  1726. "fileId": "34Bn/c+mFFD7Llo7uE7yWj",
  1727. "instance": null,
  1728. "targetOverrides": null,
  1729. "nestedPrefabInstanceRoots": null
  1730. },
  1731. {
  1732. "__type__": "cc.Node",
  1733. "_name": "ReturnHall",
  1734. "_objFlags": 0,
  1735. "__editorExtras__": {},
  1736. "_parent": {
  1737. "__id__": 52
  1738. },
  1739. "_children": [
  1740. {
  1741. "__id__": 74
  1742. }
  1743. ],
  1744. "_active": true,
  1745. "_components": [
  1746. {
  1747. "__id__": 80
  1748. },
  1749. {
  1750. "__id__": 82
  1751. },
  1752. {
  1753. "__id__": 84
  1754. }
  1755. ],
  1756. "_prefab": {
  1757. "__id__": 86
  1758. },
  1759. "_lpos": {
  1760. "__type__": "cc.Vec3",
  1761. "x": 0,
  1762. "y": -365.144,
  1763. "z": 0
  1764. },
  1765. "_lrot": {
  1766. "__type__": "cc.Quat",
  1767. "x": 0,
  1768. "y": 0,
  1769. "z": 0,
  1770. "w": 1
  1771. },
  1772. "_lscale": {
  1773. "__type__": "cc.Vec3",
  1774. "x": 1,
  1775. "y": 1,
  1776. "z": 1
  1777. },
  1778. "_mobility": 0,
  1779. "_layer": 33554432,
  1780. "_euler": {
  1781. "__type__": "cc.Vec3",
  1782. "x": 0,
  1783. "y": 0,
  1784. "z": 0
  1785. },
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.Node",
  1790. "_name": "Txt",
  1791. "_objFlags": 0,
  1792. "__editorExtras__": {},
  1793. "_parent": {
  1794. "__id__": 73
  1795. },
  1796. "_children": [],
  1797. "_active": true,
  1798. "_components": [
  1799. {
  1800. "__id__": 75
  1801. },
  1802. {
  1803. "__id__": 77
  1804. }
  1805. ],
  1806. "_prefab": {
  1807. "__id__": 79
  1808. },
  1809. "_lpos": {
  1810. "__type__": "cc.Vec3",
  1811. "x": 0,
  1812. "y": 0,
  1813. "z": 0
  1814. },
  1815. "_lrot": {
  1816. "__type__": "cc.Quat",
  1817. "x": 0,
  1818. "y": 0,
  1819. "z": 0,
  1820. "w": 1
  1821. },
  1822. "_lscale": {
  1823. "__type__": "cc.Vec3",
  1824. "x": 1,
  1825. "y": 1,
  1826. "z": 1
  1827. },
  1828. "_mobility": 0,
  1829. "_layer": 33554432,
  1830. "_euler": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 0,
  1833. "y": 0,
  1834. "z": 0
  1835. },
  1836. "_id": ""
  1837. },
  1838. {
  1839. "__type__": "cc.UITransform",
  1840. "_name": "",
  1841. "_objFlags": 0,
  1842. "__editorExtras__": {},
  1843. "node": {
  1844. "__id__": 74
  1845. },
  1846. "_enabled": true,
  1847. "__prefab": {
  1848. "__id__": 76
  1849. },
  1850. "_contentSize": {
  1851. "__type__": "cc.Size",
  1852. "width": 176,
  1853. "height": 50
  1854. },
  1855. "_anchorPoint": {
  1856. "__type__": "cc.Vec2",
  1857. "x": 0.5,
  1858. "y": 0.5
  1859. },
  1860. "_id": ""
  1861. },
  1862. {
  1863. "__type__": "cc.CompPrefabInfo",
  1864. "fileId": "45pF1at5FESaCQYKA15gwD"
  1865. },
  1866. {
  1867. "__type__": "cc.Sprite",
  1868. "_name": "",
  1869. "_objFlags": 0,
  1870. "__editorExtras__": {},
  1871. "node": {
  1872. "__id__": 74
  1873. },
  1874. "_enabled": true,
  1875. "__prefab": {
  1876. "__id__": 78
  1877. },
  1878. "_customMaterial": null,
  1879. "_srcBlendFactor": 2,
  1880. "_dstBlendFactor": 4,
  1881. "_color": {
  1882. "__type__": "cc.Color",
  1883. "r": 255,
  1884. "g": 255,
  1885. "b": 255,
  1886. "a": 255
  1887. },
  1888. "_spriteFrame": {
  1889. "__uuid__": "a1731c40-ca65-4ab7-ba0d-003582dffa9c@f9941",
  1890. "__expectedType__": "cc.SpriteFrame"
  1891. },
  1892. "_type": 0,
  1893. "_fillType": 0,
  1894. "_sizeMode": 1,
  1895. "_fillCenter": {
  1896. "__type__": "cc.Vec2",
  1897. "x": 0,
  1898. "y": 0
  1899. },
  1900. "_fillStart": 0,
  1901. "_fillRange": 0,
  1902. "_isTrimmedMode": true,
  1903. "_useGrayscale": false,
  1904. "_atlas": null,
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.CompPrefabInfo",
  1909. "fileId": "01kmX3Z2tBDZDoTKSNWGPq"
  1910. },
  1911. {
  1912. "__type__": "cc.PrefabInfo",
  1913. "root": {
  1914. "__id__": 1
  1915. },
  1916. "asset": {
  1917. "__id__": 0
  1918. },
  1919. "fileId": "0dsjVngShFNbfXP4JOFVYe",
  1920. "instance": null,
  1921. "targetOverrides": null,
  1922. "nestedPrefabInstanceRoots": null
  1923. },
  1924. {
  1925. "__type__": "cc.UITransform",
  1926. "_name": "",
  1927. "_objFlags": 0,
  1928. "__editorExtras__": {},
  1929. "node": {
  1930. "__id__": 73
  1931. },
  1932. "_enabled": true,
  1933. "__prefab": {
  1934. "__id__": 81
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 286,
  1939. "height": 89
  1940. },
  1941. "_anchorPoint": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0.5,
  1944. "y": 0.5
  1945. },
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.CompPrefabInfo",
  1950. "fileId": "6dsn+HmWBPeKUh5oEkAbpd"
  1951. },
  1952. {
  1953. "__type__": "cc.Sprite",
  1954. "_name": "",
  1955. "_objFlags": 0,
  1956. "__editorExtras__": {},
  1957. "node": {
  1958. "__id__": 73
  1959. },
  1960. "_enabled": true,
  1961. "__prefab": {
  1962. "__id__": 83
  1963. },
  1964. "_customMaterial": null,
  1965. "_srcBlendFactor": 2,
  1966. "_dstBlendFactor": 4,
  1967. "_color": {
  1968. "__type__": "cc.Color",
  1969. "r": 255,
  1970. "g": 255,
  1971. "b": 255,
  1972. "a": 255
  1973. },
  1974. "_spriteFrame": {
  1975. "__uuid__": "a6a48e34-32b8-4dee-b537-205ae12047f0@f9941",
  1976. "__expectedType__": "cc.SpriteFrame"
  1977. },
  1978. "_type": 1,
  1979. "_fillType": 0,
  1980. "_sizeMode": 0,
  1981. "_fillCenter": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 0,
  1984. "y": 0
  1985. },
  1986. "_fillStart": 0,
  1987. "_fillRange": 0,
  1988. "_isTrimmedMode": true,
  1989. "_useGrayscale": false,
  1990. "_atlas": null,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.CompPrefabInfo",
  1995. "fileId": "f3n7EU6VdGr6QbZF+mK0Z+"
  1996. },
  1997. {
  1998. "__type__": "cc.Button",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "__editorExtras__": {},
  2002. "node": {
  2003. "__id__": 73
  2004. },
  2005. "_enabled": true,
  2006. "__prefab": {
  2007. "__id__": 85
  2008. },
  2009. "clickEvents": [],
  2010. "_interactable": true,
  2011. "_transition": 3,
  2012. "_normalColor": {
  2013. "__type__": "cc.Color",
  2014. "r": 214,
  2015. "g": 214,
  2016. "b": 214,
  2017. "a": 255
  2018. },
  2019. "_hoverColor": {
  2020. "__type__": "cc.Color",
  2021. "r": 211,
  2022. "g": 211,
  2023. "b": 211,
  2024. "a": 255
  2025. },
  2026. "_pressedColor": {
  2027. "__type__": "cc.Color",
  2028. "r": 255,
  2029. "g": 255,
  2030. "b": 255,
  2031. "a": 255
  2032. },
  2033. "_disabledColor": {
  2034. "__type__": "cc.Color",
  2035. "r": 124,
  2036. "g": 124,
  2037. "b": 124,
  2038. "a": 255
  2039. },
  2040. "_normalSprite": null,
  2041. "_hoverSprite": null,
  2042. "_pressedSprite": null,
  2043. "_disabledSprite": null,
  2044. "_duration": 0.1,
  2045. "_zoomScale": 1.2,
  2046. "_target": {
  2047. "__id__": 73
  2048. },
  2049. "_id": ""
  2050. },
  2051. {
  2052. "__type__": "cc.CompPrefabInfo",
  2053. "fileId": "d98mcSiTNHyL7BLQ4cV/qk"
  2054. },
  2055. {
  2056. "__type__": "cc.PrefabInfo",
  2057. "root": {
  2058. "__id__": 1
  2059. },
  2060. "asset": {
  2061. "__id__": 0
  2062. },
  2063. "fileId": "86PjIXeJVBQKTkgepKYqfS",
  2064. "instance": null,
  2065. "targetOverrides": null,
  2066. "nestedPrefabInstanceRoots": null
  2067. },
  2068. {
  2069. "__type__": "cc.UITransform",
  2070. "_name": "",
  2071. "_objFlags": 0,
  2072. "__editorExtras__": {},
  2073. "node": {
  2074. "__id__": 52
  2075. },
  2076. "_enabled": true,
  2077. "__prefab": {
  2078. "__id__": 88
  2079. },
  2080. "_contentSize": {
  2081. "__type__": "cc.Size",
  2082. "width": 100,
  2083. "height": 100
  2084. },
  2085. "_anchorPoint": {
  2086. "__type__": "cc.Vec2",
  2087. "x": 0.5,
  2088. "y": 0.5
  2089. },
  2090. "_id": ""
  2091. },
  2092. {
  2093. "__type__": "cc.CompPrefabInfo",
  2094. "fileId": "f0aoJHBRJENa0BKM6RTqNZ"
  2095. },
  2096. {
  2097. "__type__": "cc.PrefabInfo",
  2098. "root": {
  2099. "__id__": 1
  2100. },
  2101. "asset": {
  2102. "__id__": 0
  2103. },
  2104. "fileId": "85Q8Cl2GtMorIIXQzMoPO+",
  2105. "instance": null,
  2106. "targetOverrides": null,
  2107. "nestedPrefabInstanceRoots": null
  2108. },
  2109. {
  2110. "__type__": "cc.UITransform",
  2111. "_name": "",
  2112. "_objFlags": 0,
  2113. "__editorExtras__": {},
  2114. "node": {
  2115. "__id__": 1
  2116. },
  2117. "_enabled": true,
  2118. "__prefab": {
  2119. "__id__": 91
  2120. },
  2121. "_contentSize": {
  2122. "__type__": "cc.Size",
  2123. "width": 750,
  2124. "height": 1634
  2125. },
  2126. "_anchorPoint": {
  2127. "__type__": "cc.Vec2",
  2128. "x": 0.5,
  2129. "y": 0.5
  2130. },
  2131. "_id": ""
  2132. },
  2133. {
  2134. "__type__": "cc.CompPrefabInfo",
  2135. "fileId": "c8VH77ibFGYohVKc/79rBY"
  2136. },
  2137. {
  2138. "__type__": "cc.PrefabInfo",
  2139. "root": {
  2140. "__id__": 1
  2141. },
  2142. "asset": {
  2143. "__id__": 0
  2144. },
  2145. "fileId": "e8Mht/f45B7Lua5y3k6HY0",
  2146. "targetOverrides": null
  2147. }
  2148. ]