LevelClearLayer.prefab 42 KB

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