Lobby.fire 192 KB

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