Labour_205_Holy_Farmland.prefab 78 KB

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