FullScreenui.prefab 37 KB

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