eliminate.prefab 129 KB

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