Labour_205_Holy_Farmland.prefab 82 KB

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