FullScreenui.prefab 181 KB

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