SideUI.prefab 172 KB

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