offline_grossIncome.prefab 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586
  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": "offline_grossIncome",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. },
  25. {
  26. "__id__": 71
  27. }
  28. ],
  29. "_active": true,
  30. "_level": 1,
  31. "_components": [
  32. {
  33. "__id__": 74
  34. }
  35. ],
  36. "_prefab": {
  37. "__id__": 75
  38. },
  39. "_opacity": 255,
  40. "_color": {
  41. "__type__": "cc.Color",
  42. "r": 255,
  43. "g": 255,
  44. "b": 255,
  45. "a": 255
  46. },
  47. "_contentSize": {
  48. "__type__": "cc.Size",
  49. "width": 750,
  50. "height": 1624
  51. },
  52. "_anchorPoint": {
  53. "__type__": "cc.Vec2",
  54. "x": 0.5,
  55. "y": 0.5
  56. },
  57. "_position": {
  58. "__type__": "cc.Vec3",
  59. "x": 0,
  60. "y": 0,
  61. "z": 0
  62. },
  63. "_scale": {
  64. "__type__": "cc.Vec3",
  65. "x": 1,
  66. "y": 1,
  67. "z": 1
  68. },
  69. "_rotationX": 0,
  70. "_rotationY": 0,
  71. "_quat": {
  72. "__type__": "cc.Quat",
  73. "x": 0,
  74. "y": 0,
  75. "z": 0,
  76. "w": 1
  77. },
  78. "_skewX": 0,
  79. "_skewY": 0,
  80. "_zIndex": 100,
  81. "groupIndex": 0,
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "bg",
  87. "_objFlags": 0,
  88. "_parent": {
  89. "__id__": 1
  90. },
  91. "_children": [],
  92. "_active": true,
  93. "_level": 0,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 4
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 5
  104. },
  105. "_opacity": 84,
  106. "_color": {
  107. "__type__": "cc.Color",
  108. "r": 0,
  109. "g": 0,
  110. "b": 0,
  111. "a": 255
  112. },
  113. "_contentSize": {
  114. "__type__": "cc.Size",
  115. "width": 2000,
  116. "height": 2000
  117. },
  118. "_anchorPoint": {
  119. "__type__": "cc.Vec2",
  120. "x": 0.5,
  121. "y": 0.5
  122. },
  123. "_position": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_scale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_rotationX": 0,
  136. "_rotationY": 0,
  137. "_quat": {
  138. "__type__": "cc.Quat",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0,
  142. "w": 1
  143. },
  144. "_skewX": 0,
  145. "_skewY": 0,
  146. "_zIndex": 0,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Sprite",
  152. "_name": "",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_srcBlendFactor": 770,
  159. "_dstBlendFactor": 771,
  160. "_spriteFrame": {
  161. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  162. },
  163. "_type": 0,
  164. "_sizeMode": 0,
  165. "_fillType": 0,
  166. "_fillCenter": {
  167. "__type__": "cc.Vec2",
  168. "x": 0,
  169. "y": 0
  170. },
  171. "_fillStart": 0,
  172. "_fillRange": 0,
  173. "_isTrimmedMode": true,
  174. "_state": 0,
  175. "_atlas": null,
  176. "_id": "4aPIlSSXpNhpwQnJK4WHbV"
  177. },
  178. {
  179. "__type__": "cc.BlockInputEvents",
  180. "_name": "",
  181. "_objFlags": 0,
  182. "node": {
  183. "__id__": 2
  184. },
  185. "_enabled": true,
  186. "_id": "d4TDotMx1GLobtCMjxAaso"
  187. },
  188. {
  189. "__type__": "cc.PrefabInfo",
  190. "root": {
  191. "__id__": 1
  192. },
  193. "asset": {
  194. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  195. },
  196. "fileId": "67HKADerdLjqvCCtbdWlhe",
  197. "sync": false
  198. },
  199. {
  200. "__type__": "cc.Node",
  201. "_name": "content",
  202. "_objFlags": 0,
  203. "_parent": {
  204. "__id__": 1
  205. },
  206. "_children": [
  207. {
  208. "__id__": 7
  209. },
  210. {
  211. "__id__": 13
  212. },
  213. {
  214. "__id__": 16
  215. },
  216. {
  217. "__id__": 23
  218. },
  219. {
  220. "__id__": 29
  221. },
  222. {
  223. "__id__": 36
  224. }
  225. ],
  226. "_active": true,
  227. "_level": 0,
  228. "_components": [
  229. {
  230. "__id__": 69
  231. }
  232. ],
  233. "_prefab": {
  234. "__id__": 70
  235. },
  236. "_opacity": 255,
  237. "_color": {
  238. "__type__": "cc.Color",
  239. "r": 255,
  240. "g": 255,
  241. "b": 255,
  242. "a": 255
  243. },
  244. "_contentSize": {
  245. "__type__": "cc.Size",
  246. "width": 546,
  247. "height": 728
  248. },
  249. "_anchorPoint": {
  250. "__type__": "cc.Vec2",
  251. "x": 0.5,
  252. "y": 0.5
  253. },
  254. "_position": {
  255. "__type__": "cc.Vec3",
  256. "x": 0,
  257. "y": 0,
  258. "z": 0
  259. },
  260. "_scale": {
  261. "__type__": "cc.Vec3",
  262. "x": 1,
  263. "y": 1,
  264. "z": 1
  265. },
  266. "_rotationX": 0,
  267. "_rotationY": 0,
  268. "_quat": {
  269. "__type__": "cc.Quat",
  270. "x": 0,
  271. "y": 0,
  272. "z": 0,
  273. "w": 1
  274. },
  275. "_skewX": 0,
  276. "_skewY": 0,
  277. "_zIndex": 0,
  278. "groupIndex": 0,
  279. "_id": ""
  280. },
  281. {
  282. "__type__": "cc.Node",
  283. "_name": "title",
  284. "_objFlags": 0,
  285. "_parent": {
  286. "__id__": 6
  287. },
  288. "_children": [
  289. {
  290. "__id__": 8
  291. }
  292. ],
  293. "_active": true,
  294. "_level": 0,
  295. "_components": [
  296. {
  297. "__id__": 11
  298. }
  299. ],
  300. "_prefab": {
  301. "__id__": 12
  302. },
  303. "_opacity": 255,
  304. "_color": {
  305. "__type__": "cc.Color",
  306. "r": 255,
  307. "g": 255,
  308. "b": 255,
  309. "a": 255
  310. },
  311. "_contentSize": {
  312. "__type__": "cc.Size",
  313. "width": 250.19,
  314. "height": 40
  315. },
  316. "_anchorPoint": {
  317. "__type__": "cc.Vec2",
  318. "x": 0.5,
  319. "y": 0.5
  320. },
  321. "_position": {
  322. "__type__": "cc.Vec3",
  323. "x": 0,
  324. "y": 301,
  325. "z": 0
  326. },
  327. "_scale": {
  328. "__type__": "cc.Vec3",
  329. "x": 1,
  330. "y": 1,
  331. "z": 1
  332. },
  333. "_rotationX": 0,
  334. "_rotationY": 0,
  335. "_quat": {
  336. "__type__": "cc.Quat",
  337. "x": 0,
  338. "y": 0,
  339. "z": 0,
  340. "w": 1
  341. },
  342. "_skewX": 0,
  343. "_skewY": 0,
  344. "_zIndex": 0,
  345. "groupIndex": 0,
  346. "_id": ""
  347. },
  348. {
  349. "__type__": "cc.PrivateNode",
  350. "_name": "RICHTEXT_CHILD",
  351. "_objFlags": 0,
  352. "_parent": {
  353. "__id__": 7
  354. },
  355. "_children": [],
  356. "_active": true,
  357. "_level": 1,
  358. "_components": [
  359. {
  360. "__id__": 9
  361. }
  362. ],
  363. "_prefab": {
  364. "__id__": 10
  365. },
  366. "_opacity": 255,
  367. "_color": {
  368. "__type__": "cc.Color",
  369. "r": 88,
  370. "g": 74,
  371. "b": 71,
  372. "a": 255
  373. },
  374. "_contentSize": {
  375. "__type__": "cc.Size",
  376. "width": 250.19,
  377. "height": 40
  378. },
  379. "_anchorPoint": {
  380. "__type__": "cc.Vec2",
  381. "x": 0,
  382. "y": 0
  383. },
  384. "_position": {
  385. "__type__": "cc.Vec3",
  386. "x": -125.095,
  387. "y": -20,
  388. "z": 0
  389. },
  390. "_scale": {
  391. "__type__": "cc.Vec3",
  392. "x": 1,
  393. "y": 1,
  394. "z": 1
  395. },
  396. "_rotationX": 0,
  397. "_rotationY": 0,
  398. "_quat": {
  399. "__type__": "cc.Quat",
  400. "x": 0,
  401. "y": 0,
  402. "z": 0,
  403. "w": 1
  404. },
  405. "_skewX": 0,
  406. "_skewY": 0,
  407. "_zIndex": -32768,
  408. "groupIndex": 0,
  409. "_id": ""
  410. },
  411. {
  412. "__type__": "cc.Label",
  413. "_name": "",
  414. "_objFlags": 0,
  415. "node": {
  416. "__id__": 8
  417. },
  418. "_enabled": true,
  419. "_srcBlendFactor": 1,
  420. "_dstBlendFactor": 771,
  421. "_useOriginalSize": true,
  422. "_string": "欢迎回来~老板",
  423. "_N$string": "欢迎回来~老板",
  424. "_fontSize": 38,
  425. "_lineHeight": 40,
  426. "_enableWrapText": true,
  427. "_N$file": null,
  428. "_isSystemFontUsed": true,
  429. "_spacingX": 0,
  430. "_N$horizontalAlign": 0,
  431. "_N$verticalAlign": 1,
  432. "_N$fontFamily": "Arial",
  433. "_N$overflow": 0,
  434. "_id": "acleq8cp5H6p1YklDX+6h7"
  435. },
  436. {
  437. "__type__": "cc.PrefabInfo",
  438. "root": {
  439. "__id__": 1
  440. },
  441. "asset": {
  442. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  443. },
  444. "fileId": "32llnDTlZJhpqt0x4Isaeh",
  445. "sync": false
  446. },
  447. {
  448. "__type__": "cc.RichText",
  449. "_name": "",
  450. "_objFlags": 0,
  451. "node": {
  452. "__id__": 7
  453. },
  454. "_enabled": true,
  455. "_N$string": "<b><color=#584a47>欢迎回来~老板</c></b>",
  456. "_N$horizontalAlign": 0,
  457. "_N$fontSize": 38,
  458. "_N$font": null,
  459. "_N$maxWidth": 0,
  460. "_N$lineHeight": 40,
  461. "_N$imageAtlas": null,
  462. "_N$handleTouchEvent": true,
  463. "_id": "b2+Xb5I11C2rTEKlSg6vRb"
  464. },
  465. {
  466. "__type__": "cc.PrefabInfo",
  467. "root": {
  468. "__id__": 1
  469. },
  470. "asset": {
  471. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  472. },
  473. "fileId": "de2EmMkhFAMY2R9644DYCY",
  474. "sync": false
  475. },
  476. {
  477. "__type__": "cc.Node",
  478. "_name": "offline_grossIncome_coin",
  479. "_objFlags": 0,
  480. "_parent": {
  481. "__id__": 6
  482. },
  483. "_children": [],
  484. "_active": true,
  485. "_level": 0,
  486. "_components": [
  487. {
  488. "__id__": 14
  489. }
  490. ],
  491. "_prefab": {
  492. "__id__": 15
  493. },
  494. "_opacity": 255,
  495. "_color": {
  496. "__type__": "cc.Color",
  497. "r": 255,
  498. "g": 255,
  499. "b": 255,
  500. "a": 255
  501. },
  502. "_contentSize": {
  503. "__type__": "cc.Size",
  504. "width": 503,
  505. "height": 376
  506. },
  507. "_anchorPoint": {
  508. "__type__": "cc.Vec2",
  509. "x": 0.5,
  510. "y": 0.5
  511. },
  512. "_position": {
  513. "__type__": "cc.Vec3",
  514. "x": 0,
  515. "y": 60,
  516. "z": 0
  517. },
  518. "_scale": {
  519. "__type__": "cc.Vec3",
  520. "x": 1,
  521. "y": 1,
  522. "z": 1
  523. },
  524. "_rotationX": 0,
  525. "_rotationY": 0,
  526. "_quat": {
  527. "__type__": "cc.Quat",
  528. "x": 0,
  529. "y": 0,
  530. "z": 0,
  531. "w": 1
  532. },
  533. "_skewX": 0,
  534. "_skewY": 0,
  535. "_zIndex": 0,
  536. "groupIndex": 0,
  537. "_id": ""
  538. },
  539. {
  540. "__type__": "cc.Sprite",
  541. "_name": "",
  542. "_objFlags": 0,
  543. "node": {
  544. "__id__": 13
  545. },
  546. "_enabled": true,
  547. "_srcBlendFactor": 770,
  548. "_dstBlendFactor": 771,
  549. "_spriteFrame": {
  550. "__uuid__": "7265ab09-494a-48da-abe4-652f4c4770ad"
  551. },
  552. "_type": 0,
  553. "_sizeMode": 1,
  554. "_fillType": 0,
  555. "_fillCenter": {
  556. "__type__": "cc.Vec2",
  557. "x": 0,
  558. "y": 0
  559. },
  560. "_fillStart": 0,
  561. "_fillRange": 0,
  562. "_isTrimmedMode": true,
  563. "_state": 0,
  564. "_atlas": null,
  565. "_id": "82AiyScTVD75qGMXINdILF"
  566. },
  567. {
  568. "__type__": "cc.PrefabInfo",
  569. "root": {
  570. "__id__": 1
  571. },
  572. "asset": {
  573. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  574. },
  575. "fileId": "3bmr3zTFxJ56Tp0bZDzzWA",
  576. "sync": false
  577. },
  578. {
  579. "__type__": "cc.Node",
  580. "_name": "close_btn",
  581. "_objFlags": 0,
  582. "_parent": {
  583. "__id__": 6
  584. },
  585. "_children": [
  586. {
  587. "__id__": 17
  588. }
  589. ],
  590. "_active": true,
  591. "_level": 0,
  592. "_components": [
  593. {
  594. "__id__": 20
  595. }
  596. ],
  597. "_prefab": {
  598. "__id__": 22
  599. },
  600. "_opacity": 255,
  601. "_color": {
  602. "__type__": "cc.Color",
  603. "r": 255,
  604. "g": 255,
  605. "b": 255,
  606. "a": 255
  607. },
  608. "_contentSize": {
  609. "__type__": "cc.Size",
  610. "width": 70,
  611. "height": 70
  612. },
  613. "_anchorPoint": {
  614. "__type__": "cc.Vec2",
  615. "x": 0.5,
  616. "y": 0.5
  617. },
  618. "_position": {
  619. "__type__": "cc.Vec3",
  620. "x": 238,
  621. "y": 322,
  622. "z": 0
  623. },
  624. "_scale": {
  625. "__type__": "cc.Vec3",
  626. "x": 1,
  627. "y": 1,
  628. "z": 1
  629. },
  630. "_rotationX": 0,
  631. "_rotationY": 0,
  632. "_quat": {
  633. "__type__": "cc.Quat",
  634. "x": 0,
  635. "y": 0,
  636. "z": 0,
  637. "w": 1
  638. },
  639. "_skewX": 0,
  640. "_skewY": 0,
  641. "_zIndex": 0,
  642. "groupIndex": 0,
  643. "_id": ""
  644. },
  645. {
  646. "__type__": "cc.Node",
  647. "_name": "New Sprite",
  648. "_objFlags": 0,
  649. "_parent": {
  650. "__id__": 16
  651. },
  652. "_children": [],
  653. "_active": true,
  654. "_level": 0,
  655. "_components": [
  656. {
  657. "__id__": 18
  658. }
  659. ],
  660. "_prefab": {
  661. "__id__": 19
  662. },
  663. "_opacity": 255,
  664. "_color": {
  665. "__type__": "cc.Color",
  666. "r": 255,
  667. "g": 255,
  668. "b": 255,
  669. "a": 255
  670. },
  671. "_contentSize": {
  672. "__type__": "cc.Size",
  673. "width": 26,
  674. "height": 26
  675. },
  676. "_anchorPoint": {
  677. "__type__": "cc.Vec2",
  678. "x": 0.5,
  679. "y": 0.5
  680. },
  681. "_position": {
  682. "__type__": "cc.Vec3",
  683. "x": 0,
  684. "y": 0,
  685. "z": 0
  686. },
  687. "_scale": {
  688. "__type__": "cc.Vec3",
  689. "x": 1,
  690. "y": 1,
  691. "z": 1
  692. },
  693. "_rotationX": 0,
  694. "_rotationY": 0,
  695. "_quat": {
  696. "__type__": "cc.Quat",
  697. "x": 0,
  698. "y": 0,
  699. "z": 0,
  700. "w": 1
  701. },
  702. "_skewX": 0,
  703. "_skewY": 0,
  704. "_zIndex": 0,
  705. "groupIndex": 0,
  706. "_id": ""
  707. },
  708. {
  709. "__type__": "cc.Sprite",
  710. "_name": "",
  711. "_objFlags": 0,
  712. "node": {
  713. "__id__": 17
  714. },
  715. "_enabled": true,
  716. "_srcBlendFactor": 770,
  717. "_dstBlendFactor": 771,
  718. "_spriteFrame": {
  719. "__uuid__": "895a44cf-9518-490c-8410-f40c80b58590"
  720. },
  721. "_type": 0,
  722. "_sizeMode": 1,
  723. "_fillType": 0,
  724. "_fillCenter": {
  725. "__type__": "cc.Vec2",
  726. "x": 0,
  727. "y": 0
  728. },
  729. "_fillStart": 0,
  730. "_fillRange": 0,
  731. "_isTrimmedMode": true,
  732. "_state": 0,
  733. "_atlas": null,
  734. "_id": "28ro8mk4JH850+ADjXd0EJ"
  735. },
  736. {
  737. "__type__": "cc.PrefabInfo",
  738. "root": {
  739. "__id__": 1
  740. },
  741. "asset": {
  742. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  743. },
  744. "fileId": "90in/sA5RECr1HRYYZnca3",
  745. "sync": false
  746. },
  747. {
  748. "__type__": "cc.Button",
  749. "_name": "",
  750. "_objFlags": 0,
  751. "node": {
  752. "__id__": 16
  753. },
  754. "_enabled": true,
  755. "transition": 1,
  756. "pressedColor": {
  757. "__type__": "cc.Color",
  758. "r": 120,
  759. "g": 120,
  760. "b": 120,
  761. "a": 255
  762. },
  763. "hoverColor": {
  764. "__type__": "cc.Color",
  765. "r": 255,
  766. "g": 255,
  767. "b": 255,
  768. "a": 255
  769. },
  770. "duration": 0.1,
  771. "zoomScale": 1.2,
  772. "clickEvents": [
  773. {
  774. "__id__": 21
  775. }
  776. ],
  777. "_N$interactable": true,
  778. "_N$enableAutoGrayEffect": false,
  779. "_N$normalColor": {
  780. "__type__": "cc.Color",
  781. "r": 255,
  782. "g": 255,
  783. "b": 255,
  784. "a": 255
  785. },
  786. "_N$disabledColor": {
  787. "__type__": "cc.Color",
  788. "r": 255,
  789. "g": 255,
  790. "b": 255,
  791. "a": 255
  792. },
  793. "_N$normalSprite": {
  794. "__uuid__": "895a44cf-9518-490c-8410-f40c80b58590"
  795. },
  796. "_N$pressedSprite": {
  797. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  798. },
  799. "pressedSprite": {
  800. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  801. },
  802. "_N$hoverSprite": {
  803. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  804. },
  805. "hoverSprite": {
  806. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  807. },
  808. "_N$disabledSprite": {
  809. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  810. },
  811. "_N$target": {
  812. "__id__": 16
  813. },
  814. "_id": "19afpqF31FGpbDkkqkQHa8"
  815. },
  816. {
  817. "__type__": "cc.ClickEvent",
  818. "target": {
  819. "__id__": 1
  820. },
  821. "component": "OfflineGrossIncome",
  822. "handler": "close",
  823. "customEventData": ""
  824. },
  825. {
  826. "__type__": "cc.PrefabInfo",
  827. "root": {
  828. "__id__": 1
  829. },
  830. "asset": {
  831. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  832. },
  833. "fileId": "74LcQZd5lBPbnjOCDGucir",
  834. "sync": false
  835. },
  836. {
  837. "__type__": "cc.Node",
  838. "_name": "content_richtext",
  839. "_objFlags": 0,
  840. "_parent": {
  841. "__id__": 6
  842. },
  843. "_children": [
  844. {
  845. "__id__": 24
  846. }
  847. ],
  848. "_active": true,
  849. "_level": 0,
  850. "_components": [
  851. {
  852. "__id__": 27
  853. }
  854. ],
  855. "_prefab": {
  856. "__id__": 28
  857. },
  858. "_opacity": 255,
  859. "_color": {
  860. "__type__": "cc.Color",
  861. "r": 255,
  862. "g": 255,
  863. "b": 255,
  864. "a": 255
  865. },
  866. "_contentSize": {
  867. "__type__": "cc.Size",
  868. "width": 240,
  869. "height": 30
  870. },
  871. "_anchorPoint": {
  872. "__type__": "cc.Vec2",
  873. "x": 0.5,
  874. "y": 0.5
  875. },
  876. "_position": {
  877. "__type__": "cc.Vec3",
  878. "x": 0,
  879. "y": 8,
  880. "z": 0
  881. },
  882. "_scale": {
  883. "__type__": "cc.Vec3",
  884. "x": 1,
  885. "y": 1,
  886. "z": 1
  887. },
  888. "_rotationX": 0,
  889. "_rotationY": 0,
  890. "_quat": {
  891. "__type__": "cc.Quat",
  892. "x": 0,
  893. "y": 0,
  894. "z": 0,
  895. "w": 1
  896. },
  897. "_skewX": 0,
  898. "_skewY": 0,
  899. "_zIndex": 0,
  900. "groupIndex": 0,
  901. "_id": ""
  902. },
  903. {
  904. "__type__": "cc.PrivateNode",
  905. "_name": "RICHTEXT_CHILD",
  906. "_objFlags": 0,
  907. "_parent": {
  908. "__id__": 23
  909. },
  910. "_children": [],
  911. "_active": true,
  912. "_level": 1,
  913. "_components": [
  914. {
  915. "__id__": 25
  916. }
  917. ],
  918. "_prefab": {
  919. "__id__": 26
  920. },
  921. "_opacity": 255,
  922. "_color": {
  923. "__type__": "cc.Color",
  924. "r": 54,
  925. "g": 46,
  926. "b": 43,
  927. "a": 255
  928. },
  929. "_contentSize": {
  930. "__type__": "cc.Size",
  931. "width": 240,
  932. "height": 30
  933. },
  934. "_anchorPoint": {
  935. "__type__": "cc.Vec2",
  936. "x": 0,
  937. "y": 0
  938. },
  939. "_position": {
  940. "__type__": "cc.Vec3",
  941. "x": -120,
  942. "y": -15,
  943. "z": 0
  944. },
  945. "_scale": {
  946. "__type__": "cc.Vec3",
  947. "x": 1,
  948. "y": 1,
  949. "z": 1
  950. },
  951. "_rotationX": 0,
  952. "_rotationY": 0,
  953. "_quat": {
  954. "__type__": "cc.Quat",
  955. "x": 0,
  956. "y": 0,
  957. "z": 0,
  958. "w": 1
  959. },
  960. "_skewX": 0,
  961. "_skewY": 0,
  962. "_zIndex": -32768,
  963. "groupIndex": 0,
  964. "_id": ""
  965. },
  966. {
  967. "__type__": "cc.Label",
  968. "_name": "",
  969. "_objFlags": 0,
  970. "node": {
  971. "__id__": 24
  972. },
  973. "_enabled": true,
  974. "_srcBlendFactor": 1,
  975. "_dstBlendFactor": 771,
  976. "_useOriginalSize": true,
  977. "_string": "我们已经为您收集",
  978. "_N$string": "我们已经为您收集",
  979. "_fontSize": 30,
  980. "_lineHeight": 30,
  981. "_enableWrapText": true,
  982. "_N$file": null,
  983. "_isSystemFontUsed": true,
  984. "_spacingX": 0,
  985. "_N$horizontalAlign": 0,
  986. "_N$verticalAlign": 1,
  987. "_N$fontFamily": "Arial",
  988. "_N$overflow": 0,
  989. "_id": "17s1b6wxNAWZKmCCNxiwcy"
  990. },
  991. {
  992. "__type__": "cc.PrefabInfo",
  993. "root": {
  994. "__id__": 1
  995. },
  996. "asset": {
  997. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  998. },
  999. "fileId": "dfMraWjgtJDa/QenGyA1ye",
  1000. "sync": false
  1001. },
  1002. {
  1003. "__type__": "cc.RichText",
  1004. "_name": "",
  1005. "_objFlags": 0,
  1006. "node": {
  1007. "__id__": 23
  1008. },
  1009. "_enabled": true,
  1010. "_N$string": "<b><color=#362e2b>我们已经为您收集</c></b>",
  1011. "_N$horizontalAlign": 0,
  1012. "_N$fontSize": 30,
  1013. "_N$font": null,
  1014. "_N$maxWidth": 0,
  1015. "_N$lineHeight": 30,
  1016. "_N$imageAtlas": null,
  1017. "_N$handleTouchEvent": true,
  1018. "_id": "caChp6FJNGprZyufL40qCn"
  1019. },
  1020. {
  1021. "__type__": "cc.PrefabInfo",
  1022. "root": {
  1023. "__id__": 1
  1024. },
  1025. "asset": {
  1026. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1027. },
  1028. "fileId": "25Lp2lLoBPIKCo58uK2pdV",
  1029. "sync": false
  1030. },
  1031. {
  1032. "__type__": "cc.Node",
  1033. "_name": "coin_richtext",
  1034. "_objFlags": 0,
  1035. "_parent": {
  1036. "__id__": 6
  1037. },
  1038. "_children": [
  1039. {
  1040. "__id__": 30
  1041. }
  1042. ],
  1043. "_active": true,
  1044. "_level": 0,
  1045. "_components": [
  1046. {
  1047. "__id__": 34
  1048. }
  1049. ],
  1050. "_prefab": {
  1051. "__id__": 35
  1052. },
  1053. "_opacity": 255,
  1054. "_color": {
  1055. "__type__": "cc.Color",
  1056. "r": 255,
  1057. "g": 255,
  1058. "b": 255,
  1059. "a": 255
  1060. },
  1061. "_contentSize": {
  1062. "__type__": "cc.Size",
  1063. "width": 49.7,
  1064. "height": 50
  1065. },
  1066. "_anchorPoint": {
  1067. "__type__": "cc.Vec2",
  1068. "x": 0.5,
  1069. "y": 0.5
  1070. },
  1071. "_position": {
  1072. "__type__": "cc.Vec3",
  1073. "x": 0,
  1074. "y": -51,
  1075. "z": 0
  1076. },
  1077. "_scale": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 1,
  1080. "y": 1,
  1081. "z": 1
  1082. },
  1083. "_rotationX": 0,
  1084. "_rotationY": 0,
  1085. "_quat": {
  1086. "__type__": "cc.Quat",
  1087. "x": 0,
  1088. "y": 0,
  1089. "z": 0,
  1090. "w": 1
  1091. },
  1092. "_skewX": 0,
  1093. "_skewY": 0,
  1094. "_zIndex": 0,
  1095. "groupIndex": 0,
  1096. "_id": ""
  1097. },
  1098. {
  1099. "__type__": "cc.PrivateNode",
  1100. "_name": "RICHTEXT_CHILD",
  1101. "_objFlags": 0,
  1102. "_parent": {
  1103. "__id__": 29
  1104. },
  1105. "_children": [],
  1106. "_active": true,
  1107. "_level": 1,
  1108. "_components": [
  1109. {
  1110. "__id__": 31
  1111. },
  1112. {
  1113. "__id__": 32
  1114. }
  1115. ],
  1116. "_prefab": {
  1117. "__id__": 33
  1118. },
  1119. "_opacity": 255,
  1120. "_color": {
  1121. "__type__": "cc.Color",
  1122. "r": 0,
  1123. "g": 146,
  1124. "b": 39,
  1125. "a": 255
  1126. },
  1127. "_contentSize": {
  1128. "__type__": "cc.Size",
  1129. "width": 49.7,
  1130. "height": 50
  1131. },
  1132. "_anchorPoint": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0,
  1135. "y": 0
  1136. },
  1137. "_position": {
  1138. "__type__": "cc.Vec3",
  1139. "x": -24.85,
  1140. "y": -25,
  1141. "z": 0
  1142. },
  1143. "_scale": {
  1144. "__type__": "cc.Vec3",
  1145. "x": 1,
  1146. "y": 1,
  1147. "z": 1
  1148. },
  1149. "_rotationX": 0,
  1150. "_rotationY": 0,
  1151. "_quat": {
  1152. "__type__": "cc.Quat",
  1153. "x": 0,
  1154. "y": 0,
  1155. "z": 0,
  1156. "w": 1
  1157. },
  1158. "_skewX": 0,
  1159. "_skewY": 0,
  1160. "_zIndex": -32768,
  1161. "groupIndex": 0,
  1162. "_id": ""
  1163. },
  1164. {
  1165. "__type__": "cc.Label",
  1166. "_name": "",
  1167. "_objFlags": 0,
  1168. "node": {
  1169. "__id__": 30
  1170. },
  1171. "_enabled": true,
  1172. "_srcBlendFactor": 1,
  1173. "_dstBlendFactor": 771,
  1174. "_useOriginalSize": true,
  1175. "_string": " 0",
  1176. "_N$string": " 0",
  1177. "_fontSize": 50,
  1178. "_lineHeight": 50,
  1179. "_enableWrapText": true,
  1180. "_N$file": null,
  1181. "_isSystemFontUsed": true,
  1182. "_spacingX": 0,
  1183. "_N$horizontalAlign": 0,
  1184. "_N$verticalAlign": 1,
  1185. "_N$fontFamily": "Arial",
  1186. "_N$overflow": 0,
  1187. "_id": "b9f45mg0BCe5eNQJEcmhAG"
  1188. },
  1189. {
  1190. "__type__": "cc.LabelOutline",
  1191. "_name": "",
  1192. "_objFlags": 0,
  1193. "node": {
  1194. "__id__": 30
  1195. },
  1196. "_enabled": true,
  1197. "_color": {
  1198. "__type__": "cc.Color",
  1199. "r": 255,
  1200. "g": 255,
  1201. "b": 255,
  1202. "a": 255
  1203. },
  1204. "_width": 4,
  1205. "_id": "35hl5uTi5Fr5dk1+9mDvE6"
  1206. },
  1207. {
  1208. "__type__": "cc.PrefabInfo",
  1209. "root": {
  1210. "__id__": 1
  1211. },
  1212. "asset": {
  1213. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1214. },
  1215. "fileId": "6eS8x/3RROXY34emMGj+bt",
  1216. "sync": false
  1217. },
  1218. {
  1219. "__type__": "cc.RichText",
  1220. "_name": "",
  1221. "_objFlags": 0,
  1222. "node": {
  1223. "__id__": 29
  1224. },
  1225. "_enabled": true,
  1226. "_N$string": "<img src='alert_coin'/><outline color=#ffffff width=4><b><color=#009227> 0</c></b></outline>",
  1227. "_N$horizontalAlign": 0,
  1228. "_N$fontSize": 50,
  1229. "_N$font": null,
  1230. "_N$maxWidth": 0,
  1231. "_N$lineHeight": 50,
  1232. "_N$imageAtlas": null,
  1233. "_N$handleTouchEvent": true,
  1234. "_id": "3erA7r7s5HPKbOgDWs5kDi"
  1235. },
  1236. {
  1237. "__type__": "cc.PrefabInfo",
  1238. "root": {
  1239. "__id__": 1
  1240. },
  1241. "asset": {
  1242. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1243. },
  1244. "fileId": "c6ZLEC3CNDobfBZRwdEPeF",
  1245. "sync": false
  1246. },
  1247. {
  1248. "__type__": "cc.Node",
  1249. "_name": "btn_wrap",
  1250. "_objFlags": 0,
  1251. "_parent": {
  1252. "__id__": 6
  1253. },
  1254. "_children": [
  1255. {
  1256. "__id__": 37
  1257. },
  1258. {
  1259. "__id__": 48
  1260. },
  1261. {
  1262. "__id__": 59
  1263. }
  1264. ],
  1265. "_active": true,
  1266. "_level": 0,
  1267. "_components": [
  1268. {
  1269. "__id__": 67
  1270. }
  1271. ],
  1272. "_prefab": {
  1273. "__id__": 68
  1274. },
  1275. "_opacity": 255,
  1276. "_color": {
  1277. "__type__": "cc.Color",
  1278. "r": 255,
  1279. "g": 255,
  1280. "b": 255,
  1281. "a": 255
  1282. },
  1283. "_contentSize": {
  1284. "__type__": "cc.Size",
  1285. "width": -8,
  1286. "height": 200
  1287. },
  1288. "_anchorPoint": {
  1289. "__type__": "cc.Vec2",
  1290. "x": 0.5,
  1291. "y": 0.5
  1292. },
  1293. "_position": {
  1294. "__type__": "cc.Vec3",
  1295. "x": 0,
  1296. "y": -218,
  1297. "z": 0
  1298. },
  1299. "_scale": {
  1300. "__type__": "cc.Vec3",
  1301. "x": 1,
  1302. "y": 1,
  1303. "z": 1
  1304. },
  1305. "_rotationX": 0,
  1306. "_rotationY": 0,
  1307. "_quat": {
  1308. "__type__": "cc.Quat",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0,
  1312. "w": 1
  1313. },
  1314. "_skewX": 0,
  1315. "_skewY": 0,
  1316. "_zIndex": 0,
  1317. "groupIndex": 0,
  1318. "_id": ""
  1319. },
  1320. {
  1321. "__type__": "cc.Node",
  1322. "_name": "video_btn",
  1323. "_objFlags": 0,
  1324. "_parent": {
  1325. "__id__": 36
  1326. },
  1327. "_children": [
  1328. {
  1329. "__id__": 38
  1330. },
  1331. {
  1332. "__id__": 41
  1333. }
  1334. ],
  1335. "_active": false,
  1336. "_level": 0,
  1337. "_components": [
  1338. {
  1339. "__id__": 44
  1340. },
  1341. {
  1342. "__id__": 45
  1343. }
  1344. ],
  1345. "_prefab": {
  1346. "__id__": 47
  1347. },
  1348. "_opacity": 255,
  1349. "_color": {
  1350. "__type__": "cc.Color",
  1351. "r": 255,
  1352. "g": 255,
  1353. "b": 255,
  1354. "a": 255
  1355. },
  1356. "_contentSize": {
  1357. "__type__": "cc.Size",
  1358. "width": 248,
  1359. "height": 120
  1360. },
  1361. "_anchorPoint": {
  1362. "__type__": "cc.Vec2",
  1363. "x": 0.5,
  1364. "y": 0.5
  1365. },
  1366. "_position": {
  1367. "__type__": "cc.Vec3",
  1368. "x": -128,
  1369. "y": 0,
  1370. "z": 0
  1371. },
  1372. "_scale": {
  1373. "__type__": "cc.Vec3",
  1374. "x": 1,
  1375. "y": 1,
  1376. "z": 1
  1377. },
  1378. "_rotationX": 0,
  1379. "_rotationY": 0,
  1380. "_quat": {
  1381. "__type__": "cc.Quat",
  1382. "x": 0,
  1383. "y": 0,
  1384. "z": 0,
  1385. "w": 1
  1386. },
  1387. "_skewX": 0,
  1388. "_skewY": 0,
  1389. "_zIndex": 0,
  1390. "groupIndex": 0,
  1391. "_id": ""
  1392. },
  1393. {
  1394. "__type__": "cc.Node",
  1395. "_name": "Label",
  1396. "_objFlags": 0,
  1397. "_parent": {
  1398. "__id__": 37
  1399. },
  1400. "_children": [],
  1401. "_active": true,
  1402. "_level": 0,
  1403. "_components": [
  1404. {
  1405. "__id__": 39
  1406. }
  1407. ],
  1408. "_prefab": {
  1409. "__id__": 40
  1410. },
  1411. "_opacity": 255,
  1412. "_color": {
  1413. "__type__": "cc.Color",
  1414. "r": 255,
  1415. "g": 255,
  1416. "b": 255,
  1417. "a": 255
  1418. },
  1419. "_contentSize": {
  1420. "__type__": "cc.Size",
  1421. "width": 196,
  1422. "height": 40
  1423. },
  1424. "_anchorPoint": {
  1425. "__type__": "cc.Vec2",
  1426. "x": 0.5,
  1427. "y": 0.5
  1428. },
  1429. "_position": {
  1430. "__type__": "cc.Vec3",
  1431. "x": 0,
  1432. "y": 23,
  1433. "z": 0
  1434. },
  1435. "_scale": {
  1436. "__type__": "cc.Vec3",
  1437. "x": 1,
  1438. "y": 1,
  1439. "z": 1
  1440. },
  1441. "_rotationX": 0,
  1442. "_rotationY": 0,
  1443. "_quat": {
  1444. "__type__": "cc.Quat",
  1445. "x": 0,
  1446. "y": 0,
  1447. "z": 0,
  1448. "w": 1
  1449. },
  1450. "_skewX": 0,
  1451. "_skewY": 0,
  1452. "_zIndex": 0,
  1453. "groupIndex": 0,
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.Label",
  1458. "_name": "",
  1459. "_objFlags": 0,
  1460. "node": {
  1461. "__id__": 38
  1462. },
  1463. "_enabled": true,
  1464. "_srcBlendFactor": 770,
  1465. "_dstBlendFactor": 771,
  1466. "_useOriginalSize": false,
  1467. "_string": "观看视频获得2倍",
  1468. "_N$string": "观看视频获得2倍",
  1469. "_fontSize": 26,
  1470. "_lineHeight": 40,
  1471. "_enableWrapText": true,
  1472. "_N$file": null,
  1473. "_isSystemFontUsed": true,
  1474. "_spacingX": 0,
  1475. "_N$horizontalAlign": 1,
  1476. "_N$verticalAlign": 1,
  1477. "_N$fontFamily": "Arial",
  1478. "_N$overflow": 0,
  1479. "_id": "998oZnjYVGEKcMwD2Vwq3j"
  1480. },
  1481. {
  1482. "__type__": "cc.PrefabInfo",
  1483. "root": {
  1484. "__id__": 1
  1485. },
  1486. "asset": {
  1487. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1488. },
  1489. "fileId": "45356gzeBJjah/tlkIVvXl",
  1490. "sync": false
  1491. },
  1492. {
  1493. "__type__": "cc.Node",
  1494. "_name": "watch_video_coin_richtext",
  1495. "_objFlags": 0,
  1496. "_parent": {
  1497. "__id__": 37
  1498. },
  1499. "_children": [],
  1500. "_active": true,
  1501. "_level": 0,
  1502. "_components": [
  1503. {
  1504. "__id__": 42
  1505. }
  1506. ],
  1507. "_prefab": {
  1508. "__id__": 43
  1509. },
  1510. "_opacity": 255,
  1511. "_color": {
  1512. "__type__": "cc.Color",
  1513. "r": 255,
  1514. "g": 255,
  1515. "b": 255,
  1516. "a": 255
  1517. },
  1518. "_contentSize": {
  1519. "__type__": "cc.Size",
  1520. "width": 75,
  1521. "height": 30
  1522. },
  1523. "_anchorPoint": {
  1524. "__type__": "cc.Vec2",
  1525. "x": 0.5,
  1526. "y": 0.5
  1527. },
  1528. "_position": {
  1529. "__type__": "cc.Vec3",
  1530. "x": 0,
  1531. "y": -23,
  1532. "z": 0
  1533. },
  1534. "_scale": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 1,
  1537. "y": 1,
  1538. "z": 1
  1539. },
  1540. "_rotationX": 0,
  1541. "_rotationY": 0,
  1542. "_quat": {
  1543. "__type__": "cc.Quat",
  1544. "x": 0,
  1545. "y": 0,
  1546. "z": 0,
  1547. "w": 1
  1548. },
  1549. "_skewX": 0,
  1550. "_skewY": 0,
  1551. "_zIndex": 0,
  1552. "groupIndex": 0,
  1553. "_id": ""
  1554. },
  1555. {
  1556. "__type__": "cc.RichText",
  1557. "_name": "",
  1558. "_objFlags": 0,
  1559. "node": {
  1560. "__id__": 41
  1561. },
  1562. "_enabled": true,
  1563. "_N$string": "<img src='alert_coin'/><color=#ffffff> 0B</c>",
  1564. "_N$horizontalAlign": 0,
  1565. "_N$fontSize": 30,
  1566. "_N$font": null,
  1567. "_N$maxWidth": 0,
  1568. "_N$lineHeight": 30,
  1569. "_N$imageAtlas": null,
  1570. "_N$handleTouchEvent": true,
  1571. "_id": "60PY/3FmhMda+crc/JqNgn"
  1572. },
  1573. {
  1574. "__type__": "cc.PrefabInfo",
  1575. "root": {
  1576. "__id__": 1
  1577. },
  1578. "asset": {
  1579. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1580. },
  1581. "fileId": "8b8f4kOetJ17rrJfzCfMid",
  1582. "sync": false
  1583. },
  1584. {
  1585. "__type__": "cc.Sprite",
  1586. "_name": "",
  1587. "_objFlags": 0,
  1588. "node": {
  1589. "__id__": 37
  1590. },
  1591. "_enabled": true,
  1592. "_srcBlendFactor": 770,
  1593. "_dstBlendFactor": 771,
  1594. "_spriteFrame": {
  1595. "__uuid__": "37330804-c034-4d5f-b79c-32ffb546a49c"
  1596. },
  1597. "_type": 1,
  1598. "_sizeMode": 0,
  1599. "_fillType": 0,
  1600. "_fillCenter": {
  1601. "__type__": "cc.Vec2",
  1602. "x": 0,
  1603. "y": 0
  1604. },
  1605. "_fillStart": 0,
  1606. "_fillRange": 0,
  1607. "_isTrimmedMode": true,
  1608. "_state": 0,
  1609. "_atlas": null,
  1610. "_id": "b7RFvg4U1FYbXmRwQiVC9Y"
  1611. },
  1612. {
  1613. "__type__": "cc.Button",
  1614. "_name": "",
  1615. "_objFlags": 0,
  1616. "node": {
  1617. "__id__": 37
  1618. },
  1619. "_enabled": true,
  1620. "transition": 1,
  1621. "pressedColor": {
  1622. "__type__": "cc.Color",
  1623. "r": 120,
  1624. "g": 120,
  1625. "b": 120,
  1626. "a": 255
  1627. },
  1628. "hoverColor": {
  1629. "__type__": "cc.Color",
  1630. "r": 255,
  1631. "g": 255,
  1632. "b": 255,
  1633. "a": 255
  1634. },
  1635. "duration": 0.1,
  1636. "zoomScale": 1.2,
  1637. "clickEvents": [
  1638. {
  1639. "__id__": 46
  1640. }
  1641. ],
  1642. "_N$interactable": true,
  1643. "_N$enableAutoGrayEffect": false,
  1644. "_N$normalColor": {
  1645. "__type__": "cc.Color",
  1646. "r": 255,
  1647. "g": 255,
  1648. "b": 255,
  1649. "a": 255
  1650. },
  1651. "_N$disabledColor": {
  1652. "__type__": "cc.Color",
  1653. "r": 255,
  1654. "g": 255,
  1655. "b": 255,
  1656. "a": 255
  1657. },
  1658. "_N$normalSprite": {
  1659. "__uuid__": "37330804-c034-4d5f-b79c-32ffb546a49c"
  1660. },
  1661. "_N$pressedSprite": {
  1662. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1663. },
  1664. "pressedSprite": {
  1665. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1666. },
  1667. "_N$hoverSprite": {
  1668. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1669. },
  1670. "hoverSprite": {
  1671. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1672. },
  1673. "_N$disabledSprite": {
  1674. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1675. },
  1676. "_N$target": {
  1677. "__id__": 37
  1678. },
  1679. "_id": "e2nWr+n5tFA6cdPoRObPNy"
  1680. },
  1681. {
  1682. "__type__": "cc.ClickEvent",
  1683. "target": {
  1684. "__id__": 1
  1685. },
  1686. "component": "OfflineGrossIncome",
  1687. "handler": "watchVideo",
  1688. "customEventData": ""
  1689. },
  1690. {
  1691. "__type__": "cc.PrefabInfo",
  1692. "root": {
  1693. "__id__": 1
  1694. },
  1695. "asset": {
  1696. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1697. },
  1698. "fileId": "e7yytwhS5BJ754/t0iBJbT",
  1699. "sync": false
  1700. },
  1701. {
  1702. "__type__": "cc.Node",
  1703. "_name": "share_btn",
  1704. "_objFlags": 0,
  1705. "_parent": {
  1706. "__id__": 36
  1707. },
  1708. "_children": [
  1709. {
  1710. "__id__": 49
  1711. },
  1712. {
  1713. "__id__": 52
  1714. }
  1715. ],
  1716. "_active": false,
  1717. "_level": 0,
  1718. "_components": [
  1719. {
  1720. "__id__": 55
  1721. },
  1722. {
  1723. "__id__": 56
  1724. }
  1725. ],
  1726. "_prefab": {
  1727. "__id__": 58
  1728. },
  1729. "_opacity": 255,
  1730. "_color": {
  1731. "__type__": "cc.Color",
  1732. "r": 255,
  1733. "g": 255,
  1734. "b": 255,
  1735. "a": 255
  1736. },
  1737. "_contentSize": {
  1738. "__type__": "cc.Size",
  1739. "width": 248,
  1740. "height": 120
  1741. },
  1742. "_anchorPoint": {
  1743. "__type__": "cc.Vec2",
  1744. "x": 0.5,
  1745. "y": 0.5
  1746. },
  1747. "_position": {
  1748. "__type__": "cc.Vec3",
  1749. "x": 0,
  1750. "y": 0,
  1751. "z": 0
  1752. },
  1753. "_scale": {
  1754. "__type__": "cc.Vec3",
  1755. "x": 1,
  1756. "y": 1,
  1757. "z": 1
  1758. },
  1759. "_rotationX": 0,
  1760. "_rotationY": 0,
  1761. "_quat": {
  1762. "__type__": "cc.Quat",
  1763. "x": 0,
  1764. "y": 0,
  1765. "z": 0,
  1766. "w": 1
  1767. },
  1768. "_skewX": 0,
  1769. "_skewY": 0,
  1770. "_zIndex": 0,
  1771. "groupIndex": 0,
  1772. "_id": ""
  1773. },
  1774. {
  1775. "__type__": "cc.Node",
  1776. "_name": "Label",
  1777. "_objFlags": 0,
  1778. "_parent": {
  1779. "__id__": 48
  1780. },
  1781. "_children": [],
  1782. "_active": true,
  1783. "_level": 0,
  1784. "_components": [
  1785. {
  1786. "__id__": 50
  1787. }
  1788. ],
  1789. "_prefab": {
  1790. "__id__": 51
  1791. },
  1792. "_opacity": 255,
  1793. "_color": {
  1794. "__type__": "cc.Color",
  1795. "r": 255,
  1796. "g": 255,
  1797. "b": 255,
  1798. "a": 255
  1799. },
  1800. "_contentSize": {
  1801. "__type__": "cc.Size",
  1802. "width": 196.46,
  1803. "height": 40
  1804. },
  1805. "_anchorPoint": {
  1806. "__type__": "cc.Vec2",
  1807. "x": 0.5,
  1808. "y": 0.5
  1809. },
  1810. "_position": {
  1811. "__type__": "cc.Vec3",
  1812. "x": 0,
  1813. "y": 23,
  1814. "z": 0
  1815. },
  1816. "_scale": {
  1817. "__type__": "cc.Vec3",
  1818. "x": 1,
  1819. "y": 1,
  1820. "z": 1
  1821. },
  1822. "_rotationX": 0,
  1823. "_rotationY": 0,
  1824. "_quat": {
  1825. "__type__": "cc.Quat",
  1826. "x": 0,
  1827. "y": 0,
  1828. "z": 0,
  1829. "w": 1
  1830. },
  1831. "_skewX": 0,
  1832. "_skewY": 0,
  1833. "_zIndex": 0,
  1834. "groupIndex": 0,
  1835. "_id": ""
  1836. },
  1837. {
  1838. "__type__": "cc.Label",
  1839. "_name": "",
  1840. "_objFlags": 0,
  1841. "node": {
  1842. "__id__": 49
  1843. },
  1844. "_enabled": true,
  1845. "_srcBlendFactor": 1,
  1846. "_dstBlendFactor": 771,
  1847. "_useOriginalSize": false,
  1848. "_string": "分享到群获得2倍",
  1849. "_N$string": "分享到群获得2倍",
  1850. "_fontSize": 26,
  1851. "_lineHeight": 40,
  1852. "_enableWrapText": true,
  1853. "_N$file": null,
  1854. "_isSystemFontUsed": true,
  1855. "_spacingX": 0,
  1856. "_N$horizontalAlign": 1,
  1857. "_N$verticalAlign": 1,
  1858. "_N$fontFamily": "Arial",
  1859. "_N$overflow": 0,
  1860. "_id": "eblA1Fd81DBY7gtDJacrEX"
  1861. },
  1862. {
  1863. "__type__": "cc.PrefabInfo",
  1864. "root": {
  1865. "__id__": 1
  1866. },
  1867. "asset": {
  1868. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1869. },
  1870. "fileId": "43d1fFumVMvbraox5Pt8Cg",
  1871. "sync": false
  1872. },
  1873. {
  1874. "__type__": "cc.Node",
  1875. "_name": "share_coin_richtext",
  1876. "_objFlags": 0,
  1877. "_parent": {
  1878. "__id__": 48
  1879. },
  1880. "_children": [],
  1881. "_active": true,
  1882. "_level": 0,
  1883. "_components": [
  1884. {
  1885. "__id__": 53
  1886. }
  1887. ],
  1888. "_prefab": {
  1889. "__id__": 54
  1890. },
  1891. "_opacity": 255,
  1892. "_color": {
  1893. "__type__": "cc.Color",
  1894. "r": 255,
  1895. "g": 255,
  1896. "b": 255,
  1897. "a": 255
  1898. },
  1899. "_contentSize": {
  1900. "__type__": "cc.Size",
  1901. "width": 75,
  1902. "height": 30
  1903. },
  1904. "_anchorPoint": {
  1905. "__type__": "cc.Vec2",
  1906. "x": 0.5,
  1907. "y": 0.5
  1908. },
  1909. "_position": {
  1910. "__type__": "cc.Vec3",
  1911. "x": 0,
  1912. "y": -23,
  1913. "z": 0
  1914. },
  1915. "_scale": {
  1916. "__type__": "cc.Vec3",
  1917. "x": 1,
  1918. "y": 1,
  1919. "z": 1
  1920. },
  1921. "_rotationX": 0,
  1922. "_rotationY": 0,
  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. "_zIndex": 0,
  1933. "groupIndex": 0,
  1934. "_id": ""
  1935. },
  1936. {
  1937. "__type__": "cc.RichText",
  1938. "_name": "",
  1939. "_objFlags": 0,
  1940. "node": {
  1941. "__id__": 52
  1942. },
  1943. "_enabled": true,
  1944. "_N$string": "<img src='alert_coin'/><color=#ffffff> 0B</c>",
  1945. "_N$horizontalAlign": 0,
  1946. "_N$fontSize": 30,
  1947. "_N$font": null,
  1948. "_N$maxWidth": 0,
  1949. "_N$lineHeight": 30,
  1950. "_N$imageAtlas": null,
  1951. "_N$handleTouchEvent": true,
  1952. "_id": "d0zEaZgClCK4pRMj2o+0QI"
  1953. },
  1954. {
  1955. "__type__": "cc.PrefabInfo",
  1956. "root": {
  1957. "__id__": 1
  1958. },
  1959. "asset": {
  1960. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  1961. },
  1962. "fileId": "29OGt0FwhL44jtvJVa0cWa",
  1963. "sync": false
  1964. },
  1965. {
  1966. "__type__": "cc.Sprite",
  1967. "_name": "",
  1968. "_objFlags": 0,
  1969. "node": {
  1970. "__id__": 48
  1971. },
  1972. "_enabled": true,
  1973. "_srcBlendFactor": 770,
  1974. "_dstBlendFactor": 771,
  1975. "_spriteFrame": {
  1976. "__uuid__": "f6df88da-8726-4fb0-ac03-9ef58d7ae5c9"
  1977. },
  1978. "_type": 1,
  1979. "_sizeMode": 0,
  1980. "_fillType": 0,
  1981. "_fillCenter": {
  1982. "__type__": "cc.Vec2",
  1983. "x": 0,
  1984. "y": 0
  1985. },
  1986. "_fillStart": 0,
  1987. "_fillRange": 0,
  1988. "_isTrimmedMode": true,
  1989. "_state": 0,
  1990. "_atlas": null,
  1991. "_id": "bf+9CiXj1G/IHFyC+YarKM"
  1992. },
  1993. {
  1994. "__type__": "cc.Button",
  1995. "_name": "",
  1996. "_objFlags": 0,
  1997. "node": {
  1998. "__id__": 48
  1999. },
  2000. "_enabled": true,
  2001. "transition": 1,
  2002. "pressedColor": {
  2003. "__type__": "cc.Color",
  2004. "r": 120,
  2005. "g": 120,
  2006. "b": 120,
  2007. "a": 255
  2008. },
  2009. "hoverColor": {
  2010. "__type__": "cc.Color",
  2011. "r": 255,
  2012. "g": 255,
  2013. "b": 255,
  2014. "a": 255
  2015. },
  2016. "duration": 0.1,
  2017. "zoomScale": 1.2,
  2018. "clickEvents": [
  2019. {
  2020. "__id__": 57
  2021. }
  2022. ],
  2023. "_N$interactable": true,
  2024. "_N$enableAutoGrayEffect": false,
  2025. "_N$normalColor": {
  2026. "__type__": "cc.Color",
  2027. "r": 255,
  2028. "g": 255,
  2029. "b": 255,
  2030. "a": 255
  2031. },
  2032. "_N$disabledColor": {
  2033. "__type__": "cc.Color",
  2034. "r": 255,
  2035. "g": 255,
  2036. "b": 255,
  2037. "a": 255
  2038. },
  2039. "_N$normalSprite": {
  2040. "__uuid__": "f6df88da-8726-4fb0-ac03-9ef58d7ae5c9"
  2041. },
  2042. "_N$pressedSprite": {
  2043. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2044. },
  2045. "pressedSprite": {
  2046. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2047. },
  2048. "_N$hoverSprite": {
  2049. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2050. },
  2051. "hoverSprite": {
  2052. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2053. },
  2054. "_N$disabledSprite": {
  2055. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2056. },
  2057. "_N$target": {
  2058. "__id__": 48
  2059. },
  2060. "_id": "a5AvJOlSdB9qsyBRELORb5"
  2061. },
  2062. {
  2063. "__type__": "cc.ClickEvent",
  2064. "target": {
  2065. "__id__": 1
  2066. },
  2067. "component": "OfflineGrossIncome",
  2068. "handler": "share",
  2069. "customEventData": ""
  2070. },
  2071. {
  2072. "__type__": "cc.PrefabInfo",
  2073. "root": {
  2074. "__id__": 1
  2075. },
  2076. "asset": {
  2077. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2078. },
  2079. "fileId": "89BRkrXI1GZqk8NNOWdrqc",
  2080. "sync": false
  2081. },
  2082. {
  2083. "__type__": "cc.Node",
  2084. "_name": "normal_btn",
  2085. "_objFlags": 0,
  2086. "_parent": {
  2087. "__id__": 36
  2088. },
  2089. "_children": [
  2090. {
  2091. "__id__": 60
  2092. }
  2093. ],
  2094. "_active": false,
  2095. "_level": 0,
  2096. "_components": [
  2097. {
  2098. "__id__": 63
  2099. },
  2100. {
  2101. "__id__": 64
  2102. }
  2103. ],
  2104. "_prefab": {
  2105. "__id__": 66
  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": 248,
  2118. "height": 120
  2119. },
  2120. "_anchorPoint": {
  2121. "__type__": "cc.Vec2",
  2122. "x": 0.5,
  2123. "y": 0.5
  2124. },
  2125. "_position": {
  2126. "__type__": "cc.Vec3",
  2127. "x": 0,
  2128. "y": 0,
  2129. "z": 0
  2130. },
  2131. "_scale": {
  2132. "__type__": "cc.Vec3",
  2133. "x": 1,
  2134. "y": 1,
  2135. "z": 1
  2136. },
  2137. "_rotationX": 0,
  2138. "_rotationY": 0,
  2139. "_quat": {
  2140. "__type__": "cc.Quat",
  2141. "x": 0,
  2142. "y": 0,
  2143. "z": 0,
  2144. "w": 1
  2145. },
  2146. "_skewX": 0,
  2147. "_skewY": 0,
  2148. "_zIndex": 0,
  2149. "groupIndex": 0,
  2150. "_id": ""
  2151. },
  2152. {
  2153. "__type__": "cc.Node",
  2154. "_name": "Label",
  2155. "_objFlags": 0,
  2156. "_parent": {
  2157. "__id__": 59
  2158. },
  2159. "_children": [],
  2160. "_active": true,
  2161. "_level": 0,
  2162. "_components": [
  2163. {
  2164. "__id__": 61
  2165. }
  2166. ],
  2167. "_prefab": {
  2168. "__id__": 62
  2169. },
  2170. "_opacity": 255,
  2171. "_color": {
  2172. "__type__": "cc.Color",
  2173. "r": 255,
  2174. "g": 255,
  2175. "b": 255,
  2176. "a": 255
  2177. },
  2178. "_contentSize": {
  2179. "__type__": "cc.Size",
  2180. "width": 136,
  2181. "height": 40
  2182. },
  2183. "_anchorPoint": {
  2184. "__type__": "cc.Vec2",
  2185. "x": 0.5,
  2186. "y": 0.5
  2187. },
  2188. "_position": {
  2189. "__type__": "cc.Vec3",
  2190. "x": 0,
  2191. "y": 0,
  2192. "z": 0
  2193. },
  2194. "_scale": {
  2195. "__type__": "cc.Vec3",
  2196. "x": 1,
  2197. "y": 1,
  2198. "z": 1
  2199. },
  2200. "_rotationX": 0,
  2201. "_rotationY": 0,
  2202. "_quat": {
  2203. "__type__": "cc.Quat",
  2204. "x": 0,
  2205. "y": 0,
  2206. "z": 0,
  2207. "w": 1
  2208. },
  2209. "_skewX": 0,
  2210. "_skewY": 0,
  2211. "_zIndex": 0,
  2212. "groupIndex": 0,
  2213. "_id": ""
  2214. },
  2215. {
  2216. "__type__": "cc.Label",
  2217. "_name": "",
  2218. "_objFlags": 0,
  2219. "node": {
  2220. "__id__": 60
  2221. },
  2222. "_enabled": true,
  2223. "_srcBlendFactor": 770,
  2224. "_dstBlendFactor": 771,
  2225. "_useOriginalSize": false,
  2226. "_string": "我知道了",
  2227. "_N$string": "我知道了",
  2228. "_fontSize": 34,
  2229. "_lineHeight": 40,
  2230. "_enableWrapText": true,
  2231. "_N$file": null,
  2232. "_isSystemFontUsed": true,
  2233. "_spacingX": 0,
  2234. "_N$horizontalAlign": 1,
  2235. "_N$verticalAlign": 1,
  2236. "_N$fontFamily": "Arial",
  2237. "_N$overflow": 0,
  2238. "_id": "2aKmV9y6xDDZLxia6hV6wO"
  2239. },
  2240. {
  2241. "__type__": "cc.PrefabInfo",
  2242. "root": {
  2243. "__id__": 1
  2244. },
  2245. "asset": {
  2246. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2247. },
  2248. "fileId": "6f2DCM6NVL5IQxwdrNdQIa",
  2249. "sync": false
  2250. },
  2251. {
  2252. "__type__": "cc.Sprite",
  2253. "_name": "",
  2254. "_objFlags": 0,
  2255. "node": {
  2256. "__id__": 59
  2257. },
  2258. "_enabled": true,
  2259. "_srcBlendFactor": 770,
  2260. "_dstBlendFactor": 771,
  2261. "_spriteFrame": {
  2262. "__uuid__": "f6df88da-8726-4fb0-ac03-9ef58d7ae5c9"
  2263. },
  2264. "_type": 0,
  2265. "_sizeMode": 1,
  2266. "_fillType": 0,
  2267. "_fillCenter": {
  2268. "__type__": "cc.Vec2",
  2269. "x": 0,
  2270. "y": 0
  2271. },
  2272. "_fillStart": 0,
  2273. "_fillRange": 0,
  2274. "_isTrimmedMode": true,
  2275. "_state": 0,
  2276. "_atlas": null,
  2277. "_id": "b0ahoTCkNJz49bEyvSntmC"
  2278. },
  2279. {
  2280. "__type__": "cc.Button",
  2281. "_name": "",
  2282. "_objFlags": 0,
  2283. "node": {
  2284. "__id__": 59
  2285. },
  2286. "_enabled": true,
  2287. "transition": 1,
  2288. "pressedColor": {
  2289. "__type__": "cc.Color",
  2290. "r": 120,
  2291. "g": 120,
  2292. "b": 120,
  2293. "a": 255
  2294. },
  2295. "hoverColor": {
  2296. "__type__": "cc.Color",
  2297. "r": 255,
  2298. "g": 255,
  2299. "b": 255,
  2300. "a": 255
  2301. },
  2302. "duration": 0.1,
  2303. "zoomScale": 1.2,
  2304. "clickEvents": [
  2305. {
  2306. "__id__": 65
  2307. }
  2308. ],
  2309. "_N$interactable": true,
  2310. "_N$enableAutoGrayEffect": false,
  2311. "_N$normalColor": {
  2312. "__type__": "cc.Color",
  2313. "r": 255,
  2314. "g": 255,
  2315. "b": 255,
  2316. "a": 255
  2317. },
  2318. "_N$disabledColor": {
  2319. "__type__": "cc.Color",
  2320. "r": 255,
  2321. "g": 255,
  2322. "b": 255,
  2323. "a": 255
  2324. },
  2325. "_N$normalSprite": null,
  2326. "_N$pressedSprite": null,
  2327. "pressedSprite": null,
  2328. "_N$hoverSprite": null,
  2329. "hoverSprite": null,
  2330. "_N$disabledSprite": null,
  2331. "_N$target": {
  2332. "__id__": 59
  2333. },
  2334. "_id": "38+gFIildO/qTmnInPJYjD"
  2335. },
  2336. {
  2337. "__type__": "cc.ClickEvent",
  2338. "target": {
  2339. "__id__": 1
  2340. },
  2341. "component": "OfflineGrossIncome",
  2342. "handler": "close",
  2343. "customEventData": ""
  2344. },
  2345. {
  2346. "__type__": "cc.PrefabInfo",
  2347. "root": {
  2348. "__id__": 1
  2349. },
  2350. "asset": {
  2351. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2352. },
  2353. "fileId": "20A9ztz45LFI5T9BoRb4HJ",
  2354. "sync": false
  2355. },
  2356. {
  2357. "__type__": "cc.Layout",
  2358. "_name": "",
  2359. "_objFlags": 0,
  2360. "node": {
  2361. "__id__": 36
  2362. },
  2363. "_enabled": true,
  2364. "_layoutSize": {
  2365. "__type__": "cc.Size",
  2366. "width": -8,
  2367. "height": 200
  2368. },
  2369. "_resize": 1,
  2370. "_N$layoutType": 1,
  2371. "_N$padding": 0,
  2372. "_N$cellSize": {
  2373. "__type__": "cc.Size",
  2374. "width": 40,
  2375. "height": 40
  2376. },
  2377. "_N$startAxis": 0,
  2378. "_N$paddingLeft": 0,
  2379. "_N$paddingRight": 0,
  2380. "_N$paddingTop": 0,
  2381. "_N$paddingBottom": 0,
  2382. "_N$spacingX": 8,
  2383. "_N$spacingY": 0,
  2384. "_N$verticalDirection": 1,
  2385. "_N$horizontalDirection": 0,
  2386. "_id": "00D1/CB+5FjK8rFt9USeS7"
  2387. },
  2388. {
  2389. "__type__": "cc.PrefabInfo",
  2390. "root": {
  2391. "__id__": 1
  2392. },
  2393. "asset": {
  2394. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2395. },
  2396. "fileId": "53dF1LWQBDaab0bO3pTGgy",
  2397. "sync": false
  2398. },
  2399. {
  2400. "__type__": "cc.Sprite",
  2401. "_name": "",
  2402. "_objFlags": 0,
  2403. "node": {
  2404. "__id__": 6
  2405. },
  2406. "_enabled": true,
  2407. "_srcBlendFactor": 770,
  2408. "_dstBlendFactor": 771,
  2409. "_spriteFrame": {
  2410. "__uuid__": "6a0c9e9d-35de-44a3-9f94-d4b067f84ad4"
  2411. },
  2412. "_type": 0,
  2413. "_sizeMode": 1,
  2414. "_fillType": 0,
  2415. "_fillCenter": {
  2416. "__type__": "cc.Vec2",
  2417. "x": 0,
  2418. "y": 0
  2419. },
  2420. "_fillStart": 0,
  2421. "_fillRange": 0,
  2422. "_isTrimmedMode": true,
  2423. "_state": 0,
  2424. "_atlas": null,
  2425. "_id": "e92P0L26BH16CPn+MKcflZ"
  2426. },
  2427. {
  2428. "__type__": "cc.PrefabInfo",
  2429. "root": {
  2430. "__id__": 1
  2431. },
  2432. "asset": {
  2433. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2434. },
  2435. "fileId": "2bSv2XkHdJJZ7gv8LqVgZV",
  2436. "sync": false
  2437. },
  2438. {
  2439. "__type__": "cc.Node",
  2440. "_name": "guide_female",
  2441. "_objFlags": 0,
  2442. "_parent": {
  2443. "__id__": 1
  2444. },
  2445. "_children": [],
  2446. "_active": true,
  2447. "_level": 0,
  2448. "_components": [
  2449. {
  2450. "__id__": 72
  2451. }
  2452. ],
  2453. "_prefab": {
  2454. "__id__": 73
  2455. },
  2456. "_opacity": 255,
  2457. "_color": {
  2458. "__type__": "cc.Color",
  2459. "r": 255,
  2460. "g": 255,
  2461. "b": 255,
  2462. "a": 255
  2463. },
  2464. "_contentSize": {
  2465. "__type__": "cc.Size",
  2466. "width": 234,
  2467. "height": 424
  2468. },
  2469. "_anchorPoint": {
  2470. "__type__": "cc.Vec2",
  2471. "x": 0.5,
  2472. "y": 0.5
  2473. },
  2474. "_position": {
  2475. "__type__": "cc.Vec3",
  2476. "x": -600,
  2477. "y": -425,
  2478. "z": 0
  2479. },
  2480. "_scale": {
  2481. "__type__": "cc.Vec3",
  2482. "x": 0.8,
  2483. "y": 0.8,
  2484. "z": 1
  2485. },
  2486. "_rotationX": 0,
  2487. "_rotationY": 0,
  2488. "_quat": {
  2489. "__type__": "cc.Quat",
  2490. "x": 0,
  2491. "y": 0,
  2492. "z": 0,
  2493. "w": 1
  2494. },
  2495. "_skewX": 0,
  2496. "_skewY": 0,
  2497. "_zIndex": 0,
  2498. "groupIndex": 0,
  2499. "_id": ""
  2500. },
  2501. {
  2502. "__type__": "cc.Sprite",
  2503. "_name": "",
  2504. "_objFlags": 0,
  2505. "node": {
  2506. "__id__": 71
  2507. },
  2508. "_enabled": true,
  2509. "_srcBlendFactor": 770,
  2510. "_dstBlendFactor": 771,
  2511. "_spriteFrame": {
  2512. "__uuid__": "d67bdf59-5941-454a-a278-1191fa087a6c"
  2513. },
  2514. "_type": 0,
  2515. "_sizeMode": 1,
  2516. "_fillType": 0,
  2517. "_fillCenter": {
  2518. "__type__": "cc.Vec2",
  2519. "x": 0,
  2520. "y": 0
  2521. },
  2522. "_fillStart": 0,
  2523. "_fillRange": 0,
  2524. "_isTrimmedMode": true,
  2525. "_state": 0,
  2526. "_atlas": null,
  2527. "_id": "83WOPWWmBH1aQhJ9KclCx0"
  2528. },
  2529. {
  2530. "__type__": "cc.PrefabInfo",
  2531. "root": {
  2532. "__id__": 1
  2533. },
  2534. "asset": {
  2535. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2536. },
  2537. "fileId": "1f+eDN0EdJMYyr2AaCM1Kl",
  2538. "sync": false
  2539. },
  2540. {
  2541. "__type__": "8375a02g+tBl5ccwmphqWkS",
  2542. "_name": "",
  2543. "_objFlags": 0,
  2544. "node": {
  2545. "__id__": 1
  2546. },
  2547. "_enabled": true,
  2548. "content": {
  2549. "__id__": 6
  2550. },
  2551. "coinRichText": {
  2552. "__id__": 34
  2553. },
  2554. "watchVideoRichText": {
  2555. "__id__": 42
  2556. },
  2557. "shareRichText": {
  2558. "__id__": 53
  2559. },
  2560. "secretarySprite": {
  2561. "__id__": 71
  2562. },
  2563. "videoBtn": {
  2564. "__id__": 37
  2565. },
  2566. "shareBtn": {
  2567. "__id__": 48
  2568. },
  2569. "normalBtn": {
  2570. "__id__": 59
  2571. },
  2572. "_N$zIndex": 100,
  2573. "_id": "batC1xVbJPLqlxAbWfKZdz"
  2574. },
  2575. {
  2576. "__type__": "cc.PrefabInfo",
  2577. "root": {
  2578. "__id__": 1
  2579. },
  2580. "asset": {
  2581. "__uuid__": "3815ae2f-f25b-4b36-8131-96fa35866f5e"
  2582. },
  2583. "fileId": "62OEGyCiNIHrjLwRY5lof2",
  2584. "sync": false
  2585. }
  2586. ]