GameDetailLayer.prefab 129 KB

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