LevelClearLayer.prefab 41 KB

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