Lobby.fire 191 KB

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