FullScreenui.prefab 183 KB

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