Labour_205_Holy_Farmland.prefab 62 KB

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