Lobby.fire 184 KB

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