Lobby.fire 203 KB

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