HolyFarmlandSeed.prefab 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166
  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__": 27
  37. },
  38. {
  39. "__id__": 38
  40. },
  41. {
  42. "__id__": 49
  43. }
  44. ],
  45. "_active": true,
  46. "_level": 1,
  47. "_components": [
  48. {
  49. "__id__": 57
  50. },
  51. {
  52. "__id__": 59
  53. },
  54. {
  55. "__id__": 61
  56. }
  57. ],
  58. "_prefab": {
  59. "__id__": 62
  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": 138,
  235. "height": 115
  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__": 25
  754. }
  755. ],
  756. "_prefab": {
  757. "__id__": 26
  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. "_prefab": {
  817. "__id__": 24
  818. },
  819. "_opacity": 255,
  820. "_color": {
  821. "__type__": "cc.Color",
  822. "r": 156,
  823. "g": 83,
  824. "b": 42,
  825. "a": 255
  826. },
  827. "_contentSize": {
  828. "__type__": "cc.Size",
  829. "width": 150,
  830. "height": 26
  831. },
  832. "_anchorPoint": {
  833. "__type__": "cc.Vec2",
  834. "x": 0.5,
  835. "y": 0.5
  836. },
  837. "_position": {
  838. "__type__": "cc.Vec3",
  839. "x": 0,
  840. "y": 19,
  841. "z": 0
  842. },
  843. "_scale": {
  844. "__type__": "cc.Vec3",
  845. "x": 1,
  846. "y": 1,
  847. "z": 1
  848. },
  849. "_eulerAngles": {
  850. "__type__": "cc.Vec3",
  851. "x": 0,
  852. "y": 0,
  853. "z": 0
  854. },
  855. "_skewX": 0,
  856. "_skewY": 0,
  857. "_is3DNode": false,
  858. "groupIndex": 0,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Label",
  863. "_name": "",
  864. "_objFlags": 0,
  865. "node": {
  866. "__id__": 22
  867. },
  868. "_enabled": true,
  869. "_materials": [
  870. {
  871. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  872. }
  873. ],
  874. "_useOriginalSize": false,
  875. "_string": "5",
  876. "_N$string": "5",
  877. "_fontSize": 26,
  878. "_lineHeight": 25,
  879. "_enableWrapText": false,
  880. "_N$file": null,
  881. "_isSystemFontUsed": true,
  882. "_spacingX": 0,
  883. "_batchAsBitmap": false,
  884. "_N$horizontalAlign": 1,
  885. "_N$verticalAlign": 1,
  886. "_N$fontFamily": "Arial",
  887. "_N$overflow": 2,
  888. "_N$cacheMode": 0,
  889. "_id": ""
  890. },
  891. {
  892. "__type__": "cc.PrefabInfo",
  893. "root": {
  894. "__id__": 1
  895. },
  896. "asset": {
  897. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  898. },
  899. "fileId": "62ks7zG1BMvKluWHuHIOVK",
  900. "sync": false
  901. },
  902. {
  903. "__type__": "cc.Sprite",
  904. "_name": "",
  905. "_objFlags": 0,
  906. "node": {
  907. "__id__": 21
  908. },
  909. "_enabled": true,
  910. "_materials": [
  911. {
  912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  913. }
  914. ],
  915. "_srcBlendFactor": 770,
  916. "_dstBlendFactor": 771,
  917. "_spriteFrame": null,
  918. "_type": 0,
  919. "_sizeMode": 0,
  920. "_fillType": 0,
  921. "_fillCenter": {
  922. "__type__": "cc.Vec2",
  923. "x": 0,
  924. "y": 0
  925. },
  926. "_fillStart": 0,
  927. "_fillRange": 0,
  928. "_isTrimmedMode": true,
  929. "_atlas": null,
  930. "_id": ""
  931. },
  932. {
  933. "__type__": "cc.PrefabInfo",
  934. "root": {
  935. "__id__": 1
  936. },
  937. "asset": {
  938. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  939. },
  940. "fileId": "72BIoO+adEQJqerQu5nX8T",
  941. "sync": false
  942. },
  943. {
  944. "__type__": "cc.Node",
  945. "_name": "plant_button",
  946. "_objFlags": 0,
  947. "_parent": {
  948. "__id__": 1
  949. },
  950. "_children": [
  951. {
  952. "__id__": 28
  953. }
  954. ],
  955. "_active": true,
  956. "_level": 2,
  957. "_components": [
  958. {
  959. "__id__": 35
  960. }
  961. ],
  962. "_prefab": {
  963. "__id__": 37
  964. },
  965. "_opacity": 255,
  966. "_color": {
  967. "__type__": "cc.Color",
  968. "r": 255,
  969. "g": 255,
  970. "b": 255,
  971. "a": 255
  972. },
  973. "_contentSize": {
  974. "__type__": "cc.Size",
  975. "width": 172,
  976. "height": 67
  977. },
  978. "_anchorPoint": {
  979. "__type__": "cc.Vec2",
  980. "x": 0.5,
  981. "y": 0.5
  982. },
  983. "_position": {
  984. "__type__": "cc.Vec3",
  985. "x": 0,
  986. "y": -107,
  987. "z": 0
  988. },
  989. "_scale": {
  990. "__type__": "cc.Vec3",
  991. "x": 1,
  992. "y": 1,
  993. "z": 1
  994. },
  995. "_eulerAngles": {
  996. "__type__": "cc.Vec3",
  997. "x": 0,
  998. "y": 0,
  999. "z": 0
  1000. },
  1001. "_skewX": 0,
  1002. "_skewY": 0,
  1003. "_is3DNode": false,
  1004. "groupIndex": 0,
  1005. "_id": ""
  1006. },
  1007. {
  1008. "__type__": "cc.Node",
  1009. "_name": "Background",
  1010. "_objFlags": 0,
  1011. "_parent": {
  1012. "__id__": 27
  1013. },
  1014. "_children": [
  1015. {
  1016. "__id__": 29
  1017. }
  1018. ],
  1019. "_active": true,
  1020. "_level": 2,
  1021. "_components": [
  1022. {
  1023. "__id__": 32
  1024. },
  1025. {
  1026. "__id__": 33
  1027. }
  1028. ],
  1029. "_prefab": {
  1030. "__id__": 34
  1031. },
  1032. "_opacity": 255,
  1033. "_color": {
  1034. "__type__": "cc.Color",
  1035. "r": 255,
  1036. "g": 255,
  1037. "b": 255,
  1038. "a": 255
  1039. },
  1040. "_contentSize": {
  1041. "__type__": "cc.Size",
  1042. "width": 172,
  1043. "height": 67
  1044. },
  1045. "_anchorPoint": {
  1046. "__type__": "cc.Vec2",
  1047. "x": 0.5,
  1048. "y": 0.5
  1049. },
  1050. "_position": {
  1051. "__type__": "cc.Vec3",
  1052. "x": 0,
  1053. "y": 0,
  1054. "z": 0
  1055. },
  1056. "_scale": {
  1057. "__type__": "cc.Vec3",
  1058. "x": 1,
  1059. "y": 1,
  1060. "z": 1
  1061. },
  1062. "_eulerAngles": {
  1063. "__type__": "cc.Vec3",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": 0
  1067. },
  1068. "_skewX": 0,
  1069. "_skewY": 0,
  1070. "_is3DNode": false,
  1071. "groupIndex": 0,
  1072. "_id": ""
  1073. },
  1074. {
  1075. "__type__": "cc.Node",
  1076. "_name": "Label",
  1077. "_objFlags": 0,
  1078. "_parent": {
  1079. "__id__": 28
  1080. },
  1081. "_children": [],
  1082. "_active": true,
  1083. "_level": 3,
  1084. "_components": [
  1085. {
  1086. "__id__": 30
  1087. }
  1088. ],
  1089. "_prefab": {
  1090. "__id__": 31
  1091. },
  1092. "_opacity": 255,
  1093. "_color": {
  1094. "__type__": "cc.Color",
  1095. "r": 0,
  1096. "g": 0,
  1097. "b": 0,
  1098. "a": 255
  1099. },
  1100. "_contentSize": {
  1101. "__type__": "cc.Size",
  1102. "width": 100,
  1103. "height": 40
  1104. },
  1105. "_anchorPoint": {
  1106. "__type__": "cc.Vec2",
  1107. "x": 0.5,
  1108. "y": 0.5
  1109. },
  1110. "_position": {
  1111. "__type__": "cc.Vec3",
  1112. "x": 0,
  1113. "y": 0,
  1114. "z": 0
  1115. },
  1116. "_scale": {
  1117. "__type__": "cc.Vec3",
  1118. "x": 1,
  1119. "y": 1,
  1120. "z": 1
  1121. },
  1122. "_eulerAngles": {
  1123. "__type__": "cc.Vec3",
  1124. "x": 0,
  1125. "y": 0,
  1126. "z": 0
  1127. },
  1128. "_skewX": 0,
  1129. "_skewY": 0,
  1130. "_is3DNode": false,
  1131. "groupIndex": 0,
  1132. "_id": ""
  1133. },
  1134. {
  1135. "__type__": "cc.Label",
  1136. "_name": "",
  1137. "_objFlags": 0,
  1138. "node": {
  1139. "__id__": 29
  1140. },
  1141. "_enabled": true,
  1142. "_materials": [
  1143. {
  1144. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1145. }
  1146. ],
  1147. "_useOriginalSize": false,
  1148. "_string": "",
  1149. "_N$string": "",
  1150. "_fontSize": 20,
  1151. "_lineHeight": 40,
  1152. "_enableWrapText": false,
  1153. "_N$file": null,
  1154. "_isSystemFontUsed": true,
  1155. "_spacingX": 0,
  1156. "_batchAsBitmap": false,
  1157. "_N$horizontalAlign": 1,
  1158. "_N$verticalAlign": 1,
  1159. "_N$fontFamily": "Arial",
  1160. "_N$overflow": 1,
  1161. "_N$cacheMode": 0,
  1162. "_id": ""
  1163. },
  1164. {
  1165. "__type__": "cc.PrefabInfo",
  1166. "root": {
  1167. "__id__": 1
  1168. },
  1169. "asset": {
  1170. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1171. },
  1172. "fileId": "96yTtqIRdMr4BEAmA2LLvg",
  1173. "sync": false
  1174. },
  1175. {
  1176. "__type__": "cc.Sprite",
  1177. "_name": "",
  1178. "_objFlags": 0,
  1179. "node": {
  1180. "__id__": 28
  1181. },
  1182. "_enabled": true,
  1183. "_materials": [
  1184. {
  1185. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1186. }
  1187. ],
  1188. "_srcBlendFactor": 770,
  1189. "_dstBlendFactor": 771,
  1190. "_spriteFrame": {
  1191. "__uuid__": "01b67bad-775e-4e51-a516-b4c697663b0f"
  1192. },
  1193. "_type": 1,
  1194. "_sizeMode": 0,
  1195. "_fillType": 0,
  1196. "_fillCenter": {
  1197. "__type__": "cc.Vec2",
  1198. "x": 0,
  1199. "y": 0
  1200. },
  1201. "_fillStart": 0,
  1202. "_fillRange": 0,
  1203. "_isTrimmedMode": true,
  1204. "_atlas": null,
  1205. "_id": ""
  1206. },
  1207. {
  1208. "__type__": "cc.Widget",
  1209. "_name": "",
  1210. "_objFlags": 0,
  1211. "node": {
  1212. "__id__": 28
  1213. },
  1214. "_enabled": true,
  1215. "alignMode": 0,
  1216. "_target": null,
  1217. "_alignFlags": 45,
  1218. "_left": 0,
  1219. "_right": 0,
  1220. "_top": 0,
  1221. "_bottom": 0,
  1222. "_verticalCenter": 0,
  1223. "_horizontalCenter": 0,
  1224. "_isAbsLeft": true,
  1225. "_isAbsRight": true,
  1226. "_isAbsTop": true,
  1227. "_isAbsBottom": true,
  1228. "_isAbsHorizontalCenter": true,
  1229. "_isAbsVerticalCenter": true,
  1230. "_originalWidth": 100,
  1231. "_originalHeight": 40,
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.PrefabInfo",
  1236. "root": {
  1237. "__id__": 1
  1238. },
  1239. "asset": {
  1240. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1241. },
  1242. "fileId": "1dOEZ5napOIpKdUCkllGii",
  1243. "sync": false
  1244. },
  1245. {
  1246. "__type__": "cc.Button",
  1247. "_name": "",
  1248. "_objFlags": 0,
  1249. "node": {
  1250. "__id__": 27
  1251. },
  1252. "_enabled": true,
  1253. "duration": 0.1,
  1254. "zoomScale": 0.8,
  1255. "clickEvents": [
  1256. {
  1257. "__id__": 36
  1258. }
  1259. ],
  1260. "_N$interactable": true,
  1261. "_N$enableAutoGrayEffect": false,
  1262. "_N$transition": 3,
  1263. "transition": 3,
  1264. "_N$normalColor": {
  1265. "__type__": "cc.Color",
  1266. "r": 230,
  1267. "g": 230,
  1268. "b": 230,
  1269. "a": 255
  1270. },
  1271. "_N$pressedColor": {
  1272. "__type__": "cc.Color",
  1273. "r": 200,
  1274. "g": 200,
  1275. "b": 200,
  1276. "a": 255
  1277. },
  1278. "pressedColor": {
  1279. "__type__": "cc.Color",
  1280. "r": 200,
  1281. "g": 200,
  1282. "b": 200,
  1283. "a": 255
  1284. },
  1285. "_N$hoverColor": {
  1286. "__type__": "cc.Color",
  1287. "r": 255,
  1288. "g": 255,
  1289. "b": 255,
  1290. "a": 255
  1291. },
  1292. "hoverColor": {
  1293. "__type__": "cc.Color",
  1294. "r": 255,
  1295. "g": 255,
  1296. "b": 255,
  1297. "a": 255
  1298. },
  1299. "_N$disabledColor": {
  1300. "__type__": "cc.Color",
  1301. "r": 120,
  1302. "g": 120,
  1303. "b": 120,
  1304. "a": 200
  1305. },
  1306. "_N$normalSprite": {
  1307. "__uuid__": "01b67bad-775e-4e51-a516-b4c697663b0f"
  1308. },
  1309. "_N$pressedSprite": {
  1310. "__uuid__": "01b67bad-775e-4e51-a516-b4c697663b0f"
  1311. },
  1312. "pressedSprite": {
  1313. "__uuid__": "01b67bad-775e-4e51-a516-b4c697663b0f"
  1314. },
  1315. "_N$hoverSprite": {
  1316. "__uuid__": "01b67bad-775e-4e51-a516-b4c697663b0f"
  1317. },
  1318. "hoverSprite": {
  1319. "__uuid__": "01b67bad-775e-4e51-a516-b4c697663b0f"
  1320. },
  1321. "_N$disabledSprite": {
  1322. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1323. },
  1324. "_N$target": {
  1325. "__id__": 28
  1326. },
  1327. "_id": ""
  1328. },
  1329. {
  1330. "__type__": "cc.ClickEvent",
  1331. "target": {
  1332. "__id__": 1
  1333. },
  1334. "component": "",
  1335. "_componentId": "ba198n/JUtJXqII6aiwPODz",
  1336. "handler": "onPressed",
  1337. "customEventData": ""
  1338. },
  1339. {
  1340. "__type__": "cc.PrefabInfo",
  1341. "root": {
  1342. "__id__": 1
  1343. },
  1344. "asset": {
  1345. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1346. },
  1347. "fileId": "41Ds8gh0tPWZZfWCsEiX+Y",
  1348. "sync": false
  1349. },
  1350. {
  1351. "__type__": "cc.Node",
  1352. "_name": "buy_button",
  1353. "_objFlags": 0,
  1354. "_parent": {
  1355. "__id__": 1
  1356. },
  1357. "_children": [
  1358. {
  1359. "__id__": 39
  1360. }
  1361. ],
  1362. "_active": false,
  1363. "_level": 2,
  1364. "_components": [
  1365. {
  1366. "__id__": 46
  1367. }
  1368. ],
  1369. "_prefab": {
  1370. "__id__": 48
  1371. },
  1372. "_opacity": 255,
  1373. "_color": {
  1374. "__type__": "cc.Color",
  1375. "r": 255,
  1376. "g": 255,
  1377. "b": 255,
  1378. "a": 255
  1379. },
  1380. "_contentSize": {
  1381. "__type__": "cc.Size",
  1382. "width": 172,
  1383. "height": 67
  1384. },
  1385. "_anchorPoint": {
  1386. "__type__": "cc.Vec2",
  1387. "x": 0.5,
  1388. "y": 0.5
  1389. },
  1390. "_position": {
  1391. "__type__": "cc.Vec3",
  1392. "x": 0,
  1393. "y": -107,
  1394. "z": 0
  1395. },
  1396. "_scale": {
  1397. "__type__": "cc.Vec3",
  1398. "x": 1,
  1399. "y": 1,
  1400. "z": 1
  1401. },
  1402. "_eulerAngles": {
  1403. "__type__": "cc.Vec3",
  1404. "x": 0,
  1405. "y": 0,
  1406. "z": 0
  1407. },
  1408. "_skewX": 0,
  1409. "_skewY": 0,
  1410. "_is3DNode": false,
  1411. "groupIndex": 0,
  1412. "_id": ""
  1413. },
  1414. {
  1415. "__type__": "cc.Node",
  1416. "_name": "Background",
  1417. "_objFlags": 0,
  1418. "_parent": {
  1419. "__id__": 38
  1420. },
  1421. "_children": [
  1422. {
  1423. "__id__": 40
  1424. }
  1425. ],
  1426. "_active": true,
  1427. "_level": 2,
  1428. "_components": [
  1429. {
  1430. "__id__": 43
  1431. },
  1432. {
  1433. "__id__": 44
  1434. }
  1435. ],
  1436. "_prefab": {
  1437. "__id__": 45
  1438. },
  1439. "_opacity": 255,
  1440. "_color": {
  1441. "__type__": "cc.Color",
  1442. "r": 255,
  1443. "g": 255,
  1444. "b": 255,
  1445. "a": 255
  1446. },
  1447. "_contentSize": {
  1448. "__type__": "cc.Size",
  1449. "width": 172,
  1450. "height": 67
  1451. },
  1452. "_anchorPoint": {
  1453. "__type__": "cc.Vec2",
  1454. "x": 0.5,
  1455. "y": 0.5
  1456. },
  1457. "_position": {
  1458. "__type__": "cc.Vec3",
  1459. "x": 0,
  1460. "y": 0,
  1461. "z": 0
  1462. },
  1463. "_scale": {
  1464. "__type__": "cc.Vec3",
  1465. "x": 1,
  1466. "y": 1,
  1467. "z": 1
  1468. },
  1469. "_eulerAngles": {
  1470. "__type__": "cc.Vec3",
  1471. "x": 0,
  1472. "y": 0,
  1473. "z": 0
  1474. },
  1475. "_skewX": 0,
  1476. "_skewY": 0,
  1477. "_is3DNode": false,
  1478. "groupIndex": 0,
  1479. "_id": ""
  1480. },
  1481. {
  1482. "__type__": "cc.Node",
  1483. "_name": "Label",
  1484. "_objFlags": 0,
  1485. "_parent": {
  1486. "__id__": 39
  1487. },
  1488. "_children": [],
  1489. "_active": true,
  1490. "_level": 3,
  1491. "_components": [
  1492. {
  1493. "__id__": 41
  1494. }
  1495. ],
  1496. "_prefab": {
  1497. "__id__": 42
  1498. },
  1499. "_opacity": 255,
  1500. "_color": {
  1501. "__type__": "cc.Color",
  1502. "r": 0,
  1503. "g": 0,
  1504. "b": 0,
  1505. "a": 255
  1506. },
  1507. "_contentSize": {
  1508. "__type__": "cc.Size",
  1509. "width": 100,
  1510. "height": 40
  1511. },
  1512. "_anchorPoint": {
  1513. "__type__": "cc.Vec2",
  1514. "x": 0.5,
  1515. "y": 0.5
  1516. },
  1517. "_position": {
  1518. "__type__": "cc.Vec3",
  1519. "x": 0,
  1520. "y": 0,
  1521. "z": 0
  1522. },
  1523. "_scale": {
  1524. "__type__": "cc.Vec3",
  1525. "x": 1,
  1526. "y": 1,
  1527. "z": 1
  1528. },
  1529. "_eulerAngles": {
  1530. "__type__": "cc.Vec3",
  1531. "x": 0,
  1532. "y": 0,
  1533. "z": 0
  1534. },
  1535. "_skewX": 0,
  1536. "_skewY": 0,
  1537. "_is3DNode": false,
  1538. "groupIndex": 0,
  1539. "_id": ""
  1540. },
  1541. {
  1542. "__type__": "cc.Label",
  1543. "_name": "",
  1544. "_objFlags": 0,
  1545. "node": {
  1546. "__id__": 40
  1547. },
  1548. "_enabled": true,
  1549. "_materials": [
  1550. {
  1551. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1552. }
  1553. ],
  1554. "_useOriginalSize": false,
  1555. "_string": "",
  1556. "_N$string": "",
  1557. "_fontSize": 20,
  1558. "_lineHeight": 40,
  1559. "_enableWrapText": false,
  1560. "_N$file": null,
  1561. "_isSystemFontUsed": true,
  1562. "_spacingX": 0,
  1563. "_batchAsBitmap": false,
  1564. "_N$horizontalAlign": 1,
  1565. "_N$verticalAlign": 1,
  1566. "_N$fontFamily": "Arial",
  1567. "_N$overflow": 1,
  1568. "_N$cacheMode": 0,
  1569. "_id": ""
  1570. },
  1571. {
  1572. "__type__": "cc.PrefabInfo",
  1573. "root": {
  1574. "__id__": 1
  1575. },
  1576. "asset": {
  1577. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1578. },
  1579. "fileId": "89QocYYrJPh6Zl6dv+lz/R",
  1580. "sync": false
  1581. },
  1582. {
  1583. "__type__": "cc.Sprite",
  1584. "_name": "",
  1585. "_objFlags": 0,
  1586. "node": {
  1587. "__id__": 39
  1588. },
  1589. "_enabled": true,
  1590. "_materials": [
  1591. {
  1592. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1593. }
  1594. ],
  1595. "_srcBlendFactor": 770,
  1596. "_dstBlendFactor": 771,
  1597. "_spriteFrame": {
  1598. "__uuid__": "a66187c1-ba8f-4ddf-a5e2-b936dba6abdf"
  1599. },
  1600. "_type": 1,
  1601. "_sizeMode": 0,
  1602. "_fillType": 0,
  1603. "_fillCenter": {
  1604. "__type__": "cc.Vec2",
  1605. "x": 0,
  1606. "y": 0
  1607. },
  1608. "_fillStart": 0,
  1609. "_fillRange": 0,
  1610. "_isTrimmedMode": true,
  1611. "_atlas": null,
  1612. "_id": ""
  1613. },
  1614. {
  1615. "__type__": "cc.Widget",
  1616. "_name": "",
  1617. "_objFlags": 0,
  1618. "node": {
  1619. "__id__": 39
  1620. },
  1621. "_enabled": true,
  1622. "alignMode": 0,
  1623. "_target": null,
  1624. "_alignFlags": 45,
  1625. "_left": 0,
  1626. "_right": 0,
  1627. "_top": 0,
  1628. "_bottom": 0,
  1629. "_verticalCenter": 0,
  1630. "_horizontalCenter": 0,
  1631. "_isAbsLeft": true,
  1632. "_isAbsRight": true,
  1633. "_isAbsTop": true,
  1634. "_isAbsBottom": true,
  1635. "_isAbsHorizontalCenter": true,
  1636. "_isAbsVerticalCenter": true,
  1637. "_originalWidth": 100,
  1638. "_originalHeight": 40,
  1639. "_id": ""
  1640. },
  1641. {
  1642. "__type__": "cc.PrefabInfo",
  1643. "root": {
  1644. "__id__": 1
  1645. },
  1646. "asset": {
  1647. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1648. },
  1649. "fileId": "05ev3Xm+hKMZrV1m98VYxo",
  1650. "sync": false
  1651. },
  1652. {
  1653. "__type__": "cc.Button",
  1654. "_name": "",
  1655. "_objFlags": 0,
  1656. "node": {
  1657. "__id__": 38
  1658. },
  1659. "_enabled": true,
  1660. "duration": 0.1,
  1661. "zoomScale": 0.8,
  1662. "clickEvents": [
  1663. {
  1664. "__id__": 47
  1665. }
  1666. ],
  1667. "_N$interactable": true,
  1668. "_N$enableAutoGrayEffect": false,
  1669. "_N$transition": 3,
  1670. "transition": 3,
  1671. "_N$normalColor": {
  1672. "__type__": "cc.Color",
  1673. "r": 230,
  1674. "g": 230,
  1675. "b": 230,
  1676. "a": 255
  1677. },
  1678. "_N$pressedColor": {
  1679. "__type__": "cc.Color",
  1680. "r": 200,
  1681. "g": 200,
  1682. "b": 200,
  1683. "a": 255
  1684. },
  1685. "pressedColor": {
  1686. "__type__": "cc.Color",
  1687. "r": 200,
  1688. "g": 200,
  1689. "b": 200,
  1690. "a": 255
  1691. },
  1692. "_N$hoverColor": {
  1693. "__type__": "cc.Color",
  1694. "r": 255,
  1695. "g": 255,
  1696. "b": 255,
  1697. "a": 255
  1698. },
  1699. "hoverColor": {
  1700. "__type__": "cc.Color",
  1701. "r": 255,
  1702. "g": 255,
  1703. "b": 255,
  1704. "a": 255
  1705. },
  1706. "_N$disabledColor": {
  1707. "__type__": "cc.Color",
  1708. "r": 120,
  1709. "g": 120,
  1710. "b": 120,
  1711. "a": 200
  1712. },
  1713. "_N$normalSprite": {
  1714. "__uuid__": "a66187c1-ba8f-4ddf-a5e2-b936dba6abdf"
  1715. },
  1716. "_N$pressedSprite": {
  1717. "__uuid__": "a66187c1-ba8f-4ddf-a5e2-b936dba6abdf"
  1718. },
  1719. "pressedSprite": {
  1720. "__uuid__": "a66187c1-ba8f-4ddf-a5e2-b936dba6abdf"
  1721. },
  1722. "_N$hoverSprite": {
  1723. "__uuid__": "a66187c1-ba8f-4ddf-a5e2-b936dba6abdf"
  1724. },
  1725. "hoverSprite": {
  1726. "__uuid__": "a66187c1-ba8f-4ddf-a5e2-b936dba6abdf"
  1727. },
  1728. "_N$disabledSprite": {
  1729. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1730. },
  1731. "_N$target": {
  1732. "__id__": 39
  1733. },
  1734. "_id": ""
  1735. },
  1736. {
  1737. "__type__": "cc.ClickEvent",
  1738. "target": {
  1739. "__id__": 1
  1740. },
  1741. "component": "",
  1742. "_componentId": "22ed83kVv5KeZS7uv2u6vw7",
  1743. "handler": "onPayCNTPopView",
  1744. "customEventData": ""
  1745. },
  1746. {
  1747. "__type__": "cc.PrefabInfo",
  1748. "root": {
  1749. "__id__": 1
  1750. },
  1751. "asset": {
  1752. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1753. },
  1754. "fileId": "ado/ACB6ZEL4Z5uccLcoEb",
  1755. "sync": false
  1756. },
  1757. {
  1758. "__type__": "cc.Node",
  1759. "_name": "SellOut",
  1760. "_objFlags": 0,
  1761. "_parent": {
  1762. "__id__": 1
  1763. },
  1764. "_children": [
  1765. {
  1766. "__id__": 50
  1767. }
  1768. ],
  1769. "_active": false,
  1770. "_level": 2,
  1771. "_components": [
  1772. {
  1773. "__id__": 54
  1774. },
  1775. {
  1776. "__id__": 55
  1777. }
  1778. ],
  1779. "_prefab": {
  1780. "__id__": 56
  1781. },
  1782. "_opacity": 120,
  1783. "_color": {
  1784. "__type__": "cc.Color",
  1785. "r": 0,
  1786. "g": 0,
  1787. "b": 0,
  1788. "a": 255
  1789. },
  1790. "_contentSize": {
  1791. "__type__": "cc.Size",
  1792. "width": 170,
  1793. "height": 257
  1794. },
  1795. "_anchorPoint": {
  1796. "__type__": "cc.Vec2",
  1797. "x": 0.5,
  1798. "y": 0.5
  1799. },
  1800. "_position": {
  1801. "__type__": "cc.Vec3",
  1802. "x": 0,
  1803. "y": 0,
  1804. "z": 0
  1805. },
  1806. "_scale": {
  1807. "__type__": "cc.Vec3",
  1808. "x": 1,
  1809. "y": 1,
  1810. "z": 1
  1811. },
  1812. "_eulerAngles": {
  1813. "__type__": "cc.Vec3",
  1814. "x": 0,
  1815. "y": 0,
  1816. "z": 0
  1817. },
  1818. "_skewX": 0,
  1819. "_skewY": 0,
  1820. "_is3DNode": false,
  1821. "groupIndex": 0,
  1822. "_id": ""
  1823. },
  1824. {
  1825. "__type__": "cc.Node",
  1826. "_name": "SellOutlabel",
  1827. "_objFlags": 0,
  1828. "_parent": {
  1829. "__id__": 49
  1830. },
  1831. "_children": [],
  1832. "_active": true,
  1833. "_level": 3,
  1834. "_components": [
  1835. {
  1836. "__id__": 51
  1837. },
  1838. {
  1839. "__id__": 52
  1840. }
  1841. ],
  1842. "_prefab": {
  1843. "__id__": 53
  1844. },
  1845. "_opacity": 255,
  1846. "_color": {
  1847. "__type__": "cc.Color",
  1848. "r": 255,
  1849. "g": 255,
  1850. "b": 255,
  1851. "a": 255
  1852. },
  1853. "_contentSize": {
  1854. "__type__": "cc.Size",
  1855. "width": 82,
  1856. "height": 52.4
  1857. },
  1858. "_anchorPoint": {
  1859. "__type__": "cc.Vec2",
  1860. "x": 0.5,
  1861. "y": 0.5
  1862. },
  1863. "_position": {
  1864. "__type__": "cc.Vec3",
  1865. "x": 0,
  1866. "y": 0,
  1867. "z": 0
  1868. },
  1869. "_scale": {
  1870. "__type__": "cc.Vec3",
  1871. "x": 1,
  1872. "y": 1,
  1873. "z": 1
  1874. },
  1875. "_eulerAngles": {
  1876. "__type__": "cc.Vec3",
  1877. "x": 0,
  1878. "y": 0,
  1879. "z": 0
  1880. },
  1881. "_skewX": 0,
  1882. "_skewY": 0,
  1883. "_is3DNode": false,
  1884. "groupIndex": 0,
  1885. "_id": ""
  1886. },
  1887. {
  1888. "__type__": "cc.Label",
  1889. "_name": "",
  1890. "_objFlags": 0,
  1891. "node": {
  1892. "__id__": 50
  1893. },
  1894. "_enabled": true,
  1895. "_materials": [
  1896. {
  1897. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1898. }
  1899. ],
  1900. "_useOriginalSize": false,
  1901. "_string": "售罄",
  1902. "_N$string": "售罄",
  1903. "_fontSize": 40,
  1904. "_lineHeight": 40,
  1905. "_enableWrapText": true,
  1906. "_N$file": null,
  1907. "_isSystemFontUsed": true,
  1908. "_spacingX": 0,
  1909. "_batchAsBitmap": false,
  1910. "_N$horizontalAlign": 1,
  1911. "_N$verticalAlign": 1,
  1912. "_N$fontFamily": "Arial",
  1913. "_N$overflow": 0,
  1914. "_N$cacheMode": 0,
  1915. "_id": ""
  1916. },
  1917. {
  1918. "__type__": "cc.LabelOutline",
  1919. "_name": "",
  1920. "_objFlags": 0,
  1921. "node": {
  1922. "__id__": 50
  1923. },
  1924. "_enabled": true,
  1925. "_color": {
  1926. "__type__": "cc.Color",
  1927. "r": 255,
  1928. "g": 255,
  1929. "b": 255,
  1930. "a": 255
  1931. },
  1932. "_width": 1,
  1933. "_id": ""
  1934. },
  1935. {
  1936. "__type__": "cc.PrefabInfo",
  1937. "root": {
  1938. "__id__": 1
  1939. },
  1940. "asset": {
  1941. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1942. },
  1943. "fileId": "88IuNMEtxIjqrm/nEFEqzK",
  1944. "sync": false
  1945. },
  1946. {
  1947. "__type__": "cc.Sprite",
  1948. "_name": "",
  1949. "_objFlags": 0,
  1950. "node": {
  1951. "__id__": 49
  1952. },
  1953. "_enabled": true,
  1954. "_materials": [
  1955. {
  1956. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1957. }
  1958. ],
  1959. "_srcBlendFactor": 770,
  1960. "_dstBlendFactor": 771,
  1961. "_spriteFrame": {
  1962. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1963. },
  1964. "_type": 0,
  1965. "_sizeMode": 0,
  1966. "_fillType": 0,
  1967. "_fillCenter": {
  1968. "__type__": "cc.Vec2",
  1969. "x": 0,
  1970. "y": 0
  1971. },
  1972. "_fillStart": 0,
  1973. "_fillRange": 0,
  1974. "_isTrimmedMode": true,
  1975. "_atlas": null,
  1976. "_id": ""
  1977. },
  1978. {
  1979. "__type__": "cc.BlockInputEvents",
  1980. "_name": "",
  1981. "_objFlags": 0,
  1982. "node": {
  1983. "__id__": 49
  1984. },
  1985. "_enabled": true,
  1986. "_id": ""
  1987. },
  1988. {
  1989. "__type__": "cc.PrefabInfo",
  1990. "root": {
  1991. "__id__": 1
  1992. },
  1993. "asset": {
  1994. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  1995. },
  1996. "fileId": "4brFnEhZ1Np7LWhvBG0jSA",
  1997. "sync": false
  1998. },
  1999. {
  2000. "__type__": "cc.Button",
  2001. "_name": "",
  2002. "_objFlags": 0,
  2003. "node": {
  2004. "__id__": 1
  2005. },
  2006. "_enabled": true,
  2007. "duration": 0.1,
  2008. "zoomScale": 1.2,
  2009. "clickEvents": [
  2010. {
  2011. "__id__": 58
  2012. }
  2013. ],
  2014. "_N$interactable": true,
  2015. "_N$enableAutoGrayEffect": false,
  2016. "_N$transition": 3,
  2017. "transition": 3,
  2018. "_N$normalColor": {
  2019. "__type__": "cc.Color",
  2020. "r": 255,
  2021. "g": 255,
  2022. "b": 255,
  2023. "a": 255
  2024. },
  2025. "_N$pressedColor": {
  2026. "__type__": "cc.Color",
  2027. "r": 255,
  2028. "g": 255,
  2029. "b": 255,
  2030. "a": 255
  2031. },
  2032. "pressedColor": {
  2033. "__type__": "cc.Color",
  2034. "r": 255,
  2035. "g": 255,
  2036. "b": 255,
  2037. "a": 255
  2038. },
  2039. "_N$hoverColor": {
  2040. "__type__": "cc.Color",
  2041. "r": 255,
  2042. "g": 255,
  2043. "b": 255,
  2044. "a": 255
  2045. },
  2046. "hoverColor": {
  2047. "__type__": "cc.Color",
  2048. "r": 255,
  2049. "g": 255,
  2050. "b": 255,
  2051. "a": 255
  2052. },
  2053. "_N$disabledColor": {
  2054. "__type__": "cc.Color",
  2055. "r": 255,
  2056. "g": 255,
  2057. "b": 255,
  2058. "a": 255
  2059. },
  2060. "_N$normalSprite": {
  2061. "__uuid__": "c2cf153e-3d65-4448-b043-65628c8457ba"
  2062. },
  2063. "_N$pressedSprite": {
  2064. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2065. },
  2066. "pressedSprite": {
  2067. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2068. },
  2069. "_N$hoverSprite": {
  2070. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2071. },
  2072. "hoverSprite": {
  2073. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2074. },
  2075. "_N$disabledSprite": {
  2076. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2077. },
  2078. "_N$target": {
  2079. "__id__": 1
  2080. },
  2081. "_id": ""
  2082. },
  2083. {
  2084. "__type__": "cc.ClickEvent",
  2085. "target": {
  2086. "__id__": 1
  2087. },
  2088. "component": "",
  2089. "_componentId": "ba198n/JUtJXqII6aiwPODz",
  2090. "handler": "onPressedInfo",
  2091. "customEventData": ""
  2092. },
  2093. {
  2094. "__type__": "ba198n/JUtJXqII6aiwPODz",
  2095. "_name": "",
  2096. "_objFlags": 0,
  2097. "node": {
  2098. "__id__": 1
  2099. },
  2100. "_enabled": true,
  2101. "Name": "种子",
  2102. "Price": "50",
  2103. "DiamondPrice": 1,
  2104. "CNT": "",
  2105. "SNB": "",
  2106. "Mature": "",
  2107. "Synopsis": "可在神农农田播种",
  2108. "consumeType": 0,
  2109. "bgSprite": {
  2110. "__id__": 6
  2111. },
  2112. "NumLabel": {
  2113. "__id__": 23
  2114. },
  2115. "NameLabel": {
  2116. "__id__": 10
  2117. },
  2118. "clickEvents": [
  2119. {
  2120. "__id__": 60
  2121. }
  2122. ],
  2123. "_id": ""
  2124. },
  2125. {
  2126. "__type__": "cc.ClickEvent",
  2127. "target": {
  2128. "__id__": 1
  2129. },
  2130. "component": "",
  2131. "_componentId": "22ed83kVv5KeZS7uv2u6vw7",
  2132. "handler": "onCreateSeed",
  2133. "customEventData": ""
  2134. },
  2135. {
  2136. "__type__": "22ed83kVv5KeZS7uv2u6vw7",
  2137. "_name": "",
  2138. "_objFlags": 0,
  2139. "node": {
  2140. "__id__": 1
  2141. },
  2142. "_enabled": true,
  2143. "Name": "种子",
  2144. "SeedPrefab": {
  2145. "__uuid__": "dfff901a-dac2-48df-a77d-261318f9c441"
  2146. },
  2147. "SpawnPoint": null,
  2148. "seedType": 0,
  2149. "goodsSeedInfo": null,
  2150. "seedSpriteFrame": null,
  2151. "fruitSpriteFrame": null,
  2152. "myIndex": -1,
  2153. "_id": ""
  2154. },
  2155. {
  2156. "__type__": "cc.PrefabInfo",
  2157. "root": {
  2158. "__id__": 1
  2159. },
  2160. "asset": {
  2161. "__uuid__": "bb950ba5-2167-4f1e-b274-07765f8ddbc3"
  2162. },
  2163. "fileId": "8eKV86OF9K5phmjtbZ2sts",
  2164. "sync": false
  2165. }
  2166. ]