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

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