AutoSyntheticUI.prefab 39 KB

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