gamePanel.prefab 118 KB

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