ClubPartnerZiMo.prefab 196 KB

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