LevelClearLayer.prefab 41 KB

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