SideUI.prefab 170 KB

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