pushAdLayer.prefab 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117
  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": "pushAdLayer",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 5
  24. },
  25. {
  26. "__id__": 27
  27. },
  28. {
  29. "__id__": 49
  30. },
  31. {
  32. "__id__": 71
  33. }
  34. ],
  35. "_active": true,
  36. "_level": 1,
  37. "_components": [
  38. {
  39. "__id__": 93
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 94
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 0,
  56. "height": 0
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_quat": {
  64. "__type__": "cc.Quat",
  65. "x": 0,
  66. "y": 0,
  67. "z": 0,
  68. "w": 1
  69. },
  70. "_skewX": 0,
  71. "_skewY": 0,
  72. "_zIndex": 0,
  73. "groupIndex": 0,
  74. "_id": "",
  75. "_trs": {
  76. "__type__": "TypedArray",
  77. "ctor": "Float64Array",
  78. "array": [
  79. -4,
  80. -411,
  81. 0,
  82. 0,
  83. 0,
  84. 0,
  85. 1,
  86. 1,
  87. 1,
  88. 1
  89. ]
  90. }
  91. },
  92. {
  93. "__type__": "cc.Node",
  94. "_name": "bg",
  95. "_objFlags": 0,
  96. "_parent": {
  97. "__id__": 1
  98. },
  99. "_children": [],
  100. "_active": true,
  101. "_level": 2,
  102. "_components": [
  103. {
  104. "__id__": 3
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 4
  109. },
  110. "_opacity": 255,
  111. "_color": {
  112. "__type__": "cc.Color",
  113. "r": 255,
  114. "g": 255,
  115. "b": 255,
  116. "a": 255
  117. },
  118. "_contentSize": {
  119. "__type__": "cc.Size",
  120. "width": 510,
  121. "height": 150
  122. },
  123. "_anchorPoint": {
  124. "__type__": "cc.Vec2",
  125. "x": 0.5,
  126. "y": 0.5
  127. },
  128. "_quat": {
  129. "__type__": "cc.Quat",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0,
  133. "w": 1
  134. },
  135. "_skewX": 0,
  136. "_skewY": 0,
  137. "_zIndex": 0,
  138. "groupIndex": 0,
  139. "_id": "",
  140. "_trs": {
  141. "__type__": "TypedArray",
  142. "ctor": "Float64Array",
  143. "array": [
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 0,
  150. 1,
  151. 1,
  152. 1,
  153. 1
  154. ]
  155. }
  156. },
  157. {
  158. "__type__": "cc.Sprite",
  159. "_name": "",
  160. "_objFlags": 0,
  161. "node": {
  162. "__id__": 2
  163. },
  164. "_enabled": true,
  165. "_srcBlendFactor": 770,
  166. "_dstBlendFactor": 771,
  167. "_spriteFrame": {
  168. "__uuid__": "7a480605-5980-4a88-93f9-285f818a04f4"
  169. },
  170. "_type": 0,
  171. "_sizeMode": 1,
  172. "_fillType": 0,
  173. "_fillCenter": {
  174. "__type__": "cc.Vec2",
  175. "x": 0,
  176. "y": 0
  177. },
  178. "_fillStart": 0,
  179. "_fillRange": 0,
  180. "_isTrimmedMode": true,
  181. "_state": 0,
  182. "_atlas": null,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__id__": 0
  192. },
  193. "fileId": "8eK0YEPNVA1pVuCVpMEjQE",
  194. "sync": false
  195. },
  196. {
  197. "__type__": "cc.Node",
  198. "_name": "pushAdBtBtn1",
  199. "_objFlags": 0,
  200. "_parent": {
  201. "__id__": 1
  202. },
  203. "_children": [
  204. {
  205. "__id__": 6
  206. },
  207. {
  208. "__id__": 22
  209. }
  210. ],
  211. "_active": true,
  212. "_level": 2,
  213. "_components": [
  214. {
  215. "__id__": 25
  216. }
  217. ],
  218. "_prefab": {
  219. "__id__": 26
  220. },
  221. "_opacity": 255,
  222. "_color": {
  223. "__type__": "cc.Color",
  224. "r": 255,
  225. "g": 255,
  226. "b": 255,
  227. "a": 255
  228. },
  229. "_contentSize": {
  230. "__type__": "cc.Size",
  231. "width": 101,
  232. "height": 101
  233. },
  234. "_anchorPoint": {
  235. "__type__": "cc.Vec2",
  236. "x": 0.5,
  237. "y": 0.5
  238. },
  239. "_quat": {
  240. "__type__": "cc.Quat",
  241. "x": 0,
  242. "y": 0,
  243. "z": 0,
  244. "w": 1
  245. },
  246. "_skewX": 0,
  247. "_skewY": 0,
  248. "_zIndex": 0,
  249. "groupIndex": 0,
  250. "_id": "",
  251. "_trs": {
  252. "__type__": "TypedArray",
  253. "ctor": "Float64Array",
  254. "array": [
  255. -190,
  256. 7,
  257. 0,
  258. 0,
  259. 0,
  260. 0,
  261. 1,
  262. 1,
  263. 1,
  264. 1
  265. ]
  266. }
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "maskNode",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 5
  274. },
  275. "_children": [
  276. {
  277. "__id__": 7
  278. },
  279. {
  280. "__id__": 12
  281. },
  282. {
  283. "__id__": 16
  284. }
  285. ],
  286. "_active": true,
  287. "_level": 3,
  288. "_components": [
  289. {
  290. "__id__": 20
  291. }
  292. ],
  293. "_prefab": {
  294. "__id__": 21
  295. },
  296. "_opacity": 255,
  297. "_color": {
  298. "__type__": "cc.Color",
  299. "r": 255,
  300. "g": 255,
  301. "b": 255,
  302. "a": 255
  303. },
  304. "_contentSize": {
  305. "__type__": "cc.Size",
  306. "width": 101,
  307. "height": 101
  308. },
  309. "_anchorPoint": {
  310. "__type__": "cc.Vec2",
  311. "x": 0.5,
  312. "y": 0.5
  313. },
  314. "_quat": {
  315. "__type__": "cc.Quat",
  316. "x": 0,
  317. "y": 0,
  318. "z": 0,
  319. "w": 1
  320. },
  321. "_skewX": 0,
  322. "_skewY": 0,
  323. "_zIndex": 0,
  324. "groupIndex": 0,
  325. "_id": "",
  326. "_trs": {
  327. "__type__": "TypedArray",
  328. "ctor": "Float64Array",
  329. "array": [
  330. 0,
  331. 0,
  332. 0,
  333. 0,
  334. 0,
  335. 0,
  336. 1,
  337. 1,
  338. 1,
  339. 1
  340. ]
  341. }
  342. },
  343. {
  344. "__type__": "cc.Node",
  345. "_name": "bg",
  346. "_objFlags": 0,
  347. "_parent": {
  348. "__id__": 6
  349. },
  350. "_children": [],
  351. "_active": true,
  352. "_level": 4,
  353. "_components": [
  354. {
  355. "__id__": 8
  356. },
  357. {
  358. "__id__": 9
  359. }
  360. ],
  361. "_prefab": {
  362. "__id__": 11
  363. },
  364. "_opacity": 255,
  365. "_color": {
  366. "__type__": "cc.Color",
  367. "r": 255,
  368. "g": 255,
  369. "b": 255,
  370. "a": 255
  371. },
  372. "_contentSize": {
  373. "__type__": "cc.Size",
  374. "width": 101,
  375. "height": 101
  376. },
  377. "_anchorPoint": {
  378. "__type__": "cc.Vec2",
  379. "x": 0.5,
  380. "y": 0.5
  381. },
  382. "_quat": {
  383. "__type__": "cc.Quat",
  384. "x": 0,
  385. "y": 0,
  386. "z": 0,
  387. "w": 1
  388. },
  389. "_skewX": 0,
  390. "_skewY": 0,
  391. "_zIndex": 0,
  392. "groupIndex": 0,
  393. "_id": "",
  394. "_trs": {
  395. "__type__": "TypedArray",
  396. "ctor": "Float64Array",
  397. "array": [
  398. 0,
  399. 0,
  400. 0,
  401. 0,
  402. 0,
  403. 0,
  404. 1,
  405. 1,
  406. 1,
  407. 1
  408. ]
  409. }
  410. },
  411. {
  412. "__type__": "cc.Sprite",
  413. "_name": "",
  414. "_objFlags": 0,
  415. "node": {
  416. "__id__": 7
  417. },
  418. "_enabled": true,
  419. "_srcBlendFactor": 770,
  420. "_dstBlendFactor": 771,
  421. "_spriteFrame": {
  422. "__uuid__": "a72f2750-2973-4709-b23d-51ee93b700c8"
  423. },
  424. "_type": 0,
  425. "_sizeMode": 1,
  426. "_fillType": 0,
  427. "_fillCenter": {
  428. "__type__": "cc.Vec2",
  429. "x": 0,
  430. "y": 0
  431. },
  432. "_fillStart": 0,
  433. "_fillRange": 0,
  434. "_isTrimmedMode": true,
  435. "_state": 0,
  436. "_atlas": null,
  437. "_id": ""
  438. },
  439. {
  440. "__type__": "cc.Button",
  441. "_name": "",
  442. "_objFlags": 0,
  443. "node": {
  444. "__id__": 7
  445. },
  446. "_enabled": true,
  447. "transition": 0,
  448. "pressedColor": {
  449. "__type__": "cc.Color",
  450. "r": 211,
  451. "g": 211,
  452. "b": 211,
  453. "a": 255
  454. },
  455. "hoverColor": {
  456. "__type__": "cc.Color",
  457. "r": 255,
  458. "g": 255,
  459. "b": 255,
  460. "a": 255
  461. },
  462. "duration": 0.1,
  463. "zoomScale": 1.2,
  464. "clickEvents": [
  465. {
  466. "__id__": 10
  467. }
  468. ],
  469. "_N$interactable": true,
  470. "_N$enableAutoGrayEffect": false,
  471. "_N$normalColor": {
  472. "__type__": "cc.Color",
  473. "r": 214,
  474. "g": 214,
  475. "b": 214,
  476. "a": 255
  477. },
  478. "_N$disabledColor": {
  479. "__type__": "cc.Color",
  480. "r": 124,
  481. "g": 124,
  482. "b": 124,
  483. "a": 255
  484. },
  485. "_N$normalSprite": null,
  486. "_N$pressedSprite": null,
  487. "pressedSprite": null,
  488. "_N$hoverSprite": null,
  489. "hoverSprite": null,
  490. "_N$disabledSprite": null,
  491. "_N$target": {
  492. "__id__": 7
  493. },
  494. "_id": ""
  495. },
  496. {
  497. "__type__": "cc.ClickEvent",
  498. "target": {
  499. "__id__": 5
  500. },
  501. "component": "pushAdBtn",
  502. "handler": "onClick",
  503. "customEventData": ""
  504. },
  505. {
  506. "__type__": "cc.PrefabInfo",
  507. "root": {
  508. "__id__": 1
  509. },
  510. "asset": {
  511. "__id__": 0
  512. },
  513. "fileId": "1ax/8ZeGNCEY+pJ3szj58D",
  514. "sync": false
  515. },
  516. {
  517. "__type__": "cc.Node",
  518. "_name": "icon",
  519. "_objFlags": 0,
  520. "_parent": {
  521. "__id__": 6
  522. },
  523. "_children": [],
  524. "_active": true,
  525. "_level": 4,
  526. "_components": [
  527. {
  528. "__id__": 13
  529. },
  530. {
  531. "__id__": 14
  532. }
  533. ],
  534. "_prefab": {
  535. "__id__": 15
  536. },
  537. "_opacity": 255,
  538. "_color": {
  539. "__type__": "cc.Color",
  540. "r": 255,
  541. "g": 255,
  542. "b": 255,
  543. "a": 255
  544. },
  545. "_contentSize": {
  546. "__type__": "cc.Size",
  547. "width": 98,
  548. "height": 98
  549. },
  550. "_anchorPoint": {
  551. "__type__": "cc.Vec2",
  552. "x": 0.5,
  553. "y": 0.5
  554. },
  555. "_quat": {
  556. "__type__": "cc.Quat",
  557. "x": 0,
  558. "y": 0,
  559. "z": 0,
  560. "w": 1
  561. },
  562. "_skewX": 0,
  563. "_skewY": 0,
  564. "_zIndex": 0,
  565. "groupIndex": 0,
  566. "_id": "",
  567. "_trs": {
  568. "__type__": "TypedArray",
  569. "ctor": "Float64Array",
  570. "array": [
  571. 0,
  572. 0,
  573. 0,
  574. 0,
  575. 0,
  576. 0,
  577. 1,
  578. 1,
  579. 1,
  580. 1
  581. ]
  582. }
  583. },
  584. {
  585. "__type__": "cc.Sprite",
  586. "_name": "",
  587. "_objFlags": 0,
  588. "node": {
  589. "__id__": 12
  590. },
  591. "_enabled": true,
  592. "_srcBlendFactor": 770,
  593. "_dstBlendFactor": 771,
  594. "_spriteFrame": {
  595. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  596. },
  597. "_type": 0,
  598. "_sizeMode": 0,
  599. "_fillType": 0,
  600. "_fillCenter": {
  601. "__type__": "cc.Vec2",
  602. "x": 0,
  603. "y": 0
  604. },
  605. "_fillStart": 0,
  606. "_fillRange": 0,
  607. "_isTrimmedMode": true,
  608. "_state": 0,
  609. "_atlas": null,
  610. "_id": ""
  611. },
  612. {
  613. "__type__": "cc.Animation",
  614. "_name": "",
  615. "_objFlags": 0,
  616. "node": {
  617. "__id__": 12
  618. },
  619. "_enabled": true,
  620. "_defaultClip": null,
  621. "_clips": [],
  622. "playOnLoad": false,
  623. "_id": ""
  624. },
  625. {
  626. "__type__": "cc.PrefabInfo",
  627. "root": {
  628. "__id__": 1
  629. },
  630. "asset": {
  631. "__id__": 0
  632. },
  633. "fileId": "2azyHAH5NBmZ6pO0fasOVE",
  634. "sync": false
  635. },
  636. {
  637. "__type__": "cc.Node",
  638. "_name": "tempIcon",
  639. "_objFlags": 0,
  640. "_parent": {
  641. "__id__": 6
  642. },
  643. "_children": [],
  644. "_active": true,
  645. "_level": 4,
  646. "_components": [
  647. {
  648. "__id__": 17
  649. },
  650. {
  651. "__id__": 18
  652. }
  653. ],
  654. "_prefab": {
  655. "__id__": 19
  656. },
  657. "_opacity": 255,
  658. "_color": {
  659. "__type__": "cc.Color",
  660. "r": 255,
  661. "g": 255,
  662. "b": 255,
  663. "a": 255
  664. },
  665. "_contentSize": {
  666. "__type__": "cc.Size",
  667. "width": 98,
  668. "height": 98
  669. },
  670. "_anchorPoint": {
  671. "__type__": "cc.Vec2",
  672. "x": 0.5,
  673. "y": 0.5
  674. },
  675. "_quat": {
  676. "__type__": "cc.Quat",
  677. "x": 0,
  678. "y": 0,
  679. "z": 0,
  680. "w": 1
  681. },
  682. "_skewX": 0,
  683. "_skewY": 0,
  684. "_zIndex": 0,
  685. "groupIndex": 0,
  686. "_id": "",
  687. "_trs": {
  688. "__type__": "TypedArray",
  689. "ctor": "Float64Array",
  690. "array": [
  691. 102,
  692. 0,
  693. 0,
  694. 0,
  695. 0,
  696. 0,
  697. 1,
  698. 1,
  699. 1,
  700. 1
  701. ]
  702. }
  703. },
  704. {
  705. "__type__": "cc.Sprite",
  706. "_name": "",
  707. "_objFlags": 0,
  708. "node": {
  709. "__id__": 16
  710. },
  711. "_enabled": true,
  712. "_srcBlendFactor": 770,
  713. "_dstBlendFactor": 771,
  714. "_spriteFrame": {
  715. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  716. },
  717. "_type": 0,
  718. "_sizeMode": 0,
  719. "_fillType": 0,
  720. "_fillCenter": {
  721. "__type__": "cc.Vec2",
  722. "x": 0,
  723. "y": 0
  724. },
  725. "_fillStart": 0,
  726. "_fillRange": 0,
  727. "_isTrimmedMode": true,
  728. "_state": 0,
  729. "_atlas": null,
  730. "_id": ""
  731. },
  732. {
  733. "__type__": "cc.Animation",
  734. "_name": "",
  735. "_objFlags": 0,
  736. "node": {
  737. "__id__": 16
  738. },
  739. "_enabled": true,
  740. "_defaultClip": null,
  741. "_clips": [],
  742. "playOnLoad": false,
  743. "_id": ""
  744. },
  745. {
  746. "__type__": "cc.PrefabInfo",
  747. "root": {
  748. "__id__": 1
  749. },
  750. "asset": {
  751. "__id__": 0
  752. },
  753. "fileId": "61ueI8gBRBaax1seCszRwq",
  754. "sync": false
  755. },
  756. {
  757. "__type__": "cc.Mask",
  758. "_name": "",
  759. "_objFlags": 0,
  760. "node": {
  761. "__id__": 6
  762. },
  763. "_enabled": true,
  764. "_srcBlendFactor": 770,
  765. "_dstBlendFactor": 771,
  766. "_spriteFrame": null,
  767. "_type": 0,
  768. "_segments": 64,
  769. "_N$alphaThreshold": 0.1,
  770. "_N$inverted": false,
  771. "_id": ""
  772. },
  773. {
  774. "__type__": "cc.PrefabInfo",
  775. "root": {
  776. "__id__": 1
  777. },
  778. "asset": {
  779. "__id__": 0
  780. },
  781. "fileId": "21ywTgzC1JFZ84M7UIg3uC",
  782. "sync": false
  783. },
  784. {
  785. "__type__": "cc.Node",
  786. "_name": "nameLabel",
  787. "_objFlags": 0,
  788. "_parent": {
  789. "__id__": 5
  790. },
  791. "_children": [],
  792. "_active": true,
  793. "_level": 3,
  794. "_components": [
  795. {
  796. "__id__": 23
  797. }
  798. ],
  799. "_prefab": {
  800. "__id__": 24
  801. },
  802. "_opacity": 255,
  803. "_color": {
  804. "__type__": "cc.Color",
  805. "r": 255,
  806. "g": 255,
  807. "b": 255,
  808. "a": 255
  809. },
  810. "_contentSize": {
  811. "__type__": "cc.Size",
  812. "width": 39.15,
  813. "height": 40
  814. },
  815. "_anchorPoint": {
  816. "__type__": "cc.Vec2",
  817. "x": 0.5,
  818. "y": 0.5
  819. },
  820. "_quat": {
  821. "__type__": "cc.Quat",
  822. "x": 0,
  823. "y": 0,
  824. "z": 0,
  825. "w": 1
  826. },
  827. "_skewX": 0,
  828. "_skewY": 0,
  829. "_zIndex": 0,
  830. "groupIndex": 0,
  831. "_id": "",
  832. "_trs": {
  833. "__type__": "TypedArray",
  834. "ctor": "Float64Array",
  835. "array": [
  836. -1.5,
  837. -61.5,
  838. 0,
  839. 0,
  840. 0,
  841. 0,
  842. 1,
  843. 1,
  844. 1,
  845. 1
  846. ]
  847. }
  848. },
  849. {
  850. "__type__": "cc.Label",
  851. "_name": "",
  852. "_objFlags": 0,
  853. "node": {
  854. "__id__": 22
  855. },
  856. "_enabled": true,
  857. "_srcBlendFactor": 1,
  858. "_dstBlendFactor": 771,
  859. "_useOriginalSize": false,
  860. "_string": "Label",
  861. "_N$string": "Label",
  862. "_fontSize": 16,
  863. "_lineHeight": 40,
  864. "_enableWrapText": true,
  865. "_N$file": null,
  866. "_isSystemFontUsed": true,
  867. "_spacingX": 0,
  868. "_N$horizontalAlign": 1,
  869. "_N$verticalAlign": 1,
  870. "_N$fontFamily": "Arial",
  871. "_N$overflow": 0,
  872. "_id": ""
  873. },
  874. {
  875. "__type__": "cc.PrefabInfo",
  876. "root": {
  877. "__id__": 1
  878. },
  879. "asset": {
  880. "__id__": 0
  881. },
  882. "fileId": "f0/OWsG6JJErTke+UIR9+d",
  883. "sync": false
  884. },
  885. {
  886. "__type__": "265eeOLigFCdpi2c12nl+6Q",
  887. "_name": "",
  888. "_objFlags": 0,
  889. "node": {
  890. "__id__": 5
  891. },
  892. "_enabled": true,
  893. "icon": {
  894. "__id__": 13
  895. },
  896. "tempIcon": {
  897. "__id__": 17
  898. },
  899. "pushType": "bottom",
  900. "isLoop": true,
  901. "loopTime": -1,
  902. "actionTime": 0.4,
  903. "pushDataType": "bottomList",
  904. "placement": "home",
  905. "nameLabel": {
  906. "__id__": 23
  907. },
  908. "_id": ""
  909. },
  910. {
  911. "__type__": "cc.PrefabInfo",
  912. "root": {
  913. "__id__": 1
  914. },
  915. "asset": {
  916. "__id__": 0
  917. },
  918. "fileId": "4ezLkfKsJD7KzjJnrqghw1",
  919. "sync": false
  920. },
  921. {
  922. "__type__": "cc.Node",
  923. "_name": "pushAdBtBtn2",
  924. "_objFlags": 0,
  925. "_parent": {
  926. "__id__": 1
  927. },
  928. "_children": [
  929. {
  930. "__id__": 28
  931. },
  932. {
  933. "__id__": 44
  934. }
  935. ],
  936. "_active": true,
  937. "_level": 2,
  938. "_components": [
  939. {
  940. "__id__": 47
  941. }
  942. ],
  943. "_prefab": {
  944. "__id__": 48
  945. },
  946. "_opacity": 255,
  947. "_color": {
  948. "__type__": "cc.Color",
  949. "r": 255,
  950. "g": 255,
  951. "b": 255,
  952. "a": 255
  953. },
  954. "_contentSize": {
  955. "__type__": "cc.Size",
  956. "width": 101,
  957. "height": 101
  958. },
  959. "_anchorPoint": {
  960. "__type__": "cc.Vec2",
  961. "x": 0.5,
  962. "y": 0.5
  963. },
  964. "_quat": {
  965. "__type__": "cc.Quat",
  966. "x": 0,
  967. "y": 0,
  968. "z": 0,
  969. "w": 1
  970. },
  971. "_skewX": 0,
  972. "_skewY": 0,
  973. "_zIndex": 0,
  974. "groupIndex": 0,
  975. "_id": "",
  976. "_trs": {
  977. "__type__": "TypedArray",
  978. "ctor": "Float64Array",
  979. "array": [
  980. -79,
  981. 7,
  982. 0,
  983. 0,
  984. 0,
  985. 0,
  986. 1,
  987. 1,
  988. 1,
  989. 1
  990. ]
  991. }
  992. },
  993. {
  994. "__type__": "cc.Node",
  995. "_name": "maskNode",
  996. "_objFlags": 0,
  997. "_parent": {
  998. "__id__": 27
  999. },
  1000. "_children": [
  1001. {
  1002. "__id__": 29
  1003. },
  1004. {
  1005. "__id__": 34
  1006. },
  1007. {
  1008. "__id__": 38
  1009. }
  1010. ],
  1011. "_active": true,
  1012. "_level": 3,
  1013. "_components": [
  1014. {
  1015. "__id__": 42
  1016. }
  1017. ],
  1018. "_prefab": {
  1019. "__id__": 43
  1020. },
  1021. "_opacity": 255,
  1022. "_color": {
  1023. "__type__": "cc.Color",
  1024. "r": 255,
  1025. "g": 255,
  1026. "b": 255,
  1027. "a": 255
  1028. },
  1029. "_contentSize": {
  1030. "__type__": "cc.Size",
  1031. "width": 101,
  1032. "height": 101
  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. "_zIndex": 0,
  1049. "groupIndex": 0,
  1050. "_id": "",
  1051. "_trs": {
  1052. "__type__": "TypedArray",
  1053. "ctor": "Float64Array",
  1054. "array": [
  1055. 0,
  1056. 0,
  1057. 0,
  1058. 0,
  1059. 0,
  1060. 0,
  1061. 1,
  1062. 1,
  1063. 1,
  1064. 1
  1065. ]
  1066. }
  1067. },
  1068. {
  1069. "__type__": "cc.Node",
  1070. "_name": "bg",
  1071. "_objFlags": 0,
  1072. "_parent": {
  1073. "__id__": 28
  1074. },
  1075. "_children": [],
  1076. "_active": true,
  1077. "_level": 4,
  1078. "_components": [
  1079. {
  1080. "__id__": 30
  1081. },
  1082. {
  1083. "__id__": 31
  1084. }
  1085. ],
  1086. "_prefab": {
  1087. "__id__": 33
  1088. },
  1089. "_opacity": 255,
  1090. "_color": {
  1091. "__type__": "cc.Color",
  1092. "r": 255,
  1093. "g": 255,
  1094. "b": 255,
  1095. "a": 255
  1096. },
  1097. "_contentSize": {
  1098. "__type__": "cc.Size",
  1099. "width": 101,
  1100. "height": 101
  1101. },
  1102. "_anchorPoint": {
  1103. "__type__": "cc.Vec2",
  1104. "x": 0.5,
  1105. "y": 0.5
  1106. },
  1107. "_quat": {
  1108. "__type__": "cc.Quat",
  1109. "x": 0,
  1110. "y": 0,
  1111. "z": 0,
  1112. "w": 1
  1113. },
  1114. "_skewX": 0,
  1115. "_skewY": 0,
  1116. "_zIndex": 0,
  1117. "groupIndex": 0,
  1118. "_id": "",
  1119. "_trs": {
  1120. "__type__": "TypedArray",
  1121. "ctor": "Float64Array",
  1122. "array": [
  1123. 0,
  1124. 0,
  1125. 0,
  1126. 0,
  1127. 0,
  1128. 0,
  1129. 1,
  1130. 1,
  1131. 1,
  1132. 1
  1133. ]
  1134. }
  1135. },
  1136. {
  1137. "__type__": "cc.Sprite",
  1138. "_name": "",
  1139. "_objFlags": 0,
  1140. "node": {
  1141. "__id__": 29
  1142. },
  1143. "_enabled": true,
  1144. "_srcBlendFactor": 770,
  1145. "_dstBlendFactor": 771,
  1146. "_spriteFrame": {
  1147. "__uuid__": "a72f2750-2973-4709-b23d-51ee93b700c8"
  1148. },
  1149. "_type": 0,
  1150. "_sizeMode": 1,
  1151. "_fillType": 0,
  1152. "_fillCenter": {
  1153. "__type__": "cc.Vec2",
  1154. "x": 0,
  1155. "y": 0
  1156. },
  1157. "_fillStart": 0,
  1158. "_fillRange": 0,
  1159. "_isTrimmedMode": true,
  1160. "_state": 0,
  1161. "_atlas": null,
  1162. "_id": ""
  1163. },
  1164. {
  1165. "__type__": "cc.Button",
  1166. "_name": "",
  1167. "_objFlags": 0,
  1168. "node": {
  1169. "__id__": 29
  1170. },
  1171. "_enabled": true,
  1172. "transition": 0,
  1173. "pressedColor": {
  1174. "__type__": "cc.Color",
  1175. "r": 211,
  1176. "g": 211,
  1177. "b": 211,
  1178. "a": 255
  1179. },
  1180. "hoverColor": {
  1181. "__type__": "cc.Color",
  1182. "r": 255,
  1183. "g": 255,
  1184. "b": 255,
  1185. "a": 255
  1186. },
  1187. "duration": 0.1,
  1188. "zoomScale": 1.2,
  1189. "clickEvents": [
  1190. {
  1191. "__id__": 32
  1192. }
  1193. ],
  1194. "_N$interactable": true,
  1195. "_N$enableAutoGrayEffect": false,
  1196. "_N$normalColor": {
  1197. "__type__": "cc.Color",
  1198. "r": 214,
  1199. "g": 214,
  1200. "b": 214,
  1201. "a": 255
  1202. },
  1203. "_N$disabledColor": {
  1204. "__type__": "cc.Color",
  1205. "r": 124,
  1206. "g": 124,
  1207. "b": 124,
  1208. "a": 255
  1209. },
  1210. "_N$normalSprite": null,
  1211. "_N$pressedSprite": null,
  1212. "pressedSprite": null,
  1213. "_N$hoverSprite": null,
  1214. "hoverSprite": null,
  1215. "_N$disabledSprite": null,
  1216. "_N$target": {
  1217. "__id__": 29
  1218. },
  1219. "_id": ""
  1220. },
  1221. {
  1222. "__type__": "cc.ClickEvent",
  1223. "target": {
  1224. "__id__": 27
  1225. },
  1226. "component": "pushAdBtn",
  1227. "handler": "onClick",
  1228. "customEventData": ""
  1229. },
  1230. {
  1231. "__type__": "cc.PrefabInfo",
  1232. "root": {
  1233. "__id__": 1
  1234. },
  1235. "asset": {
  1236. "__id__": 0
  1237. },
  1238. "fileId": "b0HoJBK65BC4hpEBHpIc1N",
  1239. "sync": false
  1240. },
  1241. {
  1242. "__type__": "cc.Node",
  1243. "_name": "icon",
  1244. "_objFlags": 0,
  1245. "_parent": {
  1246. "__id__": 28
  1247. },
  1248. "_children": [],
  1249. "_active": true,
  1250. "_level": 4,
  1251. "_components": [
  1252. {
  1253. "__id__": 35
  1254. },
  1255. {
  1256. "__id__": 36
  1257. }
  1258. ],
  1259. "_prefab": {
  1260. "__id__": 37
  1261. },
  1262. "_opacity": 255,
  1263. "_color": {
  1264. "__type__": "cc.Color",
  1265. "r": 255,
  1266. "g": 255,
  1267. "b": 255,
  1268. "a": 255
  1269. },
  1270. "_contentSize": {
  1271. "__type__": "cc.Size",
  1272. "width": 98,
  1273. "height": 98
  1274. },
  1275. "_anchorPoint": {
  1276. "__type__": "cc.Vec2",
  1277. "x": 0.5,
  1278. "y": 0.5
  1279. },
  1280. "_quat": {
  1281. "__type__": "cc.Quat",
  1282. "x": 0,
  1283. "y": 0,
  1284. "z": 0,
  1285. "w": 1
  1286. },
  1287. "_skewX": 0,
  1288. "_skewY": 0,
  1289. "_zIndex": 0,
  1290. "groupIndex": 0,
  1291. "_id": "",
  1292. "_trs": {
  1293. "__type__": "TypedArray",
  1294. "ctor": "Float64Array",
  1295. "array": [
  1296. 0,
  1297. 0,
  1298. 0,
  1299. 0,
  1300. 0,
  1301. 0,
  1302. 1,
  1303. 1,
  1304. 1,
  1305. 1
  1306. ]
  1307. }
  1308. },
  1309. {
  1310. "__type__": "cc.Sprite",
  1311. "_name": "",
  1312. "_objFlags": 0,
  1313. "node": {
  1314. "__id__": 34
  1315. },
  1316. "_enabled": true,
  1317. "_srcBlendFactor": 770,
  1318. "_dstBlendFactor": 771,
  1319. "_spriteFrame": {
  1320. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  1321. },
  1322. "_type": 0,
  1323. "_sizeMode": 0,
  1324. "_fillType": 0,
  1325. "_fillCenter": {
  1326. "__type__": "cc.Vec2",
  1327. "x": 0,
  1328. "y": 0
  1329. },
  1330. "_fillStart": 0,
  1331. "_fillRange": 0,
  1332. "_isTrimmedMode": true,
  1333. "_state": 0,
  1334. "_atlas": null,
  1335. "_id": ""
  1336. },
  1337. {
  1338. "__type__": "cc.Animation",
  1339. "_name": "",
  1340. "_objFlags": 0,
  1341. "node": {
  1342. "__id__": 34
  1343. },
  1344. "_enabled": true,
  1345. "_defaultClip": null,
  1346. "_clips": [],
  1347. "playOnLoad": false,
  1348. "_id": ""
  1349. },
  1350. {
  1351. "__type__": "cc.PrefabInfo",
  1352. "root": {
  1353. "__id__": 1
  1354. },
  1355. "asset": {
  1356. "__id__": 0
  1357. },
  1358. "fileId": "77VbKB0gtB8pj1dnV2mU24",
  1359. "sync": false
  1360. },
  1361. {
  1362. "__type__": "cc.Node",
  1363. "_name": "tempIcon",
  1364. "_objFlags": 0,
  1365. "_parent": {
  1366. "__id__": 28
  1367. },
  1368. "_children": [],
  1369. "_active": true,
  1370. "_level": 4,
  1371. "_components": [
  1372. {
  1373. "__id__": 39
  1374. },
  1375. {
  1376. "__id__": 40
  1377. }
  1378. ],
  1379. "_prefab": {
  1380. "__id__": 41
  1381. },
  1382. "_opacity": 255,
  1383. "_color": {
  1384. "__type__": "cc.Color",
  1385. "r": 255,
  1386. "g": 255,
  1387. "b": 255,
  1388. "a": 255
  1389. },
  1390. "_contentSize": {
  1391. "__type__": "cc.Size",
  1392. "width": 98,
  1393. "height": 98
  1394. },
  1395. "_anchorPoint": {
  1396. "__type__": "cc.Vec2",
  1397. "x": 0.5,
  1398. "y": 0.5
  1399. },
  1400. "_quat": {
  1401. "__type__": "cc.Quat",
  1402. "x": 0,
  1403. "y": 0,
  1404. "z": 0,
  1405. "w": 1
  1406. },
  1407. "_skewX": 0,
  1408. "_skewY": 0,
  1409. "_zIndex": 0,
  1410. "groupIndex": 0,
  1411. "_id": "",
  1412. "_trs": {
  1413. "__type__": "TypedArray",
  1414. "ctor": "Float64Array",
  1415. "array": [
  1416. 102,
  1417. 0,
  1418. 0,
  1419. 0,
  1420. 0,
  1421. 0,
  1422. 1,
  1423. 1,
  1424. 1,
  1425. 1
  1426. ]
  1427. }
  1428. },
  1429. {
  1430. "__type__": "cc.Sprite",
  1431. "_name": "",
  1432. "_objFlags": 0,
  1433. "node": {
  1434. "__id__": 38
  1435. },
  1436. "_enabled": true,
  1437. "_srcBlendFactor": 770,
  1438. "_dstBlendFactor": 771,
  1439. "_spriteFrame": {
  1440. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  1441. },
  1442. "_type": 0,
  1443. "_sizeMode": 0,
  1444. "_fillType": 0,
  1445. "_fillCenter": {
  1446. "__type__": "cc.Vec2",
  1447. "x": 0,
  1448. "y": 0
  1449. },
  1450. "_fillStart": 0,
  1451. "_fillRange": 0,
  1452. "_isTrimmedMode": true,
  1453. "_state": 0,
  1454. "_atlas": null,
  1455. "_id": ""
  1456. },
  1457. {
  1458. "__type__": "cc.Animation",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "node": {
  1462. "__id__": 38
  1463. },
  1464. "_enabled": true,
  1465. "_defaultClip": null,
  1466. "_clips": [],
  1467. "playOnLoad": false,
  1468. "_id": ""
  1469. },
  1470. {
  1471. "__type__": "cc.PrefabInfo",
  1472. "root": {
  1473. "__id__": 1
  1474. },
  1475. "asset": {
  1476. "__id__": 0
  1477. },
  1478. "fileId": "bbVKPmLaVMTrpVp7PMSaRb",
  1479. "sync": false
  1480. },
  1481. {
  1482. "__type__": "cc.Mask",
  1483. "_name": "",
  1484. "_objFlags": 0,
  1485. "node": {
  1486. "__id__": 28
  1487. },
  1488. "_enabled": true,
  1489. "_srcBlendFactor": 770,
  1490. "_dstBlendFactor": 771,
  1491. "_spriteFrame": null,
  1492. "_type": 0,
  1493. "_segments": 64,
  1494. "_N$alphaThreshold": 0.1,
  1495. "_N$inverted": false,
  1496. "_id": ""
  1497. },
  1498. {
  1499. "__type__": "cc.PrefabInfo",
  1500. "root": {
  1501. "__id__": 1
  1502. },
  1503. "asset": {
  1504. "__id__": 0
  1505. },
  1506. "fileId": "beFJx2eFxBoZJJdMq9rJMN",
  1507. "sync": false
  1508. },
  1509. {
  1510. "__type__": "cc.Node",
  1511. "_name": "nameLabel",
  1512. "_objFlags": 0,
  1513. "_parent": {
  1514. "__id__": 27
  1515. },
  1516. "_children": [],
  1517. "_active": true,
  1518. "_level": 3,
  1519. "_components": [
  1520. {
  1521. "__id__": 45
  1522. }
  1523. ],
  1524. "_prefab": {
  1525. "__id__": 46
  1526. },
  1527. "_opacity": 255,
  1528. "_color": {
  1529. "__type__": "cc.Color",
  1530. "r": 255,
  1531. "g": 255,
  1532. "b": 255,
  1533. "a": 255
  1534. },
  1535. "_contentSize": {
  1536. "__type__": "cc.Size",
  1537. "width": 39.15,
  1538. "height": 40
  1539. },
  1540. "_anchorPoint": {
  1541. "__type__": "cc.Vec2",
  1542. "x": 0.5,
  1543. "y": 0.5
  1544. },
  1545. "_quat": {
  1546. "__type__": "cc.Quat",
  1547. "x": 0,
  1548. "y": 0,
  1549. "z": 0,
  1550. "w": 1
  1551. },
  1552. "_skewX": 0,
  1553. "_skewY": 0,
  1554. "_zIndex": 0,
  1555. "groupIndex": 0,
  1556. "_id": "",
  1557. "_trs": {
  1558. "__type__": "TypedArray",
  1559. "ctor": "Float64Array",
  1560. "array": [
  1561. -1.5,
  1562. -61.5,
  1563. 0,
  1564. 0,
  1565. 0,
  1566. 0,
  1567. 1,
  1568. 1,
  1569. 1,
  1570. 1
  1571. ]
  1572. }
  1573. },
  1574. {
  1575. "__type__": "cc.Label",
  1576. "_name": "",
  1577. "_objFlags": 0,
  1578. "node": {
  1579. "__id__": 44
  1580. },
  1581. "_enabled": true,
  1582. "_srcBlendFactor": 1,
  1583. "_dstBlendFactor": 771,
  1584. "_useOriginalSize": false,
  1585. "_string": "Label",
  1586. "_N$string": "Label",
  1587. "_fontSize": 16,
  1588. "_lineHeight": 40,
  1589. "_enableWrapText": true,
  1590. "_N$file": null,
  1591. "_isSystemFontUsed": true,
  1592. "_spacingX": 0,
  1593. "_N$horizontalAlign": 1,
  1594. "_N$verticalAlign": 1,
  1595. "_N$fontFamily": "Arial",
  1596. "_N$overflow": 0,
  1597. "_id": ""
  1598. },
  1599. {
  1600. "__type__": "cc.PrefabInfo",
  1601. "root": {
  1602. "__id__": 1
  1603. },
  1604. "asset": {
  1605. "__id__": 0
  1606. },
  1607. "fileId": "a4cd6Y0HxCdaQG3HCsY3BL",
  1608. "sync": false
  1609. },
  1610. {
  1611. "__type__": "265eeOLigFCdpi2c12nl+6Q",
  1612. "_name": "",
  1613. "_objFlags": 0,
  1614. "node": {
  1615. "__id__": 27
  1616. },
  1617. "_enabled": true,
  1618. "icon": {
  1619. "__id__": 35
  1620. },
  1621. "tempIcon": {
  1622. "__id__": 39
  1623. },
  1624. "pushType": "bottom",
  1625. "isLoop": true,
  1626. "loopTime": -1,
  1627. "actionTime": 0.4,
  1628. "pushDataType": "bottomList",
  1629. "placement": "home",
  1630. "nameLabel": {
  1631. "__id__": 45
  1632. },
  1633. "_id": ""
  1634. },
  1635. {
  1636. "__type__": "cc.PrefabInfo",
  1637. "root": {
  1638. "__id__": 1
  1639. },
  1640. "asset": {
  1641. "__id__": 0
  1642. },
  1643. "fileId": "66BoMvrRFF9JT5yiEOx1tX",
  1644. "sync": false
  1645. },
  1646. {
  1647. "__type__": "cc.Node",
  1648. "_name": "pushAdBtBtn3",
  1649. "_objFlags": 0,
  1650. "_parent": {
  1651. "__id__": 1
  1652. },
  1653. "_children": [
  1654. {
  1655. "__id__": 50
  1656. },
  1657. {
  1658. "__id__": 66
  1659. }
  1660. ],
  1661. "_active": true,
  1662. "_level": 2,
  1663. "_components": [
  1664. {
  1665. "__id__": 69
  1666. }
  1667. ],
  1668. "_prefab": {
  1669. "__id__": 70
  1670. },
  1671. "_opacity": 255,
  1672. "_color": {
  1673. "__type__": "cc.Color",
  1674. "r": 255,
  1675. "g": 255,
  1676. "b": 255,
  1677. "a": 255
  1678. },
  1679. "_contentSize": {
  1680. "__type__": "cc.Size",
  1681. "width": 101,
  1682. "height": 101
  1683. },
  1684. "_anchorPoint": {
  1685. "__type__": "cc.Vec2",
  1686. "x": 0.5,
  1687. "y": 0.5
  1688. },
  1689. "_quat": {
  1690. "__type__": "cc.Quat",
  1691. "x": 0,
  1692. "y": 0,
  1693. "z": 0,
  1694. "w": 1
  1695. },
  1696. "_skewX": 0,
  1697. "_skewY": 0,
  1698. "_zIndex": 0,
  1699. "groupIndex": 0,
  1700. "_id": "",
  1701. "_trs": {
  1702. "__type__": "TypedArray",
  1703. "ctor": "Float64Array",
  1704. "array": [
  1705. 32,
  1706. 7,
  1707. 0,
  1708. 0,
  1709. 0,
  1710. 0,
  1711. 1,
  1712. 1,
  1713. 1,
  1714. 1
  1715. ]
  1716. }
  1717. },
  1718. {
  1719. "__type__": "cc.Node",
  1720. "_name": "maskNode",
  1721. "_objFlags": 0,
  1722. "_parent": {
  1723. "__id__": 49
  1724. },
  1725. "_children": [
  1726. {
  1727. "__id__": 51
  1728. },
  1729. {
  1730. "__id__": 56
  1731. },
  1732. {
  1733. "__id__": 60
  1734. }
  1735. ],
  1736. "_active": true,
  1737. "_level": 3,
  1738. "_components": [
  1739. {
  1740. "__id__": 64
  1741. }
  1742. ],
  1743. "_prefab": {
  1744. "__id__": 65
  1745. },
  1746. "_opacity": 255,
  1747. "_color": {
  1748. "__type__": "cc.Color",
  1749. "r": 255,
  1750. "g": 255,
  1751. "b": 255,
  1752. "a": 255
  1753. },
  1754. "_contentSize": {
  1755. "__type__": "cc.Size",
  1756. "width": 101,
  1757. "height": 101
  1758. },
  1759. "_anchorPoint": {
  1760. "__type__": "cc.Vec2",
  1761. "x": 0.5,
  1762. "y": 0.5
  1763. },
  1764. "_quat": {
  1765. "__type__": "cc.Quat",
  1766. "x": 0,
  1767. "y": 0,
  1768. "z": 0,
  1769. "w": 1
  1770. },
  1771. "_skewX": 0,
  1772. "_skewY": 0,
  1773. "_zIndex": 0,
  1774. "groupIndex": 0,
  1775. "_id": "",
  1776. "_trs": {
  1777. "__type__": "TypedArray",
  1778. "ctor": "Float64Array",
  1779. "array": [
  1780. 0,
  1781. 0,
  1782. 0,
  1783. 0,
  1784. 0,
  1785. 0,
  1786. 1,
  1787. 1,
  1788. 1,
  1789. 1
  1790. ]
  1791. }
  1792. },
  1793. {
  1794. "__type__": "cc.Node",
  1795. "_name": "bg",
  1796. "_objFlags": 0,
  1797. "_parent": {
  1798. "__id__": 50
  1799. },
  1800. "_children": [],
  1801. "_active": true,
  1802. "_level": 4,
  1803. "_components": [
  1804. {
  1805. "__id__": 52
  1806. },
  1807. {
  1808. "__id__": 53
  1809. }
  1810. ],
  1811. "_prefab": {
  1812. "__id__": 55
  1813. },
  1814. "_opacity": 255,
  1815. "_color": {
  1816. "__type__": "cc.Color",
  1817. "r": 255,
  1818. "g": 255,
  1819. "b": 255,
  1820. "a": 255
  1821. },
  1822. "_contentSize": {
  1823. "__type__": "cc.Size",
  1824. "width": 101,
  1825. "height": 101
  1826. },
  1827. "_anchorPoint": {
  1828. "__type__": "cc.Vec2",
  1829. "x": 0.5,
  1830. "y": 0.5
  1831. },
  1832. "_quat": {
  1833. "__type__": "cc.Quat",
  1834. "x": 0,
  1835. "y": 0,
  1836. "z": 0,
  1837. "w": 1
  1838. },
  1839. "_skewX": 0,
  1840. "_skewY": 0,
  1841. "_zIndex": 0,
  1842. "groupIndex": 0,
  1843. "_id": "",
  1844. "_trs": {
  1845. "__type__": "TypedArray",
  1846. "ctor": "Float64Array",
  1847. "array": [
  1848. 0,
  1849. 0,
  1850. 0,
  1851. 0,
  1852. 0,
  1853. 0,
  1854. 1,
  1855. 1,
  1856. 1,
  1857. 1
  1858. ]
  1859. }
  1860. },
  1861. {
  1862. "__type__": "cc.Sprite",
  1863. "_name": "",
  1864. "_objFlags": 0,
  1865. "node": {
  1866. "__id__": 51
  1867. },
  1868. "_enabled": true,
  1869. "_srcBlendFactor": 770,
  1870. "_dstBlendFactor": 771,
  1871. "_spriteFrame": {
  1872. "__uuid__": "a72f2750-2973-4709-b23d-51ee93b700c8"
  1873. },
  1874. "_type": 0,
  1875. "_sizeMode": 1,
  1876. "_fillType": 0,
  1877. "_fillCenter": {
  1878. "__type__": "cc.Vec2",
  1879. "x": 0,
  1880. "y": 0
  1881. },
  1882. "_fillStart": 0,
  1883. "_fillRange": 0,
  1884. "_isTrimmedMode": true,
  1885. "_state": 0,
  1886. "_atlas": null,
  1887. "_id": ""
  1888. },
  1889. {
  1890. "__type__": "cc.Button",
  1891. "_name": "",
  1892. "_objFlags": 0,
  1893. "node": {
  1894. "__id__": 51
  1895. },
  1896. "_enabled": true,
  1897. "transition": 0,
  1898. "pressedColor": {
  1899. "__type__": "cc.Color",
  1900. "r": 211,
  1901. "g": 211,
  1902. "b": 211,
  1903. "a": 255
  1904. },
  1905. "hoverColor": {
  1906. "__type__": "cc.Color",
  1907. "r": 255,
  1908. "g": 255,
  1909. "b": 255,
  1910. "a": 255
  1911. },
  1912. "duration": 0.1,
  1913. "zoomScale": 1.2,
  1914. "clickEvents": [
  1915. {
  1916. "__id__": 54
  1917. }
  1918. ],
  1919. "_N$interactable": true,
  1920. "_N$enableAutoGrayEffect": false,
  1921. "_N$normalColor": {
  1922. "__type__": "cc.Color",
  1923. "r": 214,
  1924. "g": 214,
  1925. "b": 214,
  1926. "a": 255
  1927. },
  1928. "_N$disabledColor": {
  1929. "__type__": "cc.Color",
  1930. "r": 124,
  1931. "g": 124,
  1932. "b": 124,
  1933. "a": 255
  1934. },
  1935. "_N$normalSprite": null,
  1936. "_N$pressedSprite": null,
  1937. "pressedSprite": null,
  1938. "_N$hoverSprite": null,
  1939. "hoverSprite": null,
  1940. "_N$disabledSprite": null,
  1941. "_N$target": {
  1942. "__id__": 51
  1943. },
  1944. "_id": ""
  1945. },
  1946. {
  1947. "__type__": "cc.ClickEvent",
  1948. "target": {
  1949. "__id__": 49
  1950. },
  1951. "component": "pushAdBtn",
  1952. "handler": "onClick",
  1953. "customEventData": ""
  1954. },
  1955. {
  1956. "__type__": "cc.PrefabInfo",
  1957. "root": {
  1958. "__id__": 1
  1959. },
  1960. "asset": {
  1961. "__id__": 0
  1962. },
  1963. "fileId": "53SnMSFn9C850Dv9viecdo",
  1964. "sync": false
  1965. },
  1966. {
  1967. "__type__": "cc.Node",
  1968. "_name": "icon",
  1969. "_objFlags": 0,
  1970. "_parent": {
  1971. "__id__": 50
  1972. },
  1973. "_children": [],
  1974. "_active": true,
  1975. "_level": 4,
  1976. "_components": [
  1977. {
  1978. "__id__": 57
  1979. },
  1980. {
  1981. "__id__": 58
  1982. }
  1983. ],
  1984. "_prefab": {
  1985. "__id__": 59
  1986. },
  1987. "_opacity": 255,
  1988. "_color": {
  1989. "__type__": "cc.Color",
  1990. "r": 255,
  1991. "g": 255,
  1992. "b": 255,
  1993. "a": 255
  1994. },
  1995. "_contentSize": {
  1996. "__type__": "cc.Size",
  1997. "width": 98,
  1998. "height": 98
  1999. },
  2000. "_anchorPoint": {
  2001. "__type__": "cc.Vec2",
  2002. "x": 0.5,
  2003. "y": 0.5
  2004. },
  2005. "_quat": {
  2006. "__type__": "cc.Quat",
  2007. "x": 0,
  2008. "y": 0,
  2009. "z": 0,
  2010. "w": 1
  2011. },
  2012. "_skewX": 0,
  2013. "_skewY": 0,
  2014. "_zIndex": 0,
  2015. "groupIndex": 0,
  2016. "_id": "",
  2017. "_trs": {
  2018. "__type__": "TypedArray",
  2019. "ctor": "Float64Array",
  2020. "array": [
  2021. 0,
  2022. 0,
  2023. 0,
  2024. 0,
  2025. 0,
  2026. 0,
  2027. 1,
  2028. 1,
  2029. 1,
  2030. 1
  2031. ]
  2032. }
  2033. },
  2034. {
  2035. "__type__": "cc.Sprite",
  2036. "_name": "",
  2037. "_objFlags": 0,
  2038. "node": {
  2039. "__id__": 56
  2040. },
  2041. "_enabled": true,
  2042. "_srcBlendFactor": 770,
  2043. "_dstBlendFactor": 771,
  2044. "_spriteFrame": {
  2045. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2046. },
  2047. "_type": 0,
  2048. "_sizeMode": 0,
  2049. "_fillType": 0,
  2050. "_fillCenter": {
  2051. "__type__": "cc.Vec2",
  2052. "x": 0,
  2053. "y": 0
  2054. },
  2055. "_fillStart": 0,
  2056. "_fillRange": 0,
  2057. "_isTrimmedMode": true,
  2058. "_state": 0,
  2059. "_atlas": null,
  2060. "_id": ""
  2061. },
  2062. {
  2063. "__type__": "cc.Animation",
  2064. "_name": "",
  2065. "_objFlags": 0,
  2066. "node": {
  2067. "__id__": 56
  2068. },
  2069. "_enabled": true,
  2070. "_defaultClip": null,
  2071. "_clips": [],
  2072. "playOnLoad": false,
  2073. "_id": ""
  2074. },
  2075. {
  2076. "__type__": "cc.PrefabInfo",
  2077. "root": {
  2078. "__id__": 1
  2079. },
  2080. "asset": {
  2081. "__id__": 0
  2082. },
  2083. "fileId": "0eTihI7WROjJTnPgnWTl5/",
  2084. "sync": false
  2085. },
  2086. {
  2087. "__type__": "cc.Node",
  2088. "_name": "tempIcon",
  2089. "_objFlags": 0,
  2090. "_parent": {
  2091. "__id__": 50
  2092. },
  2093. "_children": [],
  2094. "_active": true,
  2095. "_level": 4,
  2096. "_components": [
  2097. {
  2098. "__id__": 61
  2099. },
  2100. {
  2101. "__id__": 62
  2102. }
  2103. ],
  2104. "_prefab": {
  2105. "__id__": 63
  2106. },
  2107. "_opacity": 255,
  2108. "_color": {
  2109. "__type__": "cc.Color",
  2110. "r": 255,
  2111. "g": 255,
  2112. "b": 255,
  2113. "a": 255
  2114. },
  2115. "_contentSize": {
  2116. "__type__": "cc.Size",
  2117. "width": 98,
  2118. "height": 98
  2119. },
  2120. "_anchorPoint": {
  2121. "__type__": "cc.Vec2",
  2122. "x": 0.5,
  2123. "y": 0.5
  2124. },
  2125. "_quat": {
  2126. "__type__": "cc.Quat",
  2127. "x": 0,
  2128. "y": 0,
  2129. "z": 0,
  2130. "w": 1
  2131. },
  2132. "_skewX": 0,
  2133. "_skewY": 0,
  2134. "_zIndex": 0,
  2135. "groupIndex": 0,
  2136. "_id": "",
  2137. "_trs": {
  2138. "__type__": "TypedArray",
  2139. "ctor": "Float64Array",
  2140. "array": [
  2141. 102,
  2142. 0,
  2143. 0,
  2144. 0,
  2145. 0,
  2146. 0,
  2147. 1,
  2148. 1,
  2149. 1,
  2150. 1
  2151. ]
  2152. }
  2153. },
  2154. {
  2155. "__type__": "cc.Sprite",
  2156. "_name": "",
  2157. "_objFlags": 0,
  2158. "node": {
  2159. "__id__": 60
  2160. },
  2161. "_enabled": true,
  2162. "_srcBlendFactor": 770,
  2163. "_dstBlendFactor": 771,
  2164. "_spriteFrame": {
  2165. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2166. },
  2167. "_type": 0,
  2168. "_sizeMode": 0,
  2169. "_fillType": 0,
  2170. "_fillCenter": {
  2171. "__type__": "cc.Vec2",
  2172. "x": 0,
  2173. "y": 0
  2174. },
  2175. "_fillStart": 0,
  2176. "_fillRange": 0,
  2177. "_isTrimmedMode": true,
  2178. "_state": 0,
  2179. "_atlas": null,
  2180. "_id": ""
  2181. },
  2182. {
  2183. "__type__": "cc.Animation",
  2184. "_name": "",
  2185. "_objFlags": 0,
  2186. "node": {
  2187. "__id__": 60
  2188. },
  2189. "_enabled": true,
  2190. "_defaultClip": null,
  2191. "_clips": [],
  2192. "playOnLoad": false,
  2193. "_id": ""
  2194. },
  2195. {
  2196. "__type__": "cc.PrefabInfo",
  2197. "root": {
  2198. "__id__": 1
  2199. },
  2200. "asset": {
  2201. "__id__": 0
  2202. },
  2203. "fileId": "66ZzeA5G9J16wtjxn/NOs3",
  2204. "sync": false
  2205. },
  2206. {
  2207. "__type__": "cc.Mask",
  2208. "_name": "",
  2209. "_objFlags": 0,
  2210. "node": {
  2211. "__id__": 50
  2212. },
  2213. "_enabled": true,
  2214. "_srcBlendFactor": 770,
  2215. "_dstBlendFactor": 771,
  2216. "_spriteFrame": null,
  2217. "_type": 0,
  2218. "_segments": 64,
  2219. "_N$alphaThreshold": 0.1,
  2220. "_N$inverted": false,
  2221. "_id": ""
  2222. },
  2223. {
  2224. "__type__": "cc.PrefabInfo",
  2225. "root": {
  2226. "__id__": 1
  2227. },
  2228. "asset": {
  2229. "__id__": 0
  2230. },
  2231. "fileId": "e5+uGh4khPXLx7Sg9Fz9zE",
  2232. "sync": false
  2233. },
  2234. {
  2235. "__type__": "cc.Node",
  2236. "_name": "nameLabel",
  2237. "_objFlags": 0,
  2238. "_parent": {
  2239. "__id__": 49
  2240. },
  2241. "_children": [],
  2242. "_active": true,
  2243. "_level": 3,
  2244. "_components": [
  2245. {
  2246. "__id__": 67
  2247. }
  2248. ],
  2249. "_prefab": {
  2250. "__id__": 68
  2251. },
  2252. "_opacity": 255,
  2253. "_color": {
  2254. "__type__": "cc.Color",
  2255. "r": 255,
  2256. "g": 255,
  2257. "b": 255,
  2258. "a": 255
  2259. },
  2260. "_contentSize": {
  2261. "__type__": "cc.Size",
  2262. "width": 39.15,
  2263. "height": 40
  2264. },
  2265. "_anchorPoint": {
  2266. "__type__": "cc.Vec2",
  2267. "x": 0.5,
  2268. "y": 0.5
  2269. },
  2270. "_quat": {
  2271. "__type__": "cc.Quat",
  2272. "x": 0,
  2273. "y": 0,
  2274. "z": 0,
  2275. "w": 1
  2276. },
  2277. "_skewX": 0,
  2278. "_skewY": 0,
  2279. "_zIndex": 0,
  2280. "groupIndex": 0,
  2281. "_id": "",
  2282. "_trs": {
  2283. "__type__": "TypedArray",
  2284. "ctor": "Float64Array",
  2285. "array": [
  2286. -1.5,
  2287. -61.5,
  2288. 0,
  2289. 0,
  2290. 0,
  2291. 0,
  2292. 1,
  2293. 1,
  2294. 1,
  2295. 1
  2296. ]
  2297. }
  2298. },
  2299. {
  2300. "__type__": "cc.Label",
  2301. "_name": "",
  2302. "_objFlags": 0,
  2303. "node": {
  2304. "__id__": 66
  2305. },
  2306. "_enabled": true,
  2307. "_srcBlendFactor": 1,
  2308. "_dstBlendFactor": 771,
  2309. "_useOriginalSize": false,
  2310. "_string": "Label",
  2311. "_N$string": "Label",
  2312. "_fontSize": 16,
  2313. "_lineHeight": 40,
  2314. "_enableWrapText": true,
  2315. "_N$file": null,
  2316. "_isSystemFontUsed": true,
  2317. "_spacingX": 0,
  2318. "_N$horizontalAlign": 1,
  2319. "_N$verticalAlign": 1,
  2320. "_N$fontFamily": "Arial",
  2321. "_N$overflow": 0,
  2322. "_id": ""
  2323. },
  2324. {
  2325. "__type__": "cc.PrefabInfo",
  2326. "root": {
  2327. "__id__": 1
  2328. },
  2329. "asset": {
  2330. "__id__": 0
  2331. },
  2332. "fileId": "a3YP4dqO5HbJuAT/5YjAAo",
  2333. "sync": false
  2334. },
  2335. {
  2336. "__type__": "265eeOLigFCdpi2c12nl+6Q",
  2337. "_name": "",
  2338. "_objFlags": 0,
  2339. "node": {
  2340. "__id__": 49
  2341. },
  2342. "_enabled": true,
  2343. "icon": {
  2344. "__id__": 57
  2345. },
  2346. "tempIcon": {
  2347. "__id__": 61
  2348. },
  2349. "pushType": "bottom",
  2350. "isLoop": true,
  2351. "loopTime": -1,
  2352. "actionTime": 0.4,
  2353. "pushDataType": "bottomList",
  2354. "placement": "home",
  2355. "nameLabel": {
  2356. "__id__": 67
  2357. },
  2358. "_id": ""
  2359. },
  2360. {
  2361. "__type__": "cc.PrefabInfo",
  2362. "root": {
  2363. "__id__": 1
  2364. },
  2365. "asset": {
  2366. "__id__": 0
  2367. },
  2368. "fileId": "dfslVgJ3xBMZCZfA/iXkhq",
  2369. "sync": false
  2370. },
  2371. {
  2372. "__type__": "cc.Node",
  2373. "_name": "pushAdBtBtn4",
  2374. "_objFlags": 0,
  2375. "_parent": {
  2376. "__id__": 1
  2377. },
  2378. "_children": [
  2379. {
  2380. "__id__": 72
  2381. },
  2382. {
  2383. "__id__": 88
  2384. }
  2385. ],
  2386. "_active": true,
  2387. "_level": 2,
  2388. "_components": [
  2389. {
  2390. "__id__": 91
  2391. }
  2392. ],
  2393. "_prefab": {
  2394. "__id__": 92
  2395. },
  2396. "_opacity": 255,
  2397. "_color": {
  2398. "__type__": "cc.Color",
  2399. "r": 255,
  2400. "g": 255,
  2401. "b": 255,
  2402. "a": 255
  2403. },
  2404. "_contentSize": {
  2405. "__type__": "cc.Size",
  2406. "width": 101,
  2407. "height": 101
  2408. },
  2409. "_anchorPoint": {
  2410. "__type__": "cc.Vec2",
  2411. "x": 0.5,
  2412. "y": 0.5
  2413. },
  2414. "_quat": {
  2415. "__type__": "cc.Quat",
  2416. "x": 0,
  2417. "y": 0,
  2418. "z": 0,
  2419. "w": 1
  2420. },
  2421. "_skewX": 0,
  2422. "_skewY": 0,
  2423. "_zIndex": 0,
  2424. "groupIndex": 0,
  2425. "_id": "",
  2426. "_trs": {
  2427. "__type__": "TypedArray",
  2428. "ctor": "Float64Array",
  2429. "array": [
  2430. 143,
  2431. 7,
  2432. 0,
  2433. 0,
  2434. 0,
  2435. 0,
  2436. 1,
  2437. 1,
  2438. 1,
  2439. 1
  2440. ]
  2441. }
  2442. },
  2443. {
  2444. "__type__": "cc.Node",
  2445. "_name": "maskNode",
  2446. "_objFlags": 0,
  2447. "_parent": {
  2448. "__id__": 71
  2449. },
  2450. "_children": [
  2451. {
  2452. "__id__": 73
  2453. },
  2454. {
  2455. "__id__": 78
  2456. },
  2457. {
  2458. "__id__": 82
  2459. }
  2460. ],
  2461. "_active": true,
  2462. "_level": 3,
  2463. "_components": [
  2464. {
  2465. "__id__": 86
  2466. }
  2467. ],
  2468. "_prefab": {
  2469. "__id__": 87
  2470. },
  2471. "_opacity": 255,
  2472. "_color": {
  2473. "__type__": "cc.Color",
  2474. "r": 255,
  2475. "g": 255,
  2476. "b": 255,
  2477. "a": 255
  2478. },
  2479. "_contentSize": {
  2480. "__type__": "cc.Size",
  2481. "width": 101,
  2482. "height": 101
  2483. },
  2484. "_anchorPoint": {
  2485. "__type__": "cc.Vec2",
  2486. "x": 0.5,
  2487. "y": 0.5
  2488. },
  2489. "_quat": {
  2490. "__type__": "cc.Quat",
  2491. "x": 0,
  2492. "y": 0,
  2493. "z": 0,
  2494. "w": 1
  2495. },
  2496. "_skewX": 0,
  2497. "_skewY": 0,
  2498. "_zIndex": 0,
  2499. "groupIndex": 0,
  2500. "_id": "",
  2501. "_trs": {
  2502. "__type__": "TypedArray",
  2503. "ctor": "Float64Array",
  2504. "array": [
  2505. 0,
  2506. 0,
  2507. 0,
  2508. 0,
  2509. 0,
  2510. 0,
  2511. 1,
  2512. 1,
  2513. 1,
  2514. 1
  2515. ]
  2516. }
  2517. },
  2518. {
  2519. "__type__": "cc.Node",
  2520. "_name": "bg",
  2521. "_objFlags": 0,
  2522. "_parent": {
  2523. "__id__": 72
  2524. },
  2525. "_children": [],
  2526. "_active": true,
  2527. "_level": 4,
  2528. "_components": [
  2529. {
  2530. "__id__": 74
  2531. },
  2532. {
  2533. "__id__": 75
  2534. }
  2535. ],
  2536. "_prefab": {
  2537. "__id__": 77
  2538. },
  2539. "_opacity": 255,
  2540. "_color": {
  2541. "__type__": "cc.Color",
  2542. "r": 255,
  2543. "g": 255,
  2544. "b": 255,
  2545. "a": 255
  2546. },
  2547. "_contentSize": {
  2548. "__type__": "cc.Size",
  2549. "width": 101,
  2550. "height": 101
  2551. },
  2552. "_anchorPoint": {
  2553. "__type__": "cc.Vec2",
  2554. "x": 0.5,
  2555. "y": 0.5
  2556. },
  2557. "_quat": {
  2558. "__type__": "cc.Quat",
  2559. "x": 0,
  2560. "y": 0,
  2561. "z": 0,
  2562. "w": 1
  2563. },
  2564. "_skewX": 0,
  2565. "_skewY": 0,
  2566. "_zIndex": 0,
  2567. "groupIndex": 0,
  2568. "_id": "",
  2569. "_trs": {
  2570. "__type__": "TypedArray",
  2571. "ctor": "Float64Array",
  2572. "array": [
  2573. 0,
  2574. 0,
  2575. 0,
  2576. 0,
  2577. 0,
  2578. 0,
  2579. 1,
  2580. 1,
  2581. 1,
  2582. 1
  2583. ]
  2584. }
  2585. },
  2586. {
  2587. "__type__": "cc.Sprite",
  2588. "_name": "",
  2589. "_objFlags": 0,
  2590. "node": {
  2591. "__id__": 73
  2592. },
  2593. "_enabled": true,
  2594. "_srcBlendFactor": 770,
  2595. "_dstBlendFactor": 771,
  2596. "_spriteFrame": {
  2597. "__uuid__": "a72f2750-2973-4709-b23d-51ee93b700c8"
  2598. },
  2599. "_type": 0,
  2600. "_sizeMode": 1,
  2601. "_fillType": 0,
  2602. "_fillCenter": {
  2603. "__type__": "cc.Vec2",
  2604. "x": 0,
  2605. "y": 0
  2606. },
  2607. "_fillStart": 0,
  2608. "_fillRange": 0,
  2609. "_isTrimmedMode": true,
  2610. "_state": 0,
  2611. "_atlas": null,
  2612. "_id": ""
  2613. },
  2614. {
  2615. "__type__": "cc.Button",
  2616. "_name": "",
  2617. "_objFlags": 0,
  2618. "node": {
  2619. "__id__": 73
  2620. },
  2621. "_enabled": true,
  2622. "transition": 0,
  2623. "pressedColor": {
  2624. "__type__": "cc.Color",
  2625. "r": 211,
  2626. "g": 211,
  2627. "b": 211,
  2628. "a": 255
  2629. },
  2630. "hoverColor": {
  2631. "__type__": "cc.Color",
  2632. "r": 255,
  2633. "g": 255,
  2634. "b": 255,
  2635. "a": 255
  2636. },
  2637. "duration": 0.1,
  2638. "zoomScale": 1.2,
  2639. "clickEvents": [
  2640. {
  2641. "__id__": 76
  2642. }
  2643. ],
  2644. "_N$interactable": true,
  2645. "_N$enableAutoGrayEffect": false,
  2646. "_N$normalColor": {
  2647. "__type__": "cc.Color",
  2648. "r": 214,
  2649. "g": 214,
  2650. "b": 214,
  2651. "a": 255
  2652. },
  2653. "_N$disabledColor": {
  2654. "__type__": "cc.Color",
  2655. "r": 124,
  2656. "g": 124,
  2657. "b": 124,
  2658. "a": 255
  2659. },
  2660. "_N$normalSprite": null,
  2661. "_N$pressedSprite": null,
  2662. "pressedSprite": null,
  2663. "_N$hoverSprite": null,
  2664. "hoverSprite": null,
  2665. "_N$disabledSprite": null,
  2666. "_N$target": {
  2667. "__id__": 73
  2668. },
  2669. "_id": ""
  2670. },
  2671. {
  2672. "__type__": "cc.ClickEvent",
  2673. "target": {
  2674. "__id__": 71
  2675. },
  2676. "component": "pushAdBtn",
  2677. "handler": "onClick",
  2678. "customEventData": ""
  2679. },
  2680. {
  2681. "__type__": "cc.PrefabInfo",
  2682. "root": {
  2683. "__id__": 1
  2684. },
  2685. "asset": {
  2686. "__id__": 0
  2687. },
  2688. "fileId": "84zFj6Yl5Bar2I11b+gLnf",
  2689. "sync": false
  2690. },
  2691. {
  2692. "__type__": "cc.Node",
  2693. "_name": "icon",
  2694. "_objFlags": 0,
  2695. "_parent": {
  2696. "__id__": 72
  2697. },
  2698. "_children": [],
  2699. "_active": true,
  2700. "_level": 4,
  2701. "_components": [
  2702. {
  2703. "__id__": 79
  2704. },
  2705. {
  2706. "__id__": 80
  2707. }
  2708. ],
  2709. "_prefab": {
  2710. "__id__": 81
  2711. },
  2712. "_opacity": 255,
  2713. "_color": {
  2714. "__type__": "cc.Color",
  2715. "r": 255,
  2716. "g": 255,
  2717. "b": 255,
  2718. "a": 255
  2719. },
  2720. "_contentSize": {
  2721. "__type__": "cc.Size",
  2722. "width": 98,
  2723. "height": 98
  2724. },
  2725. "_anchorPoint": {
  2726. "__type__": "cc.Vec2",
  2727. "x": 0.5,
  2728. "y": 0.5
  2729. },
  2730. "_quat": {
  2731. "__type__": "cc.Quat",
  2732. "x": 0,
  2733. "y": 0,
  2734. "z": 0,
  2735. "w": 1
  2736. },
  2737. "_skewX": 0,
  2738. "_skewY": 0,
  2739. "_zIndex": 0,
  2740. "groupIndex": 0,
  2741. "_id": "",
  2742. "_trs": {
  2743. "__type__": "TypedArray",
  2744. "ctor": "Float64Array",
  2745. "array": [
  2746. 0,
  2747. 0,
  2748. 0,
  2749. 0,
  2750. 0,
  2751. 0,
  2752. 1,
  2753. 1,
  2754. 1,
  2755. 1
  2756. ]
  2757. }
  2758. },
  2759. {
  2760. "__type__": "cc.Sprite",
  2761. "_name": "",
  2762. "_objFlags": 0,
  2763. "node": {
  2764. "__id__": 78
  2765. },
  2766. "_enabled": true,
  2767. "_srcBlendFactor": 770,
  2768. "_dstBlendFactor": 771,
  2769. "_spriteFrame": {
  2770. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2771. },
  2772. "_type": 0,
  2773. "_sizeMode": 0,
  2774. "_fillType": 0,
  2775. "_fillCenter": {
  2776. "__type__": "cc.Vec2",
  2777. "x": 0,
  2778. "y": 0
  2779. },
  2780. "_fillStart": 0,
  2781. "_fillRange": 0,
  2782. "_isTrimmedMode": true,
  2783. "_state": 0,
  2784. "_atlas": null,
  2785. "_id": ""
  2786. },
  2787. {
  2788. "__type__": "cc.Animation",
  2789. "_name": "",
  2790. "_objFlags": 0,
  2791. "node": {
  2792. "__id__": 78
  2793. },
  2794. "_enabled": true,
  2795. "_defaultClip": null,
  2796. "_clips": [],
  2797. "playOnLoad": false,
  2798. "_id": ""
  2799. },
  2800. {
  2801. "__type__": "cc.PrefabInfo",
  2802. "root": {
  2803. "__id__": 1
  2804. },
  2805. "asset": {
  2806. "__id__": 0
  2807. },
  2808. "fileId": "81BuH+IrdOWYXXD5Nxbl6K",
  2809. "sync": false
  2810. },
  2811. {
  2812. "__type__": "cc.Node",
  2813. "_name": "tempIcon",
  2814. "_objFlags": 0,
  2815. "_parent": {
  2816. "__id__": 72
  2817. },
  2818. "_children": [],
  2819. "_active": true,
  2820. "_level": 4,
  2821. "_components": [
  2822. {
  2823. "__id__": 83
  2824. },
  2825. {
  2826. "__id__": 84
  2827. }
  2828. ],
  2829. "_prefab": {
  2830. "__id__": 85
  2831. },
  2832. "_opacity": 255,
  2833. "_color": {
  2834. "__type__": "cc.Color",
  2835. "r": 255,
  2836. "g": 255,
  2837. "b": 255,
  2838. "a": 255
  2839. },
  2840. "_contentSize": {
  2841. "__type__": "cc.Size",
  2842. "width": 98,
  2843. "height": 98
  2844. },
  2845. "_anchorPoint": {
  2846. "__type__": "cc.Vec2",
  2847. "x": 0.5,
  2848. "y": 0.5
  2849. },
  2850. "_quat": {
  2851. "__type__": "cc.Quat",
  2852. "x": 0,
  2853. "y": 0,
  2854. "z": 0,
  2855. "w": 1
  2856. },
  2857. "_skewX": 0,
  2858. "_skewY": 0,
  2859. "_zIndex": 0,
  2860. "groupIndex": 0,
  2861. "_id": "",
  2862. "_trs": {
  2863. "__type__": "TypedArray",
  2864. "ctor": "Float64Array",
  2865. "array": [
  2866. 102,
  2867. 0,
  2868. 0,
  2869. 0,
  2870. 0,
  2871. 0,
  2872. 1,
  2873. 1,
  2874. 1,
  2875. 1
  2876. ]
  2877. }
  2878. },
  2879. {
  2880. "__type__": "cc.Sprite",
  2881. "_name": "",
  2882. "_objFlags": 0,
  2883. "node": {
  2884. "__id__": 82
  2885. },
  2886. "_enabled": true,
  2887. "_srcBlendFactor": 770,
  2888. "_dstBlendFactor": 771,
  2889. "_spriteFrame": {
  2890. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2891. },
  2892. "_type": 0,
  2893. "_sizeMode": 0,
  2894. "_fillType": 0,
  2895. "_fillCenter": {
  2896. "__type__": "cc.Vec2",
  2897. "x": 0,
  2898. "y": 0
  2899. },
  2900. "_fillStart": 0,
  2901. "_fillRange": 0,
  2902. "_isTrimmedMode": true,
  2903. "_state": 0,
  2904. "_atlas": null,
  2905. "_id": ""
  2906. },
  2907. {
  2908. "__type__": "cc.Animation",
  2909. "_name": "",
  2910. "_objFlags": 0,
  2911. "node": {
  2912. "__id__": 82
  2913. },
  2914. "_enabled": true,
  2915. "_defaultClip": null,
  2916. "_clips": [],
  2917. "playOnLoad": false,
  2918. "_id": ""
  2919. },
  2920. {
  2921. "__type__": "cc.PrefabInfo",
  2922. "root": {
  2923. "__id__": 1
  2924. },
  2925. "asset": {
  2926. "__id__": 0
  2927. },
  2928. "fileId": "40UCQMNPlG178QiA9DuOem",
  2929. "sync": false
  2930. },
  2931. {
  2932. "__type__": "cc.Mask",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "node": {
  2936. "__id__": 72
  2937. },
  2938. "_enabled": true,
  2939. "_srcBlendFactor": 770,
  2940. "_dstBlendFactor": 771,
  2941. "_spriteFrame": null,
  2942. "_type": 0,
  2943. "_segments": 64,
  2944. "_N$alphaThreshold": 0.1,
  2945. "_N$inverted": false,
  2946. "_id": ""
  2947. },
  2948. {
  2949. "__type__": "cc.PrefabInfo",
  2950. "root": {
  2951. "__id__": 1
  2952. },
  2953. "asset": {
  2954. "__id__": 0
  2955. },
  2956. "fileId": "8dieXK969OFJVIyyAqd9t2",
  2957. "sync": false
  2958. },
  2959. {
  2960. "__type__": "cc.Node",
  2961. "_name": "nameLabel",
  2962. "_objFlags": 0,
  2963. "_parent": {
  2964. "__id__": 71
  2965. },
  2966. "_children": [],
  2967. "_active": true,
  2968. "_level": 3,
  2969. "_components": [
  2970. {
  2971. "__id__": 89
  2972. }
  2973. ],
  2974. "_prefab": {
  2975. "__id__": 90
  2976. },
  2977. "_opacity": 255,
  2978. "_color": {
  2979. "__type__": "cc.Color",
  2980. "r": 255,
  2981. "g": 255,
  2982. "b": 255,
  2983. "a": 255
  2984. },
  2985. "_contentSize": {
  2986. "__type__": "cc.Size",
  2987. "width": 39.15,
  2988. "height": 40
  2989. },
  2990. "_anchorPoint": {
  2991. "__type__": "cc.Vec2",
  2992. "x": 0.5,
  2993. "y": 0.5
  2994. },
  2995. "_quat": {
  2996. "__type__": "cc.Quat",
  2997. "x": 0,
  2998. "y": 0,
  2999. "z": 0,
  3000. "w": 1
  3001. },
  3002. "_skewX": 0,
  3003. "_skewY": 0,
  3004. "_zIndex": 0,
  3005. "groupIndex": 0,
  3006. "_id": "",
  3007. "_trs": {
  3008. "__type__": "TypedArray",
  3009. "ctor": "Float64Array",
  3010. "array": [
  3011. -1.5,
  3012. -61.5,
  3013. 0,
  3014. 0,
  3015. 0,
  3016. 0,
  3017. 1,
  3018. 1,
  3019. 1,
  3020. 1
  3021. ]
  3022. }
  3023. },
  3024. {
  3025. "__type__": "cc.Label",
  3026. "_name": "",
  3027. "_objFlags": 0,
  3028. "node": {
  3029. "__id__": 88
  3030. },
  3031. "_enabled": true,
  3032. "_srcBlendFactor": 1,
  3033. "_dstBlendFactor": 771,
  3034. "_useOriginalSize": false,
  3035. "_string": "Label",
  3036. "_N$string": "Label",
  3037. "_fontSize": 16,
  3038. "_lineHeight": 40,
  3039. "_enableWrapText": true,
  3040. "_N$file": null,
  3041. "_isSystemFontUsed": true,
  3042. "_spacingX": 0,
  3043. "_N$horizontalAlign": 1,
  3044. "_N$verticalAlign": 1,
  3045. "_N$fontFamily": "Arial",
  3046. "_N$overflow": 0,
  3047. "_id": ""
  3048. },
  3049. {
  3050. "__type__": "cc.PrefabInfo",
  3051. "root": {
  3052. "__id__": 1
  3053. },
  3054. "asset": {
  3055. "__id__": 0
  3056. },
  3057. "fileId": "7aJ7mUs5tKcI6K4thl4JfM",
  3058. "sync": false
  3059. },
  3060. {
  3061. "__type__": "265eeOLigFCdpi2c12nl+6Q",
  3062. "_name": "",
  3063. "_objFlags": 0,
  3064. "node": {
  3065. "__id__": 71
  3066. },
  3067. "_enabled": true,
  3068. "icon": {
  3069. "__id__": 79
  3070. },
  3071. "tempIcon": {
  3072. "__id__": 83
  3073. },
  3074. "pushType": "bottom",
  3075. "isLoop": true,
  3076. "loopTime": -1,
  3077. "actionTime": 0.4,
  3078. "pushDataType": "bottomList",
  3079. "placement": "home",
  3080. "nameLabel": {
  3081. "__id__": 89
  3082. },
  3083. "_id": ""
  3084. },
  3085. {
  3086. "__type__": "cc.PrefabInfo",
  3087. "root": {
  3088. "__id__": 1
  3089. },
  3090. "asset": {
  3091. "__id__": 0
  3092. },
  3093. "fileId": "07scwzmhBL0KJ5zheVgGcl",
  3094. "sync": false
  3095. },
  3096. {
  3097. "__type__": "e6028BN8xFEWb43/oDVJUWf",
  3098. "_name": "",
  3099. "_objFlags": 0,
  3100. "node": {
  3101. "__id__": 1
  3102. },
  3103. "_enabled": true,
  3104. "_id": ""
  3105. },
  3106. {
  3107. "__type__": "cc.PrefabInfo",
  3108. "root": {
  3109. "__id__": 1
  3110. },
  3111. "asset": {
  3112. "__id__": 0
  3113. },
  3114. "fileId": "71goWltVNHiYoFtpDocd8B",
  3115. "sync": false
  3116. }
  3117. ]