Labour_205_Holy_Farmland.prefab 55 KB

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