FullScreenui.prefab 138 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899
  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__": 227
  36. },
  37. {
  38. "__id__": 238
  39. },
  40. {
  41. "__id__": 245
  42. }
  43. ],
  44. "_active": true,
  45. "_components": [
  46. {
  47. "__id__": 250
  48. },
  49. {
  50. "__id__": 251
  51. },
  52. {
  53. "__id__": 252
  54. }
  55. ],
  56. "_prefab": {
  57. "__id__": 253
  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__": 221
  3395. },
  3396. {
  3397. "__id__": 222
  3398. },
  3399. {
  3400. "__id__": 223
  3401. },
  3402. {
  3403. "__id__": 224
  3404. },
  3405. {
  3406. "__id__": 225
  3407. }
  3408. ],
  3409. "_prefab": {
  3410. "__id__": 226
  3411. },
  3412. "_lpos": {
  3413. "__type__": "cc.Vec3",
  3414. "x": 0,
  3415. "y": -127.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. "_active": true,
  3468. "_components": [
  3469. {
  3470. "__id__": 218
  3471. },
  3472. {
  3473. "__id__": 219
  3474. }
  3475. ],
  3476. "_prefab": {
  3477. "__id__": 220
  3478. },
  3479. "_lpos": {
  3480. "__type__": "cc.Vec3",
  3481. "x": 0,
  3482. "y": 0,
  3483. "z": 0
  3484. },
  3485. "_lrot": {
  3486. "__type__": "cc.Quat",
  3487. "x": 0,
  3488. "y": 0,
  3489. "z": 0,
  3490. "w": 1
  3491. },
  3492. "_lscale": {
  3493. "__type__": "cc.Vec3",
  3494. "x": 1,
  3495. "y": 1,
  3496. "z": 1
  3497. },
  3498. "_layer": 33554432,
  3499. "_euler": {
  3500. "__type__": "cc.Vec3",
  3501. "x": 0,
  3502. "y": 0,
  3503. "z": 0
  3504. },
  3505. "_id": ""
  3506. },
  3507. {
  3508. "__type__": "cc.Node",
  3509. "_name": "ExportItem",
  3510. "_objFlags": 0,
  3511. "_parent": {
  3512. "__id__": 109
  3513. },
  3514. "_children": [
  3515. {
  3516. "__id__": 111
  3517. },
  3518. {
  3519. "__id__": 115
  3520. },
  3521. {
  3522. "__id__": 119
  3523. }
  3524. ],
  3525. "_active": true,
  3526. "_components": [
  3527. {
  3528. "__id__": 123
  3529. },
  3530. {
  3531. "__id__": 124
  3532. },
  3533. {
  3534. "__id__": 125
  3535. },
  3536. {
  3537. "__id__": 126
  3538. }
  3539. ],
  3540. "_prefab": {
  3541. "__id__": 127
  3542. },
  3543. "_lpos": {
  3544. "__type__": "cc.Vec3",
  3545. "x": -231,
  3546. "y": 146,
  3547. "z": 0
  3548. },
  3549. "_lrot": {
  3550. "__type__": "cc.Quat",
  3551. "x": 0,
  3552. "y": 0,
  3553. "z": 0,
  3554. "w": 1
  3555. },
  3556. "_lscale": {
  3557. "__type__": "cc.Vec3",
  3558. "x": 1,
  3559. "y": 1,
  3560. "z": 1
  3561. },
  3562. "_layer": 33554432,
  3563. "_euler": {
  3564. "__type__": "cc.Vec3",
  3565. "x": 0,
  3566. "y": 0,
  3567. "z": 0
  3568. },
  3569. "_id": ""
  3570. },
  3571. {
  3572. "__type__": "cc.Node",
  3573. "_name": "BG",
  3574. "_objFlags": 0,
  3575. "_parent": {
  3576. "__id__": 110
  3577. },
  3578. "_children": [],
  3579. "_active": true,
  3580. "_components": [
  3581. {
  3582. "__id__": 112
  3583. },
  3584. {
  3585. "__id__": 113
  3586. }
  3587. ],
  3588. "_prefab": {
  3589. "__id__": 114
  3590. },
  3591. "_lpos": {
  3592. "__type__": "cc.Vec3",
  3593. "x": 0,
  3594. "y": 32.826,
  3595. "z": 0
  3596. },
  3597. "_lrot": {
  3598. "__type__": "cc.Quat",
  3599. "x": 0,
  3600. "y": 0,
  3601. "z": 0,
  3602. "w": 1
  3603. },
  3604. "_lscale": {
  3605. "__type__": "cc.Vec3",
  3606. "x": 1,
  3607. "y": 1,
  3608. "z": 1
  3609. },
  3610. "_layer": 33554432,
  3611. "_euler": {
  3612. "__type__": "cc.Vec3",
  3613. "x": 0,
  3614. "y": 0,
  3615. "z": 0
  3616. },
  3617. "_id": ""
  3618. },
  3619. {
  3620. "__type__": "cc.UITransformComponent",
  3621. "_name": "BG<UITransformComponent>",
  3622. "_objFlags": 0,
  3623. "node": {
  3624. "__id__": 111
  3625. },
  3626. "_enabled": true,
  3627. "_priority": 0,
  3628. "_contentSize": {
  3629. "__type__": "cc.Size",
  3630. "width": 180,
  3631. "height": 180
  3632. },
  3633. "_anchorPoint": {
  3634. "__type__": "cc.Vec2",
  3635. "x": 0.5,
  3636. "y": 0.5
  3637. },
  3638. "_id": ""
  3639. },
  3640. {
  3641. "__type__": "cc.SpriteComponent",
  3642. "_name": "BG<SpriteComponent>",
  3643. "_objFlags": 0,
  3644. "node": {
  3645. "__id__": 111
  3646. },
  3647. "_enabled": true,
  3648. "_srcBlendFactor": 2,
  3649. "_dstBlendFactor": 4,
  3650. "_color": {
  3651. "__type__": "cc.Color",
  3652. "r": 255,
  3653. "g": 255,
  3654. "b": 255,
  3655. "a": 255
  3656. },
  3657. "_sharedMaterial": null,
  3658. "_spriteFrame": {
  3659. "__uuid__": "ad575607-a07e-453a-ad61-896cc376e54f@f9941"
  3660. },
  3661. "_type": 1,
  3662. "_fillType": 0,
  3663. "_sizeMode": 0,
  3664. "_fillCenter": {
  3665. "__type__": "cc.Vec2",
  3666. "x": 0,
  3667. "y": 0
  3668. },
  3669. "_fillStart": 0,
  3670. "_fillRange": 0,
  3671. "_isTrimmedMode": true,
  3672. "_useGrayscale": false,
  3673. "_atlas": null,
  3674. "_id": ""
  3675. },
  3676. {
  3677. "__type__": "cc.PrefabInfo",
  3678. "root": {
  3679. "__id__": 1
  3680. },
  3681. "asset": {
  3682. "__id__": 0
  3683. },
  3684. "fileId": "f90nw719lHtbHoTWZ+zdxH",
  3685. "sync": false,
  3686. "_synced": {
  3687. "default": false,
  3688. "serializable": false
  3689. }
  3690. },
  3691. {
  3692. "__type__": "cc.Node",
  3693. "_name": "IconDaochu",
  3694. "_objFlags": 0,
  3695. "_parent": {
  3696. "__id__": 110
  3697. },
  3698. "_children": [],
  3699. "_active": true,
  3700. "_components": [
  3701. {
  3702. "__id__": 116
  3703. },
  3704. {
  3705. "__id__": 117
  3706. }
  3707. ],
  3708. "_prefab": {
  3709. "__id__": 118
  3710. },
  3711. "_lpos": {
  3712. "__type__": "cc.Vec3",
  3713. "x": 0,
  3714. "y": 35.296,
  3715. "z": 0
  3716. },
  3717. "_lrot": {
  3718. "__type__": "cc.Quat",
  3719. "x": 0,
  3720. "y": 0,
  3721. "z": 0,
  3722. "w": 1
  3723. },
  3724. "_lscale": {
  3725. "__type__": "cc.Vec3",
  3726. "x": 1,
  3727. "y": 1,
  3728. "z": 1
  3729. },
  3730. "_layer": 1073741824,
  3731. "_euler": {
  3732. "__type__": "cc.Vec3",
  3733. "x": 0,
  3734. "y": 0,
  3735. "z": 0
  3736. },
  3737. "_id": ""
  3738. },
  3739. {
  3740. "__type__": "cc.UITransformComponent",
  3741. "_name": "IconDaochu<UITransformComponent>",
  3742. "_objFlags": 0,
  3743. "node": {
  3744. "__id__": 115
  3745. },
  3746. "_enabled": true,
  3747. "_priority": 0,
  3748. "_contentSize": {
  3749. "__type__": "cc.Size",
  3750. "width": 160,
  3751. "height": 160
  3752. },
  3753. "_anchorPoint": {
  3754. "__type__": "cc.Vec2",
  3755. "x": 0.5,
  3756. "y": 0.5
  3757. },
  3758. "_id": ""
  3759. },
  3760. {
  3761. "__type__": "cc.SpriteComponent",
  3762. "_name": "",
  3763. "_objFlags": 0,
  3764. "node": {
  3765. "__id__": 115
  3766. },
  3767. "_enabled": true,
  3768. "_srcBlendFactor": 2,
  3769. "_dstBlendFactor": 4,
  3770. "_color": {
  3771. "__type__": "cc.Color",
  3772. "r": 255,
  3773. "g": 255,
  3774. "b": 255,
  3775. "a": 255
  3776. },
  3777. "_sharedMaterial": null,
  3778. "_spriteFrame": null,
  3779. "_type": 0,
  3780. "_fillType": 0,
  3781. "_sizeMode": 0,
  3782. "_fillCenter": {
  3783. "__type__": "cc.Vec2",
  3784. "x": 0,
  3785. "y": 0
  3786. },
  3787. "_fillStart": 0,
  3788. "_fillRange": 0,
  3789. "_isTrimmedMode": true,
  3790. "_useGrayscale": false,
  3791. "_atlas": null,
  3792. "_id": ""
  3793. },
  3794. {
  3795. "__type__": "cc.PrefabInfo",
  3796. "root": {
  3797. "__id__": 1
  3798. },
  3799. "asset": {
  3800. "__id__": 0
  3801. },
  3802. "fileId": "57OCmntdFL5rwJxQVhWkvn",
  3803. "sync": false,
  3804. "_synced": {
  3805. "default": false,
  3806. "serializable": false
  3807. }
  3808. },
  3809. {
  3810. "__type__": "cc.Node",
  3811. "_name": "Label",
  3812. "_objFlags": 0,
  3813. "_parent": {
  3814. "__id__": 110
  3815. },
  3816. "_children": [],
  3817. "_active": true,
  3818. "_components": [
  3819. {
  3820. "__id__": 120
  3821. },
  3822. {
  3823. "__id__": 121
  3824. }
  3825. ],
  3826. "_prefab": {
  3827. "__id__": 122
  3828. },
  3829. "_lpos": {
  3830. "__type__": "cc.Vec3",
  3831. "x": 0,
  3832. "y": -91.996,
  3833. "z": 0
  3834. },
  3835. "_lrot": {
  3836. "__type__": "cc.Quat",
  3837. "x": 0,
  3838. "y": 0,
  3839. "z": 0,
  3840. "w": 1
  3841. },
  3842. "_lscale": {
  3843. "__type__": "cc.Vec3",
  3844. "x": 1,
  3845. "y": 1,
  3846. "z": 1
  3847. },
  3848. "_layer": 33554432,
  3849. "_euler": {
  3850. "__type__": "cc.Vec3",
  3851. "x": 0,
  3852. "y": 0,
  3853. "z": 0
  3854. },
  3855. "_id": ""
  3856. },
  3857. {
  3858. "__type__": "cc.UITransformComponent",
  3859. "_name": "Label<UITransformComponent>",
  3860. "_objFlags": 0,
  3861. "node": {
  3862. "__id__": 119
  3863. },
  3864. "_enabled": true,
  3865. "_priority": 0,
  3866. "_contentSize": {
  3867. "__type__": "cc.Size",
  3868. "width": 180,
  3869. "height": 40
  3870. },
  3871. "_anchorPoint": {
  3872. "__type__": "cc.Vec2",
  3873. "x": 0.5,
  3874. "y": 0.5
  3875. },
  3876. "_id": ""
  3877. },
  3878. {
  3879. "__type__": "cc.LabelComponent",
  3880. "_name": "Label<LabelComponent>",
  3881. "_objFlags": 0,
  3882. "node": {
  3883. "__id__": 119
  3884. },
  3885. "_enabled": true,
  3886. "_srcBlendFactor": 2,
  3887. "_dstBlendFactor": 4,
  3888. "_color": {
  3889. "__type__": "cc.Color",
  3890. "r": 255,
  3891. "g": 255,
  3892. "b": 255,
  3893. "a": 255
  3894. },
  3895. "_sharedMaterial": null,
  3896. "_useOriginalSize": true,
  3897. "_string": "游戏名有七个字",
  3898. "_horizontalAlign": 1,
  3899. "_verticalAlign": 1,
  3900. "_actualFontSize": 24,
  3901. "_fontSize": 24,
  3902. "_fontFamily": "Arial",
  3903. "_lineHeight": 40,
  3904. "_overflow": 1,
  3905. "_enableWrapText": false,
  3906. "_font": null,
  3907. "_isSystemFontUsed": true,
  3908. "_isItalic": false,
  3909. "_isBold": false,
  3910. "_isUnderline": false,
  3911. "_cacheMode": 0,
  3912. "_id": ""
  3913. },
  3914. {
  3915. "__type__": "cc.PrefabInfo",
  3916. "root": {
  3917. "__id__": 1
  3918. },
  3919. "asset": {
  3920. "__id__": 0
  3921. },
  3922. "fileId": "acKcW2rXlEmZdUiyTrtWD9",
  3923. "sync": false,
  3924. "_synced": {
  3925. "default": false,
  3926. "serializable": false
  3927. }
  3928. },
  3929. {
  3930. "__type__": "cc.UITransformComponent",
  3931. "_name": "ButtonDaochu1<UITransformComponent>",
  3932. "_objFlags": 0,
  3933. "node": {
  3934. "__id__": 110
  3935. },
  3936. "_enabled": true,
  3937. "_priority": 0,
  3938. "_contentSize": {
  3939. "__type__": "cc.Size",
  3940. "width": 198,
  3941. "height": 262
  3942. },
  3943. "_anchorPoint": {
  3944. "__type__": "cc.Vec2",
  3945. "x": 0.5,
  3946. "y": 0.5
  3947. },
  3948. "_id": ""
  3949. },
  3950. {
  3951. "__type__": "cc.SpriteComponent",
  3952. "_name": "ButtonDaochu1<SpriteComponent>",
  3953. "_objFlags": 0,
  3954. "node": {
  3955. "__id__": 110
  3956. },
  3957. "_enabled": true,
  3958. "_srcBlendFactor": 2,
  3959. "_dstBlendFactor": 4,
  3960. "_color": {
  3961. "__type__": "cc.Color",
  3962. "r": 255,
  3963. "g": 255,
  3964. "b": 255,
  3965. "a": 255
  3966. },
  3967. "_sharedMaterial": null,
  3968. "_spriteFrame": {
  3969. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  3970. },
  3971. "_type": 1,
  3972. "_fillType": 0,
  3973. "_sizeMode": 0,
  3974. "_fillCenter": {
  3975. "__type__": "cc.Vec2",
  3976. "x": 0,
  3977. "y": 0
  3978. },
  3979. "_fillStart": 0,
  3980. "_fillRange": 0,
  3981. "_isTrimmedMode": true,
  3982. "_useGrayscale": false,
  3983. "_atlas": null,
  3984. "_id": ""
  3985. },
  3986. {
  3987. "__type__": "cc.ButtonComponent",
  3988. "_name": "ButtonDaochu1<ButtonComponent>",
  3989. "_objFlags": 0,
  3990. "node": {
  3991. "__id__": 110
  3992. },
  3993. "_enabled": true,
  3994. "clickEvents": [],
  3995. "_interactable": true,
  3996. "_transition": 2,
  3997. "_normalColor": {
  3998. "__type__": "cc.Color",
  3999. "r": 214,
  4000. "g": 214,
  4001. "b": 214,
  4002. "a": 255
  4003. },
  4004. "_hoverColor": {
  4005. "__type__": "cc.Color",
  4006. "r": 211,
  4007. "g": 211,
  4008. "b": 211,
  4009. "a": 255
  4010. },
  4011. "_pressColor": {
  4012. "__type__": "cc.Color",
  4013. "r": 255,
  4014. "g": 255,
  4015. "b": 255,
  4016. "a": 255
  4017. },
  4018. "_disabledColor": {
  4019. "__type__": "cc.Color",
  4020. "r": 124,
  4021. "g": 124,
  4022. "b": 124,
  4023. "a": 255
  4024. },
  4025. "_normalSprite": {
  4026. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4027. },
  4028. "_hoverSprite": {
  4029. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4030. },
  4031. "_pressedSprite": {
  4032. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4033. },
  4034. "_disabledSprite": {
  4035. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4036. },
  4037. "_duration": 0.1,
  4038. "_zoomScale": 1.2,
  4039. "_target": {
  4040. "__id__": 110
  4041. },
  4042. "_id": ""
  4043. },
  4044. {
  4045. "__type__": "89bf827dnVIrYRVh5P9587o",
  4046. "_name": "",
  4047. "_objFlags": 0,
  4048. "node": {
  4049. "__id__": 110
  4050. },
  4051. "_enabled": true,
  4052. "icon": {
  4053. "__id__": 117
  4054. },
  4055. "label": {
  4056. "__id__": 121
  4057. },
  4058. "_id": ""
  4059. },
  4060. {
  4061. "__type__": "cc.PrefabInfo",
  4062. "root": {
  4063. "__id__": 1
  4064. },
  4065. "asset": {
  4066. "__id__": 0
  4067. },
  4068. "fileId": "6aIR2E26VCYaMkSRKuebbZ",
  4069. "sync": false,
  4070. "_synced": {
  4071. "default": false,
  4072. "serializable": false
  4073. }
  4074. },
  4075. {
  4076. "__type__": "cc.Node",
  4077. "_name": "ExportItem",
  4078. "_objFlags": 0,
  4079. "_parent": {
  4080. "__id__": 109
  4081. },
  4082. "_children": [
  4083. {
  4084. "__id__": 129
  4085. },
  4086. {
  4087. "__id__": 133
  4088. },
  4089. {
  4090. "__id__": 137
  4091. }
  4092. ],
  4093. "_active": true,
  4094. "_components": [
  4095. {
  4096. "__id__": 141
  4097. },
  4098. {
  4099. "__id__": 142
  4100. },
  4101. {
  4102. "__id__": 143
  4103. },
  4104. {
  4105. "__id__": 144
  4106. }
  4107. ],
  4108. "_prefab": {
  4109. "__id__": 145
  4110. },
  4111. "_lpos": {
  4112. "__type__": "cc.Vec3",
  4113. "x": -3,
  4114. "y": 146,
  4115. "z": 0
  4116. },
  4117. "_lrot": {
  4118. "__type__": "cc.Quat",
  4119. "x": 0,
  4120. "y": 0,
  4121. "z": 0,
  4122. "w": 1
  4123. },
  4124. "_lscale": {
  4125. "__type__": "cc.Vec3",
  4126. "x": 1,
  4127. "y": 1,
  4128. "z": 1
  4129. },
  4130. "_layer": 33554432,
  4131. "_euler": {
  4132. "__type__": "cc.Vec3",
  4133. "x": 0,
  4134. "y": 0,
  4135. "z": 0
  4136. },
  4137. "_id": ""
  4138. },
  4139. {
  4140. "__type__": "cc.Node",
  4141. "_name": "BG",
  4142. "_objFlags": 0,
  4143. "_parent": {
  4144. "__id__": 128
  4145. },
  4146. "_children": [],
  4147. "_active": true,
  4148. "_components": [
  4149. {
  4150. "__id__": 130
  4151. },
  4152. {
  4153. "__id__": 131
  4154. }
  4155. ],
  4156. "_prefab": {
  4157. "__id__": 132
  4158. },
  4159. "_lpos": {
  4160. "__type__": "cc.Vec3",
  4161. "x": 0,
  4162. "y": 32.826,
  4163. "z": 0
  4164. },
  4165. "_lrot": {
  4166. "__type__": "cc.Quat",
  4167. "x": 0,
  4168. "y": 0,
  4169. "z": 0,
  4170. "w": 1
  4171. },
  4172. "_lscale": {
  4173. "__type__": "cc.Vec3",
  4174. "x": 1,
  4175. "y": 1,
  4176. "z": 1
  4177. },
  4178. "_layer": 33554432,
  4179. "_euler": {
  4180. "__type__": "cc.Vec3",
  4181. "x": 0,
  4182. "y": 0,
  4183. "z": 0
  4184. },
  4185. "_id": ""
  4186. },
  4187. {
  4188. "__type__": "cc.UITransformComponent",
  4189. "_name": "BG<UITransformComponent>",
  4190. "_objFlags": 0,
  4191. "node": {
  4192. "__id__": 129
  4193. },
  4194. "_enabled": true,
  4195. "_priority": 0,
  4196. "_contentSize": {
  4197. "__type__": "cc.Size",
  4198. "width": 180,
  4199. "height": 180
  4200. },
  4201. "_anchorPoint": {
  4202. "__type__": "cc.Vec2",
  4203. "x": 0.5,
  4204. "y": 0.5
  4205. },
  4206. "_id": ""
  4207. },
  4208. {
  4209. "__type__": "cc.SpriteComponent",
  4210. "_name": "BG<SpriteComponent>",
  4211. "_objFlags": 0,
  4212. "node": {
  4213. "__id__": 129
  4214. },
  4215. "_enabled": true,
  4216. "_srcBlendFactor": 2,
  4217. "_dstBlendFactor": 4,
  4218. "_color": {
  4219. "__type__": "cc.Color",
  4220. "r": 255,
  4221. "g": 255,
  4222. "b": 255,
  4223. "a": 255
  4224. },
  4225. "_sharedMaterial": null,
  4226. "_spriteFrame": {
  4227. "__uuid__": "ad575607-a07e-453a-ad61-896cc376e54f@f9941"
  4228. },
  4229. "_type": 1,
  4230. "_fillType": 0,
  4231. "_sizeMode": 0,
  4232. "_fillCenter": {
  4233. "__type__": "cc.Vec2",
  4234. "x": 0,
  4235. "y": 0
  4236. },
  4237. "_fillStart": 0,
  4238. "_fillRange": 0,
  4239. "_isTrimmedMode": true,
  4240. "_useGrayscale": false,
  4241. "_atlas": null,
  4242. "_id": ""
  4243. },
  4244. {
  4245. "__type__": "cc.PrefabInfo",
  4246. "root": {
  4247. "__id__": 1
  4248. },
  4249. "asset": {
  4250. "__id__": 0
  4251. },
  4252. "fileId": "f90nw719lHtbHoTWZ+zdxH",
  4253. "sync": false,
  4254. "_synced": {
  4255. "default": false,
  4256. "serializable": false
  4257. }
  4258. },
  4259. {
  4260. "__type__": "cc.Node",
  4261. "_name": "IconDaochu",
  4262. "_objFlags": 0,
  4263. "_parent": {
  4264. "__id__": 128
  4265. },
  4266. "_children": [],
  4267. "_active": true,
  4268. "_components": [
  4269. {
  4270. "__id__": 134
  4271. },
  4272. {
  4273. "__id__": 135
  4274. }
  4275. ],
  4276. "_prefab": {
  4277. "__id__": 136
  4278. },
  4279. "_lpos": {
  4280. "__type__": "cc.Vec3",
  4281. "x": 0,
  4282. "y": 35.296,
  4283. "z": 0
  4284. },
  4285. "_lrot": {
  4286. "__type__": "cc.Quat",
  4287. "x": 0,
  4288. "y": 0,
  4289. "z": 0,
  4290. "w": 1
  4291. },
  4292. "_lscale": {
  4293. "__type__": "cc.Vec3",
  4294. "x": 1,
  4295. "y": 1,
  4296. "z": 1
  4297. },
  4298. "_layer": 1073741824,
  4299. "_euler": {
  4300. "__type__": "cc.Vec3",
  4301. "x": 0,
  4302. "y": 0,
  4303. "z": 0
  4304. },
  4305. "_id": ""
  4306. },
  4307. {
  4308. "__type__": "cc.UITransformComponent",
  4309. "_name": "IconDaochu<UITransformComponent>",
  4310. "_objFlags": 0,
  4311. "node": {
  4312. "__id__": 133
  4313. },
  4314. "_enabled": true,
  4315. "_priority": 0,
  4316. "_contentSize": {
  4317. "__type__": "cc.Size",
  4318. "width": 160,
  4319. "height": 160
  4320. },
  4321. "_anchorPoint": {
  4322. "__type__": "cc.Vec2",
  4323. "x": 0.5,
  4324. "y": 0.5
  4325. },
  4326. "_id": ""
  4327. },
  4328. {
  4329. "__type__": "cc.SpriteComponent",
  4330. "_name": "",
  4331. "_objFlags": 0,
  4332. "node": {
  4333. "__id__": 133
  4334. },
  4335. "_enabled": true,
  4336. "_srcBlendFactor": 2,
  4337. "_dstBlendFactor": 4,
  4338. "_color": {
  4339. "__type__": "cc.Color",
  4340. "r": 255,
  4341. "g": 255,
  4342. "b": 255,
  4343. "a": 255
  4344. },
  4345. "_sharedMaterial": null,
  4346. "_spriteFrame": null,
  4347. "_type": 0,
  4348. "_fillType": 0,
  4349. "_sizeMode": 0,
  4350. "_fillCenter": {
  4351. "__type__": "cc.Vec2",
  4352. "x": 0,
  4353. "y": 0
  4354. },
  4355. "_fillStart": 0,
  4356. "_fillRange": 0,
  4357. "_isTrimmedMode": true,
  4358. "_useGrayscale": false,
  4359. "_atlas": null,
  4360. "_id": ""
  4361. },
  4362. {
  4363. "__type__": "cc.PrefabInfo",
  4364. "root": {
  4365. "__id__": 1
  4366. },
  4367. "asset": {
  4368. "__id__": 0
  4369. },
  4370. "fileId": "57OCmntdFL5rwJxQVhWkvn",
  4371. "sync": false,
  4372. "_synced": {
  4373. "default": false,
  4374. "serializable": false
  4375. }
  4376. },
  4377. {
  4378. "__type__": "cc.Node",
  4379. "_name": "Label",
  4380. "_objFlags": 0,
  4381. "_parent": {
  4382. "__id__": 128
  4383. },
  4384. "_children": [],
  4385. "_active": true,
  4386. "_components": [
  4387. {
  4388. "__id__": 138
  4389. },
  4390. {
  4391. "__id__": 139
  4392. }
  4393. ],
  4394. "_prefab": {
  4395. "__id__": 140
  4396. },
  4397. "_lpos": {
  4398. "__type__": "cc.Vec3",
  4399. "x": 0,
  4400. "y": -91.996,
  4401. "z": 0
  4402. },
  4403. "_lrot": {
  4404. "__type__": "cc.Quat",
  4405. "x": 0,
  4406. "y": 0,
  4407. "z": 0,
  4408. "w": 1
  4409. },
  4410. "_lscale": {
  4411. "__type__": "cc.Vec3",
  4412. "x": 1,
  4413. "y": 1,
  4414. "z": 1
  4415. },
  4416. "_layer": 33554432,
  4417. "_euler": {
  4418. "__type__": "cc.Vec3",
  4419. "x": 0,
  4420. "y": 0,
  4421. "z": 0
  4422. },
  4423. "_id": ""
  4424. },
  4425. {
  4426. "__type__": "cc.UITransformComponent",
  4427. "_name": "Label<UITransformComponent>",
  4428. "_objFlags": 0,
  4429. "node": {
  4430. "__id__": 137
  4431. },
  4432. "_enabled": true,
  4433. "_priority": 0,
  4434. "_contentSize": {
  4435. "__type__": "cc.Size",
  4436. "width": 180,
  4437. "height": 40
  4438. },
  4439. "_anchorPoint": {
  4440. "__type__": "cc.Vec2",
  4441. "x": 0.5,
  4442. "y": 0.5
  4443. },
  4444. "_id": ""
  4445. },
  4446. {
  4447. "__type__": "cc.LabelComponent",
  4448. "_name": "Label<LabelComponent>",
  4449. "_objFlags": 0,
  4450. "node": {
  4451. "__id__": 137
  4452. },
  4453. "_enabled": true,
  4454. "_srcBlendFactor": 2,
  4455. "_dstBlendFactor": 4,
  4456. "_color": {
  4457. "__type__": "cc.Color",
  4458. "r": 255,
  4459. "g": 255,
  4460. "b": 255,
  4461. "a": 255
  4462. },
  4463. "_sharedMaterial": null,
  4464. "_useOriginalSize": true,
  4465. "_string": "游戏名有七个字",
  4466. "_horizontalAlign": 1,
  4467. "_verticalAlign": 1,
  4468. "_actualFontSize": 24,
  4469. "_fontSize": 24,
  4470. "_fontFamily": "Arial",
  4471. "_lineHeight": 40,
  4472. "_overflow": 1,
  4473. "_enableWrapText": false,
  4474. "_font": null,
  4475. "_isSystemFontUsed": true,
  4476. "_isItalic": false,
  4477. "_isBold": false,
  4478. "_isUnderline": false,
  4479. "_cacheMode": 0,
  4480. "_id": ""
  4481. },
  4482. {
  4483. "__type__": "cc.PrefabInfo",
  4484. "root": {
  4485. "__id__": 1
  4486. },
  4487. "asset": {
  4488. "__id__": 0
  4489. },
  4490. "fileId": "acKcW2rXlEmZdUiyTrtWD9",
  4491. "sync": false,
  4492. "_synced": {
  4493. "default": false,
  4494. "serializable": false
  4495. }
  4496. },
  4497. {
  4498. "__type__": "cc.UITransformComponent",
  4499. "_name": "ButtonDaochu1<UITransformComponent>",
  4500. "_objFlags": 0,
  4501. "node": {
  4502. "__id__": 128
  4503. },
  4504. "_enabled": true,
  4505. "_priority": 0,
  4506. "_contentSize": {
  4507. "__type__": "cc.Size",
  4508. "width": 198,
  4509. "height": 262
  4510. },
  4511. "_anchorPoint": {
  4512. "__type__": "cc.Vec2",
  4513. "x": 0.5,
  4514. "y": 0.5
  4515. },
  4516. "_id": ""
  4517. },
  4518. {
  4519. "__type__": "cc.SpriteComponent",
  4520. "_name": "ButtonDaochu1<SpriteComponent>",
  4521. "_objFlags": 0,
  4522. "node": {
  4523. "__id__": 128
  4524. },
  4525. "_enabled": true,
  4526. "_srcBlendFactor": 2,
  4527. "_dstBlendFactor": 4,
  4528. "_color": {
  4529. "__type__": "cc.Color",
  4530. "r": 255,
  4531. "g": 255,
  4532. "b": 255,
  4533. "a": 255
  4534. },
  4535. "_sharedMaterial": null,
  4536. "_spriteFrame": {
  4537. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4538. },
  4539. "_type": 1,
  4540. "_fillType": 0,
  4541. "_sizeMode": 0,
  4542. "_fillCenter": {
  4543. "__type__": "cc.Vec2",
  4544. "x": 0,
  4545. "y": 0
  4546. },
  4547. "_fillStart": 0,
  4548. "_fillRange": 0,
  4549. "_isTrimmedMode": true,
  4550. "_useGrayscale": false,
  4551. "_atlas": null,
  4552. "_id": ""
  4553. },
  4554. {
  4555. "__type__": "cc.ButtonComponent",
  4556. "_name": "ButtonDaochu1<ButtonComponent>",
  4557. "_objFlags": 0,
  4558. "node": {
  4559. "__id__": 128
  4560. },
  4561. "_enabled": true,
  4562. "clickEvents": [],
  4563. "_interactable": true,
  4564. "_transition": 2,
  4565. "_normalColor": {
  4566. "__type__": "cc.Color",
  4567. "r": 214,
  4568. "g": 214,
  4569. "b": 214,
  4570. "a": 255
  4571. },
  4572. "_hoverColor": {
  4573. "__type__": "cc.Color",
  4574. "r": 211,
  4575. "g": 211,
  4576. "b": 211,
  4577. "a": 255
  4578. },
  4579. "_pressColor": {
  4580. "__type__": "cc.Color",
  4581. "r": 255,
  4582. "g": 255,
  4583. "b": 255,
  4584. "a": 255
  4585. },
  4586. "_disabledColor": {
  4587. "__type__": "cc.Color",
  4588. "r": 124,
  4589. "g": 124,
  4590. "b": 124,
  4591. "a": 255
  4592. },
  4593. "_normalSprite": {
  4594. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4595. },
  4596. "_hoverSprite": {
  4597. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4598. },
  4599. "_pressedSprite": {
  4600. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4601. },
  4602. "_disabledSprite": {
  4603. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  4604. },
  4605. "_duration": 0.1,
  4606. "_zoomScale": 1.2,
  4607. "_target": {
  4608. "__id__": 128
  4609. },
  4610. "_id": ""
  4611. },
  4612. {
  4613. "__type__": "89bf827dnVIrYRVh5P9587o",
  4614. "_name": "",
  4615. "_objFlags": 0,
  4616. "node": {
  4617. "__id__": 128
  4618. },
  4619. "_enabled": true,
  4620. "icon": {
  4621. "__id__": 135
  4622. },
  4623. "label": {
  4624. "__id__": 139
  4625. },
  4626. "_id": ""
  4627. },
  4628. {
  4629. "__type__": "cc.PrefabInfo",
  4630. "root": {
  4631. "__id__": 1
  4632. },
  4633. "asset": {
  4634. "__id__": 0
  4635. },
  4636. "fileId": "6aIR2E26VCYaMkSRKuebbZ",
  4637. "sync": false,
  4638. "_synced": {
  4639. "default": false,
  4640. "serializable": false
  4641. }
  4642. },
  4643. {
  4644. "__type__": "cc.Node",
  4645. "_name": "ExportItem",
  4646. "_objFlags": 0,
  4647. "_parent": {
  4648. "__id__": 109
  4649. },
  4650. "_children": [
  4651. {
  4652. "__id__": 147
  4653. },
  4654. {
  4655. "__id__": 151
  4656. },
  4657. {
  4658. "__id__": 155
  4659. }
  4660. ],
  4661. "_active": true,
  4662. "_components": [
  4663. {
  4664. "__id__": 159
  4665. },
  4666. {
  4667. "__id__": 160
  4668. },
  4669. {
  4670. "__id__": 161
  4671. },
  4672. {
  4673. "__id__": 162
  4674. }
  4675. ],
  4676. "_prefab": {
  4677. "__id__": 163
  4678. },
  4679. "_lpos": {
  4680. "__type__": "cc.Vec3",
  4681. "x": 225,
  4682. "y": 146,
  4683. "z": 0
  4684. },
  4685. "_lrot": {
  4686. "__type__": "cc.Quat",
  4687. "x": 0,
  4688. "y": 0,
  4689. "z": 0,
  4690. "w": 1
  4691. },
  4692. "_lscale": {
  4693. "__type__": "cc.Vec3",
  4694. "x": 1,
  4695. "y": 1,
  4696. "z": 1
  4697. },
  4698. "_layer": 33554432,
  4699. "_euler": {
  4700. "__type__": "cc.Vec3",
  4701. "x": 0,
  4702. "y": 0,
  4703. "z": 0
  4704. },
  4705. "_id": ""
  4706. },
  4707. {
  4708. "__type__": "cc.Node",
  4709. "_name": "BG",
  4710. "_objFlags": 0,
  4711. "_parent": {
  4712. "__id__": 146
  4713. },
  4714. "_children": [],
  4715. "_active": true,
  4716. "_components": [
  4717. {
  4718. "__id__": 148
  4719. },
  4720. {
  4721. "__id__": 149
  4722. }
  4723. ],
  4724. "_prefab": {
  4725. "__id__": 150
  4726. },
  4727. "_lpos": {
  4728. "__type__": "cc.Vec3",
  4729. "x": 0,
  4730. "y": 32.826,
  4731. "z": 0
  4732. },
  4733. "_lrot": {
  4734. "__type__": "cc.Quat",
  4735. "x": 0,
  4736. "y": 0,
  4737. "z": 0,
  4738. "w": 1
  4739. },
  4740. "_lscale": {
  4741. "__type__": "cc.Vec3",
  4742. "x": 1,
  4743. "y": 1,
  4744. "z": 1
  4745. },
  4746. "_layer": 33554432,
  4747. "_euler": {
  4748. "__type__": "cc.Vec3",
  4749. "x": 0,
  4750. "y": 0,
  4751. "z": 0
  4752. },
  4753. "_id": ""
  4754. },
  4755. {
  4756. "__type__": "cc.UITransformComponent",
  4757. "_name": "BG<UITransformComponent>",
  4758. "_objFlags": 0,
  4759. "node": {
  4760. "__id__": 147
  4761. },
  4762. "_enabled": true,
  4763. "_priority": 0,
  4764. "_contentSize": {
  4765. "__type__": "cc.Size",
  4766. "width": 180,
  4767. "height": 180
  4768. },
  4769. "_anchorPoint": {
  4770. "__type__": "cc.Vec2",
  4771. "x": 0.5,
  4772. "y": 0.5
  4773. },
  4774. "_id": ""
  4775. },
  4776. {
  4777. "__type__": "cc.SpriteComponent",
  4778. "_name": "BG<SpriteComponent>",
  4779. "_objFlags": 0,
  4780. "node": {
  4781. "__id__": 147
  4782. },
  4783. "_enabled": true,
  4784. "_srcBlendFactor": 2,
  4785. "_dstBlendFactor": 4,
  4786. "_color": {
  4787. "__type__": "cc.Color",
  4788. "r": 255,
  4789. "g": 255,
  4790. "b": 255,
  4791. "a": 255
  4792. },
  4793. "_sharedMaterial": null,
  4794. "_spriteFrame": {
  4795. "__uuid__": "ad575607-a07e-453a-ad61-896cc376e54f@f9941"
  4796. },
  4797. "_type": 1,
  4798. "_fillType": 0,
  4799. "_sizeMode": 0,
  4800. "_fillCenter": {
  4801. "__type__": "cc.Vec2",
  4802. "x": 0,
  4803. "y": 0
  4804. },
  4805. "_fillStart": 0,
  4806. "_fillRange": 0,
  4807. "_isTrimmedMode": true,
  4808. "_useGrayscale": false,
  4809. "_atlas": null,
  4810. "_id": ""
  4811. },
  4812. {
  4813. "__type__": "cc.PrefabInfo",
  4814. "root": {
  4815. "__id__": 1
  4816. },
  4817. "asset": {
  4818. "__id__": 0
  4819. },
  4820. "fileId": "f90nw719lHtbHoTWZ+zdxH",
  4821. "sync": false,
  4822. "_synced": {
  4823. "default": false,
  4824. "serializable": false
  4825. }
  4826. },
  4827. {
  4828. "__type__": "cc.Node",
  4829. "_name": "IconDaochu",
  4830. "_objFlags": 0,
  4831. "_parent": {
  4832. "__id__": 146
  4833. },
  4834. "_children": [],
  4835. "_active": true,
  4836. "_components": [
  4837. {
  4838. "__id__": 152
  4839. },
  4840. {
  4841. "__id__": 153
  4842. }
  4843. ],
  4844. "_prefab": {
  4845. "__id__": 154
  4846. },
  4847. "_lpos": {
  4848. "__type__": "cc.Vec3",
  4849. "x": 0,
  4850. "y": 35.296,
  4851. "z": 0
  4852. },
  4853. "_lrot": {
  4854. "__type__": "cc.Quat",
  4855. "x": 0,
  4856. "y": 0,
  4857. "z": 0,
  4858. "w": 1
  4859. },
  4860. "_lscale": {
  4861. "__type__": "cc.Vec3",
  4862. "x": 1,
  4863. "y": 1,
  4864. "z": 1
  4865. },
  4866. "_layer": 1073741824,
  4867. "_euler": {
  4868. "__type__": "cc.Vec3",
  4869. "x": 0,
  4870. "y": 0,
  4871. "z": 0
  4872. },
  4873. "_id": ""
  4874. },
  4875. {
  4876. "__type__": "cc.UITransformComponent",
  4877. "_name": "IconDaochu<UITransformComponent>",
  4878. "_objFlags": 0,
  4879. "node": {
  4880. "__id__": 151
  4881. },
  4882. "_enabled": true,
  4883. "_priority": 0,
  4884. "_contentSize": {
  4885. "__type__": "cc.Size",
  4886. "width": 160,
  4887. "height": 160
  4888. },
  4889. "_anchorPoint": {
  4890. "__type__": "cc.Vec2",
  4891. "x": 0.5,
  4892. "y": 0.5
  4893. },
  4894. "_id": ""
  4895. },
  4896. {
  4897. "__type__": "cc.SpriteComponent",
  4898. "_name": "",
  4899. "_objFlags": 0,
  4900. "node": {
  4901. "__id__": 151
  4902. },
  4903. "_enabled": true,
  4904. "_srcBlendFactor": 2,
  4905. "_dstBlendFactor": 4,
  4906. "_color": {
  4907. "__type__": "cc.Color",
  4908. "r": 255,
  4909. "g": 255,
  4910. "b": 255,
  4911. "a": 255
  4912. },
  4913. "_sharedMaterial": null,
  4914. "_spriteFrame": null,
  4915. "_type": 0,
  4916. "_fillType": 0,
  4917. "_sizeMode": 0,
  4918. "_fillCenter": {
  4919. "__type__": "cc.Vec2",
  4920. "x": 0,
  4921. "y": 0
  4922. },
  4923. "_fillStart": 0,
  4924. "_fillRange": 0,
  4925. "_isTrimmedMode": true,
  4926. "_useGrayscale": false,
  4927. "_atlas": null,
  4928. "_id": ""
  4929. },
  4930. {
  4931. "__type__": "cc.PrefabInfo",
  4932. "root": {
  4933. "__id__": 1
  4934. },
  4935. "asset": {
  4936. "__id__": 0
  4937. },
  4938. "fileId": "57OCmntdFL5rwJxQVhWkvn",
  4939. "sync": false,
  4940. "_synced": {
  4941. "default": false,
  4942. "serializable": false
  4943. }
  4944. },
  4945. {
  4946. "__type__": "cc.Node",
  4947. "_name": "Label",
  4948. "_objFlags": 0,
  4949. "_parent": {
  4950. "__id__": 146
  4951. },
  4952. "_children": [],
  4953. "_active": true,
  4954. "_components": [
  4955. {
  4956. "__id__": 156
  4957. },
  4958. {
  4959. "__id__": 157
  4960. }
  4961. ],
  4962. "_prefab": {
  4963. "__id__": 158
  4964. },
  4965. "_lpos": {
  4966. "__type__": "cc.Vec3",
  4967. "x": 0,
  4968. "y": -91.996,
  4969. "z": 0
  4970. },
  4971. "_lrot": {
  4972. "__type__": "cc.Quat",
  4973. "x": 0,
  4974. "y": 0,
  4975. "z": 0,
  4976. "w": 1
  4977. },
  4978. "_lscale": {
  4979. "__type__": "cc.Vec3",
  4980. "x": 1,
  4981. "y": 1,
  4982. "z": 1
  4983. },
  4984. "_layer": 33554432,
  4985. "_euler": {
  4986. "__type__": "cc.Vec3",
  4987. "x": 0,
  4988. "y": 0,
  4989. "z": 0
  4990. },
  4991. "_id": ""
  4992. },
  4993. {
  4994. "__type__": "cc.UITransformComponent",
  4995. "_name": "Label<UITransformComponent>",
  4996. "_objFlags": 0,
  4997. "node": {
  4998. "__id__": 155
  4999. },
  5000. "_enabled": true,
  5001. "_priority": 0,
  5002. "_contentSize": {
  5003. "__type__": "cc.Size",
  5004. "width": 180,
  5005. "height": 40
  5006. },
  5007. "_anchorPoint": {
  5008. "__type__": "cc.Vec2",
  5009. "x": 0.5,
  5010. "y": 0.5
  5011. },
  5012. "_id": ""
  5013. },
  5014. {
  5015. "__type__": "cc.LabelComponent",
  5016. "_name": "Label<LabelComponent>",
  5017. "_objFlags": 0,
  5018. "node": {
  5019. "__id__": 155
  5020. },
  5021. "_enabled": true,
  5022. "_srcBlendFactor": 2,
  5023. "_dstBlendFactor": 4,
  5024. "_color": {
  5025. "__type__": "cc.Color",
  5026. "r": 255,
  5027. "g": 255,
  5028. "b": 255,
  5029. "a": 255
  5030. },
  5031. "_sharedMaterial": null,
  5032. "_useOriginalSize": true,
  5033. "_string": "游戏名有七个字",
  5034. "_horizontalAlign": 1,
  5035. "_verticalAlign": 1,
  5036. "_actualFontSize": 24,
  5037. "_fontSize": 24,
  5038. "_fontFamily": "Arial",
  5039. "_lineHeight": 40,
  5040. "_overflow": 1,
  5041. "_enableWrapText": false,
  5042. "_font": null,
  5043. "_isSystemFontUsed": true,
  5044. "_isItalic": false,
  5045. "_isBold": false,
  5046. "_isUnderline": false,
  5047. "_cacheMode": 0,
  5048. "_id": ""
  5049. },
  5050. {
  5051. "__type__": "cc.PrefabInfo",
  5052. "root": {
  5053. "__id__": 1
  5054. },
  5055. "asset": {
  5056. "__id__": 0
  5057. },
  5058. "fileId": "acKcW2rXlEmZdUiyTrtWD9",
  5059. "sync": false,
  5060. "_synced": {
  5061. "default": false,
  5062. "serializable": false
  5063. }
  5064. },
  5065. {
  5066. "__type__": "cc.UITransformComponent",
  5067. "_name": "ButtonDaochu1<UITransformComponent>",
  5068. "_objFlags": 0,
  5069. "node": {
  5070. "__id__": 146
  5071. },
  5072. "_enabled": true,
  5073. "_priority": 0,
  5074. "_contentSize": {
  5075. "__type__": "cc.Size",
  5076. "width": 198,
  5077. "height": 262
  5078. },
  5079. "_anchorPoint": {
  5080. "__type__": "cc.Vec2",
  5081. "x": 0.5,
  5082. "y": 0.5
  5083. },
  5084. "_id": ""
  5085. },
  5086. {
  5087. "__type__": "cc.SpriteComponent",
  5088. "_name": "ButtonDaochu1<SpriteComponent>",
  5089. "_objFlags": 0,
  5090. "node": {
  5091. "__id__": 146
  5092. },
  5093. "_enabled": true,
  5094. "_srcBlendFactor": 2,
  5095. "_dstBlendFactor": 4,
  5096. "_color": {
  5097. "__type__": "cc.Color",
  5098. "r": 255,
  5099. "g": 255,
  5100. "b": 255,
  5101. "a": 255
  5102. },
  5103. "_sharedMaterial": null,
  5104. "_spriteFrame": {
  5105. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5106. },
  5107. "_type": 1,
  5108. "_fillType": 0,
  5109. "_sizeMode": 0,
  5110. "_fillCenter": {
  5111. "__type__": "cc.Vec2",
  5112. "x": 0,
  5113. "y": 0
  5114. },
  5115. "_fillStart": 0,
  5116. "_fillRange": 0,
  5117. "_isTrimmedMode": true,
  5118. "_useGrayscale": false,
  5119. "_atlas": null,
  5120. "_id": ""
  5121. },
  5122. {
  5123. "__type__": "cc.ButtonComponent",
  5124. "_name": "ButtonDaochu1<ButtonComponent>",
  5125. "_objFlags": 0,
  5126. "node": {
  5127. "__id__": 146
  5128. },
  5129. "_enabled": true,
  5130. "clickEvents": [],
  5131. "_interactable": true,
  5132. "_transition": 2,
  5133. "_normalColor": {
  5134. "__type__": "cc.Color",
  5135. "r": 214,
  5136. "g": 214,
  5137. "b": 214,
  5138. "a": 255
  5139. },
  5140. "_hoverColor": {
  5141. "__type__": "cc.Color",
  5142. "r": 211,
  5143. "g": 211,
  5144. "b": 211,
  5145. "a": 255
  5146. },
  5147. "_pressColor": {
  5148. "__type__": "cc.Color",
  5149. "r": 255,
  5150. "g": 255,
  5151. "b": 255,
  5152. "a": 255
  5153. },
  5154. "_disabledColor": {
  5155. "__type__": "cc.Color",
  5156. "r": 124,
  5157. "g": 124,
  5158. "b": 124,
  5159. "a": 255
  5160. },
  5161. "_normalSprite": {
  5162. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5163. },
  5164. "_hoverSprite": {
  5165. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5166. },
  5167. "_pressedSprite": {
  5168. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5169. },
  5170. "_disabledSprite": {
  5171. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5172. },
  5173. "_duration": 0.1,
  5174. "_zoomScale": 1.2,
  5175. "_target": {
  5176. "__id__": 146
  5177. },
  5178. "_id": ""
  5179. },
  5180. {
  5181. "__type__": "89bf827dnVIrYRVh5P9587o",
  5182. "_name": "",
  5183. "_objFlags": 0,
  5184. "node": {
  5185. "__id__": 146
  5186. },
  5187. "_enabled": true,
  5188. "icon": {
  5189. "__id__": 153
  5190. },
  5191. "label": {
  5192. "__id__": 157
  5193. },
  5194. "_id": ""
  5195. },
  5196. {
  5197. "__type__": "cc.PrefabInfo",
  5198. "root": {
  5199. "__id__": 1
  5200. },
  5201. "asset": {
  5202. "__id__": 0
  5203. },
  5204. "fileId": "6aIR2E26VCYaMkSRKuebbZ",
  5205. "sync": false,
  5206. "_synced": {
  5207. "default": false,
  5208. "serializable": false
  5209. }
  5210. },
  5211. {
  5212. "__type__": "cc.Node",
  5213. "_name": "ExportItem",
  5214. "_objFlags": 0,
  5215. "_parent": {
  5216. "__id__": 109
  5217. },
  5218. "_children": [
  5219. {
  5220. "__id__": 165
  5221. },
  5222. {
  5223. "__id__": 169
  5224. },
  5225. {
  5226. "__id__": 173
  5227. }
  5228. ],
  5229. "_active": true,
  5230. "_components": [
  5231. {
  5232. "__id__": 177
  5233. },
  5234. {
  5235. "__id__": 178
  5236. },
  5237. {
  5238. "__id__": 179
  5239. },
  5240. {
  5241. "__id__": 180
  5242. }
  5243. ],
  5244. "_prefab": {
  5245. "__id__": 181
  5246. },
  5247. "_lpos": {
  5248. "__type__": "cc.Vec3",
  5249. "x": -231,
  5250. "y": -146,
  5251. "z": 0
  5252. },
  5253. "_lrot": {
  5254. "__type__": "cc.Quat",
  5255. "x": 0,
  5256. "y": 0,
  5257. "z": 0,
  5258. "w": 1
  5259. },
  5260. "_lscale": {
  5261. "__type__": "cc.Vec3",
  5262. "x": 1,
  5263. "y": 1,
  5264. "z": 1
  5265. },
  5266. "_layer": 33554432,
  5267. "_euler": {
  5268. "__type__": "cc.Vec3",
  5269. "x": 0,
  5270. "y": 0,
  5271. "z": 0
  5272. },
  5273. "_id": ""
  5274. },
  5275. {
  5276. "__type__": "cc.Node",
  5277. "_name": "BG",
  5278. "_objFlags": 0,
  5279. "_parent": {
  5280. "__id__": 164
  5281. },
  5282. "_children": [],
  5283. "_active": true,
  5284. "_components": [
  5285. {
  5286. "__id__": 166
  5287. },
  5288. {
  5289. "__id__": 167
  5290. }
  5291. ],
  5292. "_prefab": {
  5293. "__id__": 168
  5294. },
  5295. "_lpos": {
  5296. "__type__": "cc.Vec3",
  5297. "x": 0,
  5298. "y": 32.826,
  5299. "z": 0
  5300. },
  5301. "_lrot": {
  5302. "__type__": "cc.Quat",
  5303. "x": 0,
  5304. "y": 0,
  5305. "z": 0,
  5306. "w": 1
  5307. },
  5308. "_lscale": {
  5309. "__type__": "cc.Vec3",
  5310. "x": 1,
  5311. "y": 1,
  5312. "z": 1
  5313. },
  5314. "_layer": 33554432,
  5315. "_euler": {
  5316. "__type__": "cc.Vec3",
  5317. "x": 0,
  5318. "y": 0,
  5319. "z": 0
  5320. },
  5321. "_id": ""
  5322. },
  5323. {
  5324. "__type__": "cc.UITransformComponent",
  5325. "_name": "BG<UITransformComponent>",
  5326. "_objFlags": 0,
  5327. "node": {
  5328. "__id__": 165
  5329. },
  5330. "_enabled": true,
  5331. "_priority": 0,
  5332. "_contentSize": {
  5333. "__type__": "cc.Size",
  5334. "width": 180,
  5335. "height": 180
  5336. },
  5337. "_anchorPoint": {
  5338. "__type__": "cc.Vec2",
  5339. "x": 0.5,
  5340. "y": 0.5
  5341. },
  5342. "_id": ""
  5343. },
  5344. {
  5345. "__type__": "cc.SpriteComponent",
  5346. "_name": "BG<SpriteComponent>",
  5347. "_objFlags": 0,
  5348. "node": {
  5349. "__id__": 165
  5350. },
  5351. "_enabled": true,
  5352. "_srcBlendFactor": 2,
  5353. "_dstBlendFactor": 4,
  5354. "_color": {
  5355. "__type__": "cc.Color",
  5356. "r": 255,
  5357. "g": 255,
  5358. "b": 255,
  5359. "a": 255
  5360. },
  5361. "_sharedMaterial": null,
  5362. "_spriteFrame": {
  5363. "__uuid__": "ad575607-a07e-453a-ad61-896cc376e54f@f9941"
  5364. },
  5365. "_type": 1,
  5366. "_fillType": 0,
  5367. "_sizeMode": 0,
  5368. "_fillCenter": {
  5369. "__type__": "cc.Vec2",
  5370. "x": 0,
  5371. "y": 0
  5372. },
  5373. "_fillStart": 0,
  5374. "_fillRange": 0,
  5375. "_isTrimmedMode": true,
  5376. "_useGrayscale": false,
  5377. "_atlas": null,
  5378. "_id": ""
  5379. },
  5380. {
  5381. "__type__": "cc.PrefabInfo",
  5382. "root": {
  5383. "__id__": 1
  5384. },
  5385. "asset": {
  5386. "__id__": 0
  5387. },
  5388. "fileId": "f90nw719lHtbHoTWZ+zdxH",
  5389. "sync": false,
  5390. "_synced": {
  5391. "default": false,
  5392. "serializable": false
  5393. }
  5394. },
  5395. {
  5396. "__type__": "cc.Node",
  5397. "_name": "IconDaochu",
  5398. "_objFlags": 0,
  5399. "_parent": {
  5400. "__id__": 164
  5401. },
  5402. "_children": [],
  5403. "_active": true,
  5404. "_components": [
  5405. {
  5406. "__id__": 170
  5407. },
  5408. {
  5409. "__id__": 171
  5410. }
  5411. ],
  5412. "_prefab": {
  5413. "__id__": 172
  5414. },
  5415. "_lpos": {
  5416. "__type__": "cc.Vec3",
  5417. "x": 0,
  5418. "y": 35.296,
  5419. "z": 0
  5420. },
  5421. "_lrot": {
  5422. "__type__": "cc.Quat",
  5423. "x": 0,
  5424. "y": 0,
  5425. "z": 0,
  5426. "w": 1
  5427. },
  5428. "_lscale": {
  5429. "__type__": "cc.Vec3",
  5430. "x": 1,
  5431. "y": 1,
  5432. "z": 1
  5433. },
  5434. "_layer": 1073741824,
  5435. "_euler": {
  5436. "__type__": "cc.Vec3",
  5437. "x": 0,
  5438. "y": 0,
  5439. "z": 0
  5440. },
  5441. "_id": ""
  5442. },
  5443. {
  5444. "__type__": "cc.UITransformComponent",
  5445. "_name": "IconDaochu<UITransformComponent>",
  5446. "_objFlags": 0,
  5447. "node": {
  5448. "__id__": 169
  5449. },
  5450. "_enabled": true,
  5451. "_priority": 0,
  5452. "_contentSize": {
  5453. "__type__": "cc.Size",
  5454. "width": 160,
  5455. "height": 160
  5456. },
  5457. "_anchorPoint": {
  5458. "__type__": "cc.Vec2",
  5459. "x": 0.5,
  5460. "y": 0.5
  5461. },
  5462. "_id": ""
  5463. },
  5464. {
  5465. "__type__": "cc.SpriteComponent",
  5466. "_name": "",
  5467. "_objFlags": 0,
  5468. "node": {
  5469. "__id__": 169
  5470. },
  5471. "_enabled": true,
  5472. "_srcBlendFactor": 2,
  5473. "_dstBlendFactor": 4,
  5474. "_color": {
  5475. "__type__": "cc.Color",
  5476. "r": 255,
  5477. "g": 255,
  5478. "b": 255,
  5479. "a": 255
  5480. },
  5481. "_sharedMaterial": null,
  5482. "_spriteFrame": null,
  5483. "_type": 0,
  5484. "_fillType": 0,
  5485. "_sizeMode": 0,
  5486. "_fillCenter": {
  5487. "__type__": "cc.Vec2",
  5488. "x": 0,
  5489. "y": 0
  5490. },
  5491. "_fillStart": 0,
  5492. "_fillRange": 0,
  5493. "_isTrimmedMode": true,
  5494. "_useGrayscale": false,
  5495. "_atlas": null,
  5496. "_id": ""
  5497. },
  5498. {
  5499. "__type__": "cc.PrefabInfo",
  5500. "root": {
  5501. "__id__": 1
  5502. },
  5503. "asset": {
  5504. "__id__": 0
  5505. },
  5506. "fileId": "57OCmntdFL5rwJxQVhWkvn",
  5507. "sync": false,
  5508. "_synced": {
  5509. "default": false,
  5510. "serializable": false
  5511. }
  5512. },
  5513. {
  5514. "__type__": "cc.Node",
  5515. "_name": "Label",
  5516. "_objFlags": 0,
  5517. "_parent": {
  5518. "__id__": 164
  5519. },
  5520. "_children": [],
  5521. "_active": true,
  5522. "_components": [
  5523. {
  5524. "__id__": 174
  5525. },
  5526. {
  5527. "__id__": 175
  5528. }
  5529. ],
  5530. "_prefab": {
  5531. "__id__": 176
  5532. },
  5533. "_lpos": {
  5534. "__type__": "cc.Vec3",
  5535. "x": 0,
  5536. "y": -91.996,
  5537. "z": 0
  5538. },
  5539. "_lrot": {
  5540. "__type__": "cc.Quat",
  5541. "x": 0,
  5542. "y": 0,
  5543. "z": 0,
  5544. "w": 1
  5545. },
  5546. "_lscale": {
  5547. "__type__": "cc.Vec3",
  5548. "x": 1,
  5549. "y": 1,
  5550. "z": 1
  5551. },
  5552. "_layer": 33554432,
  5553. "_euler": {
  5554. "__type__": "cc.Vec3",
  5555. "x": 0,
  5556. "y": 0,
  5557. "z": 0
  5558. },
  5559. "_id": ""
  5560. },
  5561. {
  5562. "__type__": "cc.UITransformComponent",
  5563. "_name": "Label<UITransformComponent>",
  5564. "_objFlags": 0,
  5565. "node": {
  5566. "__id__": 173
  5567. },
  5568. "_enabled": true,
  5569. "_priority": 0,
  5570. "_contentSize": {
  5571. "__type__": "cc.Size",
  5572. "width": 180,
  5573. "height": 40
  5574. },
  5575. "_anchorPoint": {
  5576. "__type__": "cc.Vec2",
  5577. "x": 0.5,
  5578. "y": 0.5
  5579. },
  5580. "_id": ""
  5581. },
  5582. {
  5583. "__type__": "cc.LabelComponent",
  5584. "_name": "Label<LabelComponent>",
  5585. "_objFlags": 0,
  5586. "node": {
  5587. "__id__": 173
  5588. },
  5589. "_enabled": true,
  5590. "_srcBlendFactor": 2,
  5591. "_dstBlendFactor": 4,
  5592. "_color": {
  5593. "__type__": "cc.Color",
  5594. "r": 255,
  5595. "g": 255,
  5596. "b": 255,
  5597. "a": 255
  5598. },
  5599. "_sharedMaterial": null,
  5600. "_useOriginalSize": true,
  5601. "_string": "游戏名有七个字",
  5602. "_horizontalAlign": 1,
  5603. "_verticalAlign": 1,
  5604. "_actualFontSize": 24,
  5605. "_fontSize": 24,
  5606. "_fontFamily": "Arial",
  5607. "_lineHeight": 40,
  5608. "_overflow": 1,
  5609. "_enableWrapText": false,
  5610. "_font": null,
  5611. "_isSystemFontUsed": true,
  5612. "_isItalic": false,
  5613. "_isBold": false,
  5614. "_isUnderline": false,
  5615. "_cacheMode": 0,
  5616. "_id": ""
  5617. },
  5618. {
  5619. "__type__": "cc.PrefabInfo",
  5620. "root": {
  5621. "__id__": 1
  5622. },
  5623. "asset": {
  5624. "__id__": 0
  5625. },
  5626. "fileId": "acKcW2rXlEmZdUiyTrtWD9",
  5627. "sync": false,
  5628. "_synced": {
  5629. "default": false,
  5630. "serializable": false
  5631. }
  5632. },
  5633. {
  5634. "__type__": "cc.UITransformComponent",
  5635. "_name": "ButtonDaochu1<UITransformComponent>",
  5636. "_objFlags": 0,
  5637. "node": {
  5638. "__id__": 164
  5639. },
  5640. "_enabled": true,
  5641. "_priority": 0,
  5642. "_contentSize": {
  5643. "__type__": "cc.Size",
  5644. "width": 198,
  5645. "height": 262
  5646. },
  5647. "_anchorPoint": {
  5648. "__type__": "cc.Vec2",
  5649. "x": 0.5,
  5650. "y": 0.5
  5651. },
  5652. "_id": ""
  5653. },
  5654. {
  5655. "__type__": "cc.SpriteComponent",
  5656. "_name": "ButtonDaochu1<SpriteComponent>",
  5657. "_objFlags": 0,
  5658. "node": {
  5659. "__id__": 164
  5660. },
  5661. "_enabled": true,
  5662. "_srcBlendFactor": 2,
  5663. "_dstBlendFactor": 4,
  5664. "_color": {
  5665. "__type__": "cc.Color",
  5666. "r": 255,
  5667. "g": 255,
  5668. "b": 255,
  5669. "a": 255
  5670. },
  5671. "_sharedMaterial": null,
  5672. "_spriteFrame": {
  5673. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5674. },
  5675. "_type": 1,
  5676. "_fillType": 0,
  5677. "_sizeMode": 0,
  5678. "_fillCenter": {
  5679. "__type__": "cc.Vec2",
  5680. "x": 0,
  5681. "y": 0
  5682. },
  5683. "_fillStart": 0,
  5684. "_fillRange": 0,
  5685. "_isTrimmedMode": true,
  5686. "_useGrayscale": false,
  5687. "_atlas": null,
  5688. "_id": ""
  5689. },
  5690. {
  5691. "__type__": "cc.ButtonComponent",
  5692. "_name": "ButtonDaochu1<ButtonComponent>",
  5693. "_objFlags": 0,
  5694. "node": {
  5695. "__id__": 164
  5696. },
  5697. "_enabled": true,
  5698. "clickEvents": [],
  5699. "_interactable": true,
  5700. "_transition": 2,
  5701. "_normalColor": {
  5702. "__type__": "cc.Color",
  5703. "r": 214,
  5704. "g": 214,
  5705. "b": 214,
  5706. "a": 255
  5707. },
  5708. "_hoverColor": {
  5709. "__type__": "cc.Color",
  5710. "r": 211,
  5711. "g": 211,
  5712. "b": 211,
  5713. "a": 255
  5714. },
  5715. "_pressColor": {
  5716. "__type__": "cc.Color",
  5717. "r": 255,
  5718. "g": 255,
  5719. "b": 255,
  5720. "a": 255
  5721. },
  5722. "_disabledColor": {
  5723. "__type__": "cc.Color",
  5724. "r": 124,
  5725. "g": 124,
  5726. "b": 124,
  5727. "a": 255
  5728. },
  5729. "_normalSprite": {
  5730. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5731. },
  5732. "_hoverSprite": {
  5733. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5734. },
  5735. "_pressedSprite": {
  5736. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5737. },
  5738. "_disabledSprite": {
  5739. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  5740. },
  5741. "_duration": 0.1,
  5742. "_zoomScale": 1.2,
  5743. "_target": {
  5744. "__id__": 164
  5745. },
  5746. "_id": ""
  5747. },
  5748. {
  5749. "__type__": "89bf827dnVIrYRVh5P9587o",
  5750. "_name": "",
  5751. "_objFlags": 0,
  5752. "node": {
  5753. "__id__": 164
  5754. },
  5755. "_enabled": true,
  5756. "icon": {
  5757. "__id__": 171
  5758. },
  5759. "label": {
  5760. "__id__": 175
  5761. },
  5762. "_id": ""
  5763. },
  5764. {
  5765. "__type__": "cc.PrefabInfo",
  5766. "root": {
  5767. "__id__": 1
  5768. },
  5769. "asset": {
  5770. "__id__": 0
  5771. },
  5772. "fileId": "6aIR2E26VCYaMkSRKuebbZ",
  5773. "sync": false,
  5774. "_synced": {
  5775. "default": false,
  5776. "serializable": false
  5777. }
  5778. },
  5779. {
  5780. "__type__": "cc.Node",
  5781. "_name": "ExportItem",
  5782. "_objFlags": 0,
  5783. "_parent": {
  5784. "__id__": 109
  5785. },
  5786. "_children": [
  5787. {
  5788. "__id__": 183
  5789. },
  5790. {
  5791. "__id__": 187
  5792. },
  5793. {
  5794. "__id__": 191
  5795. }
  5796. ],
  5797. "_active": true,
  5798. "_components": [
  5799. {
  5800. "__id__": 195
  5801. },
  5802. {
  5803. "__id__": 196
  5804. },
  5805. {
  5806. "__id__": 197
  5807. },
  5808. {
  5809. "__id__": 198
  5810. }
  5811. ],
  5812. "_prefab": {
  5813. "__id__": 199
  5814. },
  5815. "_lpos": {
  5816. "__type__": "cc.Vec3",
  5817. "x": -3,
  5818. "y": -146,
  5819. "z": 0
  5820. },
  5821. "_lrot": {
  5822. "__type__": "cc.Quat",
  5823. "x": 0,
  5824. "y": 0,
  5825. "z": 0,
  5826. "w": 1
  5827. },
  5828. "_lscale": {
  5829. "__type__": "cc.Vec3",
  5830. "x": 1,
  5831. "y": 1,
  5832. "z": 1
  5833. },
  5834. "_layer": 33554432,
  5835. "_euler": {
  5836. "__type__": "cc.Vec3",
  5837. "x": 0,
  5838. "y": 0,
  5839. "z": 0
  5840. },
  5841. "_id": ""
  5842. },
  5843. {
  5844. "__type__": "cc.Node",
  5845. "_name": "BG",
  5846. "_objFlags": 0,
  5847. "_parent": {
  5848. "__id__": 182
  5849. },
  5850. "_children": [],
  5851. "_active": true,
  5852. "_components": [
  5853. {
  5854. "__id__": 184
  5855. },
  5856. {
  5857. "__id__": 185
  5858. }
  5859. ],
  5860. "_prefab": {
  5861. "__id__": 186
  5862. },
  5863. "_lpos": {
  5864. "__type__": "cc.Vec3",
  5865. "x": 0,
  5866. "y": 32.826,
  5867. "z": 0
  5868. },
  5869. "_lrot": {
  5870. "__type__": "cc.Quat",
  5871. "x": 0,
  5872. "y": 0,
  5873. "z": 0,
  5874. "w": 1
  5875. },
  5876. "_lscale": {
  5877. "__type__": "cc.Vec3",
  5878. "x": 1,
  5879. "y": 1,
  5880. "z": 1
  5881. },
  5882. "_layer": 33554432,
  5883. "_euler": {
  5884. "__type__": "cc.Vec3",
  5885. "x": 0,
  5886. "y": 0,
  5887. "z": 0
  5888. },
  5889. "_id": ""
  5890. },
  5891. {
  5892. "__type__": "cc.UITransformComponent",
  5893. "_name": "BG<UITransformComponent>",
  5894. "_objFlags": 0,
  5895. "node": {
  5896. "__id__": 183
  5897. },
  5898. "_enabled": true,
  5899. "_priority": 0,
  5900. "_contentSize": {
  5901. "__type__": "cc.Size",
  5902. "width": 180,
  5903. "height": 180
  5904. },
  5905. "_anchorPoint": {
  5906. "__type__": "cc.Vec2",
  5907. "x": 0.5,
  5908. "y": 0.5
  5909. },
  5910. "_id": ""
  5911. },
  5912. {
  5913. "__type__": "cc.SpriteComponent",
  5914. "_name": "BG<SpriteComponent>",
  5915. "_objFlags": 0,
  5916. "node": {
  5917. "__id__": 183
  5918. },
  5919. "_enabled": true,
  5920. "_srcBlendFactor": 2,
  5921. "_dstBlendFactor": 4,
  5922. "_color": {
  5923. "__type__": "cc.Color",
  5924. "r": 255,
  5925. "g": 255,
  5926. "b": 255,
  5927. "a": 255
  5928. },
  5929. "_sharedMaterial": null,
  5930. "_spriteFrame": {
  5931. "__uuid__": "ad575607-a07e-453a-ad61-896cc376e54f@f9941"
  5932. },
  5933. "_type": 1,
  5934. "_fillType": 0,
  5935. "_sizeMode": 0,
  5936. "_fillCenter": {
  5937. "__type__": "cc.Vec2",
  5938. "x": 0,
  5939. "y": 0
  5940. },
  5941. "_fillStart": 0,
  5942. "_fillRange": 0,
  5943. "_isTrimmedMode": true,
  5944. "_useGrayscale": false,
  5945. "_atlas": null,
  5946. "_id": ""
  5947. },
  5948. {
  5949. "__type__": "cc.PrefabInfo",
  5950. "root": {
  5951. "__id__": 1
  5952. },
  5953. "asset": {
  5954. "__id__": 0
  5955. },
  5956. "fileId": "f90nw719lHtbHoTWZ+zdxH",
  5957. "sync": false,
  5958. "_synced": {
  5959. "default": false,
  5960. "serializable": false
  5961. }
  5962. },
  5963. {
  5964. "__type__": "cc.Node",
  5965. "_name": "IconDaochu",
  5966. "_objFlags": 0,
  5967. "_parent": {
  5968. "__id__": 182
  5969. },
  5970. "_children": [],
  5971. "_active": true,
  5972. "_components": [
  5973. {
  5974. "__id__": 188
  5975. },
  5976. {
  5977. "__id__": 189
  5978. }
  5979. ],
  5980. "_prefab": {
  5981. "__id__": 190
  5982. },
  5983. "_lpos": {
  5984. "__type__": "cc.Vec3",
  5985. "x": 0,
  5986. "y": 35.296,
  5987. "z": 0
  5988. },
  5989. "_lrot": {
  5990. "__type__": "cc.Quat",
  5991. "x": 0,
  5992. "y": 0,
  5993. "z": 0,
  5994. "w": 1
  5995. },
  5996. "_lscale": {
  5997. "__type__": "cc.Vec3",
  5998. "x": 1,
  5999. "y": 1,
  6000. "z": 1
  6001. },
  6002. "_layer": 1073741824,
  6003. "_euler": {
  6004. "__type__": "cc.Vec3",
  6005. "x": 0,
  6006. "y": 0,
  6007. "z": 0
  6008. },
  6009. "_id": ""
  6010. },
  6011. {
  6012. "__type__": "cc.UITransformComponent",
  6013. "_name": "IconDaochu<UITransformComponent>",
  6014. "_objFlags": 0,
  6015. "node": {
  6016. "__id__": 187
  6017. },
  6018. "_enabled": true,
  6019. "_priority": 0,
  6020. "_contentSize": {
  6021. "__type__": "cc.Size",
  6022. "width": 160,
  6023. "height": 160
  6024. },
  6025. "_anchorPoint": {
  6026. "__type__": "cc.Vec2",
  6027. "x": 0.5,
  6028. "y": 0.5
  6029. },
  6030. "_id": ""
  6031. },
  6032. {
  6033. "__type__": "cc.SpriteComponent",
  6034. "_name": "",
  6035. "_objFlags": 0,
  6036. "node": {
  6037. "__id__": 187
  6038. },
  6039. "_enabled": true,
  6040. "_srcBlendFactor": 2,
  6041. "_dstBlendFactor": 4,
  6042. "_color": {
  6043. "__type__": "cc.Color",
  6044. "r": 255,
  6045. "g": 255,
  6046. "b": 255,
  6047. "a": 255
  6048. },
  6049. "_sharedMaterial": null,
  6050. "_spriteFrame": null,
  6051. "_type": 0,
  6052. "_fillType": 0,
  6053. "_sizeMode": 0,
  6054. "_fillCenter": {
  6055. "__type__": "cc.Vec2",
  6056. "x": 0,
  6057. "y": 0
  6058. },
  6059. "_fillStart": 0,
  6060. "_fillRange": 0,
  6061. "_isTrimmedMode": true,
  6062. "_useGrayscale": false,
  6063. "_atlas": null,
  6064. "_id": ""
  6065. },
  6066. {
  6067. "__type__": "cc.PrefabInfo",
  6068. "root": {
  6069. "__id__": 1
  6070. },
  6071. "asset": {
  6072. "__id__": 0
  6073. },
  6074. "fileId": "57OCmntdFL5rwJxQVhWkvn",
  6075. "sync": false,
  6076. "_synced": {
  6077. "default": false,
  6078. "serializable": false
  6079. }
  6080. },
  6081. {
  6082. "__type__": "cc.Node",
  6083. "_name": "Label",
  6084. "_objFlags": 0,
  6085. "_parent": {
  6086. "__id__": 182
  6087. },
  6088. "_children": [],
  6089. "_active": true,
  6090. "_components": [
  6091. {
  6092. "__id__": 192
  6093. },
  6094. {
  6095. "__id__": 193
  6096. }
  6097. ],
  6098. "_prefab": {
  6099. "__id__": 194
  6100. },
  6101. "_lpos": {
  6102. "__type__": "cc.Vec3",
  6103. "x": 0,
  6104. "y": -91.996,
  6105. "z": 0
  6106. },
  6107. "_lrot": {
  6108. "__type__": "cc.Quat",
  6109. "x": 0,
  6110. "y": 0,
  6111. "z": 0,
  6112. "w": 1
  6113. },
  6114. "_lscale": {
  6115. "__type__": "cc.Vec3",
  6116. "x": 1,
  6117. "y": 1,
  6118. "z": 1
  6119. },
  6120. "_layer": 33554432,
  6121. "_euler": {
  6122. "__type__": "cc.Vec3",
  6123. "x": 0,
  6124. "y": 0,
  6125. "z": 0
  6126. },
  6127. "_id": ""
  6128. },
  6129. {
  6130. "__type__": "cc.UITransformComponent",
  6131. "_name": "Label<UITransformComponent>",
  6132. "_objFlags": 0,
  6133. "node": {
  6134. "__id__": 191
  6135. },
  6136. "_enabled": true,
  6137. "_priority": 0,
  6138. "_contentSize": {
  6139. "__type__": "cc.Size",
  6140. "width": 180,
  6141. "height": 40
  6142. },
  6143. "_anchorPoint": {
  6144. "__type__": "cc.Vec2",
  6145. "x": 0.5,
  6146. "y": 0.5
  6147. },
  6148. "_id": ""
  6149. },
  6150. {
  6151. "__type__": "cc.LabelComponent",
  6152. "_name": "Label<LabelComponent>",
  6153. "_objFlags": 0,
  6154. "node": {
  6155. "__id__": 191
  6156. },
  6157. "_enabled": true,
  6158. "_srcBlendFactor": 2,
  6159. "_dstBlendFactor": 4,
  6160. "_color": {
  6161. "__type__": "cc.Color",
  6162. "r": 255,
  6163. "g": 255,
  6164. "b": 255,
  6165. "a": 255
  6166. },
  6167. "_sharedMaterial": null,
  6168. "_useOriginalSize": true,
  6169. "_string": "游戏名有七个字",
  6170. "_horizontalAlign": 1,
  6171. "_verticalAlign": 1,
  6172. "_actualFontSize": 24,
  6173. "_fontSize": 24,
  6174. "_fontFamily": "Arial",
  6175. "_lineHeight": 40,
  6176. "_overflow": 1,
  6177. "_enableWrapText": false,
  6178. "_font": null,
  6179. "_isSystemFontUsed": true,
  6180. "_isItalic": false,
  6181. "_isBold": false,
  6182. "_isUnderline": false,
  6183. "_cacheMode": 0,
  6184. "_id": ""
  6185. },
  6186. {
  6187. "__type__": "cc.PrefabInfo",
  6188. "root": {
  6189. "__id__": 1
  6190. },
  6191. "asset": {
  6192. "__id__": 0
  6193. },
  6194. "fileId": "acKcW2rXlEmZdUiyTrtWD9",
  6195. "sync": false,
  6196. "_synced": {
  6197. "default": false,
  6198. "serializable": false
  6199. }
  6200. },
  6201. {
  6202. "__type__": "cc.UITransformComponent",
  6203. "_name": "ButtonDaochu1<UITransformComponent>",
  6204. "_objFlags": 0,
  6205. "node": {
  6206. "__id__": 182
  6207. },
  6208. "_enabled": true,
  6209. "_priority": 0,
  6210. "_contentSize": {
  6211. "__type__": "cc.Size",
  6212. "width": 198,
  6213. "height": 262
  6214. },
  6215. "_anchorPoint": {
  6216. "__type__": "cc.Vec2",
  6217. "x": 0.5,
  6218. "y": 0.5
  6219. },
  6220. "_id": ""
  6221. },
  6222. {
  6223. "__type__": "cc.SpriteComponent",
  6224. "_name": "ButtonDaochu1<SpriteComponent>",
  6225. "_objFlags": 0,
  6226. "node": {
  6227. "__id__": 182
  6228. },
  6229. "_enabled": true,
  6230. "_srcBlendFactor": 2,
  6231. "_dstBlendFactor": 4,
  6232. "_color": {
  6233. "__type__": "cc.Color",
  6234. "r": 255,
  6235. "g": 255,
  6236. "b": 255,
  6237. "a": 255
  6238. },
  6239. "_sharedMaterial": null,
  6240. "_spriteFrame": {
  6241. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6242. },
  6243. "_type": 1,
  6244. "_fillType": 0,
  6245. "_sizeMode": 0,
  6246. "_fillCenter": {
  6247. "__type__": "cc.Vec2",
  6248. "x": 0,
  6249. "y": 0
  6250. },
  6251. "_fillStart": 0,
  6252. "_fillRange": 0,
  6253. "_isTrimmedMode": true,
  6254. "_useGrayscale": false,
  6255. "_atlas": null,
  6256. "_id": ""
  6257. },
  6258. {
  6259. "__type__": "cc.ButtonComponent",
  6260. "_name": "ButtonDaochu1<ButtonComponent>",
  6261. "_objFlags": 0,
  6262. "node": {
  6263. "__id__": 182
  6264. },
  6265. "_enabled": true,
  6266. "clickEvents": [],
  6267. "_interactable": true,
  6268. "_transition": 2,
  6269. "_normalColor": {
  6270. "__type__": "cc.Color",
  6271. "r": 214,
  6272. "g": 214,
  6273. "b": 214,
  6274. "a": 255
  6275. },
  6276. "_hoverColor": {
  6277. "__type__": "cc.Color",
  6278. "r": 211,
  6279. "g": 211,
  6280. "b": 211,
  6281. "a": 255
  6282. },
  6283. "_pressColor": {
  6284. "__type__": "cc.Color",
  6285. "r": 255,
  6286. "g": 255,
  6287. "b": 255,
  6288. "a": 255
  6289. },
  6290. "_disabledColor": {
  6291. "__type__": "cc.Color",
  6292. "r": 124,
  6293. "g": 124,
  6294. "b": 124,
  6295. "a": 255
  6296. },
  6297. "_normalSprite": {
  6298. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6299. },
  6300. "_hoverSprite": {
  6301. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6302. },
  6303. "_pressedSprite": {
  6304. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6305. },
  6306. "_disabledSprite": {
  6307. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6308. },
  6309. "_duration": 0.1,
  6310. "_zoomScale": 1.2,
  6311. "_target": {
  6312. "__id__": 182
  6313. },
  6314. "_id": ""
  6315. },
  6316. {
  6317. "__type__": "89bf827dnVIrYRVh5P9587o",
  6318. "_name": "",
  6319. "_objFlags": 0,
  6320. "node": {
  6321. "__id__": 182
  6322. },
  6323. "_enabled": true,
  6324. "icon": {
  6325. "__id__": 189
  6326. },
  6327. "label": {
  6328. "__id__": 193
  6329. },
  6330. "_id": ""
  6331. },
  6332. {
  6333. "__type__": "cc.PrefabInfo",
  6334. "root": {
  6335. "__id__": 1
  6336. },
  6337. "asset": {
  6338. "__id__": 0
  6339. },
  6340. "fileId": "6aIR2E26VCYaMkSRKuebbZ",
  6341. "sync": false,
  6342. "_synced": {
  6343. "default": false,
  6344. "serializable": false
  6345. }
  6346. },
  6347. {
  6348. "__type__": "cc.Node",
  6349. "_name": "ExportItem",
  6350. "_objFlags": 0,
  6351. "_parent": {
  6352. "__id__": 109
  6353. },
  6354. "_children": [
  6355. {
  6356. "__id__": 201
  6357. },
  6358. {
  6359. "__id__": 205
  6360. },
  6361. {
  6362. "__id__": 209
  6363. }
  6364. ],
  6365. "_active": true,
  6366. "_components": [
  6367. {
  6368. "__id__": 213
  6369. },
  6370. {
  6371. "__id__": 214
  6372. },
  6373. {
  6374. "__id__": 215
  6375. },
  6376. {
  6377. "__id__": 216
  6378. }
  6379. ],
  6380. "_prefab": {
  6381. "__id__": 217
  6382. },
  6383. "_lpos": {
  6384. "__type__": "cc.Vec3",
  6385. "x": 225,
  6386. "y": -146,
  6387. "z": 0
  6388. },
  6389. "_lrot": {
  6390. "__type__": "cc.Quat",
  6391. "x": 0,
  6392. "y": 0,
  6393. "z": 0,
  6394. "w": 1
  6395. },
  6396. "_lscale": {
  6397. "__type__": "cc.Vec3",
  6398. "x": 1,
  6399. "y": 1,
  6400. "z": 1
  6401. },
  6402. "_layer": 33554432,
  6403. "_euler": {
  6404. "__type__": "cc.Vec3",
  6405. "x": 0,
  6406. "y": 0,
  6407. "z": 0
  6408. },
  6409. "_id": ""
  6410. },
  6411. {
  6412. "__type__": "cc.Node",
  6413. "_name": "BG",
  6414. "_objFlags": 0,
  6415. "_parent": {
  6416. "__id__": 200
  6417. },
  6418. "_children": [],
  6419. "_active": true,
  6420. "_components": [
  6421. {
  6422. "__id__": 202
  6423. },
  6424. {
  6425. "__id__": 203
  6426. }
  6427. ],
  6428. "_prefab": {
  6429. "__id__": 204
  6430. },
  6431. "_lpos": {
  6432. "__type__": "cc.Vec3",
  6433. "x": 0,
  6434. "y": 32.826,
  6435. "z": 0
  6436. },
  6437. "_lrot": {
  6438. "__type__": "cc.Quat",
  6439. "x": 0,
  6440. "y": 0,
  6441. "z": 0,
  6442. "w": 1
  6443. },
  6444. "_lscale": {
  6445. "__type__": "cc.Vec3",
  6446. "x": 1,
  6447. "y": 1,
  6448. "z": 1
  6449. },
  6450. "_layer": 33554432,
  6451. "_euler": {
  6452. "__type__": "cc.Vec3",
  6453. "x": 0,
  6454. "y": 0,
  6455. "z": 0
  6456. },
  6457. "_id": ""
  6458. },
  6459. {
  6460. "__type__": "cc.UITransformComponent",
  6461. "_name": "BG<UITransformComponent>",
  6462. "_objFlags": 0,
  6463. "node": {
  6464. "__id__": 201
  6465. },
  6466. "_enabled": true,
  6467. "_priority": 0,
  6468. "_contentSize": {
  6469. "__type__": "cc.Size",
  6470. "width": 180,
  6471. "height": 180
  6472. },
  6473. "_anchorPoint": {
  6474. "__type__": "cc.Vec2",
  6475. "x": 0.5,
  6476. "y": 0.5
  6477. },
  6478. "_id": ""
  6479. },
  6480. {
  6481. "__type__": "cc.SpriteComponent",
  6482. "_name": "BG<SpriteComponent>",
  6483. "_objFlags": 0,
  6484. "node": {
  6485. "__id__": 201
  6486. },
  6487. "_enabled": true,
  6488. "_srcBlendFactor": 2,
  6489. "_dstBlendFactor": 4,
  6490. "_color": {
  6491. "__type__": "cc.Color",
  6492. "r": 255,
  6493. "g": 255,
  6494. "b": 255,
  6495. "a": 255
  6496. },
  6497. "_sharedMaterial": null,
  6498. "_spriteFrame": {
  6499. "__uuid__": "ad575607-a07e-453a-ad61-896cc376e54f@f9941"
  6500. },
  6501. "_type": 1,
  6502. "_fillType": 0,
  6503. "_sizeMode": 0,
  6504. "_fillCenter": {
  6505. "__type__": "cc.Vec2",
  6506. "x": 0,
  6507. "y": 0
  6508. },
  6509. "_fillStart": 0,
  6510. "_fillRange": 0,
  6511. "_isTrimmedMode": true,
  6512. "_useGrayscale": false,
  6513. "_atlas": null,
  6514. "_id": ""
  6515. },
  6516. {
  6517. "__type__": "cc.PrefabInfo",
  6518. "root": {
  6519. "__id__": 1
  6520. },
  6521. "asset": {
  6522. "__id__": 0
  6523. },
  6524. "fileId": "f90nw719lHtbHoTWZ+zdxH",
  6525. "sync": false,
  6526. "_synced": {
  6527. "default": false,
  6528. "serializable": false
  6529. }
  6530. },
  6531. {
  6532. "__type__": "cc.Node",
  6533. "_name": "IconDaochu",
  6534. "_objFlags": 0,
  6535. "_parent": {
  6536. "__id__": 200
  6537. },
  6538. "_children": [],
  6539. "_active": true,
  6540. "_components": [
  6541. {
  6542. "__id__": 206
  6543. },
  6544. {
  6545. "__id__": 207
  6546. }
  6547. ],
  6548. "_prefab": {
  6549. "__id__": 208
  6550. },
  6551. "_lpos": {
  6552. "__type__": "cc.Vec3",
  6553. "x": 0,
  6554. "y": 35.296,
  6555. "z": 0
  6556. },
  6557. "_lrot": {
  6558. "__type__": "cc.Quat",
  6559. "x": 0,
  6560. "y": 0,
  6561. "z": 0,
  6562. "w": 1
  6563. },
  6564. "_lscale": {
  6565. "__type__": "cc.Vec3",
  6566. "x": 1,
  6567. "y": 1,
  6568. "z": 1
  6569. },
  6570. "_layer": 1073741824,
  6571. "_euler": {
  6572. "__type__": "cc.Vec3",
  6573. "x": 0,
  6574. "y": 0,
  6575. "z": 0
  6576. },
  6577. "_id": ""
  6578. },
  6579. {
  6580. "__type__": "cc.UITransformComponent",
  6581. "_name": "IconDaochu<UITransformComponent>",
  6582. "_objFlags": 0,
  6583. "node": {
  6584. "__id__": 205
  6585. },
  6586. "_enabled": true,
  6587. "_priority": 0,
  6588. "_contentSize": {
  6589. "__type__": "cc.Size",
  6590. "width": 160,
  6591. "height": 160
  6592. },
  6593. "_anchorPoint": {
  6594. "__type__": "cc.Vec2",
  6595. "x": 0.5,
  6596. "y": 0.5
  6597. },
  6598. "_id": ""
  6599. },
  6600. {
  6601. "__type__": "cc.SpriteComponent",
  6602. "_name": "",
  6603. "_objFlags": 0,
  6604. "node": {
  6605. "__id__": 205
  6606. },
  6607. "_enabled": true,
  6608. "_srcBlendFactor": 2,
  6609. "_dstBlendFactor": 4,
  6610. "_color": {
  6611. "__type__": "cc.Color",
  6612. "r": 255,
  6613. "g": 255,
  6614. "b": 255,
  6615. "a": 255
  6616. },
  6617. "_sharedMaterial": null,
  6618. "_spriteFrame": null,
  6619. "_type": 0,
  6620. "_fillType": 0,
  6621. "_sizeMode": 0,
  6622. "_fillCenter": {
  6623. "__type__": "cc.Vec2",
  6624. "x": 0,
  6625. "y": 0
  6626. },
  6627. "_fillStart": 0,
  6628. "_fillRange": 0,
  6629. "_isTrimmedMode": true,
  6630. "_useGrayscale": false,
  6631. "_atlas": null,
  6632. "_id": ""
  6633. },
  6634. {
  6635. "__type__": "cc.PrefabInfo",
  6636. "root": {
  6637. "__id__": 1
  6638. },
  6639. "asset": {
  6640. "__id__": 0
  6641. },
  6642. "fileId": "57OCmntdFL5rwJxQVhWkvn",
  6643. "sync": false,
  6644. "_synced": {
  6645. "default": false,
  6646. "serializable": false
  6647. }
  6648. },
  6649. {
  6650. "__type__": "cc.Node",
  6651. "_name": "Label",
  6652. "_objFlags": 0,
  6653. "_parent": {
  6654. "__id__": 200
  6655. },
  6656. "_children": [],
  6657. "_active": true,
  6658. "_components": [
  6659. {
  6660. "__id__": 210
  6661. },
  6662. {
  6663. "__id__": 211
  6664. }
  6665. ],
  6666. "_prefab": {
  6667. "__id__": 212
  6668. },
  6669. "_lpos": {
  6670. "__type__": "cc.Vec3",
  6671. "x": 0,
  6672. "y": -91.996,
  6673. "z": 0
  6674. },
  6675. "_lrot": {
  6676. "__type__": "cc.Quat",
  6677. "x": 0,
  6678. "y": 0,
  6679. "z": 0,
  6680. "w": 1
  6681. },
  6682. "_lscale": {
  6683. "__type__": "cc.Vec3",
  6684. "x": 1,
  6685. "y": 1,
  6686. "z": 1
  6687. },
  6688. "_layer": 33554432,
  6689. "_euler": {
  6690. "__type__": "cc.Vec3",
  6691. "x": 0,
  6692. "y": 0,
  6693. "z": 0
  6694. },
  6695. "_id": ""
  6696. },
  6697. {
  6698. "__type__": "cc.UITransformComponent",
  6699. "_name": "Label<UITransformComponent>",
  6700. "_objFlags": 0,
  6701. "node": {
  6702. "__id__": 209
  6703. },
  6704. "_enabled": true,
  6705. "_priority": 0,
  6706. "_contentSize": {
  6707. "__type__": "cc.Size",
  6708. "width": 180,
  6709. "height": 40
  6710. },
  6711. "_anchorPoint": {
  6712. "__type__": "cc.Vec2",
  6713. "x": 0.5,
  6714. "y": 0.5
  6715. },
  6716. "_id": ""
  6717. },
  6718. {
  6719. "__type__": "cc.LabelComponent",
  6720. "_name": "Label<LabelComponent>",
  6721. "_objFlags": 0,
  6722. "node": {
  6723. "__id__": 209
  6724. },
  6725. "_enabled": true,
  6726. "_srcBlendFactor": 2,
  6727. "_dstBlendFactor": 4,
  6728. "_color": {
  6729. "__type__": "cc.Color",
  6730. "r": 255,
  6731. "g": 255,
  6732. "b": 255,
  6733. "a": 255
  6734. },
  6735. "_sharedMaterial": null,
  6736. "_useOriginalSize": true,
  6737. "_string": "游戏名有七个字",
  6738. "_horizontalAlign": 1,
  6739. "_verticalAlign": 1,
  6740. "_actualFontSize": 24,
  6741. "_fontSize": 24,
  6742. "_fontFamily": "Arial",
  6743. "_lineHeight": 40,
  6744. "_overflow": 1,
  6745. "_enableWrapText": false,
  6746. "_font": null,
  6747. "_isSystemFontUsed": true,
  6748. "_isItalic": false,
  6749. "_isBold": false,
  6750. "_isUnderline": false,
  6751. "_cacheMode": 0,
  6752. "_id": ""
  6753. },
  6754. {
  6755. "__type__": "cc.PrefabInfo",
  6756. "root": {
  6757. "__id__": 1
  6758. },
  6759. "asset": {
  6760. "__id__": 0
  6761. },
  6762. "fileId": "acKcW2rXlEmZdUiyTrtWD9",
  6763. "sync": false,
  6764. "_synced": {
  6765. "default": false,
  6766. "serializable": false
  6767. }
  6768. },
  6769. {
  6770. "__type__": "cc.UITransformComponent",
  6771. "_name": "ButtonDaochu1<UITransformComponent>",
  6772. "_objFlags": 0,
  6773. "node": {
  6774. "__id__": 200
  6775. },
  6776. "_enabled": true,
  6777. "_priority": 0,
  6778. "_contentSize": {
  6779. "__type__": "cc.Size",
  6780. "width": 198,
  6781. "height": 262
  6782. },
  6783. "_anchorPoint": {
  6784. "__type__": "cc.Vec2",
  6785. "x": 0.5,
  6786. "y": 0.5
  6787. },
  6788. "_id": ""
  6789. },
  6790. {
  6791. "__type__": "cc.SpriteComponent",
  6792. "_name": "ButtonDaochu1<SpriteComponent>",
  6793. "_objFlags": 0,
  6794. "node": {
  6795. "__id__": 200
  6796. },
  6797. "_enabled": true,
  6798. "_srcBlendFactor": 2,
  6799. "_dstBlendFactor": 4,
  6800. "_color": {
  6801. "__type__": "cc.Color",
  6802. "r": 255,
  6803. "g": 255,
  6804. "b": 255,
  6805. "a": 255
  6806. },
  6807. "_sharedMaterial": null,
  6808. "_spriteFrame": {
  6809. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6810. },
  6811. "_type": 1,
  6812. "_fillType": 0,
  6813. "_sizeMode": 0,
  6814. "_fillCenter": {
  6815. "__type__": "cc.Vec2",
  6816. "x": 0,
  6817. "y": 0
  6818. },
  6819. "_fillStart": 0,
  6820. "_fillRange": 0,
  6821. "_isTrimmedMode": true,
  6822. "_useGrayscale": false,
  6823. "_atlas": null,
  6824. "_id": ""
  6825. },
  6826. {
  6827. "__type__": "cc.ButtonComponent",
  6828. "_name": "ButtonDaochu1<ButtonComponent>",
  6829. "_objFlags": 0,
  6830. "node": {
  6831. "__id__": 200
  6832. },
  6833. "_enabled": true,
  6834. "clickEvents": [],
  6835. "_interactable": true,
  6836. "_transition": 2,
  6837. "_normalColor": {
  6838. "__type__": "cc.Color",
  6839. "r": 214,
  6840. "g": 214,
  6841. "b": 214,
  6842. "a": 255
  6843. },
  6844. "_hoverColor": {
  6845. "__type__": "cc.Color",
  6846. "r": 211,
  6847. "g": 211,
  6848. "b": 211,
  6849. "a": 255
  6850. },
  6851. "_pressColor": {
  6852. "__type__": "cc.Color",
  6853. "r": 255,
  6854. "g": 255,
  6855. "b": 255,
  6856. "a": 255
  6857. },
  6858. "_disabledColor": {
  6859. "__type__": "cc.Color",
  6860. "r": 124,
  6861. "g": 124,
  6862. "b": 124,
  6863. "a": 255
  6864. },
  6865. "_normalSprite": {
  6866. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6867. },
  6868. "_hoverSprite": {
  6869. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6870. },
  6871. "_pressedSprite": {
  6872. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6873. },
  6874. "_disabledSprite": {
  6875. "__uuid__": "6d7dc25c-94ca-4208-9cb9-894a327fc8ed@f9941"
  6876. },
  6877. "_duration": 0.1,
  6878. "_zoomScale": 1.2,
  6879. "_target": {
  6880. "__id__": 200
  6881. },
  6882. "_id": ""
  6883. },
  6884. {
  6885. "__type__": "89bf827dnVIrYRVh5P9587o",
  6886. "_name": "",
  6887. "_objFlags": 0,
  6888. "node": {
  6889. "__id__": 200
  6890. },
  6891. "_enabled": true,
  6892. "icon": {
  6893. "__id__": 207
  6894. },
  6895. "label": {
  6896. "__id__": 211
  6897. },
  6898. "_id": ""
  6899. },
  6900. {
  6901. "__type__": "cc.PrefabInfo",
  6902. "root": {
  6903. "__id__": 1
  6904. },
  6905. "asset": {
  6906. "__id__": 0
  6907. },
  6908. "fileId": "6aIR2E26VCYaMkSRKuebbZ",
  6909. "sync": false,
  6910. "_synced": {
  6911. "default": false,
  6912. "serializable": false
  6913. }
  6914. },
  6915. {
  6916. "__type__": "cc.UITransformComponent",
  6917. "_name": "",
  6918. "_objFlags": 0,
  6919. "node": {
  6920. "__id__": 109
  6921. },
  6922. "_enabled": true,
  6923. "_priority": 0,
  6924. "_contentSize": {
  6925. "__type__": "cc.Size",
  6926. "width": 690,
  6927. "height": 574
  6928. },
  6929. "_anchorPoint": {
  6930. "__type__": "cc.Vec2",
  6931. "x": 0.5,
  6932. "y": 0.5
  6933. },
  6934. "_id": ""
  6935. },
  6936. {
  6937. "__type__": "cc.LayoutComponent",
  6938. "_name": "",
  6939. "_objFlags": 0,
  6940. "node": {
  6941. "__id__": 109
  6942. },
  6943. "_enabled": true,
  6944. "_resizeMode": 1,
  6945. "_N$layoutType": 3,
  6946. "_N$padding": 0,
  6947. "_cellSize": {
  6948. "__type__": "cc.Size",
  6949. "width": 40,
  6950. "height": 40
  6951. },
  6952. "_startAxis": 0,
  6953. "_paddingLeft": 15,
  6954. "_paddingRight": 10,
  6955. "_paddingTop": 10,
  6956. "_paddingBottom": 10,
  6957. "_spacingX": 30,
  6958. "_spacingY": 30,
  6959. "_verticalDirection": 1,
  6960. "_horizontalDirection": 0,
  6961. "_affectedByScale": false,
  6962. "_id": ""
  6963. },
  6964. {
  6965. "__type__": "cc.PrefabInfo",
  6966. "root": {
  6967. "__id__": 1
  6968. },
  6969. "asset": {
  6970. "__id__": 0
  6971. },
  6972. "fileId": "51F5qI+yFD8I12GgdAQEeh",
  6973. "sync": false,
  6974. "_synced": {
  6975. "default": false,
  6976. "serializable": false
  6977. }
  6978. },
  6979. {
  6980. "__type__": "cc.UITransformComponent",
  6981. "_name": "ExportList02<UITransformComponent>",
  6982. "_objFlags": 0,
  6983. "node": {
  6984. "__id__": 108
  6985. },
  6986. "_enabled": true,
  6987. "_priority": 0,
  6988. "_contentSize": {
  6989. "__type__": "cc.Size",
  6990. "width": 690,
  6991. "height": 619
  6992. },
  6993. "_anchorPoint": {
  6994. "__type__": "cc.Vec2",
  6995. "x": 0.5,
  6996. "y": 0.5
  6997. },
  6998. "_id": ""
  6999. },
  7000. {
  7001. "__type__": "cc.ScrollViewComponent",
  7002. "_name": "ExportList02<ScrollViewComponent>",
  7003. "_objFlags": 0,
  7004. "node": {
  7005. "__id__": 108
  7006. },
  7007. "_enabled": true,
  7008. "bounceDuration": 1,
  7009. "brake": 0.5,
  7010. "elastic": true,
  7011. "inertia": true,
  7012. "horizontal": false,
  7013. "vertical": true,
  7014. "cancelInnerEvents": true,
  7015. "scrollEvents": [],
  7016. "_content": {
  7017. "__id__": 109
  7018. },
  7019. "_horizontalScrollBar": null,
  7020. "_verticalScrollBar": null,
  7021. "_id": ""
  7022. },
  7023. {
  7024. "__type__": "c0862GgEItM5YUlULTjLR6o",
  7025. "_name": "ExportList02<ExportList>",
  7026. "_objFlags": 0,
  7027. "node": {
  7028. "__id__": 108
  7029. },
  7030. "_enabled": true,
  7031. "scrollView": {
  7032. "__id__": 222
  7033. },
  7034. "content": {
  7035. "__id__": 109
  7036. },
  7037. "itemPrefab": {
  7038. "__uuid__": "a35d4a29-693b-410b-bc10-5cce31760afd"
  7039. },
  7040. "scrollType": 2,
  7041. "autoScroll": true,
  7042. "scrollSpeed": 50,
  7043. "dataCount": 20,
  7044. "_id": ""
  7045. },
  7046. {
  7047. "__type__": "cc.WidgetComponent",
  7048. "_name": "ExportList01<WidgetComponent>",
  7049. "_objFlags": 0,
  7050. "node": {
  7051. "__id__": 108
  7052. },
  7053. "_enabled": true,
  7054. "_alignFlags": 45,
  7055. "_target": null,
  7056. "_left": 30,
  7057. "_right": 30,
  7058. "_top": 484.91700000000003,
  7059. "_bottom": 230.08299999999997,
  7060. "_horizontalCenter": 0,
  7061. "_verticalCenter": 0,
  7062. "_isAbsLeft": true,
  7063. "_isAbsRight": true,
  7064. "_isAbsTop": true,
  7065. "_isAbsBottom": true,
  7066. "_isAbsHorizontalCenter": true,
  7067. "_isAbsVerticalCenter": true,
  7068. "_originalWidth": 687,
  7069. "_originalHeight": 619,
  7070. "_alignMode": 2,
  7071. "_lockFlags": 0,
  7072. "_id": ""
  7073. },
  7074. {
  7075. "__type__": "cc.MaskComponent",
  7076. "_name": "ExportList02<MaskComponent>",
  7077. "_objFlags": 0,
  7078. "node": {
  7079. "__id__": 108
  7080. },
  7081. "_enabled": true,
  7082. "_srcBlendFactor": 2,
  7083. "_dstBlendFactor": 4,
  7084. "_color": {
  7085. "__type__": "cc.Color",
  7086. "r": 255,
  7087. "g": 255,
  7088. "b": 255,
  7089. "a": 255
  7090. },
  7091. "_sharedMaterial": null,
  7092. "_type": 0,
  7093. "_inverted": false,
  7094. "_segments": 64,
  7095. "_id": ""
  7096. },
  7097. {
  7098. "__type__": "cc.PrefabInfo",
  7099. "root": {
  7100. "__id__": 1
  7101. },
  7102. "asset": {
  7103. "__id__": 0
  7104. },
  7105. "fileId": "933nMua/lGm4qtz2ivEf2J",
  7106. "sync": false,
  7107. "_synced": {
  7108. "default": false,
  7109. "serializable": false
  7110. }
  7111. },
  7112. {
  7113. "__type__": "cc.Node",
  7114. "_name": "ButtonBackReal",
  7115. "_objFlags": 0,
  7116. "_parent": {
  7117. "__id__": 1
  7118. },
  7119. "_children": [
  7120. {
  7121. "__id__": 228
  7122. }
  7123. ],
  7124. "_active": true,
  7125. "_components": [
  7126. {
  7127. "__id__": 232
  7128. },
  7129. {
  7130. "__id__": 233
  7131. },
  7132. {
  7133. "__id__": 234
  7134. },
  7135. {
  7136. "__id__": 236
  7137. }
  7138. ],
  7139. "_prefab": {
  7140. "__id__": 237
  7141. },
  7142. "_lpos": {
  7143. "__type__": "cc.Vec3",
  7144. "x": 0,
  7145. "y": -608,
  7146. "z": 0
  7147. },
  7148. "_lrot": {
  7149. "__type__": "cc.Quat",
  7150. "x": 0,
  7151. "y": 0,
  7152. "z": 0,
  7153. "w": 1
  7154. },
  7155. "_lscale": {
  7156. "__type__": "cc.Vec3",
  7157. "x": 1,
  7158. "y": 1,
  7159. "z": 1
  7160. },
  7161. "_layer": 33554432,
  7162. "_euler": {
  7163. "__type__": "cc.Vec3",
  7164. "x": 0,
  7165. "y": 0,
  7166. "z": 0
  7167. },
  7168. "_id": ""
  7169. },
  7170. {
  7171. "__type__": "cc.Node",
  7172. "_name": "Label",
  7173. "_objFlags": 0,
  7174. "_parent": {
  7175. "__id__": 227
  7176. },
  7177. "_children": [],
  7178. "_active": true,
  7179. "_components": [
  7180. {
  7181. "__id__": 229
  7182. },
  7183. {
  7184. "__id__": 230
  7185. }
  7186. ],
  7187. "_prefab": {
  7188. "__id__": 231
  7189. },
  7190. "_lpos": {
  7191. "__type__": "cc.Vec3",
  7192. "x": -1,
  7193. "y": 3,
  7194. "z": 0
  7195. },
  7196. "_lrot": {
  7197. "__type__": "cc.Quat",
  7198. "x": 0,
  7199. "y": 0,
  7200. "z": 0,
  7201. "w": 1
  7202. },
  7203. "_lscale": {
  7204. "__type__": "cc.Vec3",
  7205. "x": 1,
  7206. "y": 1,
  7207. "z": 1
  7208. },
  7209. "_layer": 33554432,
  7210. "_euler": {
  7211. "__type__": "cc.Vec3",
  7212. "x": 0,
  7213. "y": 0,
  7214. "z": 0
  7215. },
  7216. "_id": ""
  7217. },
  7218. {
  7219. "__type__": "cc.UITransformComponent",
  7220. "_name": "",
  7221. "_objFlags": 0,
  7222. "node": {
  7223. "__id__": 228
  7224. },
  7225. "_enabled": true,
  7226. "_priority": 0,
  7227. "_contentSize": {
  7228. "__type__": "cc.Size",
  7229. "width": 120,
  7230. "height": 50.4
  7231. },
  7232. "_anchorPoint": {
  7233. "__type__": "cc.Vec2",
  7234. "x": 0.5,
  7235. "y": 0.5
  7236. },
  7237. "_id": ""
  7238. },
  7239. {
  7240. "__type__": "cc.LabelComponent",
  7241. "_name": "",
  7242. "_objFlags": 0,
  7243. "node": {
  7244. "__id__": 228
  7245. },
  7246. "_enabled": true,
  7247. "_srcBlendFactor": 2,
  7248. "_dstBlendFactor": 4,
  7249. "_color": {
  7250. "__type__": "cc.Color",
  7251. "r": 255,
  7252. "g": 255,
  7253. "b": 255,
  7254. "a": 255
  7255. },
  7256. "_sharedMaterial": null,
  7257. "_useOriginalSize": true,
  7258. "_string": "继续游戏",
  7259. "_horizontalAlign": 1,
  7260. "_verticalAlign": 1,
  7261. "_actualFontSize": 30,
  7262. "_fontSize": 30,
  7263. "_fontFamily": "Arial",
  7264. "_lineHeight": 40,
  7265. "_overflow": 0,
  7266. "_enableWrapText": true,
  7267. "_font": null,
  7268. "_isSystemFontUsed": true,
  7269. "_isItalic": false,
  7270. "_isBold": false,
  7271. "_isUnderline": false,
  7272. "_cacheMode": 0,
  7273. "_id": ""
  7274. },
  7275. {
  7276. "__type__": "cc.PrefabInfo",
  7277. "root": {
  7278. "__id__": 1
  7279. },
  7280. "asset": {
  7281. "__id__": 0
  7282. },
  7283. "fileId": "3aXAcRfCdNfqXGox/qE5FW",
  7284. "sync": false,
  7285. "_synced": {
  7286. "default": false,
  7287. "serializable": false
  7288. }
  7289. },
  7290. {
  7291. "__type__": "cc.UITransformComponent",
  7292. "_name": "ButtonBackReal<UITransformComponent>",
  7293. "_objFlags": 0,
  7294. "node": {
  7295. "__id__": 227
  7296. },
  7297. "_enabled": true,
  7298. "_priority": 0,
  7299. "_contentSize": {
  7300. "__type__": "cc.Size",
  7301. "width": 220,
  7302. "height": 90
  7303. },
  7304. "_anchorPoint": {
  7305. "__type__": "cc.Vec2",
  7306. "x": 0.5,
  7307. "y": 0.5
  7308. },
  7309. "_id": ""
  7310. },
  7311. {
  7312. "__type__": "cc.SpriteComponent",
  7313. "_name": "ButtonBackReal<SpriteComponent>",
  7314. "_objFlags": 0,
  7315. "node": {
  7316. "__id__": 227
  7317. },
  7318. "_enabled": true,
  7319. "_srcBlendFactor": 2,
  7320. "_dstBlendFactor": 4,
  7321. "_color": {
  7322. "__type__": "cc.Color",
  7323. "r": 255,
  7324. "g": 255,
  7325. "b": 255,
  7326. "a": 255
  7327. },
  7328. "_sharedMaterial": null,
  7329. "_spriteFrame": {
  7330. "__uuid__": "8e19f7f5-6397-4787-9cf7-9c1cd153edaa@f9941"
  7331. },
  7332. "_type": 1,
  7333. "_fillType": 0,
  7334. "_sizeMode": 0,
  7335. "_fillCenter": {
  7336. "__type__": "cc.Vec2",
  7337. "x": 0,
  7338. "y": 0
  7339. },
  7340. "_fillStart": 0,
  7341. "_fillRange": 0,
  7342. "_isTrimmedMode": true,
  7343. "_useGrayscale": false,
  7344. "_atlas": null,
  7345. "_id": ""
  7346. },
  7347. {
  7348. "__type__": "cc.ButtonComponent",
  7349. "_name": "ButtonBackReal<ButtonComponent>",
  7350. "_objFlags": 0,
  7351. "node": {
  7352. "__id__": 227
  7353. },
  7354. "_enabled": true,
  7355. "clickEvents": [
  7356. {
  7357. "__id__": 235
  7358. }
  7359. ],
  7360. "_interactable": true,
  7361. "_transition": 2,
  7362. "_normalColor": {
  7363. "__type__": "cc.Color",
  7364. "r": 214,
  7365. "g": 214,
  7366. "b": 214,
  7367. "a": 255
  7368. },
  7369. "_hoverColor": {
  7370. "__type__": "cc.Color",
  7371. "r": 211,
  7372. "g": 211,
  7373. "b": 211,
  7374. "a": 255
  7375. },
  7376. "_pressColor": {
  7377. "__type__": "cc.Color",
  7378. "r": 255,
  7379. "g": 255,
  7380. "b": 255,
  7381. "a": 255
  7382. },
  7383. "_disabledColor": {
  7384. "__type__": "cc.Color",
  7385. "r": 124,
  7386. "g": 124,
  7387. "b": 124,
  7388. "a": 255
  7389. },
  7390. "_normalSprite": {
  7391. "__uuid__": "8e19f7f5-6397-4787-9cf7-9c1cd153edaa@f9941"
  7392. },
  7393. "_hoverSprite": {
  7394. "__uuid__": "8e19f7f5-6397-4787-9cf7-9c1cd153edaa@f9941"
  7395. },
  7396. "_pressedSprite": {
  7397. "__uuid__": "8e19f7f5-6397-4787-9cf7-9c1cd153edaa@f9941"
  7398. },
  7399. "_disabledSprite": {
  7400. "__uuid__": "8e19f7f5-6397-4787-9cf7-9c1cd153edaa@f9941"
  7401. },
  7402. "_duration": 0.1,
  7403. "_zoomScale": 1.2,
  7404. "_target": {
  7405. "__id__": 227
  7406. },
  7407. "_id": ""
  7408. },
  7409. {
  7410. "__type__": "cc.ClickEvent",
  7411. "target": {
  7412. "__id__": 1
  7413. },
  7414. "component": "",
  7415. "_componentId": "047e7uC4zVJdpjqMm8v6bej",
  7416. "handler": "ContinueGame",
  7417. "customEventData": ""
  7418. },
  7419. {
  7420. "__type__": "cc.WidgetComponent",
  7421. "_name": "ButtonBackReal<WidgetComponent>",
  7422. "_objFlags": 0,
  7423. "node": {
  7424. "__id__": 227
  7425. },
  7426. "_enabled": true,
  7427. "_alignFlags": 20,
  7428. "_target": null,
  7429. "_left": 0,
  7430. "_right": 0,
  7431. "_top": 0,
  7432. "_bottom": 14,
  7433. "_horizontalCenter": 0,
  7434. "_verticalCenter": 0,
  7435. "_isAbsLeft": true,
  7436. "_isAbsRight": true,
  7437. "_isAbsTop": true,
  7438. "_isAbsBottom": true,
  7439. "_isAbsHorizontalCenter": true,
  7440. "_isAbsVerticalCenter": true,
  7441. "_originalWidth": 0,
  7442. "_originalHeight": 0,
  7443. "_alignMode": 2,
  7444. "_lockFlags": 0,
  7445. "_id": ""
  7446. },
  7447. {
  7448. "__type__": "cc.PrefabInfo",
  7449. "root": {
  7450. "__id__": 1
  7451. },
  7452. "asset": {
  7453. "__id__": 0
  7454. },
  7455. "fileId": "c4Xgwo48pOEr54Qk6DaNV8",
  7456. "sync": false,
  7457. "_synced": {
  7458. "default": false,
  7459. "serializable": false
  7460. }
  7461. },
  7462. {
  7463. "__type__": "cc.Node",
  7464. "_name": "ButtonDaochuBack",
  7465. "_objFlags": 0,
  7466. "_parent": {
  7467. "__id__": 1
  7468. },
  7469. "_children": [],
  7470. "_active": false,
  7471. "_components": [
  7472. {
  7473. "__id__": 239
  7474. },
  7475. {
  7476. "__id__": 240
  7477. },
  7478. {
  7479. "__id__": 241
  7480. },
  7481. {
  7482. "__id__": 243
  7483. }
  7484. ],
  7485. "_prefab": {
  7486. "__id__": 244
  7487. },
  7488. "_lpos": {
  7489. "__type__": "cc.Vec3",
  7490. "x": -312,
  7491. "y": 604,
  7492. "z": 0
  7493. },
  7494. "_lrot": {
  7495. "__type__": "cc.Quat",
  7496. "x": 0,
  7497. "y": 0,
  7498. "z": 0,
  7499. "w": 1
  7500. },
  7501. "_lscale": {
  7502. "__type__": "cc.Vec3",
  7503. "x": 1,
  7504. "y": 1,
  7505. "z": 1
  7506. },
  7507. "_layer": 33554432,
  7508. "_euler": {
  7509. "__type__": "cc.Vec3",
  7510. "x": 0,
  7511. "y": 0,
  7512. "z": 0
  7513. },
  7514. "_id": ""
  7515. },
  7516. {
  7517. "__type__": "cc.UITransformComponent",
  7518. "_name": "",
  7519. "_objFlags": 0,
  7520. "node": {
  7521. "__id__": 238
  7522. },
  7523. "_enabled": true,
  7524. "_priority": 0,
  7525. "_contentSize": {
  7526. "__type__": "cc.Size",
  7527. "width": 78,
  7528. "height": 79
  7529. },
  7530. "_anchorPoint": {
  7531. "__type__": "cc.Vec2",
  7532. "x": 0.5,
  7533. "y": 0.5
  7534. },
  7535. "_id": ""
  7536. },
  7537. {
  7538. "__type__": "cc.SpriteComponent",
  7539. "_name": "",
  7540. "_objFlags": 0,
  7541. "node": {
  7542. "__id__": 238
  7543. },
  7544. "_enabled": true,
  7545. "_srcBlendFactor": 2,
  7546. "_dstBlendFactor": 4,
  7547. "_color": {
  7548. "__type__": "cc.Color",
  7549. "r": 255,
  7550. "g": 255,
  7551. "b": 255,
  7552. "a": 255
  7553. },
  7554. "_sharedMaterial": null,
  7555. "_spriteFrame": {
  7556. "__uuid__": "90ccd307-d74d-4edb-b9aa-b3906c07d399@f9941"
  7557. },
  7558. "_type": 0,
  7559. "_fillType": 0,
  7560. "_sizeMode": 1,
  7561. "_fillCenter": {
  7562. "__type__": "cc.Vec2",
  7563. "x": 0,
  7564. "y": 0
  7565. },
  7566. "_fillStart": 0,
  7567. "_fillRange": 0,
  7568. "_isTrimmedMode": true,
  7569. "_useGrayscale": false,
  7570. "_atlas": null,
  7571. "_id": ""
  7572. },
  7573. {
  7574. "__type__": "cc.ButtonComponent",
  7575. "_name": "",
  7576. "_objFlags": 0,
  7577. "node": {
  7578. "__id__": 238
  7579. },
  7580. "_enabled": true,
  7581. "clickEvents": [
  7582. {
  7583. "__id__": 242
  7584. }
  7585. ],
  7586. "_interactable": true,
  7587. "_transition": 2,
  7588. "_normalColor": {
  7589. "__type__": "cc.Color",
  7590. "r": 214,
  7591. "g": 214,
  7592. "b": 214,
  7593. "a": 255
  7594. },
  7595. "_hoverColor": {
  7596. "__type__": "cc.Color",
  7597. "r": 211,
  7598. "g": 211,
  7599. "b": 211,
  7600. "a": 255
  7601. },
  7602. "_pressColor": {
  7603. "__type__": "cc.Color",
  7604. "r": 255,
  7605. "g": 255,
  7606. "b": 255,
  7607. "a": 255
  7608. },
  7609. "_disabledColor": {
  7610. "__type__": "cc.Color",
  7611. "r": 124,
  7612. "g": 124,
  7613. "b": 124,
  7614. "a": 255
  7615. },
  7616. "_normalSprite": {
  7617. "__uuid__": "90ccd307-d74d-4edb-b9aa-b3906c07d399@f9941"
  7618. },
  7619. "_hoverSprite": {
  7620. "__uuid__": "90ccd307-d74d-4edb-b9aa-b3906c07d399@f9941"
  7621. },
  7622. "_pressedSprite": {
  7623. "__uuid__": "90ccd307-d74d-4edb-b9aa-b3906c07d399@f9941"
  7624. },
  7625. "_disabledSprite": {
  7626. "__uuid__": "90ccd307-d74d-4edb-b9aa-b3906c07d399@f9941"
  7627. },
  7628. "_duration": 0.1,
  7629. "_zoomScale": 1.2,
  7630. "_target": {
  7631. "__id__": 238
  7632. },
  7633. "_id": ""
  7634. },
  7635. {
  7636. "__type__": "cc.ClickEvent",
  7637. "target": {
  7638. "__id__": 1
  7639. },
  7640. "component": "",
  7641. "_componentId": "047e7uC4zVJdpjqMm8v6bej",
  7642. "handler": "BackToMain",
  7643. "customEventData": ""
  7644. },
  7645. {
  7646. "__type__": "cc.WidgetComponent",
  7647. "_name": "ButtonDaochuBack<WidgetComponent>",
  7648. "_objFlags": 0,
  7649. "node": {
  7650. "__id__": 238
  7651. },
  7652. "_enabled": true,
  7653. "_alignFlags": 9,
  7654. "_target": null,
  7655. "_left": 24,
  7656. "_right": 0,
  7657. "_top": 23.5,
  7658. "_bottom": 0,
  7659. "_horizontalCenter": 0,
  7660. "_verticalCenter": 0,
  7661. "_isAbsLeft": true,
  7662. "_isAbsRight": true,
  7663. "_isAbsTop": true,
  7664. "_isAbsBottom": true,
  7665. "_isAbsHorizontalCenter": true,
  7666. "_isAbsVerticalCenter": true,
  7667. "_originalWidth": 0,
  7668. "_originalHeight": 0,
  7669. "_alignMode": 2,
  7670. "_lockFlags": 0,
  7671. "_id": ""
  7672. },
  7673. {
  7674. "__type__": "cc.PrefabInfo",
  7675. "root": {
  7676. "__id__": 1
  7677. },
  7678. "asset": {
  7679. "__id__": 0
  7680. },
  7681. "fileId": "beHTe8JnhLI5IP05Q4m+HD",
  7682. "sync": false,
  7683. "_synced": {
  7684. "default": false,
  7685. "serializable": false
  7686. }
  7687. },
  7688. {
  7689. "__type__": "cc.Node",
  7690. "_name": "Design",
  7691. "_objFlags": 0,
  7692. "_parent": {
  7693. "__id__": 1
  7694. },
  7695. "_children": [],
  7696. "_active": false,
  7697. "_components": [
  7698. {
  7699. "__id__": 246
  7700. },
  7701. {
  7702. "__id__": 247
  7703. },
  7704. {
  7705. "__id__": 248
  7706. }
  7707. ],
  7708. "_prefab": {
  7709. "__id__": 249
  7710. },
  7711. "_lpos": {
  7712. "__type__": "cc.Vec3",
  7713. "x": 0,
  7714. "y": 0,
  7715. "z": 0
  7716. },
  7717. "_lrot": {
  7718. "__type__": "cc.Quat",
  7719. "x": 0,
  7720. "y": 0,
  7721. "z": 0,
  7722. "w": 1
  7723. },
  7724. "_lscale": {
  7725. "__type__": "cc.Vec3",
  7726. "x": 1,
  7727. "y": 1,
  7728. "z": 1
  7729. },
  7730. "_layer": 33554432,
  7731. "_euler": {
  7732. "__type__": "cc.Vec3",
  7733. "x": 0,
  7734. "y": 0,
  7735. "z": 0
  7736. },
  7737. "_id": ""
  7738. },
  7739. {
  7740. "__type__": "cc.UITransformComponent",
  7741. "_name": "",
  7742. "_objFlags": 0,
  7743. "node": {
  7744. "__id__": 245
  7745. },
  7746. "_enabled": true,
  7747. "_priority": 0,
  7748. "_contentSize": {
  7749. "__type__": "cc.Size",
  7750. "width": 750,
  7751. "height": 1334
  7752. },
  7753. "_anchorPoint": {
  7754. "__type__": "cc.Vec2",
  7755. "x": 0.5,
  7756. "y": 0.5
  7757. },
  7758. "_id": ""
  7759. },
  7760. {
  7761. "__type__": "cc.SpriteComponent",
  7762. "_name": "",
  7763. "_objFlags": 0,
  7764. "node": {
  7765. "__id__": 245
  7766. },
  7767. "_enabled": true,
  7768. "_srcBlendFactor": 2,
  7769. "_dstBlendFactor": 4,
  7770. "_color": {
  7771. "__type__": "cc.Color",
  7772. "r": 255,
  7773. "g": 255,
  7774. "b": 255,
  7775. "a": 255
  7776. },
  7777. "_sharedMaterial": null,
  7778. "_spriteFrame": {
  7779. "__uuid__": "14dfebfa-eeeb-4c39-a3b2-c53915c358f9@f9941"
  7780. },
  7781. "_type": 0,
  7782. "_fillType": 0,
  7783. "_sizeMode": 1,
  7784. "_fillCenter": {
  7785. "__type__": "cc.Vec2",
  7786. "x": 0,
  7787. "y": 0
  7788. },
  7789. "_fillStart": 0,
  7790. "_fillRange": 0,
  7791. "_isTrimmedMode": true,
  7792. "_useGrayscale": false,
  7793. "_atlas": null,
  7794. "_id": ""
  7795. },
  7796. {
  7797. "__type__": "cc.UIOpacityComponent",
  7798. "_name": "",
  7799. "_objFlags": 0,
  7800. "node": {
  7801. "__id__": 245
  7802. },
  7803. "_enabled": true,
  7804. "_opacity": 50,
  7805. "_id": ""
  7806. },
  7807. {
  7808. "__type__": "cc.PrefabInfo",
  7809. "root": {
  7810. "__id__": 1
  7811. },
  7812. "asset": {
  7813. "__id__": 0
  7814. },
  7815. "fileId": "fdFtap5+RLvLF1You2e2Ru",
  7816. "sync": false,
  7817. "_synced": {
  7818. "default": false,
  7819. "serializable": false
  7820. }
  7821. },
  7822. {
  7823. "__type__": "cc.UITransformComponent",
  7824. "_name": "FullScreenUI<UITransformComponent>",
  7825. "_objFlags": 0,
  7826. "node": {
  7827. "__id__": 1
  7828. },
  7829. "_enabled": true,
  7830. "_priority": 0,
  7831. "_contentSize": {
  7832. "__type__": "cc.Size",
  7833. "width": 750,
  7834. "height": 1334
  7835. },
  7836. "_anchorPoint": {
  7837. "__type__": "cc.Vec2",
  7838. "x": 0.5,
  7839. "y": 0.5
  7840. },
  7841. "_id": ""
  7842. },
  7843. {
  7844. "__type__": "cc.WidgetComponent",
  7845. "_name": "GameOverUI<WidgetComponent>",
  7846. "_objFlags": 0,
  7847. "node": {
  7848. "__id__": 1
  7849. },
  7850. "_enabled": true,
  7851. "_alignFlags": 45,
  7852. "_target": null,
  7853. "_left": 0,
  7854. "_right": 0,
  7855. "_top": 0,
  7856. "_bottom": 0,
  7857. "_horizontalCenter": 0,
  7858. "_verticalCenter": 0,
  7859. "_isAbsLeft": true,
  7860. "_isAbsRight": true,
  7861. "_isAbsTop": true,
  7862. "_isAbsBottom": true,
  7863. "_isAbsHorizontalCenter": true,
  7864. "_isAbsVerticalCenter": true,
  7865. "_originalWidth": 100,
  7866. "_originalHeight": 100,
  7867. "_alignMode": 2,
  7868. "_lockFlags": 0,
  7869. "_id": ""
  7870. },
  7871. {
  7872. "__type__": "047e7uC4zVJdpjqMm8v6bej",
  7873. "_name": "",
  7874. "_objFlags": 0,
  7875. "node": {
  7876. "__id__": 1
  7877. },
  7878. "_enabled": true,
  7879. "ContinueButton": {
  7880. "__id__": 227
  7881. },
  7882. "_id": ""
  7883. },
  7884. {
  7885. "__type__": "cc.PrefabInfo",
  7886. "root": {
  7887. "__id__": 1
  7888. },
  7889. "asset": {
  7890. "__id__": 0
  7891. },
  7892. "fileId": "1dC1OKH5tEvpVgClSi7520",
  7893. "sync": false,
  7894. "_synced": {
  7895. "default": false,
  7896. "serializable": false
  7897. }
  7898. }
  7899. ]