PlantInfo.prefab 36 KB

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