MainScene.fire 54 KB

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