Lobby.fire 205 KB

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