FullScreenui.prefab 147 KB

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