HallUI.prefab 135 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "HallUI",
  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": "HallUI",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 250
  29. },
  30. {
  31. "__id__": 260
  32. },
  33. {
  34. "__id__": 278
  35. },
  36. {
  37. "__id__": 298
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 318
  44. },
  45. {
  46. "__id__": 320
  47. },
  48. {
  49. "__id__": 322
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 324
  54. },
  55. "_lpos": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0
  60. },
  61. "_lrot": {
  62. "__type__": "cc.Quat",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0,
  66. "w": 1
  67. },
  68. "_lscale": {
  69. "__type__": "cc.Vec3",
  70. "x": 1,
  71. "y": 1,
  72. "z": 1
  73. },
  74. "_mobility": 0,
  75. "_layer": 33554432,
  76. "_euler": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "bg",
  87. "_objFlags": 0,
  88. "__editorExtras__": {},
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 5
  100. },
  101. {
  102. "__id__": 7
  103. }
  104. ],
  105. "_prefab": {
  106. "__id__": 9
  107. },
  108. "_lpos": {
  109. "__type__": "cc.Vec3",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0
  113. },
  114. "_lrot": {
  115. "__type__": "cc.Quat",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0,
  119. "w": 1
  120. },
  121. "_lscale": {
  122. "__type__": "cc.Vec3",
  123. "x": 1,
  124. "y": 1,
  125. "z": 1
  126. },
  127. "_mobility": 0,
  128. "_layer": 33554432,
  129. "_euler": {
  130. "__type__": "cc.Vec3",
  131. "x": 0,
  132. "y": 0,
  133. "z": 0
  134. },
  135. "_id": ""
  136. },
  137. {
  138. "__type__": "cc.UITransform",
  139. "_name": "",
  140. "_objFlags": 0,
  141. "__editorExtras__": {},
  142. "node": {
  143. "__id__": 2
  144. },
  145. "_enabled": true,
  146. "__prefab": {
  147. "__id__": 4
  148. },
  149. "_contentSize": {
  150. "__type__": "cc.Size",
  151. "width": 999.9999999999999,
  152. "height": 2000
  153. },
  154. "_anchorPoint": {
  155. "__type__": "cc.Vec2",
  156. "x": 0.5,
  157. "y": 0.5
  158. },
  159. "_id": ""
  160. },
  161. {
  162. "__type__": "cc.CompPrefabInfo",
  163. "fileId": "55pCbtzR5GbojKMArZkfim"
  164. },
  165. {
  166. "__type__": "cc.Sprite",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "__editorExtras__": {},
  170. "node": {
  171. "__id__": 2
  172. },
  173. "_enabled": false,
  174. "__prefab": {
  175. "__id__": 6
  176. },
  177. "_customMaterial": null,
  178. "_srcBlendFactor": 2,
  179. "_dstBlendFactor": 4,
  180. "_color": {
  181. "__type__": "cc.Color",
  182. "r": 255,
  183. "g": 255,
  184. "b": 255,
  185. "a": 255
  186. },
  187. "_spriteFrame": {
  188. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  189. "__expectedType__": "cc.SpriteFrame"
  190. },
  191. "_type": 0,
  192. "_fillType": 0,
  193. "_sizeMode": 0,
  194. "_fillCenter": {
  195. "__type__": "cc.Vec2",
  196. "x": 0,
  197. "y": 0
  198. },
  199. "_fillStart": 0,
  200. "_fillRange": 0,
  201. "_isTrimmedMode": true,
  202. "_useGrayscale": false,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.CompPrefabInfo",
  208. "fileId": "20UGQn4U9GUoln0NJQTkbG"
  209. },
  210. {
  211. "__type__": "cc.Widget",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "__editorExtras__": {},
  215. "node": {
  216. "__id__": 2
  217. },
  218. "_enabled": true,
  219. "__prefab": {
  220. "__id__": 8
  221. },
  222. "_alignFlags": 40,
  223. "_target": null,
  224. "_left": -125,
  225. "_right": -125,
  226. "_top": 617,
  227. "_bottom": 0,
  228. "_horizontalCenter": 0,
  229. "_verticalCenter": 0,
  230. "_isAbsLeft": true,
  231. "_isAbsRight": true,
  232. "_isAbsTop": true,
  233. "_isAbsBottom": true,
  234. "_isAbsHorizontalCenter": true,
  235. "_isAbsVerticalCenter": true,
  236. "_originalWidth": 100,
  237. "_originalHeight": 0,
  238. "_alignMode": 2,
  239. "_lockFlags": 0,
  240. "_id": ""
  241. },
  242. {
  243. "__type__": "cc.CompPrefabInfo",
  244. "fileId": "73ZU6b1xxA/r6+kfQ8vLIU"
  245. },
  246. {
  247. "__type__": "cc.PrefabInfo",
  248. "root": {
  249. "__id__": 1
  250. },
  251. "asset": {
  252. "__id__": 0
  253. },
  254. "fileId": "e85K8/Y5JBs5ghq5XwRGSy",
  255. "instance": null,
  256. "targetOverrides": null,
  257. "nestedPrefabInstanceRoots": null
  258. },
  259. {
  260. "__type__": "cc.Node",
  261. "_name": "pre-level-popup-title-bg",
  262. "_objFlags": 0,
  263. "__editorExtras__": {},
  264. "_parent": {
  265. "__id__": 1
  266. },
  267. "_children": [
  268. {
  269. "__id__": 11
  270. },
  271. {
  272. "__id__": 53
  273. },
  274. {
  275. "__id__": 87
  276. },
  277. {
  278. "__id__": 97
  279. },
  280. {
  281. "__id__": 239
  282. }
  283. ],
  284. "_active": true,
  285. "_components": [
  286. {
  287. "__id__": 243
  288. },
  289. {
  290. "__id__": 245
  291. },
  292. {
  293. "__id__": 247
  294. }
  295. ],
  296. "_prefab": {
  297. "__id__": 249
  298. },
  299. "_lpos": {
  300. "__type__": "cc.Vec3",
  301. "x": 0,
  302. "y": 487,
  303. "z": 0
  304. },
  305. "_lrot": {
  306. "__type__": "cc.Quat",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0,
  310. "w": 1
  311. },
  312. "_lscale": {
  313. "__type__": "cc.Vec3",
  314. "x": 1,
  315. "y": 1,
  316. "z": 1
  317. },
  318. "_mobility": 0,
  319. "_layer": 33554432,
  320. "_euler": {
  321. "__type__": "cc.Vec3",
  322. "x": 0,
  323. "y": 0,
  324. "z": 0
  325. },
  326. "_id": ""
  327. },
  328. {
  329. "__type__": "cc.Node",
  330. "_name": "rounded-black-info",
  331. "_objFlags": 0,
  332. "__editorExtras__": {},
  333. "_parent": {
  334. "__id__": 10
  335. },
  336. "_children": [
  337. {
  338. "__id__": 12
  339. },
  340. {
  341. "__id__": 24
  342. },
  343. {
  344. "__id__": 38
  345. }
  346. ],
  347. "_active": true,
  348. "_components": [
  349. {
  350. "__id__": 46
  351. },
  352. {
  353. "__id__": 48
  354. },
  355. {
  356. "__id__": 50
  357. }
  358. ],
  359. "_prefab": {
  360. "__id__": 52
  361. },
  362. "_lpos": {
  363. "__type__": "cc.Vec3",
  364. "x": 0.874,
  365. "y": 90,
  366. "z": 0
  367. },
  368. "_lrot": {
  369. "__type__": "cc.Quat",
  370. "x": 0,
  371. "y": 0,
  372. "z": 0,
  373. "w": 1
  374. },
  375. "_lscale": {
  376. "__type__": "cc.Vec3",
  377. "x": 1,
  378. "y": 1,
  379. "z": 1
  380. },
  381. "_mobility": 0,
  382. "_layer": 33554432,
  383. "_euler": {
  384. "__type__": "cc.Vec3",
  385. "x": 0,
  386. "y": 0,
  387. "z": 0
  388. },
  389. "_id": ""
  390. },
  391. {
  392. "__type__": "cc.Node",
  393. "_name": "life-icon",
  394. "_objFlags": 0,
  395. "__editorExtras__": {},
  396. "_parent": {
  397. "__id__": 11
  398. },
  399. "_children": [
  400. {
  401. "__id__": 13
  402. }
  403. ],
  404. "_active": true,
  405. "_components": [
  406. {
  407. "__id__": 19
  408. },
  409. {
  410. "__id__": 21
  411. }
  412. ],
  413. "_prefab": {
  414. "__id__": 23
  415. },
  416. "_lpos": {
  417. "__type__": "cc.Vec3",
  418. "x": -85.633,
  419. "y": -1.165,
  420. "z": 0
  421. },
  422. "_lrot": {
  423. "__type__": "cc.Quat",
  424. "x": 0,
  425. "y": 0,
  426. "z": 0,
  427. "w": 1
  428. },
  429. "_lscale": {
  430. "__type__": "cc.Vec3",
  431. "x": 1,
  432. "y": 1,
  433. "z": 1
  434. },
  435. "_mobility": 0,
  436. "_layer": 33554432,
  437. "_euler": {
  438. "__type__": "cc.Vec3",
  439. "x": 0,
  440. "y": 0,
  441. "z": 0
  442. },
  443. "_id": ""
  444. },
  445. {
  446. "__type__": "cc.Node",
  447. "_name": "lbl_life",
  448. "_objFlags": 0,
  449. "__editorExtras__": {},
  450. "_parent": {
  451. "__id__": 12
  452. },
  453. "_children": [],
  454. "_active": true,
  455. "_components": [
  456. {
  457. "__id__": 14
  458. },
  459. {
  460. "__id__": 16
  461. }
  462. ],
  463. "_prefab": {
  464. "__id__": 18
  465. },
  466. "_lpos": {
  467. "__type__": "cc.Vec3",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0
  471. },
  472. "_lrot": {
  473. "__type__": "cc.Quat",
  474. "x": 0,
  475. "y": 0,
  476. "z": 0,
  477. "w": 1
  478. },
  479. "_lscale": {
  480. "__type__": "cc.Vec3",
  481. "x": 1,
  482. "y": 1,
  483. "z": 1
  484. },
  485. "_mobility": 0,
  486. "_layer": 33554432,
  487. "_euler": {
  488. "__type__": "cc.Vec3",
  489. "x": 0,
  490. "y": 0,
  491. "z": 0
  492. },
  493. "_id": ""
  494. },
  495. {
  496. "__type__": "cc.UITransform",
  497. "_name": "",
  498. "_objFlags": 0,
  499. "__editorExtras__": {},
  500. "node": {
  501. "__id__": 13
  502. },
  503. "_enabled": true,
  504. "__prefab": {
  505. "__id__": 15
  506. },
  507. "_contentSize": {
  508. "__type__": "cc.Size",
  509. "width": 25.02685546875,
  510. "height": 50.4
  511. },
  512. "_anchorPoint": {
  513. "__type__": "cc.Vec2",
  514. "x": 0.5,
  515. "y": 0.5
  516. },
  517. "_id": ""
  518. },
  519. {
  520. "__type__": "cc.CompPrefabInfo",
  521. "fileId": "c68UOAlNhN171Umca6yVvF"
  522. },
  523. {
  524. "__type__": "cc.Label",
  525. "_name": "",
  526. "_objFlags": 0,
  527. "__editorExtras__": {},
  528. "node": {
  529. "__id__": 13
  530. },
  531. "_enabled": true,
  532. "__prefab": {
  533. "__id__": 17
  534. },
  535. "_customMaterial": null,
  536. "_srcBlendFactor": 2,
  537. "_dstBlendFactor": 4,
  538. "_color": {
  539. "__type__": "cc.Color",
  540. "r": 255,
  541. "g": 255,
  542. "b": 255,
  543. "a": 255
  544. },
  545. "_string": "5",
  546. "_horizontalAlign": 1,
  547. "_verticalAlign": 1,
  548. "_actualFontSize": 45,
  549. "_fontSize": 45,
  550. "_fontFamily": "Arial",
  551. "_lineHeight": 40,
  552. "_overflow": 0,
  553. "_enableWrapText": true,
  554. "_font": null,
  555. "_isSystemFontUsed": true,
  556. "_spacingX": 0,
  557. "_isItalic": false,
  558. "_isBold": true,
  559. "_isUnderline": false,
  560. "_underlineHeight": 2,
  561. "_cacheMode": 0,
  562. "_enableOutline": false,
  563. "_outlineColor": {
  564. "__type__": "cc.Color",
  565. "r": 0,
  566. "g": 0,
  567. "b": 0,
  568. "a": 255
  569. },
  570. "_outlineWidth": 2,
  571. "_enableShadow": false,
  572. "_shadowColor": {
  573. "__type__": "cc.Color",
  574. "r": 0,
  575. "g": 0,
  576. "b": 0,
  577. "a": 255
  578. },
  579. "_shadowOffset": {
  580. "__type__": "cc.Vec2",
  581. "x": 2,
  582. "y": 2
  583. },
  584. "_shadowBlur": 2,
  585. "_id": ""
  586. },
  587. {
  588. "__type__": "cc.CompPrefabInfo",
  589. "fileId": "2frm37uaJHQr0AEEaYyM82"
  590. },
  591. {
  592. "__type__": "cc.PrefabInfo",
  593. "root": {
  594. "__id__": 1
  595. },
  596. "asset": {
  597. "__id__": 0
  598. },
  599. "fileId": "b12W2aBlNKMJgDnuy5Ht4q",
  600. "instance": null,
  601. "targetOverrides": null,
  602. "nestedPrefabInstanceRoots": null
  603. },
  604. {
  605. "__type__": "cc.UITransform",
  606. "_name": "",
  607. "_objFlags": 0,
  608. "__editorExtras__": {},
  609. "node": {
  610. "__id__": 12
  611. },
  612. "_enabled": true,
  613. "__prefab": {
  614. "__id__": 20
  615. },
  616. "_contentSize": {
  617. "__type__": "cc.Size",
  618. "width": 105,
  619. "height": 87
  620. },
  621. "_anchorPoint": {
  622. "__type__": "cc.Vec2",
  623. "x": 0.5,
  624. "y": 0.5
  625. },
  626. "_id": ""
  627. },
  628. {
  629. "__type__": "cc.CompPrefabInfo",
  630. "fileId": "64zf2PCNJPkqqaTknhyUZg"
  631. },
  632. {
  633. "__type__": "cc.Sprite",
  634. "_name": "",
  635. "_objFlags": 0,
  636. "__editorExtras__": {},
  637. "node": {
  638. "__id__": 12
  639. },
  640. "_enabled": true,
  641. "__prefab": {
  642. "__id__": 22
  643. },
  644. "_customMaterial": null,
  645. "_srcBlendFactor": 2,
  646. "_dstBlendFactor": 4,
  647. "_color": {
  648. "__type__": "cc.Color",
  649. "r": 255,
  650. "g": 255,
  651. "b": 255,
  652. "a": 255
  653. },
  654. "_spriteFrame": {
  655. "__uuid__": "8acba509-59c1-4619-9ce0-ee3d4d51b7ad@f9941",
  656. "__expectedType__": "cc.SpriteFrame"
  657. },
  658. "_type": 0,
  659. "_fillType": 0,
  660. "_sizeMode": 1,
  661. "_fillCenter": {
  662. "__type__": "cc.Vec2",
  663. "x": 0,
  664. "y": 0
  665. },
  666. "_fillStart": 0,
  667. "_fillRange": 0,
  668. "_isTrimmedMode": true,
  669. "_useGrayscale": false,
  670. "_atlas": null,
  671. "_id": ""
  672. },
  673. {
  674. "__type__": "cc.CompPrefabInfo",
  675. "fileId": "ab2rBo9m9Fm5Hjg/bovv+9"
  676. },
  677. {
  678. "__type__": "cc.PrefabInfo",
  679. "root": {
  680. "__id__": 1
  681. },
  682. "asset": {
  683. "__id__": 0
  684. },
  685. "fileId": "9ddx1hfx1B2JjU/OiaKwrJ",
  686. "instance": null,
  687. "targetOverrides": null,
  688. "nestedPrefabInstanceRoots": null
  689. },
  690. {
  691. "__type__": "cc.Node",
  692. "_name": "btn_buy_life",
  693. "_objFlags": 0,
  694. "__editorExtras__": {},
  695. "_parent": {
  696. "__id__": 11
  697. },
  698. "_children": [
  699. {
  700. "__id__": 25
  701. }
  702. ],
  703. "_active": true,
  704. "_components": [
  705. {
  706. "__id__": 31
  707. },
  708. {
  709. "__id__": 33
  710. },
  711. {
  712. "__id__": 35
  713. }
  714. ],
  715. "_prefab": {
  716. "__id__": 37
  717. },
  718. "_lpos": {
  719. "__type__": "cc.Vec3",
  720. "x": 59.923,
  721. "y": -0.887,
  722. "z": 0
  723. },
  724. "_lrot": {
  725. "__type__": "cc.Quat",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0,
  729. "w": 1
  730. },
  731. "_lscale": {
  732. "__type__": "cc.Vec3",
  733. "x": 1,
  734. "y": 1,
  735. "z": 1
  736. },
  737. "_mobility": 0,
  738. "_layer": 33554432,
  739. "_euler": {
  740. "__type__": "cc.Vec3",
  741. "x": 0,
  742. "y": 0,
  743. "z": 0
  744. },
  745. "_id": ""
  746. },
  747. {
  748. "__type__": "cc.Node",
  749. "_name": "add-icon-yellow-stroek",
  750. "_objFlags": 0,
  751. "__editorExtras__": {},
  752. "_parent": {
  753. "__id__": 24
  754. },
  755. "_children": [],
  756. "_active": true,
  757. "_components": [
  758. {
  759. "__id__": 26
  760. },
  761. {
  762. "__id__": 28
  763. }
  764. ],
  765. "_prefab": {
  766. "__id__": 30
  767. },
  768. "_lpos": {
  769. "__type__": "cc.Vec3",
  770. "x": 0.539,
  771. "y": 0,
  772. "z": 0
  773. },
  774. "_lrot": {
  775. "__type__": "cc.Quat",
  776. "x": 0,
  777. "y": 0,
  778. "z": 0,
  779. "w": 1
  780. },
  781. "_lscale": {
  782. "__type__": "cc.Vec3",
  783. "x": 1,
  784. "y": 1,
  785. "z": 1
  786. },
  787. "_mobility": 0,
  788. "_layer": 33554432,
  789. "_euler": {
  790. "__type__": "cc.Vec3",
  791. "x": 0,
  792. "y": 0,
  793. "z": 0
  794. },
  795. "_id": ""
  796. },
  797. {
  798. "__type__": "cc.UITransform",
  799. "_name": "",
  800. "_objFlags": 0,
  801. "__editorExtras__": {},
  802. "node": {
  803. "__id__": 25
  804. },
  805. "_enabled": true,
  806. "__prefab": {
  807. "__id__": 27
  808. },
  809. "_contentSize": {
  810. "__type__": "cc.Size",
  811. "width": 37,
  812. "height": 34
  813. },
  814. "_anchorPoint": {
  815. "__type__": "cc.Vec2",
  816. "x": 0.5,
  817. "y": 0.5
  818. },
  819. "_id": ""
  820. },
  821. {
  822. "__type__": "cc.CompPrefabInfo",
  823. "fileId": "024i0j3+1M0oMTtmwaRbiL"
  824. },
  825. {
  826. "__type__": "cc.Sprite",
  827. "_name": "",
  828. "_objFlags": 0,
  829. "__editorExtras__": {},
  830. "node": {
  831. "__id__": 25
  832. },
  833. "_enabled": true,
  834. "__prefab": {
  835. "__id__": 29
  836. },
  837. "_customMaterial": null,
  838. "_srcBlendFactor": 2,
  839. "_dstBlendFactor": 4,
  840. "_color": {
  841. "__type__": "cc.Color",
  842. "r": 255,
  843. "g": 255,
  844. "b": 255,
  845. "a": 255
  846. },
  847. "_spriteFrame": {
  848. "__uuid__": "ab354abc-518f-4337-8515-7131223a55c3@f9941",
  849. "__expectedType__": "cc.SpriteFrame"
  850. },
  851. "_type": 0,
  852. "_fillType": 0,
  853. "_sizeMode": 1,
  854. "_fillCenter": {
  855. "__type__": "cc.Vec2",
  856. "x": 0,
  857. "y": 0
  858. },
  859. "_fillStart": 0,
  860. "_fillRange": 0,
  861. "_isTrimmedMode": true,
  862. "_useGrayscale": false,
  863. "_atlas": null,
  864. "_id": ""
  865. },
  866. {
  867. "__type__": "cc.CompPrefabInfo",
  868. "fileId": "8f4x9fTLdC+pvCxzKBSE9H"
  869. },
  870. {
  871. "__type__": "cc.PrefabInfo",
  872. "root": {
  873. "__id__": 1
  874. },
  875. "asset": {
  876. "__id__": 0
  877. },
  878. "fileId": "a2IaWHzGROcZlN6Mh1sAC8",
  879. "instance": null,
  880. "targetOverrides": null,
  881. "nestedPrefabInstanceRoots": null
  882. },
  883. {
  884. "__type__": "cc.UITransform",
  885. "_name": "",
  886. "_objFlags": 0,
  887. "__editorExtras__": {},
  888. "node": {
  889. "__id__": 24
  890. },
  891. "_enabled": true,
  892. "__prefab": {
  893. "__id__": 32
  894. },
  895. "_contentSize": {
  896. "__type__": "cc.Size",
  897. "width": 45,
  898. "height": 45
  899. },
  900. "_anchorPoint": {
  901. "__type__": "cc.Vec2",
  902. "x": 0.5,
  903. "y": 0.5
  904. },
  905. "_id": ""
  906. },
  907. {
  908. "__type__": "cc.CompPrefabInfo",
  909. "fileId": "f6q6VZPMlFiaP7D5Ja8iJx"
  910. },
  911. {
  912. "__type__": "cc.Sprite",
  913. "_name": "",
  914. "_objFlags": 0,
  915. "__editorExtras__": {},
  916. "node": {
  917. "__id__": 24
  918. },
  919. "_enabled": false,
  920. "__prefab": {
  921. "__id__": 34
  922. },
  923. "_customMaterial": null,
  924. "_srcBlendFactor": 2,
  925. "_dstBlendFactor": 4,
  926. "_color": {
  927. "__type__": "cc.Color",
  928. "r": 255,
  929. "g": 255,
  930. "b": 255,
  931. "a": 255
  932. },
  933. "_spriteFrame": null,
  934. "_type": 0,
  935. "_fillType": 0,
  936. "_sizeMode": 0,
  937. "_fillCenter": {
  938. "__type__": "cc.Vec2",
  939. "x": 0,
  940. "y": 0
  941. },
  942. "_fillStart": 0,
  943. "_fillRange": 0,
  944. "_isTrimmedMode": true,
  945. "_useGrayscale": false,
  946. "_atlas": null,
  947. "_id": ""
  948. },
  949. {
  950. "__type__": "cc.CompPrefabInfo",
  951. "fileId": "fbog++biZKwYRO/93REl/t"
  952. },
  953. {
  954. "__type__": "cc.Button",
  955. "_name": "",
  956. "_objFlags": 0,
  957. "__editorExtras__": {},
  958. "node": {
  959. "__id__": 24
  960. },
  961. "_enabled": true,
  962. "__prefab": {
  963. "__id__": 36
  964. },
  965. "clickEvents": [],
  966. "_interactable": true,
  967. "_transition": 1,
  968. "_normalColor": {
  969. "__type__": "cc.Color",
  970. "r": 255,
  971. "g": 255,
  972. "b": 255,
  973. "a": 255
  974. },
  975. "_hoverColor": {
  976. "__type__": "cc.Color",
  977. "r": 211,
  978. "g": 211,
  979. "b": 211,
  980. "a": 255
  981. },
  982. "_pressedColor": {
  983. "__type__": "cc.Color",
  984. "r": 255,
  985. "g": 255,
  986. "b": 255,
  987. "a": 255
  988. },
  989. "_disabledColor": {
  990. "__type__": "cc.Color",
  991. "r": 124,
  992. "g": 124,
  993. "b": 124,
  994. "a": 255
  995. },
  996. "_normalSprite": null,
  997. "_hoverSprite": null,
  998. "_pressedSprite": null,
  999. "_disabledSprite": null,
  1000. "_duration": 0.1,
  1001. "_zoomScale": 1.2,
  1002. "_target": null,
  1003. "_id": ""
  1004. },
  1005. {
  1006. "__type__": "cc.CompPrefabInfo",
  1007. "fileId": "dcFPlsIo5JJZXh4vWU7/xc"
  1008. },
  1009. {
  1010. "__type__": "cc.PrefabInfo",
  1011. "root": {
  1012. "__id__": 1
  1013. },
  1014. "asset": {
  1015. "__id__": 0
  1016. },
  1017. "fileId": "63eYYmmkZO+ImWfJb+T2Hd",
  1018. "instance": null,
  1019. "targetOverrides": null,
  1020. "nestedPrefabInstanceRoots": null
  1021. },
  1022. {
  1023. "__type__": "cc.Node",
  1024. "_name": "lbl_life_time",
  1025. "_objFlags": 0,
  1026. "__editorExtras__": {},
  1027. "_parent": {
  1028. "__id__": 11
  1029. },
  1030. "_children": [],
  1031. "_active": true,
  1032. "_components": [
  1033. {
  1034. "__id__": 39
  1035. },
  1036. {
  1037. "__id__": 41
  1038. },
  1039. {
  1040. "__id__": 43
  1041. }
  1042. ],
  1043. "_prefab": {
  1044. "__id__": 45
  1045. },
  1046. "_lpos": {
  1047. "__type__": "cc.Vec3",
  1048. "x": 0,
  1049. "y": -1.619,
  1050. "z": 0
  1051. },
  1052. "_lrot": {
  1053. "__type__": "cc.Quat",
  1054. "x": 0,
  1055. "y": 0,
  1056. "z": 0,
  1057. "w": 1
  1058. },
  1059. "_lscale": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 1,
  1062. "y": 1,
  1063. "z": 1
  1064. },
  1065. "_mobility": 0,
  1066. "_layer": 33554432,
  1067. "_euler": {
  1068. "__type__": "cc.Vec3",
  1069. "x": 0,
  1070. "y": 0,
  1071. "z": 0
  1072. },
  1073. "_id": ""
  1074. },
  1075. {
  1076. "__type__": "cc.UITransform",
  1077. "_name": "",
  1078. "_objFlags": 0,
  1079. "__editorExtras__": {},
  1080. "node": {
  1081. "__id__": 38
  1082. },
  1083. "_enabled": true,
  1084. "__prefab": {
  1085. "__id__": 40
  1086. },
  1087. "_contentSize": {
  1088. "__type__": "cc.Size",
  1089. "width": 114.72885131835938,
  1090. "height": 52.367999999999995
  1091. },
  1092. "_anchorPoint": {
  1093. "__type__": "cc.Vec2",
  1094. "x": 0.5,
  1095. "y": 0.5
  1096. },
  1097. "_id": ""
  1098. },
  1099. {
  1100. "__type__": "cc.CompPrefabInfo",
  1101. "fileId": "c68UOAlNhN171Umca6yVvF"
  1102. },
  1103. {
  1104. "__type__": "cc.Label",
  1105. "_name": "",
  1106. "_objFlags": 0,
  1107. "__editorExtras__": {},
  1108. "node": {
  1109. "__id__": 38
  1110. },
  1111. "_enabled": true,
  1112. "__prefab": {
  1113. "__id__": 42
  1114. },
  1115. "_customMaterial": null,
  1116. "_srcBlendFactor": 2,
  1117. "_dstBlendFactor": 4,
  1118. "_color": {
  1119. "__type__": "cc.Color",
  1120. "r": 255,
  1121. "g": 255,
  1122. "b": 255,
  1123. "a": 255
  1124. },
  1125. "_string": "00:00",
  1126. "_horizontalAlign": 1,
  1127. "_verticalAlign": 1,
  1128. "_actualFontSize": 36.8,
  1129. "_fontSize": 36.8,
  1130. "_fontFamily": "Arial",
  1131. "_lineHeight": 36.8,
  1132. "_overflow": 0,
  1133. "_enableWrapText": false,
  1134. "_font": {
  1135. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  1136. "__expectedType__": "cc.TTFFont"
  1137. },
  1138. "_isSystemFontUsed": false,
  1139. "_spacingX": 0,
  1140. "_isItalic": false,
  1141. "_isBold": false,
  1142. "_isUnderline": false,
  1143. "_underlineHeight": 2,
  1144. "_cacheMode": 0,
  1145. "_enableOutline": true,
  1146. "_outlineColor": {
  1147. "__type__": "cc.Color",
  1148. "r": 115,
  1149. "g": 60,
  1150. "b": 6,
  1151. "a": 255
  1152. },
  1153. "_outlineWidth": 3,
  1154. "_enableShadow": true,
  1155. "_shadowColor": {
  1156. "__type__": "cc.Color",
  1157. "r": 115,
  1158. "g": 60,
  1159. "b": 6,
  1160. "a": 255
  1161. },
  1162. "_shadowOffset": {
  1163. "__type__": "cc.Vec2",
  1164. "x": 2,
  1165. "y": 2
  1166. },
  1167. "_shadowBlur": 3,
  1168. "_id": ""
  1169. },
  1170. {
  1171. "__type__": "cc.CompPrefabInfo",
  1172. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1173. },
  1174. {
  1175. "__type__": "cc.LabelShadow",
  1176. "_name": "",
  1177. "_objFlags": 0,
  1178. "__editorExtras__": {},
  1179. "node": {
  1180. "__id__": 38
  1181. },
  1182. "_enabled": true,
  1183. "__prefab": {
  1184. "__id__": 44
  1185. },
  1186. "_id": ""
  1187. },
  1188. {
  1189. "__type__": "cc.CompPrefabInfo",
  1190. "fileId": "61aE24EKxIZ7NXcXE6bsRv"
  1191. },
  1192. {
  1193. "__type__": "cc.PrefabInfo",
  1194. "root": {
  1195. "__id__": 1
  1196. },
  1197. "asset": {
  1198. "__id__": 0
  1199. },
  1200. "fileId": "73aa0MkTBIV4B6+NUiLq4Y",
  1201. "instance": null,
  1202. "targetOverrides": null,
  1203. "nestedPrefabInstanceRoots": null
  1204. },
  1205. {
  1206. "__type__": "cc.UITransform",
  1207. "_name": "",
  1208. "_objFlags": 0,
  1209. "__editorExtras__": {},
  1210. "node": {
  1211. "__id__": 11
  1212. },
  1213. "_enabled": true,
  1214. "__prefab": {
  1215. "__id__": 47
  1216. },
  1217. "_contentSize": {
  1218. "__type__": "cc.Size",
  1219. "width": 161,
  1220. "height": 53
  1221. },
  1222. "_anchorPoint": {
  1223. "__type__": "cc.Vec2",
  1224. "x": 0.5,
  1225. "y": 0.5
  1226. },
  1227. "_id": ""
  1228. },
  1229. {
  1230. "__type__": "cc.CompPrefabInfo",
  1231. "fileId": "ceEPu2FUdFa7IcxvK3INOO"
  1232. },
  1233. {
  1234. "__type__": "cc.Sprite",
  1235. "_name": "",
  1236. "_objFlags": 0,
  1237. "__editorExtras__": {},
  1238. "node": {
  1239. "__id__": 11
  1240. },
  1241. "_enabled": true,
  1242. "__prefab": {
  1243. "__id__": 49
  1244. },
  1245. "_customMaterial": null,
  1246. "_srcBlendFactor": 2,
  1247. "_dstBlendFactor": 4,
  1248. "_color": {
  1249. "__type__": "cc.Color",
  1250. "r": 255,
  1251. "g": 255,
  1252. "b": 255,
  1253. "a": 255
  1254. },
  1255. "_spriteFrame": {
  1256. "__uuid__": "10a72288-9ed2-40d9-b62c-820baa791332@f9941",
  1257. "__expectedType__": "cc.SpriteFrame"
  1258. },
  1259. "_type": 1,
  1260. "_fillType": 0,
  1261. "_sizeMode": 1,
  1262. "_fillCenter": {
  1263. "__type__": "cc.Vec2",
  1264. "x": 0,
  1265. "y": 0
  1266. },
  1267. "_fillStart": 0,
  1268. "_fillRange": 0,
  1269. "_isTrimmedMode": false,
  1270. "_useGrayscale": false,
  1271. "_atlas": null,
  1272. "_id": ""
  1273. },
  1274. {
  1275. "__type__": "cc.CompPrefabInfo",
  1276. "fileId": "70PQ2mSJBD5aEe3yyw4qpz"
  1277. },
  1278. {
  1279. "__type__": "cc.Widget",
  1280. "_name": "",
  1281. "_objFlags": 0,
  1282. "__editorExtras__": {},
  1283. "node": {
  1284. "__id__": 11
  1285. },
  1286. "_enabled": true,
  1287. "__prefab": {
  1288. "__id__": 51
  1289. },
  1290. "_alignFlags": 2,
  1291. "_target": null,
  1292. "_left": 0,
  1293. "_right": 0,
  1294. "_top": 0,
  1295. "_bottom": 0,
  1296. "_horizontalCenter": 0,
  1297. "_verticalCenter": 0,
  1298. "_isAbsLeft": true,
  1299. "_isAbsRight": true,
  1300. "_isAbsTop": true,
  1301. "_isAbsBottom": true,
  1302. "_isAbsHorizontalCenter": true,
  1303. "_isAbsVerticalCenter": true,
  1304. "_originalWidth": 0,
  1305. "_originalHeight": 0,
  1306. "_alignMode": 2,
  1307. "_lockFlags": 2,
  1308. "_id": ""
  1309. },
  1310. {
  1311. "__type__": "cc.CompPrefabInfo",
  1312. "fileId": "72/vxUsxZObbH1Ea4GbTs5"
  1313. },
  1314. {
  1315. "__type__": "cc.PrefabInfo",
  1316. "root": {
  1317. "__id__": 1
  1318. },
  1319. "asset": {
  1320. "__id__": 0
  1321. },
  1322. "fileId": "c49MpXb+1Ima6c5RSlLOcv",
  1323. "instance": null,
  1324. "targetOverrides": null,
  1325. "nestedPrefabInstanceRoots": null
  1326. },
  1327. {
  1328. "__type__": "cc.Node",
  1329. "_name": "rounded-black-info-001",
  1330. "_objFlags": 0,
  1331. "__editorExtras__": {},
  1332. "_parent": {
  1333. "__id__": 10
  1334. },
  1335. "_children": [
  1336. {
  1337. "__id__": 54
  1338. },
  1339. {
  1340. "__id__": 60
  1341. },
  1342. {
  1343. "__id__": 74
  1344. }
  1345. ],
  1346. "_active": true,
  1347. "_components": [
  1348. {
  1349. "__id__": 80
  1350. },
  1351. {
  1352. "__id__": 82
  1353. },
  1354. {
  1355. "__id__": 84
  1356. }
  1357. ],
  1358. "_prefab": {
  1359. "__id__": 86
  1360. },
  1361. "_lpos": {
  1362. "__type__": "cc.Vec3",
  1363. "x": 229.49999999999994,
  1364. "y": 90,
  1365. "z": 0
  1366. },
  1367. "_lrot": {
  1368. "__type__": "cc.Quat",
  1369. "x": 0,
  1370. "y": 0,
  1371. "z": 0,
  1372. "w": 1
  1373. },
  1374. "_lscale": {
  1375. "__type__": "cc.Vec3",
  1376. "x": 1,
  1377. "y": 1,
  1378. "z": 1
  1379. },
  1380. "_mobility": 0,
  1381. "_layer": 33554432,
  1382. "_euler": {
  1383. "__type__": "cc.Vec3",
  1384. "x": 0,
  1385. "y": 0,
  1386. "z": 0
  1387. },
  1388. "_id": ""
  1389. },
  1390. {
  1391. "__type__": "cc.Node",
  1392. "_name": "coin-icon",
  1393. "_objFlags": 0,
  1394. "__editorExtras__": {},
  1395. "_parent": {
  1396. "__id__": 53
  1397. },
  1398. "_children": [],
  1399. "_active": true,
  1400. "_components": [
  1401. {
  1402. "__id__": 55
  1403. },
  1404. {
  1405. "__id__": 57
  1406. }
  1407. ],
  1408. "_prefab": {
  1409. "__id__": 59
  1410. },
  1411. "_lpos": {
  1412. "__type__": "cc.Vec3",
  1413. "x": -85.633,
  1414. "y": -1.165,
  1415. "z": 0
  1416. },
  1417. "_lrot": {
  1418. "__type__": "cc.Quat",
  1419. "x": 0,
  1420. "y": 0,
  1421. "z": 0,
  1422. "w": 1
  1423. },
  1424. "_lscale": {
  1425. "__type__": "cc.Vec3",
  1426. "x": 1,
  1427. "y": 1,
  1428. "z": 1
  1429. },
  1430. "_mobility": 0,
  1431. "_layer": 33554432,
  1432. "_euler": {
  1433. "__type__": "cc.Vec3",
  1434. "x": 0,
  1435. "y": 0,
  1436. "z": 0
  1437. },
  1438. "_id": ""
  1439. },
  1440. {
  1441. "__type__": "cc.UITransform",
  1442. "_name": "",
  1443. "_objFlags": 0,
  1444. "__editorExtras__": {},
  1445. "node": {
  1446. "__id__": 54
  1447. },
  1448. "_enabled": true,
  1449. "__prefab": {
  1450. "__id__": 56
  1451. },
  1452. "_contentSize": {
  1453. "__type__": "cc.Size",
  1454. "width": 97,
  1455. "height": 97
  1456. },
  1457. "_anchorPoint": {
  1458. "__type__": "cc.Vec2",
  1459. "x": 0.5,
  1460. "y": 0.5
  1461. },
  1462. "_id": ""
  1463. },
  1464. {
  1465. "__type__": "cc.CompPrefabInfo",
  1466. "fileId": "4aKljEyYdLD5jkA32DPGwA"
  1467. },
  1468. {
  1469. "__type__": "cc.Sprite",
  1470. "_name": "",
  1471. "_objFlags": 0,
  1472. "__editorExtras__": {},
  1473. "node": {
  1474. "__id__": 54
  1475. },
  1476. "_enabled": true,
  1477. "__prefab": {
  1478. "__id__": 58
  1479. },
  1480. "_customMaterial": null,
  1481. "_srcBlendFactor": 2,
  1482. "_dstBlendFactor": 4,
  1483. "_color": {
  1484. "__type__": "cc.Color",
  1485. "r": 255,
  1486. "g": 255,
  1487. "b": 255,
  1488. "a": 255
  1489. },
  1490. "_spriteFrame": {
  1491. "__uuid__": "6d9962de-2cd5-4ee6-b862-b81634adda52@f9941",
  1492. "__expectedType__": "cc.SpriteFrame"
  1493. },
  1494. "_type": 0,
  1495. "_fillType": 0,
  1496. "_sizeMode": 1,
  1497. "_fillCenter": {
  1498. "__type__": "cc.Vec2",
  1499. "x": 0,
  1500. "y": 0
  1501. },
  1502. "_fillStart": 0,
  1503. "_fillRange": 0,
  1504. "_isTrimmedMode": false,
  1505. "_useGrayscale": false,
  1506. "_atlas": null,
  1507. "_id": ""
  1508. },
  1509. {
  1510. "__type__": "cc.CompPrefabInfo",
  1511. "fileId": "caMpXEYpxH5bUijKP3Guip"
  1512. },
  1513. {
  1514. "__type__": "cc.PrefabInfo",
  1515. "root": {
  1516. "__id__": 1
  1517. },
  1518. "asset": {
  1519. "__id__": 0
  1520. },
  1521. "fileId": "61wMGXZ59Gw5hob7acafxf",
  1522. "instance": null,
  1523. "targetOverrides": null,
  1524. "nestedPrefabInstanceRoots": null
  1525. },
  1526. {
  1527. "__type__": "cc.Node",
  1528. "_name": "btn_buy_coin",
  1529. "_objFlags": 0,
  1530. "__editorExtras__": {},
  1531. "_parent": {
  1532. "__id__": 53
  1533. },
  1534. "_children": [
  1535. {
  1536. "__id__": 61
  1537. }
  1538. ],
  1539. "_active": true,
  1540. "_components": [
  1541. {
  1542. "__id__": 67
  1543. },
  1544. {
  1545. "__id__": 69
  1546. },
  1547. {
  1548. "__id__": 71
  1549. }
  1550. ],
  1551. "_prefab": {
  1552. "__id__": 73
  1553. },
  1554. "_lpos": {
  1555. "__type__": "cc.Vec3",
  1556. "x": 59.923,
  1557. "y": -0.887,
  1558. "z": 0
  1559. },
  1560. "_lrot": {
  1561. "__type__": "cc.Quat",
  1562. "x": 0,
  1563. "y": 0,
  1564. "z": 0,
  1565. "w": 1
  1566. },
  1567. "_lscale": {
  1568. "__type__": "cc.Vec3",
  1569. "x": 1,
  1570. "y": 1,
  1571. "z": 1
  1572. },
  1573. "_mobility": 0,
  1574. "_layer": 33554432,
  1575. "_euler": {
  1576. "__type__": "cc.Vec3",
  1577. "x": 0,
  1578. "y": 0,
  1579. "z": 0
  1580. },
  1581. "_id": ""
  1582. },
  1583. {
  1584. "__type__": "cc.Node",
  1585. "_name": "add-icon-yellow-stroek",
  1586. "_objFlags": 0,
  1587. "__editorExtras__": {},
  1588. "_parent": {
  1589. "__id__": 60
  1590. },
  1591. "_children": [],
  1592. "_active": true,
  1593. "_components": [
  1594. {
  1595. "__id__": 62
  1596. },
  1597. {
  1598. "__id__": 64
  1599. }
  1600. ],
  1601. "_prefab": {
  1602. "__id__": 66
  1603. },
  1604. "_lpos": {
  1605. "__type__": "cc.Vec3",
  1606. "x": 0.539,
  1607. "y": 0,
  1608. "z": 0
  1609. },
  1610. "_lrot": {
  1611. "__type__": "cc.Quat",
  1612. "x": 0,
  1613. "y": 0,
  1614. "z": 0,
  1615. "w": 1
  1616. },
  1617. "_lscale": {
  1618. "__type__": "cc.Vec3",
  1619. "x": 1,
  1620. "y": 1,
  1621. "z": 1
  1622. },
  1623. "_mobility": 0,
  1624. "_layer": 33554432,
  1625. "_euler": {
  1626. "__type__": "cc.Vec3",
  1627. "x": 0,
  1628. "y": 0,
  1629. "z": 0
  1630. },
  1631. "_id": ""
  1632. },
  1633. {
  1634. "__type__": "cc.UITransform",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "__editorExtras__": {},
  1638. "node": {
  1639. "__id__": 61
  1640. },
  1641. "_enabled": true,
  1642. "__prefab": {
  1643. "__id__": 63
  1644. },
  1645. "_contentSize": {
  1646. "__type__": "cc.Size",
  1647. "width": 30,
  1648. "height": 30
  1649. },
  1650. "_anchorPoint": {
  1651. "__type__": "cc.Vec2",
  1652. "x": 0.5,
  1653. "y": 0.5
  1654. },
  1655. "_id": ""
  1656. },
  1657. {
  1658. "__type__": "cc.CompPrefabInfo",
  1659. "fileId": "d61oCBau1MV626D0GGKIm4"
  1660. },
  1661. {
  1662. "__type__": "cc.Sprite",
  1663. "_name": "",
  1664. "_objFlags": 0,
  1665. "__editorExtras__": {},
  1666. "node": {
  1667. "__id__": 61
  1668. },
  1669. "_enabled": true,
  1670. "__prefab": {
  1671. "__id__": 65
  1672. },
  1673. "_customMaterial": null,
  1674. "_srcBlendFactor": 2,
  1675. "_dstBlendFactor": 4,
  1676. "_color": {
  1677. "__type__": "cc.Color",
  1678. "r": 255,
  1679. "g": 255,
  1680. "b": 255,
  1681. "a": 255
  1682. },
  1683. "_spriteFrame": {
  1684. "__uuid__": "10bcebf6-6d6e-4c0d-852e-3b6f8ac721e7@f9941",
  1685. "__expectedType__": "cc.SpriteFrame"
  1686. },
  1687. "_type": 0,
  1688. "_fillType": 0,
  1689. "_sizeMode": 0,
  1690. "_fillCenter": {
  1691. "__type__": "cc.Vec2",
  1692. "x": 0,
  1693. "y": 0
  1694. },
  1695. "_fillStart": 0,
  1696. "_fillRange": 0,
  1697. "_isTrimmedMode": true,
  1698. "_useGrayscale": false,
  1699. "_atlas": null,
  1700. "_id": ""
  1701. },
  1702. {
  1703. "__type__": "cc.CompPrefabInfo",
  1704. "fileId": "e85ayjWIlDOqCoGEl+eg2C"
  1705. },
  1706. {
  1707. "__type__": "cc.PrefabInfo",
  1708. "root": {
  1709. "__id__": 1
  1710. },
  1711. "asset": {
  1712. "__id__": 0
  1713. },
  1714. "fileId": "80mAiSzF9B7bA9J2OwdK4Z",
  1715. "instance": null,
  1716. "targetOverrides": null,
  1717. "nestedPrefabInstanceRoots": null
  1718. },
  1719. {
  1720. "__type__": "cc.UITransform",
  1721. "_name": "",
  1722. "_objFlags": 0,
  1723. "__editorExtras__": {},
  1724. "node": {
  1725. "__id__": 60
  1726. },
  1727. "_enabled": true,
  1728. "__prefab": {
  1729. "__id__": 68
  1730. },
  1731. "_contentSize": {
  1732. "__type__": "cc.Size",
  1733. "width": 37,
  1734. "height": 34
  1735. },
  1736. "_anchorPoint": {
  1737. "__type__": "cc.Vec2",
  1738. "x": 0.5,
  1739. "y": 0.5
  1740. },
  1741. "_id": ""
  1742. },
  1743. {
  1744. "__type__": "cc.CompPrefabInfo",
  1745. "fileId": "35/z/CAtxM075XcGkUMWou"
  1746. },
  1747. {
  1748. "__type__": "cc.Sprite",
  1749. "_name": "",
  1750. "_objFlags": 0,
  1751. "__editorExtras__": {},
  1752. "node": {
  1753. "__id__": 60
  1754. },
  1755. "_enabled": true,
  1756. "__prefab": {
  1757. "__id__": 70
  1758. },
  1759. "_customMaterial": null,
  1760. "_srcBlendFactor": 2,
  1761. "_dstBlendFactor": 4,
  1762. "_color": {
  1763. "__type__": "cc.Color",
  1764. "r": 255,
  1765. "g": 255,
  1766. "b": 255,
  1767. "a": 255
  1768. },
  1769. "_spriteFrame": {
  1770. "__uuid__": "ab354abc-518f-4337-8515-7131223a55c3@f9941",
  1771. "__expectedType__": "cc.SpriteFrame"
  1772. },
  1773. "_type": 0,
  1774. "_fillType": 0,
  1775. "_sizeMode": 1,
  1776. "_fillCenter": {
  1777. "__type__": "cc.Vec2",
  1778. "x": 0,
  1779. "y": 0
  1780. },
  1781. "_fillStart": 0,
  1782. "_fillRange": 0,
  1783. "_isTrimmedMode": true,
  1784. "_useGrayscale": false,
  1785. "_atlas": null,
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.CompPrefabInfo",
  1790. "fileId": "e0xbU9+f9KwZA4zFiFTK6J"
  1791. },
  1792. {
  1793. "__type__": "cc.Button",
  1794. "_name": "",
  1795. "_objFlags": 0,
  1796. "__editorExtras__": {},
  1797. "node": {
  1798. "__id__": 60
  1799. },
  1800. "_enabled": true,
  1801. "__prefab": {
  1802. "__id__": 72
  1803. },
  1804. "clickEvents": [],
  1805. "_interactable": true,
  1806. "_transition": 1,
  1807. "_normalColor": {
  1808. "__type__": "cc.Color",
  1809. "r": 255,
  1810. "g": 255,
  1811. "b": 255,
  1812. "a": 255
  1813. },
  1814. "_hoverColor": {
  1815. "__type__": "cc.Color",
  1816. "r": 211,
  1817. "g": 211,
  1818. "b": 211,
  1819. "a": 255
  1820. },
  1821. "_pressedColor": {
  1822. "__type__": "cc.Color",
  1823. "r": 255,
  1824. "g": 255,
  1825. "b": 255,
  1826. "a": 255
  1827. },
  1828. "_disabledColor": {
  1829. "__type__": "cc.Color",
  1830. "r": 124,
  1831. "g": 124,
  1832. "b": 124,
  1833. "a": 255
  1834. },
  1835. "_normalSprite": null,
  1836. "_hoverSprite": null,
  1837. "_pressedSprite": null,
  1838. "_disabledSprite": null,
  1839. "_duration": 0.1,
  1840. "_zoomScale": 1.2,
  1841. "_target": null,
  1842. "_id": ""
  1843. },
  1844. {
  1845. "__type__": "cc.CompPrefabInfo",
  1846. "fileId": "6d+yoFJfJOSZ6+pSoHXEV0"
  1847. },
  1848. {
  1849. "__type__": "cc.PrefabInfo",
  1850. "root": {
  1851. "__id__": 1
  1852. },
  1853. "asset": {
  1854. "__id__": 0
  1855. },
  1856. "fileId": "d5tmvhSOBDPKu+LpYS2urP",
  1857. "instance": null,
  1858. "targetOverrides": null,
  1859. "nestedPrefabInstanceRoots": null
  1860. },
  1861. {
  1862. "__type__": "cc.Node",
  1863. "_name": "lbl_coin",
  1864. "_objFlags": 0,
  1865. "__editorExtras__": {},
  1866. "_parent": {
  1867. "__id__": 53
  1868. },
  1869. "_children": [],
  1870. "_active": true,
  1871. "_components": [
  1872. {
  1873. "__id__": 75
  1874. },
  1875. {
  1876. "__id__": 77
  1877. }
  1878. ],
  1879. "_prefab": {
  1880. "__id__": 79
  1881. },
  1882. "_lpos": {
  1883. "__type__": "cc.Vec3",
  1884. "x": 0,
  1885. "y": -1.619,
  1886. "z": 0
  1887. },
  1888. "_lrot": {
  1889. "__type__": "cc.Quat",
  1890. "x": 0,
  1891. "y": 0,
  1892. "z": 0,
  1893. "w": 1
  1894. },
  1895. "_lscale": {
  1896. "__type__": "cc.Vec3",
  1897. "x": 1,
  1898. "y": 1,
  1899. "z": 1
  1900. },
  1901. "_mobility": 0,
  1902. "_layer": 33554432,
  1903. "_euler": {
  1904. "__type__": "cc.Vec3",
  1905. "x": 0,
  1906. "y": 0,
  1907. "z": 0
  1908. },
  1909. "_id": ""
  1910. },
  1911. {
  1912. "__type__": "cc.UITransform",
  1913. "_name": "",
  1914. "_objFlags": 0,
  1915. "__editorExtras__": {},
  1916. "node": {
  1917. "__id__": 74
  1918. },
  1919. "_enabled": true,
  1920. "__prefab": {
  1921. "__id__": 76
  1922. },
  1923. "_contentSize": {
  1924. "__type__": "cc.Size",
  1925. "width": 25.86328125,
  1926. "height": 56.4
  1927. },
  1928. "_anchorPoint": {
  1929. "__type__": "cc.Vec2",
  1930. "x": 0.5,
  1931. "y": 0.5
  1932. },
  1933. "_id": ""
  1934. },
  1935. {
  1936. "__type__": "cc.CompPrefabInfo",
  1937. "fileId": "c68UOAlNhN171Umca6yVvF"
  1938. },
  1939. {
  1940. "__type__": "cc.Label",
  1941. "_name": "",
  1942. "_objFlags": 0,
  1943. "__editorExtras__": {},
  1944. "node": {
  1945. "__id__": 74
  1946. },
  1947. "_enabled": true,
  1948. "__prefab": {
  1949. "__id__": 78
  1950. },
  1951. "_customMaterial": null,
  1952. "_srcBlendFactor": 2,
  1953. "_dstBlendFactor": 4,
  1954. "_color": {
  1955. "__type__": "cc.Color",
  1956. "r": 255,
  1957. "g": 255,
  1958. "b": 255,
  1959. "a": 255
  1960. },
  1961. "_string": "0",
  1962. "_horizontalAlign": 1,
  1963. "_verticalAlign": 1,
  1964. "_actualFontSize": 30,
  1965. "_fontSize": 30,
  1966. "_fontFamily": "Arial",
  1967. "_lineHeight": 40,
  1968. "_overflow": 0,
  1969. "_enableWrapText": true,
  1970. "_font": {
  1971. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  1972. "__expectedType__": "cc.TTFFont"
  1973. },
  1974. "_isSystemFontUsed": false,
  1975. "_spacingX": 0,
  1976. "_isItalic": false,
  1977. "_isBold": false,
  1978. "_isUnderline": false,
  1979. "_underlineHeight": 2,
  1980. "_cacheMode": 0,
  1981. "_enableOutline": true,
  1982. "_outlineColor": {
  1983. "__type__": "cc.Color",
  1984. "r": 115,
  1985. "g": 60,
  1986. "b": 6,
  1987. "a": 255
  1988. },
  1989. "_outlineWidth": 3,
  1990. "_enableShadow": false,
  1991. "_shadowColor": {
  1992. "__type__": "cc.Color",
  1993. "r": 0,
  1994. "g": 0,
  1995. "b": 0,
  1996. "a": 255
  1997. },
  1998. "_shadowOffset": {
  1999. "__type__": "cc.Vec2",
  2000. "x": 2,
  2001. "y": 2
  2002. },
  2003. "_shadowBlur": 2,
  2004. "_id": ""
  2005. },
  2006. {
  2007. "__type__": "cc.CompPrefabInfo",
  2008. "fileId": "2frm37uaJHQr0AEEaYyM82"
  2009. },
  2010. {
  2011. "__type__": "cc.PrefabInfo",
  2012. "root": {
  2013. "__id__": 1
  2014. },
  2015. "asset": {
  2016. "__id__": 0
  2017. },
  2018. "fileId": "79koL3CIRCmbEV3cyBmJt2",
  2019. "instance": null,
  2020. "targetOverrides": null,
  2021. "nestedPrefabInstanceRoots": null
  2022. },
  2023. {
  2024. "__type__": "cc.UITransform",
  2025. "_name": "",
  2026. "_objFlags": 0,
  2027. "__editorExtras__": {},
  2028. "node": {
  2029. "__id__": 53
  2030. },
  2031. "_enabled": true,
  2032. "__prefab": {
  2033. "__id__": 81
  2034. },
  2035. "_contentSize": {
  2036. "__type__": "cc.Size",
  2037. "width": 161,
  2038. "height": 53
  2039. },
  2040. "_anchorPoint": {
  2041. "__type__": "cc.Vec2",
  2042. "x": 0.5,
  2043. "y": 0.5
  2044. },
  2045. "_id": ""
  2046. },
  2047. {
  2048. "__type__": "cc.CompPrefabInfo",
  2049. "fileId": "6cSCeru7NKXa0XisS773CS"
  2050. },
  2051. {
  2052. "__type__": "cc.Sprite",
  2053. "_name": "",
  2054. "_objFlags": 0,
  2055. "__editorExtras__": {},
  2056. "node": {
  2057. "__id__": 53
  2058. },
  2059. "_enabled": true,
  2060. "__prefab": {
  2061. "__id__": 83
  2062. },
  2063. "_customMaterial": null,
  2064. "_srcBlendFactor": 2,
  2065. "_dstBlendFactor": 4,
  2066. "_color": {
  2067. "__type__": "cc.Color",
  2068. "r": 255,
  2069. "g": 255,
  2070. "b": 255,
  2071. "a": 255
  2072. },
  2073. "_spriteFrame": {
  2074. "__uuid__": "10a72288-9ed2-40d9-b62c-820baa791332@f9941",
  2075. "__expectedType__": "cc.SpriteFrame"
  2076. },
  2077. "_type": 1,
  2078. "_fillType": 0,
  2079. "_sizeMode": 1,
  2080. "_fillCenter": {
  2081. "__type__": "cc.Vec2",
  2082. "x": 0,
  2083. "y": 0
  2084. },
  2085. "_fillStart": 0,
  2086. "_fillRange": 0,
  2087. "_isTrimmedMode": false,
  2088. "_useGrayscale": false,
  2089. "_atlas": null,
  2090. "_id": ""
  2091. },
  2092. {
  2093. "__type__": "cc.CompPrefabInfo",
  2094. "fileId": "16AyDBmZNA5oCncSYC5o/h"
  2095. },
  2096. {
  2097. "__type__": "cc.Widget",
  2098. "_name": "",
  2099. "_objFlags": 0,
  2100. "__editorExtras__": {},
  2101. "node": {
  2102. "__id__": 53
  2103. },
  2104. "_enabled": true,
  2105. "__prefab": {
  2106. "__id__": 85
  2107. },
  2108. "_alignFlags": 34,
  2109. "_target": null,
  2110. "_left": 0,
  2111. "_right": 65,
  2112. "_top": 0,
  2113. "_bottom": 0,
  2114. "_horizontalCenter": 0,
  2115. "_verticalCenter": 0,
  2116. "_isAbsLeft": true,
  2117. "_isAbsRight": true,
  2118. "_isAbsTop": true,
  2119. "_isAbsBottom": true,
  2120. "_isAbsHorizontalCenter": true,
  2121. "_isAbsVerticalCenter": true,
  2122. "_originalWidth": 0,
  2123. "_originalHeight": 0,
  2124. "_alignMode": 2,
  2125. "_lockFlags": 34,
  2126. "_id": ""
  2127. },
  2128. {
  2129. "__type__": "cc.CompPrefabInfo",
  2130. "fileId": "54FOzkSrdPRJX8unIFwObh"
  2131. },
  2132. {
  2133. "__type__": "cc.PrefabInfo",
  2134. "root": {
  2135. "__id__": 1
  2136. },
  2137. "asset": {
  2138. "__id__": 0
  2139. },
  2140. "fileId": "9bE75Ry01BhZ890HlyNk/t",
  2141. "instance": null,
  2142. "targetOverrides": null,
  2143. "nestedPrefabInstanceRoots": null
  2144. },
  2145. {
  2146. "__type__": "cc.Node",
  2147. "_name": "btn_setting",
  2148. "_objFlags": 0,
  2149. "__editorExtras__": {},
  2150. "_parent": {
  2151. "__id__": 10
  2152. },
  2153. "_children": [],
  2154. "_active": true,
  2155. "_components": [
  2156. {
  2157. "__id__": 88
  2158. },
  2159. {
  2160. "__id__": 90
  2161. },
  2162. {
  2163. "__id__": 92
  2164. },
  2165. {
  2166. "__id__": 94
  2167. }
  2168. ],
  2169. "_prefab": {
  2170. "__id__": 96
  2171. },
  2172. "_lpos": {
  2173. "__type__": "cc.Vec3",
  2174. "x": -253.49999999999994,
  2175. "y": 90,
  2176. "z": 0
  2177. },
  2178. "_lrot": {
  2179. "__type__": "cc.Quat",
  2180. "x": 0,
  2181. "y": 0,
  2182. "z": 0,
  2183. "w": 1
  2184. },
  2185. "_lscale": {
  2186. "__type__": "cc.Vec3",
  2187. "x": 1,
  2188. "y": 1,
  2189. "z": 1
  2190. },
  2191. "_mobility": 0,
  2192. "_layer": 33554432,
  2193. "_euler": {
  2194. "__type__": "cc.Vec3",
  2195. "x": 0,
  2196. "y": 0,
  2197. "z": 0
  2198. },
  2199. "_id": ""
  2200. },
  2201. {
  2202. "__type__": "cc.UITransform",
  2203. "_name": "",
  2204. "_objFlags": 0,
  2205. "__editorExtras__": {},
  2206. "node": {
  2207. "__id__": 87
  2208. },
  2209. "_enabled": true,
  2210. "__prefab": {
  2211. "__id__": 89
  2212. },
  2213. "_contentSize": {
  2214. "__type__": "cc.Size",
  2215. "width": 113,
  2216. "height": 103
  2217. },
  2218. "_anchorPoint": {
  2219. "__type__": "cc.Vec2",
  2220. "x": 0.5,
  2221. "y": 0.5
  2222. },
  2223. "_id": ""
  2224. },
  2225. {
  2226. "__type__": "cc.CompPrefabInfo",
  2227. "fileId": "b9lXTm1rhFyID7CTv3bmHs"
  2228. },
  2229. {
  2230. "__type__": "cc.Sprite",
  2231. "_name": "",
  2232. "_objFlags": 0,
  2233. "__editorExtras__": {},
  2234. "node": {
  2235. "__id__": 87
  2236. },
  2237. "_enabled": true,
  2238. "__prefab": {
  2239. "__id__": 91
  2240. },
  2241. "_customMaterial": null,
  2242. "_srcBlendFactor": 2,
  2243. "_dstBlendFactor": 4,
  2244. "_color": {
  2245. "__type__": "cc.Color",
  2246. "r": 255,
  2247. "g": 255,
  2248. "b": 255,
  2249. "a": 255
  2250. },
  2251. "_spriteFrame": {
  2252. "__uuid__": "e35b0de4-f832-4a58-a869-ae35cdb1d039@f9941",
  2253. "__expectedType__": "cc.SpriteFrame"
  2254. },
  2255. "_type": 0,
  2256. "_fillType": 0,
  2257. "_sizeMode": 1,
  2258. "_fillCenter": {
  2259. "__type__": "cc.Vec2",
  2260. "x": 0,
  2261. "y": 0
  2262. },
  2263. "_fillStart": 0,
  2264. "_fillRange": 0,
  2265. "_isTrimmedMode": true,
  2266. "_useGrayscale": false,
  2267. "_atlas": null,
  2268. "_id": ""
  2269. },
  2270. {
  2271. "__type__": "cc.CompPrefabInfo",
  2272. "fileId": "54s+kpyl1OvJH6AfF7LrwC"
  2273. },
  2274. {
  2275. "__type__": "cc.Button",
  2276. "_name": "",
  2277. "_objFlags": 0,
  2278. "__editorExtras__": {},
  2279. "node": {
  2280. "__id__": 87
  2281. },
  2282. "_enabled": true,
  2283. "__prefab": {
  2284. "__id__": 93
  2285. },
  2286. "clickEvents": [],
  2287. "_interactable": true,
  2288. "_transition": 1,
  2289. "_normalColor": {
  2290. "__type__": "cc.Color",
  2291. "r": 255,
  2292. "g": 255,
  2293. "b": 255,
  2294. "a": 255
  2295. },
  2296. "_hoverColor": {
  2297. "__type__": "cc.Color",
  2298. "r": 211,
  2299. "g": 211,
  2300. "b": 211,
  2301. "a": 255
  2302. },
  2303. "_pressedColor": {
  2304. "__type__": "cc.Color",
  2305. "r": 255,
  2306. "g": 255,
  2307. "b": 255,
  2308. "a": 255
  2309. },
  2310. "_disabledColor": {
  2311. "__type__": "cc.Color",
  2312. "r": 124,
  2313. "g": 124,
  2314. "b": 124,
  2315. "a": 255
  2316. },
  2317. "_normalSprite": null,
  2318. "_hoverSprite": null,
  2319. "_pressedSprite": null,
  2320. "_disabledSprite": null,
  2321. "_duration": 0.1,
  2322. "_zoomScale": 1.2,
  2323. "_target": null,
  2324. "_id": ""
  2325. },
  2326. {
  2327. "__type__": "cc.CompPrefabInfo",
  2328. "fileId": "6ee76kptxI743qBVktzJqm"
  2329. },
  2330. {
  2331. "__type__": "cc.Widget",
  2332. "_name": "",
  2333. "_objFlags": 0,
  2334. "__editorExtras__": {},
  2335. "node": {
  2336. "__id__": 87
  2337. },
  2338. "_enabled": true,
  2339. "__prefab": {
  2340. "__id__": 95
  2341. },
  2342. "_alignFlags": 10,
  2343. "_target": null,
  2344. "_left": 65,
  2345. "_right": 0,
  2346. "_top": 0,
  2347. "_bottom": 0,
  2348. "_horizontalCenter": 0,
  2349. "_verticalCenter": 0,
  2350. "_isAbsLeft": true,
  2351. "_isAbsRight": true,
  2352. "_isAbsTop": true,
  2353. "_isAbsBottom": true,
  2354. "_isAbsHorizontalCenter": true,
  2355. "_isAbsVerticalCenter": true,
  2356. "_originalWidth": 0,
  2357. "_originalHeight": 0,
  2358. "_alignMode": 2,
  2359. "_lockFlags": 10,
  2360. "_id": ""
  2361. },
  2362. {
  2363. "__type__": "cc.CompPrefabInfo",
  2364. "fileId": "5bh8lSQvdDPZityq0gfTCC"
  2365. },
  2366. {
  2367. "__type__": "cc.PrefabInfo",
  2368. "root": {
  2369. "__id__": 1
  2370. },
  2371. "asset": {
  2372. "__id__": 0
  2373. },
  2374. "fileId": "ad3nwZFWpDd5mHdT69H9K4",
  2375. "instance": null,
  2376. "targetOverrides": null,
  2377. "nestedPrefabInstanceRoots": null
  2378. },
  2379. {
  2380. "__type__": "cc.Node",
  2381. "_name": "Node",
  2382. "_objFlags": 0,
  2383. "__editorExtras__": {},
  2384. "_parent": {
  2385. "__id__": 10
  2386. },
  2387. "_children": [
  2388. {
  2389. "__id__": 98
  2390. },
  2391. {
  2392. "__id__": 166
  2393. }
  2394. ],
  2395. "_active": true,
  2396. "_components": [
  2397. {
  2398. "__id__": 234
  2399. },
  2400. {
  2401. "__id__": 236
  2402. }
  2403. ],
  2404. "_prefab": {
  2405. "__id__": 238
  2406. },
  2407. "_lpos": {
  2408. "__type__": "cc.Vec3",
  2409. "x": 0,
  2410. "y": -62.235,
  2411. "z": 0
  2412. },
  2413. "_lrot": {
  2414. "__type__": "cc.Quat",
  2415. "x": 0,
  2416. "y": 0,
  2417. "z": 0,
  2418. "w": 1
  2419. },
  2420. "_lscale": {
  2421. "__type__": "cc.Vec3",
  2422. "x": 1,
  2423. "y": 1,
  2424. "z": 1
  2425. },
  2426. "_mobility": 0,
  2427. "_layer": 33554432,
  2428. "_euler": {
  2429. "__type__": "cc.Vec3",
  2430. "x": 0,
  2431. "y": 0,
  2432. "z": 0
  2433. },
  2434. "_id": ""
  2435. },
  2436. {
  2437. "__type__": "cc.Node",
  2438. "_name": "chest-reward-bg",
  2439. "_objFlags": 0,
  2440. "__editorExtras__": {},
  2441. "_parent": {
  2442. "__id__": 97
  2443. },
  2444. "_children": [
  2445. {
  2446. "__id__": 99
  2447. },
  2448. {
  2449. "__id__": 107
  2450. },
  2451. {
  2452. "__id__": 127
  2453. },
  2454. {
  2455. "__id__": 141
  2456. }
  2457. ],
  2458. "_active": true,
  2459. "_components": [
  2460. {
  2461. "__id__": 163
  2462. }
  2463. ],
  2464. "_prefab": {
  2465. "__id__": 165
  2466. },
  2467. "_lpos": {
  2468. "__type__": "cc.Vec3",
  2469. "x": -176.5,
  2470. "y": 0,
  2471. "z": 0
  2472. },
  2473. "_lrot": {
  2474. "__type__": "cc.Quat",
  2475. "x": 0,
  2476. "y": 0,
  2477. "z": 0,
  2478. "w": 1
  2479. },
  2480. "_lscale": {
  2481. "__type__": "cc.Vec3",
  2482. "x": 1,
  2483. "y": 1,
  2484. "z": 1
  2485. },
  2486. "_mobility": 0,
  2487. "_layer": 33554432,
  2488. "_euler": {
  2489. "__type__": "cc.Vec3",
  2490. "x": 0,
  2491. "y": 0,
  2492. "z": 0
  2493. },
  2494. "_id": ""
  2495. },
  2496. {
  2497. "__type__": "cc.Node",
  2498. "_name": "reward0",
  2499. "_objFlags": 0,
  2500. "__editorExtras__": {},
  2501. "_parent": {
  2502. "__id__": 98
  2503. },
  2504. "_children": [],
  2505. "_active": true,
  2506. "_components": [
  2507. {
  2508. "__id__": 100
  2509. },
  2510. {
  2511. "__id__": 102
  2512. },
  2513. {
  2514. "__id__": 104
  2515. }
  2516. ],
  2517. "_prefab": {
  2518. "__id__": 106
  2519. },
  2520. "_lpos": {
  2521. "__type__": "cc.Vec3",
  2522. "x": 0,
  2523. "y": 0,
  2524. "z": 0
  2525. },
  2526. "_lrot": {
  2527. "__type__": "cc.Quat",
  2528. "x": 0,
  2529. "y": 0,
  2530. "z": 0,
  2531. "w": 1
  2532. },
  2533. "_lscale": {
  2534. "__type__": "cc.Vec3",
  2535. "x": 1,
  2536. "y": 1,
  2537. "z": 1
  2538. },
  2539. "_mobility": 0,
  2540. "_layer": 33554432,
  2541. "_euler": {
  2542. "__type__": "cc.Vec3",
  2543. "x": 0,
  2544. "y": 0,
  2545. "z": 0
  2546. },
  2547. "_id": ""
  2548. },
  2549. {
  2550. "__type__": "cc.UITransform",
  2551. "_name": "",
  2552. "_objFlags": 0,
  2553. "__editorExtras__": {},
  2554. "node": {
  2555. "__id__": 99
  2556. },
  2557. "_enabled": true,
  2558. "__prefab": {
  2559. "__id__": 101
  2560. },
  2561. "_contentSize": {
  2562. "__type__": "cc.Size",
  2563. "width": 313,
  2564. "height": 146
  2565. },
  2566. "_anchorPoint": {
  2567. "__type__": "cc.Vec2",
  2568. "x": 0.5,
  2569. "y": 0.5
  2570. },
  2571. "_id": ""
  2572. },
  2573. {
  2574. "__type__": "cc.CompPrefabInfo",
  2575. "fileId": "99vZI0zuJIfb1OOS+de7Fe"
  2576. },
  2577. {
  2578. "__type__": "cc.Sprite",
  2579. "_name": "",
  2580. "_objFlags": 0,
  2581. "__editorExtras__": {},
  2582. "node": {
  2583. "__id__": 99
  2584. },
  2585. "_enabled": true,
  2586. "__prefab": {
  2587. "__id__": 103
  2588. },
  2589. "_customMaterial": null,
  2590. "_srcBlendFactor": 2,
  2591. "_dstBlendFactor": 4,
  2592. "_color": {
  2593. "__type__": "cc.Color",
  2594. "r": 255,
  2595. "g": 255,
  2596. "b": 255,
  2597. "a": 255
  2598. },
  2599. "_spriteFrame": {
  2600. "__uuid__": "1ffb99fe-278d-4d3b-97aa-9c0330c7d596@f9941",
  2601. "__expectedType__": "cc.SpriteFrame"
  2602. },
  2603. "_type": 0,
  2604. "_fillType": 0,
  2605. "_sizeMode": 1,
  2606. "_fillCenter": {
  2607. "__type__": "cc.Vec2",
  2608. "x": 0,
  2609. "y": 0
  2610. },
  2611. "_fillStart": 0,
  2612. "_fillRange": 0,
  2613. "_isTrimmedMode": true,
  2614. "_useGrayscale": false,
  2615. "_atlas": null,
  2616. "_id": ""
  2617. },
  2618. {
  2619. "__type__": "cc.CompPrefabInfo",
  2620. "fileId": "17CZMLOTxNmLcqucuoz0hb"
  2621. },
  2622. {
  2623. "__type__": "cc.Button",
  2624. "_name": "",
  2625. "_objFlags": 0,
  2626. "__editorExtras__": {},
  2627. "node": {
  2628. "__id__": 99
  2629. },
  2630. "_enabled": true,
  2631. "__prefab": {
  2632. "__id__": 105
  2633. },
  2634. "clickEvents": [],
  2635. "_interactable": true,
  2636. "_transition": 3,
  2637. "_normalColor": {
  2638. "__type__": "cc.Color",
  2639. "r": 255,
  2640. "g": 255,
  2641. "b": 255,
  2642. "a": 255
  2643. },
  2644. "_hoverColor": {
  2645. "__type__": "cc.Color",
  2646. "r": 211,
  2647. "g": 211,
  2648. "b": 211,
  2649. "a": 255
  2650. },
  2651. "_pressedColor": {
  2652. "__type__": "cc.Color",
  2653. "r": 255,
  2654. "g": 255,
  2655. "b": 255,
  2656. "a": 255
  2657. },
  2658. "_disabledColor": {
  2659. "__type__": "cc.Color",
  2660. "r": 124,
  2661. "g": 124,
  2662. "b": 124,
  2663. "a": 255
  2664. },
  2665. "_normalSprite": null,
  2666. "_hoverSprite": null,
  2667. "_pressedSprite": null,
  2668. "_disabledSprite": null,
  2669. "_duration": 0.1,
  2670. "_zoomScale": 1,
  2671. "_target": {
  2672. "__id__": 99
  2673. },
  2674. "_id": ""
  2675. },
  2676. {
  2677. "__type__": "cc.CompPrefabInfo",
  2678. "fileId": "33kltJ7G1Nh7sfovytAPr1"
  2679. },
  2680. {
  2681. "__type__": "cc.PrefabInfo",
  2682. "root": {
  2683. "__id__": 1
  2684. },
  2685. "asset": {
  2686. "__id__": 0
  2687. },
  2688. "fileId": "dd8gLrGPVKv5ge+4zICIgk",
  2689. "instance": null,
  2690. "targetOverrides": null,
  2691. "nestedPrefabInstanceRoots": null
  2692. },
  2693. {
  2694. "__type__": "cc.Node",
  2695. "_name": "rounded-black-info",
  2696. "_objFlags": 0,
  2697. "__editorExtras__": {},
  2698. "_parent": {
  2699. "__id__": 98
  2700. },
  2701. "_children": [
  2702. {
  2703. "__id__": 108
  2704. },
  2705. {
  2706. "__id__": 116
  2707. }
  2708. ],
  2709. "_active": true,
  2710. "_components": [
  2711. {
  2712. "__id__": 122
  2713. },
  2714. {
  2715. "__id__": 124
  2716. }
  2717. ],
  2718. "_prefab": {
  2719. "__id__": 126
  2720. },
  2721. "_lpos": {
  2722. "__type__": "cc.Vec3",
  2723. "x": 67.514,
  2724. "y": -33.086,
  2725. "z": 0
  2726. },
  2727. "_lrot": {
  2728. "__type__": "cc.Quat",
  2729. "x": 0,
  2730. "y": 0,
  2731. "z": 0,
  2732. "w": 1
  2733. },
  2734. "_lscale": {
  2735. "__type__": "cc.Vec3",
  2736. "x": 1,
  2737. "y": 1,
  2738. "z": 1
  2739. },
  2740. "_mobility": 0,
  2741. "_layer": 33554432,
  2742. "_euler": {
  2743. "__type__": "cc.Vec3",
  2744. "x": 0,
  2745. "y": 0,
  2746. "z": 0
  2747. },
  2748. "_id": ""
  2749. },
  2750. {
  2751. "__type__": "cc.Node",
  2752. "_name": "probar_lv",
  2753. "_objFlags": 0,
  2754. "__editorExtras__": {},
  2755. "_parent": {
  2756. "__id__": 107
  2757. },
  2758. "_children": [],
  2759. "_active": true,
  2760. "_components": [
  2761. {
  2762. "__id__": 109
  2763. },
  2764. {
  2765. "__id__": 111
  2766. },
  2767. {
  2768. "__id__": 113
  2769. }
  2770. ],
  2771. "_prefab": {
  2772. "__id__": 115
  2773. },
  2774. "_lpos": {
  2775. "__type__": "cc.Vec3",
  2776. "x": -63.40299999999999,
  2777. "y": 0.25499999999988177,
  2778. "z": 0
  2779. },
  2780. "_lrot": {
  2781. "__type__": "cc.Quat",
  2782. "x": 0,
  2783. "y": 0,
  2784. "z": 0,
  2785. "w": 1
  2786. },
  2787. "_lscale": {
  2788. "__type__": "cc.Vec3",
  2789. "x": 0.4,
  2790. "y": 0.4,
  2791. "z": 1
  2792. },
  2793. "_mobility": 0,
  2794. "_layer": 33554432,
  2795. "_euler": {
  2796. "__type__": "cc.Vec3",
  2797. "x": 0,
  2798. "y": 0,
  2799. "z": 0
  2800. },
  2801. "_id": ""
  2802. },
  2803. {
  2804. "__type__": "cc.UITransform",
  2805. "_name": "",
  2806. "_objFlags": 0,
  2807. "__editorExtras__": {},
  2808. "node": {
  2809. "__id__": 108
  2810. },
  2811. "_enabled": true,
  2812. "__prefab": {
  2813. "__id__": 110
  2814. },
  2815. "_contentSize": {
  2816. "__type__": "cc.Size",
  2817. "width": 310,
  2818. "height": 70
  2819. },
  2820. "_anchorPoint": {
  2821. "__type__": "cc.Vec2",
  2822. "x": 0,
  2823. "y": 0.5
  2824. },
  2825. "_id": ""
  2826. },
  2827. {
  2828. "__type__": "cc.CompPrefabInfo",
  2829. "fileId": "71aFbdGd9I/5OVCips2avP"
  2830. },
  2831. {
  2832. "__type__": "cc.Sprite",
  2833. "_name": "",
  2834. "_objFlags": 0,
  2835. "__editorExtras__": {},
  2836. "node": {
  2837. "__id__": 108
  2838. },
  2839. "_enabled": true,
  2840. "__prefab": {
  2841. "__id__": 112
  2842. },
  2843. "_customMaterial": null,
  2844. "_srcBlendFactor": 2,
  2845. "_dstBlendFactor": 4,
  2846. "_color": {
  2847. "__type__": "cc.Color",
  2848. "r": 115,
  2849. "g": 60,
  2850. "b": 5,
  2851. "a": 255
  2852. },
  2853. "_spriteFrame": null,
  2854. "_type": 1,
  2855. "_fillType": 0,
  2856. "_sizeMode": 0,
  2857. "_fillCenter": {
  2858. "__type__": "cc.Vec2",
  2859. "x": 0,
  2860. "y": 0
  2861. },
  2862. "_fillStart": 0,
  2863. "_fillRange": 0,
  2864. "_isTrimmedMode": false,
  2865. "_useGrayscale": false,
  2866. "_atlas": null,
  2867. "_id": ""
  2868. },
  2869. {
  2870. "__type__": "cc.CompPrefabInfo",
  2871. "fileId": "ae1h5NKzVPUZFAAx5hpjlu"
  2872. },
  2873. {
  2874. "__type__": "cc.ProgressBar",
  2875. "_name": "",
  2876. "_objFlags": 0,
  2877. "__editorExtras__": {},
  2878. "node": {
  2879. "__id__": 108
  2880. },
  2881. "_enabled": true,
  2882. "__prefab": {
  2883. "__id__": 114
  2884. },
  2885. "_barSprite": {
  2886. "__id__": 111
  2887. },
  2888. "_mode": 0,
  2889. "_totalLength": 310,
  2890. "_progress": 1,
  2891. "_reverse": false,
  2892. "_id": ""
  2893. },
  2894. {
  2895. "__type__": "cc.CompPrefabInfo",
  2896. "fileId": "45SCxiGNBG6bNx6fpEo5kP"
  2897. },
  2898. {
  2899. "__type__": "cc.PrefabInfo",
  2900. "root": {
  2901. "__id__": 1
  2902. },
  2903. "asset": {
  2904. "__id__": 0
  2905. },
  2906. "fileId": "05qsKYTvFMHqkzTypfV8DA",
  2907. "instance": null,
  2908. "targetOverrides": null,
  2909. "nestedPrefabInstanceRoots": null
  2910. },
  2911. {
  2912. "__type__": "cc.Node",
  2913. "_name": "lbl_pro_lv",
  2914. "_objFlags": 0,
  2915. "__editorExtras__": {},
  2916. "_parent": {
  2917. "__id__": 107
  2918. },
  2919. "_children": [],
  2920. "_active": true,
  2921. "_components": [
  2922. {
  2923. "__id__": 117
  2924. },
  2925. {
  2926. "__id__": 119
  2927. }
  2928. ],
  2929. "_prefab": {
  2930. "__id__": 121
  2931. },
  2932. "_lpos": {
  2933. "__type__": "cc.Vec3",
  2934. "x": 0,
  2935. "y": 0,
  2936. "z": 0
  2937. },
  2938. "_lrot": {
  2939. "__type__": "cc.Quat",
  2940. "x": 0,
  2941. "y": 0,
  2942. "z": 0,
  2943. "w": 1
  2944. },
  2945. "_lscale": {
  2946. "__type__": "cc.Vec3",
  2947. "x": 1,
  2948. "y": 1,
  2949. "z": 1
  2950. },
  2951. "_mobility": 0,
  2952. "_layer": 33554432,
  2953. "_euler": {
  2954. "__type__": "cc.Vec3",
  2955. "x": 0,
  2956. "y": 0,
  2957. "z": 0
  2958. },
  2959. "_id": ""
  2960. },
  2961. {
  2962. "__type__": "cc.UITransform",
  2963. "_name": "",
  2964. "_objFlags": 0,
  2965. "__editorExtras__": {},
  2966. "node": {
  2967. "__id__": 116
  2968. },
  2969. "_enabled": true,
  2970. "__prefab": {
  2971. "__id__": 118
  2972. },
  2973. "_contentSize": {
  2974. "__type__": "cc.Size",
  2975. "width": 52.0751953125,
  2976. "height": 37.8
  2977. },
  2978. "_anchorPoint": {
  2979. "__type__": "cc.Vec2",
  2980. "x": 0.5,
  2981. "y": 0.5
  2982. },
  2983. "_id": ""
  2984. },
  2985. {
  2986. "__type__": "cc.CompPrefabInfo",
  2987. "fileId": "c68UOAlNhN171Umca6yVvF"
  2988. },
  2989. {
  2990. "__type__": "cc.Label",
  2991. "_name": "",
  2992. "_objFlags": 0,
  2993. "__editorExtras__": {},
  2994. "node": {
  2995. "__id__": 116
  2996. },
  2997. "_enabled": true,
  2998. "__prefab": {
  2999. "__id__": 120
  3000. },
  3001. "_customMaterial": null,
  3002. "_srcBlendFactor": 2,
  3003. "_dstBlendFactor": 4,
  3004. "_color": {
  3005. "__type__": "cc.Color",
  3006. "r": 255,
  3007. "g": 255,
  3008. "b": 199,
  3009. "a": 255
  3010. },
  3011. "_string": "0/10",
  3012. "_horizontalAlign": 1,
  3013. "_verticalAlign": 1,
  3014. "_actualFontSize": 25,
  3015. "_fontSize": 25,
  3016. "_fontFamily": "Arial",
  3017. "_lineHeight": 30,
  3018. "_overflow": 0,
  3019. "_enableWrapText": true,
  3020. "_font": {
  3021. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  3022. "__expectedType__": "cc.TTFFont"
  3023. },
  3024. "_isSystemFontUsed": false,
  3025. "_spacingX": 0,
  3026. "_isItalic": false,
  3027. "_isBold": true,
  3028. "_isUnderline": false,
  3029. "_underlineHeight": 2,
  3030. "_cacheMode": 0,
  3031. "_enableOutline": false,
  3032. "_outlineColor": {
  3033. "__type__": "cc.Color",
  3034. "r": 0,
  3035. "g": 0,
  3036. "b": 0,
  3037. "a": 255
  3038. },
  3039. "_outlineWidth": 2,
  3040. "_enableShadow": false,
  3041. "_shadowColor": {
  3042. "__type__": "cc.Color",
  3043. "r": 0,
  3044. "g": 0,
  3045. "b": 0,
  3046. "a": 255
  3047. },
  3048. "_shadowOffset": {
  3049. "__type__": "cc.Vec2",
  3050. "x": 2,
  3051. "y": 2
  3052. },
  3053. "_shadowBlur": 2,
  3054. "_id": ""
  3055. },
  3056. {
  3057. "__type__": "cc.CompPrefabInfo",
  3058. "fileId": "2frm37uaJHQr0AEEaYyM82"
  3059. },
  3060. {
  3061. "__type__": "cc.PrefabInfo",
  3062. "root": {
  3063. "__id__": 1
  3064. },
  3065. "asset": {
  3066. "__id__": 0
  3067. },
  3068. "fileId": "85H+FUEUVOQpzObQxlT/Yr",
  3069. "instance": null,
  3070. "targetOverrides": null,
  3071. "nestedPrefabInstanceRoots": null
  3072. },
  3073. {
  3074. "__type__": "cc.UITransform",
  3075. "_name": "",
  3076. "_objFlags": 0,
  3077. "__editorExtras__": {},
  3078. "node": {
  3079. "__id__": 107
  3080. },
  3081. "_enabled": true,
  3082. "__prefab": {
  3083. "__id__": 123
  3084. },
  3085. "_contentSize": {
  3086. "__type__": "cc.Size",
  3087. "width": 142,
  3088. "height": 34
  3089. },
  3090. "_anchorPoint": {
  3091. "__type__": "cc.Vec2",
  3092. "x": 0.5,
  3093. "y": 0.5
  3094. },
  3095. "_id": ""
  3096. },
  3097. {
  3098. "__type__": "cc.CompPrefabInfo",
  3099. "fileId": "0ePjwqV41Mk6okysvzNswO"
  3100. },
  3101. {
  3102. "__type__": "cc.Sprite",
  3103. "_name": "",
  3104. "_objFlags": 0,
  3105. "__editorExtras__": {},
  3106. "node": {
  3107. "__id__": 107
  3108. },
  3109. "_enabled": true,
  3110. "__prefab": {
  3111. "__id__": 125
  3112. },
  3113. "_customMaterial": null,
  3114. "_srcBlendFactor": 2,
  3115. "_dstBlendFactor": 4,
  3116. "_color": {
  3117. "__type__": "cc.Color",
  3118. "r": 255,
  3119. "g": 255,
  3120. "b": 255,
  3121. "a": 255
  3122. },
  3123. "_spriteFrame": {
  3124. "__uuid__": "1493155a-daf9-4dd0-bd13-1c442a8111b1@f9941",
  3125. "__expectedType__": "cc.SpriteFrame"
  3126. },
  3127. "_type": 0,
  3128. "_fillType": 0,
  3129. "_sizeMode": 1,
  3130. "_fillCenter": {
  3131. "__type__": "cc.Vec2",
  3132. "x": 0,
  3133. "y": 0
  3134. },
  3135. "_fillStart": 0,
  3136. "_fillRange": 0,
  3137. "_isTrimmedMode": true,
  3138. "_useGrayscale": false,
  3139. "_atlas": null,
  3140. "_id": ""
  3141. },
  3142. {
  3143. "__type__": "cc.CompPrefabInfo",
  3144. "fileId": "17pZLCQIpG0ZKh6Vw+eIMw"
  3145. },
  3146. {
  3147. "__type__": "cc.PrefabInfo",
  3148. "root": {
  3149. "__id__": 1
  3150. },
  3151. "asset": {
  3152. "__id__": 0
  3153. },
  3154. "fileId": "b9+Qf0MulPT74wyvtSYOeI",
  3155. "instance": null,
  3156. "targetOverrides": null,
  3157. "nestedPrefabInstanceRoots": null
  3158. },
  3159. {
  3160. "__type__": "cc.Node",
  3161. "_name": "Label-001",
  3162. "_objFlags": 0,
  3163. "__editorExtras__": {},
  3164. "_parent": {
  3165. "__id__": 98
  3166. },
  3167. "_children": [
  3168. {
  3169. "__id__": 128
  3170. }
  3171. ],
  3172. "_active": true,
  3173. "_components": [
  3174. {
  3175. "__id__": 134
  3176. },
  3177. {
  3178. "__id__": 136
  3179. },
  3180. {
  3181. "__id__": 138
  3182. }
  3183. ],
  3184. "_prefab": {
  3185. "__id__": 140
  3186. },
  3187. "_lpos": {
  3188. "__type__": "cc.Vec3",
  3189. "x": 70.758,
  3190. "y": 25.222,
  3191. "z": 0
  3192. },
  3193. "_lrot": {
  3194. "__type__": "cc.Quat",
  3195. "x": 0,
  3196. "y": 0,
  3197. "z": 0,
  3198. "w": 1
  3199. },
  3200. "_lscale": {
  3201. "__type__": "cc.Vec3",
  3202. "x": 1,
  3203. "y": 1,
  3204. "z": 1
  3205. },
  3206. "_mobility": 0,
  3207. "_layer": 33554432,
  3208. "_euler": {
  3209. "__type__": "cc.Vec3",
  3210. "x": 0,
  3211. "y": 0,
  3212. "z": 0
  3213. },
  3214. "_id": ""
  3215. },
  3216. {
  3217. "__type__": "cc.Node",
  3218. "_name": "chest-level",
  3219. "_objFlags": 0,
  3220. "__editorExtras__": {},
  3221. "_parent": {
  3222. "__id__": 127
  3223. },
  3224. "_children": [],
  3225. "_active": true,
  3226. "_components": [
  3227. {
  3228. "__id__": 129
  3229. },
  3230. {
  3231. "__id__": 131
  3232. }
  3233. ],
  3234. "_prefab": {
  3235. "__id__": 133
  3236. },
  3237. "_lpos": {
  3238. "__type__": "cc.Vec3",
  3239. "x": -142.07399999999998,
  3240. "y": -25.22199999999998,
  3241. "z": 0
  3242. },
  3243. "_lrot": {
  3244. "__type__": "cc.Quat",
  3245. "x": 0,
  3246. "y": 0,
  3247. "z": 0,
  3248. "w": 1
  3249. },
  3250. "_lscale": {
  3251. "__type__": "cc.Vec3",
  3252. "x": 1,
  3253. "y": 1,
  3254. "z": 0.8
  3255. },
  3256. "_mobility": 0,
  3257. "_layer": 33554432,
  3258. "_euler": {
  3259. "__type__": "cc.Vec3",
  3260. "x": 0,
  3261. "y": 0,
  3262. "z": 0
  3263. },
  3264. "_id": ""
  3265. },
  3266. {
  3267. "__type__": "cc.UITransform",
  3268. "_name": "",
  3269. "_objFlags": 0,
  3270. "__editorExtras__": {},
  3271. "node": {
  3272. "__id__": 128
  3273. },
  3274. "_enabled": true,
  3275. "__prefab": {
  3276. "__id__": 130
  3277. },
  3278. "_contentSize": {
  3279. "__type__": "cc.Size",
  3280. "width": 138,
  3281. "height": 114
  3282. },
  3283. "_anchorPoint": {
  3284. "__type__": "cc.Vec2",
  3285. "x": 0.5,
  3286. "y": 0.5
  3287. },
  3288. "_id": ""
  3289. },
  3290. {
  3291. "__type__": "cc.CompPrefabInfo",
  3292. "fileId": "caBk0SVBdNmrcR8dJ6JXVO"
  3293. },
  3294. {
  3295. "__type__": "cc.Sprite",
  3296. "_name": "",
  3297. "_objFlags": 0,
  3298. "__editorExtras__": {},
  3299. "node": {
  3300. "__id__": 128
  3301. },
  3302. "_enabled": true,
  3303. "__prefab": {
  3304. "__id__": 132
  3305. },
  3306. "_customMaterial": null,
  3307. "_srcBlendFactor": 2,
  3308. "_dstBlendFactor": 4,
  3309. "_color": {
  3310. "__type__": "cc.Color",
  3311. "r": 255,
  3312. "g": 255,
  3313. "b": 255,
  3314. "a": 255
  3315. },
  3316. "_spriteFrame": {
  3317. "__uuid__": "1a5279ef-9cee-4871-afdb-654a36ae46a3@f9941",
  3318. "__expectedType__": "cc.SpriteFrame"
  3319. },
  3320. "_type": 0,
  3321. "_fillType": 0,
  3322. "_sizeMode": 1,
  3323. "_fillCenter": {
  3324. "__type__": "cc.Vec2",
  3325. "x": 0,
  3326. "y": 0
  3327. },
  3328. "_fillStart": 0,
  3329. "_fillRange": 0,
  3330. "_isTrimmedMode": true,
  3331. "_useGrayscale": false,
  3332. "_atlas": null,
  3333. "_id": ""
  3334. },
  3335. {
  3336. "__type__": "cc.CompPrefabInfo",
  3337. "fileId": "7bUNgEBQ1IWp4UGx0JaBMK"
  3338. },
  3339. {
  3340. "__type__": "cc.PrefabInfo",
  3341. "root": {
  3342. "__id__": 1
  3343. },
  3344. "asset": {
  3345. "__id__": 0
  3346. },
  3347. "fileId": "87k2L+p2pNjaOqFxuazH0v",
  3348. "instance": null,
  3349. "targetOverrides": null,
  3350. "nestedPrefabInstanceRoots": null
  3351. },
  3352. {
  3353. "__type__": "cc.UITransform",
  3354. "_name": "",
  3355. "_objFlags": 0,
  3356. "__editorExtras__": {},
  3357. "node": {
  3358. "__id__": 127
  3359. },
  3360. "_enabled": true,
  3361. "__prefab": {
  3362. "__id__": 135
  3363. },
  3364. "_contentSize": {
  3365. "__type__": "cc.Size",
  3366. "width": 132,
  3367. "height": 41.58
  3368. },
  3369. "_anchorPoint": {
  3370. "__type__": "cc.Vec2",
  3371. "x": 0.5,
  3372. "y": 0.5
  3373. },
  3374. "_id": ""
  3375. },
  3376. {
  3377. "__type__": "cc.CompPrefabInfo",
  3378. "fileId": "c68UOAlNhN171Umca6yVvF"
  3379. },
  3380. {
  3381. "__type__": "cc.Label",
  3382. "_name": "",
  3383. "_objFlags": 0,
  3384. "__editorExtras__": {},
  3385. "node": {
  3386. "__id__": 127
  3387. },
  3388. "_enabled": true,
  3389. "__prefab": {
  3390. "__id__": 137
  3391. },
  3392. "_customMaterial": null,
  3393. "_srcBlendFactor": 2,
  3394. "_dstBlendFactor": 4,
  3395. "_color": {
  3396. "__type__": "cc.Color",
  3397. "r": 253,
  3398. "g": 252,
  3399. "b": 232,
  3400. "a": 255
  3401. },
  3402. "_string": "关卡奖励",
  3403. "_horizontalAlign": 0,
  3404. "_verticalAlign": 1,
  3405. "_actualFontSize": 33,
  3406. "_fontSize": 33,
  3407. "_fontFamily": "Arial",
  3408. "_lineHeight": 33,
  3409. "_overflow": 0,
  3410. "_enableWrapText": true,
  3411. "_font": {
  3412. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  3413. "__expectedType__": "cc.TTFFont"
  3414. },
  3415. "_isSystemFontUsed": false,
  3416. "_spacingX": 0,
  3417. "_isItalic": false,
  3418. "_isBold": false,
  3419. "_isUnderline": false,
  3420. "_underlineHeight": 2,
  3421. "_cacheMode": 0,
  3422. "_enableOutline": false,
  3423. "_outlineColor": {
  3424. "__type__": "cc.Color",
  3425. "r": 0,
  3426. "g": 0,
  3427. "b": 0,
  3428. "a": 255
  3429. },
  3430. "_outlineWidth": 2,
  3431. "_enableShadow": false,
  3432. "_shadowColor": {
  3433. "__type__": "cc.Color",
  3434. "r": 0,
  3435. "g": 0,
  3436. "b": 0,
  3437. "a": 255
  3438. },
  3439. "_shadowOffset": {
  3440. "__type__": "cc.Vec2",
  3441. "x": 2,
  3442. "y": 2
  3443. },
  3444. "_shadowBlur": 2,
  3445. "_id": ""
  3446. },
  3447. {
  3448. "__type__": "cc.CompPrefabInfo",
  3449. "fileId": "2frm37uaJHQr0AEEaYyM82"
  3450. },
  3451. {
  3452. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  3453. "_name": "",
  3454. "_objFlags": 0,
  3455. "__editorExtras__": {},
  3456. "node": {
  3457. "__id__": 127
  3458. },
  3459. "_enabled": true,
  3460. "__prefab": {
  3461. "__id__": 139
  3462. },
  3463. "_dataID": "main.关卡奖励",
  3464. "_id": ""
  3465. },
  3466. {
  3467. "__type__": "cc.CompPrefabInfo",
  3468. "fileId": "c3GKfRNKlPZKwVxTV85ScC"
  3469. },
  3470. {
  3471. "__type__": "cc.PrefabInfo",
  3472. "root": {
  3473. "__id__": 1
  3474. },
  3475. "asset": {
  3476. "__id__": 0
  3477. },
  3478. "fileId": "1dA9OoDQ5AF6yWnD4nSSAA",
  3479. "instance": null,
  3480. "targetOverrides": null,
  3481. "nestedPrefabInstanceRoots": null
  3482. },
  3483. {
  3484. "__type__": "cc.Node",
  3485. "_name": "full0",
  3486. "_objFlags": 0,
  3487. "__editorExtras__": {},
  3488. "_parent": {
  3489. "__id__": 98
  3490. },
  3491. "_children": [
  3492. {
  3493. "__id__": 142
  3494. },
  3495. {
  3496. "__id__": 148
  3497. }
  3498. ],
  3499. "_active": false,
  3500. "_components": [
  3501. {
  3502. "__id__": 156
  3503. },
  3504. {
  3505. "__id__": 158
  3506. },
  3507. {
  3508. "__id__": 160
  3509. }
  3510. ],
  3511. "_prefab": {
  3512. "__id__": 162
  3513. },
  3514. "_lpos": {
  3515. "__type__": "cc.Vec3",
  3516. "x": 0,
  3517. "y": 0,
  3518. "z": 0
  3519. },
  3520. "_lrot": {
  3521. "__type__": "cc.Quat",
  3522. "x": 0,
  3523. "y": 0,
  3524. "z": 0,
  3525. "w": 1
  3526. },
  3527. "_lscale": {
  3528. "__type__": "cc.Vec3",
  3529. "x": 1,
  3530. "y": 1,
  3531. "z": 1
  3532. },
  3533. "_mobility": 0,
  3534. "_layer": 33554432,
  3535. "_euler": {
  3536. "__type__": "cc.Vec3",
  3537. "x": 0,
  3538. "y": 0,
  3539. "z": 0
  3540. },
  3541. "_id": ""
  3542. },
  3543. {
  3544. "__type__": "cc.Node",
  3545. "_name": "chestLevel0",
  3546. "_objFlags": 0,
  3547. "__editorExtras__": {},
  3548. "_parent": {
  3549. "__id__": 141
  3550. },
  3551. "_children": [],
  3552. "_active": true,
  3553. "_components": [
  3554. {
  3555. "__id__": 143
  3556. },
  3557. {
  3558. "__id__": 145
  3559. }
  3560. ],
  3561. "_prefab": {
  3562. "__id__": 147
  3563. },
  3564. "_lpos": {
  3565. "__type__": "cc.Vec3",
  3566. "x": -71.316,
  3567. "y": 0,
  3568. "z": 0
  3569. },
  3570. "_lrot": {
  3571. "__type__": "cc.Quat",
  3572. "x": 0,
  3573. "y": 0,
  3574. "z": 0,
  3575. "w": 1
  3576. },
  3577. "_lscale": {
  3578. "__type__": "cc.Vec3",
  3579. "x": 1,
  3580. "y": 1,
  3581. "z": 0.8
  3582. },
  3583. "_mobility": 0,
  3584. "_layer": 33554432,
  3585. "_euler": {
  3586. "__type__": "cc.Vec3",
  3587. "x": 0,
  3588. "y": 0,
  3589. "z": 0
  3590. },
  3591. "_id": ""
  3592. },
  3593. {
  3594. "__type__": "cc.UITransform",
  3595. "_name": "",
  3596. "_objFlags": 0,
  3597. "__editorExtras__": {},
  3598. "node": {
  3599. "__id__": 142
  3600. },
  3601. "_enabled": true,
  3602. "__prefab": {
  3603. "__id__": 144
  3604. },
  3605. "_contentSize": {
  3606. "__type__": "cc.Size",
  3607. "width": 138,
  3608. "height": 114
  3609. },
  3610. "_anchorPoint": {
  3611. "__type__": "cc.Vec2",
  3612. "x": 0.5,
  3613. "y": 0.5
  3614. },
  3615. "_id": ""
  3616. },
  3617. {
  3618. "__type__": "cc.CompPrefabInfo",
  3619. "fileId": "7da+xo/VhGJKc/1Oy05vDy"
  3620. },
  3621. {
  3622. "__type__": "cc.Sprite",
  3623. "_name": "",
  3624. "_objFlags": 0,
  3625. "__editorExtras__": {},
  3626. "node": {
  3627. "__id__": 142
  3628. },
  3629. "_enabled": true,
  3630. "__prefab": {
  3631. "__id__": 146
  3632. },
  3633. "_customMaterial": null,
  3634. "_srcBlendFactor": 2,
  3635. "_dstBlendFactor": 4,
  3636. "_color": {
  3637. "__type__": "cc.Color",
  3638. "r": 255,
  3639. "g": 255,
  3640. "b": 255,
  3641. "a": 255
  3642. },
  3643. "_spriteFrame": {
  3644. "__uuid__": "1a5279ef-9cee-4871-afdb-654a36ae46a3@f9941",
  3645. "__expectedType__": "cc.SpriteFrame"
  3646. },
  3647. "_type": 0,
  3648. "_fillType": 0,
  3649. "_sizeMode": 1,
  3650. "_fillCenter": {
  3651. "__type__": "cc.Vec2",
  3652. "x": 0,
  3653. "y": 0
  3654. },
  3655. "_fillStart": 0,
  3656. "_fillRange": 0,
  3657. "_isTrimmedMode": true,
  3658. "_useGrayscale": false,
  3659. "_atlas": null,
  3660. "_id": ""
  3661. },
  3662. {
  3663. "__type__": "cc.CompPrefabInfo",
  3664. "fileId": "a39ybSkRZOmo0kGWVnZ8z2"
  3665. },
  3666. {
  3667. "__type__": "cc.PrefabInfo",
  3668. "root": {
  3669. "__id__": 1
  3670. },
  3671. "asset": {
  3672. "__id__": 0
  3673. },
  3674. "fileId": "b77cZF/eBLnqhbUDxo1MGL",
  3675. "instance": null,
  3676. "targetOverrides": null,
  3677. "nestedPrefabInstanceRoots": null
  3678. },
  3679. {
  3680. "__type__": "cc.Node",
  3681. "_name": "Label",
  3682. "_objFlags": 0,
  3683. "__editorExtras__": {},
  3684. "_parent": {
  3685. "__id__": 141
  3686. },
  3687. "_children": [],
  3688. "_active": true,
  3689. "_components": [
  3690. {
  3691. "__id__": 149
  3692. },
  3693. {
  3694. "__id__": 151
  3695. },
  3696. {
  3697. "__id__": 153
  3698. }
  3699. ],
  3700. "_prefab": {
  3701. "__id__": 155
  3702. },
  3703. "_lpos": {
  3704. "__type__": "cc.Vec3",
  3705. "x": 61.64,
  3706. "y": 0,
  3707. "z": 0
  3708. },
  3709. "_lrot": {
  3710. "__type__": "cc.Quat",
  3711. "x": 0,
  3712. "y": 0,
  3713. "z": 0,
  3714. "w": 1
  3715. },
  3716. "_lscale": {
  3717. "__type__": "cc.Vec3",
  3718. "x": 1,
  3719. "y": 1,
  3720. "z": 1
  3721. },
  3722. "_mobility": 0,
  3723. "_layer": 33554432,
  3724. "_euler": {
  3725. "__type__": "cc.Vec3",
  3726. "x": 0,
  3727. "y": 0,
  3728. "z": 0
  3729. },
  3730. "_id": ""
  3731. },
  3732. {
  3733. "__type__": "cc.UITransform",
  3734. "_name": "",
  3735. "_objFlags": 0,
  3736. "__editorExtras__": {},
  3737. "node": {
  3738. "__id__": 148
  3739. },
  3740. "_enabled": true,
  3741. "__prefab": {
  3742. "__id__": 150
  3743. },
  3744. "_contentSize": {
  3745. "__type__": "cc.Size",
  3746. "width": 132,
  3747. "height": 41.58
  3748. },
  3749. "_anchorPoint": {
  3750. "__type__": "cc.Vec2",
  3751. "x": 0.5,
  3752. "y": 0.5
  3753. },
  3754. "_id": ""
  3755. },
  3756. {
  3757. "__type__": "cc.CompPrefabInfo",
  3758. "fileId": "c68UOAlNhN171Umca6yVvF"
  3759. },
  3760. {
  3761. "__type__": "cc.Label",
  3762. "_name": "",
  3763. "_objFlags": 0,
  3764. "__editorExtras__": {},
  3765. "node": {
  3766. "__id__": 148
  3767. },
  3768. "_enabled": true,
  3769. "__prefab": {
  3770. "__id__": 152
  3771. },
  3772. "_customMaterial": null,
  3773. "_srcBlendFactor": 2,
  3774. "_dstBlendFactor": 4,
  3775. "_color": {
  3776. "__type__": "cc.Color",
  3777. "r": 255,
  3778. "g": 255,
  3779. "b": 255,
  3780. "a": 255
  3781. },
  3782. "_string": "点击打开",
  3783. "_horizontalAlign": 1,
  3784. "_verticalAlign": 1,
  3785. "_actualFontSize": 33,
  3786. "_fontSize": 33,
  3787. "_fontFamily": "Arial",
  3788. "_lineHeight": 33,
  3789. "_overflow": 0,
  3790. "_enableWrapText": true,
  3791. "_font": {
  3792. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  3793. "__expectedType__": "cc.TTFFont"
  3794. },
  3795. "_isSystemFontUsed": false,
  3796. "_spacingX": 0,
  3797. "_isItalic": false,
  3798. "_isBold": false,
  3799. "_isUnderline": false,
  3800. "_underlineHeight": 2,
  3801. "_cacheMode": 0,
  3802. "_enableOutline": false,
  3803. "_outlineColor": {
  3804. "__type__": "cc.Color",
  3805. "r": 0,
  3806. "g": 0,
  3807. "b": 0,
  3808. "a": 255
  3809. },
  3810. "_outlineWidth": 2,
  3811. "_enableShadow": false,
  3812. "_shadowColor": {
  3813. "__type__": "cc.Color",
  3814. "r": 0,
  3815. "g": 0,
  3816. "b": 0,
  3817. "a": 255
  3818. },
  3819. "_shadowOffset": {
  3820. "__type__": "cc.Vec2",
  3821. "x": 2,
  3822. "y": 2
  3823. },
  3824. "_shadowBlur": 2,
  3825. "_id": ""
  3826. },
  3827. {
  3828. "__type__": "cc.CompPrefabInfo",
  3829. "fileId": "2frm37uaJHQr0AEEaYyM82"
  3830. },
  3831. {
  3832. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  3833. "_name": "",
  3834. "_objFlags": 0,
  3835. "__editorExtras__": {},
  3836. "node": {
  3837. "__id__": 148
  3838. },
  3839. "_enabled": true,
  3840. "__prefab": {
  3841. "__id__": 154
  3842. },
  3843. "_dataID": "main.点击打开",
  3844. "_id": ""
  3845. },
  3846. {
  3847. "__type__": "cc.CompPrefabInfo",
  3848. "fileId": "d7O4x/yqJFaqyqsJyzrIYi"
  3849. },
  3850. {
  3851. "__type__": "cc.PrefabInfo",
  3852. "root": {
  3853. "__id__": 1
  3854. },
  3855. "asset": {
  3856. "__id__": 0
  3857. },
  3858. "fileId": "faLtk8mupJaYeU+O0LDvdG",
  3859. "instance": null,
  3860. "targetOverrides": null,
  3861. "nestedPrefabInstanceRoots": null
  3862. },
  3863. {
  3864. "__type__": "cc.UITransform",
  3865. "_name": "",
  3866. "_objFlags": 0,
  3867. "__editorExtras__": {},
  3868. "node": {
  3869. "__id__": 141
  3870. },
  3871. "_enabled": true,
  3872. "__prefab": {
  3873. "__id__": 157
  3874. },
  3875. "_contentSize": {
  3876. "__type__": "cc.Size",
  3877. "width": 313,
  3878. "height": 145
  3879. },
  3880. "_anchorPoint": {
  3881. "__type__": "cc.Vec2",
  3882. "x": 0.5,
  3883. "y": 0.5
  3884. },
  3885. "_id": ""
  3886. },
  3887. {
  3888. "__type__": "cc.CompPrefabInfo",
  3889. "fileId": "9enxkfgvxMnYECzg64zyZw"
  3890. },
  3891. {
  3892. "__type__": "cc.Sprite",
  3893. "_name": "",
  3894. "_objFlags": 0,
  3895. "__editorExtras__": {},
  3896. "node": {
  3897. "__id__": 141
  3898. },
  3899. "_enabled": true,
  3900. "__prefab": {
  3901. "__id__": 159
  3902. },
  3903. "_customMaterial": null,
  3904. "_srcBlendFactor": 2,
  3905. "_dstBlendFactor": 4,
  3906. "_color": {
  3907. "__type__": "cc.Color",
  3908. "r": 255,
  3909. "g": 255,
  3910. "b": 255,
  3911. "a": 255
  3912. },
  3913. "_spriteFrame": {
  3914. "__uuid__": "894beabb-4043-4276-9f0a-331edef2fb4a@f9941",
  3915. "__expectedType__": "cc.SpriteFrame"
  3916. },
  3917. "_type": 1,
  3918. "_fillType": 0,
  3919. "_sizeMode": 1,
  3920. "_fillCenter": {
  3921. "__type__": "cc.Vec2",
  3922. "x": 0,
  3923. "y": 0
  3924. },
  3925. "_fillStart": 0,
  3926. "_fillRange": 0,
  3927. "_isTrimmedMode": true,
  3928. "_useGrayscale": false,
  3929. "_atlas": null,
  3930. "_id": ""
  3931. },
  3932. {
  3933. "__type__": "cc.CompPrefabInfo",
  3934. "fileId": "2dGuDbixJARYsQiQDHYHe+"
  3935. },
  3936. {
  3937. "__type__": "cc.Button",
  3938. "_name": "",
  3939. "_objFlags": 0,
  3940. "__editorExtras__": {},
  3941. "node": {
  3942. "__id__": 141
  3943. },
  3944. "_enabled": true,
  3945. "__prefab": {
  3946. "__id__": 161
  3947. },
  3948. "clickEvents": [],
  3949. "_interactable": true,
  3950. "_transition": 3,
  3951. "_normalColor": {
  3952. "__type__": "cc.Color",
  3953. "r": 255,
  3954. "g": 255,
  3955. "b": 255,
  3956. "a": 255
  3957. },
  3958. "_hoverColor": {
  3959. "__type__": "cc.Color",
  3960. "r": 211,
  3961. "g": 211,
  3962. "b": 211,
  3963. "a": 255
  3964. },
  3965. "_pressedColor": {
  3966. "__type__": "cc.Color",
  3967. "r": 255,
  3968. "g": 255,
  3969. "b": 255,
  3970. "a": 255
  3971. },
  3972. "_disabledColor": {
  3973. "__type__": "cc.Color",
  3974. "r": 124,
  3975. "g": 124,
  3976. "b": 124,
  3977. "a": 255
  3978. },
  3979. "_normalSprite": null,
  3980. "_hoverSprite": null,
  3981. "_pressedSprite": null,
  3982. "_disabledSprite": null,
  3983. "_duration": 0.1,
  3984. "_zoomScale": 1.02,
  3985. "_target": {
  3986. "__id__": 141
  3987. },
  3988. "_id": ""
  3989. },
  3990. {
  3991. "__type__": "cc.CompPrefabInfo",
  3992. "fileId": "ba+8Y/05FKOYTEoi2a7nEF"
  3993. },
  3994. {
  3995. "__type__": "cc.PrefabInfo",
  3996. "root": {
  3997. "__id__": 1
  3998. },
  3999. "asset": {
  4000. "__id__": 0
  4001. },
  4002. "fileId": "dfhe/5REZODKZNRu0RxGdW",
  4003. "instance": null,
  4004. "targetOverrides": null,
  4005. "nestedPrefabInstanceRoots": null
  4006. },
  4007. {
  4008. "__type__": "cc.UITransform",
  4009. "_name": "",
  4010. "_objFlags": 0,
  4011. "__editorExtras__": {},
  4012. "node": {
  4013. "__id__": 98
  4014. },
  4015. "_enabled": true,
  4016. "__prefab": {
  4017. "__id__": 164
  4018. },
  4019. "_contentSize": {
  4020. "__type__": "cc.Size",
  4021. "width": 313,
  4022. "height": 146
  4023. },
  4024. "_anchorPoint": {
  4025. "__type__": "cc.Vec2",
  4026. "x": 0.5,
  4027. "y": 0.5
  4028. },
  4029. "_id": ""
  4030. },
  4031. {
  4032. "__type__": "cc.CompPrefabInfo",
  4033. "fileId": "a6dqKyDBJL74vAFhU2uhfG"
  4034. },
  4035. {
  4036. "__type__": "cc.PrefabInfo",
  4037. "root": {
  4038. "__id__": 1
  4039. },
  4040. "asset": {
  4041. "__id__": 0
  4042. },
  4043. "fileId": "38BCl2GD5NBLaILioAkn0k",
  4044. "instance": null,
  4045. "targetOverrides": null,
  4046. "nestedPrefabInstanceRoots": null
  4047. },
  4048. {
  4049. "__type__": "cc.Node",
  4050. "_name": "chest-reward-bg-001",
  4051. "_objFlags": 0,
  4052. "__editorExtras__": {},
  4053. "_parent": {
  4054. "__id__": 97
  4055. },
  4056. "_children": [
  4057. {
  4058. "__id__": 167
  4059. },
  4060. {
  4061. "__id__": 175
  4062. },
  4063. {
  4064. "__id__": 195
  4065. },
  4066. {
  4067. "__id__": 209
  4068. }
  4069. ],
  4070. "_active": true,
  4071. "_components": [
  4072. {
  4073. "__id__": 231
  4074. }
  4075. ],
  4076. "_prefab": {
  4077. "__id__": 233
  4078. },
  4079. "_lpos": {
  4080. "__type__": "cc.Vec3",
  4081. "x": 176.5,
  4082. "y": 0,
  4083. "z": 0
  4084. },
  4085. "_lrot": {
  4086. "__type__": "cc.Quat",
  4087. "x": 0,
  4088. "y": 0,
  4089. "z": 0,
  4090. "w": 1
  4091. },
  4092. "_lscale": {
  4093. "__type__": "cc.Vec3",
  4094. "x": 1,
  4095. "y": 1,
  4096. "z": 1
  4097. },
  4098. "_mobility": 0,
  4099. "_layer": 33554432,
  4100. "_euler": {
  4101. "__type__": "cc.Vec3",
  4102. "x": 0,
  4103. "y": 0,
  4104. "z": 0
  4105. },
  4106. "_id": ""
  4107. },
  4108. {
  4109. "__type__": "cc.Node",
  4110. "_name": "reward1",
  4111. "_objFlags": 0,
  4112. "__editorExtras__": {},
  4113. "_parent": {
  4114. "__id__": 166
  4115. },
  4116. "_children": [],
  4117. "_active": true,
  4118. "_components": [
  4119. {
  4120. "__id__": 168
  4121. },
  4122. {
  4123. "__id__": 170
  4124. },
  4125. {
  4126. "__id__": 172
  4127. }
  4128. ],
  4129. "_prefab": {
  4130. "__id__": 174
  4131. },
  4132. "_lpos": {
  4133. "__type__": "cc.Vec3",
  4134. "x": 0,
  4135. "y": 0,
  4136. "z": 0
  4137. },
  4138. "_lrot": {
  4139. "__type__": "cc.Quat",
  4140. "x": 0,
  4141. "y": 0,
  4142. "z": 0,
  4143. "w": 1
  4144. },
  4145. "_lscale": {
  4146. "__type__": "cc.Vec3",
  4147. "x": 1,
  4148. "y": 1,
  4149. "z": 1
  4150. },
  4151. "_mobility": 0,
  4152. "_layer": 33554432,
  4153. "_euler": {
  4154. "__type__": "cc.Vec3",
  4155. "x": 0,
  4156. "y": 0,
  4157. "z": 0
  4158. },
  4159. "_id": ""
  4160. },
  4161. {
  4162. "__type__": "cc.UITransform",
  4163. "_name": "",
  4164. "_objFlags": 0,
  4165. "__editorExtras__": {},
  4166. "node": {
  4167. "__id__": 167
  4168. },
  4169. "_enabled": true,
  4170. "__prefab": {
  4171. "__id__": 169
  4172. },
  4173. "_contentSize": {
  4174. "__type__": "cc.Size",
  4175. "width": 313,
  4176. "height": 146
  4177. },
  4178. "_anchorPoint": {
  4179. "__type__": "cc.Vec2",
  4180. "x": 0.5,
  4181. "y": 0.5
  4182. },
  4183. "_id": ""
  4184. },
  4185. {
  4186. "__type__": "cc.CompPrefabInfo",
  4187. "fileId": "70bvFemXZOAp6PoF0mEMMB"
  4188. },
  4189. {
  4190. "__type__": "cc.Sprite",
  4191. "_name": "",
  4192. "_objFlags": 0,
  4193. "__editorExtras__": {},
  4194. "node": {
  4195. "__id__": 167
  4196. },
  4197. "_enabled": true,
  4198. "__prefab": {
  4199. "__id__": 171
  4200. },
  4201. "_customMaterial": null,
  4202. "_srcBlendFactor": 2,
  4203. "_dstBlendFactor": 4,
  4204. "_color": {
  4205. "__type__": "cc.Color",
  4206. "r": 255,
  4207. "g": 255,
  4208. "b": 255,
  4209. "a": 255
  4210. },
  4211. "_spriteFrame": {
  4212. "__uuid__": "1ffb99fe-278d-4d3b-97aa-9c0330c7d596@f9941",
  4213. "__expectedType__": "cc.SpriteFrame"
  4214. },
  4215. "_type": 0,
  4216. "_fillType": 0,
  4217. "_sizeMode": 1,
  4218. "_fillCenter": {
  4219. "__type__": "cc.Vec2",
  4220. "x": 0,
  4221. "y": 0
  4222. },
  4223. "_fillStart": 0,
  4224. "_fillRange": 0,
  4225. "_isTrimmedMode": true,
  4226. "_useGrayscale": false,
  4227. "_atlas": null,
  4228. "_id": ""
  4229. },
  4230. {
  4231. "__type__": "cc.CompPrefabInfo",
  4232. "fileId": "ddLj+RTepM+7nGP6wvV6Yd"
  4233. },
  4234. {
  4235. "__type__": "cc.Button",
  4236. "_name": "",
  4237. "_objFlags": 0,
  4238. "__editorExtras__": {},
  4239. "node": {
  4240. "__id__": 167
  4241. },
  4242. "_enabled": true,
  4243. "__prefab": {
  4244. "__id__": 173
  4245. },
  4246. "clickEvents": [],
  4247. "_interactable": true,
  4248. "_transition": 3,
  4249. "_normalColor": {
  4250. "__type__": "cc.Color",
  4251. "r": 255,
  4252. "g": 255,
  4253. "b": 255,
  4254. "a": 255
  4255. },
  4256. "_hoverColor": {
  4257. "__type__": "cc.Color",
  4258. "r": 211,
  4259. "g": 211,
  4260. "b": 211,
  4261. "a": 255
  4262. },
  4263. "_pressedColor": {
  4264. "__type__": "cc.Color",
  4265. "r": 255,
  4266. "g": 255,
  4267. "b": 255,
  4268. "a": 255
  4269. },
  4270. "_disabledColor": {
  4271. "__type__": "cc.Color",
  4272. "r": 124,
  4273. "g": 124,
  4274. "b": 124,
  4275. "a": 255
  4276. },
  4277. "_normalSprite": null,
  4278. "_hoverSprite": null,
  4279. "_pressedSprite": null,
  4280. "_disabledSprite": null,
  4281. "_duration": 0.1,
  4282. "_zoomScale": 1,
  4283. "_target": {
  4284. "__id__": 167
  4285. },
  4286. "_id": ""
  4287. },
  4288. {
  4289. "__type__": "cc.CompPrefabInfo",
  4290. "fileId": "9exWqTZYVCMJ45SwJ99WQe"
  4291. },
  4292. {
  4293. "__type__": "cc.PrefabInfo",
  4294. "root": {
  4295. "__id__": 1
  4296. },
  4297. "asset": {
  4298. "__id__": 0
  4299. },
  4300. "fileId": "853j2wlVhD2L+Ybff8wqoo",
  4301. "instance": null,
  4302. "targetOverrides": null,
  4303. "nestedPrefabInstanceRoots": null
  4304. },
  4305. {
  4306. "__type__": "cc.Node",
  4307. "_name": "rounded-black-info-001",
  4308. "_objFlags": 0,
  4309. "__editorExtras__": {},
  4310. "_parent": {
  4311. "__id__": 166
  4312. },
  4313. "_children": [
  4314. {
  4315. "__id__": 176
  4316. },
  4317. {
  4318. "__id__": 184
  4319. }
  4320. ],
  4321. "_active": true,
  4322. "_components": [
  4323. {
  4324. "__id__": 190
  4325. },
  4326. {
  4327. "__id__": 192
  4328. }
  4329. ],
  4330. "_prefab": {
  4331. "__id__": 194
  4332. },
  4333. "_lpos": {
  4334. "__type__": "cc.Vec3",
  4335. "x": 67.514,
  4336. "y": -33.086,
  4337. "z": 0
  4338. },
  4339. "_lrot": {
  4340. "__type__": "cc.Quat",
  4341. "x": 0,
  4342. "y": 0,
  4343. "z": 0,
  4344. "w": 1
  4345. },
  4346. "_lscale": {
  4347. "__type__": "cc.Vec3",
  4348. "x": 1,
  4349. "y": 1,
  4350. "z": 1
  4351. },
  4352. "_mobility": 0,
  4353. "_layer": 33554432,
  4354. "_euler": {
  4355. "__type__": "cc.Vec3",
  4356. "x": 0,
  4357. "y": 0,
  4358. "z": 0
  4359. },
  4360. "_id": ""
  4361. },
  4362. {
  4363. "__type__": "cc.Node",
  4364. "_name": "probar_star",
  4365. "_objFlags": 0,
  4366. "__editorExtras__": {},
  4367. "_parent": {
  4368. "__id__": 175
  4369. },
  4370. "_children": [],
  4371. "_active": true,
  4372. "_components": [
  4373. {
  4374. "__id__": 177
  4375. },
  4376. {
  4377. "__id__": 179
  4378. },
  4379. {
  4380. "__id__": 181
  4381. }
  4382. ],
  4383. "_prefab": {
  4384. "__id__": 183
  4385. },
  4386. "_lpos": {
  4387. "__type__": "cc.Vec3",
  4388. "x": -63.50300000000004,
  4389. "y": 0.25499999999988177,
  4390. "z": 0
  4391. },
  4392. "_lrot": {
  4393. "__type__": "cc.Quat",
  4394. "x": 0,
  4395. "y": 0,
  4396. "z": 0,
  4397. "w": 1
  4398. },
  4399. "_lscale": {
  4400. "__type__": "cc.Vec3",
  4401. "x": 0.4,
  4402. "y": 0.4,
  4403. "z": 1
  4404. },
  4405. "_mobility": 0,
  4406. "_layer": 33554432,
  4407. "_euler": {
  4408. "__type__": "cc.Vec3",
  4409. "x": 0,
  4410. "y": 0,
  4411. "z": 0
  4412. },
  4413. "_id": ""
  4414. },
  4415. {
  4416. "__type__": "cc.UITransform",
  4417. "_name": "",
  4418. "_objFlags": 0,
  4419. "__editorExtras__": {},
  4420. "node": {
  4421. "__id__": 176
  4422. },
  4423. "_enabled": true,
  4424. "__prefab": {
  4425. "__id__": 178
  4426. },
  4427. "_contentSize": {
  4428. "__type__": "cc.Size",
  4429. "width": 315,
  4430. "height": 70
  4431. },
  4432. "_anchorPoint": {
  4433. "__type__": "cc.Vec2",
  4434. "x": 0,
  4435. "y": 0.5
  4436. },
  4437. "_id": ""
  4438. },
  4439. {
  4440. "__type__": "cc.CompPrefabInfo",
  4441. "fileId": "8bWUbNH0RIPoLfUKME5NEf"
  4442. },
  4443. {
  4444. "__type__": "cc.Sprite",
  4445. "_name": "",
  4446. "_objFlags": 0,
  4447. "__editorExtras__": {},
  4448. "node": {
  4449. "__id__": 176
  4450. },
  4451. "_enabled": true,
  4452. "__prefab": {
  4453. "__id__": 180
  4454. },
  4455. "_customMaterial": null,
  4456. "_srcBlendFactor": 2,
  4457. "_dstBlendFactor": 4,
  4458. "_color": {
  4459. "__type__": "cc.Color",
  4460. "r": 115,
  4461. "g": 60,
  4462. "b": 5,
  4463. "a": 255
  4464. },
  4465. "_spriteFrame": {
  4466. "__uuid__": "7981d4b0-dd28-4d1c-8871-eb2f651d01c8@f9941",
  4467. "__expectedType__": "cc.SpriteFrame"
  4468. },
  4469. "_type": 1,
  4470. "_fillType": 0,
  4471. "_sizeMode": 0,
  4472. "_fillCenter": {
  4473. "__type__": "cc.Vec2",
  4474. "x": 0,
  4475. "y": 0
  4476. },
  4477. "_fillStart": 0,
  4478. "_fillRange": 0,
  4479. "_isTrimmedMode": false,
  4480. "_useGrayscale": false,
  4481. "_atlas": null,
  4482. "_id": ""
  4483. },
  4484. {
  4485. "__type__": "cc.CompPrefabInfo",
  4486. "fileId": "c2RgCDCCRNZrmHwNjG6dQP"
  4487. },
  4488. {
  4489. "__type__": "cc.ProgressBar",
  4490. "_name": "",
  4491. "_objFlags": 0,
  4492. "__editorExtras__": {},
  4493. "node": {
  4494. "__id__": 176
  4495. },
  4496. "_enabled": true,
  4497. "__prefab": {
  4498. "__id__": 182
  4499. },
  4500. "_barSprite": {
  4501. "__id__": 179
  4502. },
  4503. "_mode": 0,
  4504. "_totalLength": 310,
  4505. "_progress": 1,
  4506. "_reverse": false,
  4507. "_id": ""
  4508. },
  4509. {
  4510. "__type__": "cc.CompPrefabInfo",
  4511. "fileId": "5c7R/HzBRN+Y6XT1LNguVZ"
  4512. },
  4513. {
  4514. "__type__": "cc.PrefabInfo",
  4515. "root": {
  4516. "__id__": 1
  4517. },
  4518. "asset": {
  4519. "__id__": 0
  4520. },
  4521. "fileId": "00ibgR2pJLhreQKJsMFuN3",
  4522. "instance": null,
  4523. "targetOverrides": null,
  4524. "nestedPrefabInstanceRoots": null
  4525. },
  4526. {
  4527. "__type__": "cc.Node",
  4528. "_name": "lbl_pro_star",
  4529. "_objFlags": 0,
  4530. "__editorExtras__": {},
  4531. "_parent": {
  4532. "__id__": 175
  4533. },
  4534. "_children": [],
  4535. "_active": true,
  4536. "_components": [
  4537. {
  4538. "__id__": 185
  4539. },
  4540. {
  4541. "__id__": 187
  4542. }
  4543. ],
  4544. "_prefab": {
  4545. "__id__": 189
  4546. },
  4547. "_lpos": {
  4548. "__type__": "cc.Vec3",
  4549. "x": 0,
  4550. "y": 0,
  4551. "z": 0
  4552. },
  4553. "_lrot": {
  4554. "__type__": "cc.Quat",
  4555. "x": 0,
  4556. "y": 0,
  4557. "z": 0,
  4558. "w": 1
  4559. },
  4560. "_lscale": {
  4561. "__type__": "cc.Vec3",
  4562. "x": 1,
  4563. "y": 1,
  4564. "z": 1
  4565. },
  4566. "_mobility": 0,
  4567. "_layer": 33554432,
  4568. "_euler": {
  4569. "__type__": "cc.Vec3",
  4570. "x": 0,
  4571. "y": 0,
  4572. "z": 0
  4573. },
  4574. "_id": ""
  4575. },
  4576. {
  4577. "__type__": "cc.UITransform",
  4578. "_name": "",
  4579. "_objFlags": 0,
  4580. "__editorExtras__": {},
  4581. "node": {
  4582. "__id__": 184
  4583. },
  4584. "_enabled": true,
  4585. "__prefab": {
  4586. "__id__": 186
  4587. },
  4588. "_contentSize": {
  4589. "__type__": "cc.Size",
  4590. "width": 52.0751953125,
  4591. "height": 37.8
  4592. },
  4593. "_anchorPoint": {
  4594. "__type__": "cc.Vec2",
  4595. "x": 0.5,
  4596. "y": 0.5
  4597. },
  4598. "_id": ""
  4599. },
  4600. {
  4601. "__type__": "cc.CompPrefabInfo",
  4602. "fileId": "c68UOAlNhN171Umca6yVvF"
  4603. },
  4604. {
  4605. "__type__": "cc.Label",
  4606. "_name": "",
  4607. "_objFlags": 0,
  4608. "__editorExtras__": {},
  4609. "node": {
  4610. "__id__": 184
  4611. },
  4612. "_enabled": true,
  4613. "__prefab": {
  4614. "__id__": 188
  4615. },
  4616. "_customMaterial": null,
  4617. "_srcBlendFactor": 2,
  4618. "_dstBlendFactor": 4,
  4619. "_color": {
  4620. "__type__": "cc.Color",
  4621. "r": 255,
  4622. "g": 255,
  4623. "b": 199,
  4624. "a": 255
  4625. },
  4626. "_string": "0/10",
  4627. "_horizontalAlign": 1,
  4628. "_verticalAlign": 1,
  4629. "_actualFontSize": 25,
  4630. "_fontSize": 25,
  4631. "_fontFamily": "Arial",
  4632. "_lineHeight": 30,
  4633. "_overflow": 0,
  4634. "_enableWrapText": true,
  4635. "_font": {
  4636. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  4637. "__expectedType__": "cc.TTFFont"
  4638. },
  4639. "_isSystemFontUsed": false,
  4640. "_spacingX": 0,
  4641. "_isItalic": false,
  4642. "_isBold": true,
  4643. "_isUnderline": false,
  4644. "_underlineHeight": 2,
  4645. "_cacheMode": 0,
  4646. "_enableOutline": false,
  4647. "_outlineColor": {
  4648. "__type__": "cc.Color",
  4649. "r": 0,
  4650. "g": 0,
  4651. "b": 0,
  4652. "a": 255
  4653. },
  4654. "_outlineWidth": 2,
  4655. "_enableShadow": false,
  4656. "_shadowColor": {
  4657. "__type__": "cc.Color",
  4658. "r": 0,
  4659. "g": 0,
  4660. "b": 0,
  4661. "a": 255
  4662. },
  4663. "_shadowOffset": {
  4664. "__type__": "cc.Vec2",
  4665. "x": 2,
  4666. "y": 2
  4667. },
  4668. "_shadowBlur": 2,
  4669. "_id": ""
  4670. },
  4671. {
  4672. "__type__": "cc.CompPrefabInfo",
  4673. "fileId": "2frm37uaJHQr0AEEaYyM82"
  4674. },
  4675. {
  4676. "__type__": "cc.PrefabInfo",
  4677. "root": {
  4678. "__id__": 1
  4679. },
  4680. "asset": {
  4681. "__id__": 0
  4682. },
  4683. "fileId": "9cC+C4DWVB+IdRkTox6UZF",
  4684. "instance": null,
  4685. "targetOverrides": null,
  4686. "nestedPrefabInstanceRoots": null
  4687. },
  4688. {
  4689. "__type__": "cc.UITransform",
  4690. "_name": "",
  4691. "_objFlags": 0,
  4692. "__editorExtras__": {},
  4693. "node": {
  4694. "__id__": 175
  4695. },
  4696. "_enabled": true,
  4697. "__prefab": {
  4698. "__id__": 191
  4699. },
  4700. "_contentSize": {
  4701. "__type__": "cc.Size",
  4702. "width": 142,
  4703. "height": 34
  4704. },
  4705. "_anchorPoint": {
  4706. "__type__": "cc.Vec2",
  4707. "x": 0.5,
  4708. "y": 0.5
  4709. },
  4710. "_id": ""
  4711. },
  4712. {
  4713. "__type__": "cc.CompPrefabInfo",
  4714. "fileId": "75sa1slJdI357ciQC0Ml1k"
  4715. },
  4716. {
  4717. "__type__": "cc.Sprite",
  4718. "_name": "",
  4719. "_objFlags": 0,
  4720. "__editorExtras__": {},
  4721. "node": {
  4722. "__id__": 175
  4723. },
  4724. "_enabled": true,
  4725. "__prefab": {
  4726. "__id__": 193
  4727. },
  4728. "_customMaterial": null,
  4729. "_srcBlendFactor": 2,
  4730. "_dstBlendFactor": 4,
  4731. "_color": {
  4732. "__type__": "cc.Color",
  4733. "r": 255,
  4734. "g": 255,
  4735. "b": 255,
  4736. "a": 255
  4737. },
  4738. "_spriteFrame": {
  4739. "__uuid__": "1493155a-daf9-4dd0-bd13-1c442a8111b1@f9941",
  4740. "__expectedType__": "cc.SpriteFrame"
  4741. },
  4742. "_type": 0,
  4743. "_fillType": 0,
  4744. "_sizeMode": 1,
  4745. "_fillCenter": {
  4746. "__type__": "cc.Vec2",
  4747. "x": 0,
  4748. "y": 0
  4749. },
  4750. "_fillStart": 0,
  4751. "_fillRange": 0,
  4752. "_isTrimmedMode": true,
  4753. "_useGrayscale": false,
  4754. "_atlas": null,
  4755. "_id": ""
  4756. },
  4757. {
  4758. "__type__": "cc.CompPrefabInfo",
  4759. "fileId": "0f5BURi1JElrfdUhRg/BGi"
  4760. },
  4761. {
  4762. "__type__": "cc.PrefabInfo",
  4763. "root": {
  4764. "__id__": 1
  4765. },
  4766. "asset": {
  4767. "__id__": 0
  4768. },
  4769. "fileId": "1eEKQquptOSaZ75pO/VijK",
  4770. "instance": null,
  4771. "targetOverrides": null,
  4772. "nestedPrefabInstanceRoots": null
  4773. },
  4774. {
  4775. "__type__": "cc.Node",
  4776. "_name": "Label-002",
  4777. "_objFlags": 0,
  4778. "__editorExtras__": {},
  4779. "_parent": {
  4780. "__id__": 166
  4781. },
  4782. "_children": [
  4783. {
  4784. "__id__": 196
  4785. }
  4786. ],
  4787. "_active": true,
  4788. "_components": [
  4789. {
  4790. "__id__": 202
  4791. },
  4792. {
  4793. "__id__": 204
  4794. },
  4795. {
  4796. "__id__": 206
  4797. }
  4798. ],
  4799. "_prefab": {
  4800. "__id__": 208
  4801. },
  4802. "_lpos": {
  4803. "__type__": "cc.Vec3",
  4804. "x": 70.758,
  4805. "y": 25.222,
  4806. "z": 0
  4807. },
  4808. "_lrot": {
  4809. "__type__": "cc.Quat",
  4810. "x": 0,
  4811. "y": 0,
  4812. "z": 0,
  4813. "w": 1
  4814. },
  4815. "_lscale": {
  4816. "__type__": "cc.Vec3",
  4817. "x": 1,
  4818. "y": 1,
  4819. "z": 1
  4820. },
  4821. "_mobility": 0,
  4822. "_layer": 33554432,
  4823. "_euler": {
  4824. "__type__": "cc.Vec3",
  4825. "x": 0,
  4826. "y": 0,
  4827. "z": 0
  4828. },
  4829. "_id": ""
  4830. },
  4831. {
  4832. "__type__": "cc.Node",
  4833. "_name": "chest-level",
  4834. "_objFlags": 0,
  4835. "__editorExtras__": {},
  4836. "_parent": {
  4837. "__id__": 195
  4838. },
  4839. "_children": [],
  4840. "_active": true,
  4841. "_components": [
  4842. {
  4843. "__id__": 197
  4844. },
  4845. {
  4846. "__id__": 199
  4847. }
  4848. ],
  4849. "_prefab": {
  4850. "__id__": 201
  4851. },
  4852. "_lpos": {
  4853. "__type__": "cc.Vec3",
  4854. "x": -142.07400000000007,
  4855. "y": -25.22199999999998,
  4856. "z": 0
  4857. },
  4858. "_lrot": {
  4859. "__type__": "cc.Quat",
  4860. "x": 0,
  4861. "y": 0,
  4862. "z": 0,
  4863. "w": 1
  4864. },
  4865. "_lscale": {
  4866. "__type__": "cc.Vec3",
  4867. "x": 1,
  4868. "y": 1,
  4869. "z": 0.8
  4870. },
  4871. "_mobility": 0,
  4872. "_layer": 33554432,
  4873. "_euler": {
  4874. "__type__": "cc.Vec3",
  4875. "x": 0,
  4876. "y": 0,
  4877. "z": 0
  4878. },
  4879. "_id": ""
  4880. },
  4881. {
  4882. "__type__": "cc.UITransform",
  4883. "_name": "",
  4884. "_objFlags": 0,
  4885. "__editorExtras__": {},
  4886. "node": {
  4887. "__id__": 196
  4888. },
  4889. "_enabled": true,
  4890. "__prefab": {
  4891. "__id__": 198
  4892. },
  4893. "_contentSize": {
  4894. "__type__": "cc.Size",
  4895. "width": 137,
  4896. "height": 114
  4897. },
  4898. "_anchorPoint": {
  4899. "__type__": "cc.Vec2",
  4900. "x": 0.5,
  4901. "y": 0.5
  4902. },
  4903. "_id": ""
  4904. },
  4905. {
  4906. "__type__": "cc.CompPrefabInfo",
  4907. "fileId": "5e48+Td49GkbgRVxMm5NPx"
  4908. },
  4909. {
  4910. "__type__": "cc.Sprite",
  4911. "_name": "",
  4912. "_objFlags": 0,
  4913. "__editorExtras__": {},
  4914. "node": {
  4915. "__id__": 196
  4916. },
  4917. "_enabled": true,
  4918. "__prefab": {
  4919. "__id__": 200
  4920. },
  4921. "_customMaterial": null,
  4922. "_srcBlendFactor": 2,
  4923. "_dstBlendFactor": 4,
  4924. "_color": {
  4925. "__type__": "cc.Color",
  4926. "r": 255,
  4927. "g": 255,
  4928. "b": 255,
  4929. "a": 255
  4930. },
  4931. "_spriteFrame": {
  4932. "__uuid__": "aece5342-6163-45d6-9e38-0fb340c2915e@f9941",
  4933. "__expectedType__": "cc.SpriteFrame"
  4934. },
  4935. "_type": 0,
  4936. "_fillType": 0,
  4937. "_sizeMode": 1,
  4938. "_fillCenter": {
  4939. "__type__": "cc.Vec2",
  4940. "x": 0,
  4941. "y": 0
  4942. },
  4943. "_fillStart": 0,
  4944. "_fillRange": 0,
  4945. "_isTrimmedMode": true,
  4946. "_useGrayscale": false,
  4947. "_atlas": null,
  4948. "_id": ""
  4949. },
  4950. {
  4951. "__type__": "cc.CompPrefabInfo",
  4952. "fileId": "3ajxkc4uFMsoqrwpRzo7BQ"
  4953. },
  4954. {
  4955. "__type__": "cc.PrefabInfo",
  4956. "root": {
  4957. "__id__": 1
  4958. },
  4959. "asset": {
  4960. "__id__": 0
  4961. },
  4962. "fileId": "08JGE1ksJIG5m7iEycW0fg",
  4963. "instance": null,
  4964. "targetOverrides": null,
  4965. "nestedPrefabInstanceRoots": null
  4966. },
  4967. {
  4968. "__type__": "cc.UITransform",
  4969. "_name": "",
  4970. "_objFlags": 0,
  4971. "__editorExtras__": {},
  4972. "node": {
  4973. "__id__": 195
  4974. },
  4975. "_enabled": true,
  4976. "__prefab": {
  4977. "__id__": 203
  4978. },
  4979. "_contentSize": {
  4980. "__type__": "cc.Size",
  4981. "width": 132,
  4982. "height": 41.58
  4983. },
  4984. "_anchorPoint": {
  4985. "__type__": "cc.Vec2",
  4986. "x": 0.5,
  4987. "y": 0.5
  4988. },
  4989. "_id": ""
  4990. },
  4991. {
  4992. "__type__": "cc.CompPrefabInfo",
  4993. "fileId": "c68UOAlNhN171Umca6yVvF"
  4994. },
  4995. {
  4996. "__type__": "cc.Label",
  4997. "_name": "",
  4998. "_objFlags": 0,
  4999. "__editorExtras__": {},
  5000. "node": {
  5001. "__id__": 195
  5002. },
  5003. "_enabled": true,
  5004. "__prefab": {
  5005. "__id__": 205
  5006. },
  5007. "_customMaterial": null,
  5008. "_srcBlendFactor": 2,
  5009. "_dstBlendFactor": 4,
  5010. "_color": {
  5011. "__type__": "cc.Color",
  5012. "r": 253,
  5013. "g": 252,
  5014. "b": 232,
  5015. "a": 255
  5016. },
  5017. "_string": "星星奖励",
  5018. "_horizontalAlign": 0,
  5019. "_verticalAlign": 1,
  5020. "_actualFontSize": 33,
  5021. "_fontSize": 33,
  5022. "_fontFamily": "Arial",
  5023. "_lineHeight": 33,
  5024. "_overflow": 0,
  5025. "_enableWrapText": true,
  5026. "_font": {
  5027. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  5028. "__expectedType__": "cc.TTFFont"
  5029. },
  5030. "_isSystemFontUsed": false,
  5031. "_spacingX": 0,
  5032. "_isItalic": false,
  5033. "_isBold": false,
  5034. "_isUnderline": false,
  5035. "_underlineHeight": 2,
  5036. "_cacheMode": 0,
  5037. "_enableOutline": false,
  5038. "_outlineColor": {
  5039. "__type__": "cc.Color",
  5040. "r": 0,
  5041. "g": 0,
  5042. "b": 0,
  5043. "a": 255
  5044. },
  5045. "_outlineWidth": 2,
  5046. "_enableShadow": false,
  5047. "_shadowColor": {
  5048. "__type__": "cc.Color",
  5049. "r": 0,
  5050. "g": 0,
  5051. "b": 0,
  5052. "a": 255
  5053. },
  5054. "_shadowOffset": {
  5055. "__type__": "cc.Vec2",
  5056. "x": 2,
  5057. "y": 2
  5058. },
  5059. "_shadowBlur": 2,
  5060. "_id": ""
  5061. },
  5062. {
  5063. "__type__": "cc.CompPrefabInfo",
  5064. "fileId": "2frm37uaJHQr0AEEaYyM82"
  5065. },
  5066. {
  5067. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  5068. "_name": "",
  5069. "_objFlags": 0,
  5070. "__editorExtras__": {},
  5071. "node": {
  5072. "__id__": 195
  5073. },
  5074. "_enabled": true,
  5075. "__prefab": {
  5076. "__id__": 207
  5077. },
  5078. "_dataID": "main.星星奖励",
  5079. "_id": ""
  5080. },
  5081. {
  5082. "__type__": "cc.CompPrefabInfo",
  5083. "fileId": "05wIvqF9hCwptdKWcmYsvQ"
  5084. },
  5085. {
  5086. "__type__": "cc.PrefabInfo",
  5087. "root": {
  5088. "__id__": 1
  5089. },
  5090. "asset": {
  5091. "__id__": 0
  5092. },
  5093. "fileId": "c6jKQ2ubJBh4gA9/12qTBc",
  5094. "instance": null,
  5095. "targetOverrides": null,
  5096. "nestedPrefabInstanceRoots": null
  5097. },
  5098. {
  5099. "__type__": "cc.Node",
  5100. "_name": "full1",
  5101. "_objFlags": 0,
  5102. "__editorExtras__": {},
  5103. "_parent": {
  5104. "__id__": 166
  5105. },
  5106. "_children": [
  5107. {
  5108. "__id__": 210
  5109. },
  5110. {
  5111. "__id__": 216
  5112. }
  5113. ],
  5114. "_active": false,
  5115. "_components": [
  5116. {
  5117. "__id__": 224
  5118. },
  5119. {
  5120. "__id__": 226
  5121. },
  5122. {
  5123. "__id__": 228
  5124. }
  5125. ],
  5126. "_prefab": {
  5127. "__id__": 230
  5128. },
  5129. "_lpos": {
  5130. "__type__": "cc.Vec3",
  5131. "x": 0,
  5132. "y": 0,
  5133. "z": 0
  5134. },
  5135. "_lrot": {
  5136. "__type__": "cc.Quat",
  5137. "x": 0,
  5138. "y": 0,
  5139. "z": 0,
  5140. "w": 1
  5141. },
  5142. "_lscale": {
  5143. "__type__": "cc.Vec3",
  5144. "x": 1,
  5145. "y": 1,
  5146. "z": 1
  5147. },
  5148. "_mobility": 0,
  5149. "_layer": 33554432,
  5150. "_euler": {
  5151. "__type__": "cc.Vec3",
  5152. "x": 0,
  5153. "y": 0,
  5154. "z": 0
  5155. },
  5156. "_id": ""
  5157. },
  5158. {
  5159. "__type__": "cc.Node",
  5160. "_name": "chestLevel1",
  5161. "_objFlags": 0,
  5162. "__editorExtras__": {},
  5163. "_parent": {
  5164. "__id__": 209
  5165. },
  5166. "_children": [],
  5167. "_active": true,
  5168. "_components": [
  5169. {
  5170. "__id__": 211
  5171. },
  5172. {
  5173. "__id__": 213
  5174. }
  5175. ],
  5176. "_prefab": {
  5177. "__id__": 215
  5178. },
  5179. "_lpos": {
  5180. "__type__": "cc.Vec3",
  5181. "x": -71.31600000000003,
  5182. "y": 0,
  5183. "z": 0
  5184. },
  5185. "_lrot": {
  5186. "__type__": "cc.Quat",
  5187. "x": 0,
  5188. "y": 0,
  5189. "z": 0,
  5190. "w": 1
  5191. },
  5192. "_lscale": {
  5193. "__type__": "cc.Vec3",
  5194. "x": 1,
  5195. "y": 1,
  5196. "z": 0.8
  5197. },
  5198. "_mobility": 0,
  5199. "_layer": 33554432,
  5200. "_euler": {
  5201. "__type__": "cc.Vec3",
  5202. "x": 0,
  5203. "y": 0,
  5204. "z": 0
  5205. },
  5206. "_id": ""
  5207. },
  5208. {
  5209. "__type__": "cc.UITransform",
  5210. "_name": "",
  5211. "_objFlags": 0,
  5212. "__editorExtras__": {},
  5213. "node": {
  5214. "__id__": 210
  5215. },
  5216. "_enabled": true,
  5217. "__prefab": {
  5218. "__id__": 212
  5219. },
  5220. "_contentSize": {
  5221. "__type__": "cc.Size",
  5222. "width": 137,
  5223. "height": 114
  5224. },
  5225. "_anchorPoint": {
  5226. "__type__": "cc.Vec2",
  5227. "x": 0.5,
  5228. "y": 0.5
  5229. },
  5230. "_id": ""
  5231. },
  5232. {
  5233. "__type__": "cc.CompPrefabInfo",
  5234. "fileId": "36L6I4qXhGjatBOTDjfl5y"
  5235. },
  5236. {
  5237. "__type__": "cc.Sprite",
  5238. "_name": "",
  5239. "_objFlags": 0,
  5240. "__editorExtras__": {},
  5241. "node": {
  5242. "__id__": 210
  5243. },
  5244. "_enabled": true,
  5245. "__prefab": {
  5246. "__id__": 214
  5247. },
  5248. "_customMaterial": null,
  5249. "_srcBlendFactor": 2,
  5250. "_dstBlendFactor": 4,
  5251. "_color": {
  5252. "__type__": "cc.Color",
  5253. "r": 255,
  5254. "g": 255,
  5255. "b": 255,
  5256. "a": 255
  5257. },
  5258. "_spriteFrame": {
  5259. "__uuid__": "aece5342-6163-45d6-9e38-0fb340c2915e@f9941",
  5260. "__expectedType__": "cc.SpriteFrame"
  5261. },
  5262. "_type": 0,
  5263. "_fillType": 0,
  5264. "_sizeMode": 1,
  5265. "_fillCenter": {
  5266. "__type__": "cc.Vec2",
  5267. "x": 0,
  5268. "y": 0
  5269. },
  5270. "_fillStart": 0,
  5271. "_fillRange": 0,
  5272. "_isTrimmedMode": true,
  5273. "_useGrayscale": false,
  5274. "_atlas": null,
  5275. "_id": ""
  5276. },
  5277. {
  5278. "__type__": "cc.CompPrefabInfo",
  5279. "fileId": "0a+ivx5fdPD6vkbzqT4RN6"
  5280. },
  5281. {
  5282. "__type__": "cc.PrefabInfo",
  5283. "root": {
  5284. "__id__": 1
  5285. },
  5286. "asset": {
  5287. "__id__": 0
  5288. },
  5289. "fileId": "77eJhSaOtFVKb401s5l/Jl",
  5290. "instance": null,
  5291. "targetOverrides": null,
  5292. "nestedPrefabInstanceRoots": null
  5293. },
  5294. {
  5295. "__type__": "cc.Node",
  5296. "_name": "Label",
  5297. "_objFlags": 0,
  5298. "__editorExtras__": {},
  5299. "_parent": {
  5300. "__id__": 209
  5301. },
  5302. "_children": [],
  5303. "_active": true,
  5304. "_components": [
  5305. {
  5306. "__id__": 217
  5307. },
  5308. {
  5309. "__id__": 219
  5310. },
  5311. {
  5312. "__id__": 221
  5313. }
  5314. ],
  5315. "_prefab": {
  5316. "__id__": 223
  5317. },
  5318. "_lpos": {
  5319. "__type__": "cc.Vec3",
  5320. "x": 61.64,
  5321. "y": 0,
  5322. "z": 0
  5323. },
  5324. "_lrot": {
  5325. "__type__": "cc.Quat",
  5326. "x": 0,
  5327. "y": 0,
  5328. "z": 0,
  5329. "w": 1
  5330. },
  5331. "_lscale": {
  5332. "__type__": "cc.Vec3",
  5333. "x": 1,
  5334. "y": 1,
  5335. "z": 1
  5336. },
  5337. "_mobility": 0,
  5338. "_layer": 33554432,
  5339. "_euler": {
  5340. "__type__": "cc.Vec3",
  5341. "x": 0,
  5342. "y": 0,
  5343. "z": 0
  5344. },
  5345. "_id": ""
  5346. },
  5347. {
  5348. "__type__": "cc.UITransform",
  5349. "_name": "",
  5350. "_objFlags": 0,
  5351. "__editorExtras__": {},
  5352. "node": {
  5353. "__id__": 216
  5354. },
  5355. "_enabled": true,
  5356. "__prefab": {
  5357. "__id__": 218
  5358. },
  5359. "_contentSize": {
  5360. "__type__": "cc.Size",
  5361. "width": 132,
  5362. "height": 41.58
  5363. },
  5364. "_anchorPoint": {
  5365. "__type__": "cc.Vec2",
  5366. "x": 0.5,
  5367. "y": 0.5
  5368. },
  5369. "_id": ""
  5370. },
  5371. {
  5372. "__type__": "cc.CompPrefabInfo",
  5373. "fileId": "c68UOAlNhN171Umca6yVvF"
  5374. },
  5375. {
  5376. "__type__": "cc.Label",
  5377. "_name": "",
  5378. "_objFlags": 0,
  5379. "__editorExtras__": {},
  5380. "node": {
  5381. "__id__": 216
  5382. },
  5383. "_enabled": true,
  5384. "__prefab": {
  5385. "__id__": 220
  5386. },
  5387. "_customMaterial": null,
  5388. "_srcBlendFactor": 2,
  5389. "_dstBlendFactor": 4,
  5390. "_color": {
  5391. "__type__": "cc.Color",
  5392. "r": 255,
  5393. "g": 255,
  5394. "b": 255,
  5395. "a": 255
  5396. },
  5397. "_string": "点击打开",
  5398. "_horizontalAlign": 1,
  5399. "_verticalAlign": 1,
  5400. "_actualFontSize": 33,
  5401. "_fontSize": 33,
  5402. "_fontFamily": "Arial",
  5403. "_lineHeight": 33,
  5404. "_overflow": 0,
  5405. "_enableWrapText": true,
  5406. "_font": {
  5407. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  5408. "__expectedType__": "cc.TTFFont"
  5409. },
  5410. "_isSystemFontUsed": false,
  5411. "_spacingX": 0,
  5412. "_isItalic": false,
  5413. "_isBold": false,
  5414. "_isUnderline": false,
  5415. "_underlineHeight": 2,
  5416. "_cacheMode": 0,
  5417. "_enableOutline": false,
  5418. "_outlineColor": {
  5419. "__type__": "cc.Color",
  5420. "r": 0,
  5421. "g": 0,
  5422. "b": 0,
  5423. "a": 255
  5424. },
  5425. "_outlineWidth": 2,
  5426. "_enableShadow": false,
  5427. "_shadowColor": {
  5428. "__type__": "cc.Color",
  5429. "r": 0,
  5430. "g": 0,
  5431. "b": 0,
  5432. "a": 255
  5433. },
  5434. "_shadowOffset": {
  5435. "__type__": "cc.Vec2",
  5436. "x": 2,
  5437. "y": 2
  5438. },
  5439. "_shadowBlur": 2,
  5440. "_id": ""
  5441. },
  5442. {
  5443. "__type__": "cc.CompPrefabInfo",
  5444. "fileId": "2frm37uaJHQr0AEEaYyM82"
  5445. },
  5446. {
  5447. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  5448. "_name": "",
  5449. "_objFlags": 0,
  5450. "__editorExtras__": {},
  5451. "node": {
  5452. "__id__": 216
  5453. },
  5454. "_enabled": true,
  5455. "__prefab": {
  5456. "__id__": 222
  5457. },
  5458. "_dataID": "main.点击打开",
  5459. "_id": ""
  5460. },
  5461. {
  5462. "__type__": "cc.CompPrefabInfo",
  5463. "fileId": "a3NPOjRCBAYJ95FkDhEZVo"
  5464. },
  5465. {
  5466. "__type__": "cc.PrefabInfo",
  5467. "root": {
  5468. "__id__": 1
  5469. },
  5470. "asset": {
  5471. "__id__": 0
  5472. },
  5473. "fileId": "10HCz4tDJH14aAyo5xHab0",
  5474. "instance": null,
  5475. "targetOverrides": null,
  5476. "nestedPrefabInstanceRoots": null
  5477. },
  5478. {
  5479. "__type__": "cc.UITransform",
  5480. "_name": "",
  5481. "_objFlags": 0,
  5482. "__editorExtras__": {},
  5483. "node": {
  5484. "__id__": 209
  5485. },
  5486. "_enabled": true,
  5487. "__prefab": {
  5488. "__id__": 225
  5489. },
  5490. "_contentSize": {
  5491. "__type__": "cc.Size",
  5492. "width": 313,
  5493. "height": 145
  5494. },
  5495. "_anchorPoint": {
  5496. "__type__": "cc.Vec2",
  5497. "x": 0.5,
  5498. "y": 0.5
  5499. },
  5500. "_id": ""
  5501. },
  5502. {
  5503. "__type__": "cc.CompPrefabInfo",
  5504. "fileId": "e18ldt0h5H9JroBqSsQCRn"
  5505. },
  5506. {
  5507. "__type__": "cc.Sprite",
  5508. "_name": "",
  5509. "_objFlags": 0,
  5510. "__editorExtras__": {},
  5511. "node": {
  5512. "__id__": 209
  5513. },
  5514. "_enabled": true,
  5515. "__prefab": {
  5516. "__id__": 227
  5517. },
  5518. "_customMaterial": null,
  5519. "_srcBlendFactor": 2,
  5520. "_dstBlendFactor": 4,
  5521. "_color": {
  5522. "__type__": "cc.Color",
  5523. "r": 255,
  5524. "g": 255,
  5525. "b": 255,
  5526. "a": 255
  5527. },
  5528. "_spriteFrame": {
  5529. "__uuid__": "894beabb-4043-4276-9f0a-331edef2fb4a@f9941",
  5530. "__expectedType__": "cc.SpriteFrame"
  5531. },
  5532. "_type": 0,
  5533. "_fillType": 0,
  5534. "_sizeMode": 1,
  5535. "_fillCenter": {
  5536. "__type__": "cc.Vec2",
  5537. "x": 0,
  5538. "y": 0
  5539. },
  5540. "_fillStart": 0,
  5541. "_fillRange": 0,
  5542. "_isTrimmedMode": true,
  5543. "_useGrayscale": false,
  5544. "_atlas": null,
  5545. "_id": ""
  5546. },
  5547. {
  5548. "__type__": "cc.CompPrefabInfo",
  5549. "fileId": "87mBQsOQ5ApaJwVN0g7wbv"
  5550. },
  5551. {
  5552. "__type__": "cc.Button",
  5553. "_name": "",
  5554. "_objFlags": 0,
  5555. "__editorExtras__": {},
  5556. "node": {
  5557. "__id__": 209
  5558. },
  5559. "_enabled": true,
  5560. "__prefab": {
  5561. "__id__": 229
  5562. },
  5563. "clickEvents": [],
  5564. "_interactable": true,
  5565. "_transition": 3,
  5566. "_normalColor": {
  5567. "__type__": "cc.Color",
  5568. "r": 255,
  5569. "g": 255,
  5570. "b": 255,
  5571. "a": 255
  5572. },
  5573. "_hoverColor": {
  5574. "__type__": "cc.Color",
  5575. "r": 211,
  5576. "g": 211,
  5577. "b": 211,
  5578. "a": 255
  5579. },
  5580. "_pressedColor": {
  5581. "__type__": "cc.Color",
  5582. "r": 255,
  5583. "g": 255,
  5584. "b": 255,
  5585. "a": 255
  5586. },
  5587. "_disabledColor": {
  5588. "__type__": "cc.Color",
  5589. "r": 124,
  5590. "g": 124,
  5591. "b": 124,
  5592. "a": 255
  5593. },
  5594. "_normalSprite": null,
  5595. "_hoverSprite": null,
  5596. "_pressedSprite": null,
  5597. "_disabledSprite": null,
  5598. "_duration": 0.1,
  5599. "_zoomScale": 1.02,
  5600. "_target": null,
  5601. "_id": ""
  5602. },
  5603. {
  5604. "__type__": "cc.CompPrefabInfo",
  5605. "fileId": "ffmATaVyRLBqki1Jx4CKz1"
  5606. },
  5607. {
  5608. "__type__": "cc.PrefabInfo",
  5609. "root": {
  5610. "__id__": 1
  5611. },
  5612. "asset": {
  5613. "__id__": 0
  5614. },
  5615. "fileId": "66OU+Nn6VCO40WMyNriUJe",
  5616. "instance": null,
  5617. "targetOverrides": null,
  5618. "nestedPrefabInstanceRoots": null
  5619. },
  5620. {
  5621. "__type__": "cc.UITransform",
  5622. "_name": "",
  5623. "_objFlags": 0,
  5624. "__editorExtras__": {},
  5625. "node": {
  5626. "__id__": 166
  5627. },
  5628. "_enabled": true,
  5629. "__prefab": {
  5630. "__id__": 232
  5631. },
  5632. "_contentSize": {
  5633. "__type__": "cc.Size",
  5634. "width": 313,
  5635. "height": 146
  5636. },
  5637. "_anchorPoint": {
  5638. "__type__": "cc.Vec2",
  5639. "x": 0.5,
  5640. "y": 0.5
  5641. },
  5642. "_id": ""
  5643. },
  5644. {
  5645. "__type__": "cc.CompPrefabInfo",
  5646. "fileId": "33urYSoAFJsIRQhHeYj8zH"
  5647. },
  5648. {
  5649. "__type__": "cc.PrefabInfo",
  5650. "root": {
  5651. "__id__": 1
  5652. },
  5653. "asset": {
  5654. "__id__": 0
  5655. },
  5656. "fileId": "b0XiSV+QpIJK0e7GtH0A6B",
  5657. "instance": null,
  5658. "targetOverrides": null,
  5659. "nestedPrefabInstanceRoots": null
  5660. },
  5661. {
  5662. "__type__": "cc.UITransform",
  5663. "_name": "",
  5664. "_objFlags": 0,
  5665. "__editorExtras__": {},
  5666. "node": {
  5667. "__id__": 97
  5668. },
  5669. "_enabled": true,
  5670. "__prefab": {
  5671. "__id__": 235
  5672. },
  5673. "_contentSize": {
  5674. "__type__": "cc.Size",
  5675. "width": 686,
  5676. "height": 150
  5677. },
  5678. "_anchorPoint": {
  5679. "__type__": "cc.Vec2",
  5680. "x": 0.5,
  5681. "y": 0.5
  5682. },
  5683. "_id": ""
  5684. },
  5685. {
  5686. "__type__": "cc.CompPrefabInfo",
  5687. "fileId": "23qsXZmitJFaWJyhWK0jQ7"
  5688. },
  5689. {
  5690. "__type__": "cc.Layout",
  5691. "_name": "",
  5692. "_objFlags": 0,
  5693. "__editorExtras__": {},
  5694. "node": {
  5695. "__id__": 97
  5696. },
  5697. "_enabled": true,
  5698. "__prefab": {
  5699. "__id__": 237
  5700. },
  5701. "_resizeMode": 1,
  5702. "_layoutType": 1,
  5703. "_cellSize": {
  5704. "__type__": "cc.Size",
  5705. "width": 40,
  5706. "height": 40
  5707. },
  5708. "_startAxis": 0,
  5709. "_paddingLeft": 10,
  5710. "_paddingRight": 10,
  5711. "_paddingTop": 0,
  5712. "_paddingBottom": 0,
  5713. "_spacingX": 40,
  5714. "_spacingY": 0,
  5715. "_verticalDirection": 1,
  5716. "_horizontalDirection": 0,
  5717. "_constraint": 0,
  5718. "_constraintNum": 2,
  5719. "_affectedByScale": true,
  5720. "_isAlign": true,
  5721. "_id": ""
  5722. },
  5723. {
  5724. "__type__": "cc.CompPrefabInfo",
  5725. "fileId": "beSpUZrx1GUb4JgDUtw3Cm"
  5726. },
  5727. {
  5728. "__type__": "cc.PrefabInfo",
  5729. "root": {
  5730. "__id__": 1
  5731. },
  5732. "asset": {
  5733. "__id__": 0
  5734. },
  5735. "fileId": "9cK2I29VlFHZ4MU0cgusF8",
  5736. "instance": null,
  5737. "targetOverrides": null,
  5738. "nestedPrefabInstanceRoots": null
  5739. },
  5740. {
  5741. "__type__": "cc.Node",
  5742. "_name": "node_currency",
  5743. "_objFlags": 0,
  5744. "__editorExtras__": {},
  5745. "_parent": {
  5746. "__id__": 10
  5747. },
  5748. "_children": [],
  5749. "_active": true,
  5750. "_components": [
  5751. {
  5752. "__id__": 240
  5753. }
  5754. ],
  5755. "_prefab": {
  5756. "__id__": 242
  5757. },
  5758. "_lpos": {
  5759. "__type__": "cc.Vec3",
  5760. "x": 0,
  5761. "y": 224.672,
  5762. "z": 0
  5763. },
  5764. "_lrot": {
  5765. "__type__": "cc.Quat",
  5766. "x": 0,
  5767. "y": 0,
  5768. "z": 0,
  5769. "w": 1
  5770. },
  5771. "_lscale": {
  5772. "__type__": "cc.Vec3",
  5773. "x": 1,
  5774. "y": 1,
  5775. "z": 1
  5776. },
  5777. "_mobility": 0,
  5778. "_layer": 1073741824,
  5779. "_euler": {
  5780. "__type__": "cc.Vec3",
  5781. "x": 0,
  5782. "y": 0,
  5783. "z": 0
  5784. },
  5785. "_id": ""
  5786. },
  5787. {
  5788. "__type__": "cc.UITransform",
  5789. "_name": "",
  5790. "_objFlags": 0,
  5791. "__editorExtras__": {},
  5792. "node": {
  5793. "__id__": 239
  5794. },
  5795. "_enabled": true,
  5796. "__prefab": {
  5797. "__id__": 241
  5798. },
  5799. "_contentSize": {
  5800. "__type__": "cc.Size",
  5801. "width": 100,
  5802. "height": 100
  5803. },
  5804. "_anchorPoint": {
  5805. "__type__": "cc.Vec2",
  5806. "x": 0.5,
  5807. "y": 0.5
  5808. },
  5809. "_id": ""
  5810. },
  5811. {
  5812. "__type__": "cc.CompPrefabInfo",
  5813. "fileId": "83ywqGtdFIVKg4HATk3+jt"
  5814. },
  5815. {
  5816. "__type__": "cc.PrefabInfo",
  5817. "root": {
  5818. "__id__": 1
  5819. },
  5820. "asset": {
  5821. "__id__": 0
  5822. },
  5823. "fileId": "23DSk3+LtHi5r/tphh0GDW",
  5824. "instance": null,
  5825. "targetOverrides": null,
  5826. "nestedPrefabInstanceRoots": null
  5827. },
  5828. {
  5829. "__type__": "cc.UITransform",
  5830. "_name": "",
  5831. "_objFlags": 0,
  5832. "__editorExtras__": {},
  5833. "node": {
  5834. "__id__": 10
  5835. },
  5836. "_enabled": true,
  5837. "__prefab": {
  5838. "__id__": 244
  5839. },
  5840. "_contentSize": {
  5841. "__type__": "cc.Size",
  5842. "width": 749.9999999999999,
  5843. "height": 180
  5844. },
  5845. "_anchorPoint": {
  5846. "__type__": "cc.Vec2",
  5847. "x": 0.5,
  5848. "y": 0
  5849. },
  5850. "_id": ""
  5851. },
  5852. {
  5853. "__type__": "cc.CompPrefabInfo",
  5854. "fileId": "48VuOyyK5H9Zfg0a5xILnQ"
  5855. },
  5856. {
  5857. "__type__": "cc.Sprite",
  5858. "_name": "",
  5859. "_objFlags": 0,
  5860. "__editorExtras__": {},
  5861. "node": {
  5862. "__id__": 10
  5863. },
  5864. "_enabled": false,
  5865. "__prefab": {
  5866. "__id__": 246
  5867. },
  5868. "_customMaterial": null,
  5869. "_srcBlendFactor": 2,
  5870. "_dstBlendFactor": 4,
  5871. "_color": {
  5872. "__type__": "cc.Color",
  5873. "r": 255,
  5874. "g": 255,
  5875. "b": 255,
  5876. "a": 255
  5877. },
  5878. "_spriteFrame": {
  5879. "__uuid__": "dfe8b3c5-4d3a-4b28-ac6d-f3076ae46763@f9941",
  5880. "__expectedType__": "cc.SpriteFrame"
  5881. },
  5882. "_type": 1,
  5883. "_fillType": 0,
  5884. "_sizeMode": 0,
  5885. "_fillCenter": {
  5886. "__type__": "cc.Vec2",
  5887. "x": 0,
  5888. "y": 0
  5889. },
  5890. "_fillStart": 0,
  5891. "_fillRange": 0,
  5892. "_isTrimmedMode": false,
  5893. "_useGrayscale": false,
  5894. "_atlas": null,
  5895. "_id": ""
  5896. },
  5897. {
  5898. "__type__": "cc.CompPrefabInfo",
  5899. "fileId": "3ea6ifNTVJ/Io1cDqzlU2Q"
  5900. },
  5901. {
  5902. "__type__": "cc.Widget",
  5903. "_name": "",
  5904. "_objFlags": 0,
  5905. "__editorExtras__": {},
  5906. "node": {
  5907. "__id__": 10
  5908. },
  5909. "_enabled": true,
  5910. "__prefab": {
  5911. "__id__": 248
  5912. },
  5913. "_alignFlags": 41,
  5914. "_target": null,
  5915. "_left": 0,
  5916. "_right": 0,
  5917. "_top": 0,
  5918. "_bottom": 0,
  5919. "_horizontalCenter": 0,
  5920. "_verticalCenter": 0,
  5921. "_isAbsLeft": true,
  5922. "_isAbsRight": true,
  5923. "_isAbsTop": true,
  5924. "_isAbsBottom": true,
  5925. "_isAbsHorizontalCenter": true,
  5926. "_isAbsVerticalCenter": true,
  5927. "_originalWidth": 211,
  5928. "_originalHeight": 0,
  5929. "_alignMode": 2,
  5930. "_lockFlags": 0,
  5931. "_id": ""
  5932. },
  5933. {
  5934. "__type__": "cc.CompPrefabInfo",
  5935. "fileId": "22OIJvuXJMjaOz1dFxsRfL"
  5936. },
  5937. {
  5938. "__type__": "cc.PrefabInfo",
  5939. "root": {
  5940. "__id__": 1
  5941. },
  5942. "asset": {
  5943. "__id__": 0
  5944. },
  5945. "fileId": "a9XbdrxIZDUKQPevmlHyM1",
  5946. "instance": null,
  5947. "targetOverrides": null,
  5948. "nestedPrefabInstanceRoots": null
  5949. },
  5950. {
  5951. "__type__": "cc.Node",
  5952. "_name": "level_lable",
  5953. "_objFlags": 0,
  5954. "__editorExtras__": {},
  5955. "_parent": {
  5956. "__id__": 1
  5957. },
  5958. "_children": [],
  5959. "_active": true,
  5960. "_components": [
  5961. {
  5962. "__id__": 251
  5963. },
  5964. {
  5965. "__id__": 253
  5966. },
  5967. {
  5968. "__id__": 255
  5969. },
  5970. {
  5971. "__id__": 257
  5972. }
  5973. ],
  5974. "_prefab": {
  5975. "__id__": 259
  5976. },
  5977. "_lpos": {
  5978. "__type__": "cc.Vec3",
  5979. "x": 0,
  5980. "y": -202.16000000000008,
  5981. "z": 0
  5982. },
  5983. "_lrot": {
  5984. "__type__": "cc.Quat",
  5985. "x": 0,
  5986. "y": 0,
  5987. "z": 0,
  5988. "w": 1
  5989. },
  5990. "_lscale": {
  5991. "__type__": "cc.Vec3",
  5992. "x": 1,
  5993. "y": 1,
  5994. "z": 1
  5995. },
  5996. "_mobility": 0,
  5997. "_layer": 33554432,
  5998. "_euler": {
  5999. "__type__": "cc.Vec3",
  6000. "x": 0,
  6001. "y": 0,
  6002. "z": 0
  6003. },
  6004. "_id": ""
  6005. },
  6006. {
  6007. "__type__": "cc.UITransform",
  6008. "_name": "",
  6009. "_objFlags": 0,
  6010. "__editorExtras__": {},
  6011. "node": {
  6012. "__id__": 250
  6013. },
  6014. "_enabled": true,
  6015. "__prefab": {
  6016. "__id__": 252
  6017. },
  6018. "_contentSize": {
  6019. "__type__": "cc.Size",
  6020. "width": 308.57025146484375,
  6021. "height": 156.744
  6022. },
  6023. "_anchorPoint": {
  6024. "__type__": "cc.Vec2",
  6025. "x": 0.5,
  6026. "y": 0.5
  6027. },
  6028. "_id": ""
  6029. },
  6030. {
  6031. "__type__": "cc.CompPrefabInfo",
  6032. "fileId": "c68UOAlNhN171Umca6yVvF"
  6033. },
  6034. {
  6035. "__type__": "cc.Label",
  6036. "_name": "",
  6037. "_objFlags": 0,
  6038. "__editorExtras__": {},
  6039. "node": {
  6040. "__id__": 250
  6041. },
  6042. "_enabled": true,
  6043. "__prefab": {
  6044. "__id__": 254
  6045. },
  6046. "_customMaterial": null,
  6047. "_srcBlendFactor": 2,
  6048. "_dstBlendFactor": 4,
  6049. "_color": {
  6050. "__type__": "cc.Color",
  6051. "r": 255,
  6052. "g": 255,
  6053. "b": 199,
  6054. "a": 255
  6055. },
  6056. "_string": "LV: 0",
  6057. "_horizontalAlign": 1,
  6058. "_verticalAlign": 1,
  6059. "_actualFontSize": 124.4,
  6060. "_fontSize": 124.4,
  6061. "_fontFamily": "Arial",
  6062. "_lineHeight": 124.4,
  6063. "_overflow": 0,
  6064. "_enableWrapText": true,
  6065. "_font": {
  6066. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  6067. "__expectedType__": "cc.TTFFont"
  6068. },
  6069. "_isSystemFontUsed": false,
  6070. "_spacingX": 0,
  6071. "_isItalic": false,
  6072. "_isBold": true,
  6073. "_isUnderline": false,
  6074. "_underlineHeight": 2,
  6075. "_cacheMode": 0,
  6076. "_enableOutline": false,
  6077. "_outlineColor": {
  6078. "__type__": "cc.Color",
  6079. "r": 0,
  6080. "g": 0,
  6081. "b": 0,
  6082. "a": 255
  6083. },
  6084. "_outlineWidth": 2,
  6085. "_enableShadow": false,
  6086. "_shadowColor": {
  6087. "__type__": "cc.Color",
  6088. "r": 0,
  6089. "g": 0,
  6090. "b": 0,
  6091. "a": 255
  6092. },
  6093. "_shadowOffset": {
  6094. "__type__": "cc.Vec2",
  6095. "x": 2,
  6096. "y": 2
  6097. },
  6098. "_shadowBlur": 2,
  6099. "_id": ""
  6100. },
  6101. {
  6102. "__type__": "cc.CompPrefabInfo",
  6103. "fileId": "2frm37uaJHQr0AEEaYyM82"
  6104. },
  6105. {
  6106. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  6107. "_name": "",
  6108. "_objFlags": 0,
  6109. "__editorExtras__": {},
  6110. "node": {
  6111. "__id__": 250
  6112. },
  6113. "_enabled": true,
  6114. "__prefab": {
  6115. "__id__": 256
  6116. },
  6117. "_dataID": "main.关卡",
  6118. "_id": ""
  6119. },
  6120. {
  6121. "__type__": "cc.CompPrefabInfo",
  6122. "fileId": "98jgF7VThNSKlaQd6yVAa0"
  6123. },
  6124. {
  6125. "__type__": "cc.Widget",
  6126. "_name": "",
  6127. "_objFlags": 0,
  6128. "__editorExtras__": {},
  6129. "node": {
  6130. "__id__": 250
  6131. },
  6132. "_enabled": true,
  6133. "__prefab": {
  6134. "__id__": 258
  6135. },
  6136. "_alignFlags": 20,
  6137. "_target": null,
  6138. "_left": 0,
  6139. "_right": 0,
  6140. "_top": 0,
  6141. "_bottom": 386.4679999999999,
  6142. "_horizontalCenter": 0,
  6143. "_verticalCenter": -110.08600000000004,
  6144. "_isAbsLeft": true,
  6145. "_isAbsRight": true,
  6146. "_isAbsTop": true,
  6147. "_isAbsBottom": true,
  6148. "_isAbsHorizontalCenter": true,
  6149. "_isAbsVerticalCenter": true,
  6150. "_originalWidth": 0,
  6151. "_originalHeight": 0,
  6152. "_alignMode": 2,
  6153. "_lockFlags": 0,
  6154. "_id": ""
  6155. },
  6156. {
  6157. "__type__": "cc.CompPrefabInfo",
  6158. "fileId": "89aX8xjkhGSJxI32C3Fu8k"
  6159. },
  6160. {
  6161. "__type__": "cc.PrefabInfo",
  6162. "root": {
  6163. "__id__": 1
  6164. },
  6165. "asset": {
  6166. "__id__": 0
  6167. },
  6168. "fileId": "25fBSXbTZKBoSDu7TSAb59",
  6169. "instance": null,
  6170. "targetOverrides": null,
  6171. "nestedPrefabInstanceRoots": null
  6172. },
  6173. {
  6174. "__type__": "cc.Node",
  6175. "_name": "btn_play",
  6176. "_objFlags": 0,
  6177. "__editorExtras__": {},
  6178. "_parent": {
  6179. "__id__": 1
  6180. },
  6181. "_children": [
  6182. {
  6183. "__id__": 261
  6184. }
  6185. ],
  6186. "_active": true,
  6187. "_components": [
  6188. {
  6189. "__id__": 269
  6190. },
  6191. {
  6192. "__id__": 271
  6193. },
  6194. {
  6195. "__id__": 273
  6196. },
  6197. {
  6198. "__id__": 275
  6199. }
  6200. ],
  6201. "_prefab": {
  6202. "__id__": 277
  6203. },
  6204. "_lpos": {
  6205. "__type__": "cc.Vec3",
  6206. "x": 0,
  6207. "y": -432.17300148000004,
  6208. "z": 0
  6209. },
  6210. "_lrot": {
  6211. "__type__": "cc.Quat",
  6212. "x": 0,
  6213. "y": 0,
  6214. "z": 0,
  6215. "w": 1
  6216. },
  6217. "_lscale": {
  6218. "__type__": "cc.Vec3",
  6219. "x": 1,
  6220. "y": 1,
  6221. "z": 1
  6222. },
  6223. "_mobility": 0,
  6224. "_layer": 33554432,
  6225. "_euler": {
  6226. "__type__": "cc.Vec3",
  6227. "x": 0,
  6228. "y": 0,
  6229. "z": 0
  6230. },
  6231. "_id": ""
  6232. },
  6233. {
  6234. "__type__": "cc.Node",
  6235. "_name": "start_btn",
  6236. "_objFlags": 0,
  6237. "__editorExtras__": {},
  6238. "_parent": {
  6239. "__id__": 260
  6240. },
  6241. "_children": [],
  6242. "_active": true,
  6243. "_components": [
  6244. {
  6245. "__id__": 262
  6246. },
  6247. {
  6248. "__id__": 264
  6249. },
  6250. {
  6251. "__id__": 266
  6252. }
  6253. ],
  6254. "_prefab": {
  6255. "__id__": 268
  6256. },
  6257. "_lpos": {
  6258. "__type__": "cc.Vec3",
  6259. "x": 0,
  6260. "y": 3.192,
  6261. "z": 0
  6262. },
  6263. "_lrot": {
  6264. "__type__": "cc.Quat",
  6265. "x": 0,
  6266. "y": 0,
  6267. "z": 0,
  6268. "w": 1
  6269. },
  6270. "_lscale": {
  6271. "__type__": "cc.Vec3",
  6272. "x": 1,
  6273. "y": 1,
  6274. "z": 1
  6275. },
  6276. "_mobility": 0,
  6277. "_layer": 33554432,
  6278. "_euler": {
  6279. "__type__": "cc.Vec3",
  6280. "x": 0,
  6281. "y": 0,
  6282. "z": 0
  6283. },
  6284. "_id": ""
  6285. },
  6286. {
  6287. "__type__": "cc.UITransform",
  6288. "_name": "",
  6289. "_objFlags": 0,
  6290. "__editorExtras__": {},
  6291. "node": {
  6292. "__id__": 261
  6293. },
  6294. "_enabled": true,
  6295. "__prefab": {
  6296. "__id__": 263
  6297. },
  6298. "_contentSize": {
  6299. "__type__": "cc.Size",
  6300. "width": 250.5595703125,
  6301. "height": 133.56
  6302. },
  6303. "_anchorPoint": {
  6304. "__type__": "cc.Vec2",
  6305. "x": 0.5,
  6306. "y": 0.5
  6307. },
  6308. "_id": ""
  6309. },
  6310. {
  6311. "__type__": "cc.CompPrefabInfo",
  6312. "fileId": "0fhiXW/QVAcLo0Au34ogqt"
  6313. },
  6314. {
  6315. "__type__": "cc.Label",
  6316. "_name": "",
  6317. "_objFlags": 0,
  6318. "__editorExtras__": {},
  6319. "node": {
  6320. "__id__": 261
  6321. },
  6322. "_enabled": true,
  6323. "__prefab": {
  6324. "__id__": 265
  6325. },
  6326. "_customMaterial": null,
  6327. "_srcBlendFactor": 2,
  6328. "_dstBlendFactor": 4,
  6329. "_color": {
  6330. "__type__": "cc.Color",
  6331. "r": 255,
  6332. "g": 255,
  6333. "b": 235,
  6334. "a": 255
  6335. },
  6336. "_string": "Start",
  6337. "_horizontalAlign": 1,
  6338. "_verticalAlign": 1,
  6339. "_actualFontSize": 106,
  6340. "_fontSize": 106,
  6341. "_fontFamily": "Arial",
  6342. "_lineHeight": 106,
  6343. "_overflow": 0,
  6344. "_enableWrapText": true,
  6345. "_font": {
  6346. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  6347. "__expectedType__": "cc.TTFFont"
  6348. },
  6349. "_isSystemFontUsed": false,
  6350. "_spacingX": 0,
  6351. "_isItalic": false,
  6352. "_isBold": false,
  6353. "_isUnderline": false,
  6354. "_underlineHeight": 2,
  6355. "_cacheMode": 0,
  6356. "_enableOutline": false,
  6357. "_outlineColor": {
  6358. "__type__": "cc.Color",
  6359. "r": 0,
  6360. "g": 0,
  6361. "b": 0,
  6362. "a": 255
  6363. },
  6364. "_outlineWidth": 2,
  6365. "_enableShadow": false,
  6366. "_shadowColor": {
  6367. "__type__": "cc.Color",
  6368. "r": 0,
  6369. "g": 0,
  6370. "b": 0,
  6371. "a": 255
  6372. },
  6373. "_shadowOffset": {
  6374. "__type__": "cc.Vec2",
  6375. "x": 2,
  6376. "y": 2
  6377. },
  6378. "_shadowBlur": 2,
  6379. "_id": ""
  6380. },
  6381. {
  6382. "__type__": "cc.CompPrefabInfo",
  6383. "fileId": "a3TL8/kM9KXI7MkL5W4Qgs"
  6384. },
  6385. {
  6386. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  6387. "_name": "",
  6388. "_objFlags": 0,
  6389. "__editorExtras__": {},
  6390. "node": {
  6391. "__id__": 261
  6392. },
  6393. "_enabled": true,
  6394. "__prefab": {
  6395. "__id__": 267
  6396. },
  6397. "_dataID": "main.开始",
  6398. "_id": ""
  6399. },
  6400. {
  6401. "__type__": "cc.CompPrefabInfo",
  6402. "fileId": "cbLlwl3XZAC6hLU9zrLYAL"
  6403. },
  6404. {
  6405. "__type__": "cc.PrefabInfo",
  6406. "root": {
  6407. "__id__": 1
  6408. },
  6409. "asset": {
  6410. "__id__": 0
  6411. },
  6412. "fileId": "cfdHoLnGZAcYOOVDXGsJqw",
  6413. "instance": null,
  6414. "targetOverrides": null,
  6415. "nestedPrefabInstanceRoots": null
  6416. },
  6417. {
  6418. "__type__": "cc.UITransform",
  6419. "_name": "",
  6420. "_objFlags": 0,
  6421. "__editorExtras__": {},
  6422. "node": {
  6423. "__id__": 260
  6424. },
  6425. "_enabled": true,
  6426. "__prefab": {
  6427. "__id__": 270
  6428. },
  6429. "_contentSize": {
  6430. "__type__": "cc.Size",
  6431. "width": 340,
  6432. "height": 163
  6433. },
  6434. "_anchorPoint": {
  6435. "__type__": "cc.Vec2",
  6436. "x": 0.5,
  6437. "y": 0.5
  6438. },
  6439. "_id": ""
  6440. },
  6441. {
  6442. "__type__": "cc.CompPrefabInfo",
  6443. "fileId": "b0WD9Kaz1EDKUUA54AIrvg"
  6444. },
  6445. {
  6446. "__type__": "cc.Sprite",
  6447. "_name": "",
  6448. "_objFlags": 0,
  6449. "__editorExtras__": {},
  6450. "node": {
  6451. "__id__": 260
  6452. },
  6453. "_enabled": true,
  6454. "__prefab": {
  6455. "__id__": 272
  6456. },
  6457. "_customMaterial": null,
  6458. "_srcBlendFactor": 2,
  6459. "_dstBlendFactor": 4,
  6460. "_color": {
  6461. "__type__": "cc.Color",
  6462. "r": 255,
  6463. "g": 255,
  6464. "b": 255,
  6465. "a": 255
  6466. },
  6467. "_spriteFrame": {
  6468. "__uuid__": "456cb79e-0cd4-4bb7-a1e4-86934e8c9407@f9941",
  6469. "__expectedType__": "cc.SpriteFrame"
  6470. },
  6471. "_type": 0,
  6472. "_fillType": 0,
  6473. "_sizeMode": 1,
  6474. "_fillCenter": {
  6475. "__type__": "cc.Vec2",
  6476. "x": 0,
  6477. "y": 0
  6478. },
  6479. "_fillStart": 0,
  6480. "_fillRange": 0,
  6481. "_isTrimmedMode": true,
  6482. "_useGrayscale": false,
  6483. "_atlas": null,
  6484. "_id": ""
  6485. },
  6486. {
  6487. "__type__": "cc.CompPrefabInfo",
  6488. "fileId": "73IY1HCLlP2pMdu206egiP"
  6489. },
  6490. {
  6491. "__type__": "cc.Button",
  6492. "_name": "",
  6493. "_objFlags": 0,
  6494. "__editorExtras__": {},
  6495. "node": {
  6496. "__id__": 260
  6497. },
  6498. "_enabled": true,
  6499. "__prefab": {
  6500. "__id__": 274
  6501. },
  6502. "clickEvents": [],
  6503. "_interactable": true,
  6504. "_transition": 1,
  6505. "_normalColor": {
  6506. "__type__": "cc.Color",
  6507. "r": 255,
  6508. "g": 255,
  6509. "b": 255,
  6510. "a": 255
  6511. },
  6512. "_hoverColor": {
  6513. "__type__": "cc.Color",
  6514. "r": 211,
  6515. "g": 211,
  6516. "b": 211,
  6517. "a": 255
  6518. },
  6519. "_pressedColor": {
  6520. "__type__": "cc.Color",
  6521. "r": 255,
  6522. "g": 255,
  6523. "b": 255,
  6524. "a": 255
  6525. },
  6526. "_disabledColor": {
  6527. "__type__": "cc.Color",
  6528. "r": 124,
  6529. "g": 124,
  6530. "b": 124,
  6531. "a": 255
  6532. },
  6533. "_normalSprite": null,
  6534. "_hoverSprite": null,
  6535. "_pressedSprite": null,
  6536. "_disabledSprite": null,
  6537. "_duration": 0.1,
  6538. "_zoomScale": 1.2,
  6539. "_target": {
  6540. "__id__": 260
  6541. },
  6542. "_id": ""
  6543. },
  6544. {
  6545. "__type__": "cc.CompPrefabInfo",
  6546. "fileId": "b5FqU2SWtJZrFMQM9y3Ai+"
  6547. },
  6548. {
  6549. "__type__": "cc.Widget",
  6550. "_name": "",
  6551. "_objFlags": 0,
  6552. "__editorExtras__": {},
  6553. "node": {
  6554. "__id__": 260
  6555. },
  6556. "_enabled": true,
  6557. "__prefab": {
  6558. "__id__": 276
  6559. },
  6560. "_alignFlags": 20,
  6561. "_target": null,
  6562. "_left": 0,
  6563. "_right": 0,
  6564. "_top": 0,
  6565. "_bottom": 153.32699852000002,
  6566. "_horizontalCenter": 0,
  6567. "_verticalCenter": 0,
  6568. "_isAbsLeft": true,
  6569. "_isAbsRight": true,
  6570. "_isAbsTop": true,
  6571. "_isAbsBottom": true,
  6572. "_isAbsHorizontalCenter": true,
  6573. "_isAbsVerticalCenter": true,
  6574. "_originalWidth": 0,
  6575. "_originalHeight": 0,
  6576. "_alignMode": 2,
  6577. "_lockFlags": 0,
  6578. "_id": ""
  6579. },
  6580. {
  6581. "__type__": "cc.CompPrefabInfo",
  6582. "fileId": "4ews+n3jdCB6aWkdoyTS+Z"
  6583. },
  6584. {
  6585. "__type__": "cc.PrefabInfo",
  6586. "root": {
  6587. "__id__": 1
  6588. },
  6589. "asset": {
  6590. "__id__": 0
  6591. },
  6592. "fileId": "25vwLYQF9MC4wyxG5wbflW",
  6593. "instance": null,
  6594. "targetOverrides": null,
  6595. "nestedPrefabInstanceRoots": null
  6596. },
  6597. {
  6598. "__type__": "cc.Node",
  6599. "_name": "level-bar-round",
  6600. "_objFlags": 0,
  6601. "__editorExtras__": {},
  6602. "_parent": {
  6603. "__id__": 1
  6604. },
  6605. "_children": [
  6606. {
  6607. "__id__": 279
  6608. },
  6609. {
  6610. "__id__": 287
  6611. }
  6612. ],
  6613. "_active": true,
  6614. "_components": [
  6615. {
  6616. "__id__": 293
  6617. },
  6618. {
  6619. "__id__": 295
  6620. }
  6621. ],
  6622. "_prefab": {
  6623. "__id__": 297
  6624. },
  6625. "_lpos": {
  6626. "__type__": "cc.Vec3",
  6627. "x": 0,
  6628. "y": 0,
  6629. "z": 0
  6630. },
  6631. "_lrot": {
  6632. "__type__": "cc.Quat",
  6633. "x": 0,
  6634. "y": 0,
  6635. "z": 0,
  6636. "w": 1
  6637. },
  6638. "_lscale": {
  6639. "__type__": "cc.Vec3",
  6640. "x": 1,
  6641. "y": 1,
  6642. "z": 1
  6643. },
  6644. "_mobility": 0,
  6645. "_layer": 33554432,
  6646. "_euler": {
  6647. "__type__": "cc.Vec3",
  6648. "x": 0,
  6649. "y": 0,
  6650. "z": 0
  6651. },
  6652. "_id": ""
  6653. },
  6654. {
  6655. "__type__": "cc.Node",
  6656. "_name": "probar_lv_center",
  6657. "_objFlags": 0,
  6658. "__editorExtras__": {},
  6659. "_parent": {
  6660. "__id__": 278
  6661. },
  6662. "_children": [],
  6663. "_active": false,
  6664. "_components": [
  6665. {
  6666. "__id__": 280
  6667. },
  6668. {
  6669. "__id__": 282
  6670. },
  6671. {
  6672. "__id__": 284
  6673. }
  6674. ],
  6675. "_prefab": {
  6676. "__id__": 286
  6677. },
  6678. "_lpos": {
  6679. "__type__": "cc.Vec3",
  6680. "x": 0,
  6681. "y": 0,
  6682. "z": 0
  6683. },
  6684. "_lrot": {
  6685. "__type__": "cc.Quat",
  6686. "x": 0,
  6687. "y": 0,
  6688. "z": 0,
  6689. "w": 1
  6690. },
  6691. "_lscale": {
  6692. "__type__": "cc.Vec3",
  6693. "x": 1,
  6694. "y": 1,
  6695. "z": 1
  6696. },
  6697. "_mobility": 0,
  6698. "_layer": 33554432,
  6699. "_euler": {
  6700. "__type__": "cc.Vec3",
  6701. "x": 0,
  6702. "y": 0,
  6703. "z": 0
  6704. },
  6705. "_id": ""
  6706. },
  6707. {
  6708. "__type__": "cc.UITransform",
  6709. "_name": "",
  6710. "_objFlags": 0,
  6711. "__editorExtras__": {},
  6712. "node": {
  6713. "__id__": 279
  6714. },
  6715. "_enabled": true,
  6716. "__prefab": {
  6717. "__id__": 281
  6718. },
  6719. "_contentSize": {
  6720. "__type__": "cc.Size",
  6721. "width": 289,
  6722. "height": 259
  6723. },
  6724. "_anchorPoint": {
  6725. "__type__": "cc.Vec2",
  6726. "x": 0.5,
  6727. "y": 0.5
  6728. },
  6729. "_id": ""
  6730. },
  6731. {
  6732. "__type__": "cc.CompPrefabInfo",
  6733. "fileId": "5d6TGYihdBM66VLGyl3GC6"
  6734. },
  6735. {
  6736. "__type__": "cc.Sprite",
  6737. "_name": "",
  6738. "_objFlags": 0,
  6739. "__editorExtras__": {},
  6740. "node": {
  6741. "__id__": 279
  6742. },
  6743. "_enabled": true,
  6744. "__prefab": {
  6745. "__id__": 283
  6746. },
  6747. "_customMaterial": null,
  6748. "_srcBlendFactor": 2,
  6749. "_dstBlendFactor": 4,
  6750. "_color": {
  6751. "__type__": "cc.Color",
  6752. "r": 125,
  6753. "g": 79,
  6754. "b": 167,
  6755. "a": 255
  6756. },
  6757. "_spriteFrame": {
  6758. "__uuid__": "6f70e4f9-cce3-445c-aafb-8806c3977e64@f9941",
  6759. "__expectedType__": "cc.SpriteFrame"
  6760. },
  6761. "_type": 3,
  6762. "_fillType": 2,
  6763. "_sizeMode": 1,
  6764. "_fillCenter": {
  6765. "__type__": "cc.Vec2",
  6766. "x": 0.5,
  6767. "y": 0.5
  6768. },
  6769. "_fillStart": 0.75,
  6770. "_fillRange": -0.1,
  6771. "_isTrimmedMode": true,
  6772. "_useGrayscale": false,
  6773. "_atlas": null,
  6774. "_id": ""
  6775. },
  6776. {
  6777. "__type__": "cc.CompPrefabInfo",
  6778. "fileId": "15kR3xcthIfoADt8O+oc4s"
  6779. },
  6780. {
  6781. "__type__": "cc.ProgressBar",
  6782. "_name": "",
  6783. "_objFlags": 0,
  6784. "__editorExtras__": {},
  6785. "node": {
  6786. "__id__": 279
  6787. },
  6788. "_enabled": true,
  6789. "__prefab": {
  6790. "__id__": 285
  6791. },
  6792. "_barSprite": {
  6793. "__id__": 282
  6794. },
  6795. "_mode": 2,
  6796. "_totalLength": 1,
  6797. "_progress": 0.1,
  6798. "_reverse": true,
  6799. "_id": ""
  6800. },
  6801. {
  6802. "__type__": "cc.CompPrefabInfo",
  6803. "fileId": "a8/uOaX6ZNQoMOpiHm/w5i"
  6804. },
  6805. {
  6806. "__type__": "cc.PrefabInfo",
  6807. "root": {
  6808. "__id__": 1
  6809. },
  6810. "asset": {
  6811. "__id__": 0
  6812. },
  6813. "fileId": "5bXgEiCntKIaYVOSD4J3kB",
  6814. "instance": null,
  6815. "targetOverrides": null,
  6816. "nestedPrefabInstanceRoots": null
  6817. },
  6818. {
  6819. "__type__": "cc.Node",
  6820. "_name": "lbl_lv_center",
  6821. "_objFlags": 0,
  6822. "__editorExtras__": {},
  6823. "_parent": {
  6824. "__id__": 278
  6825. },
  6826. "_children": [],
  6827. "_active": false,
  6828. "_components": [
  6829. {
  6830. "__id__": 288
  6831. },
  6832. {
  6833. "__id__": 290
  6834. }
  6835. ],
  6836. "_prefab": {
  6837. "__id__": 292
  6838. },
  6839. "_lpos": {
  6840. "__type__": "cc.Vec3",
  6841. "x": 0,
  6842. "y": -11.854,
  6843. "z": 0
  6844. },
  6845. "_lrot": {
  6846. "__type__": "cc.Quat",
  6847. "x": 0,
  6848. "y": 0,
  6849. "z": 0,
  6850. "w": 1
  6851. },
  6852. "_lscale": {
  6853. "__type__": "cc.Vec3",
  6854. "x": 1,
  6855. "y": 1,
  6856. "z": 1
  6857. },
  6858. "_mobility": 0,
  6859. "_layer": 33554432,
  6860. "_euler": {
  6861. "__type__": "cc.Vec3",
  6862. "x": 0,
  6863. "y": 0,
  6864. "z": 0
  6865. },
  6866. "_id": ""
  6867. },
  6868. {
  6869. "__type__": "cc.UITransform",
  6870. "_name": "",
  6871. "_objFlags": 0,
  6872. "__editorExtras__": {},
  6873. "node": {
  6874. "__id__": 287
  6875. },
  6876. "_enabled": true,
  6877. "__prefab": {
  6878. "__id__": 289
  6879. },
  6880. "_contentSize": {
  6881. "__type__": "cc.Size",
  6882. "width": 111.23046875,
  6883. "height": 126
  6884. },
  6885. "_anchorPoint": {
  6886. "__type__": "cc.Vec2",
  6887. "x": 0.5,
  6888. "y": 0.5
  6889. },
  6890. "_id": ""
  6891. },
  6892. {
  6893. "__type__": "cc.CompPrefabInfo",
  6894. "fileId": "c68UOAlNhN171Umca6yVvF"
  6895. },
  6896. {
  6897. "__type__": "cc.Label",
  6898. "_name": "",
  6899. "_objFlags": 0,
  6900. "__editorExtras__": {},
  6901. "node": {
  6902. "__id__": 287
  6903. },
  6904. "_enabled": true,
  6905. "__prefab": {
  6906. "__id__": 291
  6907. },
  6908. "_customMaterial": null,
  6909. "_srcBlendFactor": 2,
  6910. "_dstBlendFactor": 4,
  6911. "_color": {
  6912. "__type__": "cc.Color",
  6913. "r": 255,
  6914. "g": 255,
  6915. "b": 255,
  6916. "a": 255
  6917. },
  6918. "_string": "45",
  6919. "_horizontalAlign": 1,
  6920. "_verticalAlign": 1,
  6921. "_actualFontSize": 100,
  6922. "_fontSize": 100,
  6923. "_fontFamily": "Arial",
  6924. "_lineHeight": 100,
  6925. "_overflow": 0,
  6926. "_enableWrapText": true,
  6927. "_font": null,
  6928. "_isSystemFontUsed": true,
  6929. "_spacingX": 0,
  6930. "_isItalic": false,
  6931. "_isBold": true,
  6932. "_isUnderline": false,
  6933. "_underlineHeight": 2,
  6934. "_cacheMode": 0,
  6935. "_enableOutline": false,
  6936. "_outlineColor": {
  6937. "__type__": "cc.Color",
  6938. "r": 0,
  6939. "g": 0,
  6940. "b": 0,
  6941. "a": 255
  6942. },
  6943. "_outlineWidth": 2,
  6944. "_enableShadow": false,
  6945. "_shadowColor": {
  6946. "__type__": "cc.Color",
  6947. "r": 0,
  6948. "g": 0,
  6949. "b": 0,
  6950. "a": 255
  6951. },
  6952. "_shadowOffset": {
  6953. "__type__": "cc.Vec2",
  6954. "x": 2,
  6955. "y": 2
  6956. },
  6957. "_shadowBlur": 2,
  6958. "_id": ""
  6959. },
  6960. {
  6961. "__type__": "cc.CompPrefabInfo",
  6962. "fileId": "2frm37uaJHQr0AEEaYyM82"
  6963. },
  6964. {
  6965. "__type__": "cc.PrefabInfo",
  6966. "root": {
  6967. "__id__": 1
  6968. },
  6969. "asset": {
  6970. "__id__": 0
  6971. },
  6972. "fileId": "e1zutcLmtOTJDzUmGzLbNC",
  6973. "instance": null,
  6974. "targetOverrides": null,
  6975. "nestedPrefabInstanceRoots": null
  6976. },
  6977. {
  6978. "__type__": "cc.UITransform",
  6979. "_name": "",
  6980. "_objFlags": 0,
  6981. "__editorExtras__": {},
  6982. "node": {
  6983. "__id__": 278
  6984. },
  6985. "_enabled": true,
  6986. "__prefab": {
  6987. "__id__": 294
  6988. },
  6989. "_contentSize": {
  6990. "__type__": "cc.Size",
  6991. "width": 750,
  6992. "height": 1334
  6993. },
  6994. "_anchorPoint": {
  6995. "__type__": "cc.Vec2",
  6996. "x": 0.5,
  6997. "y": 0.5
  6998. },
  6999. "_id": ""
  7000. },
  7001. {
  7002. "__type__": "cc.CompPrefabInfo",
  7003. "fileId": "0fHodhc5JPC6e7xazQQzGm"
  7004. },
  7005. {
  7006. "__type__": "cc.Sprite",
  7007. "_name": "",
  7008. "_objFlags": 0,
  7009. "__editorExtras__": {},
  7010. "node": {
  7011. "__id__": 278
  7012. },
  7013. "_enabled": false,
  7014. "__prefab": {
  7015. "__id__": 296
  7016. },
  7017. "_customMaterial": null,
  7018. "_srcBlendFactor": 2,
  7019. "_dstBlendFactor": 4,
  7020. "_color": {
  7021. "__type__": "cc.Color",
  7022. "r": 58,
  7023. "g": 58,
  7024. "b": 60,
  7025. "a": 255
  7026. },
  7027. "_spriteFrame": {
  7028. "__uuid__": "6f70e4f9-cce3-445c-aafb-8806c3977e64@f9941",
  7029. "__expectedType__": "cc.SpriteFrame"
  7030. },
  7031. "_type": 0,
  7032. "_fillType": 0,
  7033. "_sizeMode": 0,
  7034. "_fillCenter": {
  7035. "__type__": "cc.Vec2",
  7036. "x": 0,
  7037. "y": 0
  7038. },
  7039. "_fillStart": 0,
  7040. "_fillRange": 0,
  7041. "_isTrimmedMode": true,
  7042. "_useGrayscale": false,
  7043. "_atlas": null,
  7044. "_id": ""
  7045. },
  7046. {
  7047. "__type__": "cc.CompPrefabInfo",
  7048. "fileId": "fdUiNvYhFFDqAnetG9Ns/S"
  7049. },
  7050. {
  7051. "__type__": "cc.PrefabInfo",
  7052. "root": {
  7053. "__id__": 1
  7054. },
  7055. "asset": {
  7056. "__id__": 0
  7057. },
  7058. "fileId": "dfwfm8LE1F/6TvaH1bkJO5",
  7059. "instance": null,
  7060. "targetOverrides": null,
  7061. "nestedPrefabInstanceRoots": null
  7062. },
  7063. {
  7064. "__type__": "cc.Node",
  7065. "_name": "editBox",
  7066. "_objFlags": 0,
  7067. "__editorExtras__": {},
  7068. "_parent": {
  7069. "__id__": 1
  7070. },
  7071. "_children": [
  7072. {
  7073. "__id__": 299
  7074. },
  7075. {
  7076. "__id__": 305
  7077. }
  7078. ],
  7079. "_active": true,
  7080. "_components": [
  7081. {
  7082. "__id__": 311
  7083. },
  7084. {
  7085. "__id__": 313
  7086. },
  7087. {
  7088. "__id__": 315
  7089. }
  7090. ],
  7091. "_prefab": {
  7092. "__id__": 317
  7093. },
  7094. "_lpos": {
  7095. "__type__": "cc.Vec3",
  7096. "x": 0,
  7097. "y": 205.012,
  7098. "z": 0
  7099. },
  7100. "_lrot": {
  7101. "__type__": "cc.Quat",
  7102. "x": 0,
  7103. "y": 0,
  7104. "z": 0,
  7105. "w": 1
  7106. },
  7107. "_lscale": {
  7108. "__type__": "cc.Vec3",
  7109. "x": 1,
  7110. "y": 1,
  7111. "z": 1
  7112. },
  7113. "_mobility": 0,
  7114. "_layer": 33554432,
  7115. "_euler": {
  7116. "__type__": "cc.Vec3",
  7117. "x": 0,
  7118. "y": 0,
  7119. "z": 0
  7120. },
  7121. "_id": ""
  7122. },
  7123. {
  7124. "__type__": "cc.Node",
  7125. "_name": "TEXT_LABEL",
  7126. "_objFlags": 0,
  7127. "__editorExtras__": {},
  7128. "_parent": {
  7129. "__id__": 298
  7130. },
  7131. "_children": [],
  7132. "_active": false,
  7133. "_components": [
  7134. {
  7135. "__id__": 300
  7136. },
  7137. {
  7138. "__id__": 302
  7139. }
  7140. ],
  7141. "_prefab": {
  7142. "__id__": 304
  7143. },
  7144. "_lpos": {
  7145. "__type__": "cc.Vec3",
  7146. "x": -78,
  7147. "y": 20,
  7148. "z": 0
  7149. },
  7150. "_lrot": {
  7151. "__type__": "cc.Quat",
  7152. "x": 0,
  7153. "y": 0,
  7154. "z": 0,
  7155. "w": 1
  7156. },
  7157. "_lscale": {
  7158. "__type__": "cc.Vec3",
  7159. "x": 1,
  7160. "y": 1,
  7161. "z": 1
  7162. },
  7163. "_mobility": 0,
  7164. "_layer": 33554432,
  7165. "_euler": {
  7166. "__type__": "cc.Vec3",
  7167. "x": 0,
  7168. "y": 0,
  7169. "z": 0
  7170. },
  7171. "_id": ""
  7172. },
  7173. {
  7174. "__type__": "cc.UITransform",
  7175. "_name": "",
  7176. "_objFlags": 0,
  7177. "__editorExtras__": {},
  7178. "node": {
  7179. "__id__": 299
  7180. },
  7181. "_enabled": true,
  7182. "__prefab": {
  7183. "__id__": 301
  7184. },
  7185. "_contentSize": {
  7186. "__type__": "cc.Size",
  7187. "width": 158,
  7188. "height": 40
  7189. },
  7190. "_anchorPoint": {
  7191. "__type__": "cc.Vec2",
  7192. "x": 0,
  7193. "y": 1
  7194. },
  7195. "_id": ""
  7196. },
  7197. {
  7198. "__type__": "cc.CompPrefabInfo",
  7199. "fileId": "c0m//vX0pDfrDt6nNOJBGD"
  7200. },
  7201. {
  7202. "__type__": "cc.Label",
  7203. "_name": "",
  7204. "_objFlags": 0,
  7205. "__editorExtras__": {},
  7206. "node": {
  7207. "__id__": 299
  7208. },
  7209. "_enabled": true,
  7210. "__prefab": {
  7211. "__id__": 303
  7212. },
  7213. "_customMaterial": null,
  7214. "_srcBlendFactor": 2,
  7215. "_dstBlendFactor": 4,
  7216. "_color": {
  7217. "__type__": "cc.Color",
  7218. "r": 255,
  7219. "g": 255,
  7220. "b": 255,
  7221. "a": 255
  7222. },
  7223. "_string": "",
  7224. "_horizontalAlign": 0,
  7225. "_verticalAlign": 1,
  7226. "_actualFontSize": 40,
  7227. "_fontSize": 20,
  7228. "_fontFamily": "Arial",
  7229. "_lineHeight": 40,
  7230. "_overflow": 1,
  7231. "_enableWrapText": false,
  7232. "_font": null,
  7233. "_isSystemFontUsed": true,
  7234. "_spacingX": 0,
  7235. "_isItalic": false,
  7236. "_isBold": false,
  7237. "_isUnderline": false,
  7238. "_underlineHeight": 2,
  7239. "_cacheMode": 0,
  7240. "_enableOutline": false,
  7241. "_outlineColor": {
  7242. "__type__": "cc.Color",
  7243. "r": 0,
  7244. "g": 0,
  7245. "b": 0,
  7246. "a": 255
  7247. },
  7248. "_outlineWidth": 2,
  7249. "_enableShadow": false,
  7250. "_shadowColor": {
  7251. "__type__": "cc.Color",
  7252. "r": 0,
  7253. "g": 0,
  7254. "b": 0,
  7255. "a": 255
  7256. },
  7257. "_shadowOffset": {
  7258. "__type__": "cc.Vec2",
  7259. "x": 2,
  7260. "y": 2
  7261. },
  7262. "_shadowBlur": 2,
  7263. "_id": ""
  7264. },
  7265. {
  7266. "__type__": "cc.CompPrefabInfo",
  7267. "fileId": "e8mjoytiRG9Yel1+96SUHX"
  7268. },
  7269. {
  7270. "__type__": "cc.PrefabInfo",
  7271. "root": {
  7272. "__id__": 1
  7273. },
  7274. "asset": {
  7275. "__id__": 0
  7276. },
  7277. "fileId": "97YhzeJ9JPDogpUSEIuWnB",
  7278. "instance": null,
  7279. "targetOverrides": null,
  7280. "nestedPrefabInstanceRoots": null
  7281. },
  7282. {
  7283. "__type__": "cc.Node",
  7284. "_name": "PLACEHOLDER_LABEL",
  7285. "_objFlags": 0,
  7286. "__editorExtras__": {},
  7287. "_parent": {
  7288. "__id__": 298
  7289. },
  7290. "_children": [],
  7291. "_active": true,
  7292. "_components": [
  7293. {
  7294. "__id__": 306
  7295. },
  7296. {
  7297. "__id__": 308
  7298. }
  7299. ],
  7300. "_prefab": {
  7301. "__id__": 310
  7302. },
  7303. "_lpos": {
  7304. "__type__": "cc.Vec3",
  7305. "x": -78,
  7306. "y": 20,
  7307. "z": 0
  7308. },
  7309. "_lrot": {
  7310. "__type__": "cc.Quat",
  7311. "x": 0,
  7312. "y": 0,
  7313. "z": 0,
  7314. "w": 1
  7315. },
  7316. "_lscale": {
  7317. "__type__": "cc.Vec3",
  7318. "x": 1,
  7319. "y": 1,
  7320. "z": 1
  7321. },
  7322. "_mobility": 0,
  7323. "_layer": 33554432,
  7324. "_euler": {
  7325. "__type__": "cc.Vec3",
  7326. "x": 0,
  7327. "y": 0,
  7328. "z": 0
  7329. },
  7330. "_id": ""
  7331. },
  7332. {
  7333. "__type__": "cc.UITransform",
  7334. "_name": "",
  7335. "_objFlags": 0,
  7336. "__editorExtras__": {},
  7337. "node": {
  7338. "__id__": 305
  7339. },
  7340. "_enabled": true,
  7341. "__prefab": {
  7342. "__id__": 307
  7343. },
  7344. "_contentSize": {
  7345. "__type__": "cc.Size",
  7346. "width": 158,
  7347. "height": 40
  7348. },
  7349. "_anchorPoint": {
  7350. "__type__": "cc.Vec2",
  7351. "x": 0,
  7352. "y": 1
  7353. },
  7354. "_id": ""
  7355. },
  7356. {
  7357. "__type__": "cc.CompPrefabInfo",
  7358. "fileId": "b8IpnWkNdC6aDwp8nej4+M"
  7359. },
  7360. {
  7361. "__type__": "cc.Label",
  7362. "_name": "",
  7363. "_objFlags": 0,
  7364. "__editorExtras__": {},
  7365. "node": {
  7366. "__id__": 305
  7367. },
  7368. "_enabled": true,
  7369. "__prefab": {
  7370. "__id__": 309
  7371. },
  7372. "_customMaterial": null,
  7373. "_srcBlendFactor": 2,
  7374. "_dstBlendFactor": 4,
  7375. "_color": {
  7376. "__type__": "cc.Color",
  7377. "r": 255,
  7378. "g": 255,
  7379. "b": 255,
  7380. "a": 255
  7381. },
  7382. "_string": " 输入关卡",
  7383. "_horizontalAlign": 0,
  7384. "_verticalAlign": 1,
  7385. "_actualFontSize": 20,
  7386. "_fontSize": 20,
  7387. "_fontFamily": "Arial",
  7388. "_lineHeight": 40,
  7389. "_overflow": 1,
  7390. "_enableWrapText": false,
  7391. "_font": null,
  7392. "_isSystemFontUsed": true,
  7393. "_spacingX": 0,
  7394. "_isItalic": false,
  7395. "_isBold": false,
  7396. "_isUnderline": false,
  7397. "_underlineHeight": 2,
  7398. "_cacheMode": 0,
  7399. "_enableOutline": false,
  7400. "_outlineColor": {
  7401. "__type__": "cc.Color",
  7402. "r": 0,
  7403. "g": 0,
  7404. "b": 0,
  7405. "a": 255
  7406. },
  7407. "_outlineWidth": 2,
  7408. "_enableShadow": false,
  7409. "_shadowColor": {
  7410. "__type__": "cc.Color",
  7411. "r": 0,
  7412. "g": 0,
  7413. "b": 0,
  7414. "a": 255
  7415. },
  7416. "_shadowOffset": {
  7417. "__type__": "cc.Vec2",
  7418. "x": 2,
  7419. "y": 2
  7420. },
  7421. "_shadowBlur": 2,
  7422. "_id": ""
  7423. },
  7424. {
  7425. "__type__": "cc.CompPrefabInfo",
  7426. "fileId": "19IE+7cilH5r5RBLIIP5Ij"
  7427. },
  7428. {
  7429. "__type__": "cc.PrefabInfo",
  7430. "root": {
  7431. "__id__": 1
  7432. },
  7433. "asset": {
  7434. "__id__": 0
  7435. },
  7436. "fileId": "63lCNKD3NIEIgrNkW2fX9c",
  7437. "instance": null,
  7438. "targetOverrides": null,
  7439. "nestedPrefabInstanceRoots": null
  7440. },
  7441. {
  7442. "__type__": "cc.UITransform",
  7443. "_name": "",
  7444. "_objFlags": 0,
  7445. "__editorExtras__": {},
  7446. "node": {
  7447. "__id__": 298
  7448. },
  7449. "_enabled": true,
  7450. "__prefab": {
  7451. "__id__": 312
  7452. },
  7453. "_contentSize": {
  7454. "__type__": "cc.Size",
  7455. "width": 160,
  7456. "height": 40
  7457. },
  7458. "_anchorPoint": {
  7459. "__type__": "cc.Vec2",
  7460. "x": 0.5,
  7461. "y": 0.5
  7462. },
  7463. "_id": ""
  7464. },
  7465. {
  7466. "__type__": "cc.CompPrefabInfo",
  7467. "fileId": "919wC/vRxDzIwI666SRwVg"
  7468. },
  7469. {
  7470. "__type__": "cc.Sprite",
  7471. "_name": "",
  7472. "_objFlags": 0,
  7473. "__editorExtras__": {},
  7474. "node": {
  7475. "__id__": 298
  7476. },
  7477. "_enabled": true,
  7478. "__prefab": {
  7479. "__id__": 314
  7480. },
  7481. "_customMaterial": null,
  7482. "_srcBlendFactor": 2,
  7483. "_dstBlendFactor": 4,
  7484. "_color": {
  7485. "__type__": "cc.Color",
  7486. "r": 255,
  7487. "g": 255,
  7488. "b": 255,
  7489. "a": 255
  7490. },
  7491. "_spriteFrame": {
  7492. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  7493. "__expectedType__": "cc.SpriteFrame"
  7494. },
  7495. "_type": 1,
  7496. "_fillType": 0,
  7497. "_sizeMode": 0,
  7498. "_fillCenter": {
  7499. "__type__": "cc.Vec2",
  7500. "x": 0,
  7501. "y": 0
  7502. },
  7503. "_fillStart": 0,
  7504. "_fillRange": 0,
  7505. "_isTrimmedMode": true,
  7506. "_useGrayscale": false,
  7507. "_atlas": null,
  7508. "_id": ""
  7509. },
  7510. {
  7511. "__type__": "cc.CompPrefabInfo",
  7512. "fileId": "92Y6jgBYxKDKRgHNG2qMQv"
  7513. },
  7514. {
  7515. "__type__": "cc.EditBox",
  7516. "_name": "",
  7517. "_objFlags": 0,
  7518. "__editorExtras__": {},
  7519. "node": {
  7520. "__id__": 298
  7521. },
  7522. "_enabled": true,
  7523. "__prefab": {
  7524. "__id__": 316
  7525. },
  7526. "editingDidBegan": [],
  7527. "textChanged": [],
  7528. "editingDidEnded": [],
  7529. "editingReturn": [],
  7530. "_textLabel": {
  7531. "__id__": 302
  7532. },
  7533. "_placeholderLabel": {
  7534. "__id__": 308
  7535. },
  7536. "_returnType": 0,
  7537. "_string": "",
  7538. "_tabIndex": 0,
  7539. "_backgroundImage": {
  7540. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  7541. "__expectedType__": "cc.SpriteFrame"
  7542. },
  7543. "_inputFlag": 5,
  7544. "_inputMode": 6,
  7545. "_maxLength": 8,
  7546. "_id": ""
  7547. },
  7548. {
  7549. "__type__": "cc.CompPrefabInfo",
  7550. "fileId": "3aSU88t2tCN5f4N+krKEHb"
  7551. },
  7552. {
  7553. "__type__": "cc.PrefabInfo",
  7554. "root": {
  7555. "__id__": 1
  7556. },
  7557. "asset": {
  7558. "__id__": 0
  7559. },
  7560. "fileId": "23xWOej5ZFSo9eQ7O8XWAP",
  7561. "instance": null,
  7562. "targetOverrides": null,
  7563. "nestedPrefabInstanceRoots": null
  7564. },
  7565. {
  7566. "__type__": "cc.UITransform",
  7567. "_name": "",
  7568. "_objFlags": 0,
  7569. "__editorExtras__": {},
  7570. "node": {
  7571. "__id__": 1
  7572. },
  7573. "_enabled": true,
  7574. "__prefab": {
  7575. "__id__": 319
  7576. },
  7577. "_contentSize": {
  7578. "__type__": "cc.Size",
  7579. "width": 749.9999999999999,
  7580. "height": 1334
  7581. },
  7582. "_anchorPoint": {
  7583. "__type__": "cc.Vec2",
  7584. "x": 0.5,
  7585. "y": 0.5
  7586. },
  7587. "_id": ""
  7588. },
  7589. {
  7590. "__type__": "cc.CompPrefabInfo",
  7591. "fileId": "d9YyVMRsRP76UIhZF9J3w2"
  7592. },
  7593. {
  7594. "__type__": "cc.Widget",
  7595. "_name": "",
  7596. "_objFlags": 0,
  7597. "__editorExtras__": {},
  7598. "node": {
  7599. "__id__": 1
  7600. },
  7601. "_enabled": true,
  7602. "__prefab": {
  7603. "__id__": 321
  7604. },
  7605. "_alignFlags": 45,
  7606. "_target": null,
  7607. "_left": 0,
  7608. "_right": 0,
  7609. "_top": 0,
  7610. "_bottom": 0,
  7611. "_horizontalCenter": 0,
  7612. "_verticalCenter": 0,
  7613. "_isAbsLeft": true,
  7614. "_isAbsRight": true,
  7615. "_isAbsTop": true,
  7616. "_isAbsBottom": true,
  7617. "_isAbsHorizontalCenter": true,
  7618. "_isAbsVerticalCenter": true,
  7619. "_originalWidth": 100,
  7620. "_originalHeight": 100,
  7621. "_alignMode": 1,
  7622. "_lockFlags": 0,
  7623. "_id": ""
  7624. },
  7625. {
  7626. "__type__": "cc.CompPrefabInfo",
  7627. "fileId": "88FQp3oWBKAphPz20PFKRy"
  7628. },
  7629. {
  7630. "__type__": "de92erMOJpMz67tMXfSPqCr",
  7631. "_name": "",
  7632. "_objFlags": 0,
  7633. "__editorExtras__": {},
  7634. "node": {
  7635. "__id__": 1
  7636. },
  7637. "_enabled": true,
  7638. "__prefab": {
  7639. "__id__": 323
  7640. },
  7641. "_id": ""
  7642. },
  7643. {
  7644. "__type__": "cc.CompPrefabInfo",
  7645. "fileId": "efLBgJ1R1MUo0udhExoE8t"
  7646. },
  7647. {
  7648. "__type__": "cc.PrefabInfo",
  7649. "root": {
  7650. "__id__": 1
  7651. },
  7652. "asset": {
  7653. "__id__": 0
  7654. },
  7655. "fileId": "75HiBlE9xPnIop5CW6VFh9",
  7656. "instance": null,
  7657. "targetOverrides": null
  7658. }
  7659. ]