car_lib.prefab 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "car_lib",
  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": "car_lib",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 20
  26. },
  27. {
  28. "__id__": 126
  29. }
  30. ],
  31. "_active": true,
  32. "_components": [
  33. {
  34. "__id__": 230
  35. },
  36. {
  37. "__id__": 232
  38. },
  39. {
  40. "__id__": 234
  41. },
  42. {
  43. "__id__": 236
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 238
  48. },
  49. "_lpos": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "_lrot": {
  56. "__type__": "cc.Quat",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0,
  60. "w": 1
  61. },
  62. "_lscale": {
  63. "__type__": "cc.Vec3",
  64. "x": 1,
  65. "y": 1,
  66. "z": 1
  67. },
  68. "_mobility": 0,
  69. "_layer": 33554432,
  70. "_euler": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_id": ""
  77. },
  78. {
  79. "__type__": "cc.Node",
  80. "_name": "title",
  81. "_objFlags": 0,
  82. "__editorExtras__": {},
  83. "_parent": {
  84. "__id__": 1
  85. },
  86. "_children": [
  87. {
  88. "__id__": 3
  89. }
  90. ],
  91. "_active": true,
  92. "_components": [
  93. {
  94. "__id__": 13
  95. },
  96. {
  97. "__id__": 15
  98. },
  99. {
  100. "__id__": 17
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 19
  105. },
  106. "_lpos": {
  107. "__type__": "cc.Vec3",
  108. "x": 0,
  109. "y": 873.5,
  110. "z": 0
  111. },
  112. "_lrot": {
  113. "__type__": "cc.Quat",
  114. "x": 0,
  115. "y": 0,
  116. "z": 0,
  117. "w": 1
  118. },
  119. "_lscale": {
  120. "__type__": "cc.Vec3",
  121. "x": 1,
  122. "y": 1,
  123. "z": 1
  124. },
  125. "_mobility": 0,
  126. "_layer": 33554432,
  127. "_euler": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_id": ""
  134. },
  135. {
  136. "__type__": "cc.Node",
  137. "_name": "btn_back",
  138. "_objFlags": 0,
  139. "__editorExtras__": {},
  140. "_parent": {
  141. "__id__": 2
  142. },
  143. "_children": [],
  144. "_active": true,
  145. "_components": [
  146. {
  147. "__id__": 4
  148. },
  149. {
  150. "__id__": 6
  151. },
  152. {
  153. "__id__": 8
  154. },
  155. {
  156. "__id__": 10
  157. }
  158. ],
  159. "_prefab": {
  160. "__id__": 12
  161. },
  162. "_lpos": {
  163. "__type__": "cc.Vec3",
  164. "x": -443.5,
  165. "y": 0,
  166. "z": 0
  167. },
  168. "_lrot": {
  169. "__type__": "cc.Quat",
  170. "x": 0,
  171. "y": 0,
  172. "z": 0,
  173. "w": 1
  174. },
  175. "_lscale": {
  176. "__type__": "cc.Vec3",
  177. "x": 1,
  178. "y": 1,
  179. "z": 1
  180. },
  181. "_mobility": 0,
  182. "_layer": 33554432,
  183. "_euler": {
  184. "__type__": "cc.Vec3",
  185. "x": 0,
  186. "y": 0,
  187. "z": 0
  188. },
  189. "_id": ""
  190. },
  191. {
  192. "__type__": "cc.UITransform",
  193. "_name": "",
  194. "_objFlags": 0,
  195. "__editorExtras__": {},
  196. "node": {
  197. "__id__": 3
  198. },
  199. "_enabled": true,
  200. "__prefab": {
  201. "__id__": 5
  202. },
  203. "_contentSize": {
  204. "__type__": "cc.Size",
  205. "width": 113,
  206. "height": 115
  207. },
  208. "_anchorPoint": {
  209. "__type__": "cc.Vec2",
  210. "x": 0.5,
  211. "y": 0.5
  212. },
  213. "_id": ""
  214. },
  215. {
  216. "__type__": "cc.CompPrefabInfo",
  217. "fileId": "cfGDN4H3hN7ZsuMNsN8lHV"
  218. },
  219. {
  220. "__type__": "cc.Sprite",
  221. "_name": "",
  222. "_objFlags": 0,
  223. "__editorExtras__": {},
  224. "node": {
  225. "__id__": 3
  226. },
  227. "_enabled": true,
  228. "__prefab": {
  229. "__id__": 7
  230. },
  231. "_customMaterial": null,
  232. "_srcBlendFactor": 2,
  233. "_dstBlendFactor": 4,
  234. "_color": {
  235. "__type__": "cc.Color",
  236. "r": 255,
  237. "g": 255,
  238. "b": 255,
  239. "a": 255
  240. },
  241. "_spriteFrame": {
  242. "__uuid__": "ad2dc240-885a-423f-8472-d82fb9b0f1e2@f9941",
  243. "__expectedType__": "cc.SpriteFrame"
  244. },
  245. "_type": 0,
  246. "_fillType": 0,
  247. "_sizeMode": 1,
  248. "_fillCenter": {
  249. "__type__": "cc.Vec2",
  250. "x": 0,
  251. "y": 0
  252. },
  253. "_fillStart": 0,
  254. "_fillRange": 0,
  255. "_isTrimmedMode": true,
  256. "_useGrayscale": false,
  257. "_atlas": null,
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.CompPrefabInfo",
  262. "fileId": "02ne83YopLuas49nzPTkPe"
  263. },
  264. {
  265. "__type__": "cc.Widget",
  266. "_name": "",
  267. "_objFlags": 0,
  268. "__editorExtras__": {},
  269. "node": {
  270. "__id__": 3
  271. },
  272. "_enabled": true,
  273. "__prefab": {
  274. "__id__": 9
  275. },
  276. "_alignFlags": 8,
  277. "_target": null,
  278. "_left": 40,
  279. "_right": 0,
  280. "_top": 0,
  281. "_bottom": 0,
  282. "_horizontalCenter": 0,
  283. "_verticalCenter": 0,
  284. "_isAbsLeft": true,
  285. "_isAbsRight": true,
  286. "_isAbsTop": true,
  287. "_isAbsBottom": true,
  288. "_isAbsHorizontalCenter": true,
  289. "_isAbsVerticalCenter": true,
  290. "_originalWidth": 0,
  291. "_originalHeight": 0,
  292. "_alignMode": 2,
  293. "_lockFlags": 0,
  294. "_id": ""
  295. },
  296. {
  297. "__type__": "cc.CompPrefabInfo",
  298. "fileId": "28QhBMUytFeINu/DYzA740"
  299. },
  300. {
  301. "__type__": "cc.Button",
  302. "_name": "",
  303. "_objFlags": 0,
  304. "__editorExtras__": {},
  305. "node": {
  306. "__id__": 3
  307. },
  308. "_enabled": true,
  309. "__prefab": {
  310. "__id__": 11
  311. },
  312. "clickEvents": [],
  313. "_interactable": true,
  314. "_transition": 3,
  315. "_normalColor": {
  316. "__type__": "cc.Color",
  317. "r": 255,
  318. "g": 255,
  319. "b": 255,
  320. "a": 255
  321. },
  322. "_hoverColor": {
  323. "__type__": "cc.Color",
  324. "r": 211,
  325. "g": 211,
  326. "b": 211,
  327. "a": 255
  328. },
  329. "_pressedColor": {
  330. "__type__": "cc.Color",
  331. "r": 255,
  332. "g": 255,
  333. "b": 255,
  334. "a": 255
  335. },
  336. "_disabledColor": {
  337. "__type__": "cc.Color",
  338. "r": 124,
  339. "g": 124,
  340. "b": 124,
  341. "a": 255
  342. },
  343. "_normalSprite": null,
  344. "_hoverSprite": null,
  345. "_pressedSprite": null,
  346. "_disabledSprite": null,
  347. "_duration": 0.1,
  348. "_zoomScale": 0.9,
  349. "_target": null,
  350. "_id": ""
  351. },
  352. {
  353. "__type__": "cc.CompPrefabInfo",
  354. "fileId": "f6zPAsr1xGxJiAk85IcEb8"
  355. },
  356. {
  357. "__type__": "cc.PrefabInfo",
  358. "root": {
  359. "__id__": 1
  360. },
  361. "asset": {
  362. "__id__": 0
  363. },
  364. "fileId": "7dhOJeH8NIwqedDTt14Wrg",
  365. "instance": null,
  366. "targetOverrides": null,
  367. "nestedPrefabInstanceRoots": null
  368. },
  369. {
  370. "__type__": "cc.UITransform",
  371. "_name": "",
  372. "_objFlags": 0,
  373. "__editorExtras__": {},
  374. "node": {
  375. "__id__": 2
  376. },
  377. "_enabled": true,
  378. "__prefab": {
  379. "__id__": 14
  380. },
  381. "_contentSize": {
  382. "__type__": "cc.Size",
  383. "width": 1080,
  384. "height": 173
  385. },
  386. "_anchorPoint": {
  387. "__type__": "cc.Vec2",
  388. "x": 0.5,
  389. "y": 0.5
  390. },
  391. "_id": ""
  392. },
  393. {
  394. "__type__": "cc.CompPrefabInfo",
  395. "fileId": "9b76HG7olOPrk6QU3uKScu"
  396. },
  397. {
  398. "__type__": "cc.Sprite",
  399. "_name": "",
  400. "_objFlags": 0,
  401. "__editorExtras__": {},
  402. "node": {
  403. "__id__": 2
  404. },
  405. "_enabled": true,
  406. "__prefab": {
  407. "__id__": 16
  408. },
  409. "_customMaterial": null,
  410. "_srcBlendFactor": 2,
  411. "_dstBlendFactor": 4,
  412. "_color": {
  413. "__type__": "cc.Color",
  414. "r": 255,
  415. "g": 255,
  416. "b": 255,
  417. "a": 255
  418. },
  419. "_spriteFrame": {
  420. "__uuid__": "f90e8ccf-60e8-4b79-a81a-8226e223ab88@f9941",
  421. "__expectedType__": "cc.SpriteFrame"
  422. },
  423. "_type": 0,
  424. "_fillType": 0,
  425. "_sizeMode": 1,
  426. "_fillCenter": {
  427. "__type__": "cc.Vec2",
  428. "x": 0,
  429. "y": 0
  430. },
  431. "_fillStart": 0,
  432. "_fillRange": 0,
  433. "_isTrimmedMode": true,
  434. "_useGrayscale": false,
  435. "_atlas": null,
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.CompPrefabInfo",
  440. "fileId": "67YpKEBptJW546lknaBwSn"
  441. },
  442. {
  443. "__type__": "cc.Widget",
  444. "_name": "",
  445. "_objFlags": 0,
  446. "__editorExtras__": {},
  447. "node": {
  448. "__id__": 2
  449. },
  450. "_enabled": true,
  451. "__prefab": {
  452. "__id__": 18
  453. },
  454. "_alignFlags": 1,
  455. "_target": null,
  456. "_left": 0,
  457. "_right": 0,
  458. "_top": 0,
  459. "_bottom": 0,
  460. "_horizontalCenter": 0,
  461. "_verticalCenter": 0,
  462. "_isAbsLeft": true,
  463. "_isAbsRight": true,
  464. "_isAbsTop": true,
  465. "_isAbsBottom": true,
  466. "_isAbsHorizontalCenter": true,
  467. "_isAbsVerticalCenter": true,
  468. "_originalWidth": 0,
  469. "_originalHeight": 0,
  470. "_alignMode": 2,
  471. "_lockFlags": 0,
  472. "_id": ""
  473. },
  474. {
  475. "__type__": "cc.CompPrefabInfo",
  476. "fileId": "faO7YYxNRN072gf+WhxKfh"
  477. },
  478. {
  479. "__type__": "cc.PrefabInfo",
  480. "root": {
  481. "__id__": 1
  482. },
  483. "asset": {
  484. "__id__": 0
  485. },
  486. "fileId": "a1Ol1hvGFPYJnvFu4n0+sb",
  487. "instance": null,
  488. "targetOverrides": null,
  489. "nestedPrefabInstanceRoots": null
  490. },
  491. {
  492. "__type__": "cc.Node",
  493. "_name": "top_node",
  494. "_objFlags": 0,
  495. "__editorExtras__": {},
  496. "_parent": {
  497. "__id__": 1
  498. },
  499. "_children": [
  500. {
  501. "__id__": 21
  502. },
  503. {
  504. "__id__": 93
  505. }
  506. ],
  507. "_active": true,
  508. "_components": [
  509. {
  510. "__id__": 117
  511. },
  512. {
  513. "__id__": 119
  514. },
  515. {
  516. "__id__": 121
  517. },
  518. {
  519. "__id__": 123
  520. }
  521. ],
  522. "_prefab": {
  523. "__id__": 125
  524. },
  525. "_lpos": {
  526. "__type__": "cc.Vec3",
  527. "x": 0,
  528. "y": 367.0000000000001,
  529. "z": 0
  530. },
  531. "_lrot": {
  532. "__type__": "cc.Quat",
  533. "x": 0,
  534. "y": 0,
  535. "z": 0,
  536. "w": 1
  537. },
  538. "_lscale": {
  539. "__type__": "cc.Vec3",
  540. "x": 1,
  541. "y": 1,
  542. "z": 1
  543. },
  544. "_mobility": 0,
  545. "_layer": 33554432,
  546. "_euler": {
  547. "__type__": "cc.Vec3",
  548. "x": 0,
  549. "y": 0,
  550. "z": 0
  551. },
  552. "_id": ""
  553. },
  554. {
  555. "__type__": "cc.Node",
  556. "_name": "user_info",
  557. "_objFlags": 0,
  558. "__editorExtras__": {},
  559. "_parent": {
  560. "__id__": 20
  561. },
  562. "_children": [
  563. {
  564. "__id__": 22
  565. },
  566. {
  567. "__id__": 48
  568. },
  569. {
  570. "__id__": 54
  571. },
  572. {
  573. "__id__": 60
  574. }
  575. ],
  576. "_active": true,
  577. "_components": [
  578. {
  579. "__id__": 86
  580. },
  581. {
  582. "__id__": 88
  583. },
  584. {
  585. "__id__": 90
  586. }
  587. ],
  588. "_prefab": {
  589. "__id__": 92
  590. },
  591. "_lpos": {
  592. "__type__": "cc.Vec3",
  593. "x": 0,
  594. "y": 349,
  595. "z": 0
  596. },
  597. "_lrot": {
  598. "__type__": "cc.Quat",
  599. "x": 0,
  600. "y": 0,
  601. "z": 0,
  602. "w": 1
  603. },
  604. "_lscale": {
  605. "__type__": "cc.Vec3",
  606. "x": 1,
  607. "y": 1,
  608. "z": 1
  609. },
  610. "_mobility": 0,
  611. "_layer": 33554432,
  612. "_euler": {
  613. "__type__": "cc.Vec3",
  614. "x": 0,
  615. "y": 0,
  616. "z": 0
  617. },
  618. "_id": ""
  619. },
  620. {
  621. "__type__": "cc.Node",
  622. "_name": "avatar_node",
  623. "_objFlags": 0,
  624. "__editorExtras__": {},
  625. "_parent": {
  626. "__id__": 21
  627. },
  628. "_children": [
  629. {
  630. "__id__": 23
  631. },
  632. {
  633. "__id__": 39
  634. }
  635. ],
  636. "_active": true,
  637. "_components": [
  638. {
  639. "__id__": 45
  640. }
  641. ],
  642. "_prefab": {
  643. "__id__": 47
  644. },
  645. "_lpos": {
  646. "__type__": "cc.Vec3",
  647. "x": -450,
  648. "y": 5,
  649. "z": 0
  650. },
  651. "_lrot": {
  652. "__type__": "cc.Quat",
  653. "x": 0,
  654. "y": 0,
  655. "z": 0,
  656. "w": 1
  657. },
  658. "_lscale": {
  659. "__type__": "cc.Vec3",
  660. "x": 1,
  661. "y": 1,
  662. "z": 1
  663. },
  664. "_mobility": 0,
  665. "_layer": 33554432,
  666. "_euler": {
  667. "__type__": "cc.Vec3",
  668. "x": 0,
  669. "y": 0,
  670. "z": 0
  671. },
  672. "_id": ""
  673. },
  674. {
  675. "__type__": "cc.Node",
  676. "_name": "img_avatar_mask",
  677. "_objFlags": 0,
  678. "__editorExtras__": {},
  679. "_parent": {
  680. "__id__": 22
  681. },
  682. "_children": [
  683. {
  684. "__id__": 24
  685. }
  686. ],
  687. "_active": true,
  688. "_components": [
  689. {
  690. "__id__": 32
  691. },
  692. {
  693. "__id__": 34
  694. },
  695. {
  696. "__id__": 36
  697. }
  698. ],
  699. "_prefab": {
  700. "__id__": 38
  701. },
  702. "_lpos": {
  703. "__type__": "cc.Vec3",
  704. "x": 2,
  705. "y": -8,
  706. "z": 0
  707. },
  708. "_lrot": {
  709. "__type__": "cc.Quat",
  710. "x": 0,
  711. "y": 0,
  712. "z": 0,
  713. "w": 1
  714. },
  715. "_lscale": {
  716. "__type__": "cc.Vec3",
  717. "x": 1,
  718. "y": 1,
  719. "z": 1
  720. },
  721. "_mobility": 0,
  722. "_layer": 33554432,
  723. "_euler": {
  724. "__type__": "cc.Vec3",
  725. "x": 0,
  726. "y": 0,
  727. "z": 0
  728. },
  729. "_id": ""
  730. },
  731. {
  732. "__type__": "cc.Node",
  733. "_name": "img_avatar",
  734. "_objFlags": 0,
  735. "__editorExtras__": {},
  736. "_parent": {
  737. "__id__": 23
  738. },
  739. "_children": [],
  740. "_active": true,
  741. "_components": [
  742. {
  743. "__id__": 25
  744. },
  745. {
  746. "__id__": 27
  747. },
  748. {
  749. "__id__": 29
  750. }
  751. ],
  752. "_prefab": {
  753. "__id__": 31
  754. },
  755. "_lpos": {
  756. "__type__": "cc.Vec3",
  757. "x": 0,
  758. "y": 0,
  759. "z": 0
  760. },
  761. "_lrot": {
  762. "__type__": "cc.Quat",
  763. "x": 0,
  764. "y": 0,
  765. "z": 0,
  766. "w": 1
  767. },
  768. "_lscale": {
  769. "__type__": "cc.Vec3",
  770. "x": 1,
  771. "y": 1,
  772. "z": 1
  773. },
  774. "_mobility": 0,
  775. "_layer": 33554432,
  776. "_euler": {
  777. "__type__": "cc.Vec3",
  778. "x": 0,
  779. "y": 0,
  780. "z": 0
  781. },
  782. "_id": ""
  783. },
  784. {
  785. "__type__": "cc.UITransform",
  786. "_name": "",
  787. "_objFlags": 0,
  788. "__editorExtras__": {},
  789. "node": {
  790. "__id__": 24
  791. },
  792. "_enabled": true,
  793. "__prefab": {
  794. "__id__": 26
  795. },
  796. "_contentSize": {
  797. "__type__": "cc.Size",
  798. "width": 120,
  799. "height": 120
  800. },
  801. "_anchorPoint": {
  802. "__type__": "cc.Vec2",
  803. "x": 0.5,
  804. "y": 0.5
  805. },
  806. "_id": ""
  807. },
  808. {
  809. "__type__": "cc.CompPrefabInfo",
  810. "fileId": "1884skKJ1GV52BcpylJRW9"
  811. },
  812. {
  813. "__type__": "cc.Sprite",
  814. "_name": "",
  815. "_objFlags": 0,
  816. "__editorExtras__": {},
  817. "node": {
  818. "__id__": 24
  819. },
  820. "_enabled": true,
  821. "__prefab": {
  822. "__id__": 28
  823. },
  824. "_customMaterial": null,
  825. "_srcBlendFactor": 2,
  826. "_dstBlendFactor": 4,
  827. "_color": {
  828. "__type__": "cc.Color",
  829. "r": 255,
  830. "g": 255,
  831. "b": 255,
  832. "a": 255
  833. },
  834. "_spriteFrame": {
  835. "__uuid__": "e8fbd49a-4eac-4cce-b264-46309ab4a826@f9941",
  836. "__expectedType__": "cc.SpriteFrame"
  837. },
  838. "_type": 0,
  839. "_fillType": 0,
  840. "_sizeMode": 0,
  841. "_fillCenter": {
  842. "__type__": "cc.Vec2",
  843. "x": 0,
  844. "y": 0
  845. },
  846. "_fillStart": 0,
  847. "_fillRange": 0,
  848. "_isTrimmedMode": true,
  849. "_useGrayscale": false,
  850. "_atlas": null,
  851. "_id": ""
  852. },
  853. {
  854. "__type__": "cc.CompPrefabInfo",
  855. "fileId": "45MW8YHzhFUbgjBvbsAiOi"
  856. },
  857. {
  858. "__type__": "cc.Widget",
  859. "_name": "",
  860. "_objFlags": 0,
  861. "__editorExtras__": {},
  862. "node": {
  863. "__id__": 24
  864. },
  865. "_enabled": true,
  866. "__prefab": {
  867. "__id__": 30
  868. },
  869. "_alignFlags": 45,
  870. "_target": null,
  871. "_left": 0,
  872. "_right": 0,
  873. "_top": 0,
  874. "_bottom": 0,
  875. "_horizontalCenter": 0,
  876. "_verticalCenter": 0,
  877. "_isAbsLeft": true,
  878. "_isAbsRight": true,
  879. "_isAbsTop": true,
  880. "_isAbsBottom": true,
  881. "_isAbsHorizontalCenter": true,
  882. "_isAbsVerticalCenter": true,
  883. "_originalWidth": 117,
  884. "_originalHeight": 114,
  885. "_alignMode": 2,
  886. "_lockFlags": 0,
  887. "_id": ""
  888. },
  889. {
  890. "__type__": "cc.CompPrefabInfo",
  891. "fileId": "424ncO4k1P4oQeX+BWMxUs"
  892. },
  893. {
  894. "__type__": "cc.PrefabInfo",
  895. "root": {
  896. "__id__": 1
  897. },
  898. "asset": {
  899. "__id__": 0
  900. },
  901. "fileId": "5epXK9bSRN/p6vTvvVCVFl",
  902. "instance": null,
  903. "targetOverrides": null,
  904. "nestedPrefabInstanceRoots": null
  905. },
  906. {
  907. "__type__": "cc.UITransform",
  908. "_name": "",
  909. "_objFlags": 0,
  910. "__editorExtras__": {},
  911. "node": {
  912. "__id__": 23
  913. },
  914. "_enabled": true,
  915. "__prefab": {
  916. "__id__": 33
  917. },
  918. "_contentSize": {
  919. "__type__": "cc.Size",
  920. "width": 120,
  921. "height": 120
  922. },
  923. "_anchorPoint": {
  924. "__type__": "cc.Vec2",
  925. "x": 0.5,
  926. "y": 0.5
  927. },
  928. "_id": ""
  929. },
  930. {
  931. "__type__": "cc.CompPrefabInfo",
  932. "fileId": "2c4RNQNdhBY41BaPNqxXPS"
  933. },
  934. {
  935. "__type__": "cc.Mask",
  936. "_name": "",
  937. "_objFlags": 0,
  938. "__editorExtras__": {},
  939. "node": {
  940. "__id__": 23
  941. },
  942. "_enabled": true,
  943. "__prefab": {
  944. "__id__": 35
  945. },
  946. "_type": 3,
  947. "_inverted": false,
  948. "_segments": 64,
  949. "_alphaThreshold": 0.1,
  950. "_id": ""
  951. },
  952. {
  953. "__type__": "cc.CompPrefabInfo",
  954. "fileId": "91lKQAkEVESak9K5ixfy2Q"
  955. },
  956. {
  957. "__type__": "cc.Sprite",
  958. "_name": "",
  959. "_objFlags": 0,
  960. "__editorExtras__": {},
  961. "node": {
  962. "__id__": 23
  963. },
  964. "_enabled": true,
  965. "__prefab": {
  966. "__id__": 37
  967. },
  968. "_customMaterial": null,
  969. "_srcBlendFactor": 2,
  970. "_dstBlendFactor": 4,
  971. "_color": {
  972. "__type__": "cc.Color",
  973. "r": 255,
  974. "g": 255,
  975. "b": 255,
  976. "a": 255
  977. },
  978. "_spriteFrame": {
  979. "__uuid__": "e8fbd49a-4eac-4cce-b264-46309ab4a826@f9941",
  980. "__expectedType__": "cc.SpriteFrame"
  981. },
  982. "_type": 0,
  983. "_fillType": 0,
  984. "_sizeMode": 0,
  985. "_fillCenter": {
  986. "__type__": "cc.Vec2",
  987. "x": 0,
  988. "y": 0
  989. },
  990. "_fillStart": 0,
  991. "_fillRange": 0,
  992. "_isTrimmedMode": true,
  993. "_useGrayscale": false,
  994. "_atlas": null,
  995. "_id": ""
  996. },
  997. {
  998. "__type__": "cc.CompPrefabInfo",
  999. "fileId": "c3cHJ0PXFJiaE5dpSk8uan"
  1000. },
  1001. {
  1002. "__type__": "cc.PrefabInfo",
  1003. "root": {
  1004. "__id__": 1
  1005. },
  1006. "asset": {
  1007. "__id__": 0
  1008. },
  1009. "fileId": "7bad+sMnZEQ5TL+tgExek8",
  1010. "instance": null,
  1011. "targetOverrides": null,
  1012. "nestedPrefabInstanceRoots": null
  1013. },
  1014. {
  1015. "__type__": "cc.Node",
  1016. "_name": "img_avatar_border",
  1017. "_objFlags": 0,
  1018. "__editorExtras__": {},
  1019. "_parent": {
  1020. "__id__": 22
  1021. },
  1022. "_children": [],
  1023. "_active": true,
  1024. "_components": [
  1025. {
  1026. "__id__": 40
  1027. },
  1028. {
  1029. "__id__": 42
  1030. }
  1031. ],
  1032. "_prefab": {
  1033. "__id__": 44
  1034. },
  1035. "_lpos": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0
  1040. },
  1041. "_lrot": {
  1042. "__type__": "cc.Quat",
  1043. "x": 0,
  1044. "y": 0,
  1045. "z": 0,
  1046. "w": 1
  1047. },
  1048. "_lscale": {
  1049. "__type__": "cc.Vec3",
  1050. "x": 1,
  1051. "y": 1,
  1052. "z": 1
  1053. },
  1054. "_mobility": 0,
  1055. "_layer": 33554432,
  1056. "_euler": {
  1057. "__type__": "cc.Vec3",
  1058. "x": 0,
  1059. "y": 0,
  1060. "z": 0
  1061. },
  1062. "_id": ""
  1063. },
  1064. {
  1065. "__type__": "cc.UITransform",
  1066. "_name": "",
  1067. "_objFlags": 0,
  1068. "__editorExtras__": {},
  1069. "node": {
  1070. "__id__": 39
  1071. },
  1072. "_enabled": true,
  1073. "__prefab": {
  1074. "__id__": 41
  1075. },
  1076. "_contentSize": {
  1077. "__type__": "cc.Size",
  1078. "width": 115,
  1079. "height": 115
  1080. },
  1081. "_anchorPoint": {
  1082. "__type__": "cc.Vec2",
  1083. "x": 0.5,
  1084. "y": 0.5
  1085. },
  1086. "_id": ""
  1087. },
  1088. {
  1089. "__type__": "cc.CompPrefabInfo",
  1090. "fileId": "b3P7P4eQlHsoZ7pYdNFdRQ"
  1091. },
  1092. {
  1093. "__type__": "cc.Sprite",
  1094. "_name": "",
  1095. "_objFlags": 0,
  1096. "__editorExtras__": {},
  1097. "node": {
  1098. "__id__": 39
  1099. },
  1100. "_enabled": true,
  1101. "__prefab": {
  1102. "__id__": 43
  1103. },
  1104. "_customMaterial": null,
  1105. "_srcBlendFactor": 2,
  1106. "_dstBlendFactor": 4,
  1107. "_color": {
  1108. "__type__": "cc.Color",
  1109. "r": 255,
  1110. "g": 255,
  1111. "b": 255,
  1112. "a": 255
  1113. },
  1114. "_spriteFrame": {
  1115. "__uuid__": "88ec5c06-5189-4952-8030-c400d7203f1e@f9941",
  1116. "__expectedType__": "cc.SpriteFrame"
  1117. },
  1118. "_type": 0,
  1119. "_fillType": 0,
  1120. "_sizeMode": 0,
  1121. "_fillCenter": {
  1122. "__type__": "cc.Vec2",
  1123. "x": 0,
  1124. "y": 0
  1125. },
  1126. "_fillStart": 0,
  1127. "_fillRange": 0,
  1128. "_isTrimmedMode": true,
  1129. "_useGrayscale": false,
  1130. "_atlas": null,
  1131. "_id": ""
  1132. },
  1133. {
  1134. "__type__": "cc.CompPrefabInfo",
  1135. "fileId": "fcxRrPpPRBapeVPAZxf1CC"
  1136. },
  1137. {
  1138. "__type__": "cc.PrefabInfo",
  1139. "root": {
  1140. "__id__": 1
  1141. },
  1142. "asset": {
  1143. "__id__": 0
  1144. },
  1145. "fileId": "f7QPHfx45NHKCVMu5wL/Gd",
  1146. "instance": null,
  1147. "targetOverrides": null,
  1148. "nestedPrefabInstanceRoots": null
  1149. },
  1150. {
  1151. "__type__": "cc.UITransform",
  1152. "_name": "",
  1153. "_objFlags": 0,
  1154. "__editorExtras__": {},
  1155. "node": {
  1156. "__id__": 22
  1157. },
  1158. "_enabled": true,
  1159. "__prefab": {
  1160. "__id__": 46
  1161. },
  1162. "_contentSize": {
  1163. "__type__": "cc.Size",
  1164. "width": 115,
  1165. "height": 115
  1166. },
  1167. "_anchorPoint": {
  1168. "__type__": "cc.Vec2",
  1169. "x": 0.5,
  1170. "y": 0.5
  1171. },
  1172. "_id": ""
  1173. },
  1174. {
  1175. "__type__": "cc.CompPrefabInfo",
  1176. "fileId": "85A28T/mxBrIP+a69o+gjl"
  1177. },
  1178. {
  1179. "__type__": "cc.PrefabInfo",
  1180. "root": {
  1181. "__id__": 1
  1182. },
  1183. "asset": {
  1184. "__id__": 0
  1185. },
  1186. "fileId": "a6lmXid9ZHvpTwrF3RxA1x",
  1187. "instance": null,
  1188. "targetOverrides": null,
  1189. "nestedPrefabInstanceRoots": null
  1190. },
  1191. {
  1192. "__type__": "cc.Node",
  1193. "_name": "lab_nickname",
  1194. "_objFlags": 0,
  1195. "__editorExtras__": {},
  1196. "_parent": {
  1197. "__id__": 21
  1198. },
  1199. "_children": [],
  1200. "_active": true,
  1201. "_components": [
  1202. {
  1203. "__id__": 49
  1204. },
  1205. {
  1206. "__id__": 51
  1207. }
  1208. ],
  1209. "_prefab": {
  1210. "__id__": 53
  1211. },
  1212. "_lpos": {
  1213. "__type__": "cc.Vec3",
  1214. "x": -236.25,
  1215. "y": 0,
  1216. "z": 0
  1217. },
  1218. "_lrot": {
  1219. "__type__": "cc.Quat",
  1220. "x": 0,
  1221. "y": 0,
  1222. "z": 0,
  1223. "w": 1
  1224. },
  1225. "_lscale": {
  1226. "__type__": "cc.Vec3",
  1227. "x": 1,
  1228. "y": 1,
  1229. "z": 1
  1230. },
  1231. "_mobility": 0,
  1232. "_layer": 33554432,
  1233. "_euler": {
  1234. "__type__": "cc.Vec3",
  1235. "x": 0,
  1236. "y": 0,
  1237. "z": 0
  1238. },
  1239. "_id": ""
  1240. },
  1241. {
  1242. "__type__": "cc.UITransform",
  1243. "_name": "",
  1244. "_objFlags": 0,
  1245. "__editorExtras__": {},
  1246. "node": {
  1247. "__id__": 48
  1248. },
  1249. "_enabled": true,
  1250. "__prefab": {
  1251. "__id__": 50
  1252. },
  1253. "_contentSize": {
  1254. "__type__": "cc.Size",
  1255. "width": 260,
  1256. "height": 50.4
  1257. },
  1258. "_anchorPoint": {
  1259. "__type__": "cc.Vec2",
  1260. "x": 0.5,
  1261. "y": 0.5
  1262. },
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.CompPrefabInfo",
  1267. "fileId": "f8KYiqLZ9Gn5rb9QDBdSc6"
  1268. },
  1269. {
  1270. "__type__": "cc.Label",
  1271. "_name": "",
  1272. "_objFlags": 0,
  1273. "__editorExtras__": {},
  1274. "node": {
  1275. "__id__": 48
  1276. },
  1277. "_enabled": true,
  1278. "__prefab": {
  1279. "__id__": 52
  1280. },
  1281. "_customMaterial": null,
  1282. "_srcBlendFactor": 2,
  1283. "_dstBlendFactor": 4,
  1284. "_color": {
  1285. "__type__": "cc.Color",
  1286. "r": 165,
  1287. "g": 198,
  1288. "b": 245,
  1289. "a": 255
  1290. },
  1291. "_string": "用户1233221",
  1292. "_horizontalAlign": 0,
  1293. "_verticalAlign": 1,
  1294. "_actualFontSize": 40,
  1295. "_fontSize": 40,
  1296. "_fontFamily": "Arial",
  1297. "_lineHeight": 40,
  1298. "_overflow": 1,
  1299. "_enableWrapText": false,
  1300. "_font": null,
  1301. "_isSystemFontUsed": true,
  1302. "_spacingX": 0,
  1303. "_isItalic": false,
  1304. "_isBold": true,
  1305. "_isUnderline": false,
  1306. "_underlineHeight": 2,
  1307. "_cacheMode": 0,
  1308. "_enableOutline": false,
  1309. "_outlineColor": {
  1310. "__type__": "cc.Color",
  1311. "r": 0,
  1312. "g": 0,
  1313. "b": 0,
  1314. "a": 255
  1315. },
  1316. "_outlineWidth": 2,
  1317. "_enableShadow": false,
  1318. "_shadowColor": {
  1319. "__type__": "cc.Color",
  1320. "r": 0,
  1321. "g": 0,
  1322. "b": 0,
  1323. "a": 255
  1324. },
  1325. "_shadowOffset": {
  1326. "__type__": "cc.Vec2",
  1327. "x": 2,
  1328. "y": 2
  1329. },
  1330. "_shadowBlur": 2,
  1331. "_id": ""
  1332. },
  1333. {
  1334. "__type__": "cc.CompPrefabInfo",
  1335. "fileId": "6bFijUjStIP7lvvx+hrego"
  1336. },
  1337. {
  1338. "__type__": "cc.PrefabInfo",
  1339. "root": {
  1340. "__id__": 1
  1341. },
  1342. "asset": {
  1343. "__id__": 0
  1344. },
  1345. "fileId": "c030GbLvtNFbAhPpeIiXqN",
  1346. "instance": null,
  1347. "targetOverrides": null,
  1348. "nestedPrefabInstanceRoots": null
  1349. },
  1350. {
  1351. "__type__": "cc.Node",
  1352. "_name": "lab_car_pai",
  1353. "_objFlags": 0,
  1354. "__editorExtras__": {},
  1355. "_parent": {
  1356. "__id__": 21
  1357. },
  1358. "_children": [],
  1359. "_active": true,
  1360. "_components": [
  1361. {
  1362. "__id__": 55
  1363. },
  1364. {
  1365. "__id__": 57
  1366. }
  1367. ],
  1368. "_prefab": {
  1369. "__id__": 59
  1370. },
  1371. "_lpos": {
  1372. "__type__": "cc.Vec3",
  1373. "x": 28,
  1374. "y": 0,
  1375. "z": 0
  1376. },
  1377. "_lrot": {
  1378. "__type__": "cc.Quat",
  1379. "x": 0,
  1380. "y": 0,
  1381. "z": 0,
  1382. "w": 1
  1383. },
  1384. "_lscale": {
  1385. "__type__": "cc.Vec3",
  1386. "x": 1,
  1387. "y": 1,
  1388. "z": 1
  1389. },
  1390. "_mobility": 0,
  1391. "_layer": 33554432,
  1392. "_euler": {
  1393. "__type__": "cc.Vec3",
  1394. "x": 0,
  1395. "y": 0,
  1396. "z": 0
  1397. },
  1398. "_id": ""
  1399. },
  1400. {
  1401. "__type__": "cc.UITransform",
  1402. "_name": "",
  1403. "_objFlags": 0,
  1404. "__editorExtras__": {},
  1405. "node": {
  1406. "__id__": 54
  1407. },
  1408. "_enabled": true,
  1409. "__prefab": {
  1410. "__id__": 56
  1411. },
  1412. "_contentSize": {
  1413. "__type__": "cc.Size",
  1414. "width": 230,
  1415. "height": 50.4
  1416. },
  1417. "_anchorPoint": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 0.5,
  1420. "y": 0.5
  1421. },
  1422. "_id": ""
  1423. },
  1424. {
  1425. "__type__": "cc.CompPrefabInfo",
  1426. "fileId": "46p+/ahBVM9poulO4sOim2"
  1427. },
  1428. {
  1429. "__type__": "cc.Label",
  1430. "_name": "",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "node": {
  1434. "__id__": 54
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": {
  1438. "__id__": 58
  1439. },
  1440. "_customMaterial": null,
  1441. "_srcBlendFactor": 2,
  1442. "_dstBlendFactor": 4,
  1443. "_color": {
  1444. "__type__": "cc.Color",
  1445. "r": 165,
  1446. "g": 198,
  1447. "b": 245,
  1448. "a": 255
  1449. },
  1450. "_string": "粤A.ABCDEF",
  1451. "_horizontalAlign": 0,
  1452. "_verticalAlign": 1,
  1453. "_actualFontSize": 35,
  1454. "_fontSize": 35,
  1455. "_fontFamily": "Arial",
  1456. "_lineHeight": 40,
  1457. "_overflow": 1,
  1458. "_enableWrapText": false,
  1459. "_font": null,
  1460. "_isSystemFontUsed": true,
  1461. "_spacingX": 0,
  1462. "_isItalic": false,
  1463. "_isBold": true,
  1464. "_isUnderline": false,
  1465. "_underlineHeight": 2,
  1466. "_cacheMode": 0,
  1467. "_enableOutline": false,
  1468. "_outlineColor": {
  1469. "__type__": "cc.Color",
  1470. "r": 0,
  1471. "g": 0,
  1472. "b": 0,
  1473. "a": 255
  1474. },
  1475. "_outlineWidth": 2,
  1476. "_enableShadow": false,
  1477. "_shadowColor": {
  1478. "__type__": "cc.Color",
  1479. "r": 0,
  1480. "g": 0,
  1481. "b": 0,
  1482. "a": 255
  1483. },
  1484. "_shadowOffset": {
  1485. "__type__": "cc.Vec2",
  1486. "x": 2,
  1487. "y": 2
  1488. },
  1489. "_shadowBlur": 2,
  1490. "_id": ""
  1491. },
  1492. {
  1493. "__type__": "cc.CompPrefabInfo",
  1494. "fileId": "6a76Gj47RBCYmmnv03avDD"
  1495. },
  1496. {
  1497. "__type__": "cc.PrefabInfo",
  1498. "root": {
  1499. "__id__": 1
  1500. },
  1501. "asset": {
  1502. "__id__": 0
  1503. },
  1504. "fileId": "fe+bFUVeJKFLxQjX8QERrD",
  1505. "instance": null,
  1506. "targetOverrides": null,
  1507. "nestedPrefabInstanceRoots": null
  1508. },
  1509. {
  1510. "__type__": "cc.Node",
  1511. "_name": "btn_region",
  1512. "_objFlags": 0,
  1513. "__editorExtras__": {},
  1514. "_parent": {
  1515. "__id__": 21
  1516. },
  1517. "_children": [
  1518. {
  1519. "__id__": 61
  1520. },
  1521. {
  1522. "__id__": 67
  1523. },
  1524. {
  1525. "__id__": 73
  1526. }
  1527. ],
  1528. "_active": true,
  1529. "_components": [
  1530. {
  1531. "__id__": 79
  1532. },
  1533. {
  1534. "__id__": 81
  1535. },
  1536. {
  1537. "__id__": 83
  1538. }
  1539. ],
  1540. "_prefab": {
  1541. "__id__": 85
  1542. },
  1543. "_lpos": {
  1544. "__type__": "cc.Vec3",
  1545. "x": 354.75,
  1546. "y": 0,
  1547. "z": 0
  1548. },
  1549. "_lrot": {
  1550. "__type__": "cc.Quat",
  1551. "x": 0,
  1552. "y": 0,
  1553. "z": 0,
  1554. "w": 1
  1555. },
  1556. "_lscale": {
  1557. "__type__": "cc.Vec3",
  1558. "x": 1,
  1559. "y": 1,
  1560. "z": 1
  1561. },
  1562. "_mobility": 0,
  1563. "_layer": 33554432,
  1564. "_euler": {
  1565. "__type__": "cc.Vec3",
  1566. "x": 0,
  1567. "y": 0,
  1568. "z": 0
  1569. },
  1570. "_id": ""
  1571. },
  1572. {
  1573. "__type__": "cc.Node",
  1574. "_name": "img_location",
  1575. "_objFlags": 0,
  1576. "__editorExtras__": {},
  1577. "_parent": {
  1578. "__id__": 60
  1579. },
  1580. "_children": [],
  1581. "_active": true,
  1582. "_components": [
  1583. {
  1584. "__id__": 62
  1585. },
  1586. {
  1587. "__id__": 64
  1588. }
  1589. ],
  1590. "_prefab": {
  1591. "__id__": 66
  1592. },
  1593. "_lpos": {
  1594. "__type__": "cc.Vec3",
  1595. "x": -155,
  1596. "y": 0,
  1597. "z": 0
  1598. },
  1599. "_lrot": {
  1600. "__type__": "cc.Quat",
  1601. "x": 0,
  1602. "y": 0,
  1603. "z": 0,
  1604. "w": 1
  1605. },
  1606. "_lscale": {
  1607. "__type__": "cc.Vec3",
  1608. "x": 1,
  1609. "y": 1,
  1610. "z": 1
  1611. },
  1612. "_mobility": 0,
  1613. "_layer": 33554432,
  1614. "_euler": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 0,
  1617. "y": 0,
  1618. "z": 0
  1619. },
  1620. "_id": ""
  1621. },
  1622. {
  1623. "__type__": "cc.UITransform",
  1624. "_name": "",
  1625. "_objFlags": 0,
  1626. "__editorExtras__": {},
  1627. "node": {
  1628. "__id__": 61
  1629. },
  1630. "_enabled": true,
  1631. "__prefab": {
  1632. "__id__": 63
  1633. },
  1634. "_contentSize": {
  1635. "__type__": "cc.Size",
  1636. "width": 44,
  1637. "height": 38
  1638. },
  1639. "_anchorPoint": {
  1640. "__type__": "cc.Vec2",
  1641. "x": 0.5,
  1642. "y": 0.5
  1643. },
  1644. "_id": ""
  1645. },
  1646. {
  1647. "__type__": "cc.CompPrefabInfo",
  1648. "fileId": "1bs/vRhcxPP74GeJoX/OAJ"
  1649. },
  1650. {
  1651. "__type__": "cc.Sprite",
  1652. "_name": "",
  1653. "_objFlags": 0,
  1654. "__editorExtras__": {},
  1655. "node": {
  1656. "__id__": 61
  1657. },
  1658. "_enabled": true,
  1659. "__prefab": {
  1660. "__id__": 65
  1661. },
  1662. "_customMaterial": null,
  1663. "_srcBlendFactor": 2,
  1664. "_dstBlendFactor": 4,
  1665. "_color": {
  1666. "__type__": "cc.Color",
  1667. "r": 255,
  1668. "g": 255,
  1669. "b": 255,
  1670. "a": 255
  1671. },
  1672. "_spriteFrame": {
  1673. "__uuid__": "29f0e6aa-9bff-425d-9be2-e35fe1bd4a8e@f9941",
  1674. "__expectedType__": "cc.SpriteFrame"
  1675. },
  1676. "_type": 0,
  1677. "_fillType": 0,
  1678. "_sizeMode": 1,
  1679. "_fillCenter": {
  1680. "__type__": "cc.Vec2",
  1681. "x": 0,
  1682. "y": 0
  1683. },
  1684. "_fillStart": 0,
  1685. "_fillRange": 0,
  1686. "_isTrimmedMode": true,
  1687. "_useGrayscale": false,
  1688. "_atlas": null,
  1689. "_id": ""
  1690. },
  1691. {
  1692. "__type__": "cc.CompPrefabInfo",
  1693. "fileId": "58immCiBNBwZmne1eaXtRZ"
  1694. },
  1695. {
  1696. "__type__": "cc.PrefabInfo",
  1697. "root": {
  1698. "__id__": 1
  1699. },
  1700. "asset": {
  1701. "__id__": 0
  1702. },
  1703. "fileId": "4cSJPxB6lHKaN3H2dBswbi",
  1704. "instance": null,
  1705. "targetOverrides": null,
  1706. "nestedPrefabInstanceRoots": null
  1707. },
  1708. {
  1709. "__type__": "cc.Node",
  1710. "_name": "lab_region",
  1711. "_objFlags": 0,
  1712. "__editorExtras__": {},
  1713. "_parent": {
  1714. "__id__": 60
  1715. },
  1716. "_children": [],
  1717. "_active": true,
  1718. "_components": [
  1719. {
  1720. "__id__": 68
  1721. },
  1722. {
  1723. "__id__": 70
  1724. }
  1725. ],
  1726. "_prefab": {
  1727. "__id__": 72
  1728. },
  1729. "_lpos": {
  1730. "__type__": "cc.Vec3",
  1731. "x": 7,
  1732. "y": 0,
  1733. "z": 0
  1734. },
  1735. "_lrot": {
  1736. "__type__": "cc.Quat",
  1737. "x": 0,
  1738. "y": 0,
  1739. "z": 0,
  1740. "w": 1
  1741. },
  1742. "_lscale": {
  1743. "__type__": "cc.Vec3",
  1744. "x": 1,
  1745. "y": 1,
  1746. "z": 1
  1747. },
  1748. "_mobility": 0,
  1749. "_layer": 33554432,
  1750. "_euler": {
  1751. "__type__": "cc.Vec3",
  1752. "x": 0,
  1753. "y": 0,
  1754. "z": 0
  1755. },
  1756. "_id": ""
  1757. },
  1758. {
  1759. "__type__": "cc.UITransform",
  1760. "_name": "",
  1761. "_objFlags": 0,
  1762. "__editorExtras__": {},
  1763. "node": {
  1764. "__id__": 67
  1765. },
  1766. "_enabled": true,
  1767. "__prefab": {
  1768. "__id__": 69
  1769. },
  1770. "_contentSize": {
  1771. "__type__": "cc.Size",
  1772. "width": 270,
  1773. "height": 50.4
  1774. },
  1775. "_anchorPoint": {
  1776. "__type__": "cc.Vec2",
  1777. "x": 0.5,
  1778. "y": 0.5
  1779. },
  1780. "_id": ""
  1781. },
  1782. {
  1783. "__type__": "cc.CompPrefabInfo",
  1784. "fileId": "13eYokXPBK4LuyI2OitI5W"
  1785. },
  1786. {
  1787. "__type__": "cc.Label",
  1788. "_name": "",
  1789. "_objFlags": 0,
  1790. "__editorExtras__": {},
  1791. "node": {
  1792. "__id__": 67
  1793. },
  1794. "_enabled": true,
  1795. "__prefab": {
  1796. "__id__": 71
  1797. },
  1798. "_customMaterial": null,
  1799. "_srcBlendFactor": 2,
  1800. "_dstBlendFactor": 4,
  1801. "_color": {
  1802. "__type__": "cc.Color",
  1803. "r": 198,
  1804. "g": 214,
  1805. "b": 252,
  1806. "a": 255
  1807. },
  1808. "_string": "北京市 - 北京市",
  1809. "_horizontalAlign": 1,
  1810. "_verticalAlign": 1,
  1811. "_actualFontSize": 28,
  1812. "_fontSize": 28,
  1813. "_fontFamily": "Arial",
  1814. "_lineHeight": 40,
  1815. "_overflow": 2,
  1816. "_enableWrapText": false,
  1817. "_font": null,
  1818. "_isSystemFontUsed": true,
  1819. "_spacingX": 0,
  1820. "_isItalic": false,
  1821. "_isBold": true,
  1822. "_isUnderline": false,
  1823. "_underlineHeight": 2,
  1824. "_cacheMode": 0,
  1825. "_enableOutline": false,
  1826. "_outlineColor": {
  1827. "__type__": "cc.Color",
  1828. "r": 0,
  1829. "g": 0,
  1830. "b": 0,
  1831. "a": 255
  1832. },
  1833. "_outlineWidth": 2,
  1834. "_enableShadow": false,
  1835. "_shadowColor": {
  1836. "__type__": "cc.Color",
  1837. "r": 0,
  1838. "g": 0,
  1839. "b": 0,
  1840. "a": 255
  1841. },
  1842. "_shadowOffset": {
  1843. "__type__": "cc.Vec2",
  1844. "x": 2,
  1845. "y": 2
  1846. },
  1847. "_shadowBlur": 2,
  1848. "_id": ""
  1849. },
  1850. {
  1851. "__type__": "cc.CompPrefabInfo",
  1852. "fileId": "88VwlJpelGBbU2QImodB7u"
  1853. },
  1854. {
  1855. "__type__": "cc.PrefabInfo",
  1856. "root": {
  1857. "__id__": 1
  1858. },
  1859. "asset": {
  1860. "__id__": 0
  1861. },
  1862. "fileId": "b7pGY6gPBDwYxIyjOvqfAD",
  1863. "instance": null,
  1864. "targetOverrides": null,
  1865. "nestedPrefabInstanceRoots": null
  1866. },
  1867. {
  1868. "__type__": "cc.Node",
  1869. "_name": "img_lib_edit",
  1870. "_objFlags": 0,
  1871. "__editorExtras__": {},
  1872. "_parent": {
  1873. "__id__": 60
  1874. },
  1875. "_children": [],
  1876. "_active": true,
  1877. "_components": [
  1878. {
  1879. "__id__": 74
  1880. },
  1881. {
  1882. "__id__": 76
  1883. }
  1884. ],
  1885. "_prefab": {
  1886. "__id__": 78
  1887. },
  1888. "_lpos": {
  1889. "__type__": "cc.Vec3",
  1890. "x": 162.75,
  1891. "y": 0,
  1892. "z": 0
  1893. },
  1894. "_lrot": {
  1895. "__type__": "cc.Quat",
  1896. "x": 0,
  1897. "y": 0,
  1898. "z": 0,
  1899. "w": 1
  1900. },
  1901. "_lscale": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 1,
  1904. "y": 1,
  1905. "z": 1
  1906. },
  1907. "_mobility": 0,
  1908. "_layer": 33554432,
  1909. "_euler": {
  1910. "__type__": "cc.Vec3",
  1911. "x": 0,
  1912. "y": 0,
  1913. "z": 0
  1914. },
  1915. "_id": ""
  1916. },
  1917. {
  1918. "__type__": "cc.UITransform",
  1919. "_name": "",
  1920. "_objFlags": 0,
  1921. "__editorExtras__": {},
  1922. "node": {
  1923. "__id__": 73
  1924. },
  1925. "_enabled": true,
  1926. "__prefab": {
  1927. "__id__": 75
  1928. },
  1929. "_contentSize": {
  1930. "__type__": "cc.Size",
  1931. "width": 32,
  1932. "height": 32
  1933. },
  1934. "_anchorPoint": {
  1935. "__type__": "cc.Vec2",
  1936. "x": 0.5,
  1937. "y": 0.5
  1938. },
  1939. "_id": ""
  1940. },
  1941. {
  1942. "__type__": "cc.CompPrefabInfo",
  1943. "fileId": "12hEm9nQZEA7uKNRoNsPSd"
  1944. },
  1945. {
  1946. "__type__": "cc.Sprite",
  1947. "_name": "",
  1948. "_objFlags": 0,
  1949. "__editorExtras__": {},
  1950. "node": {
  1951. "__id__": 73
  1952. },
  1953. "_enabled": true,
  1954. "__prefab": {
  1955. "__id__": 77
  1956. },
  1957. "_customMaterial": null,
  1958. "_srcBlendFactor": 2,
  1959. "_dstBlendFactor": 4,
  1960. "_color": {
  1961. "__type__": "cc.Color",
  1962. "r": 255,
  1963. "g": 255,
  1964. "b": 255,
  1965. "a": 255
  1966. },
  1967. "_spriteFrame": {
  1968. "__uuid__": "0631baa3-3e51-45fb-8192-ea4cb37a2306@f9941",
  1969. "__expectedType__": "cc.SpriteFrame"
  1970. },
  1971. "_type": 0,
  1972. "_fillType": 0,
  1973. "_sizeMode": 1,
  1974. "_fillCenter": {
  1975. "__type__": "cc.Vec2",
  1976. "x": 0,
  1977. "y": 0
  1978. },
  1979. "_fillStart": 0,
  1980. "_fillRange": 0,
  1981. "_isTrimmedMode": true,
  1982. "_useGrayscale": false,
  1983. "_atlas": null,
  1984. "_id": ""
  1985. },
  1986. {
  1987. "__type__": "cc.CompPrefabInfo",
  1988. "fileId": "0cV5SkIcZJpZKs6BsSFKj/"
  1989. },
  1990. {
  1991. "__type__": "cc.PrefabInfo",
  1992. "root": {
  1993. "__id__": 1
  1994. },
  1995. "asset": {
  1996. "__id__": 0
  1997. },
  1998. "fileId": "aeMtCXsu1OdZne59u5qjYW",
  1999. "instance": null,
  2000. "targetOverrides": null,
  2001. "nestedPrefabInstanceRoots": null
  2002. },
  2003. {
  2004. "__type__": "cc.UITransform",
  2005. "_name": "",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "node": {
  2009. "__id__": 60
  2010. },
  2011. "_enabled": true,
  2012. "__prefab": {
  2013. "__id__": 80
  2014. },
  2015. "_contentSize": {
  2016. "__type__": "cc.Size",
  2017. "width": 360,
  2018. "height": 120
  2019. },
  2020. "_anchorPoint": {
  2021. "__type__": "cc.Vec2",
  2022. "x": 0.5,
  2023. "y": 0.5
  2024. },
  2025. "_id": ""
  2026. },
  2027. {
  2028. "__type__": "cc.CompPrefabInfo",
  2029. "fileId": "0eUNVGvuhGQZ9HBnCWe3HF"
  2030. },
  2031. {
  2032. "__type__": "cc.Sprite",
  2033. "_name": "",
  2034. "_objFlags": 0,
  2035. "__editorExtras__": {},
  2036. "node": {
  2037. "__id__": 60
  2038. },
  2039. "_enabled": false,
  2040. "__prefab": {
  2041. "__id__": 82
  2042. },
  2043. "_customMaterial": null,
  2044. "_srcBlendFactor": 2,
  2045. "_dstBlendFactor": 4,
  2046. "_color": {
  2047. "__type__": "cc.Color",
  2048. "r": 255,
  2049. "g": 255,
  2050. "b": 255,
  2051. "a": 255
  2052. },
  2053. "_spriteFrame": {
  2054. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  2055. "__expectedType__": "cc.SpriteFrame"
  2056. },
  2057. "_type": 1,
  2058. "_fillType": 0,
  2059. "_sizeMode": 0,
  2060. "_fillCenter": {
  2061. "__type__": "cc.Vec2",
  2062. "x": 0,
  2063. "y": 0
  2064. },
  2065. "_fillStart": 0,
  2066. "_fillRange": 0,
  2067. "_isTrimmedMode": true,
  2068. "_useGrayscale": false,
  2069. "_atlas": null,
  2070. "_id": ""
  2071. },
  2072. {
  2073. "__type__": "cc.CompPrefabInfo",
  2074. "fileId": "df7L8HXmVCYbTti40T4k7D"
  2075. },
  2076. {
  2077. "__type__": "cc.Button",
  2078. "_name": "",
  2079. "_objFlags": 0,
  2080. "__editorExtras__": {},
  2081. "node": {
  2082. "__id__": 60
  2083. },
  2084. "_enabled": true,
  2085. "__prefab": {
  2086. "__id__": 84
  2087. },
  2088. "clickEvents": [],
  2089. "_interactable": true,
  2090. "_transition": 3,
  2091. "_normalColor": {
  2092. "__type__": "cc.Color",
  2093. "r": 255,
  2094. "g": 255,
  2095. "b": 255,
  2096. "a": 255
  2097. },
  2098. "_hoverColor": {
  2099. "__type__": "cc.Color",
  2100. "r": 211,
  2101. "g": 211,
  2102. "b": 211,
  2103. "a": 255
  2104. },
  2105. "_pressedColor": {
  2106. "__type__": "cc.Color",
  2107. "r": 255,
  2108. "g": 255,
  2109. "b": 255,
  2110. "a": 255
  2111. },
  2112. "_disabledColor": {
  2113. "__type__": "cc.Color",
  2114. "r": 124,
  2115. "g": 124,
  2116. "b": 124,
  2117. "a": 255
  2118. },
  2119. "_normalSprite": null,
  2120. "_hoverSprite": null,
  2121. "_pressedSprite": null,
  2122. "_disabledSprite": null,
  2123. "_duration": 0.1,
  2124. "_zoomScale": 0.9,
  2125. "_target": null,
  2126. "_id": ""
  2127. },
  2128. {
  2129. "__type__": "cc.CompPrefabInfo",
  2130. "fileId": "96HQbN30FL6J1ccw/9N5u1"
  2131. },
  2132. {
  2133. "__type__": "cc.PrefabInfo",
  2134. "root": {
  2135. "__id__": 1
  2136. },
  2137. "asset": {
  2138. "__id__": 0
  2139. },
  2140. "fileId": "c70cXYsihGE7AIOPzntg7G",
  2141. "instance": null,
  2142. "targetOverrides": null,
  2143. "nestedPrefabInstanceRoots": null
  2144. },
  2145. {
  2146. "__type__": "cc.UITransform",
  2147. "_name": "",
  2148. "_objFlags": 0,
  2149. "__editorExtras__": {},
  2150. "node": {
  2151. "__id__": 21
  2152. },
  2153. "_enabled": true,
  2154. "__prefab": {
  2155. "__id__": 87
  2156. },
  2157. "_contentSize": {
  2158. "__type__": "cc.Size",
  2159. "width": 1080,
  2160. "height": 140
  2161. },
  2162. "_anchorPoint": {
  2163. "__type__": "cc.Vec2",
  2164. "x": 0.5,
  2165. "y": 0.5
  2166. },
  2167. "_id": ""
  2168. },
  2169. {
  2170. "__type__": "cc.CompPrefabInfo",
  2171. "fileId": "e9yHNhzipLBoerEP+CDgFj"
  2172. },
  2173. {
  2174. "__type__": "cc.Widget",
  2175. "_name": "",
  2176. "_objFlags": 0,
  2177. "__editorExtras__": {},
  2178. "node": {
  2179. "__id__": 21
  2180. },
  2181. "_enabled": true,
  2182. "__prefab": {
  2183. "__id__": 89
  2184. },
  2185. "_alignFlags": 40,
  2186. "_target": null,
  2187. "_left": 2.3925306180672123e-14,
  2188. "_right": -2.3925306180672123e-14,
  2189. "_top": 0,
  2190. "_bottom": 0,
  2191. "_horizontalCenter": 0,
  2192. "_verticalCenter": 0,
  2193. "_isAbsLeft": true,
  2194. "_isAbsRight": true,
  2195. "_isAbsTop": true,
  2196. "_isAbsBottom": true,
  2197. "_isAbsHorizontalCenter": true,
  2198. "_isAbsVerticalCenter": true,
  2199. "_originalWidth": 100,
  2200. "_originalHeight": 0,
  2201. "_alignMode": 2,
  2202. "_lockFlags": 0,
  2203. "_id": ""
  2204. },
  2205. {
  2206. "__type__": "cc.CompPrefabInfo",
  2207. "fileId": "aePkL1PkxC3Ys/UPbDekcW"
  2208. },
  2209. {
  2210. "__type__": "cc.Sprite",
  2211. "_name": "",
  2212. "_objFlags": 0,
  2213. "__editorExtras__": {},
  2214. "node": {
  2215. "__id__": 21
  2216. },
  2217. "_enabled": true,
  2218. "__prefab": {
  2219. "__id__": 91
  2220. },
  2221. "_customMaterial": null,
  2222. "_srcBlendFactor": 2,
  2223. "_dstBlendFactor": 4,
  2224. "_color": {
  2225. "__type__": "cc.Color",
  2226. "r": 255,
  2227. "g": 255,
  2228. "b": 255,
  2229. "a": 255
  2230. },
  2231. "_spriteFrame": {
  2232. "__uuid__": "60f8eaa9-c7f3-4cd1-a18d-19c7f5f25639@f9941",
  2233. "__expectedType__": "cc.SpriteFrame"
  2234. },
  2235. "_type": 0,
  2236. "_fillType": 0,
  2237. "_sizeMode": 0,
  2238. "_fillCenter": {
  2239. "__type__": "cc.Vec2",
  2240. "x": 0,
  2241. "y": 0
  2242. },
  2243. "_fillStart": 0,
  2244. "_fillRange": 0,
  2245. "_isTrimmedMode": true,
  2246. "_useGrayscale": false,
  2247. "_atlas": null,
  2248. "_id": ""
  2249. },
  2250. {
  2251. "__type__": "cc.CompPrefabInfo",
  2252. "fileId": "d0Q6NHMf1E5aXdJ2qjrVFX"
  2253. },
  2254. {
  2255. "__type__": "cc.PrefabInfo",
  2256. "root": {
  2257. "__id__": 1
  2258. },
  2259. "asset": {
  2260. "__id__": 0
  2261. },
  2262. "fileId": "94Vhn5JMtDxpytD9AwLmXy",
  2263. "instance": null,
  2264. "targetOverrides": null,
  2265. "nestedPrefabInstanceRoots": null
  2266. },
  2267. {
  2268. "__type__": "cc.Node",
  2269. "_name": "car_node",
  2270. "_objFlags": 0,
  2271. "__editorExtras__": {},
  2272. "_parent": {
  2273. "__id__": 20
  2274. },
  2275. "_children": [
  2276. {
  2277. "__id__": 94
  2278. },
  2279. {
  2280. "__id__": 100
  2281. },
  2282. {
  2283. "__id__": 106
  2284. }
  2285. ],
  2286. "_active": true,
  2287. "_components": [
  2288. {
  2289. "__id__": 112
  2290. },
  2291. {
  2292. "__id__": 114
  2293. }
  2294. ],
  2295. "_prefab": {
  2296. "__id__": 116
  2297. },
  2298. "_lpos": {
  2299. "__type__": "cc.Vec3",
  2300. "x": 0,
  2301. "y": -61.048,
  2302. "z": 0
  2303. },
  2304. "_lrot": {
  2305. "__type__": "cc.Quat",
  2306. "x": 0,
  2307. "y": 0,
  2308. "z": 0,
  2309. "w": 1
  2310. },
  2311. "_lscale": {
  2312. "__type__": "cc.Vec3",
  2313. "x": 1,
  2314. "y": 1,
  2315. "z": 1
  2316. },
  2317. "_mobility": 0,
  2318. "_layer": 33554432,
  2319. "_euler": {
  2320. "__type__": "cc.Vec3",
  2321. "x": 0,
  2322. "y": 0,
  2323. "z": 0
  2324. },
  2325. "_id": ""
  2326. },
  2327. {
  2328. "__type__": "cc.Node",
  2329. "_name": "img_wutai",
  2330. "_objFlags": 0,
  2331. "__editorExtras__": {},
  2332. "_parent": {
  2333. "__id__": 93
  2334. },
  2335. "_children": [],
  2336. "_active": true,
  2337. "_components": [
  2338. {
  2339. "__id__": 95
  2340. },
  2341. {
  2342. "__id__": 97
  2343. }
  2344. ],
  2345. "_prefab": {
  2346. "__id__": 99
  2347. },
  2348. "_lpos": {
  2349. "__type__": "cc.Vec3",
  2350. "x": 0,
  2351. "y": -172.916,
  2352. "z": 0
  2353. },
  2354. "_lrot": {
  2355. "__type__": "cc.Quat",
  2356. "x": 0,
  2357. "y": 0,
  2358. "z": 0,
  2359. "w": 1
  2360. },
  2361. "_lscale": {
  2362. "__type__": "cc.Vec3",
  2363. "x": 1,
  2364. "y": 1,
  2365. "z": 1
  2366. },
  2367. "_mobility": 0,
  2368. "_layer": 33554432,
  2369. "_euler": {
  2370. "__type__": "cc.Vec3",
  2371. "x": 0,
  2372. "y": 0,
  2373. "z": 0
  2374. },
  2375. "_id": ""
  2376. },
  2377. {
  2378. "__type__": "cc.UITransform",
  2379. "_name": "",
  2380. "_objFlags": 0,
  2381. "__editorExtras__": {},
  2382. "node": {
  2383. "__id__": 94
  2384. },
  2385. "_enabled": true,
  2386. "__prefab": {
  2387. "__id__": 96
  2388. },
  2389. "_contentSize": {
  2390. "__type__": "cc.Size",
  2391. "width": 1080,
  2392. "height": 337
  2393. },
  2394. "_anchorPoint": {
  2395. "__type__": "cc.Vec2",
  2396. "x": 0.5,
  2397. "y": 0.5
  2398. },
  2399. "_id": ""
  2400. },
  2401. {
  2402. "__type__": "cc.CompPrefabInfo",
  2403. "fileId": "b7GuCwAFBMqKrSy6t45qQC"
  2404. },
  2405. {
  2406. "__type__": "cc.Sprite",
  2407. "_name": "",
  2408. "_objFlags": 0,
  2409. "__editorExtras__": {},
  2410. "node": {
  2411. "__id__": 94
  2412. },
  2413. "_enabled": true,
  2414. "__prefab": {
  2415. "__id__": 98
  2416. },
  2417. "_customMaterial": null,
  2418. "_srcBlendFactor": 2,
  2419. "_dstBlendFactor": 4,
  2420. "_color": {
  2421. "__type__": "cc.Color",
  2422. "r": 255,
  2423. "g": 255,
  2424. "b": 255,
  2425. "a": 255
  2426. },
  2427. "_spriteFrame": {
  2428. "__uuid__": "9de5a776-54f5-4d29-a1e0-83929f506c7c@f9941",
  2429. "__expectedType__": "cc.SpriteFrame"
  2430. },
  2431. "_type": 0,
  2432. "_fillType": 0,
  2433. "_sizeMode": 1,
  2434. "_fillCenter": {
  2435. "__type__": "cc.Vec2",
  2436. "x": 0,
  2437. "y": 0
  2438. },
  2439. "_fillStart": 0,
  2440. "_fillRange": 0,
  2441. "_isTrimmedMode": true,
  2442. "_useGrayscale": false,
  2443. "_atlas": null,
  2444. "_id": ""
  2445. },
  2446. {
  2447. "__type__": "cc.CompPrefabInfo",
  2448. "fileId": "a2R5vowHhP6INGakgxvPO8"
  2449. },
  2450. {
  2451. "__type__": "cc.PrefabInfo",
  2452. "root": {
  2453. "__id__": 1
  2454. },
  2455. "asset": {
  2456. "__id__": 0
  2457. },
  2458. "fileId": "10JQaxNdFKyKsMyQd7maDk",
  2459. "instance": null,
  2460. "targetOverrides": null,
  2461. "nestedPrefabInstanceRoots": null
  2462. },
  2463. {
  2464. "__type__": "cc.Node",
  2465. "_name": "img_jiashizhong",
  2466. "_objFlags": 0,
  2467. "__editorExtras__": {},
  2468. "_parent": {
  2469. "__id__": 93
  2470. },
  2471. "_children": [],
  2472. "_active": true,
  2473. "_components": [
  2474. {
  2475. "__id__": 101
  2476. },
  2477. {
  2478. "__id__": 103
  2479. }
  2480. ],
  2481. "_prefab": {
  2482. "__id__": 105
  2483. },
  2484. "_lpos": {
  2485. "__type__": "cc.Vec3",
  2486. "x": 382.53,
  2487. "y": 295.439,
  2488. "z": 0
  2489. },
  2490. "_lrot": {
  2491. "__type__": "cc.Quat",
  2492. "x": 0,
  2493. "y": 0,
  2494. "z": 0,
  2495. "w": 1
  2496. },
  2497. "_lscale": {
  2498. "__type__": "cc.Vec3",
  2499. "x": 1,
  2500. "y": 1,
  2501. "z": 1
  2502. },
  2503. "_mobility": 0,
  2504. "_layer": 33554432,
  2505. "_euler": {
  2506. "__type__": "cc.Vec3",
  2507. "x": 0,
  2508. "y": 0,
  2509. "z": 0
  2510. },
  2511. "_id": ""
  2512. },
  2513. {
  2514. "__type__": "cc.UITransform",
  2515. "_name": "",
  2516. "_objFlags": 0,
  2517. "__editorExtras__": {},
  2518. "node": {
  2519. "__id__": 100
  2520. },
  2521. "_enabled": true,
  2522. "__prefab": {
  2523. "__id__": 102
  2524. },
  2525. "_contentSize": {
  2526. "__type__": "cc.Size",
  2527. "width": 233,
  2528. "height": 73
  2529. },
  2530. "_anchorPoint": {
  2531. "__type__": "cc.Vec2",
  2532. "x": 0.5,
  2533. "y": 0.5
  2534. },
  2535. "_id": ""
  2536. },
  2537. {
  2538. "__type__": "cc.CompPrefabInfo",
  2539. "fileId": "a63avG1TlG0qnGlDtz4ID7"
  2540. },
  2541. {
  2542. "__type__": "cc.Sprite",
  2543. "_name": "",
  2544. "_objFlags": 0,
  2545. "__editorExtras__": {},
  2546. "node": {
  2547. "__id__": 100
  2548. },
  2549. "_enabled": true,
  2550. "__prefab": {
  2551. "__id__": 104
  2552. },
  2553. "_customMaterial": null,
  2554. "_srcBlendFactor": 2,
  2555. "_dstBlendFactor": 4,
  2556. "_color": {
  2557. "__type__": "cc.Color",
  2558. "r": 255,
  2559. "g": 255,
  2560. "b": 255,
  2561. "a": 255
  2562. },
  2563. "_spriteFrame": {
  2564. "__uuid__": "d569e652-e7ee-4874-87dd-0fdfc0c3b26d@f9941",
  2565. "__expectedType__": "cc.SpriteFrame"
  2566. },
  2567. "_type": 0,
  2568. "_fillType": 0,
  2569. "_sizeMode": 1,
  2570. "_fillCenter": {
  2571. "__type__": "cc.Vec2",
  2572. "x": 0,
  2573. "y": 0
  2574. },
  2575. "_fillStart": 0,
  2576. "_fillRange": 0,
  2577. "_isTrimmedMode": true,
  2578. "_useGrayscale": false,
  2579. "_atlas": null,
  2580. "_id": ""
  2581. },
  2582. {
  2583. "__type__": "cc.CompPrefabInfo",
  2584. "fileId": "f4Y4EucChFKLXLvd9y1rb0"
  2585. },
  2586. {
  2587. "__type__": "cc.PrefabInfo",
  2588. "root": {
  2589. "__id__": 1
  2590. },
  2591. "asset": {
  2592. "__id__": 0
  2593. },
  2594. "fileId": "e34foZlu1MDrC13i5JWpA+",
  2595. "instance": null,
  2596. "targetOverrides": null,
  2597. "nestedPrefabInstanceRoots": null
  2598. },
  2599. {
  2600. "__type__": "cc.Node",
  2601. "_name": "img_car",
  2602. "_objFlags": 0,
  2603. "__editorExtras__": {},
  2604. "_parent": {
  2605. "__id__": 93
  2606. },
  2607. "_children": [],
  2608. "_active": true,
  2609. "_components": [
  2610. {
  2611. "__id__": 107
  2612. },
  2613. {
  2614. "__id__": 109
  2615. }
  2616. ],
  2617. "_prefab": {
  2618. "__id__": 111
  2619. },
  2620. "_lpos": {
  2621. "__type__": "cc.Vec3",
  2622. "x": 10,
  2623. "y": -28.710000000000036,
  2624. "z": 0
  2625. },
  2626. "_lrot": {
  2627. "__type__": "cc.Quat",
  2628. "x": 0,
  2629. "y": 0,
  2630. "z": 0,
  2631. "w": 1
  2632. },
  2633. "_lscale": {
  2634. "__type__": "cc.Vec3",
  2635. "x": 0.8,
  2636. "y": 0.8,
  2637. "z": 1
  2638. },
  2639. "_mobility": 0,
  2640. "_layer": 33554432,
  2641. "_euler": {
  2642. "__type__": "cc.Vec3",
  2643. "x": 0,
  2644. "y": 0,
  2645. "z": 0
  2646. },
  2647. "_id": ""
  2648. },
  2649. {
  2650. "__type__": "cc.UITransform",
  2651. "_name": "",
  2652. "_objFlags": 0,
  2653. "__editorExtras__": {},
  2654. "node": {
  2655. "__id__": 106
  2656. },
  2657. "_enabled": true,
  2658. "__prefab": {
  2659. "__id__": 108
  2660. },
  2661. "_contentSize": {
  2662. "__type__": "cc.Size",
  2663. "width": 634,
  2664. "height": 632
  2665. },
  2666. "_anchorPoint": {
  2667. "__type__": "cc.Vec2",
  2668. "x": 0.5,
  2669. "y": 0.5
  2670. },
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.CompPrefabInfo",
  2675. "fileId": "f4gIJe4wxM84B0uVaMcnKR"
  2676. },
  2677. {
  2678. "__type__": "cc.Sprite",
  2679. "_name": "",
  2680. "_objFlags": 0,
  2681. "__editorExtras__": {},
  2682. "node": {
  2683. "__id__": 106
  2684. },
  2685. "_enabled": true,
  2686. "__prefab": {
  2687. "__id__": 110
  2688. },
  2689. "_customMaterial": null,
  2690. "_srcBlendFactor": 2,
  2691. "_dstBlendFactor": 4,
  2692. "_color": {
  2693. "__type__": "cc.Color",
  2694. "r": 255,
  2695. "g": 255,
  2696. "b": 255,
  2697. "a": 255
  2698. },
  2699. "_spriteFrame": null,
  2700. "_type": 0,
  2701. "_fillType": 0,
  2702. "_sizeMode": 1,
  2703. "_fillCenter": {
  2704. "__type__": "cc.Vec2",
  2705. "x": 0,
  2706. "y": 0
  2707. },
  2708. "_fillStart": 0,
  2709. "_fillRange": 0,
  2710. "_isTrimmedMode": true,
  2711. "_useGrayscale": false,
  2712. "_atlas": null,
  2713. "_id": ""
  2714. },
  2715. {
  2716. "__type__": "cc.CompPrefabInfo",
  2717. "fileId": "2c8AhSvs9C0Y+5IChgGTwi"
  2718. },
  2719. {
  2720. "__type__": "cc.PrefabInfo",
  2721. "root": {
  2722. "__id__": 1
  2723. },
  2724. "asset": {
  2725. "__id__": 0
  2726. },
  2727. "fileId": "48OAYBDbNAwY55ap8DQdfm",
  2728. "instance": null,
  2729. "targetOverrides": null,
  2730. "nestedPrefabInstanceRoots": null
  2731. },
  2732. {
  2733. "__type__": "cc.UITransform",
  2734. "_name": "",
  2735. "_objFlags": 0,
  2736. "__editorExtras__": {},
  2737. "node": {
  2738. "__id__": 93
  2739. },
  2740. "_enabled": true,
  2741. "__prefab": {
  2742. "__id__": 113
  2743. },
  2744. "_contentSize": {
  2745. "__type__": "cc.Size",
  2746. "width": 1080,
  2747. "height": 680
  2748. },
  2749. "_anchorPoint": {
  2750. "__type__": "cc.Vec2",
  2751. "x": 0.5,
  2752. "y": 0.5
  2753. },
  2754. "_id": ""
  2755. },
  2756. {
  2757. "__type__": "cc.CompPrefabInfo",
  2758. "fileId": "d64716/DhBP7fpNOrsN/r3"
  2759. },
  2760. {
  2761. "__type__": "cc.Widget",
  2762. "_name": "",
  2763. "_objFlags": 0,
  2764. "__editorExtras__": {},
  2765. "node": {
  2766. "__id__": 93
  2767. },
  2768. "_enabled": true,
  2769. "__prefab": {
  2770. "__id__": 115
  2771. },
  2772. "_alignFlags": 40,
  2773. "_target": null,
  2774. "_left": 4.030109579389318e-14,
  2775. "_right": -4.030109579389318e-14,
  2776. "_top": 0,
  2777. "_bottom": 0,
  2778. "_horizontalCenter": 0,
  2779. "_verticalCenter": 0,
  2780. "_isAbsLeft": true,
  2781. "_isAbsRight": true,
  2782. "_isAbsTop": true,
  2783. "_isAbsBottom": true,
  2784. "_isAbsHorizontalCenter": true,
  2785. "_isAbsVerticalCenter": true,
  2786. "_originalWidth": 100,
  2787. "_originalHeight": 0,
  2788. "_alignMode": 2,
  2789. "_lockFlags": 0,
  2790. "_id": ""
  2791. },
  2792. {
  2793. "__type__": "cc.CompPrefabInfo",
  2794. "fileId": "82mkC3o3VC+5mjylFf0C80"
  2795. },
  2796. {
  2797. "__type__": "cc.PrefabInfo",
  2798. "root": {
  2799. "__id__": 1
  2800. },
  2801. "asset": {
  2802. "__id__": 0
  2803. },
  2804. "fileId": "a2SONfd8BG2pmqf3mPZkpj",
  2805. "instance": null,
  2806. "targetOverrides": null,
  2807. "nestedPrefabInstanceRoots": null
  2808. },
  2809. {
  2810. "__type__": "cc.UITransform",
  2811. "_name": "",
  2812. "_objFlags": 0,
  2813. "__editorExtras__": {},
  2814. "node": {
  2815. "__id__": 20
  2816. },
  2817. "_enabled": true,
  2818. "__prefab": {
  2819. "__id__": 118
  2820. },
  2821. "_contentSize": {
  2822. "__type__": "cc.Size",
  2823. "width": 1080,
  2824. "height": 800
  2825. },
  2826. "_anchorPoint": {
  2827. "__type__": "cc.Vec2",
  2828. "x": 0.5,
  2829. "y": 0.5
  2830. },
  2831. "_id": ""
  2832. },
  2833. {
  2834. "__type__": "cc.CompPrefabInfo",
  2835. "fileId": "26K1QaYgZDv7I36XQpDDPb"
  2836. },
  2837. {
  2838. "__type__": "cc.Widget",
  2839. "_name": "",
  2840. "_objFlags": 0,
  2841. "__editorExtras__": {},
  2842. "node": {
  2843. "__id__": 20
  2844. },
  2845. "_enabled": true,
  2846. "__prefab": {
  2847. "__id__": 120
  2848. },
  2849. "_alignFlags": 41,
  2850. "_target": null,
  2851. "_left": 2.2426505097428162e-14,
  2852. "_right": -2.2426505097428162e-14,
  2853. "_top": 192.9999999999999,
  2854. "_bottom": 0,
  2855. "_horizontalCenter": 0,
  2856. "_verticalCenter": 0,
  2857. "_isAbsLeft": true,
  2858. "_isAbsRight": true,
  2859. "_isAbsTop": true,
  2860. "_isAbsBottom": true,
  2861. "_isAbsHorizontalCenter": true,
  2862. "_isAbsVerticalCenter": true,
  2863. "_originalWidth": 100,
  2864. "_originalHeight": 0,
  2865. "_alignMode": 2,
  2866. "_lockFlags": 0,
  2867. "_id": ""
  2868. },
  2869. {
  2870. "__type__": "cc.CompPrefabInfo",
  2871. "fileId": "46GA8c661Ny7cuApMK2xpm"
  2872. },
  2873. {
  2874. "__type__": "cc.Sprite",
  2875. "_name": "",
  2876. "_objFlags": 0,
  2877. "__editorExtras__": {},
  2878. "node": {
  2879. "__id__": 20
  2880. },
  2881. "_enabled": false,
  2882. "__prefab": {
  2883. "__id__": 122
  2884. },
  2885. "_customMaterial": null,
  2886. "_srcBlendFactor": 2,
  2887. "_dstBlendFactor": 4,
  2888. "_color": {
  2889. "__type__": "cc.Color",
  2890. "r": 255,
  2891. "g": 255,
  2892. "b": 255,
  2893. "a": 255
  2894. },
  2895. "_spriteFrame": {
  2896. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  2897. "__expectedType__": "cc.SpriteFrame"
  2898. },
  2899. "_type": 1,
  2900. "_fillType": 0,
  2901. "_sizeMode": 0,
  2902. "_fillCenter": {
  2903. "__type__": "cc.Vec2",
  2904. "x": 0,
  2905. "y": 0
  2906. },
  2907. "_fillStart": 0,
  2908. "_fillRange": 0,
  2909. "_isTrimmedMode": true,
  2910. "_useGrayscale": false,
  2911. "_atlas": null,
  2912. "_id": ""
  2913. },
  2914. {
  2915. "__type__": "cc.CompPrefabInfo",
  2916. "fileId": "6a7VOe6h9BGZEbxU8jJDhs"
  2917. },
  2918. {
  2919. "__type__": "25383fNQcRI65eXq1dZ2wXG",
  2920. "_name": "",
  2921. "_objFlags": 0,
  2922. "__editorExtras__": {},
  2923. "node": {
  2924. "__id__": 20
  2925. },
  2926. "_enabled": true,
  2927. "__prefab": {
  2928. "__id__": 124
  2929. },
  2930. "img_avatar": {
  2931. "__id__": 24
  2932. },
  2933. "lab_nickname": {
  2934. "__id__": 48
  2935. },
  2936. "lab_car_pai": {
  2937. "__id__": 54
  2938. },
  2939. "btn_region": {
  2940. "__id__": 60
  2941. },
  2942. "lab_region": {
  2943. "__id__": 67
  2944. },
  2945. "img_car": {
  2946. "__id__": 106
  2947. },
  2948. "_id": ""
  2949. },
  2950. {
  2951. "__type__": "cc.CompPrefabInfo",
  2952. "fileId": "afFBKOgVVCVKW3W4/cJaGr"
  2953. },
  2954. {
  2955. "__type__": "cc.PrefabInfo",
  2956. "root": {
  2957. "__id__": 1
  2958. },
  2959. "asset": {
  2960. "__id__": 0
  2961. },
  2962. "fileId": "b74iZz7VNOhI0ACh85KE2J",
  2963. "instance": null,
  2964. "targetOverrides": null,
  2965. "nestedPrefabInstanceRoots": null
  2966. },
  2967. {
  2968. "__type__": "cc.Node",
  2969. "_name": "bottom_node",
  2970. "_objFlags": 0,
  2971. "__editorExtras__": {},
  2972. "_parent": {
  2973. "__id__": 1
  2974. },
  2975. "_children": [
  2976. {
  2977. "__id__": 127
  2978. },
  2979. {
  2980. "__id__": 177
  2981. }
  2982. ],
  2983. "_active": true,
  2984. "_components": [
  2985. {
  2986. "__id__": 221
  2987. },
  2988. {
  2989. "__id__": 223
  2990. },
  2991. {
  2992. "__id__": 225
  2993. },
  2994. {
  2995. "__id__": 227
  2996. }
  2997. ],
  2998. "_prefab": {
  2999. "__id__": 229
  3000. },
  3001. "_lpos": {
  3002. "__type__": "cc.Vec3",
  3003. "x": 0,
  3004. "y": -500,
  3005. "z": 0
  3006. },
  3007. "_lrot": {
  3008. "__type__": "cc.Quat",
  3009. "x": 0,
  3010. "y": 0,
  3011. "z": 0,
  3012. "w": 1
  3013. },
  3014. "_lscale": {
  3015. "__type__": "cc.Vec3",
  3016. "x": 1,
  3017. "y": 1,
  3018. "z": 1
  3019. },
  3020. "_mobility": 0,
  3021. "_layer": 33554432,
  3022. "_euler": {
  3023. "__type__": "cc.Vec3",
  3024. "x": 0,
  3025. "y": 0,
  3026. "z": 0
  3027. },
  3028. "_id": ""
  3029. },
  3030. {
  3031. "__type__": "cc.Node",
  3032. "_name": "select_node",
  3033. "_objFlags": 0,
  3034. "__editorExtras__": {},
  3035. "_parent": {
  3036. "__id__": 126
  3037. },
  3038. "_children": [
  3039. {
  3040. "__id__": 128
  3041. },
  3042. {
  3043. "__id__": 156
  3044. },
  3045. {
  3046. "__id__": 164
  3047. }
  3048. ],
  3049. "_active": true,
  3050. "_components": [
  3051. {
  3052. "__id__": 172
  3053. },
  3054. {
  3055. "__id__": 174
  3056. }
  3057. ],
  3058. "_prefab": {
  3059. "__id__": 176
  3060. },
  3061. "_lpos": {
  3062. "__type__": "cc.Vec3",
  3063. "x": 0,
  3064. "y": 420,
  3065. "z": 0
  3066. },
  3067. "_lrot": {
  3068. "__type__": "cc.Quat",
  3069. "x": 0,
  3070. "y": 0,
  3071. "z": 0,
  3072. "w": 1
  3073. },
  3074. "_lscale": {
  3075. "__type__": "cc.Vec3",
  3076. "x": 1,
  3077. "y": 1,
  3078. "z": 1
  3079. },
  3080. "_mobility": 0,
  3081. "_layer": 33554432,
  3082. "_euler": {
  3083. "__type__": "cc.Vec3",
  3084. "x": 0,
  3085. "y": 0,
  3086. "z": 0
  3087. },
  3088. "_id": ""
  3089. },
  3090. {
  3091. "__type__": "cc.Node",
  3092. "_name": "img_num_bg",
  3093. "_objFlags": 0,
  3094. "__editorExtras__": {},
  3095. "_parent": {
  3096. "__id__": 127
  3097. },
  3098. "_children": [
  3099. {
  3100. "__id__": 129
  3101. },
  3102. {
  3103. "__id__": 137
  3104. },
  3105. {
  3106. "__id__": 145
  3107. }
  3108. ],
  3109. "_active": true,
  3110. "_components": [
  3111. {
  3112. "__id__": 151
  3113. },
  3114. {
  3115. "__id__": 153
  3116. }
  3117. ],
  3118. "_prefab": {
  3119. "__id__": 155
  3120. },
  3121. "_lpos": {
  3122. "__type__": "cc.Vec3",
  3123. "x": -277.815,
  3124. "y": 0,
  3125. "z": 0
  3126. },
  3127. "_lrot": {
  3128. "__type__": "cc.Quat",
  3129. "x": 0,
  3130. "y": 0,
  3131. "z": 0,
  3132. "w": 1
  3133. },
  3134. "_lscale": {
  3135. "__type__": "cc.Vec3",
  3136. "x": 1,
  3137. "y": 1,
  3138. "z": 1
  3139. },
  3140. "_mobility": 0,
  3141. "_layer": 33554432,
  3142. "_euler": {
  3143. "__type__": "cc.Vec3",
  3144. "x": 0,
  3145. "y": 0,
  3146. "z": 0
  3147. },
  3148. "_id": ""
  3149. },
  3150. {
  3151. "__type__": "cc.Node",
  3152. "_name": "btn_num_left",
  3153. "_objFlags": 0,
  3154. "__editorExtras__": {},
  3155. "_parent": {
  3156. "__id__": 128
  3157. },
  3158. "_children": [],
  3159. "_active": true,
  3160. "_components": [
  3161. {
  3162. "__id__": 130
  3163. },
  3164. {
  3165. "__id__": 132
  3166. },
  3167. {
  3168. "__id__": 134
  3169. }
  3170. ],
  3171. "_prefab": {
  3172. "__id__": 136
  3173. },
  3174. "_lpos": {
  3175. "__type__": "cc.Vec3",
  3176. "x": -214.406,
  3177. "y": 0,
  3178. "z": 0
  3179. },
  3180. "_lrot": {
  3181. "__type__": "cc.Quat",
  3182. "x": 0,
  3183. "y": 0,
  3184. "z": 0,
  3185. "w": 1
  3186. },
  3187. "_lscale": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 1,
  3190. "y": 1,
  3191. "z": 1
  3192. },
  3193. "_mobility": 0,
  3194. "_layer": 33554432,
  3195. "_euler": {
  3196. "__type__": "cc.Vec3",
  3197. "x": 0,
  3198. "y": 0,
  3199. "z": 0
  3200. },
  3201. "_id": ""
  3202. },
  3203. {
  3204. "__type__": "cc.UITransform",
  3205. "_name": "",
  3206. "_objFlags": 0,
  3207. "__editorExtras__": {},
  3208. "node": {
  3209. "__id__": 129
  3210. },
  3211. "_enabled": true,
  3212. "__prefab": {
  3213. "__id__": 131
  3214. },
  3215. "_contentSize": {
  3216. "__type__": "cc.Size",
  3217. "width": 32,
  3218. "height": 47
  3219. },
  3220. "_anchorPoint": {
  3221. "__type__": "cc.Vec2",
  3222. "x": 0.5,
  3223. "y": 0.5
  3224. },
  3225. "_id": ""
  3226. },
  3227. {
  3228. "__type__": "cc.CompPrefabInfo",
  3229. "fileId": "18IaOaLDBLN7g7bo2bjkbD"
  3230. },
  3231. {
  3232. "__type__": "cc.Sprite",
  3233. "_name": "",
  3234. "_objFlags": 0,
  3235. "__editorExtras__": {},
  3236. "node": {
  3237. "__id__": 129
  3238. },
  3239. "_enabled": true,
  3240. "__prefab": {
  3241. "__id__": 133
  3242. },
  3243. "_customMaterial": null,
  3244. "_srcBlendFactor": 2,
  3245. "_dstBlendFactor": 4,
  3246. "_color": {
  3247. "__type__": "cc.Color",
  3248. "r": 255,
  3249. "g": 255,
  3250. "b": 255,
  3251. "a": 255
  3252. },
  3253. "_spriteFrame": {
  3254. "__uuid__": "88356287-bbef-40c8-b4ca-0ac7a427b167@f9941",
  3255. "__expectedType__": "cc.SpriteFrame"
  3256. },
  3257. "_type": 0,
  3258. "_fillType": 0,
  3259. "_sizeMode": 1,
  3260. "_fillCenter": {
  3261. "__type__": "cc.Vec2",
  3262. "x": 0,
  3263. "y": 0
  3264. },
  3265. "_fillStart": 0,
  3266. "_fillRange": 0,
  3267. "_isTrimmedMode": true,
  3268. "_useGrayscale": false,
  3269. "_atlas": null,
  3270. "_id": ""
  3271. },
  3272. {
  3273. "__type__": "cc.CompPrefabInfo",
  3274. "fileId": "73r4o8HrxEIK1o2HZjNRrG"
  3275. },
  3276. {
  3277. "__type__": "cc.Button",
  3278. "_name": "",
  3279. "_objFlags": 0,
  3280. "__editorExtras__": {},
  3281. "node": {
  3282. "__id__": 129
  3283. },
  3284. "_enabled": true,
  3285. "__prefab": {
  3286. "__id__": 135
  3287. },
  3288. "clickEvents": [],
  3289. "_interactable": true,
  3290. "_transition": 3,
  3291. "_normalColor": {
  3292. "__type__": "cc.Color",
  3293. "r": 255,
  3294. "g": 255,
  3295. "b": 255,
  3296. "a": 255
  3297. },
  3298. "_hoverColor": {
  3299. "__type__": "cc.Color",
  3300. "r": 211,
  3301. "g": 211,
  3302. "b": 211,
  3303. "a": 255
  3304. },
  3305. "_pressedColor": {
  3306. "__type__": "cc.Color",
  3307. "r": 255,
  3308. "g": 255,
  3309. "b": 255,
  3310. "a": 255
  3311. },
  3312. "_disabledColor": {
  3313. "__type__": "cc.Color",
  3314. "r": 124,
  3315. "g": 124,
  3316. "b": 124,
  3317. "a": 255
  3318. },
  3319. "_normalSprite": null,
  3320. "_hoverSprite": null,
  3321. "_pressedSprite": null,
  3322. "_disabledSprite": null,
  3323. "_duration": 0.1,
  3324. "_zoomScale": 0.9,
  3325. "_target": null,
  3326. "_id": ""
  3327. },
  3328. {
  3329. "__type__": "cc.CompPrefabInfo",
  3330. "fileId": "b2FOaYlfNDH77EgXwrWf7L"
  3331. },
  3332. {
  3333. "__type__": "cc.PrefabInfo",
  3334. "root": {
  3335. "__id__": 1
  3336. },
  3337. "asset": {
  3338. "__id__": 0
  3339. },
  3340. "fileId": "c7cyHCoq5G/pZjNlY11aRy",
  3341. "instance": null,
  3342. "targetOverrides": null,
  3343. "nestedPrefabInstanceRoots": null
  3344. },
  3345. {
  3346. "__type__": "cc.Node",
  3347. "_name": "btn_num_right",
  3348. "_objFlags": 0,
  3349. "__editorExtras__": {},
  3350. "_parent": {
  3351. "__id__": 128
  3352. },
  3353. "_children": [],
  3354. "_active": true,
  3355. "_components": [
  3356. {
  3357. "__id__": 138
  3358. },
  3359. {
  3360. "__id__": 140
  3361. },
  3362. {
  3363. "__id__": 142
  3364. }
  3365. ],
  3366. "_prefab": {
  3367. "__id__": 144
  3368. },
  3369. "_lpos": {
  3370. "__type__": "cc.Vec3",
  3371. "x": 214.329,
  3372. "y": 0,
  3373. "z": 0
  3374. },
  3375. "_lrot": {
  3376. "__type__": "cc.Quat",
  3377. "x": 0,
  3378. "y": 0,
  3379. "z": 0,
  3380. "w": 1
  3381. },
  3382. "_lscale": {
  3383. "__type__": "cc.Vec3",
  3384. "x": 1,
  3385. "y": 1,
  3386. "z": 1
  3387. },
  3388. "_mobility": 0,
  3389. "_layer": 33554432,
  3390. "_euler": {
  3391. "__type__": "cc.Vec3",
  3392. "x": 0,
  3393. "y": 0,
  3394. "z": 0
  3395. },
  3396. "_id": ""
  3397. },
  3398. {
  3399. "__type__": "cc.UITransform",
  3400. "_name": "",
  3401. "_objFlags": 0,
  3402. "__editorExtras__": {},
  3403. "node": {
  3404. "__id__": 137
  3405. },
  3406. "_enabled": true,
  3407. "__prefab": {
  3408. "__id__": 139
  3409. },
  3410. "_contentSize": {
  3411. "__type__": "cc.Size",
  3412. "width": 32,
  3413. "height": 45
  3414. },
  3415. "_anchorPoint": {
  3416. "__type__": "cc.Vec2",
  3417. "x": 0.5,
  3418. "y": 0.5
  3419. },
  3420. "_id": ""
  3421. },
  3422. {
  3423. "__type__": "cc.CompPrefabInfo",
  3424. "fileId": "07VWnSuQlClISWogWc3K81"
  3425. },
  3426. {
  3427. "__type__": "cc.Sprite",
  3428. "_name": "",
  3429. "_objFlags": 0,
  3430. "__editorExtras__": {},
  3431. "node": {
  3432. "__id__": 137
  3433. },
  3434. "_enabled": true,
  3435. "__prefab": {
  3436. "__id__": 141
  3437. },
  3438. "_customMaterial": null,
  3439. "_srcBlendFactor": 2,
  3440. "_dstBlendFactor": 4,
  3441. "_color": {
  3442. "__type__": "cc.Color",
  3443. "r": 255,
  3444. "g": 255,
  3445. "b": 255,
  3446. "a": 255
  3447. },
  3448. "_spriteFrame": {
  3449. "__uuid__": "a104a5d8-73d5-4485-bc91-f3b74e3288e3@f9941",
  3450. "__expectedType__": "cc.SpriteFrame"
  3451. },
  3452. "_type": 0,
  3453. "_fillType": 0,
  3454. "_sizeMode": 1,
  3455. "_fillCenter": {
  3456. "__type__": "cc.Vec2",
  3457. "x": 0,
  3458. "y": 0
  3459. },
  3460. "_fillStart": 0,
  3461. "_fillRange": 0,
  3462. "_isTrimmedMode": true,
  3463. "_useGrayscale": false,
  3464. "_atlas": null,
  3465. "_id": ""
  3466. },
  3467. {
  3468. "__type__": "cc.CompPrefabInfo",
  3469. "fileId": "e3etPV2XtM7ZyfCtK2hrdE"
  3470. },
  3471. {
  3472. "__type__": "cc.Button",
  3473. "_name": "",
  3474. "_objFlags": 0,
  3475. "__editorExtras__": {},
  3476. "node": {
  3477. "__id__": 137
  3478. },
  3479. "_enabled": true,
  3480. "__prefab": {
  3481. "__id__": 143
  3482. },
  3483. "clickEvents": [],
  3484. "_interactable": true,
  3485. "_transition": 3,
  3486. "_normalColor": {
  3487. "__type__": "cc.Color",
  3488. "r": 255,
  3489. "g": 255,
  3490. "b": 255,
  3491. "a": 255
  3492. },
  3493. "_hoverColor": {
  3494. "__type__": "cc.Color",
  3495. "r": 211,
  3496. "g": 211,
  3497. "b": 211,
  3498. "a": 255
  3499. },
  3500. "_pressedColor": {
  3501. "__type__": "cc.Color",
  3502. "r": 255,
  3503. "g": 255,
  3504. "b": 255,
  3505. "a": 255
  3506. },
  3507. "_disabledColor": {
  3508. "__type__": "cc.Color",
  3509. "r": 124,
  3510. "g": 124,
  3511. "b": 124,
  3512. "a": 255
  3513. },
  3514. "_normalSprite": null,
  3515. "_hoverSprite": null,
  3516. "_pressedSprite": null,
  3517. "_disabledSprite": null,
  3518. "_duration": 0.1,
  3519. "_zoomScale": 0.9,
  3520. "_target": null,
  3521. "_id": ""
  3522. },
  3523. {
  3524. "__type__": "cc.CompPrefabInfo",
  3525. "fileId": "84Plfms4BBraKcoMPJf8Ee"
  3526. },
  3527. {
  3528. "__type__": "cc.PrefabInfo",
  3529. "root": {
  3530. "__id__": 1
  3531. },
  3532. "asset": {
  3533. "__id__": 0
  3534. },
  3535. "fileId": "70cIqs15FK4LFKWhaLtjBe",
  3536. "instance": null,
  3537. "targetOverrides": null,
  3538. "nestedPrefabInstanceRoots": null
  3539. },
  3540. {
  3541. "__type__": "cc.Node",
  3542. "_name": "lab_num",
  3543. "_objFlags": 0,
  3544. "__editorExtras__": {},
  3545. "_parent": {
  3546. "__id__": 128
  3547. },
  3548. "_children": [],
  3549. "_active": true,
  3550. "_components": [
  3551. {
  3552. "__id__": 146
  3553. },
  3554. {
  3555. "__id__": 148
  3556. }
  3557. ],
  3558. "_prefab": {
  3559. "__id__": 150
  3560. },
  3561. "_lpos": {
  3562. "__type__": "cc.Vec3",
  3563. "x": 0,
  3564. "y": 0,
  3565. "z": 0
  3566. },
  3567. "_lrot": {
  3568. "__type__": "cc.Quat",
  3569. "x": 0,
  3570. "y": 0,
  3571. "z": 0,
  3572. "w": 1
  3573. },
  3574. "_lscale": {
  3575. "__type__": "cc.Vec3",
  3576. "x": 1,
  3577. "y": 1,
  3578. "z": 1
  3579. },
  3580. "_mobility": 0,
  3581. "_layer": 33554432,
  3582. "_euler": {
  3583. "__type__": "cc.Vec3",
  3584. "x": 0,
  3585. "y": 0,
  3586. "z": 0
  3587. },
  3588. "_id": ""
  3589. },
  3590. {
  3591. "__type__": "cc.UITransform",
  3592. "_name": "",
  3593. "_objFlags": 0,
  3594. "__editorExtras__": {},
  3595. "node": {
  3596. "__id__": 145
  3597. },
  3598. "_enabled": true,
  3599. "__prefab": {
  3600. "__id__": 147
  3601. },
  3602. "_contentSize": {
  3603. "__type__": "cc.Size",
  3604. "width": 300,
  3605. "height": 60
  3606. },
  3607. "_anchorPoint": {
  3608. "__type__": "cc.Vec2",
  3609. "x": 0.5,
  3610. "y": 0.5
  3611. },
  3612. "_id": ""
  3613. },
  3614. {
  3615. "__type__": "cc.CompPrefabInfo",
  3616. "fileId": "81k5zMLQZIua7E6WxiwkYu"
  3617. },
  3618. {
  3619. "__type__": "cc.Label",
  3620. "_name": "",
  3621. "_objFlags": 0,
  3622. "__editorExtras__": {},
  3623. "node": {
  3624. "__id__": 145
  3625. },
  3626. "_enabled": true,
  3627. "__prefab": {
  3628. "__id__": 149
  3629. },
  3630. "_customMaterial": null,
  3631. "_srcBlendFactor": 2,
  3632. "_dstBlendFactor": 4,
  3633. "_color": {
  3634. "__type__": "cc.Color",
  3635. "r": 122,
  3636. "g": 233,
  3637. "b": 237,
  3638. "a": 255
  3639. },
  3640. "_string": "1/1",
  3641. "_horizontalAlign": 1,
  3642. "_verticalAlign": 1,
  3643. "_actualFontSize": 51,
  3644. "_fontSize": 50,
  3645. "_fontFamily": "Arial",
  3646. "_lineHeight": 50,
  3647. "_overflow": 2,
  3648. "_enableWrapText": true,
  3649. "_font": null,
  3650. "_isSystemFontUsed": true,
  3651. "_spacingX": 0,
  3652. "_isItalic": false,
  3653. "_isBold": true,
  3654. "_isUnderline": false,
  3655. "_underlineHeight": 2,
  3656. "_cacheMode": 0,
  3657. "_enableOutline": false,
  3658. "_outlineColor": {
  3659. "__type__": "cc.Color",
  3660. "r": 0,
  3661. "g": 0,
  3662. "b": 0,
  3663. "a": 255
  3664. },
  3665. "_outlineWidth": 2,
  3666. "_enableShadow": false,
  3667. "_shadowColor": {
  3668. "__type__": "cc.Color",
  3669. "r": 0,
  3670. "g": 0,
  3671. "b": 0,
  3672. "a": 255
  3673. },
  3674. "_shadowOffset": {
  3675. "__type__": "cc.Vec2",
  3676. "x": 2,
  3677. "y": 2
  3678. },
  3679. "_shadowBlur": 2,
  3680. "_id": ""
  3681. },
  3682. {
  3683. "__type__": "cc.CompPrefabInfo",
  3684. "fileId": "4ei/wTNyRIJ5fyy4UWQD/r"
  3685. },
  3686. {
  3687. "__type__": "cc.PrefabInfo",
  3688. "root": {
  3689. "__id__": 1
  3690. },
  3691. "asset": {
  3692. "__id__": 0
  3693. },
  3694. "fileId": "9fTOpy0rdFy7pQLSrgb62n",
  3695. "instance": null,
  3696. "targetOverrides": null,
  3697. "nestedPrefabInstanceRoots": null
  3698. },
  3699. {
  3700. "__type__": "cc.UITransform",
  3701. "_name": "",
  3702. "_objFlags": 0,
  3703. "__editorExtras__": {},
  3704. "node": {
  3705. "__id__": 128
  3706. },
  3707. "_enabled": true,
  3708. "__prefab": {
  3709. "__id__": 152
  3710. },
  3711. "_contentSize": {
  3712. "__type__": "cc.Size",
  3713. "width": 521,
  3714. "height": 73
  3715. },
  3716. "_anchorPoint": {
  3717. "__type__": "cc.Vec2",
  3718. "x": 0.5,
  3719. "y": 0.5
  3720. },
  3721. "_id": ""
  3722. },
  3723. {
  3724. "__type__": "cc.CompPrefabInfo",
  3725. "fileId": "9al9U/RJtOnrPjV3Id2L+7"
  3726. },
  3727. {
  3728. "__type__": "cc.Sprite",
  3729. "_name": "",
  3730. "_objFlags": 0,
  3731. "__editorExtras__": {},
  3732. "node": {
  3733. "__id__": 128
  3734. },
  3735. "_enabled": true,
  3736. "__prefab": {
  3737. "__id__": 154
  3738. },
  3739. "_customMaterial": null,
  3740. "_srcBlendFactor": 2,
  3741. "_dstBlendFactor": 4,
  3742. "_color": {
  3743. "__type__": "cc.Color",
  3744. "r": 255,
  3745. "g": 255,
  3746. "b": 255,
  3747. "a": 255
  3748. },
  3749. "_spriteFrame": {
  3750. "__uuid__": "054e8bcb-b5b3-4749-b7fa-c729327903ab@f9941",
  3751. "__expectedType__": "cc.SpriteFrame"
  3752. },
  3753. "_type": 0,
  3754. "_fillType": 0,
  3755. "_sizeMode": 1,
  3756. "_fillCenter": {
  3757. "__type__": "cc.Vec2",
  3758. "x": 0,
  3759. "y": 0
  3760. },
  3761. "_fillStart": 0,
  3762. "_fillRange": 0,
  3763. "_isTrimmedMode": true,
  3764. "_useGrayscale": false,
  3765. "_atlas": null,
  3766. "_id": ""
  3767. },
  3768. {
  3769. "__type__": "cc.CompPrefabInfo",
  3770. "fileId": "7dMl1HQHRPSbkBkZs07W2X"
  3771. },
  3772. {
  3773. "__type__": "cc.PrefabInfo",
  3774. "root": {
  3775. "__id__": 1
  3776. },
  3777. "asset": {
  3778. "__id__": 0
  3779. },
  3780. "fileId": "bbkK597vtPAYU31Qhkdj/r",
  3781. "instance": null,
  3782. "targetOverrides": null,
  3783. "nestedPrefabInstanceRoots": null
  3784. },
  3785. {
  3786. "__type__": "cc.Node",
  3787. "_name": "btn_score_sort",
  3788. "_objFlags": 0,
  3789. "__editorExtras__": {},
  3790. "_parent": {
  3791. "__id__": 127
  3792. },
  3793. "_children": [],
  3794. "_active": true,
  3795. "_components": [
  3796. {
  3797. "__id__": 157
  3798. },
  3799. {
  3800. "__id__": 159
  3801. },
  3802. {
  3803. "__id__": 161
  3804. }
  3805. ],
  3806. "_prefab": {
  3807. "__id__": 163
  3808. },
  3809. "_lpos": {
  3810. "__type__": "cc.Vec3",
  3811. "x": 150.945,
  3812. "y": 0,
  3813. "z": 0
  3814. },
  3815. "_lrot": {
  3816. "__type__": "cc.Quat",
  3817. "x": 0,
  3818. "y": 0,
  3819. "z": 0,
  3820. "w": 1
  3821. },
  3822. "_lscale": {
  3823. "__type__": "cc.Vec3",
  3824. "x": 1,
  3825. "y": 1,
  3826. "z": 1
  3827. },
  3828. "_mobility": 0,
  3829. "_layer": 33554432,
  3830. "_euler": {
  3831. "__type__": "cc.Vec3",
  3832. "x": 0,
  3833. "y": 0,
  3834. "z": 0
  3835. },
  3836. "_id": ""
  3837. },
  3838. {
  3839. "__type__": "cc.UITransform",
  3840. "_name": "",
  3841. "_objFlags": 0,
  3842. "__editorExtras__": {},
  3843. "node": {
  3844. "__id__": 156
  3845. },
  3846. "_enabled": true,
  3847. "__prefab": {
  3848. "__id__": 158
  3849. },
  3850. "_contentSize": {
  3851. "__type__": "cc.Size",
  3852. "width": 283,
  3853. "height": 84
  3854. },
  3855. "_anchorPoint": {
  3856. "__type__": "cc.Vec2",
  3857. "x": 0.5,
  3858. "y": 0.5
  3859. },
  3860. "_id": ""
  3861. },
  3862. {
  3863. "__type__": "cc.CompPrefabInfo",
  3864. "fileId": "a8A1gGhEBCi7SR1y//DZFI"
  3865. },
  3866. {
  3867. "__type__": "cc.Sprite",
  3868. "_name": "",
  3869. "_objFlags": 0,
  3870. "__editorExtras__": {},
  3871. "node": {
  3872. "__id__": 156
  3873. },
  3874. "_enabled": true,
  3875. "__prefab": {
  3876. "__id__": 160
  3877. },
  3878. "_customMaterial": null,
  3879. "_srcBlendFactor": 2,
  3880. "_dstBlendFactor": 4,
  3881. "_color": {
  3882. "__type__": "cc.Color",
  3883. "r": 255,
  3884. "g": 255,
  3885. "b": 255,
  3886. "a": 255
  3887. },
  3888. "_spriteFrame": {
  3889. "__uuid__": "e7c25ef4-3e5b-4e8a-8144-99004196a359@f9941",
  3890. "__expectedType__": "cc.SpriteFrame"
  3891. },
  3892. "_type": 0,
  3893. "_fillType": 0,
  3894. "_sizeMode": 1,
  3895. "_fillCenter": {
  3896. "__type__": "cc.Vec2",
  3897. "x": 0,
  3898. "y": 0
  3899. },
  3900. "_fillStart": 0,
  3901. "_fillRange": 0,
  3902. "_isTrimmedMode": true,
  3903. "_useGrayscale": false,
  3904. "_atlas": null,
  3905. "_id": ""
  3906. },
  3907. {
  3908. "__type__": "cc.CompPrefabInfo",
  3909. "fileId": "39PG6Y0n9DcLYmIIpFU9PN"
  3910. },
  3911. {
  3912. "__type__": "cc.Button",
  3913. "_name": "",
  3914. "_objFlags": 0,
  3915. "__editorExtras__": {},
  3916. "node": {
  3917. "__id__": 156
  3918. },
  3919. "_enabled": true,
  3920. "__prefab": {
  3921. "__id__": 162
  3922. },
  3923. "clickEvents": [],
  3924. "_interactable": true,
  3925. "_transition": 3,
  3926. "_normalColor": {
  3927. "__type__": "cc.Color",
  3928. "r": 255,
  3929. "g": 255,
  3930. "b": 255,
  3931. "a": 255
  3932. },
  3933. "_hoverColor": {
  3934. "__type__": "cc.Color",
  3935. "r": 211,
  3936. "g": 211,
  3937. "b": 211,
  3938. "a": 255
  3939. },
  3940. "_pressedColor": {
  3941. "__type__": "cc.Color",
  3942. "r": 255,
  3943. "g": 255,
  3944. "b": 255,
  3945. "a": 255
  3946. },
  3947. "_disabledColor": {
  3948. "__type__": "cc.Color",
  3949. "r": 124,
  3950. "g": 124,
  3951. "b": 124,
  3952. "a": 255
  3953. },
  3954. "_normalSprite": null,
  3955. "_hoverSprite": null,
  3956. "_pressedSprite": null,
  3957. "_disabledSprite": null,
  3958. "_duration": 0.1,
  3959. "_zoomScale": 0.9,
  3960. "_target": null,
  3961. "_id": ""
  3962. },
  3963. {
  3964. "__type__": "cc.CompPrefabInfo",
  3965. "fileId": "5ceblTeL9Ipa6oBulflCZF"
  3966. },
  3967. {
  3968. "__type__": "cc.PrefabInfo",
  3969. "root": {
  3970. "__id__": 1
  3971. },
  3972. "asset": {
  3973. "__id__": 0
  3974. },
  3975. "fileId": "30deidDKVAkYXPE9imVLHZ",
  3976. "instance": null,
  3977. "targetOverrides": null,
  3978. "nestedPrefabInstanceRoots": null
  3979. },
  3980. {
  3981. "__type__": "cc.Node",
  3982. "_name": "btn_jiesuo",
  3983. "_objFlags": 0,
  3984. "__editorExtras__": {},
  3985. "_parent": {
  3986. "__id__": 127
  3987. },
  3988. "_children": [],
  3989. "_active": true,
  3990. "_components": [
  3991. {
  3992. "__id__": 165
  3993. },
  3994. {
  3995. "__id__": 167
  3996. },
  3997. {
  3998. "__id__": 169
  3999. }
  4000. ],
  4001. "_prefab": {
  4002. "__id__": 171
  4003. },
  4004. "_lpos": {
  4005. "__type__": "cc.Vec3",
  4006. "x": 413.633,
  4007. "y": 0,
  4008. "z": 0
  4009. },
  4010. "_lrot": {
  4011. "__type__": "cc.Quat",
  4012. "x": 0,
  4013. "y": 0,
  4014. "z": 0,
  4015. "w": 1
  4016. },
  4017. "_lscale": {
  4018. "__type__": "cc.Vec3",
  4019. "x": 1,
  4020. "y": 1,
  4021. "z": 1
  4022. },
  4023. "_mobility": 0,
  4024. "_layer": 33554432,
  4025. "_euler": {
  4026. "__type__": "cc.Vec3",
  4027. "x": 0,
  4028. "y": 0,
  4029. "z": 0
  4030. },
  4031. "_id": ""
  4032. },
  4033. {
  4034. "__type__": "cc.UITransform",
  4035. "_name": "",
  4036. "_objFlags": 0,
  4037. "__editorExtras__": {},
  4038. "node": {
  4039. "__id__": 164
  4040. },
  4041. "_enabled": true,
  4042. "__prefab": {
  4043. "__id__": 166
  4044. },
  4045. "_contentSize": {
  4046. "__type__": "cc.Size",
  4047. "width": 202,
  4048. "height": 70
  4049. },
  4050. "_anchorPoint": {
  4051. "__type__": "cc.Vec2",
  4052. "x": 0.5,
  4053. "y": 0.5
  4054. },
  4055. "_id": ""
  4056. },
  4057. {
  4058. "__type__": "cc.CompPrefabInfo",
  4059. "fileId": "56Iu85L8pPGrs1Tcg7KCwt"
  4060. },
  4061. {
  4062. "__type__": "cc.Sprite",
  4063. "_name": "",
  4064. "_objFlags": 0,
  4065. "__editorExtras__": {},
  4066. "node": {
  4067. "__id__": 164
  4068. },
  4069. "_enabled": true,
  4070. "__prefab": {
  4071. "__id__": 168
  4072. },
  4073. "_customMaterial": null,
  4074. "_srcBlendFactor": 2,
  4075. "_dstBlendFactor": 4,
  4076. "_color": {
  4077. "__type__": "cc.Color",
  4078. "r": 255,
  4079. "g": 255,
  4080. "b": 255,
  4081. "a": 255
  4082. },
  4083. "_spriteFrame": {
  4084. "__uuid__": "b1bd300f-37ee-4bfe-9648-2cbd012a8397@f9941",
  4085. "__expectedType__": "cc.SpriteFrame"
  4086. },
  4087. "_type": 0,
  4088. "_fillType": 0,
  4089. "_sizeMode": 1,
  4090. "_fillCenter": {
  4091. "__type__": "cc.Vec2",
  4092. "x": 0,
  4093. "y": 0
  4094. },
  4095. "_fillStart": 0,
  4096. "_fillRange": 0,
  4097. "_isTrimmedMode": true,
  4098. "_useGrayscale": false,
  4099. "_atlas": null,
  4100. "_id": ""
  4101. },
  4102. {
  4103. "__type__": "cc.CompPrefabInfo",
  4104. "fileId": "ddmiZTHo1PLp3p2O/AdWmP"
  4105. },
  4106. {
  4107. "__type__": "cc.Button",
  4108. "_name": "",
  4109. "_objFlags": 0,
  4110. "__editorExtras__": {},
  4111. "node": {
  4112. "__id__": 164
  4113. },
  4114. "_enabled": true,
  4115. "__prefab": {
  4116. "__id__": 170
  4117. },
  4118. "clickEvents": [],
  4119. "_interactable": true,
  4120. "_transition": 3,
  4121. "_normalColor": {
  4122. "__type__": "cc.Color",
  4123. "r": 255,
  4124. "g": 255,
  4125. "b": 255,
  4126. "a": 255
  4127. },
  4128. "_hoverColor": {
  4129. "__type__": "cc.Color",
  4130. "r": 211,
  4131. "g": 211,
  4132. "b": 211,
  4133. "a": 255
  4134. },
  4135. "_pressedColor": {
  4136. "__type__": "cc.Color",
  4137. "r": 255,
  4138. "g": 255,
  4139. "b": 255,
  4140. "a": 255
  4141. },
  4142. "_disabledColor": {
  4143. "__type__": "cc.Color",
  4144. "r": 124,
  4145. "g": 124,
  4146. "b": 124,
  4147. "a": 255
  4148. },
  4149. "_normalSprite": null,
  4150. "_hoverSprite": null,
  4151. "_pressedSprite": null,
  4152. "_disabledSprite": null,
  4153. "_duration": 0.1,
  4154. "_zoomScale": 0.9,
  4155. "_target": null,
  4156. "_id": ""
  4157. },
  4158. {
  4159. "__type__": "cc.CompPrefabInfo",
  4160. "fileId": "89fSYahv5CMYYmUYRwm74a"
  4161. },
  4162. {
  4163. "__type__": "cc.PrefabInfo",
  4164. "root": {
  4165. "__id__": 1
  4166. },
  4167. "asset": {
  4168. "__id__": 0
  4169. },
  4170. "fileId": "60qMNH+NpD6ZkhdVVwZ30H",
  4171. "instance": null,
  4172. "targetOverrides": null,
  4173. "nestedPrefabInstanceRoots": null
  4174. },
  4175. {
  4176. "__type__": "cc.UITransform",
  4177. "_name": "",
  4178. "_objFlags": 0,
  4179. "__editorExtras__": {},
  4180. "node": {
  4181. "__id__": 127
  4182. },
  4183. "_enabled": true,
  4184. "__prefab": {
  4185. "__id__": 173
  4186. },
  4187. "_contentSize": {
  4188. "__type__": "cc.Size",
  4189. "width": 1080,
  4190. "height": 80
  4191. },
  4192. "_anchorPoint": {
  4193. "__type__": "cc.Vec2",
  4194. "x": 0.5,
  4195. "y": 0.5
  4196. },
  4197. "_id": ""
  4198. },
  4199. {
  4200. "__type__": "cc.CompPrefabInfo",
  4201. "fileId": "e8iHZxLqFLooHFs+t7pYgf"
  4202. },
  4203. {
  4204. "__type__": "cc.Widget",
  4205. "_name": "",
  4206. "_objFlags": 0,
  4207. "__editorExtras__": {},
  4208. "node": {
  4209. "__id__": 127
  4210. },
  4211. "_enabled": true,
  4212. "__prefab": {
  4213. "__id__": 175
  4214. },
  4215. "_alignFlags": 41,
  4216. "_target": null,
  4217. "_left": 3.730349362740526e-14,
  4218. "_right": -3.730349362740526e-14,
  4219. "_top": 0,
  4220. "_bottom": 0,
  4221. "_horizontalCenter": 0,
  4222. "_verticalCenter": 0,
  4223. "_isAbsLeft": true,
  4224. "_isAbsRight": true,
  4225. "_isAbsTop": true,
  4226. "_isAbsBottom": true,
  4227. "_isAbsHorizontalCenter": true,
  4228. "_isAbsVerticalCenter": true,
  4229. "_originalWidth": 100,
  4230. "_originalHeight": 0,
  4231. "_alignMode": 2,
  4232. "_lockFlags": 0,
  4233. "_id": ""
  4234. },
  4235. {
  4236. "__type__": "cc.CompPrefabInfo",
  4237. "fileId": "51B8SvUnpHnqLvXufDC/BN"
  4238. },
  4239. {
  4240. "__type__": "cc.PrefabInfo",
  4241. "root": {
  4242. "__id__": 1
  4243. },
  4244. "asset": {
  4245. "__id__": 0
  4246. },
  4247. "fileId": "d8+tV1l0BLi40Pf2Yd6AZP",
  4248. "instance": null,
  4249. "targetOverrides": null,
  4250. "nestedPrefabInstanceRoots": null
  4251. },
  4252. {
  4253. "__type__": "cc.Node",
  4254. "_name": "list",
  4255. "_objFlags": 0,
  4256. "__editorExtras__": {},
  4257. "_parent": {
  4258. "__id__": 126
  4259. },
  4260. "_children": [
  4261. {
  4262. "__id__": 178
  4263. },
  4264. {
  4265. "__id__": 196
  4266. }
  4267. ],
  4268. "_active": true,
  4269. "_components": [
  4270. {
  4271. "__id__": 214
  4272. },
  4273. {
  4274. "__id__": 216
  4275. },
  4276. {
  4277. "__id__": 193
  4278. },
  4279. {
  4280. "__id__": 218
  4281. }
  4282. ],
  4283. "_prefab": {
  4284. "__id__": 220
  4285. },
  4286. "_lpos": {
  4287. "__type__": "cc.Vec3",
  4288. "x": 0,
  4289. "y": -40,
  4290. "z": 0
  4291. },
  4292. "_lrot": {
  4293. "__type__": "cc.Quat",
  4294. "x": 0,
  4295. "y": 0,
  4296. "z": 0,
  4297. "w": 1
  4298. },
  4299. "_lscale": {
  4300. "__type__": "cc.Vec3",
  4301. "x": 1,
  4302. "y": 1,
  4303. "z": 1
  4304. },
  4305. "_mobility": 0,
  4306. "_layer": 33554432,
  4307. "_euler": {
  4308. "__type__": "cc.Vec3",
  4309. "x": 0,
  4310. "y": 0,
  4311. "z": 0
  4312. },
  4313. "_id": ""
  4314. },
  4315. {
  4316. "__type__": "cc.Node",
  4317. "_name": "scrollBar",
  4318. "_objFlags": 0,
  4319. "__editorExtras__": {},
  4320. "_parent": {
  4321. "__id__": 177
  4322. },
  4323. "_children": [
  4324. {
  4325. "__id__": 179
  4326. }
  4327. ],
  4328. "_active": true,
  4329. "_components": [
  4330. {
  4331. "__id__": 185
  4332. },
  4333. {
  4334. "__id__": 187
  4335. },
  4336. {
  4337. "__id__": 189
  4338. },
  4339. {
  4340. "__id__": 191
  4341. }
  4342. ],
  4343. "_prefab": {
  4344. "__id__": 213
  4345. },
  4346. "_lpos": {
  4347. "__type__": "cc.Vec3",
  4348. "x": 540,
  4349. "y": 0,
  4350. "z": 0
  4351. },
  4352. "_lrot": {
  4353. "__type__": "cc.Quat",
  4354. "x": 0,
  4355. "y": 0,
  4356. "z": 0,
  4357. "w": 1
  4358. },
  4359. "_lscale": {
  4360. "__type__": "cc.Vec3",
  4361. "x": 1,
  4362. "y": 1,
  4363. "z": 1
  4364. },
  4365. "_mobility": 0,
  4366. "_layer": 33554432,
  4367. "_euler": {
  4368. "__type__": "cc.Vec3",
  4369. "x": 0,
  4370. "y": 0,
  4371. "z": 0
  4372. },
  4373. "_id": ""
  4374. },
  4375. {
  4376. "__type__": "cc.Node",
  4377. "_name": "bar",
  4378. "_objFlags": 0,
  4379. "__editorExtras__": {},
  4380. "_parent": {
  4381. "__id__": 178
  4382. },
  4383. "_children": [],
  4384. "_active": true,
  4385. "_components": [
  4386. {
  4387. "__id__": 180
  4388. },
  4389. {
  4390. "__id__": 182
  4391. }
  4392. ],
  4393. "_prefab": {
  4394. "__id__": 184
  4395. },
  4396. "_lpos": {
  4397. "__type__": "cc.Vec3",
  4398. "x": -11,
  4399. "y": -31.25,
  4400. "z": 0
  4401. },
  4402. "_lrot": {
  4403. "__type__": "cc.Quat",
  4404. "x": 0,
  4405. "y": 0,
  4406. "z": 0,
  4407. "w": 1
  4408. },
  4409. "_lscale": {
  4410. "__type__": "cc.Vec3",
  4411. "x": 1,
  4412. "y": 1,
  4413. "z": 1
  4414. },
  4415. "_mobility": 0,
  4416. "_layer": 33554432,
  4417. "_euler": {
  4418. "__type__": "cc.Vec3",
  4419. "x": 0,
  4420. "y": 0,
  4421. "z": 0
  4422. },
  4423. "_id": ""
  4424. },
  4425. {
  4426. "__type__": "cc.UITransform",
  4427. "_name": "",
  4428. "_objFlags": 0,
  4429. "__editorExtras__": {},
  4430. "node": {
  4431. "__id__": 179
  4432. },
  4433. "_enabled": true,
  4434. "__prefab": {
  4435. "__id__": 181
  4436. },
  4437. "_contentSize": {
  4438. "__type__": "cc.Size",
  4439. "width": 10,
  4440. "height": 156.25
  4441. },
  4442. "_anchorPoint": {
  4443. "__type__": "cc.Vec2",
  4444. "x": 0,
  4445. "y": 0
  4446. },
  4447. "_id": ""
  4448. },
  4449. {
  4450. "__type__": "cc.CompPrefabInfo",
  4451. "fileId": "2ermP8a6RBAKot1ny2gNuE"
  4452. },
  4453. {
  4454. "__type__": "cc.Sprite",
  4455. "_name": "",
  4456. "_objFlags": 0,
  4457. "__editorExtras__": {},
  4458. "node": {
  4459. "__id__": 179
  4460. },
  4461. "_enabled": true,
  4462. "__prefab": {
  4463. "__id__": 183
  4464. },
  4465. "_customMaterial": null,
  4466. "_srcBlendFactor": 2,
  4467. "_dstBlendFactor": 4,
  4468. "_color": {
  4469. "__type__": "cc.Color",
  4470. "r": 255,
  4471. "g": 255,
  4472. "b": 255,
  4473. "a": 255
  4474. },
  4475. "_spriteFrame": {
  4476. "__uuid__": "afc47931-f066-46b0-90be-9fe61f213428@f9941",
  4477. "__expectedType__": "cc.SpriteFrame"
  4478. },
  4479. "_type": 1,
  4480. "_fillType": 0,
  4481. "_sizeMode": 0,
  4482. "_fillCenter": {
  4483. "__type__": "cc.Vec2",
  4484. "x": 0,
  4485. "y": 0
  4486. },
  4487. "_fillStart": 0,
  4488. "_fillRange": 0,
  4489. "_isTrimmedMode": true,
  4490. "_useGrayscale": false,
  4491. "_atlas": null,
  4492. "_id": ""
  4493. },
  4494. {
  4495. "__type__": "cc.CompPrefabInfo",
  4496. "fileId": "63LSgd4+hP25pepoQJa2rJ"
  4497. },
  4498. {
  4499. "__type__": "cc.PrefabInfo",
  4500. "root": {
  4501. "__id__": 1
  4502. },
  4503. "asset": {
  4504. "__id__": 0
  4505. },
  4506. "fileId": "ebJmrBcbpAHZQu3Bkhqnn0",
  4507. "instance": null,
  4508. "targetOverrides": null,
  4509. "nestedPrefabInstanceRoots": null
  4510. },
  4511. {
  4512. "__type__": "cc.UITransform",
  4513. "_name": "",
  4514. "_objFlags": 0,
  4515. "__editorExtras__": {},
  4516. "node": {
  4517. "__id__": 178
  4518. },
  4519. "_enabled": true,
  4520. "__prefab": {
  4521. "__id__": 186
  4522. },
  4523. "_contentSize": {
  4524. "__type__": "cc.Size",
  4525. "width": 12,
  4526. "height": 840
  4527. },
  4528. "_anchorPoint": {
  4529. "__type__": "cc.Vec2",
  4530. "x": 1,
  4531. "y": 0.5
  4532. },
  4533. "_id": ""
  4534. },
  4535. {
  4536. "__type__": "cc.CompPrefabInfo",
  4537. "fileId": "b3wsPiUwdEu6tzlNGCCPvm"
  4538. },
  4539. {
  4540. "__type__": "cc.Sprite",
  4541. "_name": "",
  4542. "_objFlags": 0,
  4543. "__editorExtras__": {},
  4544. "node": {
  4545. "__id__": 178
  4546. },
  4547. "_enabled": true,
  4548. "__prefab": {
  4549. "__id__": 188
  4550. },
  4551. "_customMaterial": null,
  4552. "_srcBlendFactor": 2,
  4553. "_dstBlendFactor": 4,
  4554. "_color": {
  4555. "__type__": "cc.Color",
  4556. "r": 255,
  4557. "g": 255,
  4558. "b": 255,
  4559. "a": 255
  4560. },
  4561. "_spriteFrame": {
  4562. "__uuid__": "ffb88a8f-af62-48f4-8f1d-3cb606443a43@f9941",
  4563. "__expectedType__": "cc.SpriteFrame"
  4564. },
  4565. "_type": 1,
  4566. "_fillType": 0,
  4567. "_sizeMode": 0,
  4568. "_fillCenter": {
  4569. "__type__": "cc.Vec2",
  4570. "x": 0,
  4571. "y": 0
  4572. },
  4573. "_fillStart": 0,
  4574. "_fillRange": 0,
  4575. "_isTrimmedMode": true,
  4576. "_useGrayscale": false,
  4577. "_atlas": null,
  4578. "_id": ""
  4579. },
  4580. {
  4581. "__type__": "cc.CompPrefabInfo",
  4582. "fileId": "48ZtV1dVhPGJo8wRyJl38Z"
  4583. },
  4584. {
  4585. "__type__": "cc.Widget",
  4586. "_name": "",
  4587. "_objFlags": 0,
  4588. "__editorExtras__": {},
  4589. "node": {
  4590. "__id__": 178
  4591. },
  4592. "_enabled": true,
  4593. "__prefab": {
  4594. "__id__": 190
  4595. },
  4596. "_alignFlags": 37,
  4597. "_target": null,
  4598. "_left": 0,
  4599. "_right": 0,
  4600. "_top": 0,
  4601. "_bottom": 0,
  4602. "_horizontalCenter": 0,
  4603. "_verticalCenter": 0,
  4604. "_isAbsLeft": true,
  4605. "_isAbsRight": true,
  4606. "_isAbsTop": true,
  4607. "_isAbsBottom": true,
  4608. "_isAbsHorizontalCenter": true,
  4609. "_isAbsVerticalCenter": true,
  4610. "_originalWidth": 0,
  4611. "_originalHeight": 250,
  4612. "_alignMode": 1,
  4613. "_lockFlags": 0,
  4614. "_id": ""
  4615. },
  4616. {
  4617. "__type__": "cc.CompPrefabInfo",
  4618. "fileId": "fea4fVxMlKDYjEfjUV3wDQ"
  4619. },
  4620. {
  4621. "__type__": "cc.ScrollBar",
  4622. "_name": "",
  4623. "_objFlags": 0,
  4624. "__editorExtras__": {},
  4625. "node": {
  4626. "__id__": 178
  4627. },
  4628. "_enabled": true,
  4629. "__prefab": {
  4630. "__id__": 192
  4631. },
  4632. "_scrollView": {
  4633. "__id__": 193
  4634. },
  4635. "_handle": {
  4636. "__id__": 182
  4637. },
  4638. "_direction": 1,
  4639. "_enableAutoHide": false,
  4640. "_autoHideTime": 1,
  4641. "_id": ""
  4642. },
  4643. {
  4644. "__type__": "cc.CompPrefabInfo",
  4645. "fileId": "910Y3TTrxANqPvmLQy3I7W"
  4646. },
  4647. {
  4648. "__type__": "cc.ScrollView",
  4649. "_name": "",
  4650. "_objFlags": 0,
  4651. "__editorExtras__": {},
  4652. "node": {
  4653. "__id__": 177
  4654. },
  4655. "_enabled": true,
  4656. "__prefab": {
  4657. "__id__": 194
  4658. },
  4659. "bounceDuration": 0.23,
  4660. "brake": 0.75,
  4661. "elastic": true,
  4662. "inertia": true,
  4663. "horizontal": false,
  4664. "vertical": true,
  4665. "cancelInnerEvents": true,
  4666. "scrollEvents": [],
  4667. "_content": {
  4668. "__id__": 195
  4669. },
  4670. "_horizontalScrollBar": null,
  4671. "_verticalScrollBar": {
  4672. "__id__": 191
  4673. },
  4674. "_id": ""
  4675. },
  4676. {
  4677. "__type__": "cc.CompPrefabInfo",
  4678. "fileId": "95xBmp8gJPZIHdwblgosBw"
  4679. },
  4680. {
  4681. "__type__": "cc.Node",
  4682. "_name": "content",
  4683. "_objFlags": 0,
  4684. "__editorExtras__": {},
  4685. "_parent": {
  4686. "__id__": 196
  4687. },
  4688. "_children": [],
  4689. "_active": true,
  4690. "_components": [
  4691. {
  4692. "__id__": 206
  4693. },
  4694. {
  4695. "__id__": 208
  4696. },
  4697. {
  4698. "__id__": 210
  4699. }
  4700. ],
  4701. "_prefab": {
  4702. "__id__": 212
  4703. },
  4704. "_lpos": {
  4705. "__type__": "cc.Vec3",
  4706. "x": 0,
  4707. "y": 0,
  4708. "z": 0
  4709. },
  4710. "_lrot": {
  4711. "__type__": "cc.Quat",
  4712. "x": 0,
  4713. "y": 0,
  4714. "z": 0,
  4715. "w": 1
  4716. },
  4717. "_lscale": {
  4718. "__type__": "cc.Vec3",
  4719. "x": 1,
  4720. "y": 1,
  4721. "z": 1
  4722. },
  4723. "_mobility": 0,
  4724. "_layer": 33554432,
  4725. "_euler": {
  4726. "__type__": "cc.Vec3",
  4727. "x": 0,
  4728. "y": 0,
  4729. "z": 0
  4730. },
  4731. "_id": ""
  4732. },
  4733. {
  4734. "__type__": "cc.Node",
  4735. "_name": "view",
  4736. "_objFlags": 0,
  4737. "__editorExtras__": {},
  4738. "_parent": {
  4739. "__id__": 177
  4740. },
  4741. "_children": [
  4742. {
  4743. "__id__": 195
  4744. }
  4745. ],
  4746. "_active": true,
  4747. "_components": [
  4748. {
  4749. "__id__": 197
  4750. },
  4751. {
  4752. "__id__": 199
  4753. },
  4754. {
  4755. "__id__": 201
  4756. },
  4757. {
  4758. "__id__": 203
  4759. }
  4760. ],
  4761. "_prefab": {
  4762. "__id__": 205
  4763. },
  4764. "_lpos": {
  4765. "__type__": "cc.Vec3",
  4766. "x": 0,
  4767. "y": 420,
  4768. "z": 0
  4769. },
  4770. "_lrot": {
  4771. "__type__": "cc.Quat",
  4772. "x": 0,
  4773. "y": 0,
  4774. "z": 0,
  4775. "w": 1
  4776. },
  4777. "_lscale": {
  4778. "__type__": "cc.Vec3",
  4779. "x": 1,
  4780. "y": 1,
  4781. "z": 1
  4782. },
  4783. "_mobility": 0,
  4784. "_layer": 33554432,
  4785. "_euler": {
  4786. "__type__": "cc.Vec3",
  4787. "x": 0,
  4788. "y": 0,
  4789. "z": 0
  4790. },
  4791. "_id": ""
  4792. },
  4793. {
  4794. "__type__": "cc.UITransform",
  4795. "_name": "",
  4796. "_objFlags": 0,
  4797. "__editorExtras__": {},
  4798. "node": {
  4799. "__id__": 196
  4800. },
  4801. "_enabled": true,
  4802. "__prefab": {
  4803. "__id__": 198
  4804. },
  4805. "_contentSize": {
  4806. "__type__": "cc.Size",
  4807. "width": 1080,
  4808. "height": 840
  4809. },
  4810. "_anchorPoint": {
  4811. "__type__": "cc.Vec2",
  4812. "x": 0.5,
  4813. "y": 1
  4814. },
  4815. "_id": ""
  4816. },
  4817. {
  4818. "__type__": "cc.CompPrefabInfo",
  4819. "fileId": "6az0cj4ddA3rDdvm+H4I28"
  4820. },
  4821. {
  4822. "__type__": "cc.Mask",
  4823. "_name": "",
  4824. "_objFlags": 0,
  4825. "__editorExtras__": {},
  4826. "node": {
  4827. "__id__": 196
  4828. },
  4829. "_enabled": true,
  4830. "__prefab": {
  4831. "__id__": 200
  4832. },
  4833. "_type": 0,
  4834. "_inverted": false,
  4835. "_segments": 64,
  4836. "_alphaThreshold": 0.1,
  4837. "_id": ""
  4838. },
  4839. {
  4840. "__type__": "cc.CompPrefabInfo",
  4841. "fileId": "3dfykTFgRDZ6ojmany6ptp"
  4842. },
  4843. {
  4844. "__type__": "cc.Graphics",
  4845. "_name": "",
  4846. "_objFlags": 0,
  4847. "__editorExtras__": {},
  4848. "node": {
  4849. "__id__": 196
  4850. },
  4851. "_enabled": true,
  4852. "__prefab": {
  4853. "__id__": 202
  4854. },
  4855. "_customMaterial": null,
  4856. "_srcBlendFactor": 2,
  4857. "_dstBlendFactor": 4,
  4858. "_color": {
  4859. "__type__": "cc.Color",
  4860. "r": 255,
  4861. "g": 255,
  4862. "b": 255,
  4863. "a": 255
  4864. },
  4865. "_lineWidth": 1,
  4866. "_strokeColor": {
  4867. "__type__": "cc.Color",
  4868. "r": 0,
  4869. "g": 0,
  4870. "b": 0,
  4871. "a": 255
  4872. },
  4873. "_lineJoin": 2,
  4874. "_lineCap": 0,
  4875. "_fillColor": {
  4876. "__type__": "cc.Color",
  4877. "r": 255,
  4878. "g": 255,
  4879. "b": 255,
  4880. "a": 0
  4881. },
  4882. "_miterLimit": 10,
  4883. "_id": ""
  4884. },
  4885. {
  4886. "__type__": "cc.CompPrefabInfo",
  4887. "fileId": "2aNIm+ZudMPZm7l9T8WNlM"
  4888. },
  4889. {
  4890. "__type__": "cc.Widget",
  4891. "_name": "",
  4892. "_objFlags": 0,
  4893. "__editorExtras__": {},
  4894. "node": {
  4895. "__id__": 196
  4896. },
  4897. "_enabled": true,
  4898. "__prefab": {
  4899. "__id__": 204
  4900. },
  4901. "_alignFlags": 45,
  4902. "_target": null,
  4903. "_left": 0,
  4904. "_right": 0,
  4905. "_top": 0,
  4906. "_bottom": 0,
  4907. "_horizontalCenter": 0,
  4908. "_verticalCenter": 0,
  4909. "_isAbsLeft": true,
  4910. "_isAbsRight": true,
  4911. "_isAbsTop": true,
  4912. "_isAbsBottom": true,
  4913. "_isAbsHorizontalCenter": true,
  4914. "_isAbsVerticalCenter": true,
  4915. "_originalWidth": 240,
  4916. "_originalHeight": 250,
  4917. "_alignMode": 2,
  4918. "_lockFlags": 0,
  4919. "_id": ""
  4920. },
  4921. {
  4922. "__type__": "cc.CompPrefabInfo",
  4923. "fileId": "31d0wT7DhK5JxV9m0qAYrV"
  4924. },
  4925. {
  4926. "__type__": "cc.PrefabInfo",
  4927. "root": {
  4928. "__id__": 1
  4929. },
  4930. "asset": {
  4931. "__id__": 0
  4932. },
  4933. "fileId": "76fTUeANJPe7odc27uZEut",
  4934. "instance": null,
  4935. "targetOverrides": null,
  4936. "nestedPrefabInstanceRoots": null
  4937. },
  4938. {
  4939. "__type__": "cc.UITransform",
  4940. "_name": "",
  4941. "_objFlags": 0,
  4942. "__editorExtras__": {},
  4943. "node": {
  4944. "__id__": 195
  4945. },
  4946. "_enabled": true,
  4947. "__prefab": {
  4948. "__id__": 207
  4949. },
  4950. "_contentSize": {
  4951. "__type__": "cc.Size",
  4952. "width": 1080,
  4953. "height": 40
  4954. },
  4955. "_anchorPoint": {
  4956. "__type__": "cc.Vec2",
  4957. "x": 0.5,
  4958. "y": 1
  4959. },
  4960. "_id": ""
  4961. },
  4962. {
  4963. "__type__": "cc.CompPrefabInfo",
  4964. "fileId": "220T/eIk5HHbwqIDtXZctE"
  4965. },
  4966. {
  4967. "__type__": "cc.Widget",
  4968. "_name": "",
  4969. "_objFlags": 0,
  4970. "__editorExtras__": {},
  4971. "node": {
  4972. "__id__": 195
  4973. },
  4974. "_enabled": true,
  4975. "__prefab": {
  4976. "__id__": 209
  4977. },
  4978. "_alignFlags": 40,
  4979. "_target": null,
  4980. "_left": 0,
  4981. "_right": 0,
  4982. "_top": 0,
  4983. "_bottom": 0,
  4984. "_horizontalCenter": 0,
  4985. "_verticalCenter": 0,
  4986. "_isAbsLeft": true,
  4987. "_isAbsRight": true,
  4988. "_isAbsTop": true,
  4989. "_isAbsBottom": true,
  4990. "_isAbsHorizontalCenter": true,
  4991. "_isAbsVerticalCenter": true,
  4992. "_originalWidth": 220,
  4993. "_originalHeight": 0,
  4994. "_alignMode": 2,
  4995. "_lockFlags": 0,
  4996. "_id": ""
  4997. },
  4998. {
  4999. "__type__": "cc.CompPrefabInfo",
  5000. "fileId": "ceR0Wdui9GEKoNJd6UsmGW"
  5001. },
  5002. {
  5003. "__type__": "cc.Layout",
  5004. "_name": "",
  5005. "_objFlags": 0,
  5006. "__editorExtras__": {},
  5007. "node": {
  5008. "__id__": 195
  5009. },
  5010. "_enabled": true,
  5011. "__prefab": {
  5012. "__id__": 211
  5013. },
  5014. "_resizeMode": 1,
  5015. "_layoutType": 3,
  5016. "_cellSize": {
  5017. "__type__": "cc.Size",
  5018. "width": 40,
  5019. "height": 40
  5020. },
  5021. "_startAxis": 0,
  5022. "_paddingLeft": 0,
  5023. "_paddingRight": 0,
  5024. "_paddingTop": 20,
  5025. "_paddingBottom": 20,
  5026. "_spacingX": 0,
  5027. "_spacingY": 20,
  5028. "_verticalDirection": 1,
  5029. "_horizontalDirection": 0,
  5030. "_constraint": 2,
  5031. "_constraintNum": 2,
  5032. "_affectedByScale": false,
  5033. "_isAlign": false,
  5034. "_id": ""
  5035. },
  5036. {
  5037. "__type__": "cc.CompPrefabInfo",
  5038. "fileId": "11bl8IDsFLh4KSKXXXDTnO"
  5039. },
  5040. {
  5041. "__type__": "cc.PrefabInfo",
  5042. "root": {
  5043. "__id__": 1
  5044. },
  5045. "asset": {
  5046. "__id__": 0
  5047. },
  5048. "fileId": "bfidoUCXxCqLhyBnOiRTHt",
  5049. "instance": null,
  5050. "targetOverrides": null,
  5051. "nestedPrefabInstanceRoots": null
  5052. },
  5053. {
  5054. "__type__": "cc.PrefabInfo",
  5055. "root": {
  5056. "__id__": 1
  5057. },
  5058. "asset": {
  5059. "__id__": 0
  5060. },
  5061. "fileId": "7fVMpO2VlIcoddXrdjkerJ",
  5062. "instance": null,
  5063. "targetOverrides": null,
  5064. "nestedPrefabInstanceRoots": null
  5065. },
  5066. {
  5067. "__type__": "cc.UITransform",
  5068. "_name": "",
  5069. "_objFlags": 0,
  5070. "__editorExtras__": {},
  5071. "node": {
  5072. "__id__": 177
  5073. },
  5074. "_enabled": true,
  5075. "__prefab": {
  5076. "__id__": 215
  5077. },
  5078. "_contentSize": {
  5079. "__type__": "cc.Size",
  5080. "width": 1080,
  5081. "height": 840
  5082. },
  5083. "_anchorPoint": {
  5084. "__type__": "cc.Vec2",
  5085. "x": 0.5,
  5086. "y": 0.5
  5087. },
  5088. "_id": ""
  5089. },
  5090. {
  5091. "__type__": "cc.CompPrefabInfo",
  5092. "fileId": "31UriXobJGZIfMD/K8V6ql"
  5093. },
  5094. {
  5095. "__type__": "cc.Sprite",
  5096. "_name": "",
  5097. "_objFlags": 0,
  5098. "__editorExtras__": {},
  5099. "node": {
  5100. "__id__": 177
  5101. },
  5102. "_enabled": true,
  5103. "__prefab": {
  5104. "__id__": 217
  5105. },
  5106. "_customMaterial": null,
  5107. "_srcBlendFactor": 2,
  5108. "_dstBlendFactor": 4,
  5109. "_color": {
  5110. "__type__": "cc.Color",
  5111. "r": 255,
  5112. "g": 255,
  5113. "b": 255,
  5114. "a": 255
  5115. },
  5116. "_spriteFrame": null,
  5117. "_type": 1,
  5118. "_fillType": 0,
  5119. "_sizeMode": 0,
  5120. "_fillCenter": {
  5121. "__type__": "cc.Vec2",
  5122. "x": 0,
  5123. "y": 0
  5124. },
  5125. "_fillStart": 0,
  5126. "_fillRange": 0,
  5127. "_isTrimmedMode": true,
  5128. "_useGrayscale": false,
  5129. "_atlas": null,
  5130. "_id": ""
  5131. },
  5132. {
  5133. "__type__": "cc.CompPrefabInfo",
  5134. "fileId": "6akQpeaohAwbSjoiI0yQxo"
  5135. },
  5136. {
  5137. "__type__": "cc.Widget",
  5138. "_name": "",
  5139. "_objFlags": 0,
  5140. "__editorExtras__": {},
  5141. "node": {
  5142. "__id__": 177
  5143. },
  5144. "_enabled": true,
  5145. "__prefab": {
  5146. "__id__": 219
  5147. },
  5148. "_alignFlags": 45,
  5149. "_target": null,
  5150. "_left": 0,
  5151. "_right": 0,
  5152. "_top": 80,
  5153. "_bottom": 0,
  5154. "_horizontalCenter": 0,
  5155. "_verticalCenter": 0,
  5156. "_isAbsLeft": true,
  5157. "_isAbsRight": true,
  5158. "_isAbsTop": true,
  5159. "_isAbsBottom": true,
  5160. "_isAbsHorizontalCenter": true,
  5161. "_isAbsVerticalCenter": true,
  5162. "_originalWidth": 240,
  5163. "_originalHeight": 250,
  5164. "_alignMode": 2,
  5165. "_lockFlags": 0,
  5166. "_id": ""
  5167. },
  5168. {
  5169. "__type__": "cc.CompPrefabInfo",
  5170. "fileId": "d1zgbgYwtJX4kTi79YDYuW"
  5171. },
  5172. {
  5173. "__type__": "cc.PrefabInfo",
  5174. "root": {
  5175. "__id__": 1
  5176. },
  5177. "asset": {
  5178. "__id__": 0
  5179. },
  5180. "fileId": "682x8NNgVPtZBXAEaD4bj7",
  5181. "instance": null,
  5182. "targetOverrides": null,
  5183. "nestedPrefabInstanceRoots": null
  5184. },
  5185. {
  5186. "__type__": "cc.UITransform",
  5187. "_name": "",
  5188. "_objFlags": 0,
  5189. "__editorExtras__": {},
  5190. "node": {
  5191. "__id__": 126
  5192. },
  5193. "_enabled": true,
  5194. "__prefab": {
  5195. "__id__": 222
  5196. },
  5197. "_contentSize": {
  5198. "__type__": "cc.Size",
  5199. "width": 1080,
  5200. "height": 920
  5201. },
  5202. "_anchorPoint": {
  5203. "__type__": "cc.Vec2",
  5204. "x": 0.5,
  5205. "y": 0.5
  5206. },
  5207. "_id": ""
  5208. },
  5209. {
  5210. "__type__": "cc.CompPrefabInfo",
  5211. "fileId": "b5W3e+mPhOdJ8uqnPyjrx0"
  5212. },
  5213. {
  5214. "__type__": "cc.Widget",
  5215. "_name": "",
  5216. "_objFlags": 0,
  5217. "__editorExtras__": {},
  5218. "node": {
  5219. "__id__": 126
  5220. },
  5221. "_enabled": true,
  5222. "__prefab": {
  5223. "__id__": 224
  5224. },
  5225. "_alignFlags": 45,
  5226. "_target": null,
  5227. "_left": 0,
  5228. "_right": 0,
  5229. "_top": 1000,
  5230. "_bottom": 0,
  5231. "_horizontalCenter": 0,
  5232. "_verticalCenter": 0,
  5233. "_isAbsLeft": true,
  5234. "_isAbsRight": true,
  5235. "_isAbsTop": true,
  5236. "_isAbsBottom": true,
  5237. "_isAbsHorizontalCenter": true,
  5238. "_isAbsVerticalCenter": true,
  5239. "_originalWidth": 100,
  5240. "_originalHeight": 100,
  5241. "_alignMode": 2,
  5242. "_lockFlags": 0,
  5243. "_id": ""
  5244. },
  5245. {
  5246. "__type__": "cc.CompPrefabInfo",
  5247. "fileId": "7aRsHZE5BH2ogC69XVPOvM"
  5248. },
  5249. {
  5250. "__type__": "cc.Sprite",
  5251. "_name": "",
  5252. "_objFlags": 0,
  5253. "__editorExtras__": {},
  5254. "node": {
  5255. "__id__": 126
  5256. },
  5257. "_enabled": false,
  5258. "__prefab": {
  5259. "__id__": 226
  5260. },
  5261. "_customMaterial": null,
  5262. "_srcBlendFactor": 2,
  5263. "_dstBlendFactor": 4,
  5264. "_color": {
  5265. "__type__": "cc.Color",
  5266. "r": 235,
  5267. "g": 13,
  5268. "b": 13,
  5269. "a": 255
  5270. },
  5271. "_spriteFrame": {
  5272. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  5273. "__expectedType__": "cc.SpriteFrame"
  5274. },
  5275. "_type": 1,
  5276. "_fillType": 0,
  5277. "_sizeMode": 0,
  5278. "_fillCenter": {
  5279. "__type__": "cc.Vec2",
  5280. "x": 0,
  5281. "y": 0
  5282. },
  5283. "_fillStart": 0,
  5284. "_fillRange": 0,
  5285. "_isTrimmedMode": true,
  5286. "_useGrayscale": false,
  5287. "_atlas": null,
  5288. "_id": ""
  5289. },
  5290. {
  5291. "__type__": "cc.CompPrefabInfo",
  5292. "fileId": "29ema4SwNJaYjLhQdfOyFY"
  5293. },
  5294. {
  5295. "__type__": "3dbbb1+WM1FvIaBJ6kd1JmU",
  5296. "_name": "",
  5297. "_objFlags": 0,
  5298. "__editorExtras__": {},
  5299. "node": {
  5300. "__id__": 126
  5301. },
  5302. "_enabled": true,
  5303. "__prefab": {
  5304. "__id__": 228
  5305. },
  5306. "btn_num_left": {
  5307. "__id__": 129
  5308. },
  5309. "btn_num_right": {
  5310. "__id__": 137
  5311. },
  5312. "lab_num": {
  5313. "__id__": 145
  5314. },
  5315. "btn_score_sort": {
  5316. "__id__": 156
  5317. },
  5318. "sf_score_up": {
  5319. "__uuid__": "e7c25ef4-3e5b-4e8a-8144-99004196a359@f9941",
  5320. "__expectedType__": "cc.SpriteFrame"
  5321. },
  5322. "sf_score_down": {
  5323. "__uuid__": "e36e189a-fbf8-48d9-9120-fda4f108d34e@f9941",
  5324. "__expectedType__": "cc.SpriteFrame"
  5325. },
  5326. "btn_jiesuo": {
  5327. "__id__": 164
  5328. },
  5329. "sf_jiesuo_select": {
  5330. "__uuid__": "fd60d1c7-8a62-41d2-b3fa-3dea49199761@f9941",
  5331. "__expectedType__": "cc.SpriteFrame"
  5332. },
  5333. "sf_jiesuo_unselect": {
  5334. "__uuid__": "b1bd300f-37ee-4bfe-9648-2cbd012a8397@f9941",
  5335. "__expectedType__": "cc.SpriteFrame"
  5336. },
  5337. "list": {
  5338. "__id__": 177
  5339. },
  5340. "list_content": {
  5341. "__id__": 195
  5342. },
  5343. "list_item": {
  5344. "__uuid__": "b85c48d6-b97b-4356-a409-607c29ea4b52",
  5345. "__expectedType__": "cc.Prefab"
  5346. },
  5347. "_id": ""
  5348. },
  5349. {
  5350. "__type__": "cc.CompPrefabInfo",
  5351. "fileId": "148n52CiRFcp8V4C9WjXDl"
  5352. },
  5353. {
  5354. "__type__": "cc.PrefabInfo",
  5355. "root": {
  5356. "__id__": 1
  5357. },
  5358. "asset": {
  5359. "__id__": 0
  5360. },
  5361. "fileId": "03Rn8iFZNHA6QzeEMi+tkI",
  5362. "instance": null,
  5363. "targetOverrides": null,
  5364. "nestedPrefabInstanceRoots": null
  5365. },
  5366. {
  5367. "__type__": "cc.UITransform",
  5368. "_name": "",
  5369. "_objFlags": 0,
  5370. "__editorExtras__": {},
  5371. "node": {
  5372. "__id__": 1
  5373. },
  5374. "_enabled": true,
  5375. "__prefab": {
  5376. "__id__": 231
  5377. },
  5378. "_contentSize": {
  5379. "__type__": "cc.Size",
  5380. "width": 1080,
  5381. "height": 1920
  5382. },
  5383. "_anchorPoint": {
  5384. "__type__": "cc.Vec2",
  5385. "x": 0.5,
  5386. "y": 0.5
  5387. },
  5388. "_id": ""
  5389. },
  5390. {
  5391. "__type__": "cc.CompPrefabInfo",
  5392. "fileId": "62APJWa0ZKU6Bi2lJDuaYi"
  5393. },
  5394. {
  5395. "__type__": "cc.Widget",
  5396. "_name": "",
  5397. "_objFlags": 0,
  5398. "__editorExtras__": {},
  5399. "node": {
  5400. "__id__": 1
  5401. },
  5402. "_enabled": true,
  5403. "__prefab": {
  5404. "__id__": 233
  5405. },
  5406. "_alignFlags": 45,
  5407. "_target": null,
  5408. "_left": 0,
  5409. "_right": 0,
  5410. "_top": 0,
  5411. "_bottom": 0,
  5412. "_horizontalCenter": 0,
  5413. "_verticalCenter": 0,
  5414. "_isAbsLeft": true,
  5415. "_isAbsRight": true,
  5416. "_isAbsTop": true,
  5417. "_isAbsBottom": true,
  5418. "_isAbsHorizontalCenter": true,
  5419. "_isAbsVerticalCenter": true,
  5420. "_originalWidth": 100,
  5421. "_originalHeight": 100,
  5422. "_alignMode": 2,
  5423. "_lockFlags": 0,
  5424. "_id": ""
  5425. },
  5426. {
  5427. "__type__": "cc.CompPrefabInfo",
  5428. "fileId": "2czdjSigJHm7fjNnqsw4/4"
  5429. },
  5430. {
  5431. "__type__": "cc.Sprite",
  5432. "_name": "",
  5433. "_objFlags": 0,
  5434. "__editorExtras__": {},
  5435. "node": {
  5436. "__id__": 1
  5437. },
  5438. "_enabled": true,
  5439. "__prefab": {
  5440. "__id__": 235
  5441. },
  5442. "_customMaterial": null,
  5443. "_srcBlendFactor": 2,
  5444. "_dstBlendFactor": 4,
  5445. "_color": {
  5446. "__type__": "cc.Color",
  5447. "r": 255,
  5448. "g": 255,
  5449. "b": 255,
  5450. "a": 255
  5451. },
  5452. "_spriteFrame": {
  5453. "__uuid__": "13209dd8-1260-47b7-81ce-e61b33592778@f9941",
  5454. "__expectedType__": "cc.SpriteFrame"
  5455. },
  5456. "_type": 0,
  5457. "_fillType": 0,
  5458. "_sizeMode": 0,
  5459. "_fillCenter": {
  5460. "__type__": "cc.Vec2",
  5461. "x": 0,
  5462. "y": 0
  5463. },
  5464. "_fillStart": 0,
  5465. "_fillRange": 0,
  5466. "_isTrimmedMode": true,
  5467. "_useGrayscale": false,
  5468. "_atlas": null,
  5469. "_id": ""
  5470. },
  5471. {
  5472. "__type__": "cc.CompPrefabInfo",
  5473. "fileId": "91I+n+AkZGM5YoeNn/7kZk"
  5474. },
  5475. {
  5476. "__type__": "d5718voE4lCSKYe0feCAy3y",
  5477. "_name": "",
  5478. "_objFlags": 0,
  5479. "__editorExtras__": {},
  5480. "node": {
  5481. "__id__": 1
  5482. },
  5483. "_enabled": true,
  5484. "__prefab": {
  5485. "__id__": 237
  5486. },
  5487. "btn_back": {
  5488. "__id__": 3
  5489. },
  5490. "top_node": {
  5491. "__id__": 20
  5492. },
  5493. "bottom_node": {
  5494. "__id__": 126
  5495. },
  5496. "_id": ""
  5497. },
  5498. {
  5499. "__type__": "cc.CompPrefabInfo",
  5500. "fileId": "4bMiqLob5LHKt9kBfL79r7"
  5501. },
  5502. {
  5503. "__type__": "cc.PrefabInfo",
  5504. "root": {
  5505. "__id__": 1
  5506. },
  5507. "asset": {
  5508. "__id__": 0
  5509. },
  5510. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  5511. "instance": null,
  5512. "targetOverrides": null
  5513. }
  5514. ]