HolyFarmlandSeed.prefab 38 KB

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