FarmLevelPanel.prefab 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894
  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": "FarmLevelPanel",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [
  26. {
  27. "__id__": 108
  28. },
  29. {
  30. "__id__": 109
  31. },
  32. {
  33. "__id__": 110
  34. },
  35. {
  36. "__id__": 111
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 112
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 750,
  53. "height": 1334
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_trs": {
  61. "__type__": "TypedArray",
  62. "ctor": "Float64Array",
  63. "array": [
  64. 375,
  65. 667,
  66. 0,
  67. 0,
  68. 0,
  69. 0,
  70. 1,
  71. 1,
  72. 1,
  73. 1
  74. ]
  75. },
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_is3DNode": false,
  85. "_groupIndex": 0,
  86. "groupIndex": 0,
  87. "_id": ""
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "动画节点",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [
  97. {
  98. "__id__": 3
  99. }
  100. ],
  101. "_active": true,
  102. "_components": [],
  103. "_prefab": {
  104. "__id__": 107
  105. },
  106. "_opacity": 255,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 255,
  110. "g": 255,
  111. "b": 255,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 750,
  117. "height": 1334
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_trs": {
  125. "__type__": "TypedArray",
  126. "ctor": "Float64Array",
  127. "array": [
  128. 950,
  129. 0,
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 1,
  135. 1,
  136. 1,
  137. 1
  138. ]
  139. },
  140. "_eulerAngles": {
  141. "__type__": "cc.Vec3",
  142. "x": 0,
  143. "y": 0,
  144. "z": 0
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_is3DNode": false,
  149. "_groupIndex": 0,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.Node",
  155. "_name": "bg",
  156. "_objFlags": 0,
  157. "_parent": {
  158. "__id__": 2
  159. },
  160. "_children": [
  161. {
  162. "__id__": 4
  163. },
  164. {
  165. "__id__": 34
  166. },
  167. {
  168. "__id__": 66
  169. },
  170. {
  171. "__id__": 89
  172. },
  173. {
  174. "__id__": 98
  175. }
  176. ],
  177. "_active": true,
  178. "_components": [
  179. {
  180. "__id__": 104
  181. },
  182. {
  183. "__id__": 105
  184. }
  185. ],
  186. "_prefab": {
  187. "__id__": 106
  188. },
  189. "_opacity": 255,
  190. "_color": {
  191. "__type__": "cc.Color",
  192. "r": 255,
  193. "g": 255,
  194. "b": 255,
  195. "a": 255
  196. },
  197. "_contentSize": {
  198. "__type__": "cc.Size",
  199. "width": 750,
  200. "height": 1049
  201. },
  202. "_anchorPoint": {
  203. "__type__": "cc.Vec2",
  204. "x": 0.5,
  205. "y": 0.5
  206. },
  207. "_trs": {
  208. "__type__": "TypedArray",
  209. "ctor": "Float64Array",
  210. "array": [
  211. 0,
  212. -142.5,
  213. 0,
  214. 0,
  215. 0,
  216. 0,
  217. 1,
  218. 1,
  219. 1,
  220. 1
  221. ]
  222. },
  223. "_eulerAngles": {
  224. "__type__": "cc.Vec3",
  225. "x": 0,
  226. "y": 0,
  227. "z": 0
  228. },
  229. "_skewX": 0,
  230. "_skewY": 0,
  231. "_is3DNode": false,
  232. "_groupIndex": 0,
  233. "groupIndex": 0,
  234. "_id": ""
  235. },
  236. {
  237. "__type__": "cc.Node",
  238. "_name": "ToggleContainer",
  239. "_objFlags": 0,
  240. "_parent": {
  241. "__id__": 3
  242. },
  243. "_children": [
  244. {
  245. "__id__": 5
  246. },
  247. {
  248. "__id__": 18
  249. }
  250. ],
  251. "_active": true,
  252. "_components": [
  253. {
  254. "__id__": 31
  255. },
  256. {
  257. "__id__": 32
  258. }
  259. ],
  260. "_prefab": {
  261. "__id__": 33
  262. },
  263. "_opacity": 255,
  264. "_color": {
  265. "__type__": "cc.Color",
  266. "r": 255,
  267. "g": 255,
  268. "b": 255,
  269. "a": 255
  270. },
  271. "_contentSize": {
  272. "__type__": "cc.Size",
  273. "width": 262,
  274. "height": 80
  275. },
  276. "_anchorPoint": {
  277. "__type__": "cc.Vec2",
  278. "x": 0.5,
  279. "y": 0.5
  280. },
  281. "_trs": {
  282. "__type__": "TypedArray",
  283. "ctor": "Float64Array",
  284. "array": [
  285. -8.49,
  286. 397.212,
  287. 0,
  288. 0,
  289. 0,
  290. 0,
  291. 1,
  292. 1,
  293. 1,
  294. 1
  295. ]
  296. },
  297. "_eulerAngles": {
  298. "__type__": "cc.Vec3",
  299. "x": 0,
  300. "y": 0,
  301. "z": 0
  302. },
  303. "_skewX": 0,
  304. "_skewY": 0,
  305. "_is3DNode": false,
  306. "_groupIndex": 0,
  307. "groupIndex": 0,
  308. "_id": ""
  309. },
  310. {
  311. "__type__": "cc.Node",
  312. "_name": "toggle1",
  313. "_objFlags": 0,
  314. "_parent": {
  315. "__id__": 4
  316. },
  317. "_children": [
  318. {
  319. "__id__": 6
  320. },
  321. {
  322. "__id__": 9
  323. },
  324. {
  325. "__id__": 12
  326. }
  327. ],
  328. "_active": true,
  329. "_components": [
  330. {
  331. "__id__": 15
  332. }
  333. ],
  334. "_prefab": {
  335. "__id__": 17
  336. },
  337. "_opacity": 255,
  338. "_color": {
  339. "__type__": "cc.Color",
  340. "r": 255,
  341. "g": 255,
  342. "b": 255,
  343. "a": 255
  344. },
  345. "_contentSize": {
  346. "__type__": "cc.Size",
  347. "width": 116,
  348. "height": 43
  349. },
  350. "_anchorPoint": {
  351. "__type__": "cc.Vec2",
  352. "x": 0.5,
  353. "y": 0.5
  354. },
  355. "_trs": {
  356. "__type__": "TypedArray",
  357. "ctor": "Float64Array",
  358. "array": [
  359. -73,
  360. 3,
  361. 0,
  362. 0,
  363. 0,
  364. 0,
  365. 1,
  366. 1.1,
  367. 1.1,
  368. 0
  369. ]
  370. },
  371. "_eulerAngles": {
  372. "__type__": "cc.Vec3",
  373. "x": 0,
  374. "y": 0,
  375. "z": 0
  376. },
  377. "_skewX": 0,
  378. "_skewY": 0,
  379. "_is3DNode": false,
  380. "_groupIndex": 0,
  381. "groupIndex": 0,
  382. "_id": ""
  383. },
  384. {
  385. "__type__": "cc.Node",
  386. "_name": "Background",
  387. "_objFlags": 512,
  388. "_parent": {
  389. "__id__": 5
  390. },
  391. "_children": [],
  392. "_active": true,
  393. "_components": [
  394. {
  395. "__id__": 7
  396. }
  397. ],
  398. "_prefab": {
  399. "__id__": 8
  400. },
  401. "_opacity": 255,
  402. "_color": {
  403. "__type__": "cc.Color",
  404. "r": 255,
  405. "g": 255,
  406. "b": 255,
  407. "a": 255
  408. },
  409. "_contentSize": {
  410. "__type__": "cc.Size",
  411. "width": 116,
  412. "height": 43
  413. },
  414. "_anchorPoint": {
  415. "__type__": "cc.Vec2",
  416. "x": 0.5,
  417. "y": 0.5
  418. },
  419. "_trs": {
  420. "__type__": "TypedArray",
  421. "ctor": "Float64Array",
  422. "array": [
  423. 0,
  424. 0,
  425. 0,
  426. 0,
  427. 0,
  428. 0,
  429. 1,
  430. 1,
  431. 1,
  432. 1
  433. ]
  434. },
  435. "_eulerAngles": {
  436. "__type__": "cc.Vec3",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0
  440. },
  441. "_skewX": 0,
  442. "_skewY": 0,
  443. "_is3DNode": false,
  444. "_groupIndex": 0,
  445. "groupIndex": 0,
  446. "_id": ""
  447. },
  448. {
  449. "__type__": "cc.Sprite",
  450. "_name": "",
  451. "_objFlags": 0,
  452. "node": {
  453. "__id__": 6
  454. },
  455. "_enabled": true,
  456. "_materials": [
  457. {
  458. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  459. }
  460. ],
  461. "_srcBlendFactor": 770,
  462. "_dstBlendFactor": 771,
  463. "_spriteFrame": {
  464. "__uuid__": "7e672560-298c-4ca7-ba8e-42a99a7ac991"
  465. },
  466. "_type": 0,
  467. "_sizeMode": 2,
  468. "_fillType": 0,
  469. "_fillCenter": {
  470. "__type__": "cc.Vec2",
  471. "x": 0,
  472. "y": 0
  473. },
  474. "_fillStart": 0,
  475. "_fillRange": 0,
  476. "_isTrimmedMode": false,
  477. "_atlas": null,
  478. "_id": ""
  479. },
  480. {
  481. "__type__": "cc.PrefabInfo",
  482. "root": {
  483. "__id__": 1
  484. },
  485. "asset": {
  486. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  487. },
  488. "fileId": "a8qEmVN7tGqrcarKVEeQjj",
  489. "sync": false
  490. },
  491. {
  492. "__type__": "cc.Node",
  493. "_name": "checkmark",
  494. "_objFlags": 512,
  495. "_parent": {
  496. "__id__": 5
  497. },
  498. "_children": [],
  499. "_active": true,
  500. "_components": [
  501. {
  502. "__id__": 10
  503. }
  504. ],
  505. "_prefab": {
  506. "__id__": 11
  507. },
  508. "_opacity": 255,
  509. "_color": {
  510. "__type__": "cc.Color",
  511. "r": 255,
  512. "g": 255,
  513. "b": 255,
  514. "a": 255
  515. },
  516. "_contentSize": {
  517. "__type__": "cc.Size",
  518. "width": 116,
  519. "height": 43
  520. },
  521. "_anchorPoint": {
  522. "__type__": "cc.Vec2",
  523. "x": 0.5,
  524. "y": 0.5
  525. },
  526. "_trs": {
  527. "__type__": "TypedArray",
  528. "ctor": "Float64Array",
  529. "array": [
  530. 0,
  531. 0,
  532. 0,
  533. 0,
  534. 0,
  535. 0,
  536. 1,
  537. 1,
  538. 1,
  539. 1
  540. ]
  541. },
  542. "_eulerAngles": {
  543. "__type__": "cc.Vec3",
  544. "x": 0,
  545. "y": 0,
  546. "z": 0
  547. },
  548. "_skewX": 0,
  549. "_skewY": 0,
  550. "_is3DNode": false,
  551. "_groupIndex": 0,
  552. "groupIndex": 0,
  553. "_id": ""
  554. },
  555. {
  556. "__type__": "cc.Sprite",
  557. "_name": "",
  558. "_objFlags": 0,
  559. "node": {
  560. "__id__": 9
  561. },
  562. "_enabled": true,
  563. "_materials": [
  564. {
  565. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  566. }
  567. ],
  568. "_srcBlendFactor": 770,
  569. "_dstBlendFactor": 771,
  570. "_spriteFrame": {
  571. "__uuid__": "648553b0-b230-4ef7-971b-b7d0e5e450c1"
  572. },
  573. "_type": 0,
  574. "_sizeMode": 2,
  575. "_fillType": 0,
  576. "_fillCenter": {
  577. "__type__": "cc.Vec2",
  578. "x": 0,
  579. "y": 0
  580. },
  581. "_fillStart": 0,
  582. "_fillRange": 0,
  583. "_isTrimmedMode": false,
  584. "_atlas": null,
  585. "_id": ""
  586. },
  587. {
  588. "__type__": "cc.PrefabInfo",
  589. "root": {
  590. "__id__": 1
  591. },
  592. "asset": {
  593. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  594. },
  595. "fileId": "8a4A8paPlP/4PfaRLz7MWt",
  596. "sync": false
  597. },
  598. {
  599. "__type__": "cc.Node",
  600. "_name": "name",
  601. "_objFlags": 0,
  602. "_parent": {
  603. "__id__": 5
  604. },
  605. "_children": [],
  606. "_active": true,
  607. "_components": [
  608. {
  609. "__id__": 13
  610. }
  611. ],
  612. "_prefab": {
  613. "__id__": 14
  614. },
  615. "_opacity": 255,
  616. "_color": {
  617. "__type__": "cc.Color",
  618. "r": 255,
  619. "g": 255,
  620. "b": 255,
  621. "a": 255
  622. },
  623. "_contentSize": {
  624. "__type__": "cc.Size",
  625. "width": 44,
  626. "height": 50.4
  627. },
  628. "_anchorPoint": {
  629. "__type__": "cc.Vec2",
  630. "x": 0.5,
  631. "y": 0.5
  632. },
  633. "_trs": {
  634. "__type__": "TypedArray",
  635. "ctor": "Float64Array",
  636. "array": [
  637. 0,
  638. 1,
  639. 0,
  640. 0,
  641. 0,
  642. 0,
  643. 1,
  644. 1,
  645. 1,
  646. 1
  647. ]
  648. },
  649. "_eulerAngles": {
  650. "__type__": "cc.Vec3",
  651. "x": 0,
  652. "y": 0,
  653. "z": 0
  654. },
  655. "_skewX": 0,
  656. "_skewY": 0,
  657. "_is3DNode": false,
  658. "_groupIndex": 0,
  659. "groupIndex": 0,
  660. "_id": ""
  661. },
  662. {
  663. "__type__": "cc.Label",
  664. "_name": "",
  665. "_objFlags": 0,
  666. "node": {
  667. "__id__": 12
  668. },
  669. "_enabled": true,
  670. "_materials": [
  671. {
  672. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  673. }
  674. ],
  675. "_srcBlendFactor": 770,
  676. "_dstBlendFactor": 771,
  677. "_string": "等级",
  678. "_N$string": "等级",
  679. "_fontSize": 22,
  680. "_lineHeight": 40,
  681. "_enableWrapText": true,
  682. "_N$file": {
  683. "__uuid__": "b47819b5-a9ec-4916-8909-db422f79bbb7"
  684. },
  685. "_isSystemFontUsed": false,
  686. "_spacingX": 0,
  687. "_batchAsBitmap": false,
  688. "_styleFlags": 0,
  689. "_underlineHeight": 0,
  690. "_N$horizontalAlign": 1,
  691. "_N$verticalAlign": 1,
  692. "_N$fontFamily": "Arial",
  693. "_N$overflow": 0,
  694. "_N$cacheMode": 0,
  695. "_id": ""
  696. },
  697. {
  698. "__type__": "cc.PrefabInfo",
  699. "root": {
  700. "__id__": 1
  701. },
  702. "asset": {
  703. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  704. },
  705. "fileId": "53jYRnWaxPjYYQ+5ETlS7a",
  706. "sync": false
  707. },
  708. {
  709. "__type__": "cc.Toggle",
  710. "_name": "",
  711. "_objFlags": 0,
  712. "node": {
  713. "__id__": 5
  714. },
  715. "_enabled": true,
  716. "_normalMaterial": null,
  717. "_grayMaterial": null,
  718. "duration": 0.1,
  719. "zoomScale": 1.2,
  720. "clickEvents": [],
  721. "_N$interactable": true,
  722. "_N$enableAutoGrayEffect": false,
  723. "_N$transition": 3,
  724. "transition": 3,
  725. "_N$normalColor": {
  726. "__type__": "cc.Color",
  727. "r": 214,
  728. "g": 214,
  729. "b": 214,
  730. "a": 255
  731. },
  732. "_N$pressedColor": {
  733. "__type__": "cc.Color",
  734. "r": 211,
  735. "g": 211,
  736. "b": 211,
  737. "a": 255
  738. },
  739. "pressedColor": {
  740. "__type__": "cc.Color",
  741. "r": 211,
  742. "g": 211,
  743. "b": 211,
  744. "a": 255
  745. },
  746. "_N$hoverColor": {
  747. "__type__": "cc.Color",
  748. "r": 255,
  749. "g": 255,
  750. "b": 255,
  751. "a": 255
  752. },
  753. "hoverColor": {
  754. "__type__": "cc.Color",
  755. "r": 255,
  756. "g": 255,
  757. "b": 255,
  758. "a": 255
  759. },
  760. "_N$disabledColor": {
  761. "__type__": "cc.Color",
  762. "r": 124,
  763. "g": 124,
  764. "b": 124,
  765. "a": 255
  766. },
  767. "_N$normalSprite": null,
  768. "_N$pressedSprite": null,
  769. "pressedSprite": null,
  770. "_N$hoverSprite": null,
  771. "hoverSprite": null,
  772. "_N$disabledSprite": null,
  773. "_N$target": {
  774. "__id__": 5
  775. },
  776. "_N$isChecked": true,
  777. "toggleGroup": null,
  778. "checkMark": {
  779. "__id__": 10
  780. },
  781. "checkEvents": [
  782. {
  783. "__id__": 16
  784. }
  785. ],
  786. "_id": ""
  787. },
  788. {
  789. "__type__": "cc.ClickEvent",
  790. "target": {
  791. "__id__": 1
  792. },
  793. "component": "",
  794. "_componentId": "b9868hKio9FFbh6GJR5yEdQ",
  795. "handler": "clickToggleBtn",
  796. "customEventData": "1"
  797. },
  798. {
  799. "__type__": "cc.PrefabInfo",
  800. "root": {
  801. "__id__": 1
  802. },
  803. "asset": {
  804. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  805. },
  806. "fileId": "70hj/92RZO+7OWwd9lOx52",
  807. "sync": false
  808. },
  809. {
  810. "__type__": "cc.Node",
  811. "_name": "toggle2",
  812. "_objFlags": 0,
  813. "_parent": {
  814. "__id__": 4
  815. },
  816. "_children": [
  817. {
  818. "__id__": 19
  819. },
  820. {
  821. "__id__": 22
  822. },
  823. {
  824. "__id__": 25
  825. }
  826. ],
  827. "_active": true,
  828. "_components": [
  829. {
  830. "__id__": 28
  831. }
  832. ],
  833. "_prefab": {
  834. "__id__": 30
  835. },
  836. "_opacity": 255,
  837. "_color": {
  838. "__type__": "cc.Color",
  839. "r": 255,
  840. "g": 255,
  841. "b": 255,
  842. "a": 255
  843. },
  844. "_contentSize": {
  845. "__type__": "cc.Size",
  846. "width": 116,
  847. "height": 43
  848. },
  849. "_anchorPoint": {
  850. "__type__": "cc.Vec2",
  851. "x": 0.5,
  852. "y": 0.5
  853. },
  854. "_trs": {
  855. "__type__": "TypedArray",
  856. "ctor": "Float64Array",
  857. "array": [
  858. 73,
  859. 3,
  860. 0,
  861. 0,
  862. 0,
  863. 0,
  864. 1,
  865. 1.1,
  866. 1.1,
  867. 0
  868. ]
  869. },
  870. "_eulerAngles": {
  871. "__type__": "cc.Vec3",
  872. "x": 0,
  873. "y": 0,
  874. "z": 0
  875. },
  876. "_skewX": 0,
  877. "_skewY": 0,
  878. "_is3DNode": false,
  879. "_groupIndex": 0,
  880. "groupIndex": 0,
  881. "_id": ""
  882. },
  883. {
  884. "__type__": "cc.Node",
  885. "_name": "Background",
  886. "_objFlags": 512,
  887. "_parent": {
  888. "__id__": 18
  889. },
  890. "_children": [],
  891. "_active": true,
  892. "_components": [
  893. {
  894. "__id__": 20
  895. }
  896. ],
  897. "_prefab": {
  898. "__id__": 21
  899. },
  900. "_opacity": 255,
  901. "_color": {
  902. "__type__": "cc.Color",
  903. "r": 255,
  904. "g": 255,
  905. "b": 255,
  906. "a": 255
  907. },
  908. "_contentSize": {
  909. "__type__": "cc.Size",
  910. "width": 116,
  911. "height": 43
  912. },
  913. "_anchorPoint": {
  914. "__type__": "cc.Vec2",
  915. "x": 0.5,
  916. "y": 0.5
  917. },
  918. "_trs": {
  919. "__type__": "TypedArray",
  920. "ctor": "Float64Array",
  921. "array": [
  922. 0,
  923. 0,
  924. 0,
  925. 0,
  926. 0,
  927. 0,
  928. 1,
  929. 1,
  930. 1,
  931. 1
  932. ]
  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. "groupIndex": 0,
  945. "_id": ""
  946. },
  947. {
  948. "__type__": "cc.Sprite",
  949. "_name": "",
  950. "_objFlags": 0,
  951. "node": {
  952. "__id__": 19
  953. },
  954. "_enabled": true,
  955. "_materials": [
  956. {
  957. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  958. }
  959. ],
  960. "_srcBlendFactor": 770,
  961. "_dstBlendFactor": 771,
  962. "_spriteFrame": {
  963. "__uuid__": "7e672560-298c-4ca7-ba8e-42a99a7ac991"
  964. },
  965. "_type": 0,
  966. "_sizeMode": 2,
  967. "_fillType": 0,
  968. "_fillCenter": {
  969. "__type__": "cc.Vec2",
  970. "x": 0,
  971. "y": 0
  972. },
  973. "_fillStart": 0,
  974. "_fillRange": 0,
  975. "_isTrimmedMode": false,
  976. "_atlas": null,
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.PrefabInfo",
  981. "root": {
  982. "__id__": 1
  983. },
  984. "asset": {
  985. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  986. },
  987. "fileId": "8dO+GPVZ9MereyIHx/nO4r",
  988. "sync": false
  989. },
  990. {
  991. "__type__": "cc.Node",
  992. "_name": "checkmark",
  993. "_objFlags": 512,
  994. "_parent": {
  995. "__id__": 18
  996. },
  997. "_children": [],
  998. "_active": false,
  999. "_components": [
  1000. {
  1001. "__id__": 23
  1002. }
  1003. ],
  1004. "_prefab": {
  1005. "__id__": 24
  1006. },
  1007. "_opacity": 255,
  1008. "_color": {
  1009. "__type__": "cc.Color",
  1010. "r": 255,
  1011. "g": 255,
  1012. "b": 255,
  1013. "a": 255
  1014. },
  1015. "_contentSize": {
  1016. "__type__": "cc.Size",
  1017. "width": 116,
  1018. "height": 43
  1019. },
  1020. "_anchorPoint": {
  1021. "__type__": "cc.Vec2",
  1022. "x": 0.5,
  1023. "y": 0.5
  1024. },
  1025. "_trs": {
  1026. "__type__": "TypedArray",
  1027. "ctor": "Float64Array",
  1028. "array": [
  1029. 0,
  1030. 0,
  1031. 0,
  1032. 0,
  1033. 0,
  1034. 0,
  1035. 1,
  1036. 1,
  1037. 1,
  1038. 1
  1039. ]
  1040. },
  1041. "_eulerAngles": {
  1042. "__type__": "cc.Vec3",
  1043. "x": 0,
  1044. "y": 0,
  1045. "z": 0
  1046. },
  1047. "_skewX": 0,
  1048. "_skewY": 0,
  1049. "_is3DNode": false,
  1050. "_groupIndex": 0,
  1051. "groupIndex": 0,
  1052. "_id": ""
  1053. },
  1054. {
  1055. "__type__": "cc.Sprite",
  1056. "_name": "",
  1057. "_objFlags": 0,
  1058. "node": {
  1059. "__id__": 22
  1060. },
  1061. "_enabled": true,
  1062. "_materials": [
  1063. {
  1064. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1065. }
  1066. ],
  1067. "_srcBlendFactor": 770,
  1068. "_dstBlendFactor": 771,
  1069. "_spriteFrame": {
  1070. "__uuid__": "648553b0-b230-4ef7-971b-b7d0e5e450c1"
  1071. },
  1072. "_type": 0,
  1073. "_sizeMode": 2,
  1074. "_fillType": 0,
  1075. "_fillCenter": {
  1076. "__type__": "cc.Vec2",
  1077. "x": 0,
  1078. "y": 0
  1079. },
  1080. "_fillStart": 0,
  1081. "_fillRange": 0,
  1082. "_isTrimmedMode": false,
  1083. "_atlas": null,
  1084. "_id": ""
  1085. },
  1086. {
  1087. "__type__": "cc.PrefabInfo",
  1088. "root": {
  1089. "__id__": 1
  1090. },
  1091. "asset": {
  1092. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1093. },
  1094. "fileId": "11nImGmVBC/rvBb9Dr4+b0",
  1095. "sync": false
  1096. },
  1097. {
  1098. "__type__": "cc.Node",
  1099. "_name": "name",
  1100. "_objFlags": 0,
  1101. "_parent": {
  1102. "__id__": 18
  1103. },
  1104. "_children": [],
  1105. "_active": true,
  1106. "_components": [
  1107. {
  1108. "__id__": 26
  1109. }
  1110. ],
  1111. "_prefab": {
  1112. "__id__": 27
  1113. },
  1114. "_opacity": 255,
  1115. "_color": {
  1116. "__type__": "cc.Color",
  1117. "r": 255,
  1118. "g": 255,
  1119. "b": 255,
  1120. "a": 255
  1121. },
  1122. "_contentSize": {
  1123. "__type__": "cc.Size",
  1124. "width": 44,
  1125. "height": 50.4
  1126. },
  1127. "_anchorPoint": {
  1128. "__type__": "cc.Vec2",
  1129. "x": 0.5,
  1130. "y": 0.5
  1131. },
  1132. "_trs": {
  1133. "__type__": "TypedArray",
  1134. "ctor": "Float64Array",
  1135. "array": [
  1136. 0,
  1137. 1,
  1138. 0,
  1139. 0,
  1140. 0,
  1141. 0,
  1142. 1,
  1143. 1,
  1144. 1,
  1145. 1
  1146. ]
  1147. },
  1148. "_eulerAngles": {
  1149. "__type__": "cc.Vec3",
  1150. "x": 0,
  1151. "y": 0,
  1152. "z": 0
  1153. },
  1154. "_skewX": 0,
  1155. "_skewY": 0,
  1156. "_is3DNode": false,
  1157. "_groupIndex": 0,
  1158. "groupIndex": 0,
  1159. "_id": ""
  1160. },
  1161. {
  1162. "__type__": "cc.Label",
  1163. "_name": "",
  1164. "_objFlags": 0,
  1165. "node": {
  1166. "__id__": 25
  1167. },
  1168. "_enabled": true,
  1169. "_materials": [
  1170. {
  1171. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1172. }
  1173. ],
  1174. "_srcBlendFactor": 770,
  1175. "_dstBlendFactor": 771,
  1176. "_string": "仓库",
  1177. "_N$string": "仓库",
  1178. "_fontSize": 22,
  1179. "_lineHeight": 40,
  1180. "_enableWrapText": true,
  1181. "_N$file": {
  1182. "__uuid__": "b47819b5-a9ec-4916-8909-db422f79bbb7"
  1183. },
  1184. "_isSystemFontUsed": false,
  1185. "_spacingX": 0,
  1186. "_batchAsBitmap": false,
  1187. "_styleFlags": 0,
  1188. "_underlineHeight": 0,
  1189. "_N$horizontalAlign": 1,
  1190. "_N$verticalAlign": 1,
  1191. "_N$fontFamily": "Arial",
  1192. "_N$overflow": 0,
  1193. "_N$cacheMode": 0,
  1194. "_id": ""
  1195. },
  1196. {
  1197. "__type__": "cc.PrefabInfo",
  1198. "root": {
  1199. "__id__": 1
  1200. },
  1201. "asset": {
  1202. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1203. },
  1204. "fileId": "40G2Tj/Y9PTIw0qRJTcJ8N",
  1205. "sync": false
  1206. },
  1207. {
  1208. "__type__": "cc.Toggle",
  1209. "_name": "",
  1210. "_objFlags": 0,
  1211. "node": {
  1212. "__id__": 18
  1213. },
  1214. "_enabled": true,
  1215. "_normalMaterial": null,
  1216. "_grayMaterial": null,
  1217. "duration": 0.1,
  1218. "zoomScale": 1.2,
  1219. "clickEvents": [],
  1220. "_N$interactable": true,
  1221. "_N$enableAutoGrayEffect": false,
  1222. "_N$transition": 3,
  1223. "transition": 3,
  1224. "_N$normalColor": {
  1225. "__type__": "cc.Color",
  1226. "r": 214,
  1227. "g": 214,
  1228. "b": 214,
  1229. "a": 255
  1230. },
  1231. "_N$pressedColor": {
  1232. "__type__": "cc.Color",
  1233. "r": 211,
  1234. "g": 211,
  1235. "b": 211,
  1236. "a": 255
  1237. },
  1238. "pressedColor": {
  1239. "__type__": "cc.Color",
  1240. "r": 211,
  1241. "g": 211,
  1242. "b": 211,
  1243. "a": 255
  1244. },
  1245. "_N$hoverColor": {
  1246. "__type__": "cc.Color",
  1247. "r": 255,
  1248. "g": 255,
  1249. "b": 255,
  1250. "a": 255
  1251. },
  1252. "hoverColor": {
  1253. "__type__": "cc.Color",
  1254. "r": 255,
  1255. "g": 255,
  1256. "b": 255,
  1257. "a": 255
  1258. },
  1259. "_N$disabledColor": {
  1260. "__type__": "cc.Color",
  1261. "r": 124,
  1262. "g": 124,
  1263. "b": 124,
  1264. "a": 255
  1265. },
  1266. "_N$normalSprite": null,
  1267. "_N$pressedSprite": null,
  1268. "pressedSprite": null,
  1269. "_N$hoverSprite": null,
  1270. "hoverSprite": null,
  1271. "_N$disabledSprite": null,
  1272. "_N$target": {
  1273. "__id__": 18
  1274. },
  1275. "_N$isChecked": false,
  1276. "toggleGroup": null,
  1277. "checkMark": {
  1278. "__id__": 23
  1279. },
  1280. "checkEvents": [
  1281. {
  1282. "__id__": 29
  1283. }
  1284. ],
  1285. "_id": ""
  1286. },
  1287. {
  1288. "__type__": "cc.ClickEvent",
  1289. "target": {
  1290. "__id__": 1
  1291. },
  1292. "component": "",
  1293. "_componentId": "b9868hKio9FFbh6GJR5yEdQ",
  1294. "handler": "clickToggleBtn",
  1295. "customEventData": "2"
  1296. },
  1297. {
  1298. "__type__": "cc.PrefabInfo",
  1299. "root": {
  1300. "__id__": 1
  1301. },
  1302. "asset": {
  1303. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1304. },
  1305. "fileId": "c4iFmE0s1NlLdftDHG5VoC",
  1306. "sync": false
  1307. },
  1308. {
  1309. "__type__": "cc.ToggleContainer",
  1310. "_name": "",
  1311. "_objFlags": 0,
  1312. "node": {
  1313. "__id__": 4
  1314. },
  1315. "_enabled": true,
  1316. "allowSwitchOff": false,
  1317. "checkEvents": [],
  1318. "_id": ""
  1319. },
  1320. {
  1321. "__type__": "cc.Layout",
  1322. "_name": "",
  1323. "_objFlags": 0,
  1324. "node": {
  1325. "__id__": 4
  1326. },
  1327. "_enabled": true,
  1328. "_layoutSize": {
  1329. "__type__": "cc.Size",
  1330. "width": 262,
  1331. "height": 80
  1332. },
  1333. "_resize": 1,
  1334. "_N$layoutType": 1,
  1335. "_N$cellSize": {
  1336. "__type__": "cc.Size",
  1337. "width": 40,
  1338. "height": 40
  1339. },
  1340. "_N$startAxis": 0,
  1341. "_N$paddingLeft": 0,
  1342. "_N$paddingRight": 0,
  1343. "_N$paddingTop": 0,
  1344. "_N$paddingBottom": 0,
  1345. "_N$spacingX": 30,
  1346. "_N$spacingY": 0,
  1347. "_N$verticalDirection": 1,
  1348. "_N$horizontalDirection": 0,
  1349. "_N$affectedByScale": false,
  1350. "_id": ""
  1351. },
  1352. {
  1353. "__type__": "cc.PrefabInfo",
  1354. "root": {
  1355. "__id__": 1
  1356. },
  1357. "asset": {
  1358. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1359. },
  1360. "fileId": "e5x15Kgk9O3bpvd36S71de",
  1361. "sync": false
  1362. },
  1363. {
  1364. "__type__": "cc.Node",
  1365. "_name": "bg1",
  1366. "_objFlags": 0,
  1367. "_parent": {
  1368. "__id__": 3
  1369. },
  1370. "_children": [
  1371. {
  1372. "__id__": 35
  1373. },
  1374. {
  1375. "__id__": 43
  1376. },
  1377. {
  1378. "__id__": 46
  1379. },
  1380. {
  1381. "__id__": 50
  1382. },
  1383. {
  1384. "__id__": 54
  1385. },
  1386. {
  1387. "__id__": 61
  1388. }
  1389. ],
  1390. "_active": true,
  1391. "_components": [
  1392. {
  1393. "__id__": 64
  1394. }
  1395. ],
  1396. "_prefab": {
  1397. "__id__": 65
  1398. },
  1399. "_opacity": 255,
  1400. "_color": {
  1401. "__type__": "cc.Color",
  1402. "r": 255,
  1403. "g": 255,
  1404. "b": 255,
  1405. "a": 255
  1406. },
  1407. "_contentSize": {
  1408. "__type__": "cc.Size",
  1409. "width": 623,
  1410. "height": 172
  1411. },
  1412. "_anchorPoint": {
  1413. "__type__": "cc.Vec2",
  1414. "x": 0.5,
  1415. "y": 0.5
  1416. },
  1417. "_trs": {
  1418. "__type__": "TypedArray",
  1419. "ctor": "Float64Array",
  1420. "array": [
  1421. 0,
  1422. 277,
  1423. 0,
  1424. 0,
  1425. 0,
  1426. 0,
  1427. 1,
  1428. 1,
  1429. 1,
  1430. 1
  1431. ]
  1432. },
  1433. "_eulerAngles": {
  1434. "__type__": "cc.Vec3",
  1435. "x": 0,
  1436. "y": 0,
  1437. "z": 0
  1438. },
  1439. "_skewX": 0,
  1440. "_skewY": 0,
  1441. "_is3DNode": false,
  1442. "_groupIndex": 0,
  1443. "groupIndex": 0,
  1444. "_id": ""
  1445. },
  1446. {
  1447. "__type__": "cc.Node",
  1448. "_name": "头像遮罩",
  1449. "_objFlags": 0,
  1450. "_parent": {
  1451. "__id__": 34
  1452. },
  1453. "_children": [
  1454. {
  1455. "__id__": 36
  1456. }
  1457. ],
  1458. "_active": true,
  1459. "_components": [
  1460. {
  1461. "__id__": 39
  1462. },
  1463. {
  1464. "__id__": 40
  1465. }
  1466. ],
  1467. "_prefab": {
  1468. "__id__": 42
  1469. },
  1470. "_opacity": 255,
  1471. "_color": {
  1472. "__type__": "cc.Color",
  1473. "r": 255,
  1474. "g": 255,
  1475. "b": 255,
  1476. "a": 255
  1477. },
  1478. "_contentSize": {
  1479. "__type__": "cc.Size",
  1480. "width": 117,
  1481. "height": 117
  1482. },
  1483. "_anchorPoint": {
  1484. "__type__": "cc.Vec2",
  1485. "x": 0.5,
  1486. "y": 0.5
  1487. },
  1488. "_trs": {
  1489. "__type__": "TypedArray",
  1490. "ctor": "Float64Array",
  1491. "array": [
  1492. -217.265,
  1493. -3.254,
  1494. 0,
  1495. 0,
  1496. 0,
  1497. 0,
  1498. 1,
  1499. 1,
  1500. 1,
  1501. 1
  1502. ]
  1503. },
  1504. "_eulerAngles": {
  1505. "__type__": "cc.Vec3",
  1506. "x": 0,
  1507. "y": 0,
  1508. "z": 0
  1509. },
  1510. "_skewX": 0,
  1511. "_skewY": 0,
  1512. "_is3DNode": false,
  1513. "_groupIndex": 0,
  1514. "groupIndex": 0,
  1515. "_id": ""
  1516. },
  1517. {
  1518. "__type__": "cc.Node",
  1519. "_name": "head1",
  1520. "_objFlags": 0,
  1521. "_parent": {
  1522. "__id__": 35
  1523. },
  1524. "_children": [],
  1525. "_active": true,
  1526. "_components": [
  1527. {
  1528. "__id__": 37
  1529. }
  1530. ],
  1531. "_prefab": {
  1532. "__id__": 38
  1533. },
  1534. "_opacity": 255,
  1535. "_color": {
  1536. "__type__": "cc.Color",
  1537. "r": 255,
  1538. "g": 255,
  1539. "b": 255,
  1540. "a": 255
  1541. },
  1542. "_contentSize": {
  1543. "__type__": "cc.Size",
  1544. "width": 256,
  1545. "height": 256
  1546. },
  1547. "_anchorPoint": {
  1548. "__type__": "cc.Vec2",
  1549. "x": 0.5,
  1550. "y": 0.5
  1551. },
  1552. "_trs": {
  1553. "__type__": "TypedArray",
  1554. "ctor": "Float64Array",
  1555. "array": [
  1556. 0,
  1557. 0,
  1558. 0,
  1559. 0,
  1560. 0,
  1561. 0,
  1562. 1,
  1563. 1,
  1564. 1,
  1565. 1
  1566. ]
  1567. },
  1568. "_eulerAngles": {
  1569. "__type__": "cc.Vec3",
  1570. "x": 0,
  1571. "y": 0,
  1572. "z": 0
  1573. },
  1574. "_skewX": 0,
  1575. "_skewY": 0,
  1576. "_is3DNode": false,
  1577. "_groupIndex": 0,
  1578. "groupIndex": 0,
  1579. "_id": ""
  1580. },
  1581. {
  1582. "__type__": "cc.Sprite",
  1583. "_name": "",
  1584. "_objFlags": 0,
  1585. "node": {
  1586. "__id__": 36
  1587. },
  1588. "_enabled": true,
  1589. "_materials": [
  1590. {
  1591. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1592. }
  1593. ],
  1594. "_srcBlendFactor": 770,
  1595. "_dstBlendFactor": 771,
  1596. "_spriteFrame": {
  1597. "__uuid__": "f5837680-725b-45af-beac-8c6129d6bbb2"
  1598. },
  1599. "_type": 0,
  1600. "_sizeMode": 1,
  1601. "_fillType": 0,
  1602. "_fillCenter": {
  1603. "__type__": "cc.Vec2",
  1604. "x": 0,
  1605. "y": 0
  1606. },
  1607. "_fillStart": 0,
  1608. "_fillRange": 0,
  1609. "_isTrimmedMode": true,
  1610. "_atlas": null,
  1611. "_id": ""
  1612. },
  1613. {
  1614. "__type__": "cc.PrefabInfo",
  1615. "root": {
  1616. "__id__": 1
  1617. },
  1618. "asset": {
  1619. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1620. },
  1621. "fileId": "60S15VDDxL96Kih+ZzITAo",
  1622. "sync": false
  1623. },
  1624. {
  1625. "__type__": "cc.Mask",
  1626. "_name": "",
  1627. "_objFlags": 0,
  1628. "node": {
  1629. "__id__": 35
  1630. },
  1631. "_enabled": true,
  1632. "_materials": [
  1633. {
  1634. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1635. }
  1636. ],
  1637. "_spriteFrame": {
  1638. "__uuid__": "69bf0aa9-45a6-4ba3-8f19-692f5a4f8a2d"
  1639. },
  1640. "_type": 2,
  1641. "_segments": 64,
  1642. "_N$alphaThreshold": 0.1,
  1643. "_N$inverted": false,
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "cc.Button",
  1648. "_name": "",
  1649. "_objFlags": 0,
  1650. "node": {
  1651. "__id__": 35
  1652. },
  1653. "_enabled": true,
  1654. "_normalMaterial": null,
  1655. "_grayMaterial": null,
  1656. "duration": 0.1,
  1657. "zoomScale": 1.2,
  1658. "clickEvents": [
  1659. {
  1660. "__id__": 41
  1661. }
  1662. ],
  1663. "_N$interactable": true,
  1664. "_N$enableAutoGrayEffect": false,
  1665. "_N$transition": 0,
  1666. "transition": 0,
  1667. "_N$normalColor": {
  1668. "__type__": "cc.Color",
  1669. "r": 255,
  1670. "g": 255,
  1671. "b": 255,
  1672. "a": 255
  1673. },
  1674. "_N$pressedColor": {
  1675. "__type__": "cc.Color",
  1676. "r": 211,
  1677. "g": 211,
  1678. "b": 211,
  1679. "a": 255
  1680. },
  1681. "pressedColor": {
  1682. "__type__": "cc.Color",
  1683. "r": 211,
  1684. "g": 211,
  1685. "b": 211,
  1686. "a": 255
  1687. },
  1688. "_N$hoverColor": {
  1689. "__type__": "cc.Color",
  1690. "r": 255,
  1691. "g": 255,
  1692. "b": 255,
  1693. "a": 255
  1694. },
  1695. "hoverColor": {
  1696. "__type__": "cc.Color",
  1697. "r": 255,
  1698. "g": 255,
  1699. "b": 255,
  1700. "a": 255
  1701. },
  1702. "_N$disabledColor": {
  1703. "__type__": "cc.Color",
  1704. "r": 124,
  1705. "g": 124,
  1706. "b": 124,
  1707. "a": 255
  1708. },
  1709. "_N$normalSprite": null,
  1710. "_N$pressedSprite": null,
  1711. "pressedSprite": null,
  1712. "_N$hoverSprite": null,
  1713. "hoverSprite": null,
  1714. "_N$disabledSprite": null,
  1715. "_N$target": null,
  1716. "_id": ""
  1717. },
  1718. {
  1719. "__type__": "cc.ClickEvent",
  1720. "target": null,
  1721. "component": "",
  1722. "_componentId": "6cec48K3X9GK6QSjqp7IWnc",
  1723. "handler": "onClickWxAuth",
  1724. "customEventData": ""
  1725. },
  1726. {
  1727. "__type__": "cc.PrefabInfo",
  1728. "root": {
  1729. "__id__": 1
  1730. },
  1731. "asset": {
  1732. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1733. },
  1734. "fileId": "04t2L8UQxLa4tLxDiWBVFD",
  1735. "sync": false
  1736. },
  1737. {
  1738. "__type__": "cc.Node",
  1739. "_name": "head",
  1740. "_objFlags": 0,
  1741. "_parent": {
  1742. "__id__": 34
  1743. },
  1744. "_children": [],
  1745. "_active": true,
  1746. "_components": [
  1747. {
  1748. "__id__": 44
  1749. }
  1750. ],
  1751. "_prefab": {
  1752. "__id__": 45
  1753. },
  1754. "_opacity": 255,
  1755. "_color": {
  1756. "__type__": "cc.Color",
  1757. "r": 255,
  1758. "g": 255,
  1759. "b": 255,
  1760. "a": 255
  1761. },
  1762. "_contentSize": {
  1763. "__type__": "cc.Size",
  1764. "width": 128,
  1765. "height": 128
  1766. },
  1767. "_anchorPoint": {
  1768. "__type__": "cc.Vec2",
  1769. "x": 0.5,
  1770. "y": 0.5
  1771. },
  1772. "_trs": {
  1773. "__type__": "TypedArray",
  1774. "ctor": "Float64Array",
  1775. "array": [
  1776. -217.265,
  1777. -3.254,
  1778. 0,
  1779. 0,
  1780. 0,
  1781. 0,
  1782. 1,
  1783. 1,
  1784. 1,
  1785. 1
  1786. ]
  1787. },
  1788. "_eulerAngles": {
  1789. "__type__": "cc.Vec3",
  1790. "x": 0,
  1791. "y": 0,
  1792. "z": 0
  1793. },
  1794. "_skewX": 0,
  1795. "_skewY": 0,
  1796. "_is3DNode": false,
  1797. "_groupIndex": 0,
  1798. "groupIndex": 0,
  1799. "_id": ""
  1800. },
  1801. {
  1802. "__type__": "cc.Sprite",
  1803. "_name": "",
  1804. "_objFlags": 0,
  1805. "node": {
  1806. "__id__": 43
  1807. },
  1808. "_enabled": true,
  1809. "_materials": [
  1810. {
  1811. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1812. }
  1813. ],
  1814. "_srcBlendFactor": 770,
  1815. "_dstBlendFactor": 771,
  1816. "_spriteFrame": {
  1817. "__uuid__": "dce69ccc-0231-4f36-a10a-db718652fdd9"
  1818. },
  1819. "_type": 0,
  1820. "_sizeMode": 1,
  1821. "_fillType": 0,
  1822. "_fillCenter": {
  1823. "__type__": "cc.Vec2",
  1824. "x": 0,
  1825. "y": 0
  1826. },
  1827. "_fillStart": 0,
  1828. "_fillRange": 0,
  1829. "_isTrimmedMode": true,
  1830. "_atlas": null,
  1831. "_id": ""
  1832. },
  1833. {
  1834. "__type__": "cc.PrefabInfo",
  1835. "root": {
  1836. "__id__": 1
  1837. },
  1838. "asset": {
  1839. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1840. },
  1841. "fileId": "db/jBMmkZPu7CQ20niwbPL",
  1842. "sync": false
  1843. },
  1844. {
  1845. "__type__": "cc.Node",
  1846. "_name": "lblName",
  1847. "_objFlags": 0,
  1848. "_parent": {
  1849. "__id__": 34
  1850. },
  1851. "_children": [],
  1852. "_active": true,
  1853. "_components": [
  1854. {
  1855. "__id__": 47
  1856. },
  1857. {
  1858. "__id__": 48
  1859. }
  1860. ],
  1861. "_prefab": {
  1862. "__id__": 49
  1863. },
  1864. "_opacity": 255,
  1865. "_color": {
  1866. "__type__": "cc.Color",
  1867. "r": 157,
  1868. "g": 104,
  1869. "b": 0,
  1870. "a": 255
  1871. },
  1872. "_contentSize": {
  1873. "__type__": "cc.Size",
  1874. "width": 132,
  1875. "height": 44.32
  1876. },
  1877. "_anchorPoint": {
  1878. "__type__": "cc.Vec2",
  1879. "x": 0,
  1880. "y": 0.5
  1881. },
  1882. "_trs": {
  1883. "__type__": "TypedArray",
  1884. "ctor": "Float64Array",
  1885. "array": [
  1886. -118.156,
  1887. 43.228,
  1888. 0,
  1889. 0,
  1890. 0,
  1891. 0,
  1892. 1,
  1893. 1,
  1894. 1,
  1895. 1
  1896. ]
  1897. },
  1898. "_eulerAngles": {
  1899. "__type__": "cc.Vec3",
  1900. "x": 0,
  1901. "y": 0,
  1902. "z": 0
  1903. },
  1904. "_skewX": 0,
  1905. "_skewY": 0,
  1906. "_is3DNode": false,
  1907. "_groupIndex": 0,
  1908. "groupIndex": 0,
  1909. "_id": ""
  1910. },
  1911. {
  1912. "__type__": "cc.Label",
  1913. "_name": "",
  1914. "_objFlags": 0,
  1915. "node": {
  1916. "__id__": 46
  1917. },
  1918. "_enabled": true,
  1919. "_materials": [
  1920. {
  1921. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1922. }
  1923. ],
  1924. "_srcBlendFactor": 770,
  1925. "_dstBlendFactor": 771,
  1926. "_string": "我的农场",
  1927. "_N$string": "我的农场",
  1928. "_fontSize": 32,
  1929. "_lineHeight": 32,
  1930. "_enableWrapText": true,
  1931. "_N$file": {
  1932. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  1933. },
  1934. "_isSystemFontUsed": false,
  1935. "_spacingX": 0,
  1936. "_batchAsBitmap": false,
  1937. "_styleFlags": 1,
  1938. "_underlineHeight": 0,
  1939. "_N$horizontalAlign": 0,
  1940. "_N$verticalAlign": 0,
  1941. "_N$fontFamily": "Arial",
  1942. "_N$overflow": 0,
  1943. "_N$cacheMode": 0,
  1944. "_id": ""
  1945. },
  1946. {
  1947. "__type__": "cc.LabelOutline",
  1948. "_name": "",
  1949. "_objFlags": 0,
  1950. "node": {
  1951. "__id__": 46
  1952. },
  1953. "_enabled": true,
  1954. "_color": {
  1955. "__type__": "cc.Color",
  1956. "r": 253,
  1957. "g": 255,
  1958. "b": 229,
  1959. "a": 255
  1960. },
  1961. "_width": 2,
  1962. "_id": ""
  1963. },
  1964. {
  1965. "__type__": "cc.PrefabInfo",
  1966. "root": {
  1967. "__id__": 1
  1968. },
  1969. "asset": {
  1970. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  1971. },
  1972. "fileId": "1486kQ0sFOxZd5VZWukgc7",
  1973. "sync": false
  1974. },
  1975. {
  1976. "__type__": "cc.Node",
  1977. "_name": "lblLv",
  1978. "_objFlags": 0,
  1979. "_parent": {
  1980. "__id__": 34
  1981. },
  1982. "_children": [],
  1983. "_active": true,
  1984. "_components": [
  1985. {
  1986. "__id__": 51
  1987. },
  1988. {
  1989. "__id__": 52
  1990. }
  1991. ],
  1992. "_prefab": {
  1993. "__id__": 53
  1994. },
  1995. "_opacity": 255,
  1996. "_color": {
  1997. "__type__": "cc.Color",
  1998. "r": 157,
  1999. "g": 104,
  2000. "b": 0,
  2001. "a": 255
  2002. },
  2003. "_contentSize": {
  2004. "__type__": "cc.Size",
  2005. "width": 130,
  2006. "height": 44.32
  2007. },
  2008. "_anchorPoint": {
  2009. "__type__": "cc.Vec2",
  2010. "x": 0,
  2011. "y": 0.5
  2012. },
  2013. "_trs": {
  2014. "__type__": "TypedArray",
  2015. "ctor": "Float64Array",
  2016. "array": [
  2017. -118.156,
  2018. -1.375,
  2019. 0,
  2020. 0,
  2021. 0,
  2022. 0,
  2023. 1,
  2024. 1,
  2025. 1,
  2026. 1
  2027. ]
  2028. },
  2029. "_eulerAngles": {
  2030. "__type__": "cc.Vec3",
  2031. "x": 0,
  2032. "y": 0,
  2033. "z": 0
  2034. },
  2035. "_skewX": 0,
  2036. "_skewY": 0,
  2037. "_is3DNode": false,
  2038. "_groupIndex": 0,
  2039. "groupIndex": 0,
  2040. "_id": ""
  2041. },
  2042. {
  2043. "__type__": "cc.Label",
  2044. "_name": "",
  2045. "_objFlags": 0,
  2046. "node": {
  2047. "__id__": 50
  2048. },
  2049. "_enabled": true,
  2050. "_materials": [
  2051. {
  2052. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2053. }
  2054. ],
  2055. "_srcBlendFactor": 770,
  2056. "_dstBlendFactor": 771,
  2057. "_string": "等级:15",
  2058. "_N$string": "等级:15",
  2059. "_fontSize": 32,
  2060. "_lineHeight": 32,
  2061. "_enableWrapText": true,
  2062. "_N$file": {
  2063. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  2064. },
  2065. "_isSystemFontUsed": false,
  2066. "_spacingX": 0,
  2067. "_batchAsBitmap": false,
  2068. "_styleFlags": 1,
  2069. "_underlineHeight": 0,
  2070. "_N$horizontalAlign": 0,
  2071. "_N$verticalAlign": 0,
  2072. "_N$fontFamily": "Arial",
  2073. "_N$overflow": 0,
  2074. "_N$cacheMode": 0,
  2075. "_id": ""
  2076. },
  2077. {
  2078. "__type__": "cc.LabelOutline",
  2079. "_name": "",
  2080. "_objFlags": 0,
  2081. "node": {
  2082. "__id__": 50
  2083. },
  2084. "_enabled": true,
  2085. "_color": {
  2086. "__type__": "cc.Color",
  2087. "r": 253,
  2088. "g": 255,
  2089. "b": 229,
  2090. "a": 255
  2091. },
  2092. "_width": 2,
  2093. "_id": ""
  2094. },
  2095. {
  2096. "__type__": "cc.PrefabInfo",
  2097. "root": {
  2098. "__id__": 1
  2099. },
  2100. "asset": {
  2101. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2102. },
  2103. "fileId": "cb/wmC8B5OH5agkAzVzjws",
  2104. "sync": false
  2105. },
  2106. {
  2107. "__type__": "cc.Node",
  2108. "_name": "proExp",
  2109. "_objFlags": 0,
  2110. "_parent": {
  2111. "__id__": 34
  2112. },
  2113. "_children": [
  2114. {
  2115. "__id__": 55
  2116. }
  2117. ],
  2118. "_active": true,
  2119. "_components": [
  2120. {
  2121. "__id__": 58
  2122. },
  2123. {
  2124. "__id__": 59
  2125. }
  2126. ],
  2127. "_prefab": {
  2128. "__id__": 60
  2129. },
  2130. "_opacity": 255,
  2131. "_color": {
  2132. "__type__": "cc.Color",
  2133. "r": 255,
  2134. "g": 255,
  2135. "b": 255,
  2136. "a": 255
  2137. },
  2138. "_contentSize": {
  2139. "__type__": "cc.Size",
  2140. "width": 300,
  2141. "height": 30
  2142. },
  2143. "_anchorPoint": {
  2144. "__type__": "cc.Vec2",
  2145. "x": 0.5,
  2146. "y": 0.5
  2147. },
  2148. "_trs": {
  2149. "__type__": "TypedArray",
  2150. "ctor": "Float64Array",
  2151. "array": [
  2152. 29,
  2153. -48.198,
  2154. 0,
  2155. 0,
  2156. 0,
  2157. 0,
  2158. 1,
  2159. 1,
  2160. 1,
  2161. 1
  2162. ]
  2163. },
  2164. "_eulerAngles": {
  2165. "__type__": "cc.Vec3",
  2166. "x": 0,
  2167. "y": 0,
  2168. "z": 0
  2169. },
  2170. "_skewX": 0,
  2171. "_skewY": 0,
  2172. "_is3DNode": false,
  2173. "_groupIndex": 0,
  2174. "groupIndex": 0,
  2175. "_id": ""
  2176. },
  2177. {
  2178. "__type__": "cc.Node",
  2179. "_name": "bar",
  2180. "_objFlags": 512,
  2181. "_parent": {
  2182. "__id__": 54
  2183. },
  2184. "_children": [],
  2185. "_active": true,
  2186. "_components": [
  2187. {
  2188. "__id__": 56
  2189. }
  2190. ],
  2191. "_prefab": {
  2192. "__id__": 57
  2193. },
  2194. "_opacity": 255,
  2195. "_color": {
  2196. "__type__": "cc.Color",
  2197. "r": 255,
  2198. "g": 255,
  2199. "b": 255,
  2200. "a": 255
  2201. },
  2202. "_contentSize": {
  2203. "__type__": "cc.Size",
  2204. "width": 87.6,
  2205. "height": 20
  2206. },
  2207. "_anchorPoint": {
  2208. "__type__": "cc.Vec2",
  2209. "x": 0,
  2210. "y": 0.5
  2211. },
  2212. "_trs": {
  2213. "__type__": "TypedArray",
  2214. "ctor": "Float64Array",
  2215. "array": [
  2216. -146,
  2217. 3,
  2218. 0,
  2219. 0,
  2220. 0,
  2221. 0,
  2222. 1,
  2223. 1,
  2224. 1,
  2225. 1
  2226. ]
  2227. },
  2228. "_eulerAngles": {
  2229. "__type__": "cc.Vec3",
  2230. "x": 0,
  2231. "y": 0,
  2232. "z": 0
  2233. },
  2234. "_skewX": 0,
  2235. "_skewY": 0,
  2236. "_is3DNode": false,
  2237. "_groupIndex": 0,
  2238. "groupIndex": 0,
  2239. "_id": ""
  2240. },
  2241. {
  2242. "__type__": "cc.Sprite",
  2243. "_name": "",
  2244. "_objFlags": 0,
  2245. "node": {
  2246. "__id__": 55
  2247. },
  2248. "_enabled": true,
  2249. "_materials": [
  2250. {
  2251. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2252. }
  2253. ],
  2254. "_srcBlendFactor": 770,
  2255. "_dstBlendFactor": 771,
  2256. "_spriteFrame": {
  2257. "__uuid__": "c5169b05-502d-4651-bdf5-e96bf6cf5ece"
  2258. },
  2259. "_type": 1,
  2260. "_sizeMode": 0,
  2261. "_fillType": 0,
  2262. "_fillCenter": {
  2263. "__type__": "cc.Vec2",
  2264. "x": 0,
  2265. "y": 0
  2266. },
  2267. "_fillStart": 0,
  2268. "_fillRange": 0,
  2269. "_isTrimmedMode": true,
  2270. "_atlas": null,
  2271. "_id": ""
  2272. },
  2273. {
  2274. "__type__": "cc.PrefabInfo",
  2275. "root": {
  2276. "__id__": 1
  2277. },
  2278. "asset": {
  2279. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2280. },
  2281. "fileId": "84x7QYKThEP798dtjY4c1w",
  2282. "sync": false
  2283. },
  2284. {
  2285. "__type__": "cc.Sprite",
  2286. "_name": "",
  2287. "_objFlags": 0,
  2288. "node": {
  2289. "__id__": 54
  2290. },
  2291. "_enabled": true,
  2292. "_materials": [
  2293. {
  2294. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2295. }
  2296. ],
  2297. "_srcBlendFactor": 770,
  2298. "_dstBlendFactor": 771,
  2299. "_spriteFrame": {
  2300. "__uuid__": "71698aba-d95a-4600-b2b4-8f33f4d45e2f"
  2301. },
  2302. "_type": 1,
  2303. "_sizeMode": 0,
  2304. "_fillType": 0,
  2305. "_fillCenter": {
  2306. "__type__": "cc.Vec2",
  2307. "x": 0,
  2308. "y": 0
  2309. },
  2310. "_fillStart": 0,
  2311. "_fillRange": 0,
  2312. "_isTrimmedMode": true,
  2313. "_atlas": null,
  2314. "_id": ""
  2315. },
  2316. {
  2317. "__type__": "cc.ProgressBar",
  2318. "_name": "",
  2319. "_objFlags": 0,
  2320. "node": {
  2321. "__id__": 54
  2322. },
  2323. "_enabled": true,
  2324. "_N$totalLength": 292,
  2325. "_N$barSprite": {
  2326. "__id__": 56
  2327. },
  2328. "_N$mode": 0,
  2329. "_N$progress": 0.3,
  2330. "_N$reverse": false,
  2331. "_id": ""
  2332. },
  2333. {
  2334. "__type__": "cc.PrefabInfo",
  2335. "root": {
  2336. "__id__": 1
  2337. },
  2338. "asset": {
  2339. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2340. },
  2341. "fileId": "30CJIgEUVKLJSM0fre4uz8",
  2342. "sync": false
  2343. },
  2344. {
  2345. "__type__": "cc.Node",
  2346. "_name": "lblPro",
  2347. "_objFlags": 0,
  2348. "_parent": {
  2349. "__id__": 34
  2350. },
  2351. "_children": [],
  2352. "_active": true,
  2353. "_components": [
  2354. {
  2355. "__id__": 62
  2356. }
  2357. ],
  2358. "_prefab": {
  2359. "__id__": 63
  2360. },
  2361. "_opacity": 255,
  2362. "_color": {
  2363. "__type__": "cc.Color",
  2364. "r": 255,
  2365. "g": 255,
  2366. "b": 255,
  2367. "a": 255
  2368. },
  2369. "_contentSize": {
  2370. "__type__": "cc.Size",
  2371. "width": 37.19,
  2372. "height": 25.2
  2373. },
  2374. "_anchorPoint": {
  2375. "__type__": "cc.Vec2",
  2376. "x": 0.5,
  2377. "y": 0.5
  2378. },
  2379. "_trs": {
  2380. "__type__": "TypedArray",
  2381. "ctor": "Float64Array",
  2382. "array": [
  2383. 29,
  2384. -48.461,
  2385. 0,
  2386. 0,
  2387. 0,
  2388. 0,
  2389. 1,
  2390. 1,
  2391. 1,
  2392. 1
  2393. ]
  2394. },
  2395. "_eulerAngles": {
  2396. "__type__": "cc.Vec3",
  2397. "x": 0,
  2398. "y": 0,
  2399. "z": 0
  2400. },
  2401. "_skewX": 0,
  2402. "_skewY": 0,
  2403. "_is3DNode": false,
  2404. "_groupIndex": 0,
  2405. "groupIndex": 0,
  2406. "_id": ""
  2407. },
  2408. {
  2409. "__type__": "cc.Label",
  2410. "_name": "",
  2411. "_objFlags": 0,
  2412. "node": {
  2413. "__id__": 61
  2414. },
  2415. "_enabled": true,
  2416. "_materials": [
  2417. {
  2418. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2419. }
  2420. ],
  2421. "_srcBlendFactor": 770,
  2422. "_dstBlendFactor": 771,
  2423. "_string": "30%",
  2424. "_N$string": "30%",
  2425. "_fontSize": 20,
  2426. "_lineHeight": 20,
  2427. "_enableWrapText": true,
  2428. "_N$file": {
  2429. "__uuid__": "0bc2f1e8-1dd4-45ba-8f7e-36c47dde4152"
  2430. },
  2431. "_isSystemFontUsed": false,
  2432. "_spacingX": 0,
  2433. "_batchAsBitmap": false,
  2434. "_styleFlags": 1,
  2435. "_underlineHeight": 0,
  2436. "_N$horizontalAlign": 0,
  2437. "_N$verticalAlign": 0,
  2438. "_N$fontFamily": "Arial",
  2439. "_N$overflow": 0,
  2440. "_N$cacheMode": 0,
  2441. "_id": ""
  2442. },
  2443. {
  2444. "__type__": "cc.PrefabInfo",
  2445. "root": {
  2446. "__id__": 1
  2447. },
  2448. "asset": {
  2449. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2450. },
  2451. "fileId": "1bu224UqBL6oIY4rrm+LmX",
  2452. "sync": false
  2453. },
  2454. {
  2455. "__type__": "cc.Sprite",
  2456. "_name": "",
  2457. "_objFlags": 0,
  2458. "node": {
  2459. "__id__": 34
  2460. },
  2461. "_enabled": true,
  2462. "_materials": [
  2463. {
  2464. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2465. }
  2466. ],
  2467. "_srcBlendFactor": 770,
  2468. "_dstBlendFactor": 771,
  2469. "_spriteFrame": {
  2470. "__uuid__": "994e0c20-7be9-453a-aaba-94dbc0fc0787"
  2471. },
  2472. "_type": 1,
  2473. "_sizeMode": 0,
  2474. "_fillType": 0,
  2475. "_fillCenter": {
  2476. "__type__": "cc.Vec2",
  2477. "x": 0,
  2478. "y": 0
  2479. },
  2480. "_fillStart": 0,
  2481. "_fillRange": 0,
  2482. "_isTrimmedMode": true,
  2483. "_atlas": null,
  2484. "_id": ""
  2485. },
  2486. {
  2487. "__type__": "cc.PrefabInfo",
  2488. "root": {
  2489. "__id__": 1
  2490. },
  2491. "asset": {
  2492. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2493. },
  2494. "fileId": "efjlf2yORL3LRipaRnvnnr",
  2495. "sync": false
  2496. },
  2497. {
  2498. "__type__": "cc.Node",
  2499. "_name": "bg2",
  2500. "_objFlags": 0,
  2501. "_parent": {
  2502. "__id__": 3
  2503. },
  2504. "_children": [
  2505. {
  2506. "__id__": 67
  2507. },
  2508. {
  2509. "__id__": 77
  2510. }
  2511. ],
  2512. "_active": true,
  2513. "_components": [
  2514. {
  2515. "__id__": 87
  2516. }
  2517. ],
  2518. "_prefab": {
  2519. "__id__": 88
  2520. },
  2521. "_opacity": 255,
  2522. "_color": {
  2523. "__type__": "cc.Color",
  2524. "r": 255,
  2525. "g": 255,
  2526. "b": 255,
  2527. "a": 255
  2528. },
  2529. "_contentSize": {
  2530. "__type__": "cc.Size",
  2531. "width": 623,
  2532. "height": 631
  2533. },
  2534. "_anchorPoint": {
  2535. "__type__": "cc.Vec2",
  2536. "x": 0.5,
  2537. "y": 0.5
  2538. },
  2539. "_trs": {
  2540. "__type__": "TypedArray",
  2541. "ctor": "Float64Array",
  2542. "array": [
  2543. 0,
  2544. -125,
  2545. 0,
  2546. 0,
  2547. 0,
  2548. 0,
  2549. 1,
  2550. 1,
  2551. 1,
  2552. 1
  2553. ]
  2554. },
  2555. "_eulerAngles": {
  2556. "__type__": "cc.Vec3",
  2557. "x": 0,
  2558. "y": 0,
  2559. "z": 0
  2560. },
  2561. "_skewX": 0,
  2562. "_skewY": 0,
  2563. "_is3DNode": false,
  2564. "_groupIndex": 0,
  2565. "groupIndex": 0,
  2566. "_id": ""
  2567. },
  2568. {
  2569. "__type__": "cc.Node",
  2570. "_name": "ScrollUnlock",
  2571. "_objFlags": 0,
  2572. "_parent": {
  2573. "__id__": 66
  2574. },
  2575. "_children": [
  2576. {
  2577. "__id__": 68
  2578. }
  2579. ],
  2580. "_active": true,
  2581. "_components": [
  2582. {
  2583. "__id__": 73
  2584. },
  2585. {
  2586. "__id__": 74
  2587. },
  2588. {
  2589. "__id__": 75
  2590. }
  2591. ],
  2592. "_prefab": {
  2593. "__id__": 76
  2594. },
  2595. "_opacity": 255,
  2596. "_color": {
  2597. "__type__": "cc.Color",
  2598. "r": 255,
  2599. "g": 255,
  2600. "b": 255,
  2601. "a": 255
  2602. },
  2603. "_contentSize": {
  2604. "__type__": "cc.Size",
  2605. "width": 600,
  2606. "height": 600
  2607. },
  2608. "_anchorPoint": {
  2609. "__type__": "cc.Vec2",
  2610. "x": 0.5,
  2611. "y": 0.5
  2612. },
  2613. "_trs": {
  2614. "__type__": "TypedArray",
  2615. "ctor": "Float64Array",
  2616. "array": [
  2617. 0,
  2618. 0,
  2619. 0,
  2620. 0,
  2621. 0,
  2622. 0,
  2623. 1,
  2624. 1,
  2625. 1,
  2626. 1
  2627. ]
  2628. },
  2629. "_eulerAngles": {
  2630. "__type__": "cc.Vec3",
  2631. "x": 0,
  2632. "y": 0,
  2633. "z": 0
  2634. },
  2635. "_skewX": 0,
  2636. "_skewY": 0,
  2637. "_is3DNode": false,
  2638. "_groupIndex": 0,
  2639. "groupIndex": 0,
  2640. "_id": ""
  2641. },
  2642. {
  2643. "__type__": "cc.Node",
  2644. "_name": "view",
  2645. "_objFlags": 512,
  2646. "_parent": {
  2647. "__id__": 67
  2648. },
  2649. "_children": [
  2650. {
  2651. "__id__": 69
  2652. }
  2653. ],
  2654. "_active": true,
  2655. "_components": [
  2656. {
  2657. "__id__": 71
  2658. }
  2659. ],
  2660. "_prefab": {
  2661. "__id__": 72
  2662. },
  2663. "_opacity": 255,
  2664. "_color": {
  2665. "__type__": "cc.Color",
  2666. "r": 255,
  2667. "g": 255,
  2668. "b": 255,
  2669. "a": 255
  2670. },
  2671. "_contentSize": {
  2672. "__type__": "cc.Size",
  2673. "width": 600,
  2674. "height": 600
  2675. },
  2676. "_anchorPoint": {
  2677. "__type__": "cc.Vec2",
  2678. "x": 0.5,
  2679. "y": 0.5
  2680. },
  2681. "_trs": {
  2682. "__type__": "TypedArray",
  2683. "ctor": "Float64Array",
  2684. "array": [
  2685. 0,
  2686. 0,
  2687. 0,
  2688. 0,
  2689. 0,
  2690. 0,
  2691. 1,
  2692. 1,
  2693. 1,
  2694. 1
  2695. ]
  2696. },
  2697. "_eulerAngles": {
  2698. "__type__": "cc.Vec3",
  2699. "x": 0,
  2700. "y": 0,
  2701. "z": 0
  2702. },
  2703. "_skewX": 0,
  2704. "_skewY": 0,
  2705. "_is3DNode": false,
  2706. "_groupIndex": 0,
  2707. "groupIndex": 0,
  2708. "_id": ""
  2709. },
  2710. {
  2711. "__type__": "cc.Node",
  2712. "_name": "content",
  2713. "_objFlags": 512,
  2714. "_parent": {
  2715. "__id__": 68
  2716. },
  2717. "_children": [],
  2718. "_active": true,
  2719. "_components": [],
  2720. "_prefab": {
  2721. "__id__": 70
  2722. },
  2723. "_opacity": 255,
  2724. "_color": {
  2725. "__type__": "cc.Color",
  2726. "r": 255,
  2727. "g": 255,
  2728. "b": 255,
  2729. "a": 255
  2730. },
  2731. "_contentSize": {
  2732. "__type__": "cc.Size",
  2733. "width": 600,
  2734. "height": 600
  2735. },
  2736. "_anchorPoint": {
  2737. "__type__": "cc.Vec2",
  2738. "x": 0.5,
  2739. "y": 1
  2740. },
  2741. "_trs": {
  2742. "__type__": "TypedArray",
  2743. "ctor": "Float64Array",
  2744. "array": [
  2745. 0,
  2746. 115.31,
  2747. 0,
  2748. 0,
  2749. 0,
  2750. 0,
  2751. 1,
  2752. 1,
  2753. 1,
  2754. 1
  2755. ]
  2756. },
  2757. "_eulerAngles": {
  2758. "__type__": "cc.Vec3",
  2759. "x": 0,
  2760. "y": 0,
  2761. "z": 0
  2762. },
  2763. "_skewX": 0,
  2764. "_skewY": 0,
  2765. "_is3DNode": false,
  2766. "_groupIndex": 0,
  2767. "groupIndex": 0,
  2768. "_id": ""
  2769. },
  2770. {
  2771. "__type__": "cc.PrefabInfo",
  2772. "root": {
  2773. "__id__": 1
  2774. },
  2775. "asset": {
  2776. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2777. },
  2778. "fileId": "25rF0L40tPELuEkRgP+5W0",
  2779. "sync": false
  2780. },
  2781. {
  2782. "__type__": "cc.Mask",
  2783. "_name": "",
  2784. "_objFlags": 0,
  2785. "node": {
  2786. "__id__": 68
  2787. },
  2788. "_enabled": true,
  2789. "_materials": [
  2790. {
  2791. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2792. }
  2793. ],
  2794. "_spriteFrame": null,
  2795. "_type": 0,
  2796. "_segments": 64,
  2797. "_N$alphaThreshold": 0,
  2798. "_N$inverted": false,
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.PrefabInfo",
  2803. "root": {
  2804. "__id__": 1
  2805. },
  2806. "asset": {
  2807. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2808. },
  2809. "fileId": "d4UekfaqZOLLyJiVgAyd4R",
  2810. "sync": false
  2811. },
  2812. {
  2813. "__type__": "cc.Sprite",
  2814. "_name": "",
  2815. "_objFlags": 0,
  2816. "node": {
  2817. "__id__": 67
  2818. },
  2819. "_enabled": true,
  2820. "_materials": [
  2821. {
  2822. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2823. }
  2824. ],
  2825. "_srcBlendFactor": 770,
  2826. "_dstBlendFactor": 771,
  2827. "_spriteFrame": null,
  2828. "_type": 1,
  2829. "_sizeMode": 0,
  2830. "_fillType": 0,
  2831. "_fillCenter": {
  2832. "__type__": "cc.Vec2",
  2833. "x": 0,
  2834. "y": 0
  2835. },
  2836. "_fillStart": 0,
  2837. "_fillRange": 0,
  2838. "_isTrimmedMode": true,
  2839. "_atlas": null,
  2840. "_id": ""
  2841. },
  2842. {
  2843. "__type__": "cc.ScrollView",
  2844. "_name": "",
  2845. "_objFlags": 0,
  2846. "node": {
  2847. "__id__": 67
  2848. },
  2849. "_enabled": true,
  2850. "horizontal": false,
  2851. "vertical": true,
  2852. "inertia": true,
  2853. "brake": 0.75,
  2854. "elastic": true,
  2855. "bounceDuration": 0.23,
  2856. "scrollEvents": [],
  2857. "cancelInnerEvents": true,
  2858. "_N$content": {
  2859. "__id__": 69
  2860. },
  2861. "content": {
  2862. "__id__": 69
  2863. },
  2864. "_N$horizontalScrollBar": null,
  2865. "_N$verticalScrollBar": null,
  2866. "_id": ""
  2867. },
  2868. {
  2869. "__type__": "9a31drXM+9NCKYkF9D78zlF",
  2870. "_name": "",
  2871. "_objFlags": 0,
  2872. "node": {
  2873. "__id__": 67
  2874. },
  2875. "_enabled": true,
  2876. "pre_item": [
  2877. {
  2878. "__uuid__": "67bfd267-7bfc-4899-ab74-1576c70ac3f9"
  2879. }
  2880. ],
  2881. "scr_item": [
  2882. "FarmLevelUnlockItem"
  2883. ],
  2884. "itemInterval": 10,
  2885. "node_xiabiao": null,
  2886. "isShowByLimitLength": false,
  2887. "limitLength": 0,
  2888. "direction": 1,
  2889. "isHideAllChild": false,
  2890. "limitDataLen": -1,
  2891. "addOffset": 10,
  2892. "_id": ""
  2893. },
  2894. {
  2895. "__type__": "cc.PrefabInfo",
  2896. "root": {
  2897. "__id__": 1
  2898. },
  2899. "asset": {
  2900. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  2901. },
  2902. "fileId": "599jFHyUlCO5XJdL1IVcv4",
  2903. "sync": false
  2904. },
  2905. {
  2906. "__type__": "cc.Node",
  2907. "_name": "ScrollStore",
  2908. "_objFlags": 0,
  2909. "_parent": {
  2910. "__id__": 66
  2911. },
  2912. "_children": [
  2913. {
  2914. "__id__": 78
  2915. }
  2916. ],
  2917. "_active": true,
  2918. "_components": [
  2919. {
  2920. "__id__": 83
  2921. },
  2922. {
  2923. "__id__": 84
  2924. },
  2925. {
  2926. "__id__": 85
  2927. }
  2928. ],
  2929. "_prefab": {
  2930. "__id__": 86
  2931. },
  2932. "_opacity": 255,
  2933. "_color": {
  2934. "__type__": "cc.Color",
  2935. "r": 255,
  2936. "g": 255,
  2937. "b": 255,
  2938. "a": 255
  2939. },
  2940. "_contentSize": {
  2941. "__type__": "cc.Size",
  2942. "width": 600,
  2943. "height": 600
  2944. },
  2945. "_anchorPoint": {
  2946. "__type__": "cc.Vec2",
  2947. "x": 0.5,
  2948. "y": 0.5
  2949. },
  2950. "_trs": {
  2951. "__type__": "TypedArray",
  2952. "ctor": "Float64Array",
  2953. "array": [
  2954. 0,
  2955. 0,
  2956. 0,
  2957. 0,
  2958. 0,
  2959. 0,
  2960. 1,
  2961. 1,
  2962. 1,
  2963. 1
  2964. ]
  2965. },
  2966. "_eulerAngles": {
  2967. "__type__": "cc.Vec3",
  2968. "x": 0,
  2969. "y": 0,
  2970. "z": 0
  2971. },
  2972. "_skewX": 0,
  2973. "_skewY": 0,
  2974. "_is3DNode": false,
  2975. "_groupIndex": 0,
  2976. "groupIndex": 0,
  2977. "_id": ""
  2978. },
  2979. {
  2980. "__type__": "cc.Node",
  2981. "_name": "view",
  2982. "_objFlags": 512,
  2983. "_parent": {
  2984. "__id__": 77
  2985. },
  2986. "_children": [
  2987. {
  2988. "__id__": 79
  2989. }
  2990. ],
  2991. "_active": true,
  2992. "_components": [
  2993. {
  2994. "__id__": 81
  2995. }
  2996. ],
  2997. "_prefab": {
  2998. "__id__": 82
  2999. },
  3000. "_opacity": 255,
  3001. "_color": {
  3002. "__type__": "cc.Color",
  3003. "r": 255,
  3004. "g": 255,
  3005. "b": 255,
  3006. "a": 255
  3007. },
  3008. "_contentSize": {
  3009. "__type__": "cc.Size",
  3010. "width": 600,
  3011. "height": 600
  3012. },
  3013. "_anchorPoint": {
  3014. "__type__": "cc.Vec2",
  3015. "x": 0.5,
  3016. "y": 0.5
  3017. },
  3018. "_trs": {
  3019. "__type__": "TypedArray",
  3020. "ctor": "Float64Array",
  3021. "array": [
  3022. 0,
  3023. 0,
  3024. 0,
  3025. 0,
  3026. 0,
  3027. 0,
  3028. 1,
  3029. 1,
  3030. 1,
  3031. 1
  3032. ]
  3033. },
  3034. "_eulerAngles": {
  3035. "__type__": "cc.Vec3",
  3036. "x": 0,
  3037. "y": 0,
  3038. "z": 0
  3039. },
  3040. "_skewX": 0,
  3041. "_skewY": 0,
  3042. "_is3DNode": false,
  3043. "_groupIndex": 0,
  3044. "groupIndex": 0,
  3045. "_id": ""
  3046. },
  3047. {
  3048. "__type__": "cc.Node",
  3049. "_name": "content",
  3050. "_objFlags": 512,
  3051. "_parent": {
  3052. "__id__": 78
  3053. },
  3054. "_children": [],
  3055. "_active": true,
  3056. "_components": [],
  3057. "_prefab": {
  3058. "__id__": 80
  3059. },
  3060. "_opacity": 255,
  3061. "_color": {
  3062. "__type__": "cc.Color",
  3063. "r": 255,
  3064. "g": 255,
  3065. "b": 255,
  3066. "a": 255
  3067. },
  3068. "_contentSize": {
  3069. "__type__": "cc.Size",
  3070. "width": 600,
  3071. "height": 600
  3072. },
  3073. "_anchorPoint": {
  3074. "__type__": "cc.Vec2",
  3075. "x": 0.5,
  3076. "y": 1
  3077. },
  3078. "_trs": {
  3079. "__type__": "TypedArray",
  3080. "ctor": "Float64Array",
  3081. "array": [
  3082. 0,
  3083. 300,
  3084. 0,
  3085. 0,
  3086. 0,
  3087. 0,
  3088. 1,
  3089. 1,
  3090. 1,
  3091. 1
  3092. ]
  3093. },
  3094. "_eulerAngles": {
  3095. "__type__": "cc.Vec3",
  3096. "x": 0,
  3097. "y": 0,
  3098. "z": 0
  3099. },
  3100. "_skewX": 0,
  3101. "_skewY": 0,
  3102. "_is3DNode": false,
  3103. "_groupIndex": 0,
  3104. "groupIndex": 0,
  3105. "_id": ""
  3106. },
  3107. {
  3108. "__type__": "cc.PrefabInfo",
  3109. "root": {
  3110. "__id__": 1
  3111. },
  3112. "asset": {
  3113. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3114. },
  3115. "fileId": "1dJkFRXOxIUbE9RoNMDyZ0",
  3116. "sync": false
  3117. },
  3118. {
  3119. "__type__": "cc.Mask",
  3120. "_name": "",
  3121. "_objFlags": 0,
  3122. "node": {
  3123. "__id__": 78
  3124. },
  3125. "_enabled": true,
  3126. "_materials": [
  3127. {
  3128. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3129. }
  3130. ],
  3131. "_spriteFrame": null,
  3132. "_type": 0,
  3133. "_segments": 64,
  3134. "_N$alphaThreshold": 0,
  3135. "_N$inverted": false,
  3136. "_id": ""
  3137. },
  3138. {
  3139. "__type__": "cc.PrefabInfo",
  3140. "root": {
  3141. "__id__": 1
  3142. },
  3143. "asset": {
  3144. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3145. },
  3146. "fileId": "c3PAVP64dOQKfAhStUb4jm",
  3147. "sync": false
  3148. },
  3149. {
  3150. "__type__": "cc.Sprite",
  3151. "_name": "",
  3152. "_objFlags": 0,
  3153. "node": {
  3154. "__id__": 77
  3155. },
  3156. "_enabled": true,
  3157. "_materials": [
  3158. {
  3159. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3160. }
  3161. ],
  3162. "_srcBlendFactor": 770,
  3163. "_dstBlendFactor": 771,
  3164. "_spriteFrame": null,
  3165. "_type": 1,
  3166. "_sizeMode": 0,
  3167. "_fillType": 0,
  3168. "_fillCenter": {
  3169. "__type__": "cc.Vec2",
  3170. "x": 0,
  3171. "y": 0
  3172. },
  3173. "_fillStart": 0,
  3174. "_fillRange": 0,
  3175. "_isTrimmedMode": true,
  3176. "_atlas": null,
  3177. "_id": ""
  3178. },
  3179. {
  3180. "__type__": "cc.ScrollView",
  3181. "_name": "",
  3182. "_objFlags": 0,
  3183. "node": {
  3184. "__id__": 77
  3185. },
  3186. "_enabled": true,
  3187. "horizontal": false,
  3188. "vertical": true,
  3189. "inertia": true,
  3190. "brake": 0.75,
  3191. "elastic": true,
  3192. "bounceDuration": 0.23,
  3193. "scrollEvents": [],
  3194. "cancelInnerEvents": true,
  3195. "_N$content": {
  3196. "__id__": 79
  3197. },
  3198. "content": {
  3199. "__id__": 79
  3200. },
  3201. "_N$horizontalScrollBar": null,
  3202. "_N$verticalScrollBar": null,
  3203. "_id": ""
  3204. },
  3205. {
  3206. "__type__": "9a31drXM+9NCKYkF9D78zlF",
  3207. "_name": "",
  3208. "_objFlags": 0,
  3209. "node": {
  3210. "__id__": 77
  3211. },
  3212. "_enabled": true,
  3213. "pre_item": [
  3214. {
  3215. "__uuid__": "3bd5824d-b3b9-4674-9172-bf9089ebd084"
  3216. }
  3217. ],
  3218. "scr_item": [
  3219. "FarmLevelStoreItem"
  3220. ],
  3221. "itemInterval": 10,
  3222. "node_xiabiao": null,
  3223. "isShowByLimitLength": false,
  3224. "limitLength": 0,
  3225. "direction": 1,
  3226. "isHideAllChild": false,
  3227. "limitDataLen": -1,
  3228. "addOffset": 10,
  3229. "_id": ""
  3230. },
  3231. {
  3232. "__type__": "cc.PrefabInfo",
  3233. "root": {
  3234. "__id__": 1
  3235. },
  3236. "asset": {
  3237. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3238. },
  3239. "fileId": "a5bCZ7IU1A1r2tuI9E1xCr",
  3240. "sync": false
  3241. },
  3242. {
  3243. "__type__": "cc.Sprite",
  3244. "_name": "",
  3245. "_objFlags": 0,
  3246. "node": {
  3247. "__id__": 66
  3248. },
  3249. "_enabled": true,
  3250. "_materials": [
  3251. {
  3252. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3253. }
  3254. ],
  3255. "_srcBlendFactor": 770,
  3256. "_dstBlendFactor": 771,
  3257. "_spriteFrame": {
  3258. "__uuid__": "994e0c20-7be9-453a-aaba-94dbc0fc0787"
  3259. },
  3260. "_type": 1,
  3261. "_sizeMode": 0,
  3262. "_fillType": 0,
  3263. "_fillCenter": {
  3264. "__type__": "cc.Vec2",
  3265. "x": 0,
  3266. "y": 0
  3267. },
  3268. "_fillStart": 0,
  3269. "_fillRange": 0,
  3270. "_isTrimmedMode": true,
  3271. "_atlas": null,
  3272. "_id": ""
  3273. },
  3274. {
  3275. "__type__": "cc.PrefabInfo",
  3276. "root": {
  3277. "__id__": 1
  3278. },
  3279. "asset": {
  3280. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3281. },
  3282. "fileId": "f6SeGFeyVKVK/5FCjMaWMu",
  3283. "sync": false
  3284. },
  3285. {
  3286. "__type__": "cc.Node",
  3287. "_name": "closeBtn",
  3288. "_objFlags": 0,
  3289. "_parent": {
  3290. "__id__": 3
  3291. },
  3292. "_children": [],
  3293. "_active": true,
  3294. "_components": [
  3295. {
  3296. "__id__": 90
  3297. },
  3298. {
  3299. "__id__": 91
  3300. },
  3301. {
  3302. "__id__": 92
  3303. }
  3304. ],
  3305. "_prefab": {
  3306. "__id__": 97
  3307. },
  3308. "_opacity": 255,
  3309. "_color": {
  3310. "__type__": "cc.Color",
  3311. "r": 255,
  3312. "g": 255,
  3313. "b": 255,
  3314. "a": 255
  3315. },
  3316. "_contentSize": {
  3317. "__type__": "cc.Size",
  3318. "width": 82,
  3319. "height": 87
  3320. },
  3321. "_anchorPoint": {
  3322. "__type__": "cc.Vec2",
  3323. "x": 0.5,
  3324. "y": 0.5
  3325. },
  3326. "_trs": {
  3327. "__type__": "TypedArray",
  3328. "ctor": "Float64Array",
  3329. "array": [
  3330. 317.829,
  3331. 706.424,
  3332. 0,
  3333. 0,
  3334. 0,
  3335. 0,
  3336. 1,
  3337. 1,
  3338. 1,
  3339. 1
  3340. ]
  3341. },
  3342. "_eulerAngles": {
  3343. "__type__": "cc.Vec3",
  3344. "x": 0,
  3345. "y": 0,
  3346. "z": 0
  3347. },
  3348. "_skewX": 0,
  3349. "_skewY": 0,
  3350. "_is3DNode": false,
  3351. "_groupIndex": 0,
  3352. "groupIndex": 0,
  3353. "_id": ""
  3354. },
  3355. {
  3356. "__type__": "cc.Sprite",
  3357. "_name": "",
  3358. "_objFlags": 0,
  3359. "node": {
  3360. "__id__": 89
  3361. },
  3362. "_enabled": true,
  3363. "_materials": [
  3364. {
  3365. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3366. }
  3367. ],
  3368. "_srcBlendFactor": 770,
  3369. "_dstBlendFactor": 771,
  3370. "_spriteFrame": {
  3371. "__uuid__": "af2a7472-1f78-414a-8307-5ac0edead809"
  3372. },
  3373. "_type": 0,
  3374. "_sizeMode": 1,
  3375. "_fillType": 0,
  3376. "_fillCenter": {
  3377. "__type__": "cc.Vec2",
  3378. "x": 0,
  3379. "y": 0
  3380. },
  3381. "_fillStart": 0,
  3382. "_fillRange": 0,
  3383. "_isTrimmedMode": true,
  3384. "_atlas": null,
  3385. "_id": ""
  3386. },
  3387. {
  3388. "__type__": "cdc50kCRVVBa5gcp4XXxVO+",
  3389. "_name": "",
  3390. "_objFlags": 0,
  3391. "node": {
  3392. "__id__": 89
  3393. },
  3394. "_enabled": true,
  3395. "node_panel": {
  3396. "__id__": 1
  3397. },
  3398. "transition_type": 0,
  3399. "onComplete": [],
  3400. "_id": ""
  3401. },
  3402. {
  3403. "__type__": "a20d9E+N7FBiIV7z1whuT6J",
  3404. "_name": "",
  3405. "_objFlags": 0,
  3406. "node": {
  3407. "__id__": 89
  3408. },
  3409. "_enabled": true,
  3410. "fromData": {
  3411. "__id__": 93
  3412. },
  3413. "targetData": [
  3414. {
  3415. "__id__": 94
  3416. }
  3417. ],
  3418. "target": {
  3419. "__id__": 89
  3420. },
  3421. "tweenEasing": 21,
  3422. "repeat": 1,
  3423. "onOneRepeatComplete": {
  3424. "__id__": 96
  3425. },
  3426. "playOnLoad": true,
  3427. "actType": 0,
  3428. "isSetSuitStartPos": false,
  3429. "isDelaySetOrigin": null,
  3430. "_id": ""
  3431. },
  3432. {
  3433. "__type__": "PropsData",
  3434. "position": {
  3435. "__type__": "cc.Vec2",
  3436. "x": 317.829,
  3437. "y": 706.424
  3438. },
  3439. "angle": 0,
  3440. "scale": 0,
  3441. "active": false
  3442. },
  3443. {
  3444. "__type__": "TweenData",
  3445. "propsData": {
  3446. "__id__": 95
  3447. },
  3448. "duration": 0.3,
  3449. "delay": 1,
  3450. "isOffset": false,
  3451. "onComplete": [],
  3452. "onStart": [],
  3453. "onUpdate": []
  3454. },
  3455. {
  3456. "__type__": "PropsData",
  3457. "position": {
  3458. "__type__": "cc.Vec2",
  3459. "x": 317.829,
  3460. "y": 706.424
  3461. },
  3462. "angle": 0,
  3463. "scale": 1,
  3464. "active": true
  3465. },
  3466. {
  3467. "__type__": "cc.ClickEvent",
  3468. "target": null,
  3469. "component": "",
  3470. "_componentId": "",
  3471. "handler": "",
  3472. "customEventData": ""
  3473. },
  3474. {
  3475. "__type__": "cc.PrefabInfo",
  3476. "root": {
  3477. "__id__": 1
  3478. },
  3479. "asset": {
  3480. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3481. },
  3482. "fileId": "45A9g/E4hEG7wBumGt67Pa",
  3483. "sync": false
  3484. },
  3485. {
  3486. "__type__": "cc.Node",
  3487. "_name": "titelbg",
  3488. "_objFlags": 0,
  3489. "_parent": {
  3490. "__id__": 3
  3491. },
  3492. "_children": [
  3493. {
  3494. "__id__": 99
  3495. }
  3496. ],
  3497. "_active": true,
  3498. "_components": [
  3499. {
  3500. "__id__": 102
  3501. }
  3502. ],
  3503. "_prefab": {
  3504. "__id__": 103
  3505. },
  3506. "_opacity": 255,
  3507. "_color": {
  3508. "__type__": "cc.Color",
  3509. "r": 255,
  3510. "g": 255,
  3511. "b": 255,
  3512. "a": 255
  3513. },
  3514. "_contentSize": {
  3515. "__type__": "cc.Size",
  3516. "width": 750,
  3517. "height": 337
  3518. },
  3519. "_anchorPoint": {
  3520. "__type__": "cc.Vec2",
  3521. "x": 0.5,
  3522. "y": 0.5
  3523. },
  3524. "_trs": {
  3525. "__type__": "TypedArray",
  3526. "ctor": "Float64Array",
  3527. "array": [
  3528. 0,
  3529. 564.888,
  3530. 0,
  3531. 0,
  3532. 0,
  3533. 0,
  3534. 1,
  3535. 1,
  3536. 1,
  3537. 1
  3538. ]
  3539. },
  3540. "_eulerAngles": {
  3541. "__type__": "cc.Vec3",
  3542. "x": 0,
  3543. "y": 0,
  3544. "z": 0
  3545. },
  3546. "_skewX": 0,
  3547. "_skewY": 0,
  3548. "_is3DNode": false,
  3549. "_groupIndex": 0,
  3550. "groupIndex": 0,
  3551. "_id": ""
  3552. },
  3553. {
  3554. "__type__": "cc.Node",
  3555. "_name": "title",
  3556. "_objFlags": 0,
  3557. "_parent": {
  3558. "__id__": 98
  3559. },
  3560. "_children": [],
  3561. "_active": true,
  3562. "_components": [
  3563. {
  3564. "__id__": 100
  3565. }
  3566. ],
  3567. "_prefab": {
  3568. "__id__": 101
  3569. },
  3570. "_opacity": 255,
  3571. "_color": {
  3572. "__type__": "cc.Color",
  3573. "r": 255,
  3574. "g": 255,
  3575. "b": 255,
  3576. "a": 255
  3577. },
  3578. "_contentSize": {
  3579. "__type__": "cc.Size",
  3580. "width": 385,
  3581. "height": 82
  3582. },
  3583. "_anchorPoint": {
  3584. "__type__": "cc.Vec2",
  3585. "x": 0.5,
  3586. "y": 0.5
  3587. },
  3588. "_trs": {
  3589. "__type__": "TypedArray",
  3590. "ctor": "Float64Array",
  3591. "array": [
  3592. 0,
  3593. -76.492,
  3594. 0,
  3595. 0,
  3596. 0,
  3597. 0,
  3598. 1,
  3599. 1,
  3600. 1,
  3601. 1
  3602. ]
  3603. },
  3604. "_eulerAngles": {
  3605. "__type__": "cc.Vec3",
  3606. "x": 0,
  3607. "y": 0,
  3608. "z": 0
  3609. },
  3610. "_skewX": 0,
  3611. "_skewY": 0,
  3612. "_is3DNode": false,
  3613. "_groupIndex": 0,
  3614. "groupIndex": 0,
  3615. "_id": ""
  3616. },
  3617. {
  3618. "__type__": "cc.Sprite",
  3619. "_name": "",
  3620. "_objFlags": 0,
  3621. "node": {
  3622. "__id__": 99
  3623. },
  3624. "_enabled": true,
  3625. "_materials": [
  3626. {
  3627. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3628. }
  3629. ],
  3630. "_srcBlendFactor": 770,
  3631. "_dstBlendFactor": 771,
  3632. "_spriteFrame": {
  3633. "__uuid__": "6d121d38-edab-4bf8-93dd-43707d6f1b8e"
  3634. },
  3635. "_type": 0,
  3636. "_sizeMode": 1,
  3637. "_fillType": 0,
  3638. "_fillCenter": {
  3639. "__type__": "cc.Vec2",
  3640. "x": 0,
  3641. "y": 0
  3642. },
  3643. "_fillStart": 0,
  3644. "_fillRange": 0,
  3645. "_isTrimmedMode": true,
  3646. "_atlas": null,
  3647. "_id": ""
  3648. },
  3649. {
  3650. "__type__": "cc.PrefabInfo",
  3651. "root": {
  3652. "__id__": 1
  3653. },
  3654. "asset": {
  3655. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3656. },
  3657. "fileId": "81bjkR30BJFIh/BR/CZASC",
  3658. "sync": false
  3659. },
  3660. {
  3661. "__type__": "cc.Sprite",
  3662. "_name": "",
  3663. "_objFlags": 0,
  3664. "node": {
  3665. "__id__": 98
  3666. },
  3667. "_enabled": true,
  3668. "_materials": [
  3669. {
  3670. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3671. }
  3672. ],
  3673. "_srcBlendFactor": 770,
  3674. "_dstBlendFactor": 771,
  3675. "_spriteFrame": {
  3676. "__uuid__": "00ec2723-1153-4b4a-9bfb-22cc5c7784d0"
  3677. },
  3678. "_type": 0,
  3679. "_sizeMode": 1,
  3680. "_fillType": 0,
  3681. "_fillCenter": {
  3682. "__type__": "cc.Vec2",
  3683. "x": 0,
  3684. "y": 0
  3685. },
  3686. "_fillStart": 0,
  3687. "_fillRange": 0,
  3688. "_isTrimmedMode": true,
  3689. "_atlas": null,
  3690. "_id": ""
  3691. },
  3692. {
  3693. "__type__": "cc.PrefabInfo",
  3694. "root": {
  3695. "__id__": 1
  3696. },
  3697. "asset": {
  3698. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3699. },
  3700. "fileId": "0f1B/NcJBELokD67y8W6f8",
  3701. "sync": false
  3702. },
  3703. {
  3704. "__type__": "cc.Sprite",
  3705. "_name": "",
  3706. "_objFlags": 0,
  3707. "node": {
  3708. "__id__": 3
  3709. },
  3710. "_enabled": true,
  3711. "_materials": [
  3712. {
  3713. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3714. }
  3715. ],
  3716. "_srcBlendFactor": 770,
  3717. "_dstBlendFactor": 771,
  3718. "_spriteFrame": {
  3719. "__uuid__": "f6158946-d334-4084-b316-d3180492fe4b"
  3720. },
  3721. "_type": 0,
  3722. "_sizeMode": 1,
  3723. "_fillType": 0,
  3724. "_fillCenter": {
  3725. "__type__": "cc.Vec2",
  3726. "x": 0,
  3727. "y": 0
  3728. },
  3729. "_fillStart": 0,
  3730. "_fillRange": 0,
  3731. "_isTrimmedMode": true,
  3732. "_atlas": null,
  3733. "_id": ""
  3734. },
  3735. {
  3736. "__type__": "cc.Widget",
  3737. "_name": "",
  3738. "_objFlags": 0,
  3739. "node": {
  3740. "__id__": 3
  3741. },
  3742. "_enabled": true,
  3743. "alignMode": 0,
  3744. "_target": {
  3745. "__id__": 1
  3746. },
  3747. "_alignFlags": 4,
  3748. "_left": 0,
  3749. "_right": 0,
  3750. "_top": 0,
  3751. "_bottom": 0,
  3752. "_verticalCenter": 0,
  3753. "_horizontalCenter": 0,
  3754. "_isAbsLeft": true,
  3755. "_isAbsRight": true,
  3756. "_isAbsTop": true,
  3757. "_isAbsBottom": true,
  3758. "_isAbsHorizontalCenter": true,
  3759. "_isAbsVerticalCenter": true,
  3760. "_originalWidth": 0,
  3761. "_originalHeight": 0,
  3762. "_id": ""
  3763. },
  3764. {
  3765. "__type__": "cc.PrefabInfo",
  3766. "root": {
  3767. "__id__": 1
  3768. },
  3769. "asset": {
  3770. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3771. },
  3772. "fileId": "d116M/RcpB8YH02PU6OXyQ",
  3773. "sync": false
  3774. },
  3775. {
  3776. "__type__": "cc.PrefabInfo",
  3777. "root": {
  3778. "__id__": 1
  3779. },
  3780. "asset": {
  3781. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3782. },
  3783. "fileId": "5bpDccWptEapr2z1f626bM",
  3784. "sync": false
  3785. },
  3786. {
  3787. "__type__": "cc.Widget",
  3788. "_name": "",
  3789. "_objFlags": 0,
  3790. "node": {
  3791. "__id__": 1
  3792. },
  3793. "_enabled": true,
  3794. "alignMode": 0,
  3795. "_target": null,
  3796. "_alignFlags": 45,
  3797. "_left": 0,
  3798. "_right": 0,
  3799. "_top": 0,
  3800. "_bottom": 0,
  3801. "_verticalCenter": 0,
  3802. "_horizontalCenter": 0,
  3803. "_isAbsLeft": true,
  3804. "_isAbsRight": true,
  3805. "_isAbsTop": true,
  3806. "_isAbsBottom": true,
  3807. "_isAbsHorizontalCenter": true,
  3808. "_isAbsVerticalCenter": true,
  3809. "_originalWidth": 0,
  3810. "_originalHeight": 0,
  3811. "_id": ""
  3812. },
  3813. {
  3814. "__type__": "58495/rJOBNGoxELFSp8G2a",
  3815. "_name": "",
  3816. "_objFlags": 0,
  3817. "node": {
  3818. "__id__": 1
  3819. },
  3820. "_enabled": true,
  3821. "color": {
  3822. "__type__": "cc.Color",
  3823. "r": 0,
  3824. "g": 0,
  3825. "b": 0,
  3826. "a": 180
  3827. },
  3828. "design_block_node": null,
  3829. "bClickClose": false,
  3830. "onComplete": [],
  3831. "_id": ""
  3832. },
  3833. {
  3834. "__type__": "ac053zwqaRD6IJmTlQWmefZ",
  3835. "_name": "",
  3836. "_objFlags": 0,
  3837. "node": {
  3838. "__id__": 1
  3839. },
  3840. "_enabled": true,
  3841. "effect_par": {
  3842. "__id__": 2
  3843. },
  3844. "open_effect": 5,
  3845. "isOpenCloseEffect": true,
  3846. "close_effect": 5,
  3847. "close_toPoint": "",
  3848. "close_uibg": false,
  3849. "isDelayOneFrame": true,
  3850. "_id": ""
  3851. },
  3852. {
  3853. "__type__": "b9868hKio9FFbh6GJR5yEdQ",
  3854. "_name": "",
  3855. "_objFlags": 0,
  3856. "node": {
  3857. "__id__": 1
  3858. },
  3859. "_enabled": true,
  3860. "scrollStore": {
  3861. "__id__": 83
  3862. },
  3863. "scrollUnlock": {
  3864. "__id__": 73
  3865. },
  3866. "lblPro": {
  3867. "__id__": 62
  3868. },
  3869. "proExp": {
  3870. "__id__": 59
  3871. },
  3872. "lblLv": {
  3873. "__id__": 51
  3874. },
  3875. "lblName": {
  3876. "__id__": 47
  3877. },
  3878. "head": {
  3879. "__id__": 44
  3880. },
  3881. "_id": ""
  3882. },
  3883. {
  3884. "__type__": "cc.PrefabInfo",
  3885. "root": {
  3886. "__id__": 1
  3887. },
  3888. "asset": {
  3889. "__uuid__": "1b7a9da2-3cd1-4c7f-9531-4d823cd9ecc7"
  3890. },
  3891. "fileId": "",
  3892. "sync": false
  3893. }
  3894. ]