loading.scene 182 KB

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