GameSpeedUI.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286
  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": "GameSpeedUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 14
  28. },
  29. {
  30. "__id__": 17
  31. },
  32. {
  33. "__id__": 23
  34. },
  35. {
  36. "__id__": 26
  37. },
  38. {
  39. "__id__": 29
  40. },
  41. {
  42. "__id__": 34
  43. },
  44. {
  45. "__id__": 39
  46. },
  47. {
  48. "__id__": 53
  49. }
  50. ],
  51. "_active": true,
  52. "_components": [
  53. {
  54. "__id__": 67
  55. }
  56. ],
  57. "_prefab": {
  58. "__id__": 68
  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": 0,
  71. "height": 0
  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. 0,
  83. 0,
  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": "mask",
  110. "_objFlags": 0,
  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": 204,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 0,
  131. "g": 0,
  132. "b": 0,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 2400,
  138. "height": 1080
  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__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  191. },
  192. "_type": 1,
  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__": "62f58zwdOVN/rFVGtus3pDj",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "node": {
  211. "__id__": 2
  212. },
  213. "_enabled": true,
  214. "widthFit": true,
  215. "heightFit": true,
  216. "_id": ""
  217. },
  218. {
  219. "__type__": "cc.PrefabInfo",
  220. "root": {
  221. "__id__": 1
  222. },
  223. "asset": {
  224. "__id__": 0
  225. },
  226. "fileId": "834bR0iYZH+J2Mt5Jg4eeH",
  227. "sync": false
  228. },
  229. {
  230. "__type__": "cc.Node",
  231. "_name": "title",
  232. "_objFlags": 0,
  233. "_parent": {
  234. "__id__": 1
  235. },
  236. "_children": [
  237. {
  238. "__id__": 7
  239. }
  240. ],
  241. "_active": true,
  242. "_components": [
  243. {
  244. "__id__": 12
  245. }
  246. ],
  247. "_prefab": {
  248. "__id__": 13
  249. },
  250. "_opacity": 255,
  251. "_color": {
  252. "__type__": "cc.Color",
  253. "r": 255,
  254. "g": 255,
  255. "b": 255,
  256. "a": 255
  257. },
  258. "_contentSize": {
  259. "__type__": "cc.Size",
  260. "width": 634,
  261. "height": 83
  262. },
  263. "_anchorPoint": {
  264. "__type__": "cc.Vec2",
  265. "x": 0.5,
  266. "y": 0.5
  267. },
  268. "_trs": {
  269. "__type__": "TypedArray",
  270. "ctor": "Float64Array",
  271. "array": [
  272. 0,
  273. 350.446,
  274. 0,
  275. 0,
  276. 0,
  277. 0,
  278. 1,
  279. 1,
  280. 1,
  281. 1
  282. ]
  283. },
  284. "_eulerAngles": {
  285. "__type__": "cc.Vec3",
  286. "x": 0,
  287. "y": 0,
  288. "z": 0
  289. },
  290. "_skewX": 0,
  291. "_skewY": 0,
  292. "_is3DNode": false,
  293. "_groupIndex": 0,
  294. "groupIndex": 0,
  295. "_id": ""
  296. },
  297. {
  298. "__type__": "cc.Node",
  299. "_name": "lb",
  300. "_objFlags": 0,
  301. "_parent": {
  302. "__id__": 6
  303. },
  304. "_children": [],
  305. "_active": true,
  306. "_components": [
  307. {
  308. "__id__": 8
  309. },
  310. {
  311. "__id__": 9
  312. },
  313. {
  314. "__id__": 10
  315. }
  316. ],
  317. "_prefab": {
  318. "__id__": 11
  319. },
  320. "_opacity": 255,
  321. "_color": {
  322. "__type__": "cc.Color",
  323. "r": 255,
  324. "g": 255,
  325. "b": 255,
  326. "a": 255
  327. },
  328. "_contentSize": {
  329. "__type__": "cc.Size",
  330. "width": 335.34,
  331. "height": 62.92
  332. },
  333. "_anchorPoint": {
  334. "__type__": "cc.Vec2",
  335. "x": 0.5,
  336. "y": 0.5
  337. },
  338. "_trs": {
  339. "__type__": "TypedArray",
  340. "ctor": "Float64Array",
  341. "array": [
  342. 2.966,
  343. 0,
  344. 0,
  345. 0,
  346. 0,
  347. 0,
  348. 1,
  349. 1,
  350. 1,
  351. 1
  352. ]
  353. },
  354. "_eulerAngles": {
  355. "__type__": "cc.Vec3",
  356. "x": 0,
  357. "y": 0,
  358. "z": 0
  359. },
  360. "_skewX": 0,
  361. "_skewY": 0,
  362. "_is3DNode": false,
  363. "_groupIndex": 0,
  364. "groupIndex": 0,
  365. "_id": ""
  366. },
  367. {
  368. "__type__": "cc.Label",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 7
  373. },
  374. "_enabled": true,
  375. "_materials": [
  376. {
  377. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  378. }
  379. ],
  380. "_srcBlendFactor": 770,
  381. "_dstBlendFactor": 771,
  382. "_string": "2x speed combat",
  383. "_N$string": "2x speed combat",
  384. "_fontSize": 42,
  385. "_lineHeight": 42,
  386. "_enableWrapText": true,
  387. "_N$file": {
  388. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  389. },
  390. "_isSystemFontUsed": false,
  391. "_spacingX": 0,
  392. "_batchAsBitmap": false,
  393. "_styleFlags": 0,
  394. "_underlineHeight": 0,
  395. "_N$horizontalAlign": 1,
  396. "_N$verticalAlign": 1,
  397. "_N$fontFamily": "Arial",
  398. "_N$overflow": 0,
  399. "_N$cacheMode": 0,
  400. "_id": ""
  401. },
  402. {
  403. "__type__": "cc.LabelOutline",
  404. "_name": "",
  405. "_objFlags": 0,
  406. "node": {
  407. "__id__": 7
  408. },
  409. "_enabled": true,
  410. "_color": {
  411. "__type__": "cc.Color",
  412. "r": 38,
  413. "g": 17,
  414. "b": 12,
  415. "a": 255
  416. },
  417. "_width": 5,
  418. "_id": ""
  419. },
  420. {
  421. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  422. "_name": "",
  423. "_objFlags": 0,
  424. "node": {
  425. "__id__": 7
  426. },
  427. "_enabled": true,
  428. "_englishCase": 0,
  429. "i18n_string": "t526",
  430. "i18n_params": [],
  431. "_addColon": false,
  432. "_id": ""
  433. },
  434. {
  435. "__type__": "cc.PrefabInfo",
  436. "root": {
  437. "__id__": 7
  438. },
  439. "asset": {
  440. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  441. },
  442. "fileId": "49Yg3kHxlLW4nbgia7dTfL",
  443. "sync": false
  444. },
  445. {
  446. "__type__": "cc.Sprite",
  447. "_name": "",
  448. "_objFlags": 0,
  449. "node": {
  450. "__id__": 6
  451. },
  452. "_enabled": true,
  453. "_materials": [
  454. {
  455. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  456. }
  457. ],
  458. "_srcBlendFactor": 770,
  459. "_dstBlendFactor": 771,
  460. "_spriteFrame": {
  461. "__uuid__": "272a1aee-0d11-4802-bb9f-deb5f9b22c51"
  462. },
  463. "_type": 0,
  464. "_sizeMode": 1,
  465. "_fillType": 0,
  466. "_fillCenter": {
  467. "__type__": "cc.Vec2",
  468. "x": 0,
  469. "y": 0
  470. },
  471. "_fillStart": 0,
  472. "_fillRange": 0,
  473. "_isTrimmedMode": true,
  474. "_atlas": null,
  475. "_id": ""
  476. },
  477. {
  478. "__type__": "cc.PrefabInfo",
  479. "root": {
  480. "__id__": 1
  481. },
  482. "asset": {
  483. "__id__": 0
  484. },
  485. "fileId": "c1il9+EPVEyIvhFp1ndMjk",
  486. "sync": false
  487. },
  488. {
  489. "__type__": "cc.Node",
  490. "_name": "frame",
  491. "_objFlags": 0,
  492. "_parent": {
  493. "__id__": 1
  494. },
  495. "_children": [],
  496. "_active": true,
  497. "_components": [
  498. {
  499. "__id__": 15
  500. }
  501. ],
  502. "_prefab": {
  503. "__id__": 16
  504. },
  505. "_opacity": 255,
  506. "_color": {
  507. "__type__": "cc.Color",
  508. "r": 255,
  509. "g": 255,
  510. "b": 255,
  511. "a": 255
  512. },
  513. "_contentSize": {
  514. "__type__": "cc.Size",
  515. "width": 999,
  516. "height": 626
  517. },
  518. "_anchorPoint": {
  519. "__type__": "cc.Vec2",
  520. "x": 0.5,
  521. "y": 0.5
  522. },
  523. "_trs": {
  524. "__type__": "TypedArray",
  525. "ctor": "Float64Array",
  526. "array": [
  527. 0,
  528. 0,
  529. 0,
  530. 0,
  531. 0,
  532. 0,
  533. 1,
  534. 1,
  535. 1,
  536. 1
  537. ]
  538. },
  539. "_eulerAngles": {
  540. "__type__": "cc.Vec3",
  541. "x": 0,
  542. "y": 0,
  543. "z": 0
  544. },
  545. "_skewX": 0,
  546. "_skewY": 0,
  547. "_is3DNode": false,
  548. "_groupIndex": 0,
  549. "groupIndex": 0,
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.Sprite",
  554. "_name": "",
  555. "_objFlags": 0,
  556. "node": {
  557. "__id__": 14
  558. },
  559. "_enabled": true,
  560. "_materials": [
  561. {
  562. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  563. }
  564. ],
  565. "_srcBlendFactor": 770,
  566. "_dstBlendFactor": 771,
  567. "_spriteFrame": {
  568. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  569. },
  570. "_type": 1,
  571. "_sizeMode": 0,
  572. "_fillType": 0,
  573. "_fillCenter": {
  574. "__type__": "cc.Vec2",
  575. "x": 0,
  576. "y": 0
  577. },
  578. "_fillStart": 0,
  579. "_fillRange": 0,
  580. "_isTrimmedMode": true,
  581. "_atlas": null,
  582. "_id": ""
  583. },
  584. {
  585. "__type__": "cc.PrefabInfo",
  586. "root": {
  587. "__id__": 1
  588. },
  589. "asset": {
  590. "__id__": 0
  591. },
  592. "fileId": "1a/9VfhSlEHZIgqGpISApf",
  593. "sync": false
  594. },
  595. {
  596. "__type__": "cc.Node",
  597. "_name": "btn_close",
  598. "_objFlags": 0,
  599. "_parent": {
  600. "__id__": 1
  601. },
  602. "_children": [],
  603. "_active": true,
  604. "_components": [
  605. {
  606. "__id__": 18
  607. },
  608. {
  609. "__id__": 19
  610. },
  611. {
  612. "__id__": 20
  613. }
  614. ],
  615. "_prefab": {
  616. "__id__": 22
  617. },
  618. "_opacity": 255,
  619. "_color": {
  620. "__type__": "cc.Color",
  621. "r": 255,
  622. "g": 255,
  623. "b": 255,
  624. "a": 255
  625. },
  626. "_contentSize": {
  627. "__type__": "cc.Size",
  628. "width": 135,
  629. "height": 135
  630. },
  631. "_anchorPoint": {
  632. "__type__": "cc.Vec2",
  633. "x": 0.5,
  634. "y": 0.5
  635. },
  636. "_trs": {
  637. "__type__": "TypedArray",
  638. "ctor": "Float64Array",
  639. "array": [
  640. 448.211,
  641. 266.337,
  642. 0,
  643. 0,
  644. 0,
  645. 0,
  646. 1,
  647. 1,
  648. 1,
  649. 0
  650. ]
  651. },
  652. "_eulerAngles": {
  653. "__type__": "cc.Vec3",
  654. "x": 0,
  655. "y": 0,
  656. "z": 0
  657. },
  658. "_skewX": 0,
  659. "_skewY": 0,
  660. "_is3DNode": false,
  661. "_groupIndex": 0,
  662. "groupIndex": 0,
  663. "_id": ""
  664. },
  665. {
  666. "__type__": "cc.Sprite",
  667. "_name": "",
  668. "_objFlags": 0,
  669. "node": {
  670. "__id__": 17
  671. },
  672. "_enabled": true,
  673. "_materials": [
  674. {
  675. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  676. }
  677. ],
  678. "_srcBlendFactor": 770,
  679. "_dstBlendFactor": 771,
  680. "_spriteFrame": {
  681. "__uuid__": "23c8a125-f917-46e9-bcf8-5d8af9ec00c7"
  682. },
  683. "_type": 0,
  684. "_sizeMode": 1,
  685. "_fillType": 0,
  686. "_fillCenter": {
  687. "__type__": "cc.Vec2",
  688. "x": 0,
  689. "y": 0
  690. },
  691. "_fillStart": 0,
  692. "_fillRange": 0,
  693. "_isTrimmedMode": true,
  694. "_atlas": null,
  695. "_id": ""
  696. },
  697. {
  698. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  699. "_name": "",
  700. "_objFlags": 0,
  701. "node": {
  702. "__id__": 17
  703. },
  704. "_enabled": true,
  705. "openContinuous": true,
  706. "continuousTime": 0.2,
  707. "multiTouch": false,
  708. "_id": ""
  709. },
  710. {
  711. "__type__": "61994AafntNFIbmt1zoyLq+",
  712. "_name": "",
  713. "_objFlags": 0,
  714. "node": {
  715. "__id__": 17
  716. },
  717. "_enabled": true,
  718. "_normalMaterial": null,
  719. "_grayMaterial": null,
  720. "duration": 0.1,
  721. "zoomScale": 1.1,
  722. "clickEvents": [
  723. {
  724. "__id__": 21
  725. }
  726. ],
  727. "_N$interactable": true,
  728. "_N$enableAutoGrayEffect": false,
  729. "_N$transition": 3,
  730. "transition": 3,
  731. "_N$normalColor": {
  732. "__type__": "cc.Color",
  733. "r": 255,
  734. "g": 255,
  735. "b": 255,
  736. "a": 255
  737. },
  738. "_N$pressedColor": {
  739. "__type__": "cc.Color",
  740. "r": 211,
  741. "g": 211,
  742. "b": 211,
  743. "a": 255
  744. },
  745. "pressedColor": {
  746. "__type__": "cc.Color",
  747. "r": 211,
  748. "g": 211,
  749. "b": 211,
  750. "a": 255
  751. },
  752. "_N$hoverColor": {
  753. "__type__": "cc.Color",
  754. "r": 255,
  755. "g": 255,
  756. "b": 255,
  757. "a": 255
  758. },
  759. "hoverColor": {
  760. "__type__": "cc.Color",
  761. "r": 255,
  762. "g": 255,
  763. "b": 255,
  764. "a": 255
  765. },
  766. "_N$disabledColor": {
  767. "__type__": "cc.Color",
  768. "r": 124,
  769. "g": 124,
  770. "b": 124,
  771. "a": 255
  772. },
  773. "_N$normalSprite": null,
  774. "_N$pressedSprite": null,
  775. "pressedSprite": null,
  776. "_N$hoverSprite": null,
  777. "hoverSprite": null,
  778. "_N$disabledSprite": null,
  779. "_N$target": null,
  780. "_id": ""
  781. },
  782. {
  783. "__type__": "cc.ClickEvent",
  784. "target": {
  785. "__id__": 1
  786. },
  787. "component": "",
  788. "_componentId": "bef47Ql3fVNd7cVvIRAlmie",
  789. "handler": "hide",
  790. "customEventData": ""
  791. },
  792. {
  793. "__type__": "cc.PrefabInfo",
  794. "root": {
  795. "__id__": 1
  796. },
  797. "asset": {
  798. "__id__": 0
  799. },
  800. "fileId": "76JAS/SPRJpJy0977hio+Y",
  801. "sync": false
  802. },
  803. {
  804. "__type__": "cc.Node",
  805. "_name": "content",
  806. "_objFlags": 0,
  807. "_parent": {
  808. "__id__": 1
  809. },
  810. "_children": [],
  811. "_active": true,
  812. "_components": [
  813. {
  814. "__id__": 24
  815. }
  816. ],
  817. "_prefab": {
  818. "__id__": 25
  819. },
  820. "_opacity": 255,
  821. "_color": {
  822. "__type__": "cc.Color",
  823. "r": 255,
  824. "g": 255,
  825. "b": 255,
  826. "a": 255
  827. },
  828. "_contentSize": {
  829. "__type__": "cc.Size",
  830. "width": 859,
  831. "height": 197
  832. },
  833. "_anchorPoint": {
  834. "__type__": "cc.Vec2",
  835. "x": 0.5,
  836. "y": 0.5
  837. },
  838. "_trs": {
  839. "__type__": "TypedArray",
  840. "ctor": "Float64Array",
  841. "array": [
  842. -2,
  843. 71,
  844. 0,
  845. 0,
  846. 0,
  847. 0,
  848. 1,
  849. 1,
  850. 1,
  851. 1
  852. ]
  853. },
  854. "_eulerAngles": {
  855. "__type__": "cc.Vec3",
  856. "x": 0,
  857. "y": 0,
  858. "z": 0
  859. },
  860. "_skewX": 0,
  861. "_skewY": 0,
  862. "_is3DNode": false,
  863. "_groupIndex": 0,
  864. "groupIndex": 0,
  865. "_id": ""
  866. },
  867. {
  868. "__type__": "cc.Sprite",
  869. "_name": "",
  870. "_objFlags": 0,
  871. "node": {
  872. "__id__": 23
  873. },
  874. "_enabled": true,
  875. "_materials": [
  876. {
  877. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  878. }
  879. ],
  880. "_srcBlendFactor": 770,
  881. "_dstBlendFactor": 771,
  882. "_spriteFrame": {
  883. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  884. },
  885. "_type": 1,
  886. "_sizeMode": 0,
  887. "_fillType": 0,
  888. "_fillCenter": {
  889. "__type__": "cc.Vec2",
  890. "x": 0,
  891. "y": 0
  892. },
  893. "_fillStart": 0,
  894. "_fillRange": 0,
  895. "_isTrimmedMode": true,
  896. "_atlas": null,
  897. "_id": ""
  898. },
  899. {
  900. "__type__": "cc.PrefabInfo",
  901. "root": {
  902. "__id__": 1
  903. },
  904. "asset": {
  905. "__id__": 0
  906. },
  907. "fileId": "2bXvhxwn1HNYrno0r57tK3",
  908. "sync": false
  909. },
  910. {
  911. "__type__": "cc.Node",
  912. "_name": "sp_icon_2",
  913. "_objFlags": 0,
  914. "_parent": {
  915. "__id__": 1
  916. },
  917. "_children": [],
  918. "_active": true,
  919. "_components": [
  920. {
  921. "__id__": 27
  922. }
  923. ],
  924. "_prefab": {
  925. "__id__": 28
  926. },
  927. "_opacity": 255,
  928. "_color": {
  929. "__type__": "cc.Color",
  930. "r": 255,
  931. "g": 255,
  932. "b": 255,
  933. "a": 255
  934. },
  935. "_contentSize": {
  936. "__type__": "cc.Size",
  937. "width": 184,
  938. "height": 179
  939. },
  940. "_anchorPoint": {
  941. "__type__": "cc.Vec2",
  942. "x": 0.5,
  943. "y": 0.5
  944. },
  945. "_trs": {
  946. "__type__": "TypedArray",
  947. "ctor": "Float64Array",
  948. "array": [
  949. 0,
  950. 70,
  951. 0,
  952. 0,
  953. 0,
  954. 0,
  955. 1,
  956. 1,
  957. 1,
  958. 1
  959. ]
  960. },
  961. "_eulerAngles": {
  962. "__type__": "cc.Vec3",
  963. "x": 0,
  964. "y": 0,
  965. "z": 0
  966. },
  967. "_skewX": 0,
  968. "_skewY": 0,
  969. "_is3DNode": false,
  970. "_groupIndex": 0,
  971. "groupIndex": 0,
  972. "_id": ""
  973. },
  974. {
  975. "__type__": "cc.Sprite",
  976. "_name": "",
  977. "_objFlags": 0,
  978. "node": {
  979. "__id__": 26
  980. },
  981. "_enabled": true,
  982. "_materials": [
  983. {
  984. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  985. }
  986. ],
  987. "_srcBlendFactor": 770,
  988. "_dstBlendFactor": 771,
  989. "_spriteFrame": {
  990. "__uuid__": "86c703c2-72df-4ac3-96d4-4acb0de8b4f8"
  991. },
  992. "_type": 0,
  993. "_sizeMode": 1,
  994. "_fillType": 0,
  995. "_fillCenter": {
  996. "__type__": "cc.Vec2",
  997. "x": 0,
  998. "y": 0
  999. },
  1000. "_fillStart": 0,
  1001. "_fillRange": 0,
  1002. "_isTrimmedMode": true,
  1003. "_atlas": null,
  1004. "_id": ""
  1005. },
  1006. {
  1007. "__type__": "cc.PrefabInfo",
  1008. "root": {
  1009. "__id__": 1
  1010. },
  1011. "asset": {
  1012. "__id__": 0
  1013. },
  1014. "fileId": "46sMIYhopH6rDRPUpDb+YT",
  1015. "sync": false
  1016. },
  1017. {
  1018. "__type__": "cc.Node",
  1019. "_name": "timeLb",
  1020. "_objFlags": 0,
  1021. "_parent": {
  1022. "__id__": 1
  1023. },
  1024. "_children": [],
  1025. "_active": true,
  1026. "_components": [
  1027. {
  1028. "__id__": 30
  1029. },
  1030. {
  1031. "__id__": 31
  1032. },
  1033. {
  1034. "__id__": 32
  1035. }
  1036. ],
  1037. "_prefab": {
  1038. "__id__": 33
  1039. },
  1040. "_opacity": 255,
  1041. "_color": {
  1042. "__type__": "cc.Color",
  1043. "r": 186,
  1044. "g": 255,
  1045. "b": 39,
  1046. "a": 255
  1047. },
  1048. "_contentSize": {
  1049. "__type__": "cc.Size",
  1050. "width": 700,
  1051. "height": 96.39999999999999
  1052. },
  1053. "_anchorPoint": {
  1054. "__type__": "cc.Vec2",
  1055. "x": 0.5,
  1056. "y": 0.5
  1057. },
  1058. "_trs": {
  1059. "__type__": "TypedArray",
  1060. "ctor": "Float64Array",
  1061. "array": [
  1062. -12.105,
  1063. 229.318,
  1064. 0,
  1065. 0,
  1066. 0,
  1067. 0,
  1068. 1,
  1069. 1,
  1070. 1,
  1071. 1
  1072. ]
  1073. },
  1074. "_eulerAngles": {
  1075. "__type__": "cc.Vec3",
  1076. "x": 0,
  1077. "y": 0,
  1078. "z": 0
  1079. },
  1080. "_skewX": 0,
  1081. "_skewY": 0,
  1082. "_is3DNode": false,
  1083. "_groupIndex": 0,
  1084. "groupIndex": 0,
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.Label",
  1089. "_name": "",
  1090. "_objFlags": 0,
  1091. "node": {
  1092. "__id__": 29
  1093. },
  1094. "_enabled": true,
  1095. "_materials": [
  1096. {
  1097. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1098. }
  1099. ],
  1100. "_srcBlendFactor": 770,
  1101. "_dstBlendFactor": 771,
  1102. "_string": "Watching advertisements can quickly battle for 120 minutes !",
  1103. "_N$string": "Watching advertisements can quickly battle for 120 minutes !",
  1104. "_fontSize": 36,
  1105. "_lineHeight": 40,
  1106. "_enableWrapText": true,
  1107. "_N$file": {
  1108. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1109. },
  1110. "_isSystemFontUsed": false,
  1111. "_spacingX": 0,
  1112. "_batchAsBitmap": false,
  1113. "_styleFlags": 0,
  1114. "_underlineHeight": 0,
  1115. "_N$horizontalAlign": 1,
  1116. "_N$verticalAlign": 1,
  1117. "_N$fontFamily": "Arial",
  1118. "_N$overflow": 3,
  1119. "_N$cacheMode": 0,
  1120. "_id": ""
  1121. },
  1122. {
  1123. "__type__": "cc.LabelOutline",
  1124. "_name": "",
  1125. "_objFlags": 0,
  1126. "node": {
  1127. "__id__": 29
  1128. },
  1129. "_enabled": true,
  1130. "_color": {
  1131. "__type__": "cc.Color",
  1132. "r": 38,
  1133. "g": 17,
  1134. "b": 12,
  1135. "a": 255
  1136. },
  1137. "_width": 3,
  1138. "_id": ""
  1139. },
  1140. {
  1141. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1142. "_name": "",
  1143. "_objFlags": 0,
  1144. "node": {
  1145. "__id__": 29
  1146. },
  1147. "_enabled": true,
  1148. "_englishCase": 1,
  1149. "i18n_string": "t527",
  1150. "i18n_params": [
  1151. "120"
  1152. ],
  1153. "_addColon": false,
  1154. "_id": ""
  1155. },
  1156. {
  1157. "__type__": "cc.PrefabInfo",
  1158. "root": {
  1159. "__id__": 29
  1160. },
  1161. "asset": {
  1162. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1163. },
  1164. "fileId": "56/maHlrZCkJAEMjpdyLun",
  1165. "sync": false
  1166. },
  1167. {
  1168. "__type__": "cc.Node",
  1169. "_name": "lb",
  1170. "_objFlags": 0,
  1171. "_parent": {
  1172. "__id__": 1
  1173. },
  1174. "_children": [],
  1175. "_active": true,
  1176. "_components": [
  1177. {
  1178. "__id__": 35
  1179. },
  1180. {
  1181. "__id__": 36
  1182. },
  1183. {
  1184. "__id__": 37
  1185. }
  1186. ],
  1187. "_prefab": {
  1188. "__id__": 38
  1189. },
  1190. "_opacity": 255,
  1191. "_color": {
  1192. "__type__": "cc.Color",
  1193. "r": 255,
  1194. "g": 255,
  1195. "b": 255,
  1196. "a": 255
  1197. },
  1198. "_contentSize": {
  1199. "__type__": "cc.Size",
  1200. "width": 800,
  1201. "height": 87.35999999999999
  1202. },
  1203. "_anchorPoint": {
  1204. "__type__": "cc.Vec2",
  1205. "x": 0.5,
  1206. "y": 0.5
  1207. },
  1208. "_trs": {
  1209. "__type__": "TypedArray",
  1210. "ctor": "Float64Array",
  1211. "array": [
  1212. -12.105,
  1213. -80.102,
  1214. 0,
  1215. 0,
  1216. 0,
  1217. 0,
  1218. 1,
  1219. 1,
  1220. 1,
  1221. 1
  1222. ]
  1223. },
  1224. "_eulerAngles": {
  1225. "__type__": "cc.Vec3",
  1226. "x": 0,
  1227. "y": 0,
  1228. "z": 0
  1229. },
  1230. "_skewX": 0,
  1231. "_skewY": 0,
  1232. "_is3DNode": false,
  1233. "_groupIndex": 0,
  1234. "groupIndex": 0,
  1235. "_id": ""
  1236. },
  1237. {
  1238. "__type__": "cc.Label",
  1239. "_name": "",
  1240. "_objFlags": 0,
  1241. "node": {
  1242. "__id__": 34
  1243. },
  1244. "_enabled": true,
  1245. "_materials": [
  1246. {
  1247. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1248. }
  1249. ],
  1250. "_srcBlendFactor": 770,
  1251. "_dstBlendFactor": 771,
  1252. "_string": "Purchase an ad-free privilege card to permanently activate ad-free viewing",
  1253. "_N$string": "Purchase an ad-free privilege card to permanently activate ad-free viewing",
  1254. "_fontSize": 30,
  1255. "_lineHeight": 36,
  1256. "_enableWrapText": true,
  1257. "_N$file": {
  1258. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1259. },
  1260. "_isSystemFontUsed": false,
  1261. "_spacingX": 0,
  1262. "_batchAsBitmap": false,
  1263. "_styleFlags": 0,
  1264. "_underlineHeight": 0,
  1265. "_N$horizontalAlign": 1,
  1266. "_N$verticalAlign": 1,
  1267. "_N$fontFamily": "Arial",
  1268. "_N$overflow": 3,
  1269. "_N$cacheMode": 0,
  1270. "_id": ""
  1271. },
  1272. {
  1273. "__type__": "cc.LabelOutline",
  1274. "_name": "",
  1275. "_objFlags": 0,
  1276. "node": {
  1277. "__id__": 34
  1278. },
  1279. "_enabled": true,
  1280. "_color": {
  1281. "__type__": "cc.Color",
  1282. "r": 38,
  1283. "g": 17,
  1284. "b": 12,
  1285. "a": 255
  1286. },
  1287. "_width": 3,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "node": {
  1295. "__id__": 34
  1296. },
  1297. "_enabled": true,
  1298. "_englishCase": 1,
  1299. "i18n_string": "t528",
  1300. "i18n_params": [],
  1301. "_addColon": false,
  1302. "_id": ""
  1303. },
  1304. {
  1305. "__type__": "cc.PrefabInfo",
  1306. "root": {
  1307. "__id__": 34
  1308. },
  1309. "asset": {
  1310. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  1311. },
  1312. "fileId": "79E1tMuTJGYbfdPJjA/xQ5",
  1313. "sync": false
  1314. },
  1315. {
  1316. "__type__": "cc.Node",
  1317. "_name": "btn_blue",
  1318. "_objFlags": 0,
  1319. "_parent": {
  1320. "__id__": 1
  1321. },
  1322. "_children": [
  1323. {
  1324. "__id__": 40
  1325. },
  1326. {
  1327. "__id__": 45
  1328. }
  1329. ],
  1330. "_active": true,
  1331. "_components": [
  1332. {
  1333. "__id__": 48
  1334. },
  1335. {
  1336. "__id__": 49
  1337. },
  1338. {
  1339. "__id__": 50
  1340. }
  1341. ],
  1342. "_prefab": {
  1343. "__id__": 52
  1344. },
  1345. "_opacity": 255,
  1346. "_color": {
  1347. "__type__": "cc.Color",
  1348. "r": 255,
  1349. "g": 255,
  1350. "b": 255,
  1351. "a": 255
  1352. },
  1353. "_contentSize": {
  1354. "__type__": "cc.Size",
  1355. "width": 350,
  1356. "height": 140
  1357. },
  1358. "_anchorPoint": {
  1359. "__type__": "cc.Vec2",
  1360. "x": 0.5,
  1361. "y": 0.5
  1362. },
  1363. "_trs": {
  1364. "__type__": "TypedArray",
  1365. "ctor": "Float64Array",
  1366. "array": [
  1367. -180,
  1368. -195,
  1369. 0,
  1370. 0,
  1371. 0,
  1372. 0,
  1373. 1,
  1374. 0.9,
  1375. 0.9,
  1376. 0
  1377. ]
  1378. },
  1379. "_eulerAngles": {
  1380. "__type__": "cc.Vec3",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0
  1384. },
  1385. "_skewX": 0,
  1386. "_skewY": 0,
  1387. "_is3DNode": false,
  1388. "_groupIndex": 0,
  1389. "groupIndex": 0,
  1390. "_id": ""
  1391. },
  1392. {
  1393. "__type__": "cc.Node",
  1394. "_name": "lb",
  1395. "_objFlags": 0,
  1396. "_parent": {
  1397. "__id__": 39
  1398. },
  1399. "_children": [],
  1400. "_active": true,
  1401. "_components": [
  1402. {
  1403. "__id__": 41
  1404. },
  1405. {
  1406. "__id__": 42
  1407. },
  1408. {
  1409. "__id__": 43
  1410. }
  1411. ],
  1412. "_prefab": {
  1413. "__id__": 44
  1414. },
  1415. "_opacity": 255,
  1416. "_color": {
  1417. "__type__": "cc.Color",
  1418. "r": 0,
  1419. "g": 13,
  1420. "b": 32,
  1421. "a": 255
  1422. },
  1423. "_contentSize": {
  1424. "__type__": "cc.Size",
  1425. "width": 110.2,
  1426. "height": 73
  1427. },
  1428. "_anchorPoint": {
  1429. "__type__": "cc.Vec2",
  1430. "x": 0.5,
  1431. "y": 0.5
  1432. },
  1433. "_trs": {
  1434. "__type__": "TypedArray",
  1435. "ctor": "Float64Array",
  1436. "array": [
  1437. 45,
  1438. 0,
  1439. 0,
  1440. 0,
  1441. 0,
  1442. 0,
  1443. 1,
  1444. 1,
  1445. 1,
  1446. 1
  1447. ]
  1448. },
  1449. "_eulerAngles": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 0,
  1452. "y": 0,
  1453. "z": 0
  1454. },
  1455. "_skewX": 0,
  1456. "_skewY": 0,
  1457. "_is3DNode": false,
  1458. "_groupIndex": 0,
  1459. "groupIndex": 0,
  1460. "_id": ""
  1461. },
  1462. {
  1463. "__type__": "cc.Label",
  1464. "_name": "",
  1465. "_objFlags": 0,
  1466. "node": {
  1467. "__id__": 40
  1468. },
  1469. "_enabled": true,
  1470. "_materials": [
  1471. {
  1472. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1473. }
  1474. ],
  1475. "_srcBlendFactor": 770,
  1476. "_dstBlendFactor": 771,
  1477. "_string": "Free",
  1478. "_N$string": "Free",
  1479. "_fontSize": 48,
  1480. "_lineHeight": 50,
  1481. "_enableWrapText": true,
  1482. "_N$file": {
  1483. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1484. },
  1485. "_isSystemFontUsed": false,
  1486. "_spacingX": 0,
  1487. "_batchAsBitmap": false,
  1488. "_styleFlags": 0,
  1489. "_underlineHeight": 0,
  1490. "_N$horizontalAlign": 1,
  1491. "_N$verticalAlign": 1,
  1492. "_N$fontFamily": "Arial",
  1493. "_N$overflow": 0,
  1494. "_N$cacheMode": 0,
  1495. "_id": ""
  1496. },
  1497. {
  1498. "__type__": "cc.LabelOutline",
  1499. "_name": "",
  1500. "_objFlags": 0,
  1501. "node": {
  1502. "__id__": 40
  1503. },
  1504. "_enabled": true,
  1505. "_color": {
  1506. "__type__": "cc.Color",
  1507. "r": 54,
  1508. "g": 162,
  1509. "b": 231,
  1510. "a": 255
  1511. },
  1512. "_width": 5,
  1513. "_id": ""
  1514. },
  1515. {
  1516. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1517. "_name": "",
  1518. "_objFlags": 0,
  1519. "node": {
  1520. "__id__": 40
  1521. },
  1522. "_enabled": true,
  1523. "_englishCase": 1,
  1524. "i18n_string": "t422",
  1525. "i18n_params": [],
  1526. "_addColon": false,
  1527. "_id": ""
  1528. },
  1529. {
  1530. "__type__": "cc.PrefabInfo",
  1531. "root": {
  1532. "__id__": 39
  1533. },
  1534. "asset": {
  1535. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  1536. },
  1537. "fileId": "0257Bkg0NEyKj9p2eHdWI8",
  1538. "sync": false
  1539. },
  1540. {
  1541. "__type__": "cc.Node",
  1542. "_name": "icon_ad",
  1543. "_objFlags": 0,
  1544. "_parent": {
  1545. "__id__": 39
  1546. },
  1547. "_children": [],
  1548. "_active": true,
  1549. "_components": [
  1550. {
  1551. "__id__": 46
  1552. }
  1553. ],
  1554. "_prefab": {
  1555. "__id__": 47
  1556. },
  1557. "_opacity": 255,
  1558. "_color": {
  1559. "__type__": "cc.Color",
  1560. "r": 255,
  1561. "g": 255,
  1562. "b": 255,
  1563. "a": 255
  1564. },
  1565. "_contentSize": {
  1566. "__type__": "cc.Size",
  1567. "width": 79,
  1568. "height": 77
  1569. },
  1570. "_anchorPoint": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0.5,
  1573. "y": 0.5
  1574. },
  1575. "_trs": {
  1576. "__type__": "TypedArray",
  1577. "ctor": "Float64Array",
  1578. "array": [
  1579. -74,
  1580. 5,
  1581. 0,
  1582. 0,
  1583. 0,
  1584. 0,
  1585. 1,
  1586. 1,
  1587. 1,
  1588. 1
  1589. ]
  1590. },
  1591. "_eulerAngles": {
  1592. "__type__": "cc.Vec3",
  1593. "x": 0,
  1594. "y": 0,
  1595. "z": 0
  1596. },
  1597. "_skewX": 0,
  1598. "_skewY": 0,
  1599. "_is3DNode": false,
  1600. "_groupIndex": 0,
  1601. "groupIndex": 0,
  1602. "_id": ""
  1603. },
  1604. {
  1605. "__type__": "cc.Sprite",
  1606. "_name": "",
  1607. "_objFlags": 0,
  1608. "node": {
  1609. "__id__": 45
  1610. },
  1611. "_enabled": true,
  1612. "_materials": [
  1613. {
  1614. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1615. }
  1616. ],
  1617. "_srcBlendFactor": 770,
  1618. "_dstBlendFactor": 771,
  1619. "_spriteFrame": null,
  1620. "_type": 0,
  1621. "_sizeMode": 1,
  1622. "_fillType": 0,
  1623. "_fillCenter": {
  1624. "__type__": "cc.Vec2",
  1625. "x": 0,
  1626. "y": 0
  1627. },
  1628. "_fillStart": 0,
  1629. "_fillRange": 0,
  1630. "_isTrimmedMode": true,
  1631. "_atlas": null,
  1632. "_id": ""
  1633. },
  1634. {
  1635. "__type__": "cc.PrefabInfo",
  1636. "root": {
  1637. "__id__": 39
  1638. },
  1639. "asset": {
  1640. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  1641. },
  1642. "fileId": "b5Ea6crK5GGLgRFAmQxToH",
  1643. "sync": false
  1644. },
  1645. {
  1646. "__type__": "cc.Sprite",
  1647. "_name": "",
  1648. "_objFlags": 0,
  1649. "node": {
  1650. "__id__": 39
  1651. },
  1652. "_enabled": true,
  1653. "_materials": [
  1654. {
  1655. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1656. }
  1657. ],
  1658. "_srcBlendFactor": 770,
  1659. "_dstBlendFactor": 771,
  1660. "_spriteFrame": {
  1661. "__uuid__": "024124ea-aa33-4908-aa09-266ae903d756"
  1662. },
  1663. "_type": 0,
  1664. "_sizeMode": 0,
  1665. "_fillType": 0,
  1666. "_fillCenter": {
  1667. "__type__": "cc.Vec2",
  1668. "x": 0,
  1669. "y": 0
  1670. },
  1671. "_fillStart": 0,
  1672. "_fillRange": 0,
  1673. "_isTrimmedMode": true,
  1674. "_atlas": null,
  1675. "_id": ""
  1676. },
  1677. {
  1678. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  1679. "_name": "",
  1680. "_objFlags": 0,
  1681. "node": {
  1682. "__id__": 39
  1683. },
  1684. "_enabled": true,
  1685. "openContinuous": true,
  1686. "continuousTime": 0.2,
  1687. "multiTouch": false,
  1688. "_id": ""
  1689. },
  1690. {
  1691. "__type__": "61994AafntNFIbmt1zoyLq+",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "node": {
  1695. "__id__": 39
  1696. },
  1697. "_enabled": true,
  1698. "_normalMaterial": {
  1699. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1700. },
  1701. "_grayMaterial": null,
  1702. "duration": 0.1,
  1703. "zoomScale": 1.2,
  1704. "clickEvents": [
  1705. {
  1706. "__id__": 51
  1707. }
  1708. ],
  1709. "_N$interactable": true,
  1710. "_N$enableAutoGrayEffect": true,
  1711. "_N$transition": 3,
  1712. "transition": 3,
  1713. "_N$normalColor": {
  1714. "__type__": "cc.Color",
  1715. "r": 255,
  1716. "g": 255,
  1717. "b": 255,
  1718. "a": 255
  1719. },
  1720. "_N$pressedColor": {
  1721. "__type__": "cc.Color",
  1722. "r": 211,
  1723. "g": 211,
  1724. "b": 211,
  1725. "a": 255
  1726. },
  1727. "pressedColor": {
  1728. "__type__": "cc.Color",
  1729. "r": 211,
  1730. "g": 211,
  1731. "b": 211,
  1732. "a": 255
  1733. },
  1734. "_N$hoverColor": {
  1735. "__type__": "cc.Color",
  1736. "r": 255,
  1737. "g": 255,
  1738. "b": 255,
  1739. "a": 255
  1740. },
  1741. "hoverColor": {
  1742. "__type__": "cc.Color",
  1743. "r": 255,
  1744. "g": 255,
  1745. "b": 255,
  1746. "a": 255
  1747. },
  1748. "_N$disabledColor": {
  1749. "__type__": "cc.Color",
  1750. "r": 124,
  1751. "g": 124,
  1752. "b": 124,
  1753. "a": 255
  1754. },
  1755. "_N$normalSprite": null,
  1756. "_N$pressedSprite": null,
  1757. "pressedSprite": null,
  1758. "_N$hoverSprite": null,
  1759. "hoverSprite": null,
  1760. "_N$disabledSprite": null,
  1761. "_N$target": {
  1762. "__id__": 39
  1763. },
  1764. "_id": ""
  1765. },
  1766. {
  1767. "__type__": "cc.ClickEvent",
  1768. "target": {
  1769. "__id__": 1
  1770. },
  1771. "component": "",
  1772. "_componentId": "bef47Ql3fVNd7cVvIRAlmie",
  1773. "handler": "onFreeClick",
  1774. "customEventData": ""
  1775. },
  1776. {
  1777. "__type__": "cc.PrefabInfo",
  1778. "root": {
  1779. "__id__": 39
  1780. },
  1781. "asset": {
  1782. "__uuid__": "d3c803b4-d439-417c-b2b6-ce1f19059868"
  1783. },
  1784. "fileId": "29U742zepNxoy5ll0sZngd",
  1785. "sync": false
  1786. },
  1787. {
  1788. "__type__": "cc.Node",
  1789. "_name": "btn_yellow",
  1790. "_objFlags": 0,
  1791. "_parent": {
  1792. "__id__": 1
  1793. },
  1794. "_children": [
  1795. {
  1796. "__id__": 54
  1797. },
  1798. {
  1799. "__id__": 57
  1800. }
  1801. ],
  1802. "_active": true,
  1803. "_components": [
  1804. {
  1805. "__id__": 62
  1806. },
  1807. {
  1808. "__id__": 63
  1809. },
  1810. {
  1811. "__id__": 64
  1812. }
  1813. ],
  1814. "_prefab": {
  1815. "__id__": 66
  1816. },
  1817. "_opacity": 255,
  1818. "_color": {
  1819. "__type__": "cc.Color",
  1820. "r": 255,
  1821. "g": 255,
  1822. "b": 255,
  1823. "a": 255
  1824. },
  1825. "_contentSize": {
  1826. "__type__": "cc.Size",
  1827. "width": 350,
  1828. "height": 140
  1829. },
  1830. "_anchorPoint": {
  1831. "__type__": "cc.Vec2",
  1832. "x": 0.5,
  1833. "y": 0.5
  1834. },
  1835. "_trs": {
  1836. "__type__": "TypedArray",
  1837. "ctor": "Float64Array",
  1838. "array": [
  1839. 180,
  1840. -195,
  1841. 0,
  1842. 0,
  1843. 0,
  1844. 0,
  1845. 1,
  1846. 0.9,
  1847. 0.9,
  1848. 0
  1849. ]
  1850. },
  1851. "_eulerAngles": {
  1852. "__type__": "cc.Vec3",
  1853. "x": 0,
  1854. "y": 0,
  1855. "z": 0
  1856. },
  1857. "_skewX": 0,
  1858. "_skewY": 0,
  1859. "_is3DNode": false,
  1860. "_groupIndex": 0,
  1861. "groupIndex": 0,
  1862. "_id": ""
  1863. },
  1864. {
  1865. "__type__": "cc.Node",
  1866. "_name": "diamond",
  1867. "_objFlags": 0,
  1868. "_parent": {
  1869. "__id__": 53
  1870. },
  1871. "_children": [],
  1872. "_active": true,
  1873. "_components": [
  1874. {
  1875. "__id__": 55
  1876. }
  1877. ],
  1878. "_prefab": {
  1879. "__id__": 56
  1880. },
  1881. "_opacity": 255,
  1882. "_color": {
  1883. "__type__": "cc.Color",
  1884. "r": 255,
  1885. "g": 255,
  1886. "b": 255,
  1887. "a": 255
  1888. },
  1889. "_contentSize": {
  1890. "__type__": "cc.Size",
  1891. "width": 117,
  1892. "height": 110
  1893. },
  1894. "_anchorPoint": {
  1895. "__type__": "cc.Vec2",
  1896. "x": 0.5,
  1897. "y": 0.5
  1898. },
  1899. "_trs": {
  1900. "__type__": "TypedArray",
  1901. "ctor": "Float64Array",
  1902. "array": [
  1903. -85.269,
  1904. 5,
  1905. 0,
  1906. 0,
  1907. 0,
  1908. 0,
  1909. 1,
  1910. 0.8,
  1911. 0.8,
  1912. 1
  1913. ]
  1914. },
  1915. "_eulerAngles": {
  1916. "__type__": "cc.Vec3",
  1917. "x": 0,
  1918. "y": 0,
  1919. "z": 0
  1920. },
  1921. "_skewX": 0,
  1922. "_skewY": 0,
  1923. "_is3DNode": false,
  1924. "_groupIndex": 0,
  1925. "groupIndex": 0,
  1926. "_id": ""
  1927. },
  1928. {
  1929. "__type__": "cc.Sprite",
  1930. "_name": "",
  1931. "_objFlags": 0,
  1932. "node": {
  1933. "__id__": 54
  1934. },
  1935. "_enabled": true,
  1936. "_materials": [
  1937. {
  1938. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1939. }
  1940. ],
  1941. "_srcBlendFactor": 770,
  1942. "_dstBlendFactor": 771,
  1943. "_spriteFrame": {
  1944. "__uuid__": "65a0a1d1-2bc6-4b88-bffc-9f1a9a151101"
  1945. },
  1946. "_type": 0,
  1947. "_sizeMode": 1,
  1948. "_fillType": 0,
  1949. "_fillCenter": {
  1950. "__type__": "cc.Vec2",
  1951. "x": 0,
  1952. "y": 0
  1953. },
  1954. "_fillStart": 0,
  1955. "_fillRange": 0,
  1956. "_isTrimmedMode": true,
  1957. "_atlas": null,
  1958. "_id": ""
  1959. },
  1960. {
  1961. "__type__": "cc.PrefabInfo",
  1962. "root": {
  1963. "__id__": 53
  1964. },
  1965. "asset": {
  1966. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  1967. },
  1968. "fileId": "885+Fz0i9PGJTP7n+d0HHV",
  1969. "sync": false
  1970. },
  1971. {
  1972. "__type__": "cc.Node",
  1973. "_name": "lb",
  1974. "_objFlags": 0,
  1975. "_parent": {
  1976. "__id__": 53
  1977. },
  1978. "_children": [],
  1979. "_active": true,
  1980. "_components": [
  1981. {
  1982. "__id__": 58
  1983. },
  1984. {
  1985. "__id__": 59
  1986. },
  1987. {
  1988. "__id__": 60
  1989. }
  1990. ],
  1991. "_prefab": {
  1992. "__id__": 61
  1993. },
  1994. "_opacity": 255,
  1995. "_color": {
  1996. "__type__": "cc.Color",
  1997. "r": 68,
  1998. "g": 41,
  1999. "b": 0,
  2000. "a": 255
  2001. },
  2002. "_contentSize": {
  2003. "__type__": "cc.Size",
  2004. "width": 104.5,
  2005. "height": 73
  2006. },
  2007. "_anchorPoint": {
  2008. "__type__": "cc.Vec2",
  2009. "x": 0.5,
  2010. "y": 0.5
  2011. },
  2012. "_trs": {
  2013. "__type__": "TypedArray",
  2014. "ctor": "Float64Array",
  2015. "array": [
  2016. 36,
  2017. 0,
  2018. 0,
  2019. 0,
  2020. 0,
  2021. 0,
  2022. 1,
  2023. 1,
  2024. 1,
  2025. 1
  2026. ]
  2027. },
  2028. "_eulerAngles": {
  2029. "__type__": "cc.Vec3",
  2030. "x": 0,
  2031. "y": 0,
  2032. "z": 0
  2033. },
  2034. "_skewX": 0,
  2035. "_skewY": 0,
  2036. "_is3DNode": false,
  2037. "_groupIndex": 0,
  2038. "groupIndex": 0,
  2039. "_id": ""
  2040. },
  2041. {
  2042. "__type__": "cc.Label",
  2043. "_name": "",
  2044. "_objFlags": 0,
  2045. "node": {
  2046. "__id__": 57
  2047. },
  2048. "_enabled": true,
  2049. "_materials": [
  2050. {
  2051. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2052. }
  2053. ],
  2054. "_srcBlendFactor": 770,
  2055. "_dstBlendFactor": 771,
  2056. "_string": "100",
  2057. "_N$string": "100",
  2058. "_fontSize": 48,
  2059. "_lineHeight": 50,
  2060. "_enableWrapText": false,
  2061. "_N$file": {
  2062. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2063. },
  2064. "_isSystemFontUsed": false,
  2065. "_spacingX": 0,
  2066. "_batchAsBitmap": false,
  2067. "_styleFlags": 0,
  2068. "_underlineHeight": 0,
  2069. "_N$horizontalAlign": 1,
  2070. "_N$verticalAlign": 1,
  2071. "_N$fontFamily": "Arial",
  2072. "_N$overflow": 0,
  2073. "_N$cacheMode": 0,
  2074. "_id": ""
  2075. },
  2076. {
  2077. "__type__": "cc.LabelOutline",
  2078. "_name": "",
  2079. "_objFlags": 0,
  2080. "node": {
  2081. "__id__": 57
  2082. },
  2083. "_enabled": true,
  2084. "_color": {
  2085. "__type__": "cc.Color",
  2086. "r": 255,
  2087. "g": 210,
  2088. "b": 0,
  2089. "a": 255
  2090. },
  2091. "_width": 5,
  2092. "_id": ""
  2093. },
  2094. {
  2095. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "node": {
  2099. "__id__": 57
  2100. },
  2101. "_enabled": true,
  2102. "_englishCase": 1,
  2103. "i18n_string": "",
  2104. "i18n_params": [],
  2105. "_addColon": false,
  2106. "_id": ""
  2107. },
  2108. {
  2109. "__type__": "cc.PrefabInfo",
  2110. "root": {
  2111. "__id__": 53
  2112. },
  2113. "asset": {
  2114. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  2115. },
  2116. "fileId": "12tNP2G5xGpY9oecBiNRvR",
  2117. "sync": false
  2118. },
  2119. {
  2120. "__type__": "cc.Sprite",
  2121. "_name": "",
  2122. "_objFlags": 0,
  2123. "node": {
  2124. "__id__": 53
  2125. },
  2126. "_enabled": true,
  2127. "_materials": [
  2128. {
  2129. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2130. }
  2131. ],
  2132. "_srcBlendFactor": 770,
  2133. "_dstBlendFactor": 771,
  2134. "_spriteFrame": {
  2135. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  2136. },
  2137. "_type": 0,
  2138. "_sizeMode": 0,
  2139. "_fillType": 0,
  2140. "_fillCenter": {
  2141. "__type__": "cc.Vec2",
  2142. "x": 0,
  2143. "y": 0
  2144. },
  2145. "_fillStart": 0,
  2146. "_fillRange": 0,
  2147. "_isTrimmedMode": true,
  2148. "_atlas": null,
  2149. "_id": ""
  2150. },
  2151. {
  2152. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  2153. "_name": "",
  2154. "_objFlags": 0,
  2155. "node": {
  2156. "__id__": 53
  2157. },
  2158. "_enabled": true,
  2159. "openContinuous": true,
  2160. "continuousTime": 0.2,
  2161. "multiTouch": false,
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "61994AafntNFIbmt1zoyLq+",
  2166. "_name": "",
  2167. "_objFlags": 0,
  2168. "node": {
  2169. "__id__": 53
  2170. },
  2171. "_enabled": true,
  2172. "_normalMaterial": {
  2173. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2174. },
  2175. "_grayMaterial": null,
  2176. "duration": 0.1,
  2177. "zoomScale": 1.2,
  2178. "clickEvents": [
  2179. {
  2180. "__id__": 65
  2181. }
  2182. ],
  2183. "_N$interactable": true,
  2184. "_N$enableAutoGrayEffect": true,
  2185. "_N$transition": 3,
  2186. "transition": 3,
  2187. "_N$normalColor": {
  2188. "__type__": "cc.Color",
  2189. "r": 255,
  2190. "g": 255,
  2191. "b": 255,
  2192. "a": 255
  2193. },
  2194. "_N$pressedColor": {
  2195. "__type__": "cc.Color",
  2196. "r": 211,
  2197. "g": 211,
  2198. "b": 211,
  2199. "a": 255
  2200. },
  2201. "pressedColor": {
  2202. "__type__": "cc.Color",
  2203. "r": 211,
  2204. "g": 211,
  2205. "b": 211,
  2206. "a": 255
  2207. },
  2208. "_N$hoverColor": {
  2209. "__type__": "cc.Color",
  2210. "r": 255,
  2211. "g": 255,
  2212. "b": 255,
  2213. "a": 255
  2214. },
  2215. "hoverColor": {
  2216. "__type__": "cc.Color",
  2217. "r": 255,
  2218. "g": 255,
  2219. "b": 255,
  2220. "a": 255
  2221. },
  2222. "_N$disabledColor": {
  2223. "__type__": "cc.Color",
  2224. "r": 124,
  2225. "g": 124,
  2226. "b": 124,
  2227. "a": 255
  2228. },
  2229. "_N$normalSprite": null,
  2230. "_N$pressedSprite": null,
  2231. "pressedSprite": null,
  2232. "_N$hoverSprite": null,
  2233. "hoverSprite": null,
  2234. "_N$disabledSprite": null,
  2235. "_N$target": {
  2236. "__id__": 53
  2237. },
  2238. "_id": ""
  2239. },
  2240. {
  2241. "__type__": "cc.ClickEvent",
  2242. "target": {
  2243. "__id__": 1
  2244. },
  2245. "component": "",
  2246. "_componentId": "bef47Ql3fVNd7cVvIRAlmie",
  2247. "handler": "onBuyClick",
  2248. "customEventData": ""
  2249. },
  2250. {
  2251. "__type__": "cc.PrefabInfo",
  2252. "root": {
  2253. "__id__": 53
  2254. },
  2255. "asset": {
  2256. "__uuid__": "6fd1167f-a67b-42ee-8c6b-8c2850d41319"
  2257. },
  2258. "fileId": "809H+UApVIM4ldy91ukyIW",
  2259. "sync": false
  2260. },
  2261. {
  2262. "__type__": "bef47Ql3fVNd7cVvIRAlmie",
  2263. "_name": "",
  2264. "_objFlags": 0,
  2265. "node": {
  2266. "__id__": 1
  2267. },
  2268. "_enabled": true,
  2269. "quickClose": false,
  2270. "cache": false,
  2271. "showType": 500,
  2272. "prevent": true,
  2273. "_id": ""
  2274. },
  2275. {
  2276. "__type__": "cc.PrefabInfo",
  2277. "root": {
  2278. "__id__": 1
  2279. },
  2280. "asset": {
  2281. "__id__": 0
  2282. },
  2283. "fileId": "",
  2284. "sync": false
  2285. }
  2286. ]