HallwayChat .prefab 156 KB

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