FullScreenui.prefab 147 KB

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