Lobby.fire 188 KB

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