LevelClearLayer.prefab 38 KB

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