GameUI.prefab 191 KB

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