SelectTroops.prefab 85 KB

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