PlantInfo.prefab 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312
  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__": 6
  25. },
  26. {
  27. "__id__": 9
  28. },
  29. {
  30. "__id__": 12
  31. },
  32. {
  33. "__id__": 80
  34. },
  35. {
  36. "__id__": 90
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [
  42. {
  43. "__id__": 98
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 99
  48. },
  49. "_opacity": 255,
  50. "_color": {
  51. "__type__": "cc.Color",
  52. "r": 255,
  53. "g": 255,
  54. "b": 255,
  55. "a": 255
  56. },
  57. "_contentSize": {
  58. "__type__": "cc.Size",
  59. "width": 0,
  60. "height": 0
  61. },
  62. "_anchorPoint": {
  63. "__type__": "cc.Vec2",
  64. "x": 0.5,
  65. "y": 0.5
  66. },
  67. "_position": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_scale": {
  74. "__type__": "cc.Vec3",
  75. "x": 1.33,
  76. "y": 1.33,
  77. "z": 1
  78. },
  79. "_eulerAngles": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_skewX": 0,
  86. "_skewY": 0,
  87. "_is3DNode": false,
  88. "groupIndex": 0,
  89. "_id": ""
  90. },
  91. {
  92. "__type__": "cc.Node",
  93. "_name": "Mask",
  94. "_objFlags": 0,
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [],
  99. "_active": true,
  100. "_level": 2,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. },
  105. {
  106. "__id__": 4
  107. }
  108. ],
  109. "_prefab": {
  110. "__id__": 5
  111. },
  112. "_opacity": 62,
  113. "_color": {
  114. "__type__": "cc.Color",
  115. "r": 68,
  116. "g": 66,
  117. "b": 66,
  118. "a": 255
  119. },
  120. "_contentSize": {
  121. "__type__": "cc.Size",
  122. "width": 1000,
  123. "height": 2000
  124. },
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_position": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_scale": {
  137. "__type__": "cc.Vec3",
  138. "x": 1.00075,
  139. "y": 1.00075,
  140. "z": 1.00075
  141. },
  142. "_eulerAngles": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_skewX": 0,
  149. "_skewY": 0,
  150. "_is3DNode": false,
  151. "groupIndex": 0,
  152. "_id": ""
  153. },
  154. {
  155. "__type__": "cc.Sprite",
  156. "_name": "",
  157. "_objFlags": 0,
  158. "node": {
  159. "__id__": 2
  160. },
  161. "_enabled": true,
  162. "_materials": [
  163. {
  164. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  165. }
  166. ],
  167. "_srcBlendFactor": 770,
  168. "_dstBlendFactor": 771,
  169. "_spriteFrame": {
  170. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  171. },
  172. "_type": 0,
  173. "_sizeMode": 0,
  174. "_fillType": 0,
  175. "_fillCenter": {
  176. "__type__": "cc.Vec2",
  177. "x": 0,
  178. "y": 0
  179. },
  180. "_fillStart": 0,
  181. "_fillRange": 0,
  182. "_isTrimmedMode": true,
  183. "_atlas": null,
  184. "_id": ""
  185. },
  186. {
  187. "__type__": "cc.BlockInputEvents",
  188. "_name": "",
  189. "_objFlags": 0,
  190. "node": {
  191. "__id__": 2
  192. },
  193. "_enabled": true,
  194. "_id": ""
  195. },
  196. {
  197. "__type__": "cc.PrefabInfo",
  198. "root": {
  199. "__id__": 1
  200. },
  201. "asset": {
  202. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  203. },
  204. "fileId": "63I+0CU/lKkpZGUFuXDCCL",
  205. "sync": false
  206. },
  207. {
  208. "__type__": "cc.Node",
  209. "_name": "BG",
  210. "_objFlags": 0,
  211. "_parent": {
  212. "__id__": 1
  213. },
  214. "_children": [],
  215. "_active": true,
  216. "_level": 4,
  217. "_components": [
  218. {
  219. "__id__": 7
  220. }
  221. ],
  222. "_prefab": {
  223. "__id__": 8
  224. },
  225. "_opacity": 255,
  226. "_color": {
  227. "__type__": "cc.Color",
  228. "r": 255,
  229. "g": 255,
  230. "b": 255,
  231. "a": 255
  232. },
  233. "_contentSize": {
  234. "__type__": "cc.Size",
  235. "width": 593,
  236. "height": 593
  237. },
  238. "_anchorPoint": {
  239. "__type__": "cc.Vec2",
  240. "x": 0.5,
  241. "y": 0.5
  242. },
  243. "_position": {
  244. "__type__": "cc.Vec3",
  245. "x": 0,
  246. "y": -0.79,
  247. "z": 0
  248. },
  249. "_scale": {
  250. "__type__": "cc.Vec3",
  251. "x": 0.691,
  252. "y": 0.691,
  253. "z": 0.691
  254. },
  255. "_eulerAngles": {
  256. "__type__": "cc.Vec3",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0
  260. },
  261. "_skewX": 0,
  262. "_skewY": 0,
  263. "_is3DNode": false,
  264. "groupIndex": 0,
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.Sprite",
  269. "_name": "",
  270. "_objFlags": 0,
  271. "node": {
  272. "__id__": 6
  273. },
  274. "_enabled": true,
  275. "_materials": [
  276. {
  277. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  278. }
  279. ],
  280. "_srcBlendFactor": 770,
  281. "_dstBlendFactor": 771,
  282. "_spriteFrame": {
  283. "__uuid__": "ac6bed28-f031-46a9-a3a2-5b7b7a6f922c"
  284. },
  285. "_type": 0,
  286. "_sizeMode": 0,
  287. "_fillType": 0,
  288. "_fillCenter": {
  289. "__type__": "cc.Vec2",
  290. "x": 0,
  291. "y": 0
  292. },
  293. "_fillStart": 0,
  294. "_fillRange": 0,
  295. "_isTrimmedMode": true,
  296. "_atlas": null,
  297. "_id": ""
  298. },
  299. {
  300. "__type__": "cc.PrefabInfo",
  301. "root": {
  302. "__id__": 1
  303. },
  304. "asset": {
  305. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  306. },
  307. "fileId": "574GWT8apM7JnMq27mckzZ",
  308. "sync": false
  309. },
  310. {
  311. "__type__": "cc.Node",
  312. "_name": "ListNail",
  313. "_objFlags": 0,
  314. "_parent": {
  315. "__id__": 1
  316. },
  317. "_children": [],
  318. "_active": true,
  319. "_level": 2,
  320. "_components": [
  321. {
  322. "__id__": 10
  323. }
  324. ],
  325. "_prefab": {
  326. "__id__": 11
  327. },
  328. "_opacity": 255,
  329. "_color": {
  330. "__type__": "cc.Color",
  331. "r": 255,
  332. "g": 255,
  333. "b": 255,
  334. "a": 255
  335. },
  336. "_contentSize": {
  337. "__type__": "cc.Size",
  338. "width": 74,
  339. "height": 83
  340. },
  341. "_anchorPoint": {
  342. "__type__": "cc.Vec2",
  343. "x": 0.5,
  344. "y": 0.5
  345. },
  346. "_position": {
  347. "__type__": "cc.Vec3",
  348. "x": -187.069,
  349. "y": 178.315,
  350. "z": 0
  351. },
  352. "_scale": {
  353. "__type__": "cc.Vec3",
  354. "x": 0.75188,
  355. "y": 0.75188,
  356. "z": 0.75188
  357. },
  358. "_eulerAngles": {
  359. "__type__": "cc.Vec3",
  360. "x": 0,
  361. "y": 0,
  362. "z": 0
  363. },
  364. "_skewX": 0,
  365. "_skewY": 0,
  366. "_is3DNode": false,
  367. "groupIndex": 0,
  368. "_id": ""
  369. },
  370. {
  371. "__type__": "cc.Sprite",
  372. "_name": "",
  373. "_objFlags": 0,
  374. "node": {
  375. "__id__": 9
  376. },
  377. "_enabled": true,
  378. "_materials": [
  379. {
  380. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  381. }
  382. ],
  383. "_srcBlendFactor": 770,
  384. "_dstBlendFactor": 771,
  385. "_spriteFrame": {
  386. "__uuid__": "3bf38d21-90b8-46ae-a029-3bfc92fb3534"
  387. },
  388. "_type": 0,
  389. "_sizeMode": 0,
  390. "_fillType": 0,
  391. "_fillCenter": {
  392. "__type__": "cc.Vec2",
  393. "x": 0,
  394. "y": 0
  395. },
  396. "_fillStart": 0,
  397. "_fillRange": 0,
  398. "_isTrimmedMode": true,
  399. "_atlas": null,
  400. "_id": ""
  401. },
  402. {
  403. "__type__": "cc.PrefabInfo",
  404. "root": {
  405. "__id__": 1
  406. },
  407. "asset": {
  408. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  409. },
  410. "fileId": "2aQ1crcuJEkbeK0C9zeoGn",
  411. "sync": false
  412. },
  413. {
  414. "__type__": "cc.Node",
  415. "_name": "Container1",
  416. "_objFlags": 0,
  417. "_parent": {
  418. "__id__": 1
  419. },
  420. "_children": [
  421. {
  422. "__id__": 13
  423. },
  424. {
  425. "__id__": 26
  426. },
  427. {
  428. "__id__": 39
  429. },
  430. {
  431. "__id__": 52
  432. },
  433. {
  434. "__id__": 65
  435. }
  436. ],
  437. "_active": true,
  438. "_level": 5,
  439. "_components": [
  440. {
  441. "__id__": 78
  442. }
  443. ],
  444. "_prefab": {
  445. "__id__": 79
  446. },
  447. "_opacity": 255,
  448. "_color": {
  449. "__type__": "cc.Color",
  450. "r": 228,
  451. "g": 244,
  452. "b": 249,
  453. "a": 255
  454. },
  455. "_contentSize": {
  456. "__type__": "cc.Size",
  457. "width": 330,
  458. "height": 200
  459. },
  460. "_anchorPoint": {
  461. "__type__": "cc.Vec2",
  462. "x": 0.5,
  463. "y": 1
  464. },
  465. "_position": {
  466. "__type__": "cc.Vec3",
  467. "x": 0,
  468. "y": 149.861,
  469. "z": 0
  470. },
  471. "_scale": {
  472. "__type__": "cc.Vec3",
  473. "x": 1,
  474. "y": 1,
  475. "z": 1
  476. },
  477. "_eulerAngles": {
  478. "__type__": "cc.Vec3",
  479. "x": 0,
  480. "y": 0,
  481. "z": 0
  482. },
  483. "_skewX": 0,
  484. "_skewY": 0,
  485. "_is3DNode": false,
  486. "groupIndex": 0,
  487. "_id": ""
  488. },
  489. {
  490. "__type__": "cc.Node",
  491. "_name": "name",
  492. "_objFlags": 0,
  493. "_parent": {
  494. "__id__": 12
  495. },
  496. "_children": [
  497. {
  498. "__id__": 14
  499. },
  500. {
  501. "__id__": 17
  502. },
  503. {
  504. "__id__": 21
  505. }
  506. ],
  507. "_active": true,
  508. "_level": 6,
  509. "_components": [],
  510. "_prefab": {
  511. "__id__": 25
  512. },
  513. "_opacity": 255,
  514. "_color": {
  515. "__type__": "cc.Color",
  516. "r": 255,
  517. "g": 255,
  518. "b": 255,
  519. "a": 255
  520. },
  521. "_contentSize": {
  522. "__type__": "cc.Size",
  523. "width": 0,
  524. "height": 0
  525. },
  526. "_anchorPoint": {
  527. "__type__": "cc.Vec2",
  528. "x": 0.5,
  529. "y": 0.5
  530. },
  531. "_position": {
  532. "__type__": "cc.Vec3",
  533. "x": -10.642,
  534. "y": -23,
  535. "z": 0
  536. },
  537. "_scale": {
  538. "__type__": "cc.Vec3",
  539. "x": 1,
  540. "y": 1,
  541. "z": 1
  542. },
  543. "_eulerAngles": {
  544. "__type__": "cc.Vec3",
  545. "x": 0,
  546. "y": 0,
  547. "z": 0
  548. },
  549. "_skewX": 0,
  550. "_skewY": 0,
  551. "_is3DNode": false,
  552. "groupIndex": 0,
  553. "_id": ""
  554. },
  555. {
  556. "__type__": "cc.Node",
  557. "_name": "CustomInfoBg",
  558. "_objFlags": 0,
  559. "_parent": {
  560. "__id__": 13
  561. },
  562. "_children": [],
  563. "_active": true,
  564. "_level": 7,
  565. "_components": [
  566. {
  567. "__id__": 15
  568. }
  569. ],
  570. "_prefab": {
  571. "__id__": 16
  572. },
  573. "_opacity": 255,
  574. "_color": {
  575. "__type__": "cc.Color",
  576. "r": 255,
  577. "g": 255,
  578. "b": 255,
  579. "a": 255
  580. },
  581. "_contentSize": {
  582. "__type__": "cc.Size",
  583. "width": 320,
  584. "height": 40
  585. },
  586. "_anchorPoint": {
  587. "__type__": "cc.Vec2",
  588. "x": 0.5,
  589. "y": 0.5
  590. },
  591. "_position": {
  592. "__type__": "cc.Vec3",
  593. "x": 4.74,
  594. "y": 0,
  595. "z": 0
  596. },
  597. "_scale": {
  598. "__type__": "cc.Vec3",
  599. "x": 1,
  600. "y": 1,
  601. "z": 1
  602. },
  603. "_eulerAngles": {
  604. "__type__": "cc.Vec3",
  605. "x": 0,
  606. "y": 0,
  607. "z": 0
  608. },
  609. "_skewX": 0,
  610. "_skewY": 0,
  611. "_is3DNode": false,
  612. "groupIndex": 0,
  613. "_id": ""
  614. },
  615. {
  616. "__type__": "cc.Sprite",
  617. "_name": "",
  618. "_objFlags": 0,
  619. "node": {
  620. "__id__": 14
  621. },
  622. "_enabled": true,
  623. "_materials": [
  624. {
  625. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  626. }
  627. ],
  628. "_srcBlendFactor": 770,
  629. "_dstBlendFactor": 771,
  630. "_spriteFrame": {
  631. "__uuid__": "df2b924d-1281-46c6-a527-4fe73c3be940"
  632. },
  633. "_type": 1,
  634. "_sizeMode": 0,
  635. "_fillType": 0,
  636. "_fillCenter": {
  637. "__type__": "cc.Vec2",
  638. "x": 0,
  639. "y": 0
  640. },
  641. "_fillStart": 0,
  642. "_fillRange": 0,
  643. "_isTrimmedMode": true,
  644. "_atlas": null,
  645. "_id": ""
  646. },
  647. {
  648. "__type__": "cc.PrefabInfo",
  649. "root": {
  650. "__id__": 1
  651. },
  652. "asset": {
  653. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  654. },
  655. "fileId": "7eFHkrkt9E7aL9YQ0rjFkh",
  656. "sync": false
  657. },
  658. {
  659. "__type__": "cc.Node",
  660. "_name": "textN",
  661. "_objFlags": 0,
  662. "_parent": {
  663. "__id__": 13
  664. },
  665. "_children": [],
  666. "_active": true,
  667. "_level": 7,
  668. "_components": [
  669. {
  670. "__id__": 18
  671. },
  672. {
  673. "__id__": 19
  674. }
  675. ],
  676. "_prefab": {
  677. "__id__": 20
  678. },
  679. "_opacity": 255,
  680. "_color": {
  681. "__type__": "cc.Color",
  682. "r": 171,
  683. "g": 97,
  684. "b": 52,
  685. "a": 255
  686. },
  687. "_contentSize": {
  688. "__type__": "cc.Size",
  689. "width": 74.49,
  690. "height": 52
  691. },
  692. "_anchorPoint": {
  693. "__type__": "cc.Vec2",
  694. "x": 0.5,
  695. "y": 0.5
  696. },
  697. "_position": {
  698. "__type__": "cc.Vec3",
  699. "x": -119.145,
  700. "y": 0,
  701. "z": 0
  702. },
  703. "_scale": {
  704. "__type__": "cc.Vec3",
  705. "x": 0.644,
  706. "y": 0.644,
  707. "z": 0.644
  708. },
  709. "_eulerAngles": {
  710. "__type__": "cc.Vec3",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0
  714. },
  715. "_skewX": 0,
  716. "_skewY": 0,
  717. "_is3DNode": false,
  718. "groupIndex": 0,
  719. "_id": ""
  720. },
  721. {
  722. "__type__": "cc.Label",
  723. "_name": "",
  724. "_objFlags": 0,
  725. "node": {
  726. "__id__": 17
  727. },
  728. "_enabled": true,
  729. "_materials": [
  730. {
  731. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  732. }
  733. ],
  734. "_useOriginalSize": false,
  735. "_string": "名字:",
  736. "_N$string": "名字:",
  737. "_fontSize": 32,
  738. "_lineHeight": 40,
  739. "_enableWrapText": true,
  740. "_N$file": null,
  741. "_isSystemFontUsed": true,
  742. "_spacingX": 0,
  743. "_batchAsBitmap": false,
  744. "_N$horizontalAlign": 1,
  745. "_N$verticalAlign": 1,
  746. "_N$fontFamily": "Arial",
  747. "_N$overflow": 0,
  748. "_N$cacheMode": 0,
  749. "_id": ""
  750. },
  751. {
  752. "__type__": "cc.LabelOutline",
  753. "_name": "",
  754. "_objFlags": 0,
  755. "node": {
  756. "__id__": 17
  757. },
  758. "_enabled": true,
  759. "_color": {
  760. "__type__": "cc.Color",
  761. "r": 171,
  762. "g": 97,
  763. "b": 52,
  764. "a": 255
  765. },
  766. "_width": 0.8,
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.PrefabInfo",
  771. "root": {
  772. "__id__": 1
  773. },
  774. "asset": {
  775. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  776. },
  777. "fileId": "f3FIwqQXRLH7YSX7lWbBGI",
  778. "sync": false
  779. },
  780. {
  781. "__type__": "cc.Node",
  782. "_name": "textN_value",
  783. "_objFlags": 0,
  784. "_parent": {
  785. "__id__": 13
  786. },
  787. "_children": [],
  788. "_active": true,
  789. "_level": 7,
  790. "_components": [
  791. {
  792. "__id__": 22
  793. },
  794. {
  795. "__id__": 23
  796. }
  797. ],
  798. "_prefab": {
  799. "__id__": 24
  800. },
  801. "_opacity": 255,
  802. "_color": {
  803. "__type__": "cc.Color",
  804. "r": 171,
  805. "g": 97,
  806. "b": 52,
  807. "a": 255
  808. },
  809. "_contentSize": {
  810. "__type__": "cc.Size",
  811. "width": 61.6,
  812. "height": 39.4
  813. },
  814. "_anchorPoint": {
  815. "__type__": "cc.Vec2",
  816. "x": 0,
  817. "y": 0.5
  818. },
  819. "_position": {
  820. "__type__": "cc.Vec3",
  821. "x": -40,
  822. "y": 0,
  823. "z": 0
  824. },
  825. "_scale": {
  826. "__type__": "cc.Vec3",
  827. "x": 0.644,
  828. "y": 0.644,
  829. "z": 0.644
  830. },
  831. "_eulerAngles": {
  832. "__type__": "cc.Vec3",
  833. "x": 0,
  834. "y": 0,
  835. "z": 0
  836. },
  837. "_skewX": 0,
  838. "_skewY": 0,
  839. "_is3DNode": false,
  840. "groupIndex": 0,
  841. "_id": ""
  842. },
  843. {
  844. "__type__": "cc.Label",
  845. "_name": "",
  846. "_objFlags": 0,
  847. "node": {
  848. "__id__": 21
  849. },
  850. "_enabled": true,
  851. "_materials": [
  852. {
  853. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  854. }
  855. ],
  856. "_useOriginalSize": false,
  857. "_string": "白菜",
  858. "_N$string": "白菜",
  859. "_fontSize": 30,
  860. "_lineHeight": 30,
  861. "_enableWrapText": true,
  862. "_N$file": null,
  863. "_isSystemFontUsed": true,
  864. "_spacingX": 0,
  865. "_batchAsBitmap": false,
  866. "_N$horizontalAlign": 1,
  867. "_N$verticalAlign": 1,
  868. "_N$fontFamily": "Arial",
  869. "_N$overflow": 0,
  870. "_N$cacheMode": 0,
  871. "_id": ""
  872. },
  873. {
  874. "__type__": "cc.LabelOutline",
  875. "_name": "",
  876. "_objFlags": 0,
  877. "node": {
  878. "__id__": 21
  879. },
  880. "_enabled": true,
  881. "_color": {
  882. "__type__": "cc.Color",
  883. "r": 171,
  884. "g": 97,
  885. "b": 52,
  886. "a": 255
  887. },
  888. "_width": 0.8,
  889. "_id": ""
  890. },
  891. {
  892. "__type__": "cc.PrefabInfo",
  893. "root": {
  894. "__id__": 1
  895. },
  896. "asset": {
  897. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  898. },
  899. "fileId": "e7RyHpTrNNapHW66IxFBvB",
  900. "sync": false
  901. },
  902. {
  903. "__type__": "cc.PrefabInfo",
  904. "root": {
  905. "__id__": 1
  906. },
  907. "asset": {
  908. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  909. },
  910. "fileId": "83CbHvkI5HuqdNQQ0kwjN9",
  911. "sync": false
  912. },
  913. {
  914. "__type__": "cc.Node",
  915. "_name": "1",
  916. "_objFlags": 0,
  917. "_parent": {
  918. "__id__": 12
  919. },
  920. "_children": [
  921. {
  922. "__id__": 27
  923. },
  924. {
  925. "__id__": 30
  926. },
  927. {
  928. "__id__": 34
  929. }
  930. ],
  931. "_active": true,
  932. "_level": 6,
  933. "_components": [],
  934. "_prefab": {
  935. "__id__": 38
  936. },
  937. "_opacity": 255,
  938. "_color": {
  939. "__type__": "cc.Color",
  940. "r": 255,
  941. "g": 255,
  942. "b": 255,
  943. "a": 255
  944. },
  945. "_contentSize": {
  946. "__type__": "cc.Size",
  947. "width": 0,
  948. "height": 0
  949. },
  950. "_anchorPoint": {
  951. "__type__": "cc.Vec2",
  952. "x": 0.5,
  953. "y": 0.5
  954. },
  955. "_position": {
  956. "__type__": "cc.Vec3",
  957. "x": -10.642,
  958. "y": -68,
  959. "z": 0
  960. },
  961. "_scale": {
  962. "__type__": "cc.Vec3",
  963. "x": 1,
  964. "y": 1,
  965. "z": 1
  966. },
  967. "_eulerAngles": {
  968. "__type__": "cc.Vec3",
  969. "x": 0,
  970. "y": 0,
  971. "z": 0
  972. },
  973. "_skewX": 0,
  974. "_skewY": 0,
  975. "_is3DNode": false,
  976. "groupIndex": 0,
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.Node",
  981. "_name": "CustomInfoBg",
  982. "_objFlags": 0,
  983. "_parent": {
  984. "__id__": 26
  985. },
  986. "_children": [],
  987. "_active": true,
  988. "_level": 7,
  989. "_components": [
  990. {
  991. "__id__": 28
  992. }
  993. ],
  994. "_prefab": {
  995. "__id__": 29
  996. },
  997. "_opacity": 255,
  998. "_color": {
  999. "__type__": "cc.Color",
  1000. "r": 255,
  1001. "g": 255,
  1002. "b": 255,
  1003. "a": 255
  1004. },
  1005. "_contentSize": {
  1006. "__type__": "cc.Size",
  1007. "width": 320,
  1008. "height": 40
  1009. },
  1010. "_anchorPoint": {
  1011. "__type__": "cc.Vec2",
  1012. "x": 0.5,
  1013. "y": 0.5
  1014. },
  1015. "_position": {
  1016. "__type__": "cc.Vec3",
  1017. "x": 4.74,
  1018. "y": 0,
  1019. "z": 0
  1020. },
  1021. "_scale": {
  1022. "__type__": "cc.Vec3",
  1023. "x": 1,
  1024. "y": 1,
  1025. "z": 1
  1026. },
  1027. "_eulerAngles": {
  1028. "__type__": "cc.Vec3",
  1029. "x": 0,
  1030. "y": 0,
  1031. "z": 0
  1032. },
  1033. "_skewX": 0,
  1034. "_skewY": 0,
  1035. "_is3DNode": false,
  1036. "groupIndex": 0,
  1037. "_id": ""
  1038. },
  1039. {
  1040. "__type__": "cc.Sprite",
  1041. "_name": "",
  1042. "_objFlags": 0,
  1043. "node": {
  1044. "__id__": 27
  1045. },
  1046. "_enabled": true,
  1047. "_materials": [
  1048. {
  1049. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1050. }
  1051. ],
  1052. "_srcBlendFactor": 770,
  1053. "_dstBlendFactor": 771,
  1054. "_spriteFrame": {
  1055. "__uuid__": "df2b924d-1281-46c6-a527-4fe73c3be940"
  1056. },
  1057. "_type": 1,
  1058. "_sizeMode": 0,
  1059. "_fillType": 0,
  1060. "_fillCenter": {
  1061. "__type__": "cc.Vec2",
  1062. "x": 0,
  1063. "y": 0
  1064. },
  1065. "_fillStart": 0,
  1066. "_fillRange": 0,
  1067. "_isTrimmedMode": true,
  1068. "_atlas": null,
  1069. "_id": ""
  1070. },
  1071. {
  1072. "__type__": "cc.PrefabInfo",
  1073. "root": {
  1074. "__id__": 1
  1075. },
  1076. "asset": {
  1077. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1078. },
  1079. "fileId": "3f5QHa5vFKta67X2LGlk4y",
  1080. "sync": false
  1081. },
  1082. {
  1083. "__type__": "cc.Node",
  1084. "_name": "text1",
  1085. "_objFlags": 0,
  1086. "_parent": {
  1087. "__id__": 26
  1088. },
  1089. "_children": [],
  1090. "_active": true,
  1091. "_level": 7,
  1092. "_components": [
  1093. {
  1094. "__id__": 31
  1095. },
  1096. {
  1097. "__id__": 32
  1098. }
  1099. ],
  1100. "_prefab": {
  1101. "__id__": 33
  1102. },
  1103. "_opacity": 255,
  1104. "_color": {
  1105. "__type__": "cc.Color",
  1106. "r": 171,
  1107. "g": 97,
  1108. "b": 52,
  1109. "a": 255
  1110. },
  1111. "_contentSize": {
  1112. "__type__": "cc.Size",
  1113. "width": 74.49,
  1114. "height": 52
  1115. },
  1116. "_anchorPoint": {
  1117. "__type__": "cc.Vec2",
  1118. "x": 0.5,
  1119. "y": 0.5
  1120. },
  1121. "_position": {
  1122. "__type__": "cc.Vec3",
  1123. "x": -119.145,
  1124. "y": 0,
  1125. "z": 0
  1126. },
  1127. "_scale": {
  1128. "__type__": "cc.Vec3",
  1129. "x": 0.644,
  1130. "y": 0.644,
  1131. "z": 0.644
  1132. },
  1133. "_eulerAngles": {
  1134. "__type__": "cc.Vec3",
  1135. "x": 0,
  1136. "y": 0,
  1137. "z": 0
  1138. },
  1139. "_skewX": 0,
  1140. "_skewY": 0,
  1141. "_is3DNode": false,
  1142. "groupIndex": 0,
  1143. "_id": ""
  1144. },
  1145. {
  1146. "__type__": "cc.Label",
  1147. "_name": "",
  1148. "_objFlags": 0,
  1149. "node": {
  1150. "__id__": 30
  1151. },
  1152. "_enabled": true,
  1153. "_materials": [
  1154. {
  1155. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1156. }
  1157. ],
  1158. "_useOriginalSize": false,
  1159. "_string": "单价:",
  1160. "_N$string": "单价:",
  1161. "_fontSize": 32,
  1162. "_lineHeight": 40,
  1163. "_enableWrapText": true,
  1164. "_N$file": null,
  1165. "_isSystemFontUsed": true,
  1166. "_spacingX": 0,
  1167. "_batchAsBitmap": false,
  1168. "_N$horizontalAlign": 1,
  1169. "_N$verticalAlign": 1,
  1170. "_N$fontFamily": "Arial",
  1171. "_N$overflow": 0,
  1172. "_N$cacheMode": 0,
  1173. "_id": ""
  1174. },
  1175. {
  1176. "__type__": "cc.LabelOutline",
  1177. "_name": "",
  1178. "_objFlags": 0,
  1179. "node": {
  1180. "__id__": 30
  1181. },
  1182. "_enabled": true,
  1183. "_color": {
  1184. "__type__": "cc.Color",
  1185. "r": 171,
  1186. "g": 97,
  1187. "b": 52,
  1188. "a": 255
  1189. },
  1190. "_width": 0.8,
  1191. "_id": ""
  1192. },
  1193. {
  1194. "__type__": "cc.PrefabInfo",
  1195. "root": {
  1196. "__id__": 1
  1197. },
  1198. "asset": {
  1199. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1200. },
  1201. "fileId": "fasZDpV3dEtImP44Mhw8PH",
  1202. "sync": false
  1203. },
  1204. {
  1205. "__type__": "cc.Node",
  1206. "_name": "text1_value",
  1207. "_objFlags": 0,
  1208. "_parent": {
  1209. "__id__": 26
  1210. },
  1211. "_children": [],
  1212. "_active": true,
  1213. "_level": 7,
  1214. "_components": [
  1215. {
  1216. "__id__": 35
  1217. },
  1218. {
  1219. "__id__": 36
  1220. }
  1221. ],
  1222. "_prefab": {
  1223. "__id__": 37
  1224. },
  1225. "_opacity": 255,
  1226. "_color": {
  1227. "__type__": "cc.Color",
  1228. "r": 171,
  1229. "g": 97,
  1230. "b": 52,
  1231. "a": 255
  1232. },
  1233. "_contentSize": {
  1234. "__type__": "cc.Size",
  1235. "width": 91.66999999999999,
  1236. "height": 39.4
  1237. },
  1238. "_anchorPoint": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0,
  1241. "y": 0.5
  1242. },
  1243. "_position": {
  1244. "__type__": "cc.Vec3",
  1245. "x": -40,
  1246. "y": 0,
  1247. "z": 0
  1248. },
  1249. "_scale": {
  1250. "__type__": "cc.Vec3",
  1251. "x": 0.644,
  1252. "y": 0.644,
  1253. "z": 0.644
  1254. },
  1255. "_eulerAngles": {
  1256. "__type__": "cc.Vec3",
  1257. "x": 0,
  1258. "y": 0,
  1259. "z": 0
  1260. },
  1261. "_skewX": 0,
  1262. "_skewY": 0,
  1263. "_is3DNode": false,
  1264. "groupIndex": 0,
  1265. "_id": ""
  1266. },
  1267. {
  1268. "__type__": "cc.Label",
  1269. "_name": "",
  1270. "_objFlags": 0,
  1271. "node": {
  1272. "__id__": 34
  1273. },
  1274. "_enabled": true,
  1275. "_materials": [
  1276. {
  1277. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1278. }
  1279. ],
  1280. "_useOriginalSize": false,
  1281. "_string": "399cnt",
  1282. "_N$string": "399cnt",
  1283. "_fontSize": 30,
  1284. "_lineHeight": 30,
  1285. "_enableWrapText": true,
  1286. "_N$file": null,
  1287. "_isSystemFontUsed": true,
  1288. "_spacingX": 0,
  1289. "_batchAsBitmap": false,
  1290. "_N$horizontalAlign": 1,
  1291. "_N$verticalAlign": 1,
  1292. "_N$fontFamily": "Arial",
  1293. "_N$overflow": 0,
  1294. "_N$cacheMode": 0,
  1295. "_id": ""
  1296. },
  1297. {
  1298. "__type__": "cc.LabelOutline",
  1299. "_name": "",
  1300. "_objFlags": 0,
  1301. "node": {
  1302. "__id__": 34
  1303. },
  1304. "_enabled": true,
  1305. "_color": {
  1306. "__type__": "cc.Color",
  1307. "r": 171,
  1308. "g": 97,
  1309. "b": 52,
  1310. "a": 255
  1311. },
  1312. "_width": 0.8,
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.PrefabInfo",
  1317. "root": {
  1318. "__id__": 1
  1319. },
  1320. "asset": {
  1321. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1322. },
  1323. "fileId": "671fRurClGiJr7ROvz4QSZ",
  1324. "sync": false
  1325. },
  1326. {
  1327. "__type__": "cc.PrefabInfo",
  1328. "root": {
  1329. "__id__": 1
  1330. },
  1331. "asset": {
  1332. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1333. },
  1334. "fileId": "9ck2/njBFAW7t6uGd/w+gt",
  1335. "sync": false
  1336. },
  1337. {
  1338. "__type__": "cc.Node",
  1339. "_name": "2",
  1340. "_objFlags": 0,
  1341. "_parent": {
  1342. "__id__": 12
  1343. },
  1344. "_children": [
  1345. {
  1346. "__id__": 40
  1347. },
  1348. {
  1349. "__id__": 43
  1350. },
  1351. {
  1352. "__id__": 47
  1353. }
  1354. ],
  1355. "_active": true,
  1356. "_level": 6,
  1357. "_components": [],
  1358. "_prefab": {
  1359. "__id__": 51
  1360. },
  1361. "_opacity": 255,
  1362. "_color": {
  1363. "__type__": "cc.Color",
  1364. "r": 255,
  1365. "g": 255,
  1366. "b": 255,
  1367. "a": 255
  1368. },
  1369. "_contentSize": {
  1370. "__type__": "cc.Size",
  1371. "width": 0,
  1372. "height": 0
  1373. },
  1374. "_anchorPoint": {
  1375. "__type__": "cc.Vec2",
  1376. "x": 0.5,
  1377. "y": 0.5
  1378. },
  1379. "_position": {
  1380. "__type__": "cc.Vec3",
  1381. "x": -10.642,
  1382. "y": -113,
  1383. "z": 0
  1384. },
  1385. "_scale": {
  1386. "__type__": "cc.Vec3",
  1387. "x": 1,
  1388. "y": 1,
  1389. "z": 1
  1390. },
  1391. "_eulerAngles": {
  1392. "__type__": "cc.Vec3",
  1393. "x": 0,
  1394. "y": 0,
  1395. "z": 0
  1396. },
  1397. "_skewX": 0,
  1398. "_skewY": 0,
  1399. "_is3DNode": false,
  1400. "groupIndex": 0,
  1401. "_id": ""
  1402. },
  1403. {
  1404. "__type__": "cc.Node",
  1405. "_name": "CustomInfoBg",
  1406. "_objFlags": 0,
  1407. "_parent": {
  1408. "__id__": 39
  1409. },
  1410. "_children": [],
  1411. "_active": true,
  1412. "_level": 7,
  1413. "_components": [
  1414. {
  1415. "__id__": 41
  1416. }
  1417. ],
  1418. "_prefab": {
  1419. "__id__": 42
  1420. },
  1421. "_opacity": 255,
  1422. "_color": {
  1423. "__type__": "cc.Color",
  1424. "r": 255,
  1425. "g": 255,
  1426. "b": 255,
  1427. "a": 255
  1428. },
  1429. "_contentSize": {
  1430. "__type__": "cc.Size",
  1431. "width": 320,
  1432. "height": 40
  1433. },
  1434. "_anchorPoint": {
  1435. "__type__": "cc.Vec2",
  1436. "x": 0.5,
  1437. "y": 0.5
  1438. },
  1439. "_position": {
  1440. "__type__": "cc.Vec3",
  1441. "x": 4.74,
  1442. "y": 0,
  1443. "z": 0
  1444. },
  1445. "_scale": {
  1446. "__type__": "cc.Vec3",
  1447. "x": 1,
  1448. "y": 1,
  1449. "z": 1
  1450. },
  1451. "_eulerAngles": {
  1452. "__type__": "cc.Vec3",
  1453. "x": 0,
  1454. "y": 0,
  1455. "z": 0
  1456. },
  1457. "_skewX": 0,
  1458. "_skewY": 0,
  1459. "_is3DNode": false,
  1460. "groupIndex": 0,
  1461. "_id": ""
  1462. },
  1463. {
  1464. "__type__": "cc.Sprite",
  1465. "_name": "",
  1466. "_objFlags": 0,
  1467. "node": {
  1468. "__id__": 40
  1469. },
  1470. "_enabled": true,
  1471. "_materials": [
  1472. {
  1473. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1474. }
  1475. ],
  1476. "_srcBlendFactor": 770,
  1477. "_dstBlendFactor": 771,
  1478. "_spriteFrame": {
  1479. "__uuid__": "df2b924d-1281-46c6-a527-4fe73c3be940"
  1480. },
  1481. "_type": 1,
  1482. "_sizeMode": 0,
  1483. "_fillType": 0,
  1484. "_fillCenter": {
  1485. "__type__": "cc.Vec2",
  1486. "x": 0,
  1487. "y": 0
  1488. },
  1489. "_fillStart": 0,
  1490. "_fillRange": 0,
  1491. "_isTrimmedMode": true,
  1492. "_atlas": null,
  1493. "_id": ""
  1494. },
  1495. {
  1496. "__type__": "cc.PrefabInfo",
  1497. "root": {
  1498. "__id__": 1
  1499. },
  1500. "asset": {
  1501. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1502. },
  1503. "fileId": "9dEZgeJfhGm6yWI3veY7ZB",
  1504. "sync": false
  1505. },
  1506. {
  1507. "__type__": "cc.Node",
  1508. "_name": "text2",
  1509. "_objFlags": 0,
  1510. "_parent": {
  1511. "__id__": 39
  1512. },
  1513. "_children": [],
  1514. "_active": true,
  1515. "_level": 7,
  1516. "_components": [
  1517. {
  1518. "__id__": 44
  1519. },
  1520. {
  1521. "__id__": 45
  1522. }
  1523. ],
  1524. "_prefab": {
  1525. "__id__": 46
  1526. },
  1527. "_opacity": 255,
  1528. "_color": {
  1529. "__type__": "cc.Color",
  1530. "r": 171,
  1531. "g": 97,
  1532. "b": 52,
  1533. "a": 255
  1534. },
  1535. "_contentSize": {
  1536. "__type__": "cc.Size",
  1537. "width": 129.6,
  1538. "height": 52
  1539. },
  1540. "_anchorPoint": {
  1541. "__type__": "cc.Vec2",
  1542. "x": 0,
  1543. "y": 0.5
  1544. },
  1545. "_position": {
  1546. "__type__": "cc.Vec3",
  1547. "x": -141.961,
  1548. "y": 0,
  1549. "z": 0
  1550. },
  1551. "_scale": {
  1552. "__type__": "cc.Vec3",
  1553. "x": 0.644,
  1554. "y": 0.644,
  1555. "z": 0.644
  1556. },
  1557. "_eulerAngles": {
  1558. "__type__": "cc.Vec3",
  1559. "x": 0,
  1560. "y": 0,
  1561. "z": 0
  1562. },
  1563. "_skewX": 0,
  1564. "_skewY": 0,
  1565. "_is3DNode": false,
  1566. "groupIndex": 0,
  1567. "_id": ""
  1568. },
  1569. {
  1570. "__type__": "cc.Label",
  1571. "_name": "",
  1572. "_objFlags": 0,
  1573. "node": {
  1574. "__id__": 43
  1575. },
  1576. "_enabled": true,
  1577. "_materials": [
  1578. {
  1579. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1580. }
  1581. ],
  1582. "_useOriginalSize": false,
  1583. "_string": "成熟期:",
  1584. "_N$string": "成熟期:",
  1585. "_fontSize": 32,
  1586. "_lineHeight": 40,
  1587. "_enableWrapText": true,
  1588. "_N$file": null,
  1589. "_isSystemFontUsed": true,
  1590. "_spacingX": 0,
  1591. "_batchAsBitmap": false,
  1592. "_N$horizontalAlign": 1,
  1593. "_N$verticalAlign": 1,
  1594. "_N$fontFamily": "Arial",
  1595. "_N$overflow": 0,
  1596. "_N$cacheMode": 0,
  1597. "_id": ""
  1598. },
  1599. {
  1600. "__type__": "cc.LabelOutline",
  1601. "_name": "",
  1602. "_objFlags": 0,
  1603. "node": {
  1604. "__id__": 43
  1605. },
  1606. "_enabled": true,
  1607. "_color": {
  1608. "__type__": "cc.Color",
  1609. "r": 171,
  1610. "g": 97,
  1611. "b": 52,
  1612. "a": 255
  1613. },
  1614. "_width": 0.8,
  1615. "_id": ""
  1616. },
  1617. {
  1618. "__type__": "cc.PrefabInfo",
  1619. "root": {
  1620. "__id__": 1
  1621. },
  1622. "asset": {
  1623. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1624. },
  1625. "fileId": "5cYqb1UkJBEqAhxx4ub/AJ",
  1626. "sync": false
  1627. },
  1628. {
  1629. "__type__": "cc.Node",
  1630. "_name": "text2_value",
  1631. "_objFlags": 0,
  1632. "_parent": {
  1633. "__id__": 39
  1634. },
  1635. "_children": [],
  1636. "_active": true,
  1637. "_level": 7,
  1638. "_components": [
  1639. {
  1640. "__id__": 48
  1641. },
  1642. {
  1643. "__id__": 49
  1644. }
  1645. ],
  1646. "_prefab": {
  1647. "__id__": 50
  1648. },
  1649. "_opacity": 255,
  1650. "_color": {
  1651. "__type__": "cc.Color",
  1652. "r": 171,
  1653. "g": 97,
  1654. "b": 52,
  1655. "a": 255
  1656. },
  1657. "_contentSize": {
  1658. "__type__": "cc.Size",
  1659. "width": 48.28,
  1660. "height": 39.4
  1661. },
  1662. "_anchorPoint": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0,
  1665. "y": 0.5
  1666. },
  1667. "_position": {
  1668. "__type__": "cc.Vec3",
  1669. "x": -40,
  1670. "y": 0,
  1671. "z": 0
  1672. },
  1673. "_scale": {
  1674. "__type__": "cc.Vec3",
  1675. "x": 0.644,
  1676. "y": 0.644,
  1677. "z": 0.644
  1678. },
  1679. "_eulerAngles": {
  1680. "__type__": "cc.Vec3",
  1681. "x": 0,
  1682. "y": 0,
  1683. "z": 0
  1684. },
  1685. "_skewX": 0,
  1686. "_skewY": 0,
  1687. "_is3DNode": false,
  1688. "groupIndex": 0,
  1689. "_id": ""
  1690. },
  1691. {
  1692. "__type__": "cc.Label",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "node": {
  1696. "__id__": 47
  1697. },
  1698. "_enabled": true,
  1699. "_materials": [
  1700. {
  1701. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1702. }
  1703. ],
  1704. "_useOriginalSize": false,
  1705. "_string": "1天",
  1706. "_N$string": "1天",
  1707. "_fontSize": 30,
  1708. "_lineHeight": 30,
  1709. "_enableWrapText": true,
  1710. "_N$file": null,
  1711. "_isSystemFontUsed": true,
  1712. "_spacingX": 0,
  1713. "_batchAsBitmap": false,
  1714. "_N$horizontalAlign": 1,
  1715. "_N$verticalAlign": 1,
  1716. "_N$fontFamily": "Arial",
  1717. "_N$overflow": 0,
  1718. "_N$cacheMode": 0,
  1719. "_id": ""
  1720. },
  1721. {
  1722. "__type__": "cc.LabelOutline",
  1723. "_name": "",
  1724. "_objFlags": 0,
  1725. "node": {
  1726. "__id__": 47
  1727. },
  1728. "_enabled": true,
  1729. "_color": {
  1730. "__type__": "cc.Color",
  1731. "r": 171,
  1732. "g": 97,
  1733. "b": 52,
  1734. "a": 255
  1735. },
  1736. "_width": 0.8,
  1737. "_id": ""
  1738. },
  1739. {
  1740. "__type__": "cc.PrefabInfo",
  1741. "root": {
  1742. "__id__": 1
  1743. },
  1744. "asset": {
  1745. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1746. },
  1747. "fileId": "1bh6kRFNFNjL0Wq8XqcNqc",
  1748. "sync": false
  1749. },
  1750. {
  1751. "__type__": "cc.PrefabInfo",
  1752. "root": {
  1753. "__id__": 1
  1754. },
  1755. "asset": {
  1756. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1757. },
  1758. "fileId": "e3d/Rqwr9Ai59ChKvBqFhy",
  1759. "sync": false
  1760. },
  1761. {
  1762. "__type__": "cc.Node",
  1763. "_name": "3",
  1764. "_objFlags": 0,
  1765. "_parent": {
  1766. "__id__": 12
  1767. },
  1768. "_children": [
  1769. {
  1770. "__id__": 53
  1771. },
  1772. {
  1773. "__id__": 56
  1774. },
  1775. {
  1776. "__id__": 60
  1777. }
  1778. ],
  1779. "_active": true,
  1780. "_level": 6,
  1781. "_components": [],
  1782. "_prefab": {
  1783. "__id__": 64
  1784. },
  1785. "_opacity": 255,
  1786. "_color": {
  1787. "__type__": "cc.Color",
  1788. "r": 255,
  1789. "g": 255,
  1790. "b": 255,
  1791. "a": 255
  1792. },
  1793. "_contentSize": {
  1794. "__type__": "cc.Size",
  1795. "width": 0,
  1796. "height": 0
  1797. },
  1798. "_anchorPoint": {
  1799. "__type__": "cc.Vec2",
  1800. "x": 0.5,
  1801. "y": 0.5
  1802. },
  1803. "_position": {
  1804. "__type__": "cc.Vec3",
  1805. "x": -10.642,
  1806. "y": -158,
  1807. "z": 0
  1808. },
  1809. "_scale": {
  1810. "__type__": "cc.Vec3",
  1811. "x": 1,
  1812. "y": 1,
  1813. "z": 1
  1814. },
  1815. "_eulerAngles": {
  1816. "__type__": "cc.Vec3",
  1817. "x": 0,
  1818. "y": 0,
  1819. "z": 0
  1820. },
  1821. "_skewX": 0,
  1822. "_skewY": 0,
  1823. "_is3DNode": false,
  1824. "groupIndex": 0,
  1825. "_id": ""
  1826. },
  1827. {
  1828. "__type__": "cc.Node",
  1829. "_name": "CustomInfoBg",
  1830. "_objFlags": 0,
  1831. "_parent": {
  1832. "__id__": 52
  1833. },
  1834. "_children": [],
  1835. "_active": true,
  1836. "_level": 7,
  1837. "_components": [
  1838. {
  1839. "__id__": 54
  1840. }
  1841. ],
  1842. "_prefab": {
  1843. "__id__": 55
  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": 320,
  1856. "height": 40
  1857. },
  1858. "_anchorPoint": {
  1859. "__type__": "cc.Vec2",
  1860. "x": 0.5,
  1861. "y": 0.5
  1862. },
  1863. "_position": {
  1864. "__type__": "cc.Vec3",
  1865. "x": 4.74,
  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.Sprite",
  1889. "_name": "",
  1890. "_objFlags": 0,
  1891. "node": {
  1892. "__id__": 53
  1893. },
  1894. "_enabled": true,
  1895. "_materials": [
  1896. {
  1897. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1898. }
  1899. ],
  1900. "_srcBlendFactor": 770,
  1901. "_dstBlendFactor": 771,
  1902. "_spriteFrame": {
  1903. "__uuid__": "df2b924d-1281-46c6-a527-4fe73c3be940"
  1904. },
  1905. "_type": 1,
  1906. "_sizeMode": 0,
  1907. "_fillType": 0,
  1908. "_fillCenter": {
  1909. "__type__": "cc.Vec2",
  1910. "x": 0,
  1911. "y": 0
  1912. },
  1913. "_fillStart": 0,
  1914. "_fillRange": 0,
  1915. "_isTrimmedMode": true,
  1916. "_atlas": null,
  1917. "_id": ""
  1918. },
  1919. {
  1920. "__type__": "cc.PrefabInfo",
  1921. "root": {
  1922. "__id__": 1
  1923. },
  1924. "asset": {
  1925. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  1926. },
  1927. "fileId": "17fPGXzAJOrqIbr4LgG2oU",
  1928. "sync": false
  1929. },
  1930. {
  1931. "__type__": "cc.Node",
  1932. "_name": "text3",
  1933. "_objFlags": 0,
  1934. "_parent": {
  1935. "__id__": 52
  1936. },
  1937. "_children": [],
  1938. "_active": true,
  1939. "_level": 7,
  1940. "_components": [
  1941. {
  1942. "__id__": 57
  1943. },
  1944. {
  1945. "__id__": 58
  1946. }
  1947. ],
  1948. "_prefab": {
  1949. "__id__": 59
  1950. },
  1951. "_opacity": 255,
  1952. "_color": {
  1953. "__type__": "cc.Color",
  1954. "r": 171,
  1955. "g": 97,
  1956. "b": 52,
  1957. "a": 255
  1958. },
  1959. "_contentSize": {
  1960. "__type__": "cc.Size",
  1961. "width": 161.6,
  1962. "height": 52
  1963. },
  1964. "_anchorPoint": {
  1965. "__type__": "cc.Vec2",
  1966. "x": 0,
  1967. "y": 0.5
  1968. },
  1969. "_position": {
  1970. "__type__": "cc.Vec3",
  1971. "x": -141.961,
  1972. "y": 0,
  1973. "z": 0
  1974. },
  1975. "_scale": {
  1976. "__type__": "cc.Vec3",
  1977. "x": 0.644,
  1978. "y": 0.644,
  1979. "z": 0.644
  1980. },
  1981. "_eulerAngles": {
  1982. "__type__": "cc.Vec3",
  1983. "x": 0,
  1984. "y": 0,
  1985. "z": 0
  1986. },
  1987. "_skewX": 0,
  1988. "_skewY": 0,
  1989. "_is3DNode": false,
  1990. "groupIndex": 0,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.Label",
  1995. "_name": "",
  1996. "_objFlags": 0,
  1997. "node": {
  1998. "__id__": 56
  1999. },
  2000. "_enabled": true,
  2001. "_materials": [
  2002. {
  2003. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2004. }
  2005. ],
  2006. "_useOriginalSize": false,
  2007. "_string": "种植时间:",
  2008. "_N$string": "种植时间:",
  2009. "_fontSize": 32,
  2010. "_lineHeight": 40,
  2011. "_enableWrapText": true,
  2012. "_N$file": null,
  2013. "_isSystemFontUsed": true,
  2014. "_spacingX": 0,
  2015. "_batchAsBitmap": false,
  2016. "_N$horizontalAlign": 1,
  2017. "_N$verticalAlign": 1,
  2018. "_N$fontFamily": "Arial",
  2019. "_N$overflow": 0,
  2020. "_N$cacheMode": 0,
  2021. "_id": ""
  2022. },
  2023. {
  2024. "__type__": "cc.LabelOutline",
  2025. "_name": "",
  2026. "_objFlags": 0,
  2027. "node": {
  2028. "__id__": 56
  2029. },
  2030. "_enabled": true,
  2031. "_color": {
  2032. "__type__": "cc.Color",
  2033. "r": 171,
  2034. "g": 97,
  2035. "b": 52,
  2036. "a": 255
  2037. },
  2038. "_width": 0.8,
  2039. "_id": ""
  2040. },
  2041. {
  2042. "__type__": "cc.PrefabInfo",
  2043. "root": {
  2044. "__id__": 1
  2045. },
  2046. "asset": {
  2047. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2048. },
  2049. "fileId": "48ObXzJzJJM7dLtv9vIgNk",
  2050. "sync": false
  2051. },
  2052. {
  2053. "__type__": "cc.Node",
  2054. "_name": "text3_value",
  2055. "_objFlags": 0,
  2056. "_parent": {
  2057. "__id__": 52
  2058. },
  2059. "_children": [],
  2060. "_active": true,
  2061. "_level": 7,
  2062. "_components": [
  2063. {
  2064. "__id__": 61
  2065. },
  2066. {
  2067. "__id__": 62
  2068. }
  2069. ],
  2070. "_prefab": {
  2071. "__id__": 63
  2072. },
  2073. "_opacity": 255,
  2074. "_color": {
  2075. "__type__": "cc.Color",
  2076. "r": 171,
  2077. "g": 97,
  2078. "b": 52,
  2079. "a": 255
  2080. },
  2081. "_contentSize": {
  2082. "__type__": "cc.Size",
  2083. "width": 155.06,
  2084. "height": 39.4
  2085. },
  2086. "_anchorPoint": {
  2087. "__type__": "cc.Vec2",
  2088. "x": 0,
  2089. "y": 0.5
  2090. },
  2091. "_position": {
  2092. "__type__": "cc.Vec3",
  2093. "x": -20,
  2094. "y": 0,
  2095. "z": 0
  2096. },
  2097. "_scale": {
  2098. "__type__": "cc.Vec3",
  2099. "x": 0.644,
  2100. "y": 0.644,
  2101. "z": 0.644
  2102. },
  2103. "_eulerAngles": {
  2104. "__type__": "cc.Vec3",
  2105. "x": 0,
  2106. "y": 0,
  2107. "z": 0
  2108. },
  2109. "_skewX": 0,
  2110. "_skewY": 0,
  2111. "_is3DNode": false,
  2112. "groupIndex": 0,
  2113. "_id": ""
  2114. },
  2115. {
  2116. "__type__": "cc.Label",
  2117. "_name": "",
  2118. "_objFlags": 0,
  2119. "node": {
  2120. "__id__": 60
  2121. },
  2122. "_enabled": true,
  2123. "_materials": [
  2124. {
  2125. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2126. }
  2127. ],
  2128. "_useOriginalSize": false,
  2129. "_string": "2022-01-03",
  2130. "_N$string": "2022-01-03",
  2131. "_fontSize": 30,
  2132. "_lineHeight": 30,
  2133. "_enableWrapText": true,
  2134. "_N$file": null,
  2135. "_isSystemFontUsed": true,
  2136. "_spacingX": 0,
  2137. "_batchAsBitmap": false,
  2138. "_N$horizontalAlign": 1,
  2139. "_N$verticalAlign": 1,
  2140. "_N$fontFamily": "Arial",
  2141. "_N$overflow": 0,
  2142. "_N$cacheMode": 0,
  2143. "_id": ""
  2144. },
  2145. {
  2146. "__type__": "cc.LabelOutline",
  2147. "_name": "",
  2148. "_objFlags": 0,
  2149. "node": {
  2150. "__id__": 60
  2151. },
  2152. "_enabled": true,
  2153. "_color": {
  2154. "__type__": "cc.Color",
  2155. "r": 171,
  2156. "g": 97,
  2157. "b": 52,
  2158. "a": 255
  2159. },
  2160. "_width": 0.8,
  2161. "_id": ""
  2162. },
  2163. {
  2164. "__type__": "cc.PrefabInfo",
  2165. "root": {
  2166. "__id__": 1
  2167. },
  2168. "asset": {
  2169. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2170. },
  2171. "fileId": "17SFQGstlJ4Kl9L/c0FqXt",
  2172. "sync": false
  2173. },
  2174. {
  2175. "__type__": "cc.PrefabInfo",
  2176. "root": {
  2177. "__id__": 1
  2178. },
  2179. "asset": {
  2180. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2181. },
  2182. "fileId": "42xE9S/2tH6Z9nXPM6y2V4",
  2183. "sync": false
  2184. },
  2185. {
  2186. "__type__": "cc.Node",
  2187. "_name": "4",
  2188. "_objFlags": 0,
  2189. "_parent": {
  2190. "__id__": 12
  2191. },
  2192. "_children": [
  2193. {
  2194. "__id__": 66
  2195. },
  2196. {
  2197. "__id__": 69
  2198. },
  2199. {
  2200. "__id__": 73
  2201. }
  2202. ],
  2203. "_active": true,
  2204. "_level": 6,
  2205. "_components": [],
  2206. "_prefab": {
  2207. "__id__": 77
  2208. },
  2209. "_opacity": 255,
  2210. "_color": {
  2211. "__type__": "cc.Color",
  2212. "r": 255,
  2213. "g": 255,
  2214. "b": 255,
  2215. "a": 255
  2216. },
  2217. "_contentSize": {
  2218. "__type__": "cc.Size",
  2219. "width": 0,
  2220. "height": 0
  2221. },
  2222. "_anchorPoint": {
  2223. "__type__": "cc.Vec2",
  2224. "x": 0.5,
  2225. "y": 0.5
  2226. },
  2227. "_position": {
  2228. "__type__": "cc.Vec3",
  2229. "x": -10.642,
  2230. "y": -203,
  2231. "z": 0
  2232. },
  2233. "_scale": {
  2234. "__type__": "cc.Vec3",
  2235. "x": 1,
  2236. "y": 1,
  2237. "z": 1
  2238. },
  2239. "_eulerAngles": {
  2240. "__type__": "cc.Vec3",
  2241. "x": 0,
  2242. "y": 0,
  2243. "z": 0
  2244. },
  2245. "_skewX": 0,
  2246. "_skewY": 0,
  2247. "_is3DNode": false,
  2248. "groupIndex": 0,
  2249. "_id": ""
  2250. },
  2251. {
  2252. "__type__": "cc.Node",
  2253. "_name": "CustomInfoBg",
  2254. "_objFlags": 0,
  2255. "_parent": {
  2256. "__id__": 65
  2257. },
  2258. "_children": [],
  2259. "_active": true,
  2260. "_level": 7,
  2261. "_components": [
  2262. {
  2263. "__id__": 67
  2264. }
  2265. ],
  2266. "_prefab": {
  2267. "__id__": 68
  2268. },
  2269. "_opacity": 255,
  2270. "_color": {
  2271. "__type__": "cc.Color",
  2272. "r": 255,
  2273. "g": 255,
  2274. "b": 255,
  2275. "a": 255
  2276. },
  2277. "_contentSize": {
  2278. "__type__": "cc.Size",
  2279. "width": 320,
  2280. "height": 40
  2281. },
  2282. "_anchorPoint": {
  2283. "__type__": "cc.Vec2",
  2284. "x": 0.5,
  2285. "y": 0.5
  2286. },
  2287. "_position": {
  2288. "__type__": "cc.Vec3",
  2289. "x": 4.74,
  2290. "y": 0,
  2291. "z": 0
  2292. },
  2293. "_scale": {
  2294. "__type__": "cc.Vec3",
  2295. "x": 1,
  2296. "y": 1,
  2297. "z": 1
  2298. },
  2299. "_eulerAngles": {
  2300. "__type__": "cc.Vec3",
  2301. "x": 0,
  2302. "y": 0,
  2303. "z": 0
  2304. },
  2305. "_skewX": 0,
  2306. "_skewY": 0,
  2307. "_is3DNode": false,
  2308. "groupIndex": 0,
  2309. "_id": ""
  2310. },
  2311. {
  2312. "__type__": "cc.Sprite",
  2313. "_name": "",
  2314. "_objFlags": 0,
  2315. "node": {
  2316. "__id__": 66
  2317. },
  2318. "_enabled": true,
  2319. "_materials": [
  2320. {
  2321. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2322. }
  2323. ],
  2324. "_srcBlendFactor": 770,
  2325. "_dstBlendFactor": 771,
  2326. "_spriteFrame": {
  2327. "__uuid__": "df2b924d-1281-46c6-a527-4fe73c3be940"
  2328. },
  2329. "_type": 1,
  2330. "_sizeMode": 0,
  2331. "_fillType": 0,
  2332. "_fillCenter": {
  2333. "__type__": "cc.Vec2",
  2334. "x": 0,
  2335. "y": 0
  2336. },
  2337. "_fillStart": 0,
  2338. "_fillRange": 0,
  2339. "_isTrimmedMode": true,
  2340. "_atlas": null,
  2341. "_id": ""
  2342. },
  2343. {
  2344. "__type__": "cc.PrefabInfo",
  2345. "root": {
  2346. "__id__": 1
  2347. },
  2348. "asset": {
  2349. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2350. },
  2351. "fileId": "72B8PLS2FCqIOx0ufqkjrd",
  2352. "sync": false
  2353. },
  2354. {
  2355. "__type__": "cc.Node",
  2356. "_name": "text4",
  2357. "_objFlags": 0,
  2358. "_parent": {
  2359. "__id__": 65
  2360. },
  2361. "_children": [],
  2362. "_active": true,
  2363. "_level": 7,
  2364. "_components": [
  2365. {
  2366. "__id__": 70
  2367. },
  2368. {
  2369. "__id__": 71
  2370. }
  2371. ],
  2372. "_prefab": {
  2373. "__id__": 72
  2374. },
  2375. "_opacity": 255,
  2376. "_color": {
  2377. "__type__": "cc.Color",
  2378. "r": 171,
  2379. "g": 97,
  2380. "b": 52,
  2381. "a": 255
  2382. },
  2383. "_contentSize": {
  2384. "__type__": "cc.Size",
  2385. "width": 161.6,
  2386. "height": 52
  2387. },
  2388. "_anchorPoint": {
  2389. "__type__": "cc.Vec2",
  2390. "x": 0,
  2391. "y": 0.5
  2392. },
  2393. "_position": {
  2394. "__type__": "cc.Vec3",
  2395. "x": -141.961,
  2396. "y": 0,
  2397. "z": 0
  2398. },
  2399. "_scale": {
  2400. "__type__": "cc.Vec3",
  2401. "x": 0.644,
  2402. "y": 0.644,
  2403. "z": 0.644
  2404. },
  2405. "_eulerAngles": {
  2406. "__type__": "cc.Vec3",
  2407. "x": 0,
  2408. "y": 0,
  2409. "z": 0
  2410. },
  2411. "_skewX": 0,
  2412. "_skewY": 0,
  2413. "_is3DNode": false,
  2414. "groupIndex": 0,
  2415. "_id": ""
  2416. },
  2417. {
  2418. "__type__": "cc.Label",
  2419. "_name": "",
  2420. "_objFlags": 0,
  2421. "node": {
  2422. "__id__": 69
  2423. },
  2424. "_enabled": true,
  2425. "_materials": [
  2426. {
  2427. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2428. }
  2429. ],
  2430. "_useOriginalSize": false,
  2431. "_string": "收获数量:",
  2432. "_N$string": "收获数量:",
  2433. "_fontSize": 32,
  2434. "_lineHeight": 40,
  2435. "_enableWrapText": true,
  2436. "_N$file": null,
  2437. "_isSystemFontUsed": true,
  2438. "_spacingX": 0,
  2439. "_batchAsBitmap": false,
  2440. "_N$horizontalAlign": 1,
  2441. "_N$verticalAlign": 1,
  2442. "_N$fontFamily": "Arial",
  2443. "_N$overflow": 0,
  2444. "_N$cacheMode": 0,
  2445. "_id": ""
  2446. },
  2447. {
  2448. "__type__": "cc.LabelOutline",
  2449. "_name": "",
  2450. "_objFlags": 0,
  2451. "node": {
  2452. "__id__": 69
  2453. },
  2454. "_enabled": true,
  2455. "_color": {
  2456. "__type__": "cc.Color",
  2457. "r": 171,
  2458. "g": 97,
  2459. "b": 52,
  2460. "a": 255
  2461. },
  2462. "_width": 0.8,
  2463. "_id": ""
  2464. },
  2465. {
  2466. "__type__": "cc.PrefabInfo",
  2467. "root": {
  2468. "__id__": 1
  2469. },
  2470. "asset": {
  2471. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2472. },
  2473. "fileId": "d3Jl5/6RNKALEs8iS4IKJ0",
  2474. "sync": false
  2475. },
  2476. {
  2477. "__type__": "cc.Node",
  2478. "_name": "text4_value",
  2479. "_objFlags": 0,
  2480. "_parent": {
  2481. "__id__": 65
  2482. },
  2483. "_children": [],
  2484. "_active": true,
  2485. "_level": 7,
  2486. "_components": [
  2487. {
  2488. "__id__": 74
  2489. },
  2490. {
  2491. "__id__": 75
  2492. }
  2493. ],
  2494. "_prefab": {
  2495. "__id__": 76
  2496. },
  2497. "_opacity": 255,
  2498. "_color": {
  2499. "__type__": "cc.Color",
  2500. "r": 171,
  2501. "g": 97,
  2502. "b": 52,
  2503. "a": 255
  2504. },
  2505. "_contentSize": {
  2506. "__type__": "cc.Size",
  2507. "width": 81.64999999999999,
  2508. "height": 39.4
  2509. },
  2510. "_anchorPoint": {
  2511. "__type__": "cc.Vec2",
  2512. "x": 0,
  2513. "y": 0.5
  2514. },
  2515. "_position": {
  2516. "__type__": "cc.Vec3",
  2517. "x": -20,
  2518. "y": 0,
  2519. "z": 0
  2520. },
  2521. "_scale": {
  2522. "__type__": "cc.Vec3",
  2523. "x": 0.644,
  2524. "y": 0.644,
  2525. "z": 0.644
  2526. },
  2527. "_eulerAngles": {
  2528. "__type__": "cc.Vec3",
  2529. "x": 0,
  2530. "y": 0,
  2531. "z": 0
  2532. },
  2533. "_skewX": 0,
  2534. "_skewY": 0,
  2535. "_is3DNode": false,
  2536. "groupIndex": 0,
  2537. "_id": ""
  2538. },
  2539. {
  2540. "__type__": "cc.Label",
  2541. "_name": "",
  2542. "_objFlags": 0,
  2543. "node": {
  2544. "__id__": 73
  2545. },
  2546. "_enabled": true,
  2547. "_materials": [
  2548. {
  2549. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2550. }
  2551. ],
  2552. "_useOriginalSize": false,
  2553. "_string": "300个",
  2554. "_N$string": "300个",
  2555. "_fontSize": 30,
  2556. "_lineHeight": 30,
  2557. "_enableWrapText": true,
  2558. "_N$file": null,
  2559. "_isSystemFontUsed": true,
  2560. "_spacingX": 0,
  2561. "_batchAsBitmap": false,
  2562. "_N$horizontalAlign": 1,
  2563. "_N$verticalAlign": 1,
  2564. "_N$fontFamily": "Arial",
  2565. "_N$overflow": 0,
  2566. "_N$cacheMode": 0,
  2567. "_id": ""
  2568. },
  2569. {
  2570. "__type__": "cc.LabelOutline",
  2571. "_name": "",
  2572. "_objFlags": 0,
  2573. "node": {
  2574. "__id__": 73
  2575. },
  2576. "_enabled": true,
  2577. "_color": {
  2578. "__type__": "cc.Color",
  2579. "r": 171,
  2580. "g": 97,
  2581. "b": 52,
  2582. "a": 255
  2583. },
  2584. "_width": 0.8,
  2585. "_id": ""
  2586. },
  2587. {
  2588. "__type__": "cc.PrefabInfo",
  2589. "root": {
  2590. "__id__": 1
  2591. },
  2592. "asset": {
  2593. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2594. },
  2595. "fileId": "e7qKOQ2XRCDpTj+IVdh0TT",
  2596. "sync": false
  2597. },
  2598. {
  2599. "__type__": "cc.PrefabInfo",
  2600. "root": {
  2601. "__id__": 1
  2602. },
  2603. "asset": {
  2604. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2605. },
  2606. "fileId": "3fSPWXqjdNibvdugFeucL3",
  2607. "sync": false
  2608. },
  2609. {
  2610. "__type__": "cc.Layout",
  2611. "_name": "",
  2612. "_objFlags": 0,
  2613. "node": {
  2614. "__id__": 12
  2615. },
  2616. "_enabled": true,
  2617. "_layoutSize": {
  2618. "__type__": "cc.Size",
  2619. "width": 330,
  2620. "height": 200
  2621. },
  2622. "_resize": 0,
  2623. "_N$layoutType": 2,
  2624. "_N$padding": 0,
  2625. "_N$cellSize": {
  2626. "__type__": "cc.Size",
  2627. "width": 40,
  2628. "height": 40
  2629. },
  2630. "_N$startAxis": 0,
  2631. "_N$paddingLeft": 0,
  2632. "_N$paddingRight": 0,
  2633. "_N$paddingTop": 23,
  2634. "_N$paddingBottom": 0,
  2635. "_N$spacingX": 0,
  2636. "_N$spacingY": 45,
  2637. "_N$verticalDirection": 1,
  2638. "_N$horizontalDirection": 0,
  2639. "_N$affectedByScale": false,
  2640. "_id": ""
  2641. },
  2642. {
  2643. "__type__": "cc.PrefabInfo",
  2644. "root": {
  2645. "__id__": 1
  2646. },
  2647. "asset": {
  2648. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2649. },
  2650. "fileId": "f4NR2NdqZDm5vS1b50pvOm",
  2651. "sync": false
  2652. },
  2653. {
  2654. "__type__": "cc.Node",
  2655. "_name": "Container3",
  2656. "_objFlags": 0,
  2657. "_parent": {
  2658. "__id__": 1
  2659. },
  2660. "_children": [
  2661. {
  2662. "__id__": 81
  2663. },
  2664. {
  2665. "__id__": 85
  2666. }
  2667. ],
  2668. "_active": true,
  2669. "_level": 5,
  2670. "_components": [],
  2671. "_prefab": {
  2672. "__id__": 89
  2673. },
  2674. "_opacity": 255,
  2675. "_color": {
  2676. "__type__": "cc.Color",
  2677. "r": 228,
  2678. "g": 244,
  2679. "b": 249,
  2680. "a": 255
  2681. },
  2682. "_contentSize": {
  2683. "__type__": "cc.Size",
  2684. "width": 200,
  2685. "height": 50
  2686. },
  2687. "_anchorPoint": {
  2688. "__type__": "cc.Vec2",
  2689. "x": 0.5,
  2690. "y": 0.5
  2691. },
  2692. "_position": {
  2693. "__type__": "cc.Vec3",
  2694. "x": 35.171,
  2695. "y": -93.564,
  2696. "z": 0
  2697. },
  2698. "_scale": {
  2699. "__type__": "cc.Vec3",
  2700. "x": 1,
  2701. "y": 1,
  2702. "z": 1
  2703. },
  2704. "_eulerAngles": {
  2705. "__type__": "cc.Vec3",
  2706. "x": 0,
  2707. "y": 0,
  2708. "z": 0
  2709. },
  2710. "_skewX": 0,
  2711. "_skewY": 0,
  2712. "_is3DNode": false,
  2713. "groupIndex": 0,
  2714. "_id": ""
  2715. },
  2716. {
  2717. "__type__": "cc.Node",
  2718. "_name": "text3",
  2719. "_objFlags": 0,
  2720. "_parent": {
  2721. "__id__": 80
  2722. },
  2723. "_children": [],
  2724. "_active": true,
  2725. "_level": 6,
  2726. "_components": [
  2727. {
  2728. "__id__": 82
  2729. },
  2730. {
  2731. "__id__": 83
  2732. }
  2733. ],
  2734. "_prefab": {
  2735. "__id__": 84
  2736. },
  2737. "_opacity": 255,
  2738. "_color": {
  2739. "__type__": "cc.Color",
  2740. "r": 171,
  2741. "g": 97,
  2742. "b": 52,
  2743. "a": 255
  2744. },
  2745. "_contentSize": {
  2746. "__type__": "cc.Size",
  2747. "width": 141.6,
  2748. "height": 36.88
  2749. },
  2750. "_anchorPoint": {
  2751. "__type__": "cc.Vec2",
  2752. "x": 0,
  2753. "y": 0.5
  2754. },
  2755. "_position": {
  2756. "__type__": "cc.Vec3",
  2757. "x": -210.035,
  2758. "y": -4.038,
  2759. "z": 0
  2760. },
  2761. "_scale": {
  2762. "__type__": "cc.Vec3",
  2763. "x": 0.644,
  2764. "y": 0.644,
  2765. "z": 0.644
  2766. },
  2767. "_eulerAngles": {
  2768. "__type__": "cc.Vec3",
  2769. "x": 0,
  2770. "y": 0,
  2771. "z": 0
  2772. },
  2773. "_skewX": 0,
  2774. "_skewY": 0,
  2775. "_is3DNode": false,
  2776. "groupIndex": 0,
  2777. "_id": ""
  2778. },
  2779. {
  2780. "__type__": "cc.Label",
  2781. "_name": "",
  2782. "_objFlags": 0,
  2783. "node": {
  2784. "__id__": 81
  2785. },
  2786. "_enabled": true,
  2787. "_materials": [
  2788. {
  2789. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2790. }
  2791. ],
  2792. "_useOriginalSize": false,
  2793. "_string": "生产介绍:",
  2794. "_N$string": "生产介绍:",
  2795. "_fontSize": 28,
  2796. "_lineHeight": 28,
  2797. "_enableWrapText": true,
  2798. "_N$file": null,
  2799. "_isSystemFontUsed": true,
  2800. "_spacingX": 0,
  2801. "_batchAsBitmap": false,
  2802. "_N$horizontalAlign": 1,
  2803. "_N$verticalAlign": 1,
  2804. "_N$fontFamily": "Arial",
  2805. "_N$overflow": 0,
  2806. "_N$cacheMode": 0,
  2807. "_id": ""
  2808. },
  2809. {
  2810. "__type__": "cc.LabelOutline",
  2811. "_name": "",
  2812. "_objFlags": 0,
  2813. "node": {
  2814. "__id__": 81
  2815. },
  2816. "_enabled": true,
  2817. "_color": {
  2818. "__type__": "cc.Color",
  2819. "r": 171,
  2820. "g": 97,
  2821. "b": 52,
  2822. "a": 255
  2823. },
  2824. "_width": 0.8,
  2825. "_id": ""
  2826. },
  2827. {
  2828. "__type__": "cc.PrefabInfo",
  2829. "root": {
  2830. "__id__": 1
  2831. },
  2832. "asset": {
  2833. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2834. },
  2835. "fileId": "aaA39lDblHAodl2mesWPHw",
  2836. "sync": false
  2837. },
  2838. {
  2839. "__type__": "cc.Node",
  2840. "_name": "text3_value",
  2841. "_objFlags": 0,
  2842. "_parent": {
  2843. "__id__": 80
  2844. },
  2845. "_children": [],
  2846. "_active": true,
  2847. "_level": 6,
  2848. "_components": [
  2849. {
  2850. "__id__": 86
  2851. },
  2852. {
  2853. "__id__": 87
  2854. }
  2855. ],
  2856. "_prefab": {
  2857. "__id__": 88
  2858. },
  2859. "_opacity": 255,
  2860. "_color": {
  2861. "__type__": "cc.Color",
  2862. "r": 171,
  2863. "g": 97,
  2864. "b": 52,
  2865. "a": 255
  2866. },
  2867. "_contentSize": {
  2868. "__type__": "cc.Size",
  2869. "width": 364,
  2870. "height": 119.28
  2871. },
  2872. "_anchorPoint": {
  2873. "__type__": "cc.Vec2",
  2874. "x": 0,
  2875. "y": 1
  2876. },
  2877. "_position": {
  2878. "__type__": "cc.Vec3",
  2879. "x": -122.09,
  2880. "y": 9.721,
  2881. "z": 0
  2882. },
  2883. "_scale": {
  2884. "__type__": "cc.Vec3",
  2885. "x": 0.644,
  2886. "y": 0.644,
  2887. "z": 0.644
  2888. },
  2889. "_eulerAngles": {
  2890. "__type__": "cc.Vec3",
  2891. "x": 0,
  2892. "y": 0,
  2893. "z": 0
  2894. },
  2895. "_skewX": 0,
  2896. "_skewY": 0,
  2897. "_is3DNode": false,
  2898. "groupIndex": 0,
  2899. "_id": ""
  2900. },
  2901. {
  2902. "__type__": "cc.Label",
  2903. "_name": "",
  2904. "_objFlags": 0,
  2905. "node": {
  2906. "__id__": 85
  2907. },
  2908. "_enabled": true,
  2909. "_materials": [
  2910. {
  2911. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2912. }
  2913. ],
  2914. "_useOriginalSize": false,
  2915. "_string": "可用与种植农作用,购买种子\n播种到土地,等农作物成熟后\n收获到仓库,售卖之后可获得\n神农贝。",
  2916. "_N$string": "可用与种植农作用,购买种子\n播种到土地,等农作物成熟后\n收获到仓库,售卖之后可获得\n神农贝。",
  2917. "_fontSize": 28,
  2918. "_lineHeight": 28,
  2919. "_enableWrapText": true,
  2920. "_N$file": null,
  2921. "_isSystemFontUsed": true,
  2922. "_spacingX": 0,
  2923. "_batchAsBitmap": false,
  2924. "_N$horizontalAlign": 0,
  2925. "_N$verticalAlign": 0,
  2926. "_N$fontFamily": "Arial",
  2927. "_N$overflow": 1,
  2928. "_N$cacheMode": 0,
  2929. "_id": ""
  2930. },
  2931. {
  2932. "__type__": "cc.LabelOutline",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "node": {
  2936. "__id__": 85
  2937. },
  2938. "_enabled": true,
  2939. "_color": {
  2940. "__type__": "cc.Color",
  2941. "r": 171,
  2942. "g": 97,
  2943. "b": 52,
  2944. "a": 255
  2945. },
  2946. "_width": 0.5,
  2947. "_id": ""
  2948. },
  2949. {
  2950. "__type__": "cc.PrefabInfo",
  2951. "root": {
  2952. "__id__": 1
  2953. },
  2954. "asset": {
  2955. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2956. },
  2957. "fileId": "49GsZdKclFAqntzdCcedqN",
  2958. "sync": false
  2959. },
  2960. {
  2961. "__type__": "cc.PrefabInfo",
  2962. "root": {
  2963. "__id__": 1
  2964. },
  2965. "asset": {
  2966. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  2967. },
  2968. "fileId": "f5Wn+t1sBJbYl+Fh3URygV",
  2969. "sync": false
  2970. },
  2971. {
  2972. "__type__": "cc.Node",
  2973. "_name": "close",
  2974. "_objFlags": 0,
  2975. "_parent": {
  2976. "__id__": 1
  2977. },
  2978. "_children": [
  2979. {
  2980. "__id__": 91
  2981. }
  2982. ],
  2983. "_active": true,
  2984. "_level": 5,
  2985. "_components": [
  2986. {
  2987. "__id__": 95
  2988. }
  2989. ],
  2990. "_prefab": {
  2991. "__id__": 97
  2992. },
  2993. "_opacity": 255,
  2994. "_color": {
  2995. "__type__": "cc.Color",
  2996. "r": 255,
  2997. "g": 255,
  2998. "b": 255,
  2999. "a": 255
  3000. },
  3001. "_contentSize": {
  3002. "__type__": "cc.Size",
  3003. "width": 80,
  3004. "height": 80
  3005. },
  3006. "_anchorPoint": {
  3007. "__type__": "cc.Vec2",
  3008. "x": 0.5,
  3009. "y": 0.5
  3010. },
  3011. "_position": {
  3012. "__type__": "cc.Vec3",
  3013. "x": 174.056,
  3014. "y": 190.219,
  3015. "z": 0
  3016. },
  3017. "_scale": {
  3018. "__type__": "cc.Vec3",
  3019. "x": 1,
  3020. "y": 1,
  3021. "z": 1
  3022. },
  3023. "_eulerAngles": {
  3024. "__type__": "cc.Vec3",
  3025. "x": 0,
  3026. "y": 0,
  3027. "z": 0
  3028. },
  3029. "_skewX": 0,
  3030. "_skewY": 0,
  3031. "_is3DNode": false,
  3032. "groupIndex": 0,
  3033. "_id": ""
  3034. },
  3035. {
  3036. "__type__": "cc.Node",
  3037. "_name": "Background",
  3038. "_objFlags": 0,
  3039. "_parent": {
  3040. "__id__": 90
  3041. },
  3042. "_children": [],
  3043. "_active": true,
  3044. "_level": 2,
  3045. "_components": [
  3046. {
  3047. "__id__": 92
  3048. },
  3049. {
  3050. "__id__": 93
  3051. }
  3052. ],
  3053. "_prefab": {
  3054. "__id__": 94
  3055. },
  3056. "_opacity": 255,
  3057. "_color": {
  3058. "__type__": "cc.Color",
  3059. "r": 255,
  3060. "g": 255,
  3061. "b": 255,
  3062. "a": 255
  3063. },
  3064. "_contentSize": {
  3065. "__type__": "cc.Size",
  3066. "width": 49,
  3067. "height": 46
  3068. },
  3069. "_anchorPoint": {
  3070. "__type__": "cc.Vec2",
  3071. "x": 0.5,
  3072. "y": 0.5
  3073. },
  3074. "_position": {
  3075. "__type__": "cc.Vec3",
  3076. "x": 0,
  3077. "y": -28.924,
  3078. "z": 0
  3079. },
  3080. "_scale": {
  3081. "__type__": "cc.Vec3",
  3082. "x": 1,
  3083. "y": 1,
  3084. "z": 1
  3085. },
  3086. "_eulerAngles": {
  3087. "__type__": "cc.Vec3",
  3088. "x": 0,
  3089. "y": 0,
  3090. "z": 0
  3091. },
  3092. "_skewX": 0,
  3093. "_skewY": 0,
  3094. "_is3DNode": false,
  3095. "groupIndex": 0,
  3096. "_id": ""
  3097. },
  3098. {
  3099. "__type__": "cc.Sprite",
  3100. "_name": "",
  3101. "_objFlags": 0,
  3102. "node": {
  3103. "__id__": 91
  3104. },
  3105. "_enabled": true,
  3106. "_materials": [
  3107. {
  3108. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3109. }
  3110. ],
  3111. "_srcBlendFactor": 770,
  3112. "_dstBlendFactor": 771,
  3113. "_spriteFrame": {
  3114. "__uuid__": "bfd7980a-4103-4052-bea2-17a80cc7d683"
  3115. },
  3116. "_type": 1,
  3117. "_sizeMode": 0,
  3118. "_fillType": 0,
  3119. "_fillCenter": {
  3120. "__type__": "cc.Vec2",
  3121. "x": 0,
  3122. "y": 0
  3123. },
  3124. "_fillStart": 0,
  3125. "_fillRange": 0,
  3126. "_isTrimmedMode": true,
  3127. "_atlas": null,
  3128. "_id": ""
  3129. },
  3130. {
  3131. "__type__": "cc.Widget",
  3132. "_name": "",
  3133. "_objFlags": 0,
  3134. "node": {
  3135. "__id__": 91
  3136. },
  3137. "_enabled": true,
  3138. "alignMode": 0,
  3139. "_target": null,
  3140. "_alignFlags": 45,
  3141. "_left": 15.5,
  3142. "_right": 15.5,
  3143. "_top": 45.924,
  3144. "_bottom": -11.923999999999998,
  3145. "_verticalCenter": 0,
  3146. "_horizontalCenter": 0,
  3147. "_isAbsLeft": true,
  3148. "_isAbsRight": true,
  3149. "_isAbsTop": true,
  3150. "_isAbsBottom": true,
  3151. "_isAbsHorizontalCenter": true,
  3152. "_isAbsVerticalCenter": true,
  3153. "_originalWidth": 100,
  3154. "_originalHeight": 40,
  3155. "_id": ""
  3156. },
  3157. {
  3158. "__type__": "cc.PrefabInfo",
  3159. "root": {
  3160. "__id__": 1
  3161. },
  3162. "asset": {
  3163. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  3164. },
  3165. "fileId": "47dnz4MUJFXZgamfxCjLOn",
  3166. "sync": false
  3167. },
  3168. {
  3169. "__type__": "cc.Button",
  3170. "_name": "",
  3171. "_objFlags": 0,
  3172. "node": {
  3173. "__id__": 90
  3174. },
  3175. "_enabled": true,
  3176. "duration": 0.1,
  3177. "zoomScale": 1.2,
  3178. "clickEvents": [
  3179. {
  3180. "__id__": 96
  3181. }
  3182. ],
  3183. "_N$interactable": true,
  3184. "_N$enableAutoGrayEffect": false,
  3185. "_N$transition": 3,
  3186. "transition": 3,
  3187. "_N$normalColor": {
  3188. "__type__": "cc.Color",
  3189. "r": 230,
  3190. "g": 230,
  3191. "b": 230,
  3192. "a": 255
  3193. },
  3194. "_N$pressedColor": {
  3195. "__type__": "cc.Color",
  3196. "r": 200,
  3197. "g": 200,
  3198. "b": 200,
  3199. "a": 255
  3200. },
  3201. "pressedColor": {
  3202. "__type__": "cc.Color",
  3203. "r": 200,
  3204. "g": 200,
  3205. "b": 200,
  3206. "a": 255
  3207. },
  3208. "_N$hoverColor": {
  3209. "__type__": "cc.Color",
  3210. "r": 255,
  3211. "g": 255,
  3212. "b": 255,
  3213. "a": 255
  3214. },
  3215. "hoverColor": {
  3216. "__type__": "cc.Color",
  3217. "r": 255,
  3218. "g": 255,
  3219. "b": 255,
  3220. "a": 255
  3221. },
  3222. "_N$disabledColor": {
  3223. "__type__": "cc.Color",
  3224. "r": 120,
  3225. "g": 120,
  3226. "b": 120,
  3227. "a": 200
  3228. },
  3229. "_N$normalSprite": {
  3230. "__uuid__": "60d0ea3b-b0a3-4544-84f0-48914bceb893"
  3231. },
  3232. "_N$pressedSprite": {
  3233. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3234. },
  3235. "pressedSprite": {
  3236. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3237. },
  3238. "_N$hoverSprite": {
  3239. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3240. },
  3241. "hoverSprite": {
  3242. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3243. },
  3244. "_N$disabledSprite": {
  3245. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3246. },
  3247. "_N$target": {
  3248. "__id__": 91
  3249. },
  3250. "_id": ""
  3251. },
  3252. {
  3253. "__type__": "cc.ClickEvent",
  3254. "target": {
  3255. "__id__": 1
  3256. },
  3257. "component": "",
  3258. "_componentId": "d331fSXVxRCcJn2N9f3JY3V",
  3259. "handler": "onclose",
  3260. "customEventData": ""
  3261. },
  3262. {
  3263. "__type__": "cc.PrefabInfo",
  3264. "root": {
  3265. "__id__": 1
  3266. },
  3267. "asset": {
  3268. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  3269. },
  3270. "fileId": "1fOaC/XrtHdqpIZPUOIW0Q",
  3271. "sync": false
  3272. },
  3273. {
  3274. "__type__": "d331fSXVxRCcJn2N9f3JY3V",
  3275. "_name": "",
  3276. "_objFlags": 0,
  3277. "node": {
  3278. "__id__": 1
  3279. },
  3280. "_enabled": true,
  3281. "plantName": {
  3282. "__id__": 22
  3283. },
  3284. "price": {
  3285. "__id__": 35
  3286. },
  3287. "maturity": {
  3288. "__id__": 48
  3289. },
  3290. "plantStart": {
  3291. "__id__": 61
  3292. },
  3293. "harvestQuantity": {
  3294. "__id__": 74
  3295. },
  3296. "describe": {
  3297. "__id__": 86
  3298. },
  3299. "_id": ""
  3300. },
  3301. {
  3302. "__type__": "cc.PrefabInfo",
  3303. "root": {
  3304. "__id__": 1
  3305. },
  3306. "asset": {
  3307. "__uuid__": "ff60e2cb-959f-4250-93e7-95c5223b0176"
  3308. },
  3309. "fileId": "d0fI6pl+pLZ5UweTGDLWiI",
  3310. "sync": false
  3311. }
  3312. ]