RelicSwipeUI.prefab 43 KB

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