dc3b0685-db32-4ded-afac-4cc9375ad544.json 71 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "NativeBanner",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "NativeBanner",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 13
  25. },
  26. {
  27. "__id__": 67
  28. }
  29. ],
  30. "_active": true,
  31. "_level": 1,
  32. "_components": [
  33. {
  34. "__id__": 112
  35. },
  36. {
  37. "__id__": 113
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 114
  42. },
  43. "_opacity": 255,
  44. "_color": {
  45. "__type__": "cc.Color",
  46. "r": 255,
  47. "g": 255,
  48. "b": 255,
  49. "a": 255
  50. },
  51. "_contentSize": {
  52. "__type__": "cc.Size",
  53. "width": 1080,
  54. "height": 160
  55. },
  56. "_anchorPoint": {
  57. "__type__": "cc.Vec2",
  58. "x": 0.5,
  59. "y": 0.5
  60. },
  61. "_quat": {
  62. "__type__": "cc.Quat",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0,
  66. "w": 1
  67. },
  68. "_skewX": 0,
  69. "_skewY": 0,
  70. "groupIndex": 0,
  71. "_id": "",
  72. "_trs": {
  73. "__type__": "TypedArray",
  74. "ctor": "Float64Array",
  75. "array": [
  76. 540,
  77. 80,
  78. 0,
  79. 0,
  80. 0,
  81. 0,
  82. 1,
  83. 1,
  84. 1,
  85. 1
  86. ]
  87. }
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "bgMask",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [
  97. {
  98. "__id__": 3
  99. }
  100. ],
  101. "_active": true,
  102. "_level": 2,
  103. "_components": [
  104. {
  105. "__id__": 7
  106. },
  107. {
  108. "__id__": 8
  109. },
  110. {
  111. "__id__": 9
  112. }
  113. ],
  114. "_prefab": {
  115. "__id__": 66
  116. },
  117. "_opacity": 70,
  118. "_color": {
  119. "__type__": "cc.Color",
  120. "r": 0,
  121. "g": 0,
  122. "b": 0,
  123. "a": 255
  124. },
  125. "_contentSize": {
  126. "__type__": "cc.Size",
  127. "width": 1080,
  128. "height": 100
  129. },
  130. "_anchorPoint": {
  131. "__type__": "cc.Vec2",
  132. "x": 0.5,
  133. "y": 0.5
  134. },
  135. "_quat": {
  136. "__type__": "cc.Quat",
  137. "x": 0,
  138. "y": 0,
  139. "z": 0,
  140. "w": 1
  141. },
  142. "_skewX": 0,
  143. "_skewY": 0,
  144. "groupIndex": 0,
  145. "_id": "",
  146. "_trs": {
  147. "__type__": "TypedArray",
  148. "ctor": "Float64Array",
  149. "array": [
  150. 0,
  151. -30,
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 1,
  157. 1,
  158. 1,
  159. 1
  160. ]
  161. }
  162. },
  163. {
  164. "__type__": "cc.Node",
  165. "_name": "Mask",
  166. "_objFlags": 0,
  167. "_parent": {
  168. "__id__": 2
  169. },
  170. "_children": [],
  171. "_active": true,
  172. "_level": 3,
  173. "_components": [
  174. {
  175. "__id__": 4
  176. },
  177. {
  178. "__id__": 5
  179. }
  180. ],
  181. "_prefab": {
  182. "__id__": 6
  183. },
  184. "_opacity": 500,
  185. "_color": {
  186. "__type__": "cc.Color",
  187. "r": 255,
  188. "g": 255,
  189. "b": 255,
  190. "a": 255
  191. },
  192. "_contentSize": {
  193. "__type__": "cc.Size",
  194. "width": 65,
  195. "height": 33
  196. },
  197. "_anchorPoint": {
  198. "__type__": "cc.Vec2",
  199. "x": 1,
  200. "y": 0
  201. },
  202. "_quat": {
  203. "__type__": "cc.Quat",
  204. "x": 0,
  205. "y": 0,
  206. "z": 0,
  207. "w": 1
  208. },
  209. "_skewX": 0,
  210. "_skewY": 0,
  211. "groupIndex": 0,
  212. "_id": "",
  213. "_trs": {
  214. "__type__": "TypedArray",
  215. "ctor": "Float64Array",
  216. "array": [
  217. 540,
  218. -50,
  219. 0,
  220. 0,
  221. 0,
  222. 0,
  223. 1,
  224. 1,
  225. 1,
  226. 1
  227. ]
  228. }
  229. },
  230. {
  231. "__type__": "cc.Sprite",
  232. "_name": "",
  233. "_objFlags": 0,
  234. "node": {
  235. "__id__": 3
  236. },
  237. "_enabled": true,
  238. "_spriteFrame": {
  239. "__uuid__": "efb827e6-541b-4d42-9808-f6f3cfd60d55"
  240. },
  241. "_type": 0,
  242. "_sizeMode": 1,
  243. "_fillType": 0,
  244. "_fillCenter": {
  245. "__type__": "cc.Vec2",
  246. "x": 0,
  247. "y": 0
  248. },
  249. "_fillStart": 0,
  250. "_fillRange": 0,
  251. "_isTrimmedMode": true,
  252. "_state": 0,
  253. "_atlas": {
  254. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  255. },
  256. "_srcBlendFactor": 770,
  257. "_dstBlendFactor": 771,
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.Widget",
  262. "_name": "",
  263. "_objFlags": 0,
  264. "node": {
  265. "__id__": 3
  266. },
  267. "_enabled": true,
  268. "alignMode": 1,
  269. "_target": null,
  270. "_alignFlags": 36,
  271. "_left": 0,
  272. "_right": 0,
  273. "_top": 0,
  274. "_bottom": 0,
  275. "_verticalCenter": 0,
  276. "_horizontalCenter": 0,
  277. "_isAbsLeft": true,
  278. "_isAbsRight": true,
  279. "_isAbsTop": true,
  280. "_isAbsBottom": true,
  281. "_isAbsHorizontalCenter": true,
  282. "_isAbsVerticalCenter": true,
  283. "_originalWidth": 0,
  284. "_originalHeight": 0,
  285. "_id": ""
  286. },
  287. {
  288. "__type__": "cc.PrefabInfo",
  289. "root": {
  290. "__id__": 1
  291. },
  292. "asset": {
  293. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  294. },
  295. "fileId": "4b7DtcNXBKpqvZNLHnm0QW",
  296. "sync": false
  297. },
  298. {
  299. "__type__": "cc.Sprite",
  300. "_name": "",
  301. "_objFlags": 0,
  302. "node": {
  303. "__id__": 2
  304. },
  305. "_enabled": true,
  306. "_spriteFrame": {
  307. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  308. },
  309. "_type": 0,
  310. "_sizeMode": 0,
  311. "_fillType": 0,
  312. "_fillCenter": {
  313. "__type__": "cc.Vec2",
  314. "x": 0,
  315. "y": 0
  316. },
  317. "_fillStart": 0,
  318. "_fillRange": 0,
  319. "_isTrimmedMode": true,
  320. "_state": 0,
  321. "_atlas": null,
  322. "_srcBlendFactor": 770,
  323. "_dstBlendFactor": 771,
  324. "_id": ""
  325. },
  326. {
  327. "__type__": "cc.Widget",
  328. "_name": "",
  329. "_objFlags": 0,
  330. "node": {
  331. "__id__": 2
  332. },
  333. "_enabled": true,
  334. "alignMode": 1,
  335. "_target": null,
  336. "_alignFlags": 44,
  337. "_left": 0,
  338. "_right": 0,
  339. "_top": 30,
  340. "_bottom": 0,
  341. "_verticalCenter": 0,
  342. "_horizontalCenter": 0,
  343. "_isAbsLeft": true,
  344. "_isAbsRight": true,
  345. "_isAbsTop": true,
  346. "_isAbsBottom": true,
  347. "_isAbsHorizontalCenter": true,
  348. "_isAbsVerticalCenter": true,
  349. "_originalWidth": 100,
  350. "_originalHeight": 100,
  351. "_id": ""
  352. },
  353. {
  354. "__type__": "cc.Button",
  355. "_name": "",
  356. "_objFlags": 0,
  357. "node": {
  358. "__id__": 2
  359. },
  360. "_enabled": true,
  361. "duration": 0.1,
  362. "zoomScale": 1.2,
  363. "clickEvents": [
  364. {
  365. "__id__": 10
  366. }
  367. ],
  368. "_N$interactable": true,
  369. "_N$enableAutoGrayEffect": false,
  370. "_N$transition": 0,
  371. "transition": 0,
  372. "_N$normalColor": {
  373. "__type__": "cc.Color",
  374. "r": 230,
  375. "g": 230,
  376. "b": 230,
  377. "a": 255
  378. },
  379. "_N$pressedColor": {
  380. "__type__": "cc.Color",
  381. "r": 200,
  382. "g": 200,
  383. "b": 200,
  384. "a": 255
  385. },
  386. "pressedColor": {
  387. "__type__": "cc.Color",
  388. "r": 200,
  389. "g": 200,
  390. "b": 200,
  391. "a": 255
  392. },
  393. "_N$hoverColor": {
  394. "__type__": "cc.Color",
  395. "r": 255,
  396. "g": 255,
  397. "b": 255,
  398. "a": 255
  399. },
  400. "hoverColor": {
  401. "__type__": "cc.Color",
  402. "r": 255,
  403. "g": 255,
  404. "b": 255,
  405. "a": 255
  406. },
  407. "_N$disabledColor": {
  408. "__type__": "cc.Color",
  409. "r": 120,
  410. "g": 120,
  411. "b": 120,
  412. "a": 200
  413. },
  414. "_N$normalSprite": {
  415. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  416. },
  417. "_N$pressedSprite": {
  418. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  419. },
  420. "pressedSprite": {
  421. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  422. },
  423. "_N$hoverSprite": {
  424. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  425. },
  426. "hoverSprite": {
  427. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  428. },
  429. "_N$disabledSprite": {
  430. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  431. },
  432. "_N$target": {
  433. "__id__": 11
  434. },
  435. "_id": ""
  436. },
  437. {
  438. "__type__": "cc.ClickEvent",
  439. "target": {
  440. "__id__": 1
  441. },
  442. "component": "",
  443. "_componentId": "a2a680a5EJDfKlZKlM8P3Vv",
  444. "handler": "onBtnClickHandler",
  445. "customEventData": ""
  446. },
  447. {
  448. "__type__": "cc.Node",
  449. "_name": "Background",
  450. "_objFlags": 0,
  451. "_parent": {
  452. "__id__": 12
  453. },
  454. "_children": [
  455. {
  456. "__id__": 60
  457. }
  458. ],
  459. "_active": true,
  460. "_level": 2,
  461. "_components": [
  462. {
  463. "__id__": 63
  464. },
  465. {
  466. "__id__": 64
  467. }
  468. ],
  469. "_prefab": {
  470. "__id__": 65
  471. },
  472. "_opacity": 255,
  473. "_color": {
  474. "__type__": "cc.Color",
  475. "r": 230,
  476. "g": 230,
  477. "b": 230,
  478. "a": 255
  479. },
  480. "_contentSize": {
  481. "__type__": "cc.Size",
  482. "width": 216,
  483. "height": 90
  484. },
  485. "_anchorPoint": {
  486. "__type__": "cc.Vec2",
  487. "x": 0.5,
  488. "y": 0.5
  489. },
  490. "_quat": {
  491. "__type__": "cc.Quat",
  492. "x": 0,
  493. "y": 0,
  494. "z": 0,
  495. "w": 1
  496. },
  497. "_skewX": 0,
  498. "_skewY": 0,
  499. "groupIndex": 0,
  500. "_id": "",
  501. "_trs": {
  502. "__type__": "TypedArray",
  503. "ctor": "Float64Array",
  504. "array": [
  505. 0,
  506. 0,
  507. 0,
  508. 0,
  509. 0,
  510. 0,
  511. 1,
  512. 1,
  513. 1,
  514. 1
  515. ]
  516. }
  517. },
  518. {
  519. "__type__": "cc.Node",
  520. "_name": "Btn_Download",
  521. "_objFlags": 0,
  522. "_parent": {
  523. "__id__": 13
  524. },
  525. "_children": [
  526. {
  527. "__id__": 11
  528. }
  529. ],
  530. "_active": true,
  531. "_level": 3,
  532. "_components": [
  533. {
  534. "__id__": 56
  535. },
  536. {
  537. "__id__": 58
  538. }
  539. ],
  540. "_prefab": {
  541. "__id__": 59
  542. },
  543. "_opacity": 255,
  544. "_color": {
  545. "__type__": "cc.Color",
  546. "r": 255,
  547. "g": 255,
  548. "b": 255,
  549. "a": 255
  550. },
  551. "_contentSize": {
  552. "__type__": "cc.Size",
  553. "width": 216,
  554. "height": 90
  555. },
  556. "_anchorPoint": {
  557. "__type__": "cc.Vec2",
  558. "x": 0.5,
  559. "y": 0.5
  560. },
  561. "_quat": {
  562. "__type__": "cc.Quat",
  563. "x": 0,
  564. "y": 0,
  565. "z": 0,
  566. "w": 1
  567. },
  568. "_skewX": 0,
  569. "_skewY": 0,
  570. "groupIndex": 0,
  571. "_id": "",
  572. "_trs": {
  573. "__type__": "TypedArray",
  574. "ctor": "Float64Array",
  575. "array": [
  576. 391,
  577. -8,
  578. 0,
  579. 0,
  580. 0,
  581. 0,
  582. 1,
  583. 1,
  584. 1,
  585. 1
  586. ]
  587. }
  588. },
  589. {
  590. "__type__": "cc.Node",
  591. "_name": "Panel",
  592. "_objFlags": 0,
  593. "_parent": {
  594. "__id__": 1
  595. },
  596. "_children": [
  597. {
  598. "__id__": 14
  599. },
  600. {
  601. "__id__": 23
  602. },
  603. {
  604. "__id__": 27
  605. },
  606. {
  607. "__id__": 31
  608. },
  609. {
  610. "__id__": 34
  611. },
  612. {
  613. "__id__": 12
  614. },
  615. {
  616. "__id__": 37
  617. },
  618. {
  619. "__id__": 41
  620. },
  621. {
  622. "__id__": 45
  623. },
  624. {
  625. "__id__": 49
  626. }
  627. ],
  628. "_active": true,
  629. "_level": 2,
  630. "_components": [
  631. {
  632. "__id__": 53
  633. },
  634. {
  635. "__id__": 54
  636. }
  637. ],
  638. "_prefab": {
  639. "__id__": 55
  640. },
  641. "_opacity": 255,
  642. "_color": {
  643. "__type__": "cc.Color",
  644. "r": 255,
  645. "g": 255,
  646. "b": 255,
  647. "a": 255
  648. },
  649. "_contentSize": {
  650. "__type__": "cc.Size",
  651. "width": 1080,
  652. "height": 160
  653. },
  654. "_anchorPoint": {
  655. "__type__": "cc.Vec2",
  656. "x": 0.5,
  657. "y": 0.5
  658. },
  659. "_quat": {
  660. "__type__": "cc.Quat",
  661. "x": 0,
  662. "y": 0,
  663. "z": 0,
  664. "w": 1
  665. },
  666. "_skewX": 0,
  667. "_skewY": 0,
  668. "groupIndex": 0,
  669. "_id": "",
  670. "_trs": {
  671. "__type__": "TypedArray",
  672. "ctor": "Float64Array",
  673. "array": [
  674. 0,
  675. 0,
  676. 0,
  677. 0,
  678. 0,
  679. 0,
  680. 1,
  681. 1,
  682. 1,
  683. 1
  684. ]
  685. }
  686. },
  687. {
  688. "__type__": "cc.Node",
  689. "_name": "Btn_Close",
  690. "_objFlags": 0,
  691. "_parent": {
  692. "__id__": 13
  693. },
  694. "_children": [
  695. {
  696. "__id__": 15
  697. }
  698. ],
  699. "_active": true,
  700. "_level": 3,
  701. "_components": [
  702. {
  703. "__id__": 19
  704. },
  705. {
  706. "__id__": 21
  707. }
  708. ],
  709. "_prefab": {
  710. "__id__": 22
  711. },
  712. "_opacity": 255,
  713. "_color": {
  714. "__type__": "cc.Color",
  715. "r": 255,
  716. "g": 255,
  717. "b": 255,
  718. "a": 255
  719. },
  720. "_contentSize": {
  721. "__type__": "cc.Size",
  722. "width": 40,
  723. "height": 40
  724. },
  725. "_anchorPoint": {
  726. "__type__": "cc.Vec2",
  727. "x": 0,
  728. "y": 1
  729. },
  730. "_quat": {
  731. "__type__": "cc.Quat",
  732. "x": 0,
  733. "y": 0,
  734. "z": 0,
  735. "w": 1
  736. },
  737. "_skewX": 0,
  738. "_skewY": 0,
  739. "groupIndex": 0,
  740. "_id": "",
  741. "_trs": {
  742. "__type__": "TypedArray",
  743. "ctor": "Float64Array",
  744. "array": [
  745. -540,
  746. 80,
  747. 0,
  748. 0,
  749. 0,
  750. 0,
  751. 1,
  752. 1,
  753. 1,
  754. 1
  755. ]
  756. }
  757. },
  758. {
  759. "__type__": "cc.Node",
  760. "_name": "Background",
  761. "_objFlags": 0,
  762. "_parent": {
  763. "__id__": 14
  764. },
  765. "_children": [],
  766. "_active": true,
  767. "_level": 2,
  768. "_components": [
  769. {
  770. "__id__": 16
  771. },
  772. {
  773. "__id__": 17
  774. }
  775. ],
  776. "_prefab": {
  777. "__id__": 18
  778. },
  779. "_opacity": 156,
  780. "_color": {
  781. "__type__": "cc.Color",
  782. "r": 230,
  783. "g": 230,
  784. "b": 230,
  785. "a": 255
  786. },
  787. "_contentSize": {
  788. "__type__": "cc.Size",
  789. "width": 40,
  790. "height": 40
  791. },
  792. "_anchorPoint": {
  793. "__type__": "cc.Vec2",
  794. "x": 0,
  795. "y": 1
  796. },
  797. "_quat": {
  798. "__type__": "cc.Quat",
  799. "x": 0,
  800. "y": 0,
  801. "z": 0,
  802. "w": 1
  803. },
  804. "_skewX": 0,
  805. "_skewY": 0,
  806. "groupIndex": 0,
  807. "_id": "",
  808. "_trs": {
  809. "__type__": "TypedArray",
  810. "ctor": "Float64Array",
  811. "array": [
  812. 0,
  813. 0,
  814. 0,
  815. 0,
  816. 0,
  817. 0,
  818. 1,
  819. 1,
  820. 1,
  821. 1
  822. ]
  823. }
  824. },
  825. {
  826. "__type__": "cc.Sprite",
  827. "_name": "",
  828. "_objFlags": 0,
  829. "node": {
  830. "__id__": 15
  831. },
  832. "_enabled": true,
  833. "_spriteFrame": {
  834. "__uuid__": "6bd46437-a6ec-4985-ad88-41ea287cd991"
  835. },
  836. "_type": 1,
  837. "_sizeMode": 0,
  838. "_fillType": 0,
  839. "_fillCenter": {
  840. "__type__": "cc.Vec2",
  841. "x": 0,
  842. "y": 0
  843. },
  844. "_fillStart": 0,
  845. "_fillRange": 0,
  846. "_isTrimmedMode": true,
  847. "_state": 0,
  848. "_atlas": {
  849. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  850. },
  851. "_srcBlendFactor": 770,
  852. "_dstBlendFactor": 771,
  853. "_id": ""
  854. },
  855. {
  856. "__type__": "cc.Widget",
  857. "_name": "",
  858. "_objFlags": 0,
  859. "node": {
  860. "__id__": 15
  861. },
  862. "_enabled": true,
  863. "alignMode": 0,
  864. "_target": null,
  865. "_alignFlags": 9,
  866. "_left": 0,
  867. "_right": -33.2,
  868. "_top": 0,
  869. "_bottom": -3.1999999999999993,
  870. "_verticalCenter": 0,
  871. "_horizontalCenter": 0,
  872. "_isAbsLeft": true,
  873. "_isAbsRight": true,
  874. "_isAbsTop": true,
  875. "_isAbsBottom": true,
  876. "_isAbsHorizontalCenter": true,
  877. "_isAbsVerticalCenter": true,
  878. "_originalWidth": 100,
  879. "_originalHeight": 40,
  880. "_id": ""
  881. },
  882. {
  883. "__type__": "cc.PrefabInfo",
  884. "root": {
  885. "__id__": 1
  886. },
  887. "asset": {
  888. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  889. },
  890. "fileId": "67FoLNgTdCdqyl8zn9C4E9",
  891. "sync": false
  892. },
  893. {
  894. "__type__": "cc.Button",
  895. "_name": "",
  896. "_objFlags": 0,
  897. "node": {
  898. "__id__": 14
  899. },
  900. "_enabled": true,
  901. "duration": 0.1,
  902. "zoomScale": 1.2,
  903. "clickEvents": [
  904. {
  905. "__id__": 20
  906. }
  907. ],
  908. "_N$interactable": true,
  909. "_N$enableAutoGrayEffect": false,
  910. "_N$transition": 3,
  911. "transition": 3,
  912. "_N$normalColor": {
  913. "__type__": "cc.Color",
  914. "r": 230,
  915. "g": 230,
  916. "b": 230,
  917. "a": 255
  918. },
  919. "_N$pressedColor": {
  920. "__type__": "cc.Color",
  921. "r": 200,
  922. "g": 200,
  923. "b": 200,
  924. "a": 255
  925. },
  926. "pressedColor": {
  927. "__type__": "cc.Color",
  928. "r": 200,
  929. "g": 200,
  930. "b": 200,
  931. "a": 255
  932. },
  933. "_N$hoverColor": {
  934. "__type__": "cc.Color",
  935. "r": 255,
  936. "g": 255,
  937. "b": 255,
  938. "a": 255
  939. },
  940. "hoverColor": {
  941. "__type__": "cc.Color",
  942. "r": 255,
  943. "g": 255,
  944. "b": 255,
  945. "a": 255
  946. },
  947. "_N$disabledColor": {
  948. "__type__": "cc.Color",
  949. "r": 120,
  950. "g": 120,
  951. "b": 120,
  952. "a": 200
  953. },
  954. "_N$normalSprite": null,
  955. "_N$pressedSprite": {
  956. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  957. },
  958. "pressedSprite": {
  959. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  960. },
  961. "_N$hoverSprite": {
  962. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  963. },
  964. "hoverSprite": {
  965. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  966. },
  967. "_N$disabledSprite": {
  968. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  969. },
  970. "_N$target": {
  971. "__id__": 15
  972. },
  973. "_id": ""
  974. },
  975. {
  976. "__type__": "cc.ClickEvent",
  977. "target": {
  978. "__id__": 1
  979. },
  980. "component": "",
  981. "_componentId": "a2a680a5EJDfKlZKlM8P3Vv",
  982. "handler": "onBtnClickHandler",
  983. "customEventData": ""
  984. },
  985. {
  986. "__type__": "cc.Widget",
  987. "_name": "",
  988. "_objFlags": 0,
  989. "node": {
  990. "__id__": 14
  991. },
  992. "_enabled": true,
  993. "alignMode": 1,
  994. "_target": null,
  995. "_alignFlags": 9,
  996. "_left": 0,
  997. "_right": 0,
  998. "_top": 0,
  999. "_bottom": 0,
  1000. "_verticalCenter": 0,
  1001. "_horizontalCenter": 0,
  1002. "_isAbsLeft": true,
  1003. "_isAbsRight": true,
  1004. "_isAbsTop": true,
  1005. "_isAbsBottom": true,
  1006. "_isAbsHorizontalCenter": true,
  1007. "_isAbsVerticalCenter": true,
  1008. "_originalWidth": 0,
  1009. "_originalHeight": 0,
  1010. "_id": ""
  1011. },
  1012. {
  1013. "__type__": "cc.PrefabInfo",
  1014. "root": {
  1015. "__id__": 1
  1016. },
  1017. "asset": {
  1018. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1019. },
  1020. "fileId": "40BlDyPNRKsJDP7LpshGpw",
  1021. "sync": false
  1022. },
  1023. {
  1024. "__type__": "cc.Node",
  1025. "_name": "Icon",
  1026. "_objFlags": 0,
  1027. "_parent": {
  1028. "__id__": 13
  1029. },
  1030. "_children": [],
  1031. "_active": true,
  1032. "_level": 3,
  1033. "_components": [
  1034. {
  1035. "__id__": 24
  1036. },
  1037. {
  1038. "__id__": 25
  1039. }
  1040. ],
  1041. "_prefab": {
  1042. "__id__": 26
  1043. },
  1044. "_opacity": 255,
  1045. "_color": {
  1046. "__type__": "cc.Color",
  1047. "r": 255,
  1048. "g": 255,
  1049. "b": 255,
  1050. "a": 255
  1051. },
  1052. "_contentSize": {
  1053. "__type__": "cc.Size",
  1054. "width": 120,
  1055. "height": 120
  1056. },
  1057. "_anchorPoint": {
  1058. "__type__": "cc.Vec2",
  1059. "x": 0.5,
  1060. "y": 0.5
  1061. },
  1062. "_quat": {
  1063. "__type__": "cc.Quat",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": 0,
  1067. "w": 1
  1068. },
  1069. "_skewX": 0,
  1070. "_skewY": 0,
  1071. "groupIndex": 0,
  1072. "_id": "",
  1073. "_trs": {
  1074. "__type__": "TypedArray",
  1075. "ctor": "Float64Array",
  1076. "array": [
  1077. -395,
  1078. 0,
  1079. 0,
  1080. 0,
  1081. 0,
  1082. 0,
  1083. 1,
  1084. 1,
  1085. 1,
  1086. 1
  1087. ]
  1088. }
  1089. },
  1090. {
  1091. "__type__": "cc.Sprite",
  1092. "_name": "",
  1093. "_objFlags": 0,
  1094. "node": {
  1095. "__id__": 23
  1096. },
  1097. "_enabled": true,
  1098. "_spriteFrame": {
  1099. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1100. },
  1101. "_type": 0,
  1102. "_sizeMode": 0,
  1103. "_fillType": 0,
  1104. "_fillCenter": {
  1105. "__type__": "cc.Vec2",
  1106. "x": 0,
  1107. "y": 0
  1108. },
  1109. "_fillStart": 0,
  1110. "_fillRange": 0,
  1111. "_isTrimmedMode": true,
  1112. "_state": 0,
  1113. "_atlas": null,
  1114. "_srcBlendFactor": 770,
  1115. "_dstBlendFactor": 771,
  1116. "_id": ""
  1117. },
  1118. {
  1119. "__type__": "cc.Widget",
  1120. "_name": "",
  1121. "_objFlags": 0,
  1122. "node": {
  1123. "__id__": 23
  1124. },
  1125. "_enabled": true,
  1126. "alignMode": 1,
  1127. "_target": null,
  1128. "_alignFlags": 8,
  1129. "_left": 85,
  1130. "_right": 496,
  1131. "_top": 75,
  1132. "_bottom": 75,
  1133. "_verticalCenter": 0,
  1134. "_horizontalCenter": 0,
  1135. "_isAbsLeft": true,
  1136. "_isAbsRight": true,
  1137. "_isAbsTop": true,
  1138. "_isAbsBottom": true,
  1139. "_isAbsHorizontalCenter": true,
  1140. "_isAbsVerticalCenter": true,
  1141. "_originalWidth": 90,
  1142. "_originalHeight": 90,
  1143. "_id": ""
  1144. },
  1145. {
  1146. "__type__": "cc.PrefabInfo",
  1147. "root": {
  1148. "__id__": 1
  1149. },
  1150. "asset": {
  1151. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1152. },
  1153. "fileId": "29oDYleI5Nua8K8LxBAlLI",
  1154. "sync": false
  1155. },
  1156. {
  1157. "__type__": "cc.Node",
  1158. "_name": "HuaweiIcon",
  1159. "_objFlags": 0,
  1160. "_parent": {
  1161. "__id__": 13
  1162. },
  1163. "_children": [],
  1164. "_active": true,
  1165. "_level": 3,
  1166. "_components": [
  1167. {
  1168. "__id__": 28
  1169. },
  1170. {
  1171. "__id__": 29
  1172. }
  1173. ],
  1174. "_prefab": {
  1175. "__id__": 30
  1176. },
  1177. "_opacity": 255,
  1178. "_color": {
  1179. "__type__": "cc.Color",
  1180. "r": 255,
  1181. "g": 255,
  1182. "b": 255,
  1183. "a": 255
  1184. },
  1185. "_contentSize": {
  1186. "__type__": "cc.Size",
  1187. "width": 231,
  1188. "height": 120
  1189. },
  1190. "_anchorPoint": {
  1191. "__type__": "cc.Vec2",
  1192. "x": 0.5,
  1193. "y": 0.5
  1194. },
  1195. "_quat": {
  1196. "__type__": "cc.Quat",
  1197. "x": 0,
  1198. "y": 0,
  1199. "z": 0,
  1200. "w": 1
  1201. },
  1202. "_skewX": 0,
  1203. "_skewY": 0,
  1204. "groupIndex": 0,
  1205. "_id": "",
  1206. "_trs": {
  1207. "__type__": "TypedArray",
  1208. "ctor": "Float64Array",
  1209. "array": [
  1210. -378,
  1211. 0,
  1212. 0,
  1213. 0,
  1214. 0,
  1215. 0,
  1216. 1,
  1217. 1,
  1218. 1,
  1219. 1
  1220. ]
  1221. }
  1222. },
  1223. {
  1224. "__type__": "cc.Sprite",
  1225. "_name": "",
  1226. "_objFlags": 0,
  1227. "node": {
  1228. "__id__": 27
  1229. },
  1230. "_enabled": true,
  1231. "_spriteFrame": null,
  1232. "_type": 0,
  1233. "_sizeMode": 0,
  1234. "_fillType": 0,
  1235. "_fillCenter": {
  1236. "__type__": "cc.Vec2",
  1237. "x": 0,
  1238. "y": 0
  1239. },
  1240. "_fillStart": 0,
  1241. "_fillRange": 0,
  1242. "_isTrimmedMode": true,
  1243. "_state": 0,
  1244. "_atlas": null,
  1245. "_srcBlendFactor": 770,
  1246. "_dstBlendFactor": 771,
  1247. "_id": ""
  1248. },
  1249. {
  1250. "__type__": "cc.Widget",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "node": {
  1254. "__id__": 27
  1255. },
  1256. "_enabled": true,
  1257. "alignMode": 1,
  1258. "_target": null,
  1259. "_alignFlags": 8,
  1260. "_left": 46.49999999999997,
  1261. "_right": 496,
  1262. "_top": 75,
  1263. "_bottom": 75,
  1264. "_verticalCenter": 0,
  1265. "_horizontalCenter": 0,
  1266. "_isAbsLeft": true,
  1267. "_isAbsRight": true,
  1268. "_isAbsTop": true,
  1269. "_isAbsBottom": true,
  1270. "_isAbsHorizontalCenter": true,
  1271. "_isAbsVerticalCenter": true,
  1272. "_originalWidth": 90,
  1273. "_originalHeight": 90,
  1274. "_id": ""
  1275. },
  1276. {
  1277. "__type__": "cc.PrefabInfo",
  1278. "root": {
  1279. "__id__": 1
  1280. },
  1281. "asset": {
  1282. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1283. },
  1284. "fileId": "65fOoZrOdOh7QqBIcpkzPI",
  1285. "sync": false
  1286. },
  1287. {
  1288. "__type__": "cc.Node",
  1289. "_name": "TitleLabel",
  1290. "_objFlags": 0,
  1291. "_parent": {
  1292. "__id__": 13
  1293. },
  1294. "_children": [],
  1295. "_active": true,
  1296. "_level": 3,
  1297. "_components": [
  1298. {
  1299. "__id__": 32
  1300. }
  1301. ],
  1302. "_prefab": {
  1303. "__id__": 33
  1304. },
  1305. "_opacity": 255,
  1306. "_color": {
  1307. "__type__": "cc.Color",
  1308. "r": 52,
  1309. "g": 52,
  1310. "b": 52,
  1311. "a": 255
  1312. },
  1313. "_contentSize": {
  1314. "__type__": "cc.Size",
  1315. "width": 461.4,
  1316. "height": 50
  1317. },
  1318. "_anchorPoint": {
  1319. "__type__": "cc.Vec2",
  1320. "x": 0.5,
  1321. "y": 0.5
  1322. },
  1323. "_quat": {
  1324. "__type__": "cc.Quat",
  1325. "x": 0,
  1326. "y": 0,
  1327. "z": 0,
  1328. "w": 1
  1329. },
  1330. "_skewX": 0,
  1331. "_skewY": 0,
  1332. "groupIndex": 0,
  1333. "_id": "",
  1334. "_trs": {
  1335. "__type__": "TypedArray",
  1336. "ctor": "Float64Array",
  1337. "array": [
  1338. 0,
  1339. 30,
  1340. 0,
  1341. 0,
  1342. 0,
  1343. 0,
  1344. 1,
  1345. 1,
  1346. 1,
  1347. 1
  1348. ]
  1349. }
  1350. },
  1351. {
  1352. "__type__": "cc.Label",
  1353. "_name": "",
  1354. "_objFlags": 0,
  1355. "node": {
  1356. "__id__": 31
  1357. },
  1358. "_enabled": true,
  1359. "_useOriginalSize": false,
  1360. "_string": "今日头条",
  1361. "_N$string": "今日头条",
  1362. "_fontSize": 55,
  1363. "_lineHeight": 60,
  1364. "_enableWrapText": true,
  1365. "_N$file": null,
  1366. "_isSystemFontUsed": true,
  1367. "_spacingX": 0,
  1368. "_batchAsBitmap": false,
  1369. "_N$horizontalAlign": 1,
  1370. "_N$verticalAlign": 1,
  1371. "_N$fontFamily": "Arial",
  1372. "_N$overflow": 2,
  1373. "_N$cacheMode": 0,
  1374. "_id": ""
  1375. },
  1376. {
  1377. "__type__": "cc.PrefabInfo",
  1378. "root": {
  1379. "__id__": 1
  1380. },
  1381. "asset": {
  1382. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1383. },
  1384. "fileId": "fdNuEMEyVF06Cd29NteAmr",
  1385. "sync": false
  1386. },
  1387. {
  1388. "__type__": "cc.Node",
  1389. "_name": "DesLabel",
  1390. "_objFlags": 0,
  1391. "_parent": {
  1392. "__id__": 13
  1393. },
  1394. "_children": [],
  1395. "_active": true,
  1396. "_level": 3,
  1397. "_components": [
  1398. {
  1399. "__id__": 35
  1400. }
  1401. ],
  1402. "_prefab": {
  1403. "__id__": 36
  1404. },
  1405. "_opacity": 255,
  1406. "_color": {
  1407. "__type__": "cc.Color",
  1408. "r": 139,
  1409. "g": 139,
  1410. "b": 139,
  1411. "a": 255
  1412. },
  1413. "_contentSize": {
  1414. "__type__": "cc.Size",
  1415. "width": 461.4,
  1416. "height": 50
  1417. },
  1418. "_anchorPoint": {
  1419. "__type__": "cc.Vec2",
  1420. "x": 0.5,
  1421. "y": 0.5
  1422. },
  1423. "_quat": {
  1424. "__type__": "cc.Quat",
  1425. "x": 0,
  1426. "y": 0,
  1427. "z": 0,
  1428. "w": 1
  1429. },
  1430. "_skewX": 0,
  1431. "_skewY": 0,
  1432. "groupIndex": 0,
  1433. "_id": "",
  1434. "_trs": {
  1435. "__type__": "TypedArray",
  1436. "ctor": "Float64Array",
  1437. "array": [
  1438. 0,
  1439. -28,
  1440. 0,
  1441. 0,
  1442. 0,
  1443. 0,
  1444. 1,
  1445. 1,
  1446. 1,
  1447. 1
  1448. ]
  1449. }
  1450. },
  1451. {
  1452. "__type__": "cc.Label",
  1453. "_name": "",
  1454. "_objFlags": 0,
  1455. "node": {
  1456. "__id__": 34
  1457. },
  1458. "_enabled": true,
  1459. "_useOriginalSize": false,
  1460. "_string": "看新闻,用今日头条",
  1461. "_N$string": "看新闻,用今日头条",
  1462. "_fontSize": 35,
  1463. "_lineHeight": 40,
  1464. "_enableWrapText": true,
  1465. "_N$file": null,
  1466. "_isSystemFontUsed": true,
  1467. "_spacingX": 0,
  1468. "_batchAsBitmap": false,
  1469. "_N$horizontalAlign": 1,
  1470. "_N$verticalAlign": 1,
  1471. "_N$fontFamily": "Arial",
  1472. "_N$overflow": 2,
  1473. "_N$cacheMode": 0,
  1474. "_id": ""
  1475. },
  1476. {
  1477. "__type__": "cc.PrefabInfo",
  1478. "root": {
  1479. "__id__": 1
  1480. },
  1481. "asset": {
  1482. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1483. },
  1484. "fileId": "82Aq6lr6BA4oQOwJKtAx4g",
  1485. "sync": false
  1486. },
  1487. {
  1488. "__type__": "cc.Node",
  1489. "_name": "Mask",
  1490. "_objFlags": 0,
  1491. "_parent": {
  1492. "__id__": 13
  1493. },
  1494. "_children": [],
  1495. "_active": true,
  1496. "_level": 3,
  1497. "_components": [
  1498. {
  1499. "__id__": 38
  1500. },
  1501. {
  1502. "__id__": 39
  1503. }
  1504. ],
  1505. "_prefab": {
  1506. "__id__": 40
  1507. },
  1508. "_opacity": 113,
  1509. "_color": {
  1510. "__type__": "cc.Color",
  1511. "r": 255,
  1512. "g": 255,
  1513. "b": 255,
  1514. "a": 255
  1515. },
  1516. "_contentSize": {
  1517. "__type__": "cc.Size",
  1518. "width": 65,
  1519. "height": 34
  1520. },
  1521. "_anchorPoint": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 1,
  1524. "y": 0
  1525. },
  1526. "_quat": {
  1527. "__type__": "cc.Quat",
  1528. "x": 0,
  1529. "y": 0,
  1530. "z": 0,
  1531. "w": 1
  1532. },
  1533. "_skewX": 0,
  1534. "_skewY": 0,
  1535. "groupIndex": 0,
  1536. "_id": "",
  1537. "_trs": {
  1538. "__type__": "TypedArray",
  1539. "ctor": "Float64Array",
  1540. "array": [
  1541. 540,
  1542. -80,
  1543. 0,
  1544. 0,
  1545. 0,
  1546. 0,
  1547. 1,
  1548. 0.7,
  1549. 0.7,
  1550. 1
  1551. ]
  1552. }
  1553. },
  1554. {
  1555. "__type__": "cc.Sprite",
  1556. "_name": "",
  1557. "_objFlags": 0,
  1558. "node": {
  1559. "__id__": 37
  1560. },
  1561. "_enabled": true,
  1562. "_spriteFrame": {
  1563. "__uuid__": "a93501a7-e6cb-49f4-ab5d-fc2671f190c7"
  1564. },
  1565. "_type": 0,
  1566. "_sizeMode": 1,
  1567. "_fillType": 0,
  1568. "_fillCenter": {
  1569. "__type__": "cc.Vec2",
  1570. "x": 0,
  1571. "y": 0
  1572. },
  1573. "_fillStart": 0,
  1574. "_fillRange": 0,
  1575. "_isTrimmedMode": true,
  1576. "_state": 0,
  1577. "_atlas": {
  1578. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1579. },
  1580. "_srcBlendFactor": 770,
  1581. "_dstBlendFactor": 771,
  1582. "_id": ""
  1583. },
  1584. {
  1585. "__type__": "cc.Widget",
  1586. "_name": "",
  1587. "_objFlags": 0,
  1588. "node": {
  1589. "__id__": 37
  1590. },
  1591. "_enabled": true,
  1592. "alignMode": 1,
  1593. "_target": null,
  1594. "_alignFlags": 36,
  1595. "_left": 0,
  1596. "_right": 0,
  1597. "_top": 0,
  1598. "_bottom": 0,
  1599. "_verticalCenter": 0,
  1600. "_horizontalCenter": 0,
  1601. "_isAbsLeft": true,
  1602. "_isAbsRight": true,
  1603. "_isAbsTop": true,
  1604. "_isAbsBottom": true,
  1605. "_isAbsHorizontalCenter": true,
  1606. "_isAbsVerticalCenter": true,
  1607. "_originalWidth": 0,
  1608. "_originalHeight": 0,
  1609. "_id": ""
  1610. },
  1611. {
  1612. "__type__": "cc.PrefabInfo",
  1613. "root": {
  1614. "__id__": 1
  1615. },
  1616. "asset": {
  1617. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1618. },
  1619. "fileId": "a7Rno5KKRAXJ4gGl/byqcE",
  1620. "sync": false
  1621. },
  1622. {
  1623. "__type__": "cc.Node",
  1624. "_name": "Hw_Mark",
  1625. "_objFlags": 0,
  1626. "_parent": {
  1627. "__id__": 13
  1628. },
  1629. "_children": [],
  1630. "_active": false,
  1631. "_level": 3,
  1632. "_components": [
  1633. {
  1634. "__id__": 42
  1635. },
  1636. {
  1637. "__id__": 43
  1638. }
  1639. ],
  1640. "_prefab": {
  1641. "__id__": 44
  1642. },
  1643. "_opacity": 255,
  1644. "_color": {
  1645. "__type__": "cc.Color",
  1646. "r": 0,
  1647. "g": 0,
  1648. "b": 0,
  1649. "a": 255
  1650. },
  1651. "_contentSize": {
  1652. "__type__": "cc.Size",
  1653. "width": 65,
  1654. "height": 33
  1655. },
  1656. "_anchorPoint": {
  1657. "__type__": "cc.Vec2",
  1658. "x": 0.5,
  1659. "y": 0.5
  1660. },
  1661. "_quat": {
  1662. "__type__": "cc.Quat",
  1663. "x": 0,
  1664. "y": 0,
  1665. "z": 0,
  1666. "w": 1
  1667. },
  1668. "_skewX": 0,
  1669. "_skewY": 0,
  1670. "groupIndex": 0,
  1671. "_id": "",
  1672. "_trs": {
  1673. "__type__": "TypedArray",
  1674. "ctor": "Float64Array",
  1675. "array": [
  1676. 508.60000000000014,
  1677. 64.4,
  1678. 0,
  1679. 0,
  1680. 0,
  1681. 0,
  1682. 1,
  1683. 1,
  1684. 1,
  1685. 1
  1686. ]
  1687. }
  1688. },
  1689. {
  1690. "__type__": "cc.Sprite",
  1691. "_name": "",
  1692. "_objFlags": 0,
  1693. "node": {
  1694. "__id__": 41
  1695. },
  1696. "_enabled": true,
  1697. "_spriteFrame": {
  1698. "__uuid__": "efb827e6-541b-4d42-9808-f6f3cfd60d55"
  1699. },
  1700. "_type": 0,
  1701. "_sizeMode": 1,
  1702. "_fillType": 0,
  1703. "_fillCenter": {
  1704. "__type__": "cc.Vec2",
  1705. "x": 0,
  1706. "y": 0
  1707. },
  1708. "_fillStart": 0,
  1709. "_fillRange": 0,
  1710. "_isTrimmedMode": true,
  1711. "_state": 0,
  1712. "_atlas": {
  1713. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  1714. },
  1715. "_srcBlendFactor": 770,
  1716. "_dstBlendFactor": 771,
  1717. "_id": ""
  1718. },
  1719. {
  1720. "__type__": "cc.Widget",
  1721. "_name": "",
  1722. "_objFlags": 0,
  1723. "node": {
  1724. "__id__": 41
  1725. },
  1726. "_enabled": true,
  1727. "alignMode": 1,
  1728. "_target": null,
  1729. "_alignFlags": 33,
  1730. "_left": 0,
  1731. "_right": -1.1000000000000796,
  1732. "_top": -0.9000000000000057,
  1733. "_bottom": 0,
  1734. "_verticalCenter": 0,
  1735. "_horizontalCenter": 0,
  1736. "_isAbsLeft": true,
  1737. "_isAbsRight": true,
  1738. "_isAbsTop": true,
  1739. "_isAbsBottom": true,
  1740. "_isAbsHorizontalCenter": true,
  1741. "_isAbsVerticalCenter": true,
  1742. "_originalWidth": 0,
  1743. "_originalHeight": 0,
  1744. "_id": ""
  1745. },
  1746. {
  1747. "__type__": "cc.PrefabInfo",
  1748. "root": {
  1749. "__id__": 1
  1750. },
  1751. "asset": {
  1752. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1753. },
  1754. "fileId": "ebJtTm/2pKJ7FF44h933hj",
  1755. "sync": false
  1756. },
  1757. {
  1758. "__type__": "cc.Node",
  1759. "_name": "source",
  1760. "_objFlags": 0,
  1761. "_parent": {
  1762. "__id__": 13
  1763. },
  1764. "_children": [],
  1765. "_active": true,
  1766. "_level": 3,
  1767. "_components": [
  1768. {
  1769. "__id__": 46
  1770. },
  1771. {
  1772. "__id__": 47
  1773. }
  1774. ],
  1775. "_prefab": {
  1776. "__id__": 48
  1777. },
  1778. "_opacity": 255,
  1779. "_color": {
  1780. "__type__": "cc.Color",
  1781. "r": 139,
  1782. "g": 139,
  1783. "b": 139,
  1784. "a": 255
  1785. },
  1786. "_contentSize": {
  1787. "__type__": "cc.Size",
  1788. "width": 0,
  1789. "height": 30
  1790. },
  1791. "_anchorPoint": {
  1792. "__type__": "cc.Vec2",
  1793. "x": 0,
  1794. "y": 0.5
  1795. },
  1796. "_quat": {
  1797. "__type__": "cc.Quat",
  1798. "x": 0,
  1799. "y": 0,
  1800. "z": 0,
  1801. "w": 1
  1802. },
  1803. "_skewX": 0,
  1804. "_skewY": 0,
  1805. "groupIndex": 0,
  1806. "_id": "",
  1807. "_trs": {
  1808. "__type__": "TypedArray",
  1809. "ctor": "Float64Array",
  1810. "array": [
  1811. -244,
  1812. -63,
  1813. 0,
  1814. 0,
  1815. 0,
  1816. 0,
  1817. 1,
  1818. 1,
  1819. 1,
  1820. 1
  1821. ]
  1822. }
  1823. },
  1824. {
  1825. "__type__": "cc.Label",
  1826. "_name": "",
  1827. "_objFlags": 0,
  1828. "node": {
  1829. "__id__": 45
  1830. },
  1831. "_enabled": true,
  1832. "_useOriginalSize": false,
  1833. "_string": "",
  1834. "_N$string": "",
  1835. "_fontSize": 30,
  1836. "_lineHeight": 30,
  1837. "_enableWrapText": true,
  1838. "_N$file": null,
  1839. "_isSystemFontUsed": true,
  1840. "_spacingX": 0,
  1841. "_batchAsBitmap": false,
  1842. "_N$horizontalAlign": 0,
  1843. "_N$verticalAlign": 1,
  1844. "_N$fontFamily": "Arial",
  1845. "_N$overflow": 0,
  1846. "_N$cacheMode": 0,
  1847. "_id": ""
  1848. },
  1849. {
  1850. "__type__": "cc.Widget",
  1851. "_name": "",
  1852. "_objFlags": 0,
  1853. "node": {
  1854. "__id__": 45
  1855. },
  1856. "_enabled": true,
  1857. "alignMode": 1,
  1858. "_target": null,
  1859. "_alignFlags": 8,
  1860. "_left": 296,
  1861. "_right": 0,
  1862. "_top": 0,
  1863. "_bottom": 0,
  1864. "_verticalCenter": 0,
  1865. "_horizontalCenter": 0,
  1866. "_isAbsLeft": true,
  1867. "_isAbsRight": true,
  1868. "_isAbsTop": true,
  1869. "_isAbsBottom": true,
  1870. "_isAbsHorizontalCenter": true,
  1871. "_isAbsVerticalCenter": true,
  1872. "_originalWidth": 0,
  1873. "_originalHeight": 0,
  1874. "_id": ""
  1875. },
  1876. {
  1877. "__type__": "cc.PrefabInfo",
  1878. "root": {
  1879. "__id__": 1
  1880. },
  1881. "asset": {
  1882. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  1883. },
  1884. "fileId": "31LoeN7shOULhLeHo4O5al",
  1885. "sync": false
  1886. },
  1887. {
  1888. "__type__": "cc.Node",
  1889. "_name": "Xm_Mark",
  1890. "_objFlags": 0,
  1891. "_parent": {
  1892. "__id__": 13
  1893. },
  1894. "_children": [],
  1895. "_active": false,
  1896. "_level": 3,
  1897. "_components": [
  1898. {
  1899. "__id__": 50
  1900. },
  1901. {
  1902. "__id__": 51
  1903. }
  1904. ],
  1905. "_prefab": {
  1906. "__id__": 52
  1907. },
  1908. "_opacity": 255,
  1909. "_color": {
  1910. "__type__": "cc.Color",
  1911. "r": 0,
  1912. "g": 0,
  1913. "b": 0,
  1914. "a": 255
  1915. },
  1916. "_contentSize": {
  1917. "__type__": "cc.Size",
  1918. "width": 65,
  1919. "height": 34
  1920. },
  1921. "_anchorPoint": {
  1922. "__type__": "cc.Vec2",
  1923. "x": 0.5,
  1924. "y": 0.5
  1925. },
  1926. "_quat": {
  1927. "__type__": "cc.Quat",
  1928. "x": 0,
  1929. "y": 0,
  1930. "z": 0,
  1931. "w": 1
  1932. },
  1933. "_skewX": 0,
  1934. "_skewY": 0,
  1935. "groupIndex": 0,
  1936. "_id": "",
  1937. "_trs": {
  1938. "__type__": "TypedArray",
  1939. "ctor": "Float64Array",
  1940. "array": [
  1941. 517.25,
  1942. -68.6,
  1943. 0,
  1944. 0,
  1945. 0,
  1946. 0,
  1947. 1,
  1948. 0.7,
  1949. 0.7,
  1950. 1
  1951. ]
  1952. }
  1953. },
  1954. {
  1955. "__type__": "cc.Sprite",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "node": {
  1959. "__id__": 49
  1960. },
  1961. "_enabled": true,
  1962. "_spriteFrame": {
  1963. "__uuid__": "edb4fed7-a993-401f-9a1a-d831e12857a3"
  1964. },
  1965. "_type": 0,
  1966. "_sizeMode": 0,
  1967. "_fillType": 0,
  1968. "_fillCenter": {
  1969. "__type__": "cc.Vec2",
  1970. "x": 0,
  1971. "y": 0
  1972. },
  1973. "_fillStart": 0,
  1974. "_fillRange": 0,
  1975. "_isTrimmedMode": true,
  1976. "_state": 0,
  1977. "_atlas": null,
  1978. "_srcBlendFactor": 770,
  1979. "_dstBlendFactor": 771,
  1980. "_id": ""
  1981. },
  1982. {
  1983. "__type__": "cc.Widget",
  1984. "_name": "",
  1985. "_objFlags": 0,
  1986. "node": {
  1987. "__id__": 49
  1988. },
  1989. "_enabled": true,
  1990. "alignMode": 1,
  1991. "_target": null,
  1992. "_alignFlags": 36,
  1993. "_left": 0,
  1994. "_right": 0,
  1995. "_top": -0.9000000000000057,
  1996. "_bottom": -0.5,
  1997. "_verticalCenter": 0,
  1998. "_horizontalCenter": 0,
  1999. "_isAbsLeft": true,
  2000. "_isAbsRight": true,
  2001. "_isAbsTop": true,
  2002. "_isAbsBottom": true,
  2003. "_isAbsHorizontalCenter": true,
  2004. "_isAbsVerticalCenter": true,
  2005. "_originalWidth": 0,
  2006. "_originalHeight": 0,
  2007. "_id": ""
  2008. },
  2009. {
  2010. "__type__": "cc.PrefabInfo",
  2011. "root": {
  2012. "__id__": 1
  2013. },
  2014. "asset": {
  2015. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2016. },
  2017. "fileId": "26aFbryTZEeYDaTYv9w5NT",
  2018. "sync": false
  2019. },
  2020. {
  2021. "__type__": "cc.Sprite",
  2022. "_name": "",
  2023. "_objFlags": 0,
  2024. "node": {
  2025. "__id__": 13
  2026. },
  2027. "_enabled": true,
  2028. "_spriteFrame": {
  2029. "__uuid__": "95707a28-636a-4892-8b0b-b8157a6b9815"
  2030. },
  2031. "_type": 1,
  2032. "_sizeMode": 0,
  2033. "_fillType": 0,
  2034. "_fillCenter": {
  2035. "__type__": "cc.Vec2",
  2036. "x": 0,
  2037. "y": 0
  2038. },
  2039. "_fillStart": 0,
  2040. "_fillRange": 0,
  2041. "_isTrimmedMode": true,
  2042. "_state": 0,
  2043. "_atlas": null,
  2044. "_srcBlendFactor": 770,
  2045. "_dstBlendFactor": 771,
  2046. "_id": ""
  2047. },
  2048. {
  2049. "__type__": "cc.Widget",
  2050. "_name": "",
  2051. "_objFlags": 0,
  2052. "node": {
  2053. "__id__": 13
  2054. },
  2055. "_enabled": true,
  2056. "alignMode": 1,
  2057. "_target": null,
  2058. "_alignFlags": 45,
  2059. "_left": 0,
  2060. "_right": 0,
  2061. "_top": 0,
  2062. "_bottom": 0,
  2063. "_verticalCenter": 0,
  2064. "_horizontalCenter": 0,
  2065. "_isAbsLeft": true,
  2066. "_isAbsRight": true,
  2067. "_isAbsTop": true,
  2068. "_isAbsBottom": true,
  2069. "_isAbsHorizontalCenter": true,
  2070. "_isAbsVerticalCenter": true,
  2071. "_originalWidth": 641,
  2072. "_originalHeight": 173,
  2073. "_id": ""
  2074. },
  2075. {
  2076. "__type__": "cc.PrefabInfo",
  2077. "root": {
  2078. "__id__": 1
  2079. },
  2080. "asset": {
  2081. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2082. },
  2083. "fileId": "1enUrne9JDv4oWWxoG12nH",
  2084. "sync": false
  2085. },
  2086. {
  2087. "__type__": "cc.Button",
  2088. "_name": "",
  2089. "_objFlags": 0,
  2090. "node": {
  2091. "__id__": 12
  2092. },
  2093. "_enabled": true,
  2094. "duration": 0.1,
  2095. "zoomScale": 1.2,
  2096. "clickEvents": [
  2097. {
  2098. "__id__": 57
  2099. }
  2100. ],
  2101. "_N$interactable": true,
  2102. "_N$enableAutoGrayEffect": false,
  2103. "_N$transition": 3,
  2104. "transition": 3,
  2105. "_N$normalColor": {
  2106. "__type__": "cc.Color",
  2107. "r": 230,
  2108. "g": 230,
  2109. "b": 230,
  2110. "a": 255
  2111. },
  2112. "_N$pressedColor": {
  2113. "__type__": "cc.Color",
  2114. "r": 200,
  2115. "g": 200,
  2116. "b": 200,
  2117. "a": 255
  2118. },
  2119. "pressedColor": {
  2120. "__type__": "cc.Color",
  2121. "r": 200,
  2122. "g": 200,
  2123. "b": 200,
  2124. "a": 255
  2125. },
  2126. "_N$hoverColor": {
  2127. "__type__": "cc.Color",
  2128. "r": 255,
  2129. "g": 255,
  2130. "b": 255,
  2131. "a": 255
  2132. },
  2133. "hoverColor": {
  2134. "__type__": "cc.Color",
  2135. "r": 255,
  2136. "g": 255,
  2137. "b": 255,
  2138. "a": 255
  2139. },
  2140. "_N$disabledColor": {
  2141. "__type__": "cc.Color",
  2142. "r": 120,
  2143. "g": 120,
  2144. "b": 120,
  2145. "a": 200
  2146. },
  2147. "_N$normalSprite": {
  2148. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2149. },
  2150. "_N$pressedSprite": {
  2151. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2152. },
  2153. "pressedSprite": {
  2154. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2155. },
  2156. "_N$hoverSprite": {
  2157. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2158. },
  2159. "hoverSprite": {
  2160. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2161. },
  2162. "_N$disabledSprite": {
  2163. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2164. },
  2165. "_N$target": {
  2166. "__id__": 11
  2167. },
  2168. "_id": ""
  2169. },
  2170. {
  2171. "__type__": "cc.ClickEvent",
  2172. "target": {
  2173. "__id__": 1
  2174. },
  2175. "component": "",
  2176. "_componentId": "a2a680a5EJDfKlZKlM8P3Vv",
  2177. "handler": "onBtnClickHandler",
  2178. "customEventData": ""
  2179. },
  2180. {
  2181. "__type__": "cc.Widget",
  2182. "_name": "",
  2183. "_objFlags": 0,
  2184. "node": {
  2185. "__id__": 12
  2186. },
  2187. "_enabled": true,
  2188. "alignMode": 1,
  2189. "_target": null,
  2190. "_alignFlags": 32,
  2191. "_left": 940,
  2192. "_right": 41,
  2193. "_top": 43,
  2194. "_bottom": 100.5,
  2195. "_verticalCenter": 0,
  2196. "_horizontalCenter": 0,
  2197. "_isAbsLeft": true,
  2198. "_isAbsRight": true,
  2199. "_isAbsTop": true,
  2200. "_isAbsBottom": true,
  2201. "_isAbsHorizontalCenter": true,
  2202. "_isAbsVerticalCenter": true,
  2203. "_originalWidth": 120,
  2204. "_originalHeight": 50,
  2205. "_id": ""
  2206. },
  2207. {
  2208. "__type__": "cc.PrefabInfo",
  2209. "root": {
  2210. "__id__": 1
  2211. },
  2212. "asset": {
  2213. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2214. },
  2215. "fileId": "ceDFV9LelKk573k8/fpXpF",
  2216. "sync": false
  2217. },
  2218. {
  2219. "__type__": "cc.Node",
  2220. "_name": "Label",
  2221. "_objFlags": 0,
  2222. "_parent": {
  2223. "__id__": 11
  2224. },
  2225. "_children": [],
  2226. "_active": true,
  2227. "_level": 3,
  2228. "_components": [
  2229. {
  2230. "__id__": 61
  2231. }
  2232. ],
  2233. "_prefab": {
  2234. "__id__": 62
  2235. },
  2236. "_opacity": 255,
  2237. "_color": {
  2238. "__type__": "cc.Color",
  2239. "r": 255,
  2240. "g": 255,
  2241. "b": 255,
  2242. "a": 255
  2243. },
  2244. "_contentSize": {
  2245. "__type__": "cc.Size",
  2246. "width": 147,
  2247. "height": 40
  2248. },
  2249. "_anchorPoint": {
  2250. "__type__": "cc.Vec2",
  2251. "x": 0.5,
  2252. "y": 0.5
  2253. },
  2254. "_quat": {
  2255. "__type__": "cc.Quat",
  2256. "x": 0,
  2257. "y": 0,
  2258. "z": 0,
  2259. "w": 1
  2260. },
  2261. "_skewX": 0,
  2262. "_skewY": 0,
  2263. "groupIndex": 0,
  2264. "_id": "",
  2265. "_trs": {
  2266. "__type__": "TypedArray",
  2267. "ctor": "Float64Array",
  2268. "array": [
  2269. 0,
  2270. 0,
  2271. 0,
  2272. 0,
  2273. 0,
  2274. 0,
  2275. 1,
  2276. 1,
  2277. 1,
  2278. 1
  2279. ]
  2280. }
  2281. },
  2282. {
  2283. "__type__": "cc.Label",
  2284. "_name": "",
  2285. "_objFlags": 0,
  2286. "node": {
  2287. "__id__": 60
  2288. },
  2289. "_enabled": true,
  2290. "_useOriginalSize": false,
  2291. "_string": "点击查看",
  2292. "_N$string": "点击查看",
  2293. "_fontSize": 35,
  2294. "_lineHeight": 40,
  2295. "_enableWrapText": false,
  2296. "_N$file": null,
  2297. "_isSystemFontUsed": true,
  2298. "_spacingX": 0,
  2299. "_batchAsBitmap": false,
  2300. "_N$horizontalAlign": 1,
  2301. "_N$verticalAlign": 1,
  2302. "_N$fontFamily": "Arial",
  2303. "_N$overflow": 2,
  2304. "_N$cacheMode": 0,
  2305. "_id": ""
  2306. },
  2307. {
  2308. "__type__": "cc.PrefabInfo",
  2309. "root": {
  2310. "__id__": 1
  2311. },
  2312. "asset": {
  2313. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2314. },
  2315. "fileId": "906tXojwlFe5BMlbzTPH4Y",
  2316. "sync": false
  2317. },
  2318. {
  2319. "__type__": "cc.Sprite",
  2320. "_name": "",
  2321. "_objFlags": 0,
  2322. "node": {
  2323. "__id__": 11
  2324. },
  2325. "_enabled": true,
  2326. "_spriteFrame": {
  2327. "__uuid__": "5b90eb3b-6c70-485e-adf8-c2796522a9a9"
  2328. },
  2329. "_type": 1,
  2330. "_sizeMode": 0,
  2331. "_fillType": 0,
  2332. "_fillCenter": {
  2333. "__type__": "cc.Vec2",
  2334. "x": 0,
  2335. "y": 0
  2336. },
  2337. "_fillStart": 0,
  2338. "_fillRange": 0,
  2339. "_isTrimmedMode": true,
  2340. "_state": 0,
  2341. "_atlas": {
  2342. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  2343. },
  2344. "_srcBlendFactor": 770,
  2345. "_dstBlendFactor": 771,
  2346. "_id": ""
  2347. },
  2348. {
  2349. "__type__": "cc.Widget",
  2350. "_name": "",
  2351. "_objFlags": 0,
  2352. "node": {
  2353. "__id__": 11
  2354. },
  2355. "_enabled": true,
  2356. "alignMode": 0,
  2357. "_target": null,
  2358. "_alignFlags": 45,
  2359. "_left": 0,
  2360. "_right": 0,
  2361. "_top": 0,
  2362. "_bottom": 0,
  2363. "_verticalCenter": 0,
  2364. "_horizontalCenter": 0,
  2365. "_isAbsLeft": true,
  2366. "_isAbsRight": true,
  2367. "_isAbsTop": true,
  2368. "_isAbsBottom": true,
  2369. "_isAbsHorizontalCenter": true,
  2370. "_isAbsVerticalCenter": true,
  2371. "_originalWidth": 100,
  2372. "_originalHeight": 40,
  2373. "_id": ""
  2374. },
  2375. {
  2376. "__type__": "cc.PrefabInfo",
  2377. "root": {
  2378. "__id__": 1
  2379. },
  2380. "asset": {
  2381. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2382. },
  2383. "fileId": "e1oUJotbtCCZ5uJvQWjDLX",
  2384. "sync": false
  2385. },
  2386. {
  2387. "__type__": "cc.PrefabInfo",
  2388. "root": {
  2389. "__id__": 1
  2390. },
  2391. "asset": {
  2392. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2393. },
  2394. "fileId": "52A9AUsDNKeIFu684IiLKM",
  2395. "sync": false
  2396. },
  2397. {
  2398. "__type__": "cc.Node",
  2399. "_name": "Panel_Statement",
  2400. "_objFlags": 0,
  2401. "_parent": {
  2402. "__id__": 1
  2403. },
  2404. "_children": [
  2405. {
  2406. "__id__": 68
  2407. },
  2408. {
  2409. "__id__": 72
  2410. },
  2411. {
  2412. "__id__": 76
  2413. },
  2414. {
  2415. "__id__": 82
  2416. },
  2417. {
  2418. "__id__": 88
  2419. },
  2420. {
  2421. "__id__": 92
  2422. },
  2423. {
  2424. "__id__": 96
  2425. },
  2426. {
  2427. "__id__": 105
  2428. }
  2429. ],
  2430. "_active": false,
  2431. "_level": 2,
  2432. "_components": [
  2433. {
  2434. "__id__": 109
  2435. },
  2436. {
  2437. "__id__": 110
  2438. }
  2439. ],
  2440. "_prefab": {
  2441. "__id__": 111
  2442. },
  2443. "_opacity": 255,
  2444. "_color": {
  2445. "__type__": "cc.Color",
  2446. "r": 255,
  2447. "g": 255,
  2448. "b": 255,
  2449. "a": 255
  2450. },
  2451. "_contentSize": {
  2452. "__type__": "cc.Size",
  2453. "width": 821.4,
  2454. "height": 589
  2455. },
  2456. "_anchorPoint": {
  2457. "__type__": "cc.Vec2",
  2458. "x": 0.5,
  2459. "y": 0.5
  2460. },
  2461. "_quat": {
  2462. "__type__": "cc.Quat",
  2463. "x": 0,
  2464. "y": 0,
  2465. "z": 0,
  2466. "w": 1
  2467. },
  2468. "_skewX": 0,
  2469. "_skewY": 0,
  2470. "groupIndex": 0,
  2471. "_id": "",
  2472. "_trs": {
  2473. "__type__": "TypedArray",
  2474. "ctor": "Float64Array",
  2475. "array": [
  2476. 0,
  2477. 214.5,
  2478. 0,
  2479. 0,
  2480. 0,
  2481. 0,
  2482. 1,
  2483. 1,
  2484. 1,
  2485. 1
  2486. ]
  2487. }
  2488. },
  2489. {
  2490. "__type__": "cc.Node",
  2491. "_name": "TitleLabel",
  2492. "_objFlags": 0,
  2493. "_parent": {
  2494. "__id__": 67
  2495. },
  2496. "_children": [],
  2497. "_active": true,
  2498. "_level": 3,
  2499. "_components": [
  2500. {
  2501. "__id__": 69
  2502. },
  2503. {
  2504. "__id__": 70
  2505. }
  2506. ],
  2507. "_prefab": {
  2508. "__id__": 71
  2509. },
  2510. "_opacity": 255,
  2511. "_color": {
  2512. "__type__": "cc.Color",
  2513. "r": 0,
  2514. "g": 0,
  2515. "b": 0,
  2516. "a": 255
  2517. },
  2518. "_contentSize": {
  2519. "__type__": "cc.Size",
  2520. "width": 461.4,
  2521. "height": 72
  2522. },
  2523. "_anchorPoint": {
  2524. "__type__": "cc.Vec2",
  2525. "x": 0.5,
  2526. "y": 0.5
  2527. },
  2528. "_quat": {
  2529. "__type__": "cc.Quat",
  2530. "x": 0,
  2531. "y": 0,
  2532. "z": 0,
  2533. "w": 1
  2534. },
  2535. "_skewX": 0,
  2536. "_skewY": 0,
  2537. "groupIndex": 0,
  2538. "_id": "",
  2539. "_trs": {
  2540. "__type__": "TypedArray",
  2541. "ctor": "Float64Array",
  2542. "array": [
  2543. 0,
  2544. 236,
  2545. 0,
  2546. 0,
  2547. 0,
  2548. 0,
  2549. 1,
  2550. 1,
  2551. 1,
  2552. 1
  2553. ]
  2554. }
  2555. },
  2556. {
  2557. "__type__": "cc.Label",
  2558. "_name": "",
  2559. "_objFlags": 0,
  2560. "node": {
  2561. "__id__": 68
  2562. },
  2563. "_enabled": true,
  2564. "_useOriginalSize": false,
  2565. "_string": "今日头条",
  2566. "_N$string": "今日头条",
  2567. "_fontSize": 65,
  2568. "_lineHeight": 70,
  2569. "_enableWrapText": true,
  2570. "_N$file": null,
  2571. "_isSystemFontUsed": true,
  2572. "_spacingX": 0,
  2573. "_batchAsBitmap": false,
  2574. "_N$horizontalAlign": 1,
  2575. "_N$verticalAlign": 1,
  2576. "_N$fontFamily": "Arial",
  2577. "_N$overflow": 2,
  2578. "_N$cacheMode": 0,
  2579. "_id": ""
  2580. },
  2581. {
  2582. "__type__": "cc.Widget",
  2583. "_name": "",
  2584. "_objFlags": 0,
  2585. "node": {
  2586. "__id__": 68
  2587. },
  2588. "_enabled": true,
  2589. "alignMode": 1,
  2590. "_target": null,
  2591. "_alignFlags": 1,
  2592. "_left": 0,
  2593. "_right": 0,
  2594. "_top": 22.5,
  2595. "_bottom": 0,
  2596. "_verticalCenter": 0,
  2597. "_horizontalCenter": 0,
  2598. "_isAbsLeft": true,
  2599. "_isAbsRight": true,
  2600. "_isAbsTop": true,
  2601. "_isAbsBottom": true,
  2602. "_isAbsHorizontalCenter": true,
  2603. "_isAbsVerticalCenter": true,
  2604. "_originalWidth": 0,
  2605. "_originalHeight": 0,
  2606. "_id": ""
  2607. },
  2608. {
  2609. "__type__": "cc.PrefabInfo",
  2610. "root": {
  2611. "__id__": 1
  2612. },
  2613. "asset": {
  2614. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2615. },
  2616. "fileId": "a8OSgaiURBr4oP1uzhkFT5",
  2617. "sync": false
  2618. },
  2619. {
  2620. "__type__": "cc.Node",
  2621. "_name": "DesLabel",
  2622. "_objFlags": 0,
  2623. "_parent": {
  2624. "__id__": 67
  2625. },
  2626. "_children": [],
  2627. "_active": true,
  2628. "_level": 3,
  2629. "_components": [
  2630. {
  2631. "__id__": 73
  2632. },
  2633. {
  2634. "__id__": 74
  2635. }
  2636. ],
  2637. "_prefab": {
  2638. "__id__": 75
  2639. },
  2640. "_opacity": 255,
  2641. "_color": {
  2642. "__type__": "cc.Color",
  2643. "r": 0,
  2644. "g": 0,
  2645. "b": 0,
  2646. "a": 255
  2647. },
  2648. "_contentSize": {
  2649. "__type__": "cc.Size",
  2650. "width": 461.4,
  2651. "height": 60
  2652. },
  2653. "_anchorPoint": {
  2654. "__type__": "cc.Vec2",
  2655. "x": 0.5,
  2656. "y": 0.5
  2657. },
  2658. "_quat": {
  2659. "__type__": "cc.Quat",
  2660. "x": 0,
  2661. "y": 0,
  2662. "z": 0,
  2663. "w": 1
  2664. },
  2665. "_skewX": 0,
  2666. "_skewY": 0,
  2667. "groupIndex": 0,
  2668. "_id": "",
  2669. "_trs": {
  2670. "__type__": "TypedArray",
  2671. "ctor": "Float64Array",
  2672. "array": [
  2673. 0,
  2674. -245,
  2675. 0,
  2676. 0,
  2677. 0,
  2678. 0,
  2679. 1,
  2680. 1,
  2681. 1,
  2682. 1
  2683. ]
  2684. }
  2685. },
  2686. {
  2687. "__type__": "cc.Label",
  2688. "_name": "",
  2689. "_objFlags": 0,
  2690. "node": {
  2691. "__id__": 72
  2692. },
  2693. "_enabled": true,
  2694. "_useOriginalSize": false,
  2695. "_string": "看新闻,用今日头条",
  2696. "_N$string": "看新闻,用今日头条",
  2697. "_fontSize": 50,
  2698. "_lineHeight": 55,
  2699. "_enableWrapText": true,
  2700. "_N$file": null,
  2701. "_isSystemFontUsed": true,
  2702. "_spacingX": 0,
  2703. "_batchAsBitmap": false,
  2704. "_N$horizontalAlign": 1,
  2705. "_N$verticalAlign": 1,
  2706. "_N$fontFamily": "Arial",
  2707. "_N$overflow": 2,
  2708. "_N$cacheMode": 0,
  2709. "_id": ""
  2710. },
  2711. {
  2712. "__type__": "cc.Widget",
  2713. "_name": "",
  2714. "_objFlags": 0,
  2715. "node": {
  2716. "__id__": 72
  2717. },
  2718. "_enabled": true,
  2719. "alignMode": 1,
  2720. "_target": null,
  2721. "_alignFlags": 4,
  2722. "_left": 0,
  2723. "_right": 0,
  2724. "_top": 0,
  2725. "_bottom": 19.5,
  2726. "_verticalCenter": 0,
  2727. "_horizontalCenter": 0,
  2728. "_isAbsLeft": true,
  2729. "_isAbsRight": true,
  2730. "_isAbsTop": true,
  2731. "_isAbsBottom": true,
  2732. "_isAbsHorizontalCenter": true,
  2733. "_isAbsVerticalCenter": true,
  2734. "_originalWidth": 0,
  2735. "_originalHeight": 0,
  2736. "_id": ""
  2737. },
  2738. {
  2739. "__type__": "cc.PrefabInfo",
  2740. "root": {
  2741. "__id__": 1
  2742. },
  2743. "asset": {
  2744. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2745. },
  2746. "fileId": "142qidC0VF+I79CI/GV/U+",
  2747. "sync": false
  2748. },
  2749. {
  2750. "__type__": "cc.Node",
  2751. "_name": "Btn_Download",
  2752. "_objFlags": 0,
  2753. "_parent": {
  2754. "__id__": 67
  2755. },
  2756. "_children": [],
  2757. "_active": true,
  2758. "_level": 3,
  2759. "_components": [
  2760. {
  2761. "__id__": 77
  2762. },
  2763. {
  2764. "__id__": 79
  2765. },
  2766. {
  2767. "__id__": 80
  2768. }
  2769. ],
  2770. "_prefab": {
  2771. "__id__": 81
  2772. },
  2773. "_opacity": 255,
  2774. "_color": {
  2775. "__type__": "cc.Color",
  2776. "r": 255,
  2777. "g": 255,
  2778. "b": 255,
  2779. "a": 255
  2780. },
  2781. "_contentSize": {
  2782. "__type__": "cc.Size",
  2783. "width": 395,
  2784. "height": 111
  2785. },
  2786. "_anchorPoint": {
  2787. "__type__": "cc.Vec2",
  2788. "x": 0.5,
  2789. "y": 0.5
  2790. },
  2791. "_quat": {
  2792. "__type__": "cc.Quat",
  2793. "x": 0,
  2794. "y": 0,
  2795. "z": 0,
  2796. "w": 1
  2797. },
  2798. "_skewX": 0,
  2799. "_skewY": 0,
  2800. "groupIndex": 0,
  2801. "_id": "",
  2802. "_trs": {
  2803. "__type__": "TypedArray",
  2804. "ctor": "Float64Array",
  2805. "array": [
  2806. 0,
  2807. 350,
  2808. 0,
  2809. 0,
  2810. 0,
  2811. 0,
  2812. 1,
  2813. 1,
  2814. 1,
  2815. 1
  2816. ]
  2817. }
  2818. },
  2819. {
  2820. "__type__": "cc.Button",
  2821. "_name": "",
  2822. "_objFlags": 0,
  2823. "node": {
  2824. "__id__": 76
  2825. },
  2826. "_enabled": true,
  2827. "duration": 0.1,
  2828. "zoomScale": 1.2,
  2829. "clickEvents": [
  2830. {
  2831. "__id__": 78
  2832. }
  2833. ],
  2834. "_N$interactable": true,
  2835. "_N$enableAutoGrayEffect": false,
  2836. "_N$transition": 3,
  2837. "transition": 3,
  2838. "_N$normalColor": {
  2839. "__type__": "cc.Color",
  2840. "r": 230,
  2841. "g": 230,
  2842. "b": 230,
  2843. "a": 255
  2844. },
  2845. "_N$pressedColor": {
  2846. "__type__": "cc.Color",
  2847. "r": 200,
  2848. "g": 200,
  2849. "b": 200,
  2850. "a": 255
  2851. },
  2852. "pressedColor": {
  2853. "__type__": "cc.Color",
  2854. "r": 200,
  2855. "g": 200,
  2856. "b": 200,
  2857. "a": 255
  2858. },
  2859. "_N$hoverColor": {
  2860. "__type__": "cc.Color",
  2861. "r": 255,
  2862. "g": 255,
  2863. "b": 255,
  2864. "a": 255
  2865. },
  2866. "hoverColor": {
  2867. "__type__": "cc.Color",
  2868. "r": 255,
  2869. "g": 255,
  2870. "b": 255,
  2871. "a": 255
  2872. },
  2873. "_N$disabledColor": {
  2874. "__type__": "cc.Color",
  2875. "r": 120,
  2876. "g": 120,
  2877. "b": 120,
  2878. "a": 200
  2879. },
  2880. "_N$normalSprite": {
  2881. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2882. },
  2883. "_N$pressedSprite": {
  2884. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2885. },
  2886. "pressedSprite": {
  2887. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2888. },
  2889. "_N$hoverSprite": {
  2890. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2891. },
  2892. "hoverSprite": {
  2893. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2894. },
  2895. "_N$disabledSprite": {
  2896. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2897. },
  2898. "_N$target": {
  2899. "__id__": 76
  2900. },
  2901. "_id": ""
  2902. },
  2903. {
  2904. "__type__": "cc.ClickEvent",
  2905. "target": {
  2906. "__id__": 1
  2907. },
  2908. "component": "",
  2909. "_componentId": "a2a680a5EJDfKlZKlM8P3Vv",
  2910. "handler": "onBtnClickHandler",
  2911. "customEventData": ""
  2912. },
  2913. {
  2914. "__type__": "cc.Sprite",
  2915. "_name": "",
  2916. "_objFlags": 0,
  2917. "node": {
  2918. "__id__": 76
  2919. },
  2920. "_enabled": true,
  2921. "_spriteFrame": {
  2922. "__uuid__": "b7b6b92f-b684-43aa-a7c7-9620adcb8436"
  2923. },
  2924. "_type": 0,
  2925. "_sizeMode": 1,
  2926. "_fillType": 0,
  2927. "_fillCenter": {
  2928. "__type__": "cc.Vec2",
  2929. "x": 0,
  2930. "y": 0
  2931. },
  2932. "_fillStart": 0,
  2933. "_fillRange": 0,
  2934. "_isTrimmedMode": true,
  2935. "_state": 0,
  2936. "_atlas": null,
  2937. "_srcBlendFactor": 770,
  2938. "_dstBlendFactor": 771,
  2939. "_id": ""
  2940. },
  2941. {
  2942. "__type__": "cc.Widget",
  2943. "_name": "",
  2944. "_objFlags": 0,
  2945. "node": {
  2946. "__id__": 76
  2947. },
  2948. "_enabled": true,
  2949. "alignMode": 1,
  2950. "_target": null,
  2951. "_alignFlags": 1,
  2952. "_left": 0,
  2953. "_right": 0,
  2954. "_top": -111,
  2955. "_bottom": 589,
  2956. "_verticalCenter": 0,
  2957. "_horizontalCenter": 0,
  2958. "_isAbsLeft": true,
  2959. "_isAbsRight": true,
  2960. "_isAbsTop": true,
  2961. "_isAbsBottom": true,
  2962. "_isAbsHorizontalCenter": true,
  2963. "_isAbsVerticalCenter": true,
  2964. "_originalWidth": 0,
  2965. "_originalHeight": 0,
  2966. "_id": ""
  2967. },
  2968. {
  2969. "__type__": "cc.PrefabInfo",
  2970. "root": {
  2971. "__id__": 1
  2972. },
  2973. "asset": {
  2974. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  2975. },
  2976. "fileId": "94fizOXBBPH7IjvelmwKoN",
  2977. "sync": false
  2978. },
  2979. {
  2980. "__type__": "cc.Node",
  2981. "_name": "IconMask",
  2982. "_objFlags": 0,
  2983. "_parent": {
  2984. "__id__": 67
  2985. },
  2986. "_children": [
  2987. {
  2988. "__id__": 83
  2989. }
  2990. ],
  2991. "_active": true,
  2992. "_level": 3,
  2993. "_components": [
  2994. {
  2995. "__id__": 86
  2996. }
  2997. ],
  2998. "_prefab": {
  2999. "__id__": 87
  3000. },
  3001. "_opacity": 255,
  3002. "_color": {
  3003. "__type__": "cc.Color",
  3004. "r": 255,
  3005. "g": 255,
  3006. "b": 255,
  3007. "a": 255
  3008. },
  3009. "_contentSize": {
  3010. "__type__": "cc.Size",
  3011. "width": 255,
  3012. "height": 257
  3013. },
  3014. "_anchorPoint": {
  3015. "__type__": "cc.Vec2",
  3016. "x": 0.5,
  3017. "y": 0.5
  3018. },
  3019. "_quat": {
  3020. "__type__": "cc.Quat",
  3021. "x": 0,
  3022. "y": 0,
  3023. "z": 0,
  3024. "w": 1
  3025. },
  3026. "_skewX": 0,
  3027. "_skewY": 0,
  3028. "groupIndex": 0,
  3029. "_id": "",
  3030. "_trs": {
  3031. "__type__": "TypedArray",
  3032. "ctor": "Float64Array",
  3033. "array": [
  3034. 0,
  3035. -5,
  3036. 0,
  3037. 0,
  3038. 0,
  3039. 0,
  3040. 1,
  3041. 1,
  3042. 1,
  3043. 1
  3044. ]
  3045. }
  3046. },
  3047. {
  3048. "__type__": "cc.Node",
  3049. "_name": "Icon",
  3050. "_objFlags": 0,
  3051. "_parent": {
  3052. "__id__": 82
  3053. },
  3054. "_children": [],
  3055. "_active": true,
  3056. "_level": 3,
  3057. "_components": [
  3058. {
  3059. "__id__": 84
  3060. }
  3061. ],
  3062. "_prefab": {
  3063. "__id__": 85
  3064. },
  3065. "_opacity": 255,
  3066. "_color": {
  3067. "__type__": "cc.Color",
  3068. "r": 255,
  3069. "g": 255,
  3070. "b": 255,
  3071. "a": 255
  3072. },
  3073. "_contentSize": {
  3074. "__type__": "cc.Size",
  3075. "width": 283.7,
  3076. "height": 282.6
  3077. },
  3078. "_anchorPoint": {
  3079. "__type__": "cc.Vec2",
  3080. "x": 0.5,
  3081. "y": 0.5
  3082. },
  3083. "_quat": {
  3084. "__type__": "cc.Quat",
  3085. "x": 0,
  3086. "y": 0,
  3087. "z": 0,
  3088. "w": 1
  3089. },
  3090. "_skewX": 0,
  3091. "_skewY": 0,
  3092. "groupIndex": 0,
  3093. "_id": "",
  3094. "_trs": {
  3095. "__type__": "TypedArray",
  3096. "ctor": "Float64Array",
  3097. "array": [
  3098. -1.7,
  3099. 1.3,
  3100. 0,
  3101. 0,
  3102. 0,
  3103. 0,
  3104. 1,
  3105. 0.8,
  3106. 0.8,
  3107. 1
  3108. ]
  3109. }
  3110. },
  3111. {
  3112. "__type__": "cc.Sprite",
  3113. "_name": "",
  3114. "_objFlags": 0,
  3115. "node": {
  3116. "__id__": 83
  3117. },
  3118. "_enabled": true,
  3119. "_spriteFrame": null,
  3120. "_type": 0,
  3121. "_sizeMode": 0,
  3122. "_fillType": 0,
  3123. "_fillCenter": {
  3124. "__type__": "cc.Vec2",
  3125. "x": 0,
  3126. "y": 0
  3127. },
  3128. "_fillStart": 0,
  3129. "_fillRange": 0,
  3130. "_isTrimmedMode": true,
  3131. "_state": 0,
  3132. "_atlas": null,
  3133. "_srcBlendFactor": 770,
  3134. "_dstBlendFactor": 771,
  3135. "_id": ""
  3136. },
  3137. {
  3138. "__type__": "cc.PrefabInfo",
  3139. "root": {
  3140. "__id__": 1
  3141. },
  3142. "asset": {
  3143. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3144. },
  3145. "fileId": "2dEi4IkydFLZCwlP7+T6yE",
  3146. "sync": false
  3147. },
  3148. {
  3149. "__type__": "cc.Widget",
  3150. "_name": "",
  3151. "_objFlags": 0,
  3152. "node": {
  3153. "__id__": 82
  3154. },
  3155. "_enabled": true,
  3156. "alignMode": 1,
  3157. "_target": null,
  3158. "_alignFlags": 4,
  3159. "_left": 0,
  3160. "_right": 0,
  3161. "_top": 171,
  3162. "_bottom": 161,
  3163. "_verticalCenter": 0,
  3164. "_horizontalCenter": 0,
  3165. "_isAbsLeft": true,
  3166. "_isAbsRight": true,
  3167. "_isAbsTop": true,
  3168. "_isAbsBottom": true,
  3169. "_isAbsHorizontalCenter": true,
  3170. "_isAbsVerticalCenter": true,
  3171. "_originalWidth": 0,
  3172. "_originalHeight": 0,
  3173. "_id": ""
  3174. },
  3175. {
  3176. "__type__": "cc.PrefabInfo",
  3177. "root": {
  3178. "__id__": 1
  3179. },
  3180. "asset": {
  3181. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3182. },
  3183. "fileId": "11cJW7dJlMYJvbvFq1HjEO",
  3184. "sync": false
  3185. },
  3186. {
  3187. "__type__": "cc.Node",
  3188. "_name": "adImage",
  3189. "_objFlags": 0,
  3190. "_parent": {
  3191. "__id__": 67
  3192. },
  3193. "_children": [],
  3194. "_active": true,
  3195. "_level": 3,
  3196. "_components": [
  3197. {
  3198. "__id__": 89
  3199. },
  3200. {
  3201. "__id__": 90
  3202. }
  3203. ],
  3204. "_prefab": {
  3205. "__id__": 91
  3206. },
  3207. "_opacity": 255,
  3208. "_color": {
  3209. "__type__": "cc.Color",
  3210. "r": 255,
  3211. "g": 255,
  3212. "b": 255,
  3213. "a": 255
  3214. },
  3215. "_contentSize": {
  3216. "__type__": "cc.Size",
  3217. "width": 821.4,
  3218. "height": 389
  3219. },
  3220. "_anchorPoint": {
  3221. "__type__": "cc.Vec2",
  3222. "x": 0.5,
  3223. "y": 0.5
  3224. },
  3225. "_quat": {
  3226. "__type__": "cc.Quat",
  3227. "x": 0,
  3228. "y": 0,
  3229. "z": 0,
  3230. "w": 1
  3231. },
  3232. "_skewX": 0,
  3233. "_skewY": 0,
  3234. "groupIndex": 0,
  3235. "_id": "",
  3236. "_trs": {
  3237. "__type__": "TypedArray",
  3238. "ctor": "Float64Array",
  3239. "array": [
  3240. 0,
  3241. -5,
  3242. 0,
  3243. 0,
  3244. 0,
  3245. 0,
  3246. 1,
  3247. 1,
  3248. 1,
  3249. 1
  3250. ]
  3251. }
  3252. },
  3253. {
  3254. "__type__": "cc.Sprite",
  3255. "_name": "",
  3256. "_objFlags": 0,
  3257. "node": {
  3258. "__id__": 88
  3259. },
  3260. "_enabled": true,
  3261. "_spriteFrame": null,
  3262. "_type": 0,
  3263. "_sizeMode": 0,
  3264. "_fillType": 0,
  3265. "_fillCenter": {
  3266. "__type__": "cc.Vec2",
  3267. "x": 0,
  3268. "y": 0
  3269. },
  3270. "_fillStart": 0,
  3271. "_fillRange": 0,
  3272. "_isTrimmedMode": true,
  3273. "_state": 0,
  3274. "_atlas": null,
  3275. "_srcBlendFactor": 770,
  3276. "_dstBlendFactor": 771,
  3277. "_id": ""
  3278. },
  3279. {
  3280. "__type__": "cc.Widget",
  3281. "_name": "",
  3282. "_objFlags": 0,
  3283. "node": {
  3284. "__id__": 88
  3285. },
  3286. "_enabled": true,
  3287. "alignMode": 1,
  3288. "_target": null,
  3289. "_alignFlags": 40,
  3290. "_left": 0,
  3291. "_right": 0,
  3292. "_top": 0,
  3293. "_bottom": 0,
  3294. "_verticalCenter": 0,
  3295. "_horizontalCenter": 0,
  3296. "_isAbsLeft": true,
  3297. "_isAbsRight": true,
  3298. "_isAbsTop": true,
  3299. "_isAbsBottom": true,
  3300. "_isAbsHorizontalCenter": true,
  3301. "_isAbsVerticalCenter": true,
  3302. "_originalWidth": 817,
  3303. "_originalHeight": 0,
  3304. "_id": ""
  3305. },
  3306. {
  3307. "__type__": "cc.PrefabInfo",
  3308. "root": {
  3309. "__id__": 1
  3310. },
  3311. "asset": {
  3312. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3313. },
  3314. "fileId": "af7/g2YcVMYJkWTZJpxNg6",
  3315. "sync": false
  3316. },
  3317. {
  3318. "__type__": "cc.Node",
  3319. "_name": "Mask",
  3320. "_objFlags": 0,
  3321. "_parent": {
  3322. "__id__": 67
  3323. },
  3324. "_children": [],
  3325. "_active": true,
  3326. "_level": 3,
  3327. "_components": [
  3328. {
  3329. "__id__": 93
  3330. },
  3331. {
  3332. "__id__": 94
  3333. }
  3334. ],
  3335. "_prefab": {
  3336. "__id__": 95
  3337. },
  3338. "_opacity": 113,
  3339. "_color": {
  3340. "__type__": "cc.Color",
  3341. "r": 255,
  3342. "g": 255,
  3343. "b": 255,
  3344. "a": 255
  3345. },
  3346. "_contentSize": {
  3347. "__type__": "cc.Size",
  3348. "width": 65,
  3349. "height": 34
  3350. },
  3351. "_anchorPoint": {
  3352. "__type__": "cc.Vec2",
  3353. "x": 1,
  3354. "y": 0
  3355. },
  3356. "_quat": {
  3357. "__type__": "cc.Quat",
  3358. "x": 0,
  3359. "y": 0,
  3360. "z": 0,
  3361. "w": 1
  3362. },
  3363. "_skewX": 0,
  3364. "_skewY": 0,
  3365. "groupIndex": 0,
  3366. "_id": "",
  3367. "_trs": {
  3368. "__type__": "TypedArray",
  3369. "ctor": "Float64Array",
  3370. "array": [
  3371. 411.6,
  3372. -295.4,
  3373. 0,
  3374. 0,
  3375. 0,
  3376. 0,
  3377. 1,
  3378. 1,
  3379. 1,
  3380. 1
  3381. ]
  3382. }
  3383. },
  3384. {
  3385. "__type__": "cc.Sprite",
  3386. "_name": "",
  3387. "_objFlags": 0,
  3388. "node": {
  3389. "__id__": 92
  3390. },
  3391. "_enabled": true,
  3392. "_spriteFrame": {
  3393. "__uuid__": "a93501a7-e6cb-49f4-ab5d-fc2671f190c7"
  3394. },
  3395. "_type": 0,
  3396. "_sizeMode": 1,
  3397. "_fillType": 0,
  3398. "_fillCenter": {
  3399. "__type__": "cc.Vec2",
  3400. "x": 0,
  3401. "y": 0
  3402. },
  3403. "_fillStart": 0,
  3404. "_fillRange": 0,
  3405. "_isTrimmedMode": true,
  3406. "_state": 0,
  3407. "_atlas": {
  3408. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  3409. },
  3410. "_srcBlendFactor": 770,
  3411. "_dstBlendFactor": 771,
  3412. "_id": ""
  3413. },
  3414. {
  3415. "__type__": "cc.Widget",
  3416. "_name": "",
  3417. "_objFlags": 0,
  3418. "node": {
  3419. "__id__": 92
  3420. },
  3421. "_enabled": true,
  3422. "alignMode": 1,
  3423. "_target": null,
  3424. "_alignFlags": 36,
  3425. "_left": 0,
  3426. "_right": -0.9000000000000341,
  3427. "_top": 0,
  3428. "_bottom": -0.8999999999999773,
  3429. "_verticalCenter": 0,
  3430. "_horizontalCenter": 0,
  3431. "_isAbsLeft": true,
  3432. "_isAbsRight": true,
  3433. "_isAbsTop": true,
  3434. "_isAbsBottom": true,
  3435. "_isAbsHorizontalCenter": true,
  3436. "_isAbsVerticalCenter": true,
  3437. "_originalWidth": 0,
  3438. "_originalHeight": 0,
  3439. "_id": ""
  3440. },
  3441. {
  3442. "__type__": "cc.PrefabInfo",
  3443. "root": {
  3444. "__id__": 1
  3445. },
  3446. "asset": {
  3447. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3448. },
  3449. "fileId": "f9iewnFxdEnJCzmA3cM51b",
  3450. "sync": false
  3451. },
  3452. {
  3453. "__type__": "cc.Node",
  3454. "_name": "Btn_Close",
  3455. "_objFlags": 0,
  3456. "_parent": {
  3457. "__id__": 67
  3458. },
  3459. "_children": [
  3460. {
  3461. "__id__": 97
  3462. }
  3463. ],
  3464. "_active": true,
  3465. "_level": 3,
  3466. "_components": [
  3467. {
  3468. "__id__": 101
  3469. },
  3470. {
  3471. "__id__": 103
  3472. }
  3473. ],
  3474. "_prefab": {
  3475. "__id__": 104
  3476. },
  3477. "_opacity": 255,
  3478. "_color": {
  3479. "__type__": "cc.Color",
  3480. "r": 255,
  3481. "g": 255,
  3482. "b": 255,
  3483. "a": 255
  3484. },
  3485. "_contentSize": {
  3486. "__type__": "cc.Size",
  3487. "width": 40,
  3488. "height": 40
  3489. },
  3490. "_anchorPoint": {
  3491. "__type__": "cc.Vec2",
  3492. "x": 0,
  3493. "y": 1
  3494. },
  3495. "_quat": {
  3496. "__type__": "cc.Quat",
  3497. "x": 0,
  3498. "y": 0,
  3499. "z": 0,
  3500. "w": 1
  3501. },
  3502. "_skewX": 0,
  3503. "_skewY": 0,
  3504. "groupIndex": 0,
  3505. "_id": "",
  3506. "_trs": {
  3507. "__type__": "TypedArray",
  3508. "ctor": "Float64Array",
  3509. "array": [
  3510. -410.7,
  3511. 294.5,
  3512. 0,
  3513. 0,
  3514. 0,
  3515. 0,
  3516. 1,
  3517. 1,
  3518. 1,
  3519. 1
  3520. ]
  3521. }
  3522. },
  3523. {
  3524. "__type__": "cc.Node",
  3525. "_name": "Background",
  3526. "_objFlags": 0,
  3527. "_parent": {
  3528. "__id__": 96
  3529. },
  3530. "_children": [],
  3531. "_active": true,
  3532. "_level": 2,
  3533. "_components": [
  3534. {
  3535. "__id__": 98
  3536. },
  3537. {
  3538. "__id__": 99
  3539. }
  3540. ],
  3541. "_prefab": {
  3542. "__id__": 100
  3543. },
  3544. "_opacity": 255,
  3545. "_color": {
  3546. "__type__": "cc.Color",
  3547. "r": 255,
  3548. "g": 255,
  3549. "b": 255,
  3550. "a": 255
  3551. },
  3552. "_contentSize": {
  3553. "__type__": "cc.Size",
  3554. "width": 40,
  3555. "height": 40
  3556. },
  3557. "_anchorPoint": {
  3558. "__type__": "cc.Vec2",
  3559. "x": 0,
  3560. "y": 1
  3561. },
  3562. "_quat": {
  3563. "__type__": "cc.Quat",
  3564. "x": 0,
  3565. "y": 0,
  3566. "z": 0,
  3567. "w": 1
  3568. },
  3569. "_skewX": 0,
  3570. "_skewY": 0,
  3571. "groupIndex": 0,
  3572. "_id": "",
  3573. "_trs": {
  3574. "__type__": "TypedArray",
  3575. "ctor": "Float64Array",
  3576. "array": [
  3577. 0,
  3578. 0,
  3579. 0,
  3580. 0,
  3581. 0,
  3582. 0,
  3583. 1,
  3584. 1,
  3585. 1,
  3586. 1
  3587. ]
  3588. }
  3589. },
  3590. {
  3591. "__type__": "cc.Sprite",
  3592. "_name": "",
  3593. "_objFlags": 0,
  3594. "node": {
  3595. "__id__": 97
  3596. },
  3597. "_enabled": true,
  3598. "_spriteFrame": {
  3599. "__uuid__": "6bd46437-a6ec-4985-ad88-41ea287cd991"
  3600. },
  3601. "_type": 1,
  3602. "_sizeMode": 0,
  3603. "_fillType": 0,
  3604. "_fillCenter": {
  3605. "__type__": "cc.Vec2",
  3606. "x": 0,
  3607. "y": 0
  3608. },
  3609. "_fillStart": 0,
  3610. "_fillRange": 0,
  3611. "_isTrimmedMode": true,
  3612. "_state": 0,
  3613. "_atlas": {
  3614. "__uuid__": "eaa6c9f5-9685-45dc-94b4-02b40ba68ee0"
  3615. },
  3616. "_srcBlendFactor": 770,
  3617. "_dstBlendFactor": 771,
  3618. "_id": ""
  3619. },
  3620. {
  3621. "__type__": "cc.Widget",
  3622. "_name": "",
  3623. "_objFlags": 0,
  3624. "node": {
  3625. "__id__": 97
  3626. },
  3627. "_enabled": true,
  3628. "alignMode": 0,
  3629. "_target": null,
  3630. "_alignFlags": 9,
  3631. "_left": 0,
  3632. "_right": -33.2,
  3633. "_top": 0,
  3634. "_bottom": -3.1999999999999993,
  3635. "_verticalCenter": 0,
  3636. "_horizontalCenter": 0,
  3637. "_isAbsLeft": true,
  3638. "_isAbsRight": true,
  3639. "_isAbsTop": true,
  3640. "_isAbsBottom": true,
  3641. "_isAbsHorizontalCenter": true,
  3642. "_isAbsVerticalCenter": true,
  3643. "_originalWidth": 100,
  3644. "_originalHeight": 40,
  3645. "_id": ""
  3646. },
  3647. {
  3648. "__type__": "cc.PrefabInfo",
  3649. "root": {
  3650. "__id__": 1
  3651. },
  3652. "asset": {
  3653. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3654. },
  3655. "fileId": "04+8E6BC9HOau5d2T7cE12",
  3656. "sync": false
  3657. },
  3658. {
  3659. "__type__": "cc.Button",
  3660. "_name": "",
  3661. "_objFlags": 0,
  3662. "node": {
  3663. "__id__": 96
  3664. },
  3665. "_enabled": true,
  3666. "duration": 0.1,
  3667. "zoomScale": 1.2,
  3668. "clickEvents": [
  3669. {
  3670. "__id__": 102
  3671. }
  3672. ],
  3673. "_N$interactable": true,
  3674. "_N$enableAutoGrayEffect": false,
  3675. "_N$transition": 3,
  3676. "transition": 3,
  3677. "_N$normalColor": {
  3678. "__type__": "cc.Color",
  3679. "r": 230,
  3680. "g": 230,
  3681. "b": 230,
  3682. "a": 255
  3683. },
  3684. "_N$pressedColor": {
  3685. "__type__": "cc.Color",
  3686. "r": 200,
  3687. "g": 200,
  3688. "b": 200,
  3689. "a": 255
  3690. },
  3691. "pressedColor": {
  3692. "__type__": "cc.Color",
  3693. "r": 200,
  3694. "g": 200,
  3695. "b": 200,
  3696. "a": 255
  3697. },
  3698. "_N$hoverColor": {
  3699. "__type__": "cc.Color",
  3700. "r": 255,
  3701. "g": 255,
  3702. "b": 255,
  3703. "a": 255
  3704. },
  3705. "hoverColor": {
  3706. "__type__": "cc.Color",
  3707. "r": 255,
  3708. "g": 255,
  3709. "b": 255,
  3710. "a": 255
  3711. },
  3712. "_N$disabledColor": {
  3713. "__type__": "cc.Color",
  3714. "r": 120,
  3715. "g": 120,
  3716. "b": 120,
  3717. "a": 200
  3718. },
  3719. "_N$normalSprite": null,
  3720. "_N$pressedSprite": {
  3721. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3722. },
  3723. "pressedSprite": {
  3724. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3725. },
  3726. "_N$hoverSprite": {
  3727. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3728. },
  3729. "hoverSprite": {
  3730. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3731. },
  3732. "_N$disabledSprite": {
  3733. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3734. },
  3735. "_N$target": {
  3736. "__id__": 97
  3737. },
  3738. "_id": ""
  3739. },
  3740. {
  3741. "__type__": "cc.ClickEvent",
  3742. "target": {
  3743. "__id__": 1
  3744. },
  3745. "component": "",
  3746. "_componentId": "a2a680a5EJDfKlZKlM8P3Vv",
  3747. "handler": "onBtnClickHandler",
  3748. "customEventData": ""
  3749. },
  3750. {
  3751. "__type__": "cc.Widget",
  3752. "_name": "",
  3753. "_objFlags": 0,
  3754. "node": {
  3755. "__id__": 96
  3756. },
  3757. "_enabled": true,
  3758. "alignMode": 1,
  3759. "_target": null,
  3760. "_alignFlags": 9,
  3761. "_left": 0,
  3762. "_right": 0,
  3763. "_top": 0,
  3764. "_bottom": 0,
  3765. "_verticalCenter": 0,
  3766. "_horizontalCenter": 0,
  3767. "_isAbsLeft": true,
  3768. "_isAbsRight": true,
  3769. "_isAbsTop": true,
  3770. "_isAbsBottom": true,
  3771. "_isAbsHorizontalCenter": true,
  3772. "_isAbsVerticalCenter": true,
  3773. "_originalWidth": 0,
  3774. "_originalHeight": 0,
  3775. "_id": ""
  3776. },
  3777. {
  3778. "__type__": "cc.PrefabInfo",
  3779. "root": {
  3780. "__id__": 1
  3781. },
  3782. "asset": {
  3783. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3784. },
  3785. "fileId": "62pep3Y5hHuYKHj/yk10hz",
  3786. "sync": false
  3787. },
  3788. {
  3789. "__type__": "cc.Node",
  3790. "_name": "Xm_Mark",
  3791. "_objFlags": 0,
  3792. "_parent": {
  3793. "__id__": 67
  3794. },
  3795. "_children": [],
  3796. "_active": true,
  3797. "_level": 3,
  3798. "_components": [
  3799. {
  3800. "__id__": 106
  3801. },
  3802. {
  3803. "__id__": 107
  3804. }
  3805. ],
  3806. "_prefab": {
  3807. "__id__": 108
  3808. },
  3809. "_opacity": 255,
  3810. "_color": {
  3811. "__type__": "cc.Color",
  3812. "r": 0,
  3813. "g": 0,
  3814. "b": 0,
  3815. "a": 255
  3816. },
  3817. "_contentSize": {
  3818. "__type__": "cc.Size",
  3819. "width": 65,
  3820. "height": 34
  3821. },
  3822. "_anchorPoint": {
  3823. "__type__": "cc.Vec2",
  3824. "x": 0.5,
  3825. "y": 0.5
  3826. },
  3827. "_quat": {
  3828. "__type__": "cc.Quat",
  3829. "x": 0,
  3830. "y": 0,
  3831. "z": 0,
  3832. "w": 1
  3833. },
  3834. "_skewX": 0,
  3835. "_skewY": 0,
  3836. "groupIndex": 0,
  3837. "_id": "",
  3838. "_trs": {
  3839. "__type__": "TypedArray",
  3840. "ctor": "Float64Array",
  3841. "array": [
  3842. 387.95,
  3843. -283.1,
  3844. 0,
  3845. 0,
  3846. 0,
  3847. 0,
  3848. 1,
  3849. 0.7,
  3850. 0.7,
  3851. 1
  3852. ]
  3853. }
  3854. },
  3855. {
  3856. "__type__": "cc.Sprite",
  3857. "_name": "",
  3858. "_objFlags": 0,
  3859. "node": {
  3860. "__id__": 105
  3861. },
  3862. "_enabled": true,
  3863. "_spriteFrame": {
  3864. "__uuid__": "edb4fed7-a993-401f-9a1a-d831e12857a3"
  3865. },
  3866. "_type": 0,
  3867. "_sizeMode": 0,
  3868. "_fillType": 0,
  3869. "_fillCenter": {
  3870. "__type__": "cc.Vec2",
  3871. "x": 0,
  3872. "y": 0
  3873. },
  3874. "_fillStart": 0,
  3875. "_fillRange": 0,
  3876. "_isTrimmedMode": true,
  3877. "_state": 0,
  3878. "_atlas": null,
  3879. "_srcBlendFactor": 770,
  3880. "_dstBlendFactor": 771,
  3881. "_id": ""
  3882. },
  3883. {
  3884. "__type__": "cc.Widget",
  3885. "_name": "",
  3886. "_objFlags": 0,
  3887. "node": {
  3888. "__id__": 105
  3889. },
  3890. "_enabled": true,
  3891. "alignMode": 1,
  3892. "_target": null,
  3893. "_alignFlags": 36,
  3894. "_left": 0,
  3895. "_right": 0,
  3896. "_top": -0.9000000000000057,
  3897. "_bottom": -0.5,
  3898. "_verticalCenter": 0,
  3899. "_horizontalCenter": 0,
  3900. "_isAbsLeft": true,
  3901. "_isAbsRight": true,
  3902. "_isAbsTop": true,
  3903. "_isAbsBottom": true,
  3904. "_isAbsHorizontalCenter": true,
  3905. "_isAbsVerticalCenter": true,
  3906. "_originalWidth": 0,
  3907. "_originalHeight": 0,
  3908. "_id": ""
  3909. },
  3910. {
  3911. "__type__": "cc.PrefabInfo",
  3912. "root": {
  3913. "__id__": 1
  3914. },
  3915. "asset": {
  3916. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3917. },
  3918. "fileId": "490T0t+XRMpaXQzrBEGYmu",
  3919. "sync": false
  3920. },
  3921. {
  3922. "__type__": "cc.Widget",
  3923. "_name": "",
  3924. "_objFlags": 0,
  3925. "node": {
  3926. "__id__": 67
  3927. },
  3928. "_enabled": true,
  3929. "alignMode": 1,
  3930. "_target": null,
  3931. "_alignFlags": 4,
  3932. "_left": 164.5,
  3933. "_right": 274.49999999999994,
  3934. "_top": -223.5,
  3935. "_bottom": 0,
  3936. "_verticalCenter": 0,
  3937. "_horizontalCenter": 0,
  3938. "_isAbsLeft": true,
  3939. "_isAbsRight": true,
  3940. "_isAbsTop": true,
  3941. "_isAbsBottom": true,
  3942. "_isAbsHorizontalCenter": true,
  3943. "_isAbsVerticalCenter": true,
  3944. "_originalWidth": 641,
  3945. "_originalHeight": 173,
  3946. "_id": ""
  3947. },
  3948. {
  3949. "__type__": "cc.Sprite",
  3950. "_name": "",
  3951. "_objFlags": 0,
  3952. "node": {
  3953. "__id__": 67
  3954. },
  3955. "_enabled": true,
  3956. "_spriteFrame": {
  3957. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3958. },
  3959. "_type": 0,
  3960. "_sizeMode": 0,
  3961. "_fillType": 0,
  3962. "_fillCenter": {
  3963. "__type__": "cc.Vec2",
  3964. "x": 0,
  3965. "y": 0
  3966. },
  3967. "_fillStart": 0,
  3968. "_fillRange": 0,
  3969. "_isTrimmedMode": true,
  3970. "_state": 0,
  3971. "_atlas": null,
  3972. "_srcBlendFactor": 770,
  3973. "_dstBlendFactor": 771,
  3974. "_id": ""
  3975. },
  3976. {
  3977. "__type__": "cc.PrefabInfo",
  3978. "root": {
  3979. "__id__": 1
  3980. },
  3981. "asset": {
  3982. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  3983. },
  3984. "fileId": "9fWker5MdMC6ZyPOIN8NAU",
  3985. "sync": false
  3986. },
  3987. {
  3988. "__type__": "a2a680a5EJDfKlZKlM8P3Vv",
  3989. "_name": "",
  3990. "_objFlags": 0,
  3991. "node": {
  3992. "__id__": 1
  3993. },
  3994. "_enabled": true,
  3995. "_id": ""
  3996. },
  3997. {
  3998. "__type__": "cc.Widget",
  3999. "_name": "",
  4000. "_objFlags": 0,
  4001. "node": {
  4002. "__id__": 1
  4003. },
  4004. "_enabled": true,
  4005. "alignMode": 1,
  4006. "_target": null,
  4007. "_alignFlags": 44,
  4008. "_left": 0,
  4009. "_right": 0,
  4010. "_top": 0,
  4011. "_bottom": 0,
  4012. "_verticalCenter": 0,
  4013. "_horizontalCenter": 0,
  4014. "_isAbsLeft": true,
  4015. "_isAbsRight": true,
  4016. "_isAbsTop": true,
  4017. "_isAbsBottom": true,
  4018. "_isAbsHorizontalCenter": true,
  4019. "_isAbsVerticalCenter": true,
  4020. "_originalWidth": 641,
  4021. "_originalHeight": 0,
  4022. "_id": ""
  4023. },
  4024. {
  4025. "__type__": "cc.PrefabInfo",
  4026. "root": {
  4027. "__id__": 1
  4028. },
  4029. "asset": {
  4030. "__uuid__": "dc3b0685-db32-4ded-afac-4cc9375ad544"
  4031. },
  4032. "fileId": "0eCqoOpv5B6aw8CwESiOqR",
  4033. "sync": false
  4034. }
  4035. ]