ZumaUI.prefab 212 KB

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