StatementRecommentAd.prefab 63 KB

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