Labour_205_Holy_Farmland.prefab 77 KB

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