car_lib.prefab 99 KB

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