HolyFarmlandFruit.prefab 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142
  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": "HolyFarmlandFruit",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_level": 1,
  26. "_components": [
  27. {
  28. "__id__": 56
  29. },
  30. {
  31. "__id__": 58
  32. },
  33. {
  34. "__id__": 60
  35. }
  36. ],
  37. "_prefab": {
  38. "__id__": 61
  39. },
  40. "_opacity": 255,
  41. "_color": {
  42. "__type__": "cc.Color",
  43. "r": 255,
  44. "g": 255,
  45. "b": 255,
  46. "a": 255
  47. },
  48. "_contentSize": {
  49. "__type__": "cc.Size",
  50. "width": 212,
  51. "height": 270
  52. },
  53. "_anchorPoint": {
  54. "__type__": "cc.Vec2",
  55. "x": 0.5,
  56. "y": 0.5
  57. },
  58. "_position": {
  59. "__type__": "cc.Vec3",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0
  63. },
  64. "_scale": {
  65. "__type__": "cc.Vec3",
  66. "x": 1,
  67. "y": 1,
  68. "z": 1
  69. },
  70. "_eulerAngles": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_skewX": 0,
  77. "_skewY": 0,
  78. "_is3DNode": false,
  79. "groupIndex": 0,
  80. "_id": ""
  81. },
  82. {
  83. "__type__": "cc.Node",
  84. "_name": "Content",
  85. "_objFlags": 0,
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [
  90. {
  91. "__id__": 3
  92. },
  93. {
  94. "__id__": 6
  95. },
  96. {
  97. "__id__": 9
  98. },
  99. {
  100. "__id__": 16
  101. },
  102. {
  103. "__id__": 22
  104. },
  105. {
  106. "__id__": 28
  107. },
  108. {
  109. "__id__": 47
  110. }
  111. ],
  112. "_active": true,
  113. "_level": 2,
  114. "_components": [],
  115. "_prefab": {
  116. "__id__": 55
  117. },
  118. "_opacity": 255,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 255,
  122. "g": 255,
  123. "b": 255,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 0,
  129. "height": 0
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_position": {
  137. "__type__": "cc.Vec3",
  138. "x": 0,
  139. "y": 9,
  140. "z": 0
  141. },
  142. "_scale": {
  143. "__type__": "cc.Vec3",
  144. "x": 1,
  145. "y": 1,
  146. "z": 1
  147. },
  148. "_eulerAngles": {
  149. "__type__": "cc.Vec3",
  150. "x": 0,
  151. "y": 0,
  152. "z": 0
  153. },
  154. "_skewX": 0,
  155. "_skewY": 0,
  156. "_is3DNode": false,
  157. "groupIndex": 0,
  158. "_id": ""
  159. },
  160. {
  161. "__type__": "cc.Node",
  162. "_name": "currency_bg_2",
  163. "_objFlags": 0,
  164. "_parent": {
  165. "__id__": 2
  166. },
  167. "_children": [],
  168. "_active": true,
  169. "_level": 3,
  170. "_components": [
  171. {
  172. "__id__": 4
  173. }
  174. ],
  175. "_prefab": {
  176. "__id__": 5
  177. },
  178. "_opacity": 255,
  179. "_color": {
  180. "__type__": "cc.Color",
  181. "r": 255,
  182. "g": 255,
  183. "b": 255,
  184. "a": 255
  185. },
  186. "_contentSize": {
  187. "__type__": "cc.Size",
  188. "width": 212,
  189. "height": 241
  190. },
  191. "_anchorPoint": {
  192. "__type__": "cc.Vec2",
  193. "x": 0.5,
  194. "y": 0.5
  195. },
  196. "_position": {
  197. "__type__": "cc.Vec3",
  198. "x": 0,
  199. "y": 0,
  200. "z": 0
  201. },
  202. "_scale": {
  203. "__type__": "cc.Vec3",
  204. "x": 1,
  205. "y": 1,
  206. "z": 1
  207. },
  208. "_eulerAngles": {
  209. "__type__": "cc.Vec3",
  210. "x": 0,
  211. "y": 0,
  212. "z": 0
  213. },
  214. "_skewX": 0,
  215. "_skewY": 0,
  216. "_is3DNode": false,
  217. "groupIndex": 0,
  218. "_id": ""
  219. },
  220. {
  221. "__type__": "cc.Sprite",
  222. "_name": "",
  223. "_objFlags": 0,
  224. "node": {
  225. "__id__": 3
  226. },
  227. "_enabled": true,
  228. "_materials": [
  229. {
  230. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  231. }
  232. ],
  233. "_srcBlendFactor": 770,
  234. "_dstBlendFactor": 771,
  235. "_spriteFrame": {
  236. "__uuid__": "e0646e8f-1413-4c46-a47c-c9c78a0656b7"
  237. },
  238. "_type": 1,
  239. "_sizeMode": 0,
  240. "_fillType": 0,
  241. "_fillCenter": {
  242. "__type__": "cc.Vec2",
  243. "x": 0,
  244. "y": 0
  245. },
  246. "_fillStart": 0,
  247. "_fillRange": 0,
  248. "_isTrimmedMode": true,
  249. "_atlas": null,
  250. "_id": ""
  251. },
  252. {
  253. "__type__": "cc.PrefabInfo",
  254. "root": {
  255. "__id__": 1
  256. },
  257. "asset": {
  258. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  259. },
  260. "fileId": "65z5nuHLtDP4mYC5+rShN4",
  261. "sync": false
  262. },
  263. {
  264. "__type__": "cc.Node",
  265. "_name": "picture",
  266. "_objFlags": 0,
  267. "_parent": {
  268. "__id__": 2
  269. },
  270. "_children": [],
  271. "_active": true,
  272. "_level": 3,
  273. "_components": [
  274. {
  275. "__id__": 7
  276. }
  277. ],
  278. "_prefab": {
  279. "__id__": 8
  280. },
  281. "_opacity": 255,
  282. "_color": {
  283. "__type__": "cc.Color",
  284. "r": 255,
  285. "g": 255,
  286. "b": 255,
  287. "a": 255
  288. },
  289. "_contentSize": {
  290. "__type__": "cc.Size",
  291. "width": 138,
  292. "height": 115
  293. },
  294. "_anchorPoint": {
  295. "__type__": "cc.Vec2",
  296. "x": 0.5,
  297. "y": 0.5
  298. },
  299. "_position": {
  300. "__type__": "cc.Vec3",
  301. "x": -3,
  302. "y": 32,
  303. "z": 0
  304. },
  305. "_scale": {
  306. "__type__": "cc.Vec3",
  307. "x": 1,
  308. "y": 1,
  309. "z": 1
  310. },
  311. "_eulerAngles": {
  312. "__type__": "cc.Vec3",
  313. "x": 0,
  314. "y": 0,
  315. "z": 0
  316. },
  317. "_skewX": 0,
  318. "_skewY": 0,
  319. "_is3DNode": false,
  320. "groupIndex": 0,
  321. "_id": ""
  322. },
  323. {
  324. "__type__": "cc.Sprite",
  325. "_name": "",
  326. "_objFlags": 0,
  327. "node": {
  328. "__id__": 6
  329. },
  330. "_enabled": true,
  331. "_materials": [
  332. {
  333. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  334. }
  335. ],
  336. "_srcBlendFactor": 770,
  337. "_dstBlendFactor": 771,
  338. "_spriteFrame": {
  339. "__uuid__": "301b3d49-5ffd-4773-87b9-3a0c6cc064d3"
  340. },
  341. "_type": 0,
  342. "_sizeMode": 0,
  343. "_fillType": 0,
  344. "_fillCenter": {
  345. "__type__": "cc.Vec2",
  346. "x": 0,
  347. "y": 0
  348. },
  349. "_fillStart": 0,
  350. "_fillRange": 0,
  351. "_isTrimmedMode": false,
  352. "_atlas": null,
  353. "_id": ""
  354. },
  355. {
  356. "__type__": "cc.PrefabInfo",
  357. "root": {
  358. "__id__": 1
  359. },
  360. "asset": {
  361. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  362. },
  363. "fileId": "08yGlYnZxLupvFlaOF/O8x",
  364. "sync": false
  365. },
  366. {
  367. "__type__": "cc.Node",
  368. "_name": "BuySeedTop",
  369. "_objFlags": 0,
  370. "_parent": {
  371. "__id__": 2
  372. },
  373. "_children": [
  374. {
  375. "__id__": 10
  376. }
  377. ],
  378. "_active": false,
  379. "_level": 3,
  380. "_components": [
  381. {
  382. "__id__": 14
  383. }
  384. ],
  385. "_prefab": {
  386. "__id__": 15
  387. },
  388. "_opacity": 255,
  389. "_color": {
  390. "__type__": "cc.Color",
  391. "r": 255,
  392. "g": 255,
  393. "b": 255,
  394. "a": 255
  395. },
  396. "_contentSize": {
  397. "__type__": "cc.Size",
  398. "width": 170,
  399. "height": 66
  400. },
  401. "_anchorPoint": {
  402. "__type__": "cc.Vec2",
  403. "x": 0.5,
  404. "y": 0.5
  405. },
  406. "_position": {
  407. "__type__": "cc.Vec3",
  408. "x": 0,
  409. "y": 131,
  410. "z": 0
  411. },
  412. "_scale": {
  413. "__type__": "cc.Vec3",
  414. "x": 1,
  415. "y": 1,
  416. "z": 1
  417. },
  418. "_eulerAngles": {
  419. "__type__": "cc.Vec3",
  420. "x": 0,
  421. "y": 0,
  422. "z": 0
  423. },
  424. "_skewX": 0,
  425. "_skewY": 0,
  426. "_is3DNode": false,
  427. "groupIndex": 0,
  428. "_id": ""
  429. },
  430. {
  431. "__type__": "cc.Node",
  432. "_name": "Name",
  433. "_objFlags": 0,
  434. "_parent": {
  435. "__id__": 9
  436. },
  437. "_children": [],
  438. "_active": true,
  439. "_level": 3,
  440. "_components": [
  441. {
  442. "__id__": 11
  443. },
  444. {
  445. "__id__": 12
  446. }
  447. ],
  448. "_prefab": {
  449. "__id__": 13
  450. },
  451. "_opacity": 255,
  452. "_color": {
  453. "__type__": "cc.Color",
  454. "r": 255,
  455. "g": 255,
  456. "b": 255,
  457. "a": 255
  458. },
  459. "_contentSize": {
  460. "__type__": "cc.Size",
  461. "width": 66,
  462. "height": 43.06
  463. },
  464. "_anchorPoint": {
  465. "__type__": "cc.Vec2",
  466. "x": 0.5,
  467. "y": 0.5
  468. },
  469. "_position": {
  470. "__type__": "cc.Vec3",
  471. "x": 0,
  472. "y": 4.604,
  473. "z": 0
  474. },
  475. "_scale": {
  476. "__type__": "cc.Vec3",
  477. "x": 1,
  478. "y": 1,
  479. "z": 1
  480. },
  481. "_eulerAngles": {
  482. "__type__": "cc.Vec3",
  483. "x": 0,
  484. "y": 0,
  485. "z": 0
  486. },
  487. "_skewX": 0,
  488. "_skewY": 0,
  489. "_is3DNode": false,
  490. "groupIndex": 0,
  491. "_id": ""
  492. },
  493. {
  494. "__type__": "cc.Label",
  495. "_name": "",
  496. "_objFlags": 0,
  497. "node": {
  498. "__id__": 10
  499. },
  500. "_enabled": true,
  501. "_materials": [
  502. {
  503. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  504. }
  505. ],
  506. "_useOriginalSize": false,
  507. "_string": "种子",
  508. "_N$string": "种子",
  509. "_fontSize": 31,
  510. "_lineHeight": 31,
  511. "_enableWrapText": true,
  512. "_N$file": null,
  513. "_isSystemFontUsed": true,
  514. "_spacingX": 0,
  515. "_batchAsBitmap": false,
  516. "_N$horizontalAlign": 1,
  517. "_N$verticalAlign": 1,
  518. "_N$fontFamily": "Arial",
  519. "_N$overflow": 0,
  520. "_N$cacheMode": 0,
  521. "_id": ""
  522. },
  523. {
  524. "__type__": "cc.LabelOutline",
  525. "_name": "",
  526. "_objFlags": 0,
  527. "node": {
  528. "__id__": 10
  529. },
  530. "_enabled": true,
  531. "_color": {
  532. "__type__": "cc.Color",
  533. "r": 122,
  534. "g": 52,
  535. "b": 11,
  536. "a": 255
  537. },
  538. "_width": 2,
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.PrefabInfo",
  543. "root": {
  544. "__id__": 1
  545. },
  546. "asset": {
  547. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  548. },
  549. "fileId": "a9W4PDSRxEBr3ALCKR2bx1",
  550. "sync": false
  551. },
  552. {
  553. "__type__": "cc.Sprite",
  554. "_name": "",
  555. "_objFlags": 0,
  556. "node": {
  557. "__id__": 9
  558. },
  559. "_enabled": true,
  560. "_materials": [
  561. {
  562. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  563. }
  564. ],
  565. "_srcBlendFactor": 770,
  566. "_dstBlendFactor": 771,
  567. "_spriteFrame": {
  568. "__uuid__": "09cdfc6b-8a3d-4e7a-8d45-137038b52ee8"
  569. },
  570. "_type": 0,
  571. "_sizeMode": 0,
  572. "_fillType": 0,
  573. "_fillCenter": {
  574. "__type__": "cc.Vec2",
  575. "x": 0,
  576. "y": 0
  577. },
  578. "_fillStart": 0,
  579. "_fillRange": 0,
  580. "_isTrimmedMode": true,
  581. "_atlas": null,
  582. "_id": ""
  583. },
  584. {
  585. "__type__": "cc.PrefabInfo",
  586. "root": {
  587. "__id__": 1
  588. },
  589. "asset": {
  590. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  591. },
  592. "fileId": "b5F0xOmtJI3KxC0BwVniYn",
  593. "sync": false
  594. },
  595. {
  596. "__type__": "cc.Node",
  597. "_name": "Info",
  598. "_objFlags": 0,
  599. "_parent": {
  600. "__id__": 2
  601. },
  602. "_children": [],
  603. "_active": false,
  604. "_level": 3,
  605. "_components": [
  606. {
  607. "__id__": 17
  608. },
  609. {
  610. "__id__": 19
  611. },
  612. {
  613. "__id__": 20
  614. }
  615. ],
  616. "_prefab": {
  617. "__id__": 21
  618. },
  619. "_opacity": 255,
  620. "_color": {
  621. "__type__": "cc.Color",
  622. "r": 255,
  623. "g": 255,
  624. "b": 255,
  625. "a": 255
  626. },
  627. "_contentSize": {
  628. "__type__": "cc.Size",
  629. "width": 194,
  630. "height": 190
  631. },
  632. "_anchorPoint": {
  633. "__type__": "cc.Vec2",
  634. "x": 0.5,
  635. "y": 0.5
  636. },
  637. "_position": {
  638. "__type__": "cc.Vec3",
  639. "x": 0,
  640. "y": 20,
  641. "z": 0
  642. },
  643. "_scale": {
  644. "__type__": "cc.Vec3",
  645. "x": 1,
  646. "y": 1,
  647. "z": 1
  648. },
  649. "_eulerAngles": {
  650. "__type__": "cc.Vec3",
  651. "x": 0,
  652. "y": 0,
  653. "z": 0
  654. },
  655. "_skewX": 0,
  656. "_skewY": 0,
  657. "_is3DNode": false,
  658. "groupIndex": 0,
  659. "_id": ""
  660. },
  661. {
  662. "__type__": "cc.Button",
  663. "_name": "",
  664. "_objFlags": 0,
  665. "node": {
  666. "__id__": 16
  667. },
  668. "_enabled": true,
  669. "duration": 0.1,
  670. "zoomScale": 1.2,
  671. "clickEvents": [
  672. {
  673. "__id__": 18
  674. }
  675. ],
  676. "_N$interactable": true,
  677. "_N$enableAutoGrayEffect": false,
  678. "_N$transition": 3,
  679. "transition": 3,
  680. "_N$normalColor": {
  681. "__type__": "cc.Color",
  682. "r": 214,
  683. "g": 214,
  684. "b": 214,
  685. "a": 255
  686. },
  687. "_N$pressedColor": {
  688. "__type__": "cc.Color",
  689. "r": 211,
  690. "g": 211,
  691. "b": 211,
  692. "a": 255
  693. },
  694. "pressedColor": {
  695. "__type__": "cc.Color",
  696. "r": 211,
  697. "g": 211,
  698. "b": 211,
  699. "a": 255
  700. },
  701. "_N$hoverColor": {
  702. "__type__": "cc.Color",
  703. "r": 255,
  704. "g": 255,
  705. "b": 255,
  706. "a": 255
  707. },
  708. "hoverColor": {
  709. "__type__": "cc.Color",
  710. "r": 255,
  711. "g": 255,
  712. "b": 255,
  713. "a": 255
  714. },
  715. "_N$disabledColor": {
  716. "__type__": "cc.Color",
  717. "r": 124,
  718. "g": 124,
  719. "b": 124,
  720. "a": 255
  721. },
  722. "_N$normalSprite": null,
  723. "_N$pressedSprite": null,
  724. "pressedSprite": null,
  725. "_N$hoverSprite": null,
  726. "hoverSprite": null,
  727. "_N$disabledSprite": null,
  728. "_N$target": {
  729. "__id__": 16
  730. },
  731. "_id": ""
  732. },
  733. {
  734. "__type__": "cc.ClickEvent",
  735. "target": {
  736. "__id__": 1
  737. },
  738. "component": "",
  739. "_componentId": "ba198n/JUtJXqII6aiwPODz",
  740. "handler": "onPressedInfo",
  741. "customEventData": "1"
  742. },
  743. {
  744. "__type__": "cc.Sprite",
  745. "_name": "",
  746. "_objFlags": 0,
  747. "node": {
  748. "__id__": 16
  749. },
  750. "_enabled": true,
  751. "_materials": [
  752. {
  753. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  754. }
  755. ],
  756. "_srcBlendFactor": 770,
  757. "_dstBlendFactor": 771,
  758. "_spriteFrame": null,
  759. "_type": 0,
  760. "_sizeMode": 1,
  761. "_fillType": 0,
  762. "_fillCenter": {
  763. "__type__": "cc.Vec2",
  764. "x": 0,
  765. "y": 0
  766. },
  767. "_fillStart": 0,
  768. "_fillRange": 0,
  769. "_isTrimmedMode": true,
  770. "_atlas": null,
  771. "_id": ""
  772. },
  773. {
  774. "__type__": "cc.BlockInputEvents",
  775. "_name": "",
  776. "_objFlags": 0,
  777. "node": {
  778. "__id__": 16
  779. },
  780. "_enabled": true,
  781. "_id": ""
  782. },
  783. {
  784. "__type__": "cc.PrefabInfo",
  785. "root": {
  786. "__id__": 1
  787. },
  788. "asset": {
  789. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  790. },
  791. "fileId": "ac5DFAvzJEtbGDyUICicnT",
  792. "sync": false
  793. },
  794. {
  795. "__type__": "cc.Node",
  796. "_name": "seedNum",
  797. "_objFlags": 0,
  798. "_parent": {
  799. "__id__": 2
  800. },
  801. "_children": [
  802. {
  803. "__id__": 23
  804. }
  805. ],
  806. "_active": true,
  807. "_level": 3,
  808. "_components": [
  809. {
  810. "__id__": 26
  811. }
  812. ],
  813. "_prefab": {
  814. "__id__": 27
  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": 150,
  827. "height": 30
  828. },
  829. "_anchorPoint": {
  830. "__type__": "cc.Vec2",
  831. "x": 0.5,
  832. "y": 0.5
  833. },
  834. "_position": {
  835. "__type__": "cc.Vec3",
  836. "x": 0,
  837. "y": -60,
  838. "z": 0
  839. },
  840. "_scale": {
  841. "__type__": "cc.Vec3",
  842. "x": 1,
  843. "y": 1,
  844. "z": 1
  845. },
  846. "_eulerAngles": {
  847. "__type__": "cc.Vec3",
  848. "x": 0,
  849. "y": 0,
  850. "z": 0
  851. },
  852. "_skewX": 0,
  853. "_skewY": 0,
  854. "_is3DNode": false,
  855. "groupIndex": 0,
  856. "_id": ""
  857. },
  858. {
  859. "__type__": "cc.Node",
  860. "_name": "Num",
  861. "_objFlags": 0,
  862. "_parent": {
  863. "__id__": 22
  864. },
  865. "_children": [],
  866. "_active": true,
  867. "_level": 3,
  868. "_components": [
  869. {
  870. "__id__": 24
  871. }
  872. ],
  873. "_prefab": {
  874. "__id__": 25
  875. },
  876. "_opacity": 255,
  877. "_color": {
  878. "__type__": "cc.Color",
  879. "r": 156,
  880. "g": 83,
  881. "b": 42,
  882. "a": 255
  883. },
  884. "_contentSize": {
  885. "__type__": "cc.Size",
  886. "width": 150,
  887. "height": 26
  888. },
  889. "_anchorPoint": {
  890. "__type__": "cc.Vec2",
  891. "x": 0.5,
  892. "y": 0.5
  893. },
  894. "_position": {
  895. "__type__": "cc.Vec3",
  896. "x": 0,
  897. "y": 21,
  898. "z": 0
  899. },
  900. "_scale": {
  901. "__type__": "cc.Vec3",
  902. "x": 1,
  903. "y": 1,
  904. "z": 1
  905. },
  906. "_eulerAngles": {
  907. "__type__": "cc.Vec3",
  908. "x": 0,
  909. "y": 0,
  910. "z": 0
  911. },
  912. "_skewX": 0,
  913. "_skewY": 0,
  914. "_is3DNode": false,
  915. "groupIndex": 0,
  916. "_id": ""
  917. },
  918. {
  919. "__type__": "cc.Label",
  920. "_name": "",
  921. "_objFlags": 0,
  922. "node": {
  923. "__id__": 23
  924. },
  925. "_enabled": true,
  926. "_materials": [
  927. {
  928. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  929. }
  930. ],
  931. "_useOriginalSize": false,
  932. "_string": "",
  933. "_N$string": "",
  934. "_fontSize": 26,
  935. "_lineHeight": 26,
  936. "_enableWrapText": true,
  937. "_N$file": null,
  938. "_isSystemFontUsed": true,
  939. "_spacingX": 0,
  940. "_batchAsBitmap": false,
  941. "_N$horizontalAlign": 1,
  942. "_N$verticalAlign": 1,
  943. "_N$fontFamily": "Arial",
  944. "_N$overflow": 2,
  945. "_N$cacheMode": 0,
  946. "_id": ""
  947. },
  948. {
  949. "__type__": "cc.PrefabInfo",
  950. "root": {
  951. "__id__": 1
  952. },
  953. "asset": {
  954. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  955. },
  956. "fileId": "e2N9D8481EMZ76mGP/11QK",
  957. "sync": false
  958. },
  959. {
  960. "__type__": "cc.Sprite",
  961. "_name": "",
  962. "_objFlags": 0,
  963. "node": {
  964. "__id__": 22
  965. },
  966. "_enabled": true,
  967. "_materials": [
  968. {
  969. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  970. }
  971. ],
  972. "_srcBlendFactor": 770,
  973. "_dstBlendFactor": 771,
  974. "_spriteFrame": null,
  975. "_type": 0,
  976. "_sizeMode": 0,
  977. "_fillType": 0,
  978. "_fillCenter": {
  979. "__type__": "cc.Vec2",
  980. "x": 0,
  981. "y": 0
  982. },
  983. "_fillStart": 0,
  984. "_fillRange": 0,
  985. "_isTrimmedMode": true,
  986. "_atlas": null,
  987. "_id": ""
  988. },
  989. {
  990. "__type__": "cc.PrefabInfo",
  991. "root": {
  992. "__id__": 1
  993. },
  994. "asset": {
  995. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  996. },
  997. "fileId": "45INJUiXRG1Lwh8+WM4cXu",
  998. "sync": false
  999. },
  1000. {
  1001. "__type__": "cc.Node",
  1002. "_name": "seale",
  1003. "_objFlags": 0,
  1004. "_parent": {
  1005. "__id__": 2
  1006. },
  1007. "_children": [
  1008. {
  1009. "__id__": 29
  1010. },
  1011. {
  1012. "__id__": 37
  1013. }
  1014. ],
  1015. "_active": true,
  1016. "_level": 3,
  1017. "_components": [
  1018. {
  1019. "__id__": 45
  1020. }
  1021. ],
  1022. "_prefab": {
  1023. "__id__": 46
  1024. },
  1025. "_opacity": 255,
  1026. "_color": {
  1027. "__type__": "cc.Color",
  1028. "r": 255,
  1029. "g": 255,
  1030. "b": 255,
  1031. "a": 255
  1032. },
  1033. "_contentSize": {
  1034. "__type__": "cc.Size",
  1035. <<<<<<< HEAD
  1036. "width": 90,
  1037. "height": 40
  1038. =======
  1039. "width": 192,
  1040. "height": 67
  1041. >>>>>>> cba7e039f9979c7af0832b36f193289324b80096
  1042. },
  1043. "_anchorPoint": {
  1044. "__type__": "cc.Vec2",
  1045. "x": 0.5,
  1046. "y": 0.5
  1047. },
  1048. "_position": {
  1049. "__type__": "cc.Vec3",
  1050. "x": 0,
  1051. "y": -110.717,
  1052. "z": 0
  1053. },
  1054. "_scale": {
  1055. "__type__": "cc.Vec3",
  1056. "x": 1,
  1057. "y": 1,
  1058. "z": 1
  1059. },
  1060. "_eulerAngles": {
  1061. "__type__": "cc.Vec3",
  1062. "x": 0,
  1063. "y": 0,
  1064. "z": 0
  1065. },
  1066. "_skewX": 0,
  1067. "_skewY": 0,
  1068. "_is3DNode": false,
  1069. "groupIndex": 0,
  1070. "_id": ""
  1071. },
  1072. {
  1073. "__type__": "cc.Node",
  1074. "_name": "sale",
  1075. "_objFlags": 0,
  1076. "_parent": {
  1077. "__id__": 28
  1078. },
  1079. "_children": [
  1080. {
  1081. "__id__": 30
  1082. }
  1083. ],
  1084. "_active": true,
  1085. "_level": 3,
  1086. "_components": [
  1087. {
  1088. "__id__": 34
  1089. }
  1090. ],
  1091. "_prefab": {
  1092. "__id__": 36
  1093. },
  1094. "_opacity": 255,
  1095. "_color": {
  1096. "__type__": "cc.Color",
  1097. "r": 255,
  1098. "g": 255,
  1099. "b": 255,
  1100. "a": 255
  1101. },
  1102. "_contentSize": {
  1103. "__type__": "cc.Size",
  1104. "width": 172,
  1105. "height": 67
  1106. },
  1107. "_anchorPoint": {
  1108. "__type__": "cc.Vec2",
  1109. "x": 0.5,
  1110. "y": 0.5
  1111. },
  1112. "_position": {
  1113. "__type__": "cc.Vec3",
  1114. "x": 0,
  1115. "y": 0,
  1116. "z": 0
  1117. },
  1118. "_scale": {
  1119. "__type__": "cc.Vec3",
  1120. "x": 1,
  1121. "y": 1,
  1122. "z": 1
  1123. },
  1124. "_eulerAngles": {
  1125. "__type__": "cc.Vec3",
  1126. "x": 0,
  1127. "y": 0,
  1128. "z": 0
  1129. },
  1130. "_skewX": 0,
  1131. "_skewY": 0,
  1132. "_is3DNode": false,
  1133. "groupIndex": 0,
  1134. "_id": ""
  1135. },
  1136. {
  1137. "__type__": "cc.Node",
  1138. "_name": "Background",
  1139. "_objFlags": 0,
  1140. "_parent": {
  1141. "__id__": 29
  1142. },
  1143. "_children": [],
  1144. "_active": true,
  1145. "_level": 2,
  1146. "_components": [
  1147. {
  1148. "__id__": 31
  1149. },
  1150. {
  1151. "__id__": 32
  1152. }
  1153. ],
  1154. "_prefab": {
  1155. "__id__": 33
  1156. },
  1157. "_opacity": 255,
  1158. "_color": {
  1159. "__type__": "cc.Color",
  1160. "r": 255,
  1161. "g": 255,
  1162. "b": 255,
  1163. "a": 255
  1164. },
  1165. "_contentSize": {
  1166. "__type__": "cc.Size",
  1167. "width": 172,
  1168. "height": 67
  1169. },
  1170. "_anchorPoint": {
  1171. "__type__": "cc.Vec2",
  1172. "x": 0.5,
  1173. "y": 0.5
  1174. },
  1175. "_position": {
  1176. "__type__": "cc.Vec3",
  1177. "x": 0,
  1178. "y": 0,
  1179. "z": 0
  1180. },
  1181. "_scale": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 1,
  1184. "y": 1,
  1185. "z": 1
  1186. },
  1187. "_eulerAngles": {
  1188. "__type__": "cc.Vec3",
  1189. "x": 0,
  1190. "y": 0,
  1191. "z": 0
  1192. },
  1193. "_skewX": 0,
  1194. "_skewY": 0,
  1195. "_is3DNode": false,
  1196. "groupIndex": 0,
  1197. "_id": ""
  1198. },
  1199. {
  1200. "__type__": "cc.Sprite",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "node": {
  1204. "__id__": 30
  1205. },
  1206. "_enabled": true,
  1207. "_materials": [
  1208. {
  1209. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1210. }
  1211. ],
  1212. "_srcBlendFactor": 770,
  1213. "_dstBlendFactor": 771,
  1214. "_spriteFrame": {
  1215. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  1216. },
  1217. "_type": 1,
  1218. "_sizeMode": 0,
  1219. "_fillType": 0,
  1220. "_fillCenter": {
  1221. "__type__": "cc.Vec2",
  1222. "x": 0,
  1223. "y": 0
  1224. },
  1225. "_fillStart": 0,
  1226. "_fillRange": 0,
  1227. "_isTrimmedMode": true,
  1228. "_atlas": null,
  1229. "_id": ""
  1230. },
  1231. {
  1232. "__type__": "cc.Widget",
  1233. "_name": "",
  1234. "_objFlags": 0,
  1235. "node": {
  1236. "__id__": 30
  1237. },
  1238. "_enabled": true,
  1239. "alignMode": 0,
  1240. "_target": null,
  1241. "_alignFlags": 45,
  1242. "_left": 0,
  1243. "_right": 0,
  1244. "_top": 0,
  1245. "_bottom": 0,
  1246. "_verticalCenter": 0,
  1247. "_horizontalCenter": 0,
  1248. "_isAbsLeft": true,
  1249. "_isAbsRight": true,
  1250. "_isAbsTop": true,
  1251. "_isAbsBottom": true,
  1252. "_isAbsHorizontalCenter": true,
  1253. "_isAbsVerticalCenter": true,
  1254. "_originalWidth": 100,
  1255. "_originalHeight": 40,
  1256. "_id": ""
  1257. },
  1258. {
  1259. "__type__": "cc.PrefabInfo",
  1260. "root": {
  1261. "__id__": 1
  1262. },
  1263. "asset": {
  1264. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1265. },
  1266. "fileId": "629QOBxKNBsLYCcu7H5WD+",
  1267. "sync": false
  1268. },
  1269. {
  1270. "__type__": "cc.Button",
  1271. "_name": "",
  1272. "_objFlags": 0,
  1273. "node": {
  1274. "__id__": 29
  1275. },
  1276. "_enabled": true,
  1277. "duration": 0.1,
  1278. "zoomScale": 0.8,
  1279. "clickEvents": [
  1280. {
  1281. "__id__": 35
  1282. }
  1283. ],
  1284. "_N$interactable": true,
  1285. "_N$enableAutoGrayEffect": false,
  1286. "_N$transition": 3,
  1287. "transition": 3,
  1288. "_N$normalColor": {
  1289. "__type__": "cc.Color",
  1290. "r": 230,
  1291. "g": 230,
  1292. "b": 230,
  1293. "a": 255
  1294. },
  1295. "_N$pressedColor": {
  1296. "__type__": "cc.Color",
  1297. "r": 200,
  1298. "g": 200,
  1299. "b": 200,
  1300. "a": 255
  1301. },
  1302. "pressedColor": {
  1303. "__type__": "cc.Color",
  1304. "r": 200,
  1305. "g": 200,
  1306. "b": 200,
  1307. "a": 255
  1308. },
  1309. "_N$hoverColor": {
  1310. "__type__": "cc.Color",
  1311. "r": 255,
  1312. "g": 255,
  1313. "b": 255,
  1314. "a": 255
  1315. },
  1316. "hoverColor": {
  1317. "__type__": "cc.Color",
  1318. "r": 255,
  1319. "g": 255,
  1320. "b": 255,
  1321. "a": 255
  1322. },
  1323. "_N$disabledColor": {
  1324. "__type__": "cc.Color",
  1325. "r": 120,
  1326. "g": 120,
  1327. "b": 120,
  1328. "a": 200
  1329. },
  1330. "_N$normalSprite": {
  1331. "__uuid__": "30b277f2-db20-4081-9ad1-f2e6be16bf10"
  1332. },
  1333. "_N$pressedSprite": {
  1334. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1335. },
  1336. "pressedSprite": {
  1337. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1338. },
  1339. "_N$hoverSprite": {
  1340. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1341. },
  1342. "hoverSprite": {
  1343. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1344. },
  1345. "_N$disabledSprite": {
  1346. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1347. },
  1348. "_N$target": {
  1349. "__id__": 30
  1350. },
  1351. "_id": ""
  1352. },
  1353. {
  1354. "__type__": "cc.ClickEvent",
  1355. "target": {
  1356. "__id__": 1
  1357. },
  1358. "component": "",
  1359. "_componentId": "985b6AjuYtNapwlu4dBpFa6",
  1360. "handler": "onSaleInfo",
  1361. "customEventData": ""
  1362. },
  1363. {
  1364. "__type__": "cc.PrefabInfo",
  1365. "root": {
  1366. "__id__": 1
  1367. },
  1368. "asset": {
  1369. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1370. },
  1371. "fileId": "dbDxJT4jNK+qWmBqUDMbe4",
  1372. "sync": false
  1373. },
  1374. {
  1375. "__type__": "cc.Node",
  1376. "_name": "grant",
  1377. "_objFlags": 0,
  1378. "_parent": {
  1379. "__id__": 28
  1380. },
  1381. "_children": [
  1382. {
  1383. "__id__": 38
  1384. }
  1385. ],
  1386. "_active": false,
  1387. "_level": 3,
  1388. "_components": [
  1389. {
  1390. "__id__": 42
  1391. }
  1392. ],
  1393. "_prefab": {
  1394. "__id__": 44
  1395. },
  1396. "_opacity": 255,
  1397. "_color": {
  1398. "__type__": "cc.Color",
  1399. "r": 255,
  1400. "g": 255,
  1401. "b": 255,
  1402. "a": 255
  1403. },
  1404. "_contentSize": {
  1405. "__type__": "cc.Size",
  1406. "width": 70,
  1407. "height": 40
  1408. },
  1409. "_anchorPoint": {
  1410. "__type__": "cc.Vec2",
  1411. "x": 0.5,
  1412. "y": 0.5
  1413. },
  1414. "_position": {
  1415. "__type__": "cc.Vec3",
  1416. "x": 40,
  1417. "y": 0,
  1418. "z": 0
  1419. },
  1420. "_scale": {
  1421. "__type__": "cc.Vec3",
  1422. "x": 1,
  1423. "y": 1,
  1424. "z": 1
  1425. },
  1426. "_eulerAngles": {
  1427. "__type__": "cc.Vec3",
  1428. "x": 0,
  1429. "y": 0,
  1430. "z": 0
  1431. },
  1432. "_skewX": 0,
  1433. "_skewY": 0,
  1434. "_is3DNode": false,
  1435. "groupIndex": 0,
  1436. "_id": ""
  1437. },
  1438. {
  1439. "__type__": "cc.Node",
  1440. "_name": "Background",
  1441. "_objFlags": 0,
  1442. "_parent": {
  1443. "__id__": 37
  1444. },
  1445. "_children": [],
  1446. "_active": true,
  1447. "_level": 2,
  1448. "_components": [
  1449. {
  1450. "__id__": 39
  1451. },
  1452. {
  1453. "__id__": 40
  1454. }
  1455. ],
  1456. "_prefab": {
  1457. "__id__": 41
  1458. },
  1459. "_opacity": 255,
  1460. "_color": {
  1461. "__type__": "cc.Color",
  1462. "r": 255,
  1463. "g": 255,
  1464. "b": 255,
  1465. "a": 255
  1466. },
  1467. "_contentSize": {
  1468. "__type__": "cc.Size",
  1469. "width": 70,
  1470. "height": 40
  1471. },
  1472. "_anchorPoint": {
  1473. "__type__": "cc.Vec2",
  1474. "x": 0.5,
  1475. "y": 0.5
  1476. },
  1477. "_position": {
  1478. "__type__": "cc.Vec3",
  1479. "x": 0,
  1480. "y": 0,
  1481. "z": 0
  1482. },
  1483. "_scale": {
  1484. "__type__": "cc.Vec3",
  1485. "x": 1,
  1486. "y": 1,
  1487. "z": 1
  1488. },
  1489. "_eulerAngles": {
  1490. "__type__": "cc.Vec3",
  1491. "x": 0,
  1492. "y": 0,
  1493. "z": 0
  1494. },
  1495. "_skewX": 0,
  1496. "_skewY": 0,
  1497. "_is3DNode": false,
  1498. "groupIndex": 0,
  1499. "_id": ""
  1500. },
  1501. {
  1502. "__type__": "cc.Sprite",
  1503. "_name": "",
  1504. "_objFlags": 0,
  1505. "node": {
  1506. "__id__": 38
  1507. },
  1508. "_enabled": true,
  1509. "_materials": [
  1510. {
  1511. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1512. }
  1513. ],
  1514. "_srcBlendFactor": 770,
  1515. "_dstBlendFactor": 771,
  1516. "_spriteFrame": {
  1517. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  1518. },
  1519. "_type": 1,
  1520. "_sizeMode": 0,
  1521. "_fillType": 0,
  1522. "_fillCenter": {
  1523. "__type__": "cc.Vec2",
  1524. "x": 0,
  1525. "y": 0
  1526. },
  1527. "_fillStart": 0,
  1528. "_fillRange": 0,
  1529. "_isTrimmedMode": true,
  1530. "_atlas": null,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.Widget",
  1535. "_name": "",
  1536. "_objFlags": 0,
  1537. "node": {
  1538. "__id__": 38
  1539. },
  1540. "_enabled": true,
  1541. "alignMode": 0,
  1542. "_target": null,
  1543. "_alignFlags": 45,
  1544. "_left": 0,
  1545. "_right": 0,
  1546. "_top": 0,
  1547. "_bottom": 0,
  1548. "_verticalCenter": 0,
  1549. "_horizontalCenter": 0,
  1550. "_isAbsLeft": true,
  1551. "_isAbsRight": true,
  1552. "_isAbsTop": true,
  1553. "_isAbsBottom": true,
  1554. "_isAbsHorizontalCenter": true,
  1555. "_isAbsVerticalCenter": true,
  1556. "_originalWidth": 100,
  1557. "_originalHeight": 40,
  1558. "_id": ""
  1559. },
  1560. {
  1561. "__type__": "cc.PrefabInfo",
  1562. "root": {
  1563. "__id__": 1
  1564. },
  1565. "asset": {
  1566. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1567. },
  1568. "fileId": "f8yjfbcSdGIL17HMQ7d8Aa",
  1569. "sync": false
  1570. },
  1571. {
  1572. "__type__": "cc.Button",
  1573. "_name": "",
  1574. "_objFlags": 0,
  1575. "node": {
  1576. "__id__": 37
  1577. },
  1578. "_enabled": true,
  1579. "duration": 0.1,
  1580. "zoomScale": 1.2,
  1581. "clickEvents": [
  1582. {
  1583. "__id__": 43
  1584. }
  1585. ],
  1586. "_N$interactable": true,
  1587. "_N$enableAutoGrayEffect": false,
  1588. "_N$transition": 3,
  1589. "transition": 3,
  1590. "_N$normalColor": {
  1591. "__type__": "cc.Color",
  1592. "r": 230,
  1593. "g": 230,
  1594. "b": 230,
  1595. "a": 255
  1596. },
  1597. "_N$pressedColor": {
  1598. "__type__": "cc.Color",
  1599. "r": 200,
  1600. "g": 200,
  1601. "b": 200,
  1602. "a": 255
  1603. },
  1604. "pressedColor": {
  1605. "__type__": "cc.Color",
  1606. "r": 200,
  1607. "g": 200,
  1608. "b": 200,
  1609. "a": 255
  1610. },
  1611. "_N$hoverColor": {
  1612. "__type__": "cc.Color",
  1613. "r": 255,
  1614. "g": 255,
  1615. "b": 255,
  1616. "a": 255
  1617. },
  1618. "hoverColor": {
  1619. "__type__": "cc.Color",
  1620. "r": 255,
  1621. "g": 255,
  1622. "b": 255,
  1623. "a": 255
  1624. },
  1625. "_N$disabledColor": {
  1626. "__type__": "cc.Color",
  1627. "r": 120,
  1628. "g": 120,
  1629. "b": 120,
  1630. "a": 200
  1631. },
  1632. "_N$normalSprite": {
  1633. "__uuid__": "259987bb-0a59-45ea-93e5-e426be699d29"
  1634. },
  1635. "_N$pressedSprite": {
  1636. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1637. },
  1638. "pressedSprite": {
  1639. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1640. },
  1641. "_N$hoverSprite": {
  1642. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1643. },
  1644. "hoverSprite": {
  1645. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1646. },
  1647. "_N$disabledSprite": {
  1648. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1649. },
  1650. "_N$target": {
  1651. "__id__": 38
  1652. },
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.ClickEvent",
  1657. "target": {
  1658. "__id__": 1
  1659. },
  1660. "component": "",
  1661. "_componentId": "985b6AjuYtNapwlu4dBpFa6",
  1662. "handler": "onGrantInfo",
  1663. "customEventData": ""
  1664. },
  1665. {
  1666. "__type__": "cc.PrefabInfo",
  1667. "root": {
  1668. "__id__": 1
  1669. },
  1670. "asset": {
  1671. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1672. },
  1673. "fileId": "e6bjGB9DVEaqZuy3NMoDFJ",
  1674. "sync": false
  1675. },
  1676. {
  1677. "__type__": "cc.Layout",
  1678. "_name": "",
  1679. "_objFlags": 0,
  1680. "node": {
  1681. "__id__": 28
  1682. },
  1683. "_enabled": true,
  1684. "_layoutSize": {
  1685. "__type__": "cc.Size",
  1686. <<<<<<< HEAD
  1687. "width": 90,
  1688. "height": 40
  1689. =======
  1690. "width": 192,
  1691. "height": 67
  1692. >>>>>>> cba7e039f9979c7af0832b36f193289324b80096
  1693. },
  1694. "_resize": 1,
  1695. "_N$layoutType": 1,
  1696. "_N$padding": 0,
  1697. "_N$cellSize": {
  1698. "__type__": "cc.Size",
  1699. "width": 40,
  1700. "height": 40
  1701. },
  1702. "_N$startAxis": 0,
  1703. "_N$paddingLeft": 10,
  1704. "_N$paddingRight": 10,
  1705. "_N$paddingTop": 0,
  1706. "_N$paddingBottom": 0,
  1707. "_N$spacingX": 10,
  1708. "_N$spacingY": 0,
  1709. "_N$verticalDirection": 1,
  1710. "_N$horizontalDirection": 0,
  1711. "_N$affectedByScale": false,
  1712. "_id": ""
  1713. },
  1714. {
  1715. "__type__": "cc.PrefabInfo",
  1716. "root": {
  1717. "__id__": 1
  1718. },
  1719. "asset": {
  1720. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1721. },
  1722. "fileId": "a7ZcydRJVPULOa6gbEjtPm",
  1723. "sync": false
  1724. },
  1725. {
  1726. "__type__": "cc.Node",
  1727. "_name": "SellOut",
  1728. "_objFlags": 0,
  1729. "_parent": {
  1730. "__id__": 2
  1731. },
  1732. "_children": [
  1733. {
  1734. "__id__": 48
  1735. }
  1736. ],
  1737. "_active": false,
  1738. "_level": 3,
  1739. "_components": [
  1740. {
  1741. "__id__": 52
  1742. },
  1743. {
  1744. "__id__": 53
  1745. }
  1746. ],
  1747. "_prefab": {
  1748. "__id__": 54
  1749. },
  1750. "_opacity": 120,
  1751. "_color": {
  1752. "__type__": "cc.Color",
  1753. "r": 0,
  1754. "g": 0,
  1755. "b": 0,
  1756. "a": 255
  1757. },
  1758. "_contentSize": {
  1759. "__type__": "cc.Size",
  1760. "width": 170,
  1761. "height": 300
  1762. },
  1763. "_anchorPoint": {
  1764. "__type__": "cc.Vec2",
  1765. "x": 0.5,
  1766. "y": 0.5
  1767. },
  1768. "_position": {
  1769. "__type__": "cc.Vec3",
  1770. "x": 0,
  1771. "y": 0,
  1772. "z": 0
  1773. },
  1774. "_scale": {
  1775. "__type__": "cc.Vec3",
  1776. "x": 1,
  1777. "y": 1,
  1778. "z": 1
  1779. },
  1780. "_eulerAngles": {
  1781. "__type__": "cc.Vec3",
  1782. "x": 0,
  1783. "y": 0,
  1784. "z": 0
  1785. },
  1786. "_skewX": 0,
  1787. "_skewY": 0,
  1788. "_is3DNode": false,
  1789. "groupIndex": 0,
  1790. "_id": ""
  1791. },
  1792. {
  1793. "__type__": "cc.Node",
  1794. "_name": "SellOutlabel",
  1795. "_objFlags": 0,
  1796. "_parent": {
  1797. "__id__": 47
  1798. },
  1799. "_children": [],
  1800. "_active": true,
  1801. "_level": 3,
  1802. "_components": [
  1803. {
  1804. "__id__": 49
  1805. },
  1806. {
  1807. "__id__": 50
  1808. }
  1809. ],
  1810. "_prefab": {
  1811. "__id__": 51
  1812. },
  1813. "_opacity": 255,
  1814. "_color": {
  1815. "__type__": "cc.Color",
  1816. "r": 255,
  1817. "g": 255,
  1818. "b": 255,
  1819. "a": 255
  1820. },
  1821. "_contentSize": {
  1822. "__type__": "cc.Size",
  1823. "width": 82,
  1824. "height": 52.4
  1825. },
  1826. "_anchorPoint": {
  1827. "__type__": "cc.Vec2",
  1828. "x": 0.5,
  1829. "y": 0.5
  1830. },
  1831. "_position": {
  1832. "__type__": "cc.Vec3",
  1833. "x": 0,
  1834. "y": 0,
  1835. "z": 0
  1836. },
  1837. "_scale": {
  1838. "__type__": "cc.Vec3",
  1839. "x": 1,
  1840. "y": 1,
  1841. "z": 1
  1842. },
  1843. "_eulerAngles": {
  1844. "__type__": "cc.Vec3",
  1845. "x": 0,
  1846. "y": 0,
  1847. "z": 0
  1848. },
  1849. "_skewX": 0,
  1850. "_skewY": 0,
  1851. "_is3DNode": false,
  1852. "groupIndex": 0,
  1853. "_id": ""
  1854. },
  1855. {
  1856. "__type__": "cc.Label",
  1857. "_name": "",
  1858. "_objFlags": 0,
  1859. "node": {
  1860. "__id__": 48
  1861. },
  1862. "_enabled": true,
  1863. "_materials": [
  1864. {
  1865. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1866. }
  1867. ],
  1868. "_useOriginalSize": false,
  1869. "_string": "售罄",
  1870. "_N$string": "售罄",
  1871. "_fontSize": 40,
  1872. "_lineHeight": 40,
  1873. "_enableWrapText": true,
  1874. "_N$file": null,
  1875. "_isSystemFontUsed": true,
  1876. "_spacingX": 0,
  1877. "_batchAsBitmap": false,
  1878. "_N$horizontalAlign": 1,
  1879. "_N$verticalAlign": 1,
  1880. "_N$fontFamily": "Arial",
  1881. "_N$overflow": 0,
  1882. "_N$cacheMode": 0,
  1883. "_id": ""
  1884. },
  1885. {
  1886. "__type__": "cc.LabelOutline",
  1887. "_name": "",
  1888. "_objFlags": 0,
  1889. "node": {
  1890. "__id__": 48
  1891. },
  1892. "_enabled": true,
  1893. "_color": {
  1894. "__type__": "cc.Color",
  1895. "r": 255,
  1896. "g": 255,
  1897. "b": 255,
  1898. "a": 255
  1899. },
  1900. "_width": 1,
  1901. "_id": ""
  1902. },
  1903. {
  1904. "__type__": "cc.PrefabInfo",
  1905. "root": {
  1906. "__id__": 1
  1907. },
  1908. "asset": {
  1909. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1910. },
  1911. "fileId": "fb0cm/1s1Nr64Ph2KDE6ud",
  1912. "sync": false
  1913. },
  1914. {
  1915. "__type__": "cc.Sprite",
  1916. "_name": "",
  1917. "_objFlags": 0,
  1918. "node": {
  1919. "__id__": 47
  1920. },
  1921. "_enabled": true,
  1922. "_materials": [
  1923. {
  1924. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1925. }
  1926. ],
  1927. "_srcBlendFactor": 770,
  1928. "_dstBlendFactor": 771,
  1929. "_spriteFrame": {
  1930. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1931. },
  1932. "_type": 0,
  1933. "_sizeMode": 0,
  1934. "_fillType": 0,
  1935. "_fillCenter": {
  1936. "__type__": "cc.Vec2",
  1937. "x": 0,
  1938. "y": 0
  1939. },
  1940. "_fillStart": 0,
  1941. "_fillRange": 0,
  1942. "_isTrimmedMode": true,
  1943. "_atlas": null,
  1944. "_id": ""
  1945. },
  1946. {
  1947. "__type__": "cc.BlockInputEvents",
  1948. "_name": "",
  1949. "_objFlags": 0,
  1950. "node": {
  1951. "__id__": 47
  1952. },
  1953. "_enabled": true,
  1954. "_id": ""
  1955. },
  1956. {
  1957. "__type__": "cc.PrefabInfo",
  1958. "root": {
  1959. "__id__": 1
  1960. },
  1961. "asset": {
  1962. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1963. },
  1964. "fileId": "74AA1CFJNKk74QrL59DoKe",
  1965. "sync": false
  1966. },
  1967. {
  1968. "__type__": "cc.PrefabInfo",
  1969. "root": {
  1970. "__id__": 1
  1971. },
  1972. "asset": {
  1973. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  1974. },
  1975. "fileId": "a3nw+1QZ5H14Fg9vRJ9jg8",
  1976. "sync": false
  1977. },
  1978. {
  1979. "__type__": "cc.Button",
  1980. "_name": "",
  1981. "_objFlags": 0,
  1982. "node": {
  1983. "__id__": 1
  1984. },
  1985. "_enabled": true,
  1986. "duration": 0.1,
  1987. "zoomScale": 1.2,
  1988. "clickEvents": [
  1989. {
  1990. "__id__": 57
  1991. }
  1992. ],
  1993. "_N$interactable": true,
  1994. "_N$enableAutoGrayEffect": false,
  1995. "_N$transition": 3,
  1996. "transition": 3,
  1997. "_N$normalColor": {
  1998. "__type__": "cc.Color",
  1999. "r": 255,
  2000. "g": 255,
  2001. "b": 255,
  2002. "a": 255
  2003. },
  2004. "_N$pressedColor": {
  2005. "__type__": "cc.Color",
  2006. "r": 255,
  2007. "g": 255,
  2008. "b": 255,
  2009. "a": 255
  2010. },
  2011. "pressedColor": {
  2012. "__type__": "cc.Color",
  2013. "r": 255,
  2014. "g": 255,
  2015. "b": 255,
  2016. "a": 255
  2017. },
  2018. "_N$hoverColor": {
  2019. "__type__": "cc.Color",
  2020. "r": 255,
  2021. "g": 255,
  2022. "b": 255,
  2023. "a": 255
  2024. },
  2025. "hoverColor": {
  2026. "__type__": "cc.Color",
  2027. "r": 255,
  2028. "g": 255,
  2029. "b": 255,
  2030. "a": 255
  2031. },
  2032. "_N$disabledColor": {
  2033. "__type__": "cc.Color",
  2034. "r": 255,
  2035. "g": 255,
  2036. "b": 255,
  2037. "a": 255
  2038. },
  2039. "_N$normalSprite": {
  2040. "__uuid__": "c2cf153e-3d65-4448-b043-65628c8457ba"
  2041. },
  2042. "_N$pressedSprite": {
  2043. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2044. },
  2045. "pressedSprite": {
  2046. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2047. },
  2048. "_N$hoverSprite": {
  2049. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2050. },
  2051. "hoverSprite": {
  2052. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2053. },
  2054. "_N$disabledSprite": {
  2055. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2056. },
  2057. "_N$target": {
  2058. "__id__": 1
  2059. },
  2060. "_id": ""
  2061. },
  2062. {
  2063. "__type__": "cc.ClickEvent",
  2064. "target": {
  2065. "__id__": 1
  2066. },
  2067. "component": "",
  2068. "_componentId": "ba198n/JUtJXqII6aiwPODz",
  2069. "handler": "onPressedInfo",
  2070. "customEventData": ""
  2071. },
  2072. {
  2073. "__type__": "ba198n/JUtJXqII6aiwPODz",
  2074. "_name": "",
  2075. "_objFlags": 0,
  2076. "node": {
  2077. "__id__": 1
  2078. },
  2079. "_enabled": true,
  2080. "Name": "种子",
  2081. "Price": "50",
  2082. "DiamondPrice": 1,
  2083. "CNT": "",
  2084. "SNB": "",
  2085. "Mature": "",
  2086. "Synopsis": "可在神农农田播种",
  2087. "consumeType": 3,
  2088. "bgSprite": {
  2089. "__id__": 7
  2090. },
  2091. "NumLabel": {
  2092. "__id__": 24
  2093. },
  2094. "NameLabel": {
  2095. "__id__": 11
  2096. },
  2097. "clickEvents": [
  2098. {
  2099. "__id__": 59
  2100. }
  2101. ],
  2102. "_id": ""
  2103. },
  2104. {
  2105. "__type__": "cc.ClickEvent",
  2106. "target": {
  2107. "__id__": 1
  2108. },
  2109. "component": "",
  2110. "_componentId": "ba198n/JUtJXqII6aiwPODz",
  2111. "handler": "onPressedInfo",
  2112. "customEventData": ""
  2113. },
  2114. {
  2115. "__type__": "985b6AjuYtNapwlu4dBpFa6",
  2116. "_name": "",
  2117. "_objFlags": 0,
  2118. "node": {
  2119. "__id__": 1
  2120. },
  2121. "_enabled": true,
  2122. "grantnfoPrefabs": {
  2123. "__uuid__": "84a31b34-b613-4254-aa3b-9fa55944e5ec"
  2124. },
  2125. "saleInfoPrefabs": {
  2126. "__uuid__": "c5974de4-05d0-443b-a59f-911cb68a6c1c"
  2127. },
  2128. "fruitInfo": null,
  2129. "_id": ""
  2130. },
  2131. {
  2132. "__type__": "cc.PrefabInfo",
  2133. "root": {
  2134. "__id__": 1
  2135. },
  2136. "asset": {
  2137. "__uuid__": "b056e9fe-07e9-4094-ba81-0b13bafda1aa"
  2138. },
  2139. "fileId": "8eKV86OF9K5phmjtbZ2sts",
  2140. "sync": false
  2141. }
  2142. ]