redEnvelopes.prefab 113 KB

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