HomeUI.prefab 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812
  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. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "view",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 11
  28. },
  29. {
  30. "__id__": 14
  31. },
  32. {
  33. "__id__": 19
  34. },
  35. {
  36. "__id__": 25
  37. },
  38. {
  39. "__id__": 31
  40. },
  41. {
  42. "__id__": 43
  43. }
  44. ],
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 51
  49. },
  50. {
  51. "__id__": 52
  52. },
  53. {
  54. "__id__": 53
  55. }
  56. ],
  57. "_prefab": {
  58. "__id__": 54
  59. },
  60. "_opacity": 255,
  61. "_color": {
  62. "__type__": "cc.Color",
  63. "r": 255,
  64. "g": 255,
  65. "b": 255,
  66. "a": 255
  67. },
  68. "_contentSize": {
  69. "__type__": "cc.Size",
  70. "width": 750,
  71. "height": 1334
  72. },
  73. "_anchorPoint": {
  74. "__type__": "cc.Vec2",
  75. "x": 0.5,
  76. "y": 0.5
  77. },
  78. "_trs": {
  79. "__type__": "TypedArray",
  80. "ctor": "Float64Array",
  81. "array": [
  82. 375,
  83. 667,
  84. 0,
  85. 0,
  86. 0,
  87. 0,
  88. 1,
  89. 1,
  90. 1,
  91. 1
  92. ]
  93. },
  94. "_eulerAngles": {
  95. "__type__": "cc.Vec3",
  96. "x": 0,
  97. "y": 0,
  98. "z": 0
  99. },
  100. "_skewX": 0,
  101. "_skewY": 0,
  102. "_is3DNode": false,
  103. "_groupIndex": 0,
  104. "groupIndex": 0,
  105. "_id": ""
  106. },
  107. {
  108. "__type__": "cc.Node",
  109. "_name": "bg",
  110. "_objFlags": 512,
  111. "_parent": {
  112. "__id__": 1
  113. },
  114. "_children": [],
  115. "_active": true,
  116. "_components": [
  117. {
  118. "__id__": 3
  119. },
  120. {
  121. "__id__": 4
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 5
  126. },
  127. "_opacity": 255,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 255,
  131. "g": 255,
  132. "b": 255,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 750,
  138. "height": 1334
  139. },
  140. "_anchorPoint": {
  141. "__type__": "cc.Vec2",
  142. "x": 0.5,
  143. "y": 0.5
  144. },
  145. "_trs": {
  146. "__type__": "TypedArray",
  147. "ctor": "Float64Array",
  148. "array": [
  149. 0,
  150. 0,
  151. 0,
  152. 0,
  153. 0,
  154. 0,
  155. 1,
  156. 1,
  157. 1,
  158. 1
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 0,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": false,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Sprite",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "node": {
  179. "__id__": 2
  180. },
  181. "_enabled": true,
  182. "_materials": [
  183. {
  184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  185. }
  186. ],
  187. "_srcBlendFactor": 770,
  188. "_dstBlendFactor": 771,
  189. "_spriteFrame": {
  190. "__uuid__": "182e682c-ff36-413c-80e5-21913551022a"
  191. },
  192. "_type": 0,
  193. "_sizeMode": 0,
  194. "_fillType": 0,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.Widget",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "node": {
  211. "__id__": 2
  212. },
  213. "_enabled": true,
  214. "alignMode": 1,
  215. "_target": null,
  216. "_alignFlags": 45,
  217. "_left": 0,
  218. "_right": 0,
  219. "_top": 0,
  220. "_bottom": 0,
  221. "_verticalCenter": 0,
  222. "_horizontalCenter": 0,
  223. "_isAbsLeft": true,
  224. "_isAbsRight": true,
  225. "_isAbsTop": true,
  226. "_isAbsBottom": true,
  227. "_isAbsHorizontalCenter": true,
  228. "_isAbsVerticalCenter": true,
  229. "_originalWidth": 100,
  230. "_originalHeight": 100,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.PrefabInfo",
  235. "root": {
  236. "__id__": 1
  237. },
  238. "asset": {
  239. "__id__": 0
  240. },
  241. "fileId": "a42tBIu8ZDU5XRzOJjjGC0",
  242. "sync": false
  243. },
  244. {
  245. "__type__": "cc.Node",
  246. "_name": "btn_start",
  247. "_objFlags": 0,
  248. "_parent": {
  249. "__id__": 1
  250. },
  251. "_children": [],
  252. "_active": true,
  253. "_components": [
  254. {
  255. "__id__": 7
  256. },
  257. {
  258. "__id__": 8
  259. }
  260. ],
  261. "_prefab": {
  262. "__id__": 10
  263. },
  264. "_opacity": 255,
  265. "_color": {
  266. "__type__": "cc.Color",
  267. "r": 255,
  268. "g": 255,
  269. "b": 255,
  270. "a": 255
  271. },
  272. "_contentSize": {
  273. "__type__": "cc.Size",
  274. "width": 340,
  275. "height": 114
  276. },
  277. "_anchorPoint": {
  278. "__type__": "cc.Vec2",
  279. "x": 0.5,
  280. "y": 0.5
  281. },
  282. "_trs": {
  283. "__type__": "TypedArray",
  284. "ctor": "Float64Array",
  285. "array": [
  286. 0,
  287. -373.06,
  288. 0,
  289. 0,
  290. 0,
  291. 0,
  292. 1,
  293. 1,
  294. 1,
  295. 0
  296. ]
  297. },
  298. "_eulerAngles": {
  299. "__type__": "cc.Vec3",
  300. "x": 0,
  301. "y": 0,
  302. "z": 0
  303. },
  304. "_skewX": 0,
  305. "_skewY": 0,
  306. "_is3DNode": false,
  307. "_groupIndex": 0,
  308. "groupIndex": 0,
  309. "_id": ""
  310. },
  311. {
  312. "__type__": "cc.Sprite",
  313. "_name": "",
  314. "_objFlags": 0,
  315. "node": {
  316. "__id__": 6
  317. },
  318. "_enabled": true,
  319. "_materials": [
  320. {
  321. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  322. }
  323. ],
  324. "_srcBlendFactor": 770,
  325. "_dstBlendFactor": 771,
  326. "_spriteFrame": {
  327. "__uuid__": "04049059-1f86-4396-bd2a-807181e5e496"
  328. },
  329. "_type": 1,
  330. "_sizeMode": 0,
  331. "_fillType": 0,
  332. "_fillCenter": {
  333. "__type__": "cc.Vec2",
  334. "x": 0,
  335. "y": 0
  336. },
  337. "_fillStart": 0,
  338. "_fillRange": 0,
  339. "_isTrimmedMode": true,
  340. "_atlas": null,
  341. "_id": ""
  342. },
  343. {
  344. "__type__": "cc.Button",
  345. "_name": "",
  346. "_objFlags": 0,
  347. "node": {
  348. "__id__": 6
  349. },
  350. "_enabled": true,
  351. "_normalMaterial": null,
  352. "_grayMaterial": null,
  353. "duration": 0.1,
  354. "zoomScale": 1.2,
  355. "clickEvents": [
  356. {
  357. "__id__": 9
  358. }
  359. ],
  360. "_N$interactable": true,
  361. "_N$enableAutoGrayEffect": false,
  362. "_N$transition": 3,
  363. "transition": 3,
  364. "_N$normalColor": {
  365. "__type__": "cc.Color",
  366. "r": 255,
  367. "g": 255,
  368. "b": 255,
  369. "a": 255
  370. },
  371. "_N$pressedColor": {
  372. "__type__": "cc.Color",
  373. "r": 211,
  374. "g": 211,
  375. "b": 211,
  376. "a": 255
  377. },
  378. "pressedColor": {
  379. "__type__": "cc.Color",
  380. "r": 211,
  381. "g": 211,
  382. "b": 211,
  383. "a": 255
  384. },
  385. "_N$hoverColor": {
  386. "__type__": "cc.Color",
  387. "r": 255,
  388. "g": 255,
  389. "b": 255,
  390. "a": 255
  391. },
  392. "hoverColor": {
  393. "__type__": "cc.Color",
  394. "r": 255,
  395. "g": 255,
  396. "b": 255,
  397. "a": 255
  398. },
  399. "_N$disabledColor": {
  400. "__type__": "cc.Color",
  401. "r": 124,
  402. "g": 124,
  403. "b": 124,
  404. "a": 255
  405. },
  406. "_N$normalSprite": null,
  407. "_N$pressedSprite": null,
  408. "pressedSprite": null,
  409. "_N$hoverSprite": null,
  410. "hoverSprite": null,
  411. "_N$disabledSprite": null,
  412. "_N$target": null,
  413. "_id": ""
  414. },
  415. {
  416. "__type__": "cc.ClickEvent",
  417. "target": {
  418. "__id__": 1
  419. },
  420. "component": "",
  421. "_componentId": "4cb83Bxzk1BN7SH9SyDkPgc",
  422. "handler": "onClickStartGame",
  423. "customEventData": ""
  424. },
  425. {
  426. "__type__": "cc.PrefabInfo",
  427. "root": {
  428. "__id__": 1
  429. },
  430. "asset": {
  431. "__id__": 0
  432. },
  433. "fileId": "2eDbYOWyRJcrANAsFrVL/M",
  434. "sync": false
  435. },
  436. {
  437. "__type__": "cc.Node",
  438. "_name": "组 1358",
  439. "_objFlags": 0,
  440. "_parent": {
  441. "__id__": 1
  442. },
  443. "_children": [],
  444. "_active": true,
  445. "_components": [
  446. {
  447. "__id__": 12
  448. }
  449. ],
  450. "_prefab": {
  451. "__id__": 13
  452. },
  453. "_opacity": 255,
  454. "_color": {
  455. "__type__": "cc.Color",
  456. "r": 255,
  457. "g": 255,
  458. "b": 255,
  459. "a": 255
  460. },
  461. "_contentSize": {
  462. "__type__": "cc.Size",
  463. "width": 285,
  464. "height": 169
  465. },
  466. "_anchorPoint": {
  467. "__type__": "cc.Vec2",
  468. "x": 0.5,
  469. "y": 0.5
  470. },
  471. "_trs": {
  472. "__type__": "TypedArray",
  473. "ctor": "Float64Array",
  474. "array": [
  475. 0,
  476. 0,
  477. 0,
  478. 0,
  479. 0,
  480. 0,
  481. 1,
  482. 2,
  483. 2,
  484. 1
  485. ]
  486. },
  487. "_eulerAngles": {
  488. "__type__": "cc.Vec3",
  489. "x": 0,
  490. "y": 0,
  491. "z": 0
  492. },
  493. "_skewX": 0,
  494. "_skewY": 0,
  495. "_is3DNode": false,
  496. "_groupIndex": 0,
  497. "groupIndex": 0,
  498. "_id": ""
  499. },
  500. {
  501. "__type__": "cc.Sprite",
  502. "_name": "",
  503. "_objFlags": 0,
  504. "node": {
  505. "__id__": 11
  506. },
  507. "_enabled": true,
  508. "_materials": [
  509. {
  510. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  511. }
  512. ],
  513. "_srcBlendFactor": 770,
  514. "_dstBlendFactor": 771,
  515. "_spriteFrame": {
  516. "__uuid__": "21fc19ff-6d8f-4d36-8d6e-57ce70ff9ee7"
  517. },
  518. "_type": 0,
  519. "_sizeMode": 1,
  520. "_fillType": 0,
  521. "_fillCenter": {
  522. "__type__": "cc.Vec2",
  523. "x": 0,
  524. "y": 0
  525. },
  526. "_fillStart": 0,
  527. "_fillRange": 0,
  528. "_isTrimmedMode": true,
  529. "_atlas": null,
  530. "_id": ""
  531. },
  532. {
  533. "__type__": "cc.PrefabInfo",
  534. "root": {
  535. "__id__": 1
  536. },
  537. "asset": {
  538. "__id__": 0
  539. },
  540. "fileId": "c7m7w3X55H7YQxOqHJjbYy",
  541. "sync": false
  542. },
  543. {
  544. "__type__": "cc.Node",
  545. "_name": "Set",
  546. "_objFlags": 0,
  547. "_parent": {
  548. "__id__": 1
  549. },
  550. "_children": [],
  551. "_active": true,
  552. "_components": [
  553. {
  554. "__id__": 15
  555. },
  556. {
  557. "__id__": 16
  558. }
  559. ],
  560. "_prefab": {
  561. "__id__": 18
  562. },
  563. "_opacity": 255,
  564. "_color": {
  565. "__type__": "cc.Color",
  566. "r": 255,
  567. "g": 255,
  568. "b": 255,
  569. "a": 255
  570. },
  571. "_contentSize": {
  572. "__type__": "cc.Size",
  573. "width": 80,
  574. "height": 80
  575. },
  576. "_anchorPoint": {
  577. "__type__": "cc.Vec2",
  578. "x": 0.5,
  579. "y": 0.5
  580. },
  581. "_trs": {
  582. "__type__": "TypedArray",
  583. "ctor": "Float64Array",
  584. "array": [
  585. -303.999,
  586. 601.822,
  587. 0,
  588. 0,
  589. 0,
  590. 0,
  591. 1,
  592. 1,
  593. 1,
  594. 0
  595. ]
  596. },
  597. "_eulerAngles": {
  598. "__type__": "cc.Vec3",
  599. "x": 0,
  600. "y": 0,
  601. "z": 0
  602. },
  603. "_skewX": 0,
  604. "_skewY": 0,
  605. "_is3DNode": false,
  606. "_groupIndex": 0,
  607. "groupIndex": 0,
  608. "_id": ""
  609. },
  610. {
  611. "__type__": "cc.Sprite",
  612. "_name": "",
  613. "_objFlags": 0,
  614. "node": {
  615. "__id__": 14
  616. },
  617. "_enabled": true,
  618. "_materials": [
  619. {
  620. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  621. }
  622. ],
  623. "_srcBlendFactor": 770,
  624. "_dstBlendFactor": 771,
  625. "_spriteFrame": {
  626. "__uuid__": "c9a1d8c7-9961-427f-ab16-a2106fad771a"
  627. },
  628. "_type": 0,
  629. "_sizeMode": 0,
  630. "_fillType": 0,
  631. "_fillCenter": {
  632. "__type__": "cc.Vec2",
  633. "x": 0,
  634. "y": 0
  635. },
  636. "_fillStart": 0,
  637. "_fillRange": 0,
  638. "_isTrimmedMode": true,
  639. "_atlas": null,
  640. "_id": ""
  641. },
  642. {
  643. "__type__": "cc.Button",
  644. "_name": "",
  645. "_objFlags": 0,
  646. "node": {
  647. "__id__": 14
  648. },
  649. "_enabled": true,
  650. "_normalMaterial": null,
  651. "_grayMaterial": null,
  652. "duration": 0.1,
  653. "zoomScale": 1.2,
  654. "clickEvents": [
  655. {
  656. "__id__": 17
  657. }
  658. ],
  659. "_N$interactable": true,
  660. "_N$enableAutoGrayEffect": false,
  661. "_N$transition": 3,
  662. "transition": 3,
  663. "_N$normalColor": {
  664. "__type__": "cc.Color",
  665. "r": 255,
  666. "g": 255,
  667. "b": 255,
  668. "a": 255
  669. },
  670. "_N$pressedColor": {
  671. "__type__": "cc.Color",
  672. "r": 211,
  673. "g": 211,
  674. "b": 211,
  675. "a": 255
  676. },
  677. "pressedColor": {
  678. "__type__": "cc.Color",
  679. "r": 211,
  680. "g": 211,
  681. "b": 211,
  682. "a": 255
  683. },
  684. "_N$hoverColor": {
  685. "__type__": "cc.Color",
  686. "r": 255,
  687. "g": 255,
  688. "b": 255,
  689. "a": 255
  690. },
  691. "hoverColor": {
  692. "__type__": "cc.Color",
  693. "r": 255,
  694. "g": 255,
  695. "b": 255,
  696. "a": 255
  697. },
  698. "_N$disabledColor": {
  699. "__type__": "cc.Color",
  700. "r": 124,
  701. "g": 124,
  702. "b": 124,
  703. "a": 255
  704. },
  705. "_N$normalSprite": null,
  706. "_N$pressedSprite": null,
  707. "pressedSprite": null,
  708. "_N$hoverSprite": null,
  709. "hoverSprite": null,
  710. "_N$disabledSprite": null,
  711. "_N$target": null,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.ClickEvent",
  716. "target": {
  717. "__id__": 1
  718. },
  719. "component": "",
  720. "_componentId": "4cb83Bxzk1BN7SH9SyDkPgc",
  721. "handler": "onClickSettingBtn",
  722. "customEventData": ""
  723. },
  724. {
  725. "__type__": "cc.PrefabInfo",
  726. "root": {
  727. "__id__": 1
  728. },
  729. "asset": {
  730. "__id__": 0
  731. },
  732. "fileId": "0c3HUfto1Ol4jqU+nEM4BT",
  733. "sync": false
  734. },
  735. {
  736. "__type__": "cc.Node",
  737. "_name": "Share",
  738. "_objFlags": 0,
  739. "_parent": {
  740. "__id__": 1
  741. },
  742. "_children": [],
  743. "_active": true,
  744. "_components": [
  745. {
  746. "__id__": 20
  747. },
  748. {
  749. "__id__": 21
  750. },
  751. {
  752. "__id__": 23
  753. }
  754. ],
  755. "_prefab": {
  756. "__id__": 24
  757. },
  758. "_opacity": 255,
  759. "_color": {
  760. "__type__": "cc.Color",
  761. "r": 255,
  762. "g": 255,
  763. "b": 255,
  764. "a": 255
  765. },
  766. "_contentSize": {
  767. "__type__": "cc.Size",
  768. "width": 100,
  769. "height": 100
  770. },
  771. "_anchorPoint": {
  772. "__type__": "cc.Vec2",
  773. "x": 0.5,
  774. "y": 0.5
  775. },
  776. "_trs": {
  777. "__type__": "TypedArray",
  778. "ctor": "Float64Array",
  779. "array": [
  780. -303.999,
  781. -181.458,
  782. 0,
  783. 0,
  784. 0,
  785. 0,
  786. 1,
  787. 1,
  788. 1,
  789. 0
  790. ]
  791. },
  792. "_eulerAngles": {
  793. "__type__": "cc.Vec3",
  794. "x": 0,
  795. "y": 0,
  796. "z": 0
  797. },
  798. "_skewX": 0,
  799. "_skewY": 0,
  800. "_is3DNode": false,
  801. "_groupIndex": 0,
  802. "groupIndex": 0,
  803. "_id": ""
  804. },
  805. {
  806. "__type__": "cc.Sprite",
  807. "_name": "",
  808. "_objFlags": 0,
  809. "node": {
  810. "__id__": 19
  811. },
  812. "_enabled": true,
  813. "_materials": [
  814. {
  815. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  816. }
  817. ],
  818. "_srcBlendFactor": 770,
  819. "_dstBlendFactor": 771,
  820. "_spriteFrame": {
  821. "__uuid__": "c2f27c4b-a544-498b-957c-1bcd86e26255"
  822. },
  823. "_type": 0,
  824. "_sizeMode": 0,
  825. "_fillType": 0,
  826. "_fillCenter": {
  827. "__type__": "cc.Vec2",
  828. "x": 0,
  829. "y": 0
  830. },
  831. "_fillStart": 0,
  832. "_fillRange": 0,
  833. "_isTrimmedMode": true,
  834. "_atlas": null,
  835. "_id": ""
  836. },
  837. {
  838. "__type__": "cc.Button",
  839. "_name": "",
  840. "_objFlags": 0,
  841. "node": {
  842. "__id__": 19
  843. },
  844. "_enabled": true,
  845. "_normalMaterial": null,
  846. "_grayMaterial": null,
  847. "duration": 0.1,
  848. "zoomScale": 1.2,
  849. "clickEvents": [
  850. {
  851. "__id__": 22
  852. }
  853. ],
  854. "_N$interactable": true,
  855. "_N$enableAutoGrayEffect": false,
  856. "_N$transition": 3,
  857. "transition": 3,
  858. "_N$normalColor": {
  859. "__type__": "cc.Color",
  860. "r": 255,
  861. "g": 255,
  862. "b": 255,
  863. "a": 255
  864. },
  865. "_N$pressedColor": {
  866. "__type__": "cc.Color",
  867. "r": 211,
  868. "g": 211,
  869. "b": 211,
  870. "a": 255
  871. },
  872. "pressedColor": {
  873. "__type__": "cc.Color",
  874. "r": 211,
  875. "g": 211,
  876. "b": 211,
  877. "a": 255
  878. },
  879. "_N$hoverColor": {
  880. "__type__": "cc.Color",
  881. "r": 255,
  882. "g": 255,
  883. "b": 255,
  884. "a": 255
  885. },
  886. "hoverColor": {
  887. "__type__": "cc.Color",
  888. "r": 255,
  889. "g": 255,
  890. "b": 255,
  891. "a": 255
  892. },
  893. "_N$disabledColor": {
  894. "__type__": "cc.Color",
  895. "r": 124,
  896. "g": 124,
  897. "b": 124,
  898. "a": 255
  899. },
  900. "_N$normalSprite": null,
  901. "_N$pressedSprite": null,
  902. "pressedSprite": null,
  903. "_N$hoverSprite": null,
  904. "hoverSprite": null,
  905. "_N$disabledSprite": null,
  906. "_N$target": null,
  907. "_id": ""
  908. },
  909. {
  910. "__type__": "cc.ClickEvent",
  911. "target": {
  912. "__id__": 1
  913. },
  914. "component": "",
  915. "_componentId": "4cb83Bxzk1BN7SH9SyDkPgc",
  916. "handler": "onClickShare",
  917. "customEventData": ""
  918. },
  919. {
  920. "__type__": "cc.Widget",
  921. "_name": "",
  922. "_objFlags": 0,
  923. "node": {
  924. "__id__": 19
  925. },
  926. "_enabled": true,
  927. "alignMode": 1,
  928. "_target": null,
  929. "_alignFlags": 8,
  930. "_left": 21.000999999999976,
  931. "_right": 0,
  932. "_top": 0,
  933. "_bottom": 0,
  934. "_verticalCenter": 0,
  935. "_horizontalCenter": 0,
  936. "_isAbsLeft": true,
  937. "_isAbsRight": true,
  938. "_isAbsTop": true,
  939. "_isAbsBottom": true,
  940. "_isAbsHorizontalCenter": true,
  941. "_isAbsVerticalCenter": true,
  942. "_originalWidth": 0,
  943. "_originalHeight": 0,
  944. "_id": ""
  945. },
  946. {
  947. "__type__": "cc.PrefabInfo",
  948. "root": {
  949. "__id__": 1
  950. },
  951. "asset": {
  952. "__id__": 0
  953. },
  954. "fileId": "58GvIl/IpOvrl/j4JdIeyk",
  955. "sync": false
  956. },
  957. {
  958. "__type__": "cc.Node",
  959. "_name": "Rank",
  960. "_objFlags": 0,
  961. "_parent": {
  962. "__id__": 1
  963. },
  964. "_children": [],
  965. "_active": false,
  966. "_components": [
  967. {
  968. "__id__": 26
  969. },
  970. {
  971. "__id__": 27
  972. },
  973. {
  974. "__id__": 29
  975. }
  976. ],
  977. "_prefab": {
  978. "__id__": 30
  979. },
  980. "_opacity": 255,
  981. "_color": {
  982. "__type__": "cc.Color",
  983. "r": 255,
  984. "g": 255,
  985. "b": 255,
  986. "a": 255
  987. },
  988. "_contentSize": {
  989. "__type__": "cc.Size",
  990. "width": 100,
  991. "height": 100
  992. },
  993. "_anchorPoint": {
  994. "__type__": "cc.Vec2",
  995. "x": 0.5,
  996. "y": 0.5
  997. },
  998. "_trs": {
  999. "__type__": "TypedArray",
  1000. "ctor": "Float64Array",
  1001. "array": [
  1002. 289.342,
  1003. -197.682,
  1004. 0,
  1005. 0,
  1006. 0,
  1007. 0,
  1008. 1,
  1009. 1,
  1010. 1,
  1011. 0
  1012. ]
  1013. },
  1014. "_eulerAngles": {
  1015. "__type__": "cc.Vec3",
  1016. "x": 0,
  1017. "y": 0,
  1018. "z": 0
  1019. },
  1020. "_skewX": 0,
  1021. "_skewY": 0,
  1022. "_is3DNode": false,
  1023. "_groupIndex": 0,
  1024. "groupIndex": 0,
  1025. "_id": ""
  1026. },
  1027. {
  1028. "__type__": "cc.Sprite",
  1029. "_name": "",
  1030. "_objFlags": 0,
  1031. "node": {
  1032. "__id__": 25
  1033. },
  1034. "_enabled": true,
  1035. "_materials": [
  1036. {
  1037. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1038. }
  1039. ],
  1040. "_srcBlendFactor": 770,
  1041. "_dstBlendFactor": 771,
  1042. "_spriteFrame": {
  1043. "__uuid__": "c95f8964-ebdc-4989-9304-57691b743c20"
  1044. },
  1045. "_type": 0,
  1046. "_sizeMode": 0,
  1047. "_fillType": 0,
  1048. "_fillCenter": {
  1049. "__type__": "cc.Vec2",
  1050. "x": 0,
  1051. "y": 0
  1052. },
  1053. "_fillStart": 0,
  1054. "_fillRange": 0,
  1055. "_isTrimmedMode": true,
  1056. "_atlas": null,
  1057. "_id": ""
  1058. },
  1059. {
  1060. "__type__": "cc.Button",
  1061. "_name": "",
  1062. "_objFlags": 0,
  1063. "node": {
  1064. "__id__": 25
  1065. },
  1066. "_enabled": true,
  1067. "_normalMaterial": null,
  1068. "_grayMaterial": null,
  1069. "duration": 0.1,
  1070. "zoomScale": 1.2,
  1071. "clickEvents": [
  1072. {
  1073. "__id__": 28
  1074. }
  1075. ],
  1076. "_N$interactable": true,
  1077. "_N$enableAutoGrayEffect": false,
  1078. "_N$transition": 3,
  1079. "transition": 3,
  1080. "_N$normalColor": {
  1081. "__type__": "cc.Color",
  1082. "r": 255,
  1083. "g": 255,
  1084. "b": 255,
  1085. "a": 255
  1086. },
  1087. "_N$pressedColor": {
  1088. "__type__": "cc.Color",
  1089. "r": 211,
  1090. "g": 211,
  1091. "b": 211,
  1092. "a": 255
  1093. },
  1094. "pressedColor": {
  1095. "__type__": "cc.Color",
  1096. "r": 211,
  1097. "g": 211,
  1098. "b": 211,
  1099. "a": 255
  1100. },
  1101. "_N$hoverColor": {
  1102. "__type__": "cc.Color",
  1103. "r": 255,
  1104. "g": 255,
  1105. "b": 255,
  1106. "a": 255
  1107. },
  1108. "hoverColor": {
  1109. "__type__": "cc.Color",
  1110. "r": 255,
  1111. "g": 255,
  1112. "b": 255,
  1113. "a": 255
  1114. },
  1115. "_N$disabledColor": {
  1116. "__type__": "cc.Color",
  1117. "r": 124,
  1118. "g": 124,
  1119. "b": 124,
  1120. "a": 255
  1121. },
  1122. "_N$normalSprite": null,
  1123. "_N$pressedSprite": null,
  1124. "pressedSprite": null,
  1125. "_N$hoverSprite": null,
  1126. "hoverSprite": null,
  1127. "_N$disabledSprite": null,
  1128. "_N$target": null,
  1129. "_id": ""
  1130. },
  1131. {
  1132. "__type__": "cc.ClickEvent",
  1133. "target": {
  1134. "__id__": 1
  1135. },
  1136. "component": "",
  1137. "_componentId": "4cb83Bxzk1BN7SH9SyDkPgc",
  1138. "handler": "onClickRank",
  1139. "customEventData": ""
  1140. },
  1141. {
  1142. "__type__": "cc.Widget",
  1143. "_name": "",
  1144. "_objFlags": 0,
  1145. "node": {
  1146. "__id__": 25
  1147. },
  1148. "_enabled": true,
  1149. "alignMode": 1,
  1150. "_target": null,
  1151. "_alignFlags": 32,
  1152. "_left": 0,
  1153. "_right": 35.658000000000015,
  1154. "_top": 0,
  1155. "_bottom": 0,
  1156. "_verticalCenter": 0,
  1157. "_horizontalCenter": 0,
  1158. "_isAbsLeft": true,
  1159. "_isAbsRight": true,
  1160. "_isAbsTop": true,
  1161. "_isAbsBottom": true,
  1162. "_isAbsHorizontalCenter": true,
  1163. "_isAbsVerticalCenter": true,
  1164. "_originalWidth": 0,
  1165. "_originalHeight": 0,
  1166. "_id": ""
  1167. },
  1168. {
  1169. "__type__": "cc.PrefabInfo",
  1170. "root": {
  1171. "__id__": 1
  1172. },
  1173. "asset": {
  1174. "__id__": 0
  1175. },
  1176. "fileId": "16dY88rNZDI5VBn/op3AgA",
  1177. "sync": false
  1178. },
  1179. {
  1180. "__type__": "cc.Node",
  1181. "_name": "ADvideo",
  1182. "_objFlags": 0,
  1183. "_parent": {
  1184. "__id__": 1
  1185. },
  1186. "_children": [
  1187. {
  1188. "__id__": 32
  1189. }
  1190. ],
  1191. "_active": false,
  1192. "_components": [
  1193. {
  1194. "__id__": 40
  1195. },
  1196. {
  1197. "__id__": 41
  1198. }
  1199. ],
  1200. "_prefab": {
  1201. "__id__": 42
  1202. },
  1203. "_opacity": 255,
  1204. "_color": {
  1205. "__type__": "cc.Color",
  1206. "r": 255,
  1207. "g": 255,
  1208. "b": 255,
  1209. "a": 255
  1210. },
  1211. "_contentSize": {
  1212. "__type__": "cc.Size",
  1213. "width": 230,
  1214. "height": 386
  1215. },
  1216. "_anchorPoint": {
  1217. "__type__": "cc.Vec2",
  1218. "x": 0.5,
  1219. "y": 0.5
  1220. },
  1221. "_trs": {
  1222. "__type__": "TypedArray",
  1223. "ctor": "Float64Array",
  1224. "array": [
  1225. 207.98,
  1226. 249.977,
  1227. 0,
  1228. 0,
  1229. 0,
  1230. 0,
  1231. 1,
  1232. 1,
  1233. 1,
  1234. 1
  1235. ]
  1236. },
  1237. "_eulerAngles": {
  1238. "__type__": "cc.Vec3",
  1239. "x": 0,
  1240. "y": 0,
  1241. "z": 0
  1242. },
  1243. "_skewX": 0,
  1244. "_skewY": 0,
  1245. "_is3DNode": false,
  1246. "_groupIndex": 0,
  1247. "groupIndex": 0,
  1248. "_id": ""
  1249. },
  1250. {
  1251. "__type__": "cc.Node",
  1252. "_name": "New Sprite(Splash)",
  1253. "_objFlags": 0,
  1254. "_parent": {
  1255. "__id__": 31
  1256. },
  1257. "_children": [
  1258. {
  1259. "__id__": 33
  1260. }
  1261. ],
  1262. "_active": true,
  1263. "_components": [
  1264. {
  1265. "__id__": 36
  1266. },
  1267. {
  1268. "__id__": 37
  1269. }
  1270. ],
  1271. "_prefab": {
  1272. "__id__": 39
  1273. },
  1274. "_opacity": 255,
  1275. "_color": {
  1276. "__type__": "cc.Color",
  1277. "r": 255,
  1278. "g": 255,
  1279. "b": 255,
  1280. "a": 255
  1281. },
  1282. "_contentSize": {
  1283. "__type__": "cc.Size",
  1284. "width": 262,
  1285. "height": 173
  1286. },
  1287. "_anchorPoint": {
  1288. "__type__": "cc.Vec2",
  1289. "x": 0.5,
  1290. "y": 0.5
  1291. },
  1292. "_trs": {
  1293. "__type__": "TypedArray",
  1294. "ctor": "Float64Array",
  1295. "array": [
  1296. -87,
  1297. 0,
  1298. 0,
  1299. 0,
  1300. 0,
  1301. 0,
  1302. 1,
  1303. 1,
  1304. 1,
  1305. 0
  1306. ]
  1307. },
  1308. "_eulerAngles": {
  1309. "__type__": "cc.Vec3",
  1310. "x": 0,
  1311. "y": 0,
  1312. "z": 0
  1313. },
  1314. "_skewX": 0,
  1315. "_skewY": 0,
  1316. "_is3DNode": false,
  1317. "_groupIndex": 0,
  1318. "groupIndex": 0,
  1319. "_id": ""
  1320. },
  1321. {
  1322. "__type__": "cc.Node",
  1323. "_name": "New Label",
  1324. "_objFlags": 0,
  1325. "_parent": {
  1326. "__id__": 32
  1327. },
  1328. "_children": [],
  1329. "_active": true,
  1330. "_components": [
  1331. {
  1332. "__id__": 34
  1333. }
  1334. ],
  1335. "_prefab": {
  1336. "__id__": 35
  1337. },
  1338. "_opacity": 255,
  1339. "_color": {
  1340. "__type__": "cc.Color",
  1341. "r": 255,
  1342. "g": 255,
  1343. "b": 255,
  1344. "a": 255
  1345. },
  1346. "_contentSize": {
  1347. "__type__": "cc.Size",
  1348. "width": 160,
  1349. "height": 50.4
  1350. },
  1351. "_anchorPoint": {
  1352. "__type__": "cc.Vec2",
  1353. "x": 0.5,
  1354. "y": 0.5
  1355. },
  1356. "_trs": {
  1357. "__type__": "TypedArray",
  1358. "ctor": "Float64Array",
  1359. "array": [
  1360. 0,
  1361. 0,
  1362. 0,
  1363. 0,
  1364. 0,
  1365. 0,
  1366. 1,
  1367. 1,
  1368. 1,
  1369. 1
  1370. ]
  1371. },
  1372. "_eulerAngles": {
  1373. "__type__": "cc.Vec3",
  1374. "x": 0,
  1375. "y": 0,
  1376. "z": 0
  1377. },
  1378. "_skewX": 0,
  1379. "_skewY": 0,
  1380. "_is3DNode": false,
  1381. "_groupIndex": 0,
  1382. "groupIndex": 0,
  1383. "_id": ""
  1384. },
  1385. {
  1386. "__type__": "cc.Label",
  1387. "_name": "",
  1388. "_objFlags": 0,
  1389. "node": {
  1390. "__id__": 33
  1391. },
  1392. "_enabled": true,
  1393. "_materials": [
  1394. {
  1395. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1396. }
  1397. ],
  1398. "_srcBlendFactor": 770,
  1399. "_dstBlendFactor": 771,
  1400. "_string": "激励广告",
  1401. "_N$string": "激励广告",
  1402. "_fontSize": 40,
  1403. "_lineHeight": 40,
  1404. "_enableWrapText": true,
  1405. "_N$file": null,
  1406. "_isSystemFontUsed": true,
  1407. "_spacingX": 0,
  1408. "_batchAsBitmap": false,
  1409. "_styleFlags": 0,
  1410. "_underlineHeight": 0,
  1411. "_N$horizontalAlign": 1,
  1412. "_N$verticalAlign": 1,
  1413. "_N$fontFamily": "Arial",
  1414. "_N$overflow": 0,
  1415. "_N$cacheMode": 0,
  1416. "_id": ""
  1417. },
  1418. {
  1419. "__type__": "cc.PrefabInfo",
  1420. "root": {
  1421. "__id__": 1
  1422. },
  1423. "asset": {
  1424. "__id__": 0
  1425. },
  1426. "fileId": "3453htDT1Gl569kU9ilqB1",
  1427. "sync": false
  1428. },
  1429. {
  1430. "__type__": "cc.Sprite",
  1431. "_name": "",
  1432. "_objFlags": 0,
  1433. "node": {
  1434. "__id__": 32
  1435. },
  1436. "_enabled": true,
  1437. "_materials": [
  1438. {
  1439. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1440. }
  1441. ],
  1442. "_srcBlendFactor": 770,
  1443. "_dstBlendFactor": 771,
  1444. "_spriteFrame": {
  1445. "__uuid__": "35f7f0fc-080f-40d2-872e-ee18d9e4ee74"
  1446. },
  1447. "_type": 0,
  1448. "_sizeMode": 0,
  1449. "_fillType": 0,
  1450. "_fillCenter": {
  1451. "__type__": "cc.Vec2",
  1452. "x": 0,
  1453. "y": 0
  1454. },
  1455. "_fillStart": 0,
  1456. "_fillRange": 0,
  1457. "_isTrimmedMode": true,
  1458. "_atlas": null,
  1459. "_id": ""
  1460. },
  1461. {
  1462. "__type__": "cc.Button",
  1463. "_name": "",
  1464. "_objFlags": 0,
  1465. "node": {
  1466. "__id__": 32
  1467. },
  1468. "_enabled": true,
  1469. "_normalMaterial": null,
  1470. "_grayMaterial": null,
  1471. "duration": 0.1,
  1472. "zoomScale": 1.2,
  1473. "clickEvents": [
  1474. {
  1475. "__id__": 38
  1476. }
  1477. ],
  1478. "_N$interactable": true,
  1479. "_N$enableAutoGrayEffect": false,
  1480. "_N$transition": 3,
  1481. "transition": 3,
  1482. "_N$normalColor": {
  1483. "__type__": "cc.Color",
  1484. "r": 255,
  1485. "g": 255,
  1486. "b": 255,
  1487. "a": 255
  1488. },
  1489. "_N$pressedColor": {
  1490. "__type__": "cc.Color",
  1491. "r": 211,
  1492. "g": 211,
  1493. "b": 211,
  1494. "a": 255
  1495. },
  1496. "pressedColor": {
  1497. "__type__": "cc.Color",
  1498. "r": 211,
  1499. "g": 211,
  1500. "b": 211,
  1501. "a": 255
  1502. },
  1503. "_N$hoverColor": {
  1504. "__type__": "cc.Color",
  1505. "r": 255,
  1506. "g": 255,
  1507. "b": 255,
  1508. "a": 255
  1509. },
  1510. "hoverColor": {
  1511. "__type__": "cc.Color",
  1512. "r": 255,
  1513. "g": 255,
  1514. "b": 255,
  1515. "a": 255
  1516. },
  1517. "_N$disabledColor": {
  1518. "__type__": "cc.Color",
  1519. "r": 124,
  1520. "g": 124,
  1521. "b": 124,
  1522. "a": 255
  1523. },
  1524. "_N$normalSprite": null,
  1525. "_N$pressedSprite": null,
  1526. "pressedSprite": null,
  1527. "_N$hoverSprite": null,
  1528. "hoverSprite": null,
  1529. "_N$disabledSprite": null,
  1530. "_N$target": null,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.ClickEvent",
  1535. "target": {
  1536. "__id__": 1
  1537. },
  1538. "component": "",
  1539. "_componentId": "4a022tIeZZGq6x62zERq4wb",
  1540. "handler": "showGG",
  1541. "customEventData": ""
  1542. },
  1543. {
  1544. "__type__": "cc.PrefabInfo",
  1545. "root": {
  1546. "__id__": 1
  1547. },
  1548. "asset": {
  1549. "__id__": 0
  1550. },
  1551. "fileId": "48nv9HxBJFLp18FfUpop8I",
  1552. "sync": false
  1553. },
  1554. {
  1555. "__type__": "cc.Sprite",
  1556. "_name": "",
  1557. "_objFlags": 0,
  1558. "node": {
  1559. "__id__": 31
  1560. },
  1561. "_enabled": true,
  1562. "_materials": [
  1563. {
  1564. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1565. }
  1566. ],
  1567. "_srcBlendFactor": 770,
  1568. "_dstBlendFactor": 771,
  1569. "_spriteFrame": null,
  1570. "_type": 1,
  1571. "_sizeMode": 0,
  1572. "_fillType": 0,
  1573. "_fillCenter": {
  1574. "__type__": "cc.Vec2",
  1575. "x": 0,
  1576. "y": 0
  1577. },
  1578. "_fillStart": 0,
  1579. "_fillRange": 0,
  1580. "_isTrimmedMode": true,
  1581. "_atlas": null,
  1582. "_id": ""
  1583. },
  1584. {
  1585. "__type__": "cc.Layout",
  1586. "_name": "",
  1587. "_objFlags": 0,
  1588. "node": {
  1589. "__id__": 31
  1590. },
  1591. "_enabled": true,
  1592. "_layoutSize": {
  1593. "__type__": "cc.Size",
  1594. "width": 230,
  1595. "height": 386
  1596. },
  1597. "_resize": 1,
  1598. "_N$layoutType": 3,
  1599. "_N$cellSize": {
  1600. "__type__": "cc.Size",
  1601. "width": 40,
  1602. "height": 40
  1603. },
  1604. "_N$startAxis": 0,
  1605. "_N$paddingLeft": 0,
  1606. "_N$paddingRight": 0,
  1607. "_N$paddingTop": 0,
  1608. "_N$paddingBottom": 0,
  1609. "_N$spacingX": 40,
  1610. "_N$spacingY": 40,
  1611. "_N$verticalDirection": 1,
  1612. "_N$horizontalDirection": 0,
  1613. "_N$affectedByScale": false,
  1614. "_id": ""
  1615. },
  1616. {
  1617. "__type__": "cc.PrefabInfo",
  1618. "root": {
  1619. "__id__": 1
  1620. },
  1621. "asset": {
  1622. "__id__": 0
  1623. },
  1624. "fileId": "58oAFTD/5FxYmuoJY93q6B",
  1625. "sync": false
  1626. },
  1627. {
  1628. "__type__": "cc.Node",
  1629. "_name": "TTSdkComponent",
  1630. "_objFlags": 0,
  1631. "_parent": {
  1632. "__id__": 1
  1633. },
  1634. "_children": [],
  1635. "_active": false,
  1636. "_components": [
  1637. {
  1638. "__id__": 44
  1639. }
  1640. ],
  1641. "_prefab": {
  1642. "__id__": 50
  1643. },
  1644. "_opacity": 255,
  1645. "_color": {
  1646. "__type__": "cc.Color",
  1647. "r": 255,
  1648. "g": 255,
  1649. "b": 255,
  1650. "a": 255
  1651. },
  1652. "_contentSize": {
  1653. "__type__": "cc.Size",
  1654. "width": 0,
  1655. "height": 0
  1656. },
  1657. "_anchorPoint": {
  1658. "__type__": "cc.Vec2",
  1659. "x": 0.5,
  1660. "y": 0.5
  1661. },
  1662. "_trs": {
  1663. "__type__": "TypedArray",
  1664. "ctor": "Float64Array",
  1665. "array": [
  1666. 0,
  1667. 0,
  1668. 0,
  1669. 0,
  1670. 0,
  1671. 0,
  1672. 1,
  1673. 1,
  1674. 1,
  1675. 1
  1676. ]
  1677. },
  1678. "_eulerAngles": {
  1679. "__type__": "cc.Vec3",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0
  1683. },
  1684. "_skewX": 0,
  1685. "_skewY": 0,
  1686. "_is3DNode": false,
  1687. "_groupIndex": 0,
  1688. "groupIndex": 0,
  1689. "_id": ""
  1690. },
  1691. {
  1692. "__type__": "f3b4baxoAROPKivDnMo7ges",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "node": {
  1696. "__id__": 43
  1697. },
  1698. "_enabled": true,
  1699. "ad": {
  1700. "__id__": 45
  1701. },
  1702. "_id": ""
  1703. },
  1704. {
  1705. "__type__": "Ad",
  1706. "appId": "5603409",
  1707. "bannerAdConfig": {
  1708. "__id__": 46
  1709. },
  1710. "rewardedVideoAdConfig": {
  1711. "__id__": 47
  1712. },
  1713. "splashAdConfig": {
  1714. "__id__": 48
  1715. },
  1716. "interstitialAdConfig": {
  1717. "__id__": 49
  1718. }
  1719. },
  1720. {
  1721. "__type__": "BannerAdConfig",
  1722. "codeId": "",
  1723. "width": 500,
  1724. "height": 300
  1725. },
  1726. {
  1727. "__type__": "RewardedVideoAdConfig",
  1728. "codeId": "103120211"
  1729. },
  1730. {
  1731. "__type__": "SplashAdConfig",
  1732. "codeId": ""
  1733. },
  1734. {
  1735. "__type__": "InterstitialAdConfig",
  1736. "codeId": ""
  1737. },
  1738. {
  1739. "__type__": "cc.PrefabInfo",
  1740. "root": {
  1741. "__id__": 1
  1742. },
  1743. "asset": {
  1744. "__id__": 0
  1745. },
  1746. "fileId": "7bHImWRSpG1JisCoGWgfBT",
  1747. "sync": false
  1748. },
  1749. {
  1750. "__type__": "cc.Widget",
  1751. "_name": "",
  1752. "_objFlags": 0,
  1753. "node": {
  1754. "__id__": 1
  1755. },
  1756. "_enabled": true,
  1757. "alignMode": 1,
  1758. "_target": null,
  1759. "_alignFlags": 45,
  1760. "_left": 0,
  1761. "_right": 0,
  1762. "_top": 0,
  1763. "_bottom": 0,
  1764. "_verticalCenter": 0,
  1765. "_horizontalCenter": 0,
  1766. "_isAbsLeft": true,
  1767. "_isAbsRight": true,
  1768. "_isAbsTop": true,
  1769. "_isAbsBottom": true,
  1770. "_isAbsHorizontalCenter": true,
  1771. "_isAbsVerticalCenter": true,
  1772. "_originalWidth": 0,
  1773. "_originalHeight": 0,
  1774. "_id": ""
  1775. },
  1776. {
  1777. "__type__": "4cb83Bxzk1BN7SH9SyDkPgc",
  1778. "_name": "",
  1779. "_objFlags": 0,
  1780. "node": {
  1781. "__id__": 1
  1782. },
  1783. "_enabled": true,
  1784. "_id": ""
  1785. },
  1786. {
  1787. "__type__": "4a022tIeZZGq6x62zERq4wb",
  1788. "_name": "",
  1789. "_objFlags": 0,
  1790. "node": {
  1791. "__id__": 1
  1792. },
  1793. "_enabled": true,
  1794. "btnImages": [
  1795. {
  1796. "__uuid__": "a980d54f-fdde-4d1d-84ef-df2e14ee5b76"
  1797. }
  1798. ],
  1799. "_id": ""
  1800. },
  1801. {
  1802. "__type__": "cc.PrefabInfo",
  1803. "root": {
  1804. "__id__": 1
  1805. },
  1806. "asset": {
  1807. "__id__": 0
  1808. },
  1809. "fileId": "",
  1810. "sync": false
  1811. }
  1812. ]