GameSpeedUI.prefab 39 KB

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