RoleBreakSuccessUI.prefab 106 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343
  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": "RoleBreakSuccessUI",
  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__": 17
  34. },
  35. {
  36. "__id__": 20
  37. },
  38. {
  39. "__id__": 137
  40. },
  41. {
  42. "__id__": 175
  43. },
  44. {
  45. "__id__": 179
  46. }
  47. ],
  48. "_active": true,
  49. "_components": [
  50. {
  51. "__id__": 183
  52. }
  53. ],
  54. "_prefab": {
  55. "__id__": 184
  56. },
  57. "_opacity": 255,
  58. "_color": {
  59. "__type__": "cc.Color",
  60. "r": 255,
  61. "g": 255,
  62. "b": 255,
  63. "a": 255
  64. },
  65. "_contentSize": {
  66. "__type__": "cc.Size",
  67. "width": 2400,
  68. "height": 1080
  69. },
  70. "_anchorPoint": {
  71. "__type__": "cc.Vec2",
  72. "x": 0.5,
  73. "y": 0.5
  74. },
  75. "_trs": {
  76. "__type__": "TypedArray",
  77. "ctor": "Float64Array",
  78. "array": [
  79. 0,
  80. 0,
  81. 0,
  82. 0,
  83. 0,
  84. 0,
  85. 1,
  86. 1,
  87. 1,
  88. 1
  89. ]
  90. },
  91. "_eulerAngles": {
  92. "__type__": "cc.Vec3",
  93. "x": 0,
  94. "y": 0,
  95. "z": 0
  96. },
  97. "_skewX": 0,
  98. "_skewY": 0,
  99. "_is3DNode": false,
  100. "_groupIndex": 0,
  101. "groupIndex": 0,
  102. "_id": ""
  103. },
  104. {
  105. "__type__": "cc.Node",
  106. "_name": "bg",
  107. "_objFlags": 0,
  108. "_parent": {
  109. "__id__": 1
  110. },
  111. "_children": [],
  112. "_active": true,
  113. "_components": [
  114. {
  115. "__id__": 3
  116. },
  117. {
  118. "__id__": 4
  119. }
  120. ],
  121. "_prefab": {
  122. "__id__": 5
  123. },
  124. "_opacity": 255,
  125. "_color": {
  126. "__type__": "cc.Color",
  127. "r": 255,
  128. "g": 255,
  129. "b": 255,
  130. "a": 255
  131. },
  132. "_contentSize": {
  133. "__type__": "cc.Size",
  134. "width": 1920,
  135. "height": 1080
  136. },
  137. "_anchorPoint": {
  138. "__type__": "cc.Vec2",
  139. "x": 0.5,
  140. "y": 0.5
  141. },
  142. "_trs": {
  143. "__type__": "TypedArray",
  144. "ctor": "Float64Array",
  145. "array": [
  146. 0,
  147. 0,
  148. 0,
  149. 0,
  150. 0,
  151. 0,
  152. 1,
  153. 1,
  154. 1,
  155. 1
  156. ]
  157. },
  158. "_eulerAngles": {
  159. "__type__": "cc.Vec3",
  160. "x": 0,
  161. "y": 0,
  162. "z": 0
  163. },
  164. "_skewX": 0,
  165. "_skewY": 0,
  166. "_is3DNode": false,
  167. "_groupIndex": 0,
  168. "groupIndex": 0,
  169. "_id": ""
  170. },
  171. {
  172. "__type__": "cc.Sprite",
  173. "_name": "",
  174. "_objFlags": 0,
  175. "node": {
  176. "__id__": 2
  177. },
  178. "_enabled": true,
  179. "_materials": [
  180. {
  181. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  182. }
  183. ],
  184. "_srcBlendFactor": 770,
  185. "_dstBlendFactor": 771,
  186. "_spriteFrame": {
  187. "__uuid__": "9c65fb73-0545-4b53-9ecb-ee9eb1972867"
  188. },
  189. "_type": 0,
  190. "_sizeMode": 0,
  191. "_fillType": 0,
  192. "_fillCenter": {
  193. "__type__": "cc.Vec2",
  194. "x": 0,
  195. "y": 0
  196. },
  197. "_fillStart": 0,
  198. "_fillRange": 0,
  199. "_isTrimmedMode": true,
  200. "_atlas": null,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  205. "_name": "",
  206. "_objFlags": 0,
  207. "node": {
  208. "__id__": 2
  209. },
  210. "_enabled": true,
  211. "widthFit": true,
  212. "heightFit": true,
  213. "_id": ""
  214. },
  215. {
  216. "__type__": "cc.PrefabInfo",
  217. "root": {
  218. "__id__": 1
  219. },
  220. "asset": {
  221. "__id__": 0
  222. },
  223. "fileId": "feU41wAGhHzIxAVq3g1xyM",
  224. "sync": false
  225. },
  226. {
  227. "__type__": "cc.Node",
  228. "_name": "streamer_tiele",
  229. "_objFlags": 0,
  230. "_parent": {
  231. "__id__": 1
  232. },
  233. "_children": [],
  234. "_active": true,
  235. "_components": [
  236. {
  237. "__id__": 7
  238. }
  239. ],
  240. "_prefab": {
  241. "__id__": 8
  242. },
  243. "_opacity": 255,
  244. "_color": {
  245. "__type__": "cc.Color",
  246. "r": 255,
  247. "g": 255,
  248. "b": 255,
  249. "a": 255
  250. },
  251. "_contentSize": {
  252. "__type__": "cc.Size",
  253. "width": 801,
  254. "height": 151
  255. },
  256. "_anchorPoint": {
  257. "__type__": "cc.Vec2",
  258. "x": 0.5,
  259. "y": 0.5
  260. },
  261. "_trs": {
  262. "__type__": "TypedArray",
  263. "ctor": "Float64Array",
  264. "array": [
  265. 0,
  266. 363.95,
  267. 0,
  268. 0,
  269. 0,
  270. 0,
  271. 1,
  272. 1,
  273. 1,
  274. 1
  275. ]
  276. },
  277. "_eulerAngles": {
  278. "__type__": "cc.Vec3",
  279. "x": 0,
  280. "y": 0,
  281. "z": 0
  282. },
  283. "_skewX": 0,
  284. "_skewY": 0,
  285. "_is3DNode": false,
  286. "_groupIndex": 0,
  287. "groupIndex": 0,
  288. "_id": ""
  289. },
  290. {
  291. "__type__": "cc.Sprite",
  292. "_name": "",
  293. "_objFlags": 0,
  294. "node": {
  295. "__id__": 6
  296. },
  297. "_enabled": true,
  298. "_materials": [
  299. {
  300. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  301. }
  302. ],
  303. "_srcBlendFactor": 770,
  304. "_dstBlendFactor": 771,
  305. "_spriteFrame": {
  306. "__uuid__": "b5b89dca-a78a-4915-97f6-466dde419a03"
  307. },
  308. "_type": 0,
  309. "_sizeMode": 1,
  310. "_fillType": 0,
  311. "_fillCenter": {
  312. "__type__": "cc.Vec2",
  313. "x": 0,
  314. "y": 0
  315. },
  316. "_fillStart": 0,
  317. "_fillRange": 0,
  318. "_isTrimmedMode": true,
  319. "_atlas": null,
  320. "_id": ""
  321. },
  322. {
  323. "__type__": "cc.PrefabInfo",
  324. "root": {
  325. "__id__": 1
  326. },
  327. "asset": {
  328. "__id__": 0
  329. },
  330. "fileId": "35tWA8u/FJmbHck78GfP93",
  331. "sync": false
  332. },
  333. {
  334. "__type__": "cc.Node",
  335. "_name": "label",
  336. "_objFlags": 0,
  337. "_parent": {
  338. "__id__": 1
  339. },
  340. "_children": [],
  341. "_active": true,
  342. "_components": [
  343. {
  344. "__id__": 10
  345. },
  346. {
  347. "__id__": 11
  348. },
  349. {
  350. "__id__": 12
  351. }
  352. ],
  353. "_prefab": {
  354. "__id__": 13
  355. },
  356. "_opacity": 255,
  357. "_color": {
  358. "__type__": "cc.Color",
  359. "r": 255,
  360. "g": 240,
  361. "b": 0,
  362. "a": 255
  363. },
  364. "_contentSize": {
  365. "__type__": "cc.Size",
  366. "width": 443.01,
  367. "height": 73
  368. },
  369. "_anchorPoint": {
  370. "__type__": "cc.Vec2",
  371. "x": 0.5,
  372. "y": 0.5
  373. },
  374. "_trs": {
  375. "__type__": "TypedArray",
  376. "ctor": "Float64Array",
  377. "array": [
  378. 0,
  379. 381.639,
  380. 0,
  381. 0,
  382. 0,
  383. 0,
  384. 1,
  385. 1,
  386. 1,
  387. 1
  388. ]
  389. },
  390. "_eulerAngles": {
  391. "__type__": "cc.Vec3",
  392. "x": 0,
  393. "y": 0,
  394. "z": 0
  395. },
  396. "_skewX": 0,
  397. "_skewY": 0,
  398. "_is3DNode": false,
  399. "_groupIndex": 0,
  400. "groupIndex": 0,
  401. "_id": ""
  402. },
  403. {
  404. "__type__": "cc.Label",
  405. "_name": "",
  406. "_objFlags": 0,
  407. "node": {
  408. "__id__": 9
  409. },
  410. "_enabled": true,
  411. "_materials": [
  412. {
  413. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  414. }
  415. ],
  416. "_srcBlendFactor": 770,
  417. "_dstBlendFactor": 771,
  418. "_string": "synthesis successful",
  419. "_N$string": "synthesis successful",
  420. "_fontSize": 48,
  421. "_lineHeight": 50,
  422. "_enableWrapText": true,
  423. "_N$file": {
  424. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  425. },
  426. "_isSystemFontUsed": false,
  427. "_spacingX": 0,
  428. "_batchAsBitmap": false,
  429. "_styleFlags": 0,
  430. "_underlineHeight": 0,
  431. "_N$horizontalAlign": 1,
  432. "_N$verticalAlign": 1,
  433. "_N$fontFamily": "Arial",
  434. "_N$overflow": 0,
  435. "_N$cacheMode": 0,
  436. "_id": ""
  437. },
  438. {
  439. "__type__": "cc.LabelOutline",
  440. "_name": "",
  441. "_objFlags": 0,
  442. "node": {
  443. "__id__": 9
  444. },
  445. "_enabled": true,
  446. "_color": {
  447. "__type__": "cc.Color",
  448. "r": 38,
  449. "g": 17,
  450. "b": 12,
  451. "a": 255
  452. },
  453. "_width": 5,
  454. "_id": ""
  455. },
  456. {
  457. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  458. "_name": "",
  459. "_objFlags": 0,
  460. "node": {
  461. "__id__": 9
  462. },
  463. "_enabled": true,
  464. "_englishCase": 0,
  465. "i18n_string": "t55",
  466. "i18n_params": [],
  467. "_addColon": false,
  468. "_id": ""
  469. },
  470. {
  471. "__type__": "cc.PrefabInfo",
  472. "root": {
  473. "__id__": 9
  474. },
  475. "asset": {
  476. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  477. },
  478. "fileId": "15OoUuXRNGirl4zUN+4aPE",
  479. "sync": false
  480. },
  481. {
  482. "__type__": "cc.Node",
  483. "_name": "common_popup",
  484. "_objFlags": 0,
  485. "_parent": {
  486. "__id__": 1
  487. },
  488. "_children": [],
  489. "_active": true,
  490. "_components": [
  491. {
  492. "__id__": 15
  493. }
  494. ],
  495. "_prefab": {
  496. "__id__": 16
  497. },
  498. "_opacity": 255,
  499. "_color": {
  500. "__type__": "cc.Color",
  501. "r": 255,
  502. "g": 255,
  503. "b": 255,
  504. "a": 255
  505. },
  506. "_contentSize": {
  507. "__type__": "cc.Size",
  508. "width": 800,
  509. "height": 380
  510. },
  511. "_anchorPoint": {
  512. "__type__": "cc.Vec2",
  513. "x": 0.5,
  514. "y": 0.5
  515. },
  516. "_trs": {
  517. "__type__": "TypedArray",
  518. "ctor": "Float64Array",
  519. "array": [
  520. 0,
  521. -232.128,
  522. 0,
  523. 0,
  524. 0,
  525. 0,
  526. 1,
  527. 1,
  528. 1,
  529. 1
  530. ]
  531. },
  532. "_eulerAngles": {
  533. "__type__": "cc.Vec3",
  534. "x": 0,
  535. "y": 0,
  536. "z": 0
  537. },
  538. "_skewX": 0,
  539. "_skewY": 0,
  540. "_is3DNode": false,
  541. "_groupIndex": 0,
  542. "groupIndex": 0,
  543. "_id": ""
  544. },
  545. {
  546. "__type__": "cc.Sprite",
  547. "_name": "",
  548. "_objFlags": 0,
  549. "node": {
  550. "__id__": 14
  551. },
  552. "_enabled": true,
  553. "_materials": [
  554. {
  555. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  556. }
  557. ],
  558. "_srcBlendFactor": 770,
  559. "_dstBlendFactor": 771,
  560. "_spriteFrame": {
  561. "__uuid__": "e07f7d80-677d-4def-b648-88341c7a5b1a"
  562. },
  563. "_type": 1,
  564. "_sizeMode": 0,
  565. "_fillType": 0,
  566. "_fillCenter": {
  567. "__type__": "cc.Vec2",
  568. "x": 0,
  569. "y": 0
  570. },
  571. "_fillStart": 0,
  572. "_fillRange": 0,
  573. "_isTrimmedMode": true,
  574. "_atlas": null,
  575. "_id": ""
  576. },
  577. {
  578. "__type__": "cc.PrefabInfo",
  579. "root": {
  580. "__id__": 1
  581. },
  582. "asset": {
  583. "__id__": 0
  584. },
  585. "fileId": "44kUtPsdpIn4NMcjMwMdtT",
  586. "sync": false
  587. },
  588. {
  589. "__type__": "cc.Node",
  590. "_name": "bottom1",
  591. "_objFlags": 0,
  592. "_parent": {
  593. "__id__": 1
  594. },
  595. "_children": [],
  596. "_active": true,
  597. "_components": [
  598. {
  599. "__id__": 18
  600. }
  601. ],
  602. "_prefab": {
  603. "__id__": 19
  604. },
  605. "_opacity": 255,
  606. "_color": {
  607. "__type__": "cc.Color",
  608. "r": 255,
  609. "g": 255,
  610. "b": 255,
  611. "a": 255
  612. },
  613. "_contentSize": {
  614. "__type__": "cc.Size",
  615. "width": 600,
  616. "height": 290
  617. },
  618. "_anchorPoint": {
  619. "__type__": "cc.Vec2",
  620. "x": 0.5,
  621. "y": 0.5
  622. },
  623. "_trs": {
  624. "__type__": "TypedArray",
  625. "ctor": "Float64Array",
  626. "array": [
  627. 0,
  628. -228.42,
  629. 0,
  630. 0,
  631. 0,
  632. 0,
  633. 1,
  634. 1,
  635. 1,
  636. 1
  637. ]
  638. },
  639. "_eulerAngles": {
  640. "__type__": "cc.Vec3",
  641. "x": 0,
  642. "y": 0,
  643. "z": 0
  644. },
  645. "_skewX": 0,
  646. "_skewY": 0,
  647. "_is3DNode": false,
  648. "_groupIndex": 0,
  649. "groupIndex": 0,
  650. "_id": ""
  651. },
  652. {
  653. "__type__": "cc.Sprite",
  654. "_name": "",
  655. "_objFlags": 0,
  656. "node": {
  657. "__id__": 17
  658. },
  659. "_enabled": true,
  660. "_materials": [
  661. {
  662. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  663. }
  664. ],
  665. "_srcBlendFactor": 770,
  666. "_dstBlendFactor": 771,
  667. "_spriteFrame": {
  668. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  669. },
  670. "_type": 1,
  671. "_sizeMode": 0,
  672. "_fillType": 0,
  673. "_fillCenter": {
  674. "__type__": "cc.Vec2",
  675. "x": 0,
  676. "y": 0
  677. },
  678. "_fillStart": 0,
  679. "_fillRange": 0,
  680. "_isTrimmedMode": true,
  681. "_atlas": null,
  682. "_id": ""
  683. },
  684. {
  685. "__type__": "cc.PrefabInfo",
  686. "root": {
  687. "__id__": 1
  688. },
  689. "asset": {
  690. "__id__": 0
  691. },
  692. "fileId": "210AmqjhRHKLZMSw5T4ulg",
  693. "sync": false
  694. },
  695. {
  696. "__type__": "cc.Node",
  697. "_name": "breakTip",
  698. "_objFlags": 0,
  699. "_parent": {
  700. "__id__": 1
  701. },
  702. "_children": [
  703. {
  704. "__id__": 21
  705. }
  706. ],
  707. "_active": true,
  708. "_components": [],
  709. "_prefab": {
  710. "__id__": 136
  711. },
  712. "_opacity": 255,
  713. "_color": {
  714. "__type__": "cc.Color",
  715. "r": 255,
  716. "g": 255,
  717. "b": 255,
  718. "a": 255
  719. },
  720. "_contentSize": {
  721. "__type__": "cc.Size",
  722. "width": 0,
  723. "height": 0
  724. },
  725. "_anchorPoint": {
  726. "__type__": "cc.Vec2",
  727. "x": 0.5,
  728. "y": 0.5
  729. },
  730. "_trs": {
  731. "__type__": "TypedArray",
  732. "ctor": "Float64Array",
  733. "array": [
  734. 0,
  735. 0,
  736. 0,
  737. 0,
  738. 0,
  739. 0,
  740. 1,
  741. 1,
  742. 1,
  743. 1
  744. ]
  745. },
  746. "_eulerAngles": {
  747. "__type__": "cc.Vec3",
  748. "x": 0,
  749. "y": 0,
  750. "z": 0
  751. },
  752. "_skewX": 0,
  753. "_skewY": 0,
  754. "_is3DNode": false,
  755. "_groupIndex": 0,
  756. "groupIndex": 0,
  757. "_id": ""
  758. },
  759. {
  760. "__type__": "cc.Node",
  761. "_name": "scrollView",
  762. "_objFlags": 0,
  763. "_parent": {
  764. "__id__": 20
  765. },
  766. "_children": [
  767. {
  768. "__id__": 22
  769. }
  770. ],
  771. "_active": true,
  772. "_components": [
  773. {
  774. "__id__": 134
  775. }
  776. ],
  777. "_prefab": {
  778. "__id__": 135
  779. },
  780. "_opacity": 255,
  781. "_color": {
  782. "__type__": "cc.Color",
  783. "r": 255,
  784. "g": 255,
  785. "b": 255,
  786. "a": 255
  787. },
  788. "_contentSize": {
  789. "__type__": "cc.Size",
  790. "width": 550,
  791. "height": 280
  792. },
  793. "_anchorPoint": {
  794. "__type__": "cc.Vec2",
  795. "x": 0.5,
  796. "y": 0.5
  797. },
  798. "_trs": {
  799. "__type__": "TypedArray",
  800. "ctor": "Float64Array",
  801. "array": [
  802. -3.694,
  803. -228.632,
  804. 0,
  805. 0,
  806. 0,
  807. 0,
  808. 1,
  809. 1,
  810. 1,
  811. 1
  812. ]
  813. },
  814. "_eulerAngles": {
  815. "__type__": "cc.Vec3",
  816. "x": 0,
  817. "y": 0,
  818. "z": 0
  819. },
  820. "_skewX": 0,
  821. "_skewY": 0,
  822. "_is3DNode": false,
  823. "_groupIndex": 0,
  824. "groupIndex": 0,
  825. "_id": ""
  826. },
  827. {
  828. "__type__": "cc.Node",
  829. "_name": "view",
  830. "_objFlags": 0,
  831. "_parent": {
  832. "__id__": 21
  833. },
  834. "_children": [
  835. {
  836. "__id__": 23
  837. }
  838. ],
  839. "_active": true,
  840. "_components": [
  841. {
  842. "__id__": 132
  843. }
  844. ],
  845. "_prefab": {
  846. "__id__": 133
  847. },
  848. "_opacity": 255,
  849. "_color": {
  850. "__type__": "cc.Color",
  851. "r": 255,
  852. "g": 255,
  853. "b": 255,
  854. "a": 255
  855. },
  856. "_contentSize": {
  857. "__type__": "cc.Size",
  858. "width": 550,
  859. "height": 280
  860. },
  861. "_anchorPoint": {
  862. "__type__": "cc.Vec2",
  863. "x": 0.5,
  864. "y": 0.5
  865. },
  866. "_trs": {
  867. "__type__": "TypedArray",
  868. "ctor": "Float64Array",
  869. "array": [
  870. 0,
  871. 0,
  872. 0,
  873. 0,
  874. 0,
  875. 0,
  876. 1,
  877. 1,
  878. 1,
  879. 1
  880. ]
  881. },
  882. "_eulerAngles": {
  883. "__type__": "cc.Vec3",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0
  887. },
  888. "_skewX": 0,
  889. "_skewY": 0,
  890. "_is3DNode": false,
  891. "_groupIndex": 0,
  892. "groupIndex": 0,
  893. "_id": ""
  894. },
  895. {
  896. "__type__": "cc.Node",
  897. "_name": "content",
  898. "_objFlags": 0,
  899. "_parent": {
  900. "__id__": 22
  901. },
  902. "_children": [
  903. {
  904. "__id__": 24
  905. },
  906. {
  907. "__id__": 123
  908. }
  909. ],
  910. "_active": true,
  911. "_components": [
  912. {
  913. "__id__": 130
  914. }
  915. ],
  916. "_prefab": {
  917. "__id__": 131
  918. },
  919. "_opacity": 255,
  920. "_color": {
  921. "__type__": "cc.Color",
  922. "r": 255,
  923. "g": 255,
  924. "b": 255,
  925. "a": 255
  926. },
  927. "_contentSize": {
  928. "__type__": "cc.Size",
  929. "width": 550,
  930. "height": 280
  931. },
  932. "_anchorPoint": {
  933. "__type__": "cc.Vec2",
  934. "x": 0.5,
  935. "y": 1
  936. },
  937. "_trs": {
  938. "__type__": "TypedArray",
  939. "ctor": "Float64Array",
  940. "array": [
  941. 0,
  942. 140,
  943. 0,
  944. 0,
  945. 0,
  946. 0,
  947. 1,
  948. 1,
  949. 1,
  950. 1
  951. ]
  952. },
  953. "_eulerAngles": {
  954. "__type__": "cc.Vec3",
  955. "x": 0,
  956. "y": 0,
  957. "z": 0
  958. },
  959. "_skewX": 0,
  960. "_skewY": 0,
  961. "_is3DNode": false,
  962. "_groupIndex": 0,
  963. "groupIndex": 0,
  964. "_id": ""
  965. },
  966. {
  967. "__type__": "cc.Node",
  968. "_name": "attrs",
  969. "_objFlags": 0,
  970. "_parent": {
  971. "__id__": 23
  972. },
  973. "_children": [
  974. {
  975. "__id__": 25
  976. },
  977. {
  978. "__id__": 49
  979. },
  980. {
  981. "__id__": 73
  982. },
  983. {
  984. "__id__": 97
  985. }
  986. ],
  987. "_active": true,
  988. "_components": [
  989. {
  990. "__id__": 121
  991. }
  992. ],
  993. "_prefab": {
  994. "__id__": 122
  995. },
  996. "_opacity": 255,
  997. "_color": {
  998. "__type__": "cc.Color",
  999. "r": 255,
  1000. "g": 255,
  1001. "b": 255,
  1002. "a": 255
  1003. },
  1004. "_contentSize": {
  1005. "__type__": "cc.Size",
  1006. "width": 520,
  1007. "height": 203
  1008. },
  1009. "_anchorPoint": {
  1010. "__type__": "cc.Vec2",
  1011. "x": 0.5,
  1012. "y": 1
  1013. },
  1014. "_trs": {
  1015. "__type__": "TypedArray",
  1016. "ctor": "Float64Array",
  1017. "array": [
  1018. 0,
  1019. 0,
  1020. 0,
  1021. 0,
  1022. 0,
  1023. 0,
  1024. 1,
  1025. 1,
  1026. 1,
  1027. 1
  1028. ]
  1029. },
  1030. "_eulerAngles": {
  1031. "__type__": "cc.Vec3",
  1032. "x": 0,
  1033. "y": 0,
  1034. "z": 0
  1035. },
  1036. "_skewX": 0,
  1037. "_skewY": 0,
  1038. "_is3DNode": false,
  1039. "_groupIndex": 0,
  1040. "groupIndex": 0,
  1041. "_id": ""
  1042. },
  1043. {
  1044. "__type__": "cc.Node",
  1045. "_name": "attr",
  1046. "_objFlags": 0,
  1047. "_parent": {
  1048. "__id__": 24
  1049. },
  1050. "_children": [
  1051. {
  1052. "__id__": 26
  1053. },
  1054. {
  1055. "__id__": 29
  1056. },
  1057. {
  1058. "__id__": 32
  1059. },
  1060. {
  1061. "__id__": 37
  1062. },
  1063. {
  1064. "__id__": 41
  1065. },
  1066. {
  1067. "__id__": 44
  1068. }
  1069. ],
  1070. "_active": true,
  1071. "_components": [],
  1072. "_prefab": {
  1073. "__id__": 48
  1074. },
  1075. "_opacity": 255,
  1076. "_color": {
  1077. "__type__": "cc.Color",
  1078. "r": 255,
  1079. "g": 255,
  1080. "b": 255,
  1081. "a": 255
  1082. },
  1083. "_contentSize": {
  1084. "__type__": "cc.Size",
  1085. "width": 520,
  1086. "height": 40
  1087. },
  1088. "_anchorPoint": {
  1089. "__type__": "cc.Vec2",
  1090. "x": 0.5,
  1091. "y": 0.5
  1092. },
  1093. "_trs": {
  1094. "__type__": "TypedArray",
  1095. "ctor": "Float64Array",
  1096. "array": [
  1097. 0,
  1098. -33,
  1099. 0,
  1100. 0,
  1101. 0,
  1102. 0,
  1103. 1,
  1104. 1,
  1105. 1,
  1106. 1
  1107. ]
  1108. },
  1109. "_eulerAngles": {
  1110. "__type__": "cc.Vec3",
  1111. "x": 0,
  1112. "y": 0,
  1113. "z": 0
  1114. },
  1115. "_skewX": 0,
  1116. "_skewY": 0,
  1117. "_is3DNode": false,
  1118. "_groupIndex": 0,
  1119. "groupIndex": 0,
  1120. "_id": ""
  1121. },
  1122. {
  1123. "__type__": "cc.Node",
  1124. "_name": "bg",
  1125. "_objFlags": 0,
  1126. "_parent": {
  1127. "__id__": 25
  1128. },
  1129. "_children": [],
  1130. "_active": true,
  1131. "_components": [
  1132. {
  1133. "__id__": 27
  1134. }
  1135. ],
  1136. "_prefab": {
  1137. "__id__": 28
  1138. },
  1139. "_opacity": 255,
  1140. "_color": {
  1141. "__type__": "cc.Color",
  1142. "r": 41,
  1143. "g": 29,
  1144. "b": 14,
  1145. "a": 255
  1146. },
  1147. "_contentSize": {
  1148. "__type__": "cc.Size",
  1149. "width": 520,
  1150. "height": 40
  1151. },
  1152. "_anchorPoint": {
  1153. "__type__": "cc.Vec2",
  1154. "x": 0.5,
  1155. "y": 0.5
  1156. },
  1157. "_trs": {
  1158. "__type__": "TypedArray",
  1159. "ctor": "Float64Array",
  1160. "array": [
  1161. -0.5,
  1162. 0,
  1163. 0,
  1164. 0,
  1165. 0,
  1166. 0,
  1167. 1,
  1168. 1,
  1169. 1,
  1170. 1
  1171. ]
  1172. },
  1173. "_eulerAngles": {
  1174. "__type__": "cc.Vec3",
  1175. "x": 0,
  1176. "y": 0,
  1177. "z": 0
  1178. },
  1179. "_skewX": 0,
  1180. "_skewY": 0,
  1181. "_is3DNode": false,
  1182. "_groupIndex": 0,
  1183. "groupIndex": 0,
  1184. "_id": ""
  1185. },
  1186. {
  1187. "__type__": "cc.Sprite",
  1188. "_name": "",
  1189. "_objFlags": 0,
  1190. "node": {
  1191. "__id__": 26
  1192. },
  1193. "_enabled": true,
  1194. "_materials": [
  1195. {
  1196. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1197. }
  1198. ],
  1199. "_srcBlendFactor": 770,
  1200. "_dstBlendFactor": 771,
  1201. "_spriteFrame": {
  1202. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  1203. },
  1204. "_type": 0,
  1205. "_sizeMode": 0,
  1206. "_fillType": 0,
  1207. "_fillCenter": {
  1208. "__type__": "cc.Vec2",
  1209. "x": 0,
  1210. "y": 0
  1211. },
  1212. "_fillStart": 0,
  1213. "_fillRange": 0,
  1214. "_isTrimmedMode": false,
  1215. "_atlas": null,
  1216. "_id": ""
  1217. },
  1218. {
  1219. "__type__": "cc.PrefabInfo",
  1220. "root": {
  1221. "__id__": 1
  1222. },
  1223. "asset": {
  1224. "__id__": 0
  1225. },
  1226. "fileId": "a3amp++gRE3pZRFERaefYy",
  1227. "sync": false
  1228. },
  1229. {
  1230. "__type__": "cc.Node",
  1231. "_name": "icon",
  1232. "_objFlags": 0,
  1233. "_parent": {
  1234. "__id__": 25
  1235. },
  1236. "_children": [],
  1237. "_active": true,
  1238. "_components": [
  1239. {
  1240. "__id__": 30
  1241. }
  1242. ],
  1243. "_prefab": {
  1244. "__id__": 31
  1245. },
  1246. "_opacity": 255,
  1247. "_color": {
  1248. "__type__": "cc.Color",
  1249. "r": 255,
  1250. "g": 255,
  1251. "b": 255,
  1252. "a": 255
  1253. },
  1254. "_contentSize": {
  1255. "__type__": "cc.Size",
  1256. "width": 53,
  1257. "height": 47
  1258. },
  1259. "_anchorPoint": {
  1260. "__type__": "cc.Vec2",
  1261. "x": 0.5,
  1262. "y": 0.5
  1263. },
  1264. "_trs": {
  1265. "__type__": "TypedArray",
  1266. "ctor": "Float64Array",
  1267. "array": [
  1268. -235.95,
  1269. 0,
  1270. 0,
  1271. 0,
  1272. 0,
  1273. 0,
  1274. 1,
  1275. 1,
  1276. 1,
  1277. 1
  1278. ]
  1279. },
  1280. "_eulerAngles": {
  1281. "__type__": "cc.Vec3",
  1282. "x": 0,
  1283. "y": 0,
  1284. "z": 0
  1285. },
  1286. "_skewX": 0,
  1287. "_skewY": 0,
  1288. "_is3DNode": false,
  1289. "_groupIndex": 0,
  1290. "groupIndex": 0,
  1291. "_id": ""
  1292. },
  1293. {
  1294. "__type__": "cc.Sprite",
  1295. "_name": "",
  1296. "_objFlags": 0,
  1297. "node": {
  1298. "__id__": 29
  1299. },
  1300. "_enabled": true,
  1301. "_materials": [
  1302. {
  1303. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1304. }
  1305. ],
  1306. "_srcBlendFactor": 770,
  1307. "_dstBlendFactor": 771,
  1308. "_spriteFrame": null,
  1309. "_type": 0,
  1310. "_sizeMode": 1,
  1311. "_fillType": 0,
  1312. "_fillCenter": {
  1313. "__type__": "cc.Vec2",
  1314. "x": 0,
  1315. "y": 0
  1316. },
  1317. "_fillStart": 0,
  1318. "_fillRange": 0,
  1319. "_isTrimmedMode": true,
  1320. "_atlas": null,
  1321. "_id": ""
  1322. },
  1323. {
  1324. "__type__": "cc.PrefabInfo",
  1325. "root": {
  1326. "__id__": 1
  1327. },
  1328. "asset": {
  1329. "__id__": 0
  1330. },
  1331. "fileId": "7754LCaH5OO7ZQzfe8jAU7",
  1332. "sync": false
  1333. },
  1334. {
  1335. "__type__": "cc.Node",
  1336. "_name": "attrName",
  1337. "_objFlags": 0,
  1338. "_parent": {
  1339. "__id__": 25
  1340. },
  1341. "_children": [],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 33
  1346. },
  1347. {
  1348. "__id__": 34
  1349. },
  1350. {
  1351. "__id__": 35
  1352. }
  1353. ],
  1354. "_prefab": {
  1355. "__id__": 36
  1356. },
  1357. "_opacity": 255,
  1358. "_color": {
  1359. "__type__": "cc.Color",
  1360. "r": 255,
  1361. "g": 255,
  1362. "b": 255,
  1363. "a": 255
  1364. },
  1365. "_contentSize": {
  1366. "__type__": "cc.Size",
  1367. "width": 56.75,
  1368. "height": 53.88
  1369. },
  1370. "_anchorPoint": {
  1371. "__type__": "cc.Vec2",
  1372. "x": 0.5,
  1373. "y": 0.5
  1374. },
  1375. "_trs": {
  1376. "__type__": "TypedArray",
  1377. "ctor": "Float64Array",
  1378. "array": [
  1379. -173.04,
  1380. 0,
  1381. 0,
  1382. 0,
  1383. 0,
  1384. 0,
  1385. 1,
  1386. 1,
  1387. 1,
  1388. 1
  1389. ]
  1390. },
  1391. "_eulerAngles": {
  1392. "__type__": "cc.Vec3",
  1393. "x": 0,
  1394. "y": 0,
  1395. "z": 0
  1396. },
  1397. "_skewX": 0,
  1398. "_skewY": 0,
  1399. "_is3DNode": false,
  1400. "_groupIndex": 0,
  1401. "groupIndex": 0,
  1402. "_id": ""
  1403. },
  1404. {
  1405. "__type__": "cc.Label",
  1406. "_name": "",
  1407. "_objFlags": 0,
  1408. "node": {
  1409. "__id__": 32
  1410. },
  1411. "_enabled": true,
  1412. "_materials": [
  1413. {
  1414. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1415. }
  1416. ],
  1417. "_srcBlendFactor": 770,
  1418. "_dstBlendFactor": 771,
  1419. "_string": "HP:",
  1420. "_N$string": "HP:",
  1421. "_fontSize": 36,
  1422. "_lineHeight": 38,
  1423. "_enableWrapText": true,
  1424. "_N$file": {
  1425. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1426. },
  1427. "_isSystemFontUsed": false,
  1428. "_spacingX": 0,
  1429. "_batchAsBitmap": false,
  1430. "_styleFlags": 0,
  1431. "_underlineHeight": 0,
  1432. "_N$horizontalAlign": 1,
  1433. "_N$verticalAlign": 1,
  1434. "_N$fontFamily": "Arial",
  1435. "_N$overflow": 0,
  1436. "_N$cacheMode": 0,
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.LabelOutline",
  1441. "_name": "",
  1442. "_objFlags": 0,
  1443. "node": {
  1444. "__id__": 32
  1445. },
  1446. "_enabled": true,
  1447. "_color": {
  1448. "__type__": "cc.Color",
  1449. "r": 38,
  1450. "g": 17,
  1451. "b": 12,
  1452. "a": 255
  1453. },
  1454. "_width": 3,
  1455. "_id": ""
  1456. },
  1457. {
  1458. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "node": {
  1462. "__id__": 32
  1463. },
  1464. "_enabled": true,
  1465. "_englishCase": 0,
  1466. "i18n_string": "t1001",
  1467. "i18n_params": [],
  1468. "_addColon": true,
  1469. "_id": ""
  1470. },
  1471. {
  1472. "__type__": "cc.PrefabInfo",
  1473. "root": {
  1474. "__id__": 1
  1475. },
  1476. "asset": {
  1477. "__id__": 0
  1478. },
  1479. "fileId": "17BQ4e7J5DxZ4R99isBSFF",
  1480. "sync": false
  1481. },
  1482. {
  1483. "__type__": "cc.Node",
  1484. "_name": "attrNum",
  1485. "_objFlags": 0,
  1486. "_parent": {
  1487. "__id__": 25
  1488. },
  1489. "_children": [],
  1490. "_active": true,
  1491. "_components": [
  1492. {
  1493. "__id__": 38
  1494. },
  1495. {
  1496. "__id__": 39
  1497. }
  1498. ],
  1499. "_prefab": {
  1500. "__id__": 40
  1501. },
  1502. "_opacity": 255,
  1503. "_color": {
  1504. "__type__": "cc.Color",
  1505. "r": 255,
  1506. "g": 255,
  1507. "b": 255,
  1508. "a": 255
  1509. },
  1510. "_contentSize": {
  1511. "__type__": "cc.Size",
  1512. "width": 131.3,
  1513. "height": 53.88
  1514. },
  1515. "_anchorPoint": {
  1516. "__type__": "cc.Vec2",
  1517. "x": 0.5,
  1518. "y": 0.5
  1519. },
  1520. "_trs": {
  1521. "__type__": "TypedArray",
  1522. "ctor": "Float64Array",
  1523. "array": [
  1524. -0.097,
  1525. 0,
  1526. 0,
  1527. 0,
  1528. 0,
  1529. 0,
  1530. 1,
  1531. 1,
  1532. 1,
  1533. 1
  1534. ]
  1535. },
  1536. "_eulerAngles": {
  1537. "__type__": "cc.Vec3",
  1538. "x": 0,
  1539. "y": 0,
  1540. "z": 0
  1541. },
  1542. "_skewX": 0,
  1543. "_skewY": 0,
  1544. "_is3DNode": false,
  1545. "_groupIndex": 0,
  1546. "groupIndex": 0,
  1547. "_id": ""
  1548. },
  1549. {
  1550. "__type__": "cc.Label",
  1551. "_name": "",
  1552. "_objFlags": 0,
  1553. "node": {
  1554. "__id__": 37
  1555. },
  1556. "_enabled": true,
  1557. "_materials": [
  1558. {
  1559. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1560. }
  1561. ],
  1562. "_srcBlendFactor": 770,
  1563. "_dstBlendFactor": 771,
  1564. "_string": "5000k",
  1565. "_N$string": "5000k",
  1566. "_fontSize": 36,
  1567. "_lineHeight": 38,
  1568. "_enableWrapText": true,
  1569. "_N$file": {
  1570. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1571. },
  1572. "_isSystemFontUsed": false,
  1573. "_spacingX": 0,
  1574. "_batchAsBitmap": false,
  1575. "_styleFlags": 0,
  1576. "_underlineHeight": 0,
  1577. "_N$horizontalAlign": 1,
  1578. "_N$verticalAlign": 1,
  1579. "_N$fontFamily": "Arial",
  1580. "_N$overflow": 0,
  1581. "_N$cacheMode": 0,
  1582. "_id": ""
  1583. },
  1584. {
  1585. "__type__": "cc.LabelOutline",
  1586. "_name": "",
  1587. "_objFlags": 0,
  1588. "node": {
  1589. "__id__": 37
  1590. },
  1591. "_enabled": true,
  1592. "_color": {
  1593. "__type__": "cc.Color",
  1594. "r": 38,
  1595. "g": 17,
  1596. "b": 12,
  1597. "a": 255
  1598. },
  1599. "_width": 3,
  1600. "_id": ""
  1601. },
  1602. {
  1603. "__type__": "cc.PrefabInfo",
  1604. "root": {
  1605. "__id__": 1
  1606. },
  1607. "asset": {
  1608. "__id__": 0
  1609. },
  1610. "fileId": "27Nwt8zoRJFIgfyoIpPQLS",
  1611. "sync": false
  1612. },
  1613. {
  1614. "__type__": "cc.Node",
  1615. "_name": "arrow_3",
  1616. "_objFlags": 0,
  1617. "_parent": {
  1618. "__id__": 25
  1619. },
  1620. "_children": [],
  1621. "_active": true,
  1622. "_components": [
  1623. {
  1624. "__id__": 42
  1625. }
  1626. ],
  1627. "_prefab": {
  1628. "__id__": 43
  1629. },
  1630. "_opacity": 255,
  1631. "_color": {
  1632. "__type__": "cc.Color",
  1633. "r": 186,
  1634. "g": 255,
  1635. "b": 39,
  1636. "a": 255
  1637. },
  1638. "_contentSize": {
  1639. "__type__": "cc.Size",
  1640. "width": 45,
  1641. "height": 28
  1642. },
  1643. "_anchorPoint": {
  1644. "__type__": "cc.Vec2",
  1645. "x": 0.5,
  1646. "y": 0.5
  1647. },
  1648. "_trs": {
  1649. "__type__": "TypedArray",
  1650. "ctor": "Float64Array",
  1651. "array": [
  1652. 93.928,
  1653. 0,
  1654. 0,
  1655. 0,
  1656. 0,
  1657. 0,
  1658. 1,
  1659. 1,
  1660. 1,
  1661. 1
  1662. ]
  1663. },
  1664. "_eulerAngles": {
  1665. "__type__": "cc.Vec3",
  1666. "x": 0,
  1667. "y": 0,
  1668. "z": 0
  1669. },
  1670. "_skewX": 0,
  1671. "_skewY": 0,
  1672. "_is3DNode": false,
  1673. "_groupIndex": 0,
  1674. "groupIndex": 0,
  1675. "_id": ""
  1676. },
  1677. {
  1678. "__type__": "cc.Sprite",
  1679. "_name": "",
  1680. "_objFlags": 0,
  1681. "node": {
  1682. "__id__": 41
  1683. },
  1684. "_enabled": true,
  1685. "_materials": [
  1686. {
  1687. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1688. }
  1689. ],
  1690. "_srcBlendFactor": 770,
  1691. "_dstBlendFactor": 771,
  1692. "_spriteFrame": {
  1693. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  1694. },
  1695. "_type": 0,
  1696. "_sizeMode": 1,
  1697. "_fillType": 0,
  1698. "_fillCenter": {
  1699. "__type__": "cc.Vec2",
  1700. "x": 0,
  1701. "y": 0
  1702. },
  1703. "_fillStart": 0,
  1704. "_fillRange": 0,
  1705. "_isTrimmedMode": true,
  1706. "_atlas": null,
  1707. "_id": ""
  1708. },
  1709. {
  1710. "__type__": "cc.PrefabInfo",
  1711. "root": {
  1712. "__id__": 1
  1713. },
  1714. "asset": {
  1715. "__id__": 0
  1716. },
  1717. "fileId": "01weJwV99C6rIthX92Pgf2",
  1718. "sync": false
  1719. },
  1720. {
  1721. "__type__": "cc.Node",
  1722. "_name": "nextNum",
  1723. "_objFlags": 0,
  1724. "_parent": {
  1725. "__id__": 25
  1726. },
  1727. "_children": [],
  1728. "_active": true,
  1729. "_components": [
  1730. {
  1731. "__id__": 45
  1732. },
  1733. {
  1734. "__id__": 46
  1735. }
  1736. ],
  1737. "_prefab": {
  1738. "__id__": 47
  1739. },
  1740. "_opacity": 255,
  1741. "_color": {
  1742. "__type__": "cc.Color",
  1743. "r": 186,
  1744. "g": 255,
  1745. "b": 39,
  1746. "a": 255
  1747. },
  1748. "_contentSize": {
  1749. "__type__": "cc.Size",
  1750. "width": 131.3,
  1751. "height": 53.88
  1752. },
  1753. "_anchorPoint": {
  1754. "__type__": "cc.Vec2",
  1755. "x": 0.5,
  1756. "y": 0.5
  1757. },
  1758. "_trs": {
  1759. "__type__": "TypedArray",
  1760. "ctor": "Float64Array",
  1761. "array": [
  1762. 187.301,
  1763. 0,
  1764. 0,
  1765. 0,
  1766. 0,
  1767. 0,
  1768. 1,
  1769. 1,
  1770. 1,
  1771. 1
  1772. ]
  1773. },
  1774. "_eulerAngles": {
  1775. "__type__": "cc.Vec3",
  1776. "x": 0,
  1777. "y": 0,
  1778. "z": 0
  1779. },
  1780. "_skewX": 0,
  1781. "_skewY": 0,
  1782. "_is3DNode": false,
  1783. "_groupIndex": 0,
  1784. "groupIndex": 0,
  1785. "_id": ""
  1786. },
  1787. {
  1788. "__type__": "cc.Label",
  1789. "_name": "",
  1790. "_objFlags": 0,
  1791. "node": {
  1792. "__id__": 44
  1793. },
  1794. "_enabled": true,
  1795. "_materials": [
  1796. {
  1797. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1798. }
  1799. ],
  1800. "_srcBlendFactor": 770,
  1801. "_dstBlendFactor": 771,
  1802. "_string": "5000k",
  1803. "_N$string": "5000k",
  1804. "_fontSize": 36,
  1805. "_lineHeight": 38,
  1806. "_enableWrapText": true,
  1807. "_N$file": {
  1808. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1809. },
  1810. "_isSystemFontUsed": false,
  1811. "_spacingX": 0,
  1812. "_batchAsBitmap": false,
  1813. "_styleFlags": 0,
  1814. "_underlineHeight": 0,
  1815. "_N$horizontalAlign": 1,
  1816. "_N$verticalAlign": 1,
  1817. "_N$fontFamily": "Arial",
  1818. "_N$overflow": 0,
  1819. "_N$cacheMode": 0,
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.LabelOutline",
  1824. "_name": "",
  1825. "_objFlags": 0,
  1826. "node": {
  1827. "__id__": 44
  1828. },
  1829. "_enabled": true,
  1830. "_color": {
  1831. "__type__": "cc.Color",
  1832. "r": 38,
  1833. "g": 17,
  1834. "b": 12,
  1835. "a": 255
  1836. },
  1837. "_width": 3,
  1838. "_id": ""
  1839. },
  1840. {
  1841. "__type__": "cc.PrefabInfo",
  1842. "root": {
  1843. "__id__": 1
  1844. },
  1845. "asset": {
  1846. "__id__": 0
  1847. },
  1848. "fileId": "8ecEC80b5Boo3ZmZJsJSqK",
  1849. "sync": false
  1850. },
  1851. {
  1852. "__type__": "cc.PrefabInfo",
  1853. "root": {
  1854. "__id__": 1
  1855. },
  1856. "asset": {
  1857. "__id__": 0
  1858. },
  1859. "fileId": "4fn3W0dx9F8oKVV/TcvlYu",
  1860. "sync": false
  1861. },
  1862. {
  1863. "__type__": "cc.Node",
  1864. "_name": "attr",
  1865. "_objFlags": 0,
  1866. "_parent": {
  1867. "__id__": 24
  1868. },
  1869. "_children": [
  1870. {
  1871. "__id__": 50
  1872. },
  1873. {
  1874. "__id__": 53
  1875. },
  1876. {
  1877. "__id__": 56
  1878. },
  1879. {
  1880. "__id__": 61
  1881. },
  1882. {
  1883. "__id__": 65
  1884. },
  1885. {
  1886. "__id__": 68
  1887. }
  1888. ],
  1889. "_active": true,
  1890. "_components": [],
  1891. "_prefab": {
  1892. "__id__": 72
  1893. },
  1894. "_opacity": 255,
  1895. "_color": {
  1896. "__type__": "cc.Color",
  1897. "r": 255,
  1898. "g": 255,
  1899. "b": 255,
  1900. "a": 255
  1901. },
  1902. "_contentSize": {
  1903. "__type__": "cc.Size",
  1904. "width": 520,
  1905. "height": 40
  1906. },
  1907. "_anchorPoint": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0.5,
  1910. "y": 0.5
  1911. },
  1912. "_trs": {
  1913. "__type__": "TypedArray",
  1914. "ctor": "Float64Array",
  1915. "array": [
  1916. 0,
  1917. -83,
  1918. 0,
  1919. 0,
  1920. 0,
  1921. 0,
  1922. 1,
  1923. 1,
  1924. 1,
  1925. 1
  1926. ]
  1927. },
  1928. "_eulerAngles": {
  1929. "__type__": "cc.Vec3",
  1930. "x": 0,
  1931. "y": 0,
  1932. "z": 0
  1933. },
  1934. "_skewX": 0,
  1935. "_skewY": 0,
  1936. "_is3DNode": false,
  1937. "_groupIndex": 0,
  1938. "groupIndex": 0,
  1939. "_id": ""
  1940. },
  1941. {
  1942. "__type__": "cc.Node",
  1943. "_name": "bg",
  1944. "_objFlags": 0,
  1945. "_parent": {
  1946. "__id__": 49
  1947. },
  1948. "_children": [],
  1949. "_active": true,
  1950. "_components": [
  1951. {
  1952. "__id__": 51
  1953. }
  1954. ],
  1955. "_prefab": {
  1956. "__id__": 52
  1957. },
  1958. "_opacity": 255,
  1959. "_color": {
  1960. "__type__": "cc.Color",
  1961. "r": 41,
  1962. "g": 29,
  1963. "b": 14,
  1964. "a": 255
  1965. },
  1966. "_contentSize": {
  1967. "__type__": "cc.Size",
  1968. "width": 520,
  1969. "height": 40
  1970. },
  1971. "_anchorPoint": {
  1972. "__type__": "cc.Vec2",
  1973. "x": 0.5,
  1974. "y": 0.5
  1975. },
  1976. "_trs": {
  1977. "__type__": "TypedArray",
  1978. "ctor": "Float64Array",
  1979. "array": [
  1980. -0.5,
  1981. 0,
  1982. 0,
  1983. 0,
  1984. 0,
  1985. 0,
  1986. 1,
  1987. 1,
  1988. 1,
  1989. 1
  1990. ]
  1991. },
  1992. "_eulerAngles": {
  1993. "__type__": "cc.Vec3",
  1994. "x": 0,
  1995. "y": 0,
  1996. "z": 0
  1997. },
  1998. "_skewX": 0,
  1999. "_skewY": 0,
  2000. "_is3DNode": false,
  2001. "_groupIndex": 0,
  2002. "groupIndex": 0,
  2003. "_id": ""
  2004. },
  2005. {
  2006. "__type__": "cc.Sprite",
  2007. "_name": "",
  2008. "_objFlags": 0,
  2009. "node": {
  2010. "__id__": 50
  2011. },
  2012. "_enabled": true,
  2013. "_materials": [
  2014. {
  2015. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2016. }
  2017. ],
  2018. "_srcBlendFactor": 770,
  2019. "_dstBlendFactor": 771,
  2020. "_spriteFrame": {
  2021. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  2022. },
  2023. "_type": 0,
  2024. "_sizeMode": 0,
  2025. "_fillType": 0,
  2026. "_fillCenter": {
  2027. "__type__": "cc.Vec2",
  2028. "x": 0,
  2029. "y": 0
  2030. },
  2031. "_fillStart": 0,
  2032. "_fillRange": 0,
  2033. "_isTrimmedMode": false,
  2034. "_atlas": null,
  2035. "_id": ""
  2036. },
  2037. {
  2038. "__type__": "cc.PrefabInfo",
  2039. "root": {
  2040. "__id__": 1
  2041. },
  2042. "asset": {
  2043. "__id__": 0
  2044. },
  2045. "fileId": "3cfYYWnOtIjKlsI8ogUw0W",
  2046. "sync": false
  2047. },
  2048. {
  2049. "__type__": "cc.Node",
  2050. "_name": "icon",
  2051. "_objFlags": 0,
  2052. "_parent": {
  2053. "__id__": 49
  2054. },
  2055. "_children": [],
  2056. "_active": true,
  2057. "_components": [
  2058. {
  2059. "__id__": 54
  2060. }
  2061. ],
  2062. "_prefab": {
  2063. "__id__": 55
  2064. },
  2065. "_opacity": 255,
  2066. "_color": {
  2067. "__type__": "cc.Color",
  2068. "r": 255,
  2069. "g": 255,
  2070. "b": 255,
  2071. "a": 255
  2072. },
  2073. "_contentSize": {
  2074. "__type__": "cc.Size",
  2075. "width": 53,
  2076. "height": 47
  2077. },
  2078. "_anchorPoint": {
  2079. "__type__": "cc.Vec2",
  2080. "x": 0.5,
  2081. "y": 0.5
  2082. },
  2083. "_trs": {
  2084. "__type__": "TypedArray",
  2085. "ctor": "Float64Array",
  2086. "array": [
  2087. -235.95,
  2088. 0,
  2089. 0,
  2090. 0,
  2091. 0,
  2092. 0,
  2093. 1,
  2094. 1,
  2095. 1,
  2096. 1
  2097. ]
  2098. },
  2099. "_eulerAngles": {
  2100. "__type__": "cc.Vec3",
  2101. "x": 0,
  2102. "y": 0,
  2103. "z": 0
  2104. },
  2105. "_skewX": 0,
  2106. "_skewY": 0,
  2107. "_is3DNode": false,
  2108. "_groupIndex": 0,
  2109. "groupIndex": 0,
  2110. "_id": ""
  2111. },
  2112. {
  2113. "__type__": "cc.Sprite",
  2114. "_name": "",
  2115. "_objFlags": 0,
  2116. "node": {
  2117. "__id__": 53
  2118. },
  2119. "_enabled": true,
  2120. "_materials": [
  2121. {
  2122. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2123. }
  2124. ],
  2125. "_srcBlendFactor": 770,
  2126. "_dstBlendFactor": 771,
  2127. "_spriteFrame": null,
  2128. "_type": 0,
  2129. "_sizeMode": 1,
  2130. "_fillType": 0,
  2131. "_fillCenter": {
  2132. "__type__": "cc.Vec2",
  2133. "x": 0,
  2134. "y": 0
  2135. },
  2136. "_fillStart": 0,
  2137. "_fillRange": 0,
  2138. "_isTrimmedMode": true,
  2139. "_atlas": null,
  2140. "_id": ""
  2141. },
  2142. {
  2143. "__type__": "cc.PrefabInfo",
  2144. "root": {
  2145. "__id__": 1
  2146. },
  2147. "asset": {
  2148. "__id__": 0
  2149. },
  2150. "fileId": "ec1Y0uBfRAAqzCfEY8oNtP",
  2151. "sync": false
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "attrName",
  2156. "_objFlags": 0,
  2157. "_parent": {
  2158. "__id__": 49
  2159. },
  2160. "_children": [],
  2161. "_active": true,
  2162. "_components": [
  2163. {
  2164. "__id__": 57
  2165. },
  2166. {
  2167. "__id__": 58
  2168. },
  2169. {
  2170. "__id__": 59
  2171. }
  2172. ],
  2173. "_prefab": {
  2174. "__id__": 60
  2175. },
  2176. "_opacity": 255,
  2177. "_color": {
  2178. "__type__": "cc.Color",
  2179. "r": 255,
  2180. "g": 255,
  2181. "b": 255,
  2182. "a": 255
  2183. },
  2184. "_contentSize": {
  2185. "__type__": "cc.Size",
  2186. "width": 56.75,
  2187. "height": 53.88
  2188. },
  2189. "_anchorPoint": {
  2190. "__type__": "cc.Vec2",
  2191. "x": 0.5,
  2192. "y": 0.5
  2193. },
  2194. "_trs": {
  2195. "__type__": "TypedArray",
  2196. "ctor": "Float64Array",
  2197. "array": [
  2198. -173.04,
  2199. 0,
  2200. 0,
  2201. 0,
  2202. 0,
  2203. 0,
  2204. 1,
  2205. 1,
  2206. 1,
  2207. 1
  2208. ]
  2209. },
  2210. "_eulerAngles": {
  2211. "__type__": "cc.Vec3",
  2212. "x": 0,
  2213. "y": 0,
  2214. "z": 0
  2215. },
  2216. "_skewX": 0,
  2217. "_skewY": 0,
  2218. "_is3DNode": false,
  2219. "_groupIndex": 0,
  2220. "groupIndex": 0,
  2221. "_id": ""
  2222. },
  2223. {
  2224. "__type__": "cc.Label",
  2225. "_name": "",
  2226. "_objFlags": 0,
  2227. "node": {
  2228. "__id__": 56
  2229. },
  2230. "_enabled": true,
  2231. "_materials": [
  2232. {
  2233. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2234. }
  2235. ],
  2236. "_srcBlendFactor": 770,
  2237. "_dstBlendFactor": 771,
  2238. "_string": "HP:",
  2239. "_N$string": "HP:",
  2240. "_fontSize": 36,
  2241. "_lineHeight": 38,
  2242. "_enableWrapText": true,
  2243. "_N$file": {
  2244. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2245. },
  2246. "_isSystemFontUsed": false,
  2247. "_spacingX": 0,
  2248. "_batchAsBitmap": false,
  2249. "_styleFlags": 0,
  2250. "_underlineHeight": 0,
  2251. "_N$horizontalAlign": 1,
  2252. "_N$verticalAlign": 1,
  2253. "_N$fontFamily": "Arial",
  2254. "_N$overflow": 0,
  2255. "_N$cacheMode": 0,
  2256. "_id": ""
  2257. },
  2258. {
  2259. "__type__": "cc.LabelOutline",
  2260. "_name": "",
  2261. "_objFlags": 0,
  2262. "node": {
  2263. "__id__": 56
  2264. },
  2265. "_enabled": true,
  2266. "_color": {
  2267. "__type__": "cc.Color",
  2268. "r": 38,
  2269. "g": 17,
  2270. "b": 12,
  2271. "a": 255
  2272. },
  2273. "_width": 3,
  2274. "_id": ""
  2275. },
  2276. {
  2277. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2278. "_name": "",
  2279. "_objFlags": 0,
  2280. "node": {
  2281. "__id__": 56
  2282. },
  2283. "_enabled": true,
  2284. "_englishCase": 0,
  2285. "i18n_string": "t1001",
  2286. "i18n_params": [],
  2287. "_addColon": true,
  2288. "_id": ""
  2289. },
  2290. {
  2291. "__type__": "cc.PrefabInfo",
  2292. "root": {
  2293. "__id__": 1
  2294. },
  2295. "asset": {
  2296. "__id__": 0
  2297. },
  2298. "fileId": "eaPAk8vOVGjbRx3WXWGIqd",
  2299. "sync": false
  2300. },
  2301. {
  2302. "__type__": "cc.Node",
  2303. "_name": "attrNum",
  2304. "_objFlags": 0,
  2305. "_parent": {
  2306. "__id__": 49
  2307. },
  2308. "_children": [],
  2309. "_active": true,
  2310. "_components": [
  2311. {
  2312. "__id__": 62
  2313. },
  2314. {
  2315. "__id__": 63
  2316. }
  2317. ],
  2318. "_prefab": {
  2319. "__id__": 64
  2320. },
  2321. "_opacity": 255,
  2322. "_color": {
  2323. "__type__": "cc.Color",
  2324. "r": 255,
  2325. "g": 255,
  2326. "b": 255,
  2327. "a": 255
  2328. },
  2329. "_contentSize": {
  2330. "__type__": "cc.Size",
  2331. "width": 131.3,
  2332. "height": 53.88
  2333. },
  2334. "_anchorPoint": {
  2335. "__type__": "cc.Vec2",
  2336. "x": 0.5,
  2337. "y": 0.5
  2338. },
  2339. "_trs": {
  2340. "__type__": "TypedArray",
  2341. "ctor": "Float64Array",
  2342. "array": [
  2343. -0.097,
  2344. 0,
  2345. 0,
  2346. 0,
  2347. 0,
  2348. 0,
  2349. 1,
  2350. 1,
  2351. 1,
  2352. 1
  2353. ]
  2354. },
  2355. "_eulerAngles": {
  2356. "__type__": "cc.Vec3",
  2357. "x": 0,
  2358. "y": 0,
  2359. "z": 0
  2360. },
  2361. "_skewX": 0,
  2362. "_skewY": 0,
  2363. "_is3DNode": false,
  2364. "_groupIndex": 0,
  2365. "groupIndex": 0,
  2366. "_id": ""
  2367. },
  2368. {
  2369. "__type__": "cc.Label",
  2370. "_name": "",
  2371. "_objFlags": 0,
  2372. "node": {
  2373. "__id__": 61
  2374. },
  2375. "_enabled": true,
  2376. "_materials": [
  2377. {
  2378. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2379. }
  2380. ],
  2381. "_srcBlendFactor": 770,
  2382. "_dstBlendFactor": 771,
  2383. "_string": "5000k",
  2384. "_N$string": "5000k",
  2385. "_fontSize": 36,
  2386. "_lineHeight": 38,
  2387. "_enableWrapText": true,
  2388. "_N$file": {
  2389. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2390. },
  2391. "_isSystemFontUsed": false,
  2392. "_spacingX": 0,
  2393. "_batchAsBitmap": false,
  2394. "_styleFlags": 0,
  2395. "_underlineHeight": 0,
  2396. "_N$horizontalAlign": 1,
  2397. "_N$verticalAlign": 1,
  2398. "_N$fontFamily": "Arial",
  2399. "_N$overflow": 0,
  2400. "_N$cacheMode": 0,
  2401. "_id": ""
  2402. },
  2403. {
  2404. "__type__": "cc.LabelOutline",
  2405. "_name": "",
  2406. "_objFlags": 0,
  2407. "node": {
  2408. "__id__": 61
  2409. },
  2410. "_enabled": true,
  2411. "_color": {
  2412. "__type__": "cc.Color",
  2413. "r": 38,
  2414. "g": 17,
  2415. "b": 12,
  2416. "a": 255
  2417. },
  2418. "_width": 3,
  2419. "_id": ""
  2420. },
  2421. {
  2422. "__type__": "cc.PrefabInfo",
  2423. "root": {
  2424. "__id__": 1
  2425. },
  2426. "asset": {
  2427. "__id__": 0
  2428. },
  2429. "fileId": "523MW2vkZNRInacua/s20K",
  2430. "sync": false
  2431. },
  2432. {
  2433. "__type__": "cc.Node",
  2434. "_name": "arrow_3",
  2435. "_objFlags": 0,
  2436. "_parent": {
  2437. "__id__": 49
  2438. },
  2439. "_children": [],
  2440. "_active": true,
  2441. "_components": [
  2442. {
  2443. "__id__": 66
  2444. }
  2445. ],
  2446. "_prefab": {
  2447. "__id__": 67
  2448. },
  2449. "_opacity": 255,
  2450. "_color": {
  2451. "__type__": "cc.Color",
  2452. "r": 186,
  2453. "g": 255,
  2454. "b": 39,
  2455. "a": 255
  2456. },
  2457. "_contentSize": {
  2458. "__type__": "cc.Size",
  2459. "width": 45,
  2460. "height": 28
  2461. },
  2462. "_anchorPoint": {
  2463. "__type__": "cc.Vec2",
  2464. "x": 0.5,
  2465. "y": 0.5
  2466. },
  2467. "_trs": {
  2468. "__type__": "TypedArray",
  2469. "ctor": "Float64Array",
  2470. "array": [
  2471. 93.928,
  2472. 0,
  2473. 0,
  2474. 0,
  2475. 0,
  2476. 0,
  2477. 1,
  2478. 1,
  2479. 1,
  2480. 1
  2481. ]
  2482. },
  2483. "_eulerAngles": {
  2484. "__type__": "cc.Vec3",
  2485. "x": 0,
  2486. "y": 0,
  2487. "z": 0
  2488. },
  2489. "_skewX": 0,
  2490. "_skewY": 0,
  2491. "_is3DNode": false,
  2492. "_groupIndex": 0,
  2493. "groupIndex": 0,
  2494. "_id": ""
  2495. },
  2496. {
  2497. "__type__": "cc.Sprite",
  2498. "_name": "",
  2499. "_objFlags": 0,
  2500. "node": {
  2501. "__id__": 65
  2502. },
  2503. "_enabled": true,
  2504. "_materials": [
  2505. {
  2506. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2507. }
  2508. ],
  2509. "_srcBlendFactor": 770,
  2510. "_dstBlendFactor": 771,
  2511. "_spriteFrame": {
  2512. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  2513. },
  2514. "_type": 0,
  2515. "_sizeMode": 1,
  2516. "_fillType": 0,
  2517. "_fillCenter": {
  2518. "__type__": "cc.Vec2",
  2519. "x": 0,
  2520. "y": 0
  2521. },
  2522. "_fillStart": 0,
  2523. "_fillRange": 0,
  2524. "_isTrimmedMode": true,
  2525. "_atlas": null,
  2526. "_id": ""
  2527. },
  2528. {
  2529. "__type__": "cc.PrefabInfo",
  2530. "root": {
  2531. "__id__": 1
  2532. },
  2533. "asset": {
  2534. "__id__": 0
  2535. },
  2536. "fileId": "f4G1s51qZNhqzWZdaZmL9s",
  2537. "sync": false
  2538. },
  2539. {
  2540. "__type__": "cc.Node",
  2541. "_name": "nextNum",
  2542. "_objFlags": 0,
  2543. "_parent": {
  2544. "__id__": 49
  2545. },
  2546. "_children": [],
  2547. "_active": true,
  2548. "_components": [
  2549. {
  2550. "__id__": 69
  2551. },
  2552. {
  2553. "__id__": 70
  2554. }
  2555. ],
  2556. "_prefab": {
  2557. "__id__": 71
  2558. },
  2559. "_opacity": 255,
  2560. "_color": {
  2561. "__type__": "cc.Color",
  2562. "r": 186,
  2563. "g": 255,
  2564. "b": 39,
  2565. "a": 255
  2566. },
  2567. "_contentSize": {
  2568. "__type__": "cc.Size",
  2569. "width": 131.3,
  2570. "height": 53.88
  2571. },
  2572. "_anchorPoint": {
  2573. "__type__": "cc.Vec2",
  2574. "x": 0.5,
  2575. "y": 0.5
  2576. },
  2577. "_trs": {
  2578. "__type__": "TypedArray",
  2579. "ctor": "Float64Array",
  2580. "array": [
  2581. 187.301,
  2582. 0,
  2583. 0,
  2584. 0,
  2585. 0,
  2586. 0,
  2587. 1,
  2588. 1,
  2589. 1,
  2590. 1
  2591. ]
  2592. },
  2593. "_eulerAngles": {
  2594. "__type__": "cc.Vec3",
  2595. "x": 0,
  2596. "y": 0,
  2597. "z": 0
  2598. },
  2599. "_skewX": 0,
  2600. "_skewY": 0,
  2601. "_is3DNode": false,
  2602. "_groupIndex": 0,
  2603. "groupIndex": 0,
  2604. "_id": ""
  2605. },
  2606. {
  2607. "__type__": "cc.Label",
  2608. "_name": "",
  2609. "_objFlags": 0,
  2610. "node": {
  2611. "__id__": 68
  2612. },
  2613. "_enabled": true,
  2614. "_materials": [
  2615. {
  2616. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2617. }
  2618. ],
  2619. "_srcBlendFactor": 770,
  2620. "_dstBlendFactor": 771,
  2621. "_string": "5000k",
  2622. "_N$string": "5000k",
  2623. "_fontSize": 36,
  2624. "_lineHeight": 38,
  2625. "_enableWrapText": true,
  2626. "_N$file": {
  2627. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2628. },
  2629. "_isSystemFontUsed": false,
  2630. "_spacingX": 0,
  2631. "_batchAsBitmap": false,
  2632. "_styleFlags": 0,
  2633. "_underlineHeight": 0,
  2634. "_N$horizontalAlign": 1,
  2635. "_N$verticalAlign": 1,
  2636. "_N$fontFamily": "Arial",
  2637. "_N$overflow": 0,
  2638. "_N$cacheMode": 0,
  2639. "_id": ""
  2640. },
  2641. {
  2642. "__type__": "cc.LabelOutline",
  2643. "_name": "",
  2644. "_objFlags": 0,
  2645. "node": {
  2646. "__id__": 68
  2647. },
  2648. "_enabled": true,
  2649. "_color": {
  2650. "__type__": "cc.Color",
  2651. "r": 38,
  2652. "g": 17,
  2653. "b": 12,
  2654. "a": 255
  2655. },
  2656. "_width": 3,
  2657. "_id": ""
  2658. },
  2659. {
  2660. "__type__": "cc.PrefabInfo",
  2661. "root": {
  2662. "__id__": 1
  2663. },
  2664. "asset": {
  2665. "__id__": 0
  2666. },
  2667. "fileId": "b73d0Z5q1K0I06HSdeqPhk",
  2668. "sync": false
  2669. },
  2670. {
  2671. "__type__": "cc.PrefabInfo",
  2672. "root": {
  2673. "__id__": 1
  2674. },
  2675. "asset": {
  2676. "__id__": 0
  2677. },
  2678. "fileId": "18kad2AGlJ86+V5rPn4vxo",
  2679. "sync": false
  2680. },
  2681. {
  2682. "__type__": "cc.Node",
  2683. "_name": "attr",
  2684. "_objFlags": 0,
  2685. "_parent": {
  2686. "__id__": 24
  2687. },
  2688. "_children": [
  2689. {
  2690. "__id__": 74
  2691. },
  2692. {
  2693. "__id__": 77
  2694. },
  2695. {
  2696. "__id__": 80
  2697. },
  2698. {
  2699. "__id__": 85
  2700. },
  2701. {
  2702. "__id__": 89
  2703. },
  2704. {
  2705. "__id__": 92
  2706. }
  2707. ],
  2708. "_active": true,
  2709. "_components": [],
  2710. "_prefab": {
  2711. "__id__": 96
  2712. },
  2713. "_opacity": 255,
  2714. "_color": {
  2715. "__type__": "cc.Color",
  2716. "r": 255,
  2717. "g": 255,
  2718. "b": 255,
  2719. "a": 255
  2720. },
  2721. "_contentSize": {
  2722. "__type__": "cc.Size",
  2723. "width": 520,
  2724. "height": 40
  2725. },
  2726. "_anchorPoint": {
  2727. "__type__": "cc.Vec2",
  2728. "x": 0.5,
  2729. "y": 0.5
  2730. },
  2731. "_trs": {
  2732. "__type__": "TypedArray",
  2733. "ctor": "Float64Array",
  2734. "array": [
  2735. 0,
  2736. -133,
  2737. 0,
  2738. 0,
  2739. 0,
  2740. 0,
  2741. 1,
  2742. 1,
  2743. 1,
  2744. 1
  2745. ]
  2746. },
  2747. "_eulerAngles": {
  2748. "__type__": "cc.Vec3",
  2749. "x": 0,
  2750. "y": 0,
  2751. "z": 0
  2752. },
  2753. "_skewX": 0,
  2754. "_skewY": 0,
  2755. "_is3DNode": false,
  2756. "_groupIndex": 0,
  2757. "groupIndex": 0,
  2758. "_id": ""
  2759. },
  2760. {
  2761. "__type__": "cc.Node",
  2762. "_name": "bg",
  2763. "_objFlags": 0,
  2764. "_parent": {
  2765. "__id__": 73
  2766. },
  2767. "_children": [],
  2768. "_active": true,
  2769. "_components": [
  2770. {
  2771. "__id__": 75
  2772. }
  2773. ],
  2774. "_prefab": {
  2775. "__id__": 76
  2776. },
  2777. "_opacity": 255,
  2778. "_color": {
  2779. "__type__": "cc.Color",
  2780. "r": 41,
  2781. "g": 29,
  2782. "b": 14,
  2783. "a": 255
  2784. },
  2785. "_contentSize": {
  2786. "__type__": "cc.Size",
  2787. "width": 520,
  2788. "height": 40
  2789. },
  2790. "_anchorPoint": {
  2791. "__type__": "cc.Vec2",
  2792. "x": 0.5,
  2793. "y": 0.5
  2794. },
  2795. "_trs": {
  2796. "__type__": "TypedArray",
  2797. "ctor": "Float64Array",
  2798. "array": [
  2799. -0.5,
  2800. 0,
  2801. 0,
  2802. 0,
  2803. 0,
  2804. 0,
  2805. 1,
  2806. 1,
  2807. 1,
  2808. 1
  2809. ]
  2810. },
  2811. "_eulerAngles": {
  2812. "__type__": "cc.Vec3",
  2813. "x": 0,
  2814. "y": 0,
  2815. "z": 0
  2816. },
  2817. "_skewX": 0,
  2818. "_skewY": 0,
  2819. "_is3DNode": false,
  2820. "_groupIndex": 0,
  2821. "groupIndex": 0,
  2822. "_id": ""
  2823. },
  2824. {
  2825. "__type__": "cc.Sprite",
  2826. "_name": "",
  2827. "_objFlags": 0,
  2828. "node": {
  2829. "__id__": 74
  2830. },
  2831. "_enabled": true,
  2832. "_materials": [
  2833. {
  2834. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2835. }
  2836. ],
  2837. "_srcBlendFactor": 770,
  2838. "_dstBlendFactor": 771,
  2839. "_spriteFrame": {
  2840. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  2841. },
  2842. "_type": 0,
  2843. "_sizeMode": 0,
  2844. "_fillType": 0,
  2845. "_fillCenter": {
  2846. "__type__": "cc.Vec2",
  2847. "x": 0,
  2848. "y": 0
  2849. },
  2850. "_fillStart": 0,
  2851. "_fillRange": 0,
  2852. "_isTrimmedMode": false,
  2853. "_atlas": null,
  2854. "_id": ""
  2855. },
  2856. {
  2857. "__type__": "cc.PrefabInfo",
  2858. "root": {
  2859. "__id__": 1
  2860. },
  2861. "asset": {
  2862. "__id__": 0
  2863. },
  2864. "fileId": "87MOUluBBBAKyfFrl/DZh6",
  2865. "sync": false
  2866. },
  2867. {
  2868. "__type__": "cc.Node",
  2869. "_name": "icon",
  2870. "_objFlags": 0,
  2871. "_parent": {
  2872. "__id__": 73
  2873. },
  2874. "_children": [],
  2875. "_active": true,
  2876. "_components": [
  2877. {
  2878. "__id__": 78
  2879. }
  2880. ],
  2881. "_prefab": {
  2882. "__id__": 79
  2883. },
  2884. "_opacity": 255,
  2885. "_color": {
  2886. "__type__": "cc.Color",
  2887. "r": 255,
  2888. "g": 255,
  2889. "b": 255,
  2890. "a": 255
  2891. },
  2892. "_contentSize": {
  2893. "__type__": "cc.Size",
  2894. "width": 53,
  2895. "height": 47
  2896. },
  2897. "_anchorPoint": {
  2898. "__type__": "cc.Vec2",
  2899. "x": 0.5,
  2900. "y": 0.5
  2901. },
  2902. "_trs": {
  2903. "__type__": "TypedArray",
  2904. "ctor": "Float64Array",
  2905. "array": [
  2906. -235.95,
  2907. 0,
  2908. 0,
  2909. 0,
  2910. 0,
  2911. 0,
  2912. 1,
  2913. 1,
  2914. 1,
  2915. 1
  2916. ]
  2917. },
  2918. "_eulerAngles": {
  2919. "__type__": "cc.Vec3",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0
  2923. },
  2924. "_skewX": 0,
  2925. "_skewY": 0,
  2926. "_is3DNode": false,
  2927. "_groupIndex": 0,
  2928. "groupIndex": 0,
  2929. "_id": ""
  2930. },
  2931. {
  2932. "__type__": "cc.Sprite",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "node": {
  2936. "__id__": 77
  2937. },
  2938. "_enabled": true,
  2939. "_materials": [
  2940. {
  2941. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2942. }
  2943. ],
  2944. "_srcBlendFactor": 770,
  2945. "_dstBlendFactor": 771,
  2946. "_spriteFrame": null,
  2947. "_type": 0,
  2948. "_sizeMode": 1,
  2949. "_fillType": 0,
  2950. "_fillCenter": {
  2951. "__type__": "cc.Vec2",
  2952. "x": 0,
  2953. "y": 0
  2954. },
  2955. "_fillStart": 0,
  2956. "_fillRange": 0,
  2957. "_isTrimmedMode": true,
  2958. "_atlas": null,
  2959. "_id": ""
  2960. },
  2961. {
  2962. "__type__": "cc.PrefabInfo",
  2963. "root": {
  2964. "__id__": 1
  2965. },
  2966. "asset": {
  2967. "__id__": 0
  2968. },
  2969. "fileId": "86QkYM/jxOkIY/lKEntlZW",
  2970. "sync": false
  2971. },
  2972. {
  2973. "__type__": "cc.Node",
  2974. "_name": "attrName",
  2975. "_objFlags": 0,
  2976. "_parent": {
  2977. "__id__": 73
  2978. },
  2979. "_children": [],
  2980. "_active": true,
  2981. "_components": [
  2982. {
  2983. "__id__": 81
  2984. },
  2985. {
  2986. "__id__": 82
  2987. },
  2988. {
  2989. "__id__": 83
  2990. }
  2991. ],
  2992. "_prefab": {
  2993. "__id__": 84
  2994. },
  2995. "_opacity": 255,
  2996. "_color": {
  2997. "__type__": "cc.Color",
  2998. "r": 255,
  2999. "g": 255,
  3000. "b": 255,
  3001. "a": 255
  3002. },
  3003. "_contentSize": {
  3004. "__type__": "cc.Size",
  3005. "width": 56.75,
  3006. "height": 53.88
  3007. },
  3008. "_anchorPoint": {
  3009. "__type__": "cc.Vec2",
  3010. "x": 0.5,
  3011. "y": 0.5
  3012. },
  3013. "_trs": {
  3014. "__type__": "TypedArray",
  3015. "ctor": "Float64Array",
  3016. "array": [
  3017. -173.04,
  3018. 0,
  3019. 0,
  3020. 0,
  3021. 0,
  3022. 0,
  3023. 1,
  3024. 1,
  3025. 1,
  3026. 1
  3027. ]
  3028. },
  3029. "_eulerAngles": {
  3030. "__type__": "cc.Vec3",
  3031. "x": 0,
  3032. "y": 0,
  3033. "z": 0
  3034. },
  3035. "_skewX": 0,
  3036. "_skewY": 0,
  3037. "_is3DNode": false,
  3038. "_groupIndex": 0,
  3039. "groupIndex": 0,
  3040. "_id": ""
  3041. },
  3042. {
  3043. "__type__": "cc.Label",
  3044. "_name": "",
  3045. "_objFlags": 0,
  3046. "node": {
  3047. "__id__": 80
  3048. },
  3049. "_enabled": true,
  3050. "_materials": [
  3051. {
  3052. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3053. }
  3054. ],
  3055. "_srcBlendFactor": 770,
  3056. "_dstBlendFactor": 771,
  3057. "_string": "HP:",
  3058. "_N$string": "HP:",
  3059. "_fontSize": 36,
  3060. "_lineHeight": 38,
  3061. "_enableWrapText": true,
  3062. "_N$file": {
  3063. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3064. },
  3065. "_isSystemFontUsed": false,
  3066. "_spacingX": 0,
  3067. "_batchAsBitmap": false,
  3068. "_styleFlags": 0,
  3069. "_underlineHeight": 0,
  3070. "_N$horizontalAlign": 1,
  3071. "_N$verticalAlign": 1,
  3072. "_N$fontFamily": "Arial",
  3073. "_N$overflow": 0,
  3074. "_N$cacheMode": 0,
  3075. "_id": ""
  3076. },
  3077. {
  3078. "__type__": "cc.LabelOutline",
  3079. "_name": "",
  3080. "_objFlags": 0,
  3081. "node": {
  3082. "__id__": 80
  3083. },
  3084. "_enabled": true,
  3085. "_color": {
  3086. "__type__": "cc.Color",
  3087. "r": 38,
  3088. "g": 17,
  3089. "b": 12,
  3090. "a": 255
  3091. },
  3092. "_width": 3,
  3093. "_id": ""
  3094. },
  3095. {
  3096. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3097. "_name": "",
  3098. "_objFlags": 0,
  3099. "node": {
  3100. "__id__": 80
  3101. },
  3102. "_enabled": true,
  3103. "_englishCase": 0,
  3104. "i18n_string": "t1001",
  3105. "i18n_params": [],
  3106. "_addColon": true,
  3107. "_id": ""
  3108. },
  3109. {
  3110. "__type__": "cc.PrefabInfo",
  3111. "root": {
  3112. "__id__": 1
  3113. },
  3114. "asset": {
  3115. "__id__": 0
  3116. },
  3117. "fileId": "51OdpsostBr7+DXYcHNV5c",
  3118. "sync": false
  3119. },
  3120. {
  3121. "__type__": "cc.Node",
  3122. "_name": "attrNum",
  3123. "_objFlags": 0,
  3124. "_parent": {
  3125. "__id__": 73
  3126. },
  3127. "_children": [],
  3128. "_active": true,
  3129. "_components": [
  3130. {
  3131. "__id__": 86
  3132. },
  3133. {
  3134. "__id__": 87
  3135. }
  3136. ],
  3137. "_prefab": {
  3138. "__id__": 88
  3139. },
  3140. "_opacity": 255,
  3141. "_color": {
  3142. "__type__": "cc.Color",
  3143. "r": 255,
  3144. "g": 255,
  3145. "b": 255,
  3146. "a": 255
  3147. },
  3148. "_contentSize": {
  3149. "__type__": "cc.Size",
  3150. "width": 131.3,
  3151. "height": 53.88
  3152. },
  3153. "_anchorPoint": {
  3154. "__type__": "cc.Vec2",
  3155. "x": 0.5,
  3156. "y": 0.5
  3157. },
  3158. "_trs": {
  3159. "__type__": "TypedArray",
  3160. "ctor": "Float64Array",
  3161. "array": [
  3162. -0.097,
  3163. 0,
  3164. 0,
  3165. 0,
  3166. 0,
  3167. 0,
  3168. 1,
  3169. 1,
  3170. 1,
  3171. 1
  3172. ]
  3173. },
  3174. "_eulerAngles": {
  3175. "__type__": "cc.Vec3",
  3176. "x": 0,
  3177. "y": 0,
  3178. "z": 0
  3179. },
  3180. "_skewX": 0,
  3181. "_skewY": 0,
  3182. "_is3DNode": false,
  3183. "_groupIndex": 0,
  3184. "groupIndex": 0,
  3185. "_id": ""
  3186. },
  3187. {
  3188. "__type__": "cc.Label",
  3189. "_name": "",
  3190. "_objFlags": 0,
  3191. "node": {
  3192. "__id__": 85
  3193. },
  3194. "_enabled": true,
  3195. "_materials": [
  3196. {
  3197. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3198. }
  3199. ],
  3200. "_srcBlendFactor": 770,
  3201. "_dstBlendFactor": 771,
  3202. "_string": "5000k",
  3203. "_N$string": "5000k",
  3204. "_fontSize": 36,
  3205. "_lineHeight": 38,
  3206. "_enableWrapText": true,
  3207. "_N$file": {
  3208. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3209. },
  3210. "_isSystemFontUsed": false,
  3211. "_spacingX": 0,
  3212. "_batchAsBitmap": false,
  3213. "_styleFlags": 0,
  3214. "_underlineHeight": 0,
  3215. "_N$horizontalAlign": 1,
  3216. "_N$verticalAlign": 1,
  3217. "_N$fontFamily": "Arial",
  3218. "_N$overflow": 0,
  3219. "_N$cacheMode": 0,
  3220. "_id": ""
  3221. },
  3222. {
  3223. "__type__": "cc.LabelOutline",
  3224. "_name": "",
  3225. "_objFlags": 0,
  3226. "node": {
  3227. "__id__": 85
  3228. },
  3229. "_enabled": true,
  3230. "_color": {
  3231. "__type__": "cc.Color",
  3232. "r": 38,
  3233. "g": 17,
  3234. "b": 12,
  3235. "a": 255
  3236. },
  3237. "_width": 3,
  3238. "_id": ""
  3239. },
  3240. {
  3241. "__type__": "cc.PrefabInfo",
  3242. "root": {
  3243. "__id__": 1
  3244. },
  3245. "asset": {
  3246. "__id__": 0
  3247. },
  3248. "fileId": "30Vhh9PYhFmqLcsQxbr1qI",
  3249. "sync": false
  3250. },
  3251. {
  3252. "__type__": "cc.Node",
  3253. "_name": "arrow_3",
  3254. "_objFlags": 0,
  3255. "_parent": {
  3256. "__id__": 73
  3257. },
  3258. "_children": [],
  3259. "_active": true,
  3260. "_components": [
  3261. {
  3262. "__id__": 90
  3263. }
  3264. ],
  3265. "_prefab": {
  3266. "__id__": 91
  3267. },
  3268. "_opacity": 255,
  3269. "_color": {
  3270. "__type__": "cc.Color",
  3271. "r": 186,
  3272. "g": 255,
  3273. "b": 39,
  3274. "a": 255
  3275. },
  3276. "_contentSize": {
  3277. "__type__": "cc.Size",
  3278. "width": 45,
  3279. "height": 28
  3280. },
  3281. "_anchorPoint": {
  3282. "__type__": "cc.Vec2",
  3283. "x": 0.5,
  3284. "y": 0.5
  3285. },
  3286. "_trs": {
  3287. "__type__": "TypedArray",
  3288. "ctor": "Float64Array",
  3289. "array": [
  3290. 93.928,
  3291. 0,
  3292. 0,
  3293. 0,
  3294. 0,
  3295. 0,
  3296. 1,
  3297. 1,
  3298. 1,
  3299. 1
  3300. ]
  3301. },
  3302. "_eulerAngles": {
  3303. "__type__": "cc.Vec3",
  3304. "x": 0,
  3305. "y": 0,
  3306. "z": 0
  3307. },
  3308. "_skewX": 0,
  3309. "_skewY": 0,
  3310. "_is3DNode": false,
  3311. "_groupIndex": 0,
  3312. "groupIndex": 0,
  3313. "_id": ""
  3314. },
  3315. {
  3316. "__type__": "cc.Sprite",
  3317. "_name": "",
  3318. "_objFlags": 0,
  3319. "node": {
  3320. "__id__": 89
  3321. },
  3322. "_enabled": true,
  3323. "_materials": [
  3324. {
  3325. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3326. }
  3327. ],
  3328. "_srcBlendFactor": 770,
  3329. "_dstBlendFactor": 771,
  3330. "_spriteFrame": {
  3331. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  3332. },
  3333. "_type": 0,
  3334. "_sizeMode": 1,
  3335. "_fillType": 0,
  3336. "_fillCenter": {
  3337. "__type__": "cc.Vec2",
  3338. "x": 0,
  3339. "y": 0
  3340. },
  3341. "_fillStart": 0,
  3342. "_fillRange": 0,
  3343. "_isTrimmedMode": true,
  3344. "_atlas": null,
  3345. "_id": ""
  3346. },
  3347. {
  3348. "__type__": "cc.PrefabInfo",
  3349. "root": {
  3350. "__id__": 1
  3351. },
  3352. "asset": {
  3353. "__id__": 0
  3354. },
  3355. "fileId": "2bhIZLiv1HparjQAN+CKr3",
  3356. "sync": false
  3357. },
  3358. {
  3359. "__type__": "cc.Node",
  3360. "_name": "nextNum",
  3361. "_objFlags": 0,
  3362. "_parent": {
  3363. "__id__": 73
  3364. },
  3365. "_children": [],
  3366. "_active": true,
  3367. "_components": [
  3368. {
  3369. "__id__": 93
  3370. },
  3371. {
  3372. "__id__": 94
  3373. }
  3374. ],
  3375. "_prefab": {
  3376. "__id__": 95
  3377. },
  3378. "_opacity": 255,
  3379. "_color": {
  3380. "__type__": "cc.Color",
  3381. "r": 186,
  3382. "g": 255,
  3383. "b": 39,
  3384. "a": 255
  3385. },
  3386. "_contentSize": {
  3387. "__type__": "cc.Size",
  3388. "width": 131.3,
  3389. "height": 53.88
  3390. },
  3391. "_anchorPoint": {
  3392. "__type__": "cc.Vec2",
  3393. "x": 0.5,
  3394. "y": 0.5
  3395. },
  3396. "_trs": {
  3397. "__type__": "TypedArray",
  3398. "ctor": "Float64Array",
  3399. "array": [
  3400. 187.301,
  3401. 0,
  3402. 0,
  3403. 0,
  3404. 0,
  3405. 0,
  3406. 1,
  3407. 1,
  3408. 1,
  3409. 1
  3410. ]
  3411. },
  3412. "_eulerAngles": {
  3413. "__type__": "cc.Vec3",
  3414. "x": 0,
  3415. "y": 0,
  3416. "z": 0
  3417. },
  3418. "_skewX": 0,
  3419. "_skewY": 0,
  3420. "_is3DNode": false,
  3421. "_groupIndex": 0,
  3422. "groupIndex": 0,
  3423. "_id": ""
  3424. },
  3425. {
  3426. "__type__": "cc.Label",
  3427. "_name": "",
  3428. "_objFlags": 0,
  3429. "node": {
  3430. "__id__": 92
  3431. },
  3432. "_enabled": true,
  3433. "_materials": [
  3434. {
  3435. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3436. }
  3437. ],
  3438. "_srcBlendFactor": 770,
  3439. "_dstBlendFactor": 771,
  3440. "_string": "5000k",
  3441. "_N$string": "5000k",
  3442. "_fontSize": 36,
  3443. "_lineHeight": 38,
  3444. "_enableWrapText": true,
  3445. "_N$file": {
  3446. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3447. },
  3448. "_isSystemFontUsed": false,
  3449. "_spacingX": 0,
  3450. "_batchAsBitmap": false,
  3451. "_styleFlags": 0,
  3452. "_underlineHeight": 0,
  3453. "_N$horizontalAlign": 1,
  3454. "_N$verticalAlign": 1,
  3455. "_N$fontFamily": "Arial",
  3456. "_N$overflow": 0,
  3457. "_N$cacheMode": 0,
  3458. "_id": ""
  3459. },
  3460. {
  3461. "__type__": "cc.LabelOutline",
  3462. "_name": "",
  3463. "_objFlags": 0,
  3464. "node": {
  3465. "__id__": 92
  3466. },
  3467. "_enabled": true,
  3468. "_color": {
  3469. "__type__": "cc.Color",
  3470. "r": 38,
  3471. "g": 17,
  3472. "b": 12,
  3473. "a": 255
  3474. },
  3475. "_width": 3,
  3476. "_id": ""
  3477. },
  3478. {
  3479. "__type__": "cc.PrefabInfo",
  3480. "root": {
  3481. "__id__": 1
  3482. },
  3483. "asset": {
  3484. "__id__": 0
  3485. },
  3486. "fileId": "c13yJaHD5K1rjR8ti7a2zT",
  3487. "sync": false
  3488. },
  3489. {
  3490. "__type__": "cc.PrefabInfo",
  3491. "root": {
  3492. "__id__": 1
  3493. },
  3494. "asset": {
  3495. "__id__": 0
  3496. },
  3497. "fileId": "69omkR7XdGfbbTRcj9dsLn",
  3498. "sync": false
  3499. },
  3500. {
  3501. "__type__": "cc.Node",
  3502. "_name": "attr",
  3503. "_objFlags": 0,
  3504. "_parent": {
  3505. "__id__": 24
  3506. },
  3507. "_children": [
  3508. {
  3509. "__id__": 98
  3510. },
  3511. {
  3512. "__id__": 101
  3513. },
  3514. {
  3515. "__id__": 104
  3516. },
  3517. {
  3518. "__id__": 109
  3519. },
  3520. {
  3521. "__id__": 113
  3522. },
  3523. {
  3524. "__id__": 116
  3525. }
  3526. ],
  3527. "_active": true,
  3528. "_components": [],
  3529. "_prefab": {
  3530. "__id__": 120
  3531. },
  3532. "_opacity": 255,
  3533. "_color": {
  3534. "__type__": "cc.Color",
  3535. "r": 255,
  3536. "g": 255,
  3537. "b": 255,
  3538. "a": 255
  3539. },
  3540. "_contentSize": {
  3541. "__type__": "cc.Size",
  3542. "width": 520,
  3543. "height": 40
  3544. },
  3545. "_anchorPoint": {
  3546. "__type__": "cc.Vec2",
  3547. "x": 0.5,
  3548. "y": 0.5
  3549. },
  3550. "_trs": {
  3551. "__type__": "TypedArray",
  3552. "ctor": "Float64Array",
  3553. "array": [
  3554. 0,
  3555. -183,
  3556. 0,
  3557. 0,
  3558. 0,
  3559. 0,
  3560. 1,
  3561. 1,
  3562. 1,
  3563. 1
  3564. ]
  3565. },
  3566. "_eulerAngles": {
  3567. "__type__": "cc.Vec3",
  3568. "x": 0,
  3569. "y": 0,
  3570. "z": 0
  3571. },
  3572. "_skewX": 0,
  3573. "_skewY": 0,
  3574. "_is3DNode": false,
  3575. "_groupIndex": 0,
  3576. "groupIndex": 0,
  3577. "_id": ""
  3578. },
  3579. {
  3580. "__type__": "cc.Node",
  3581. "_name": "bg",
  3582. "_objFlags": 0,
  3583. "_parent": {
  3584. "__id__": 97
  3585. },
  3586. "_children": [],
  3587. "_active": true,
  3588. "_components": [
  3589. {
  3590. "__id__": 99
  3591. }
  3592. ],
  3593. "_prefab": {
  3594. "__id__": 100
  3595. },
  3596. "_opacity": 255,
  3597. "_color": {
  3598. "__type__": "cc.Color",
  3599. "r": 41,
  3600. "g": 29,
  3601. "b": 14,
  3602. "a": 255
  3603. },
  3604. "_contentSize": {
  3605. "__type__": "cc.Size",
  3606. "width": 520,
  3607. "height": 40
  3608. },
  3609. "_anchorPoint": {
  3610. "__type__": "cc.Vec2",
  3611. "x": 0.5,
  3612. "y": 0.5
  3613. },
  3614. "_trs": {
  3615. "__type__": "TypedArray",
  3616. "ctor": "Float64Array",
  3617. "array": [
  3618. -0.5,
  3619. 0,
  3620. 0,
  3621. 0,
  3622. 0,
  3623. 0,
  3624. 1,
  3625. 1,
  3626. 1,
  3627. 1
  3628. ]
  3629. },
  3630. "_eulerAngles": {
  3631. "__type__": "cc.Vec3",
  3632. "x": 0,
  3633. "y": 0,
  3634. "z": 0
  3635. },
  3636. "_skewX": 0,
  3637. "_skewY": 0,
  3638. "_is3DNode": false,
  3639. "_groupIndex": 0,
  3640. "groupIndex": 0,
  3641. "_id": ""
  3642. },
  3643. {
  3644. "__type__": "cc.Sprite",
  3645. "_name": "",
  3646. "_objFlags": 0,
  3647. "node": {
  3648. "__id__": 98
  3649. },
  3650. "_enabled": true,
  3651. "_materials": [
  3652. {
  3653. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3654. }
  3655. ],
  3656. "_srcBlendFactor": 770,
  3657. "_dstBlendFactor": 771,
  3658. "_spriteFrame": {
  3659. "__uuid__": "b1f64ee3-dd78-476c-bb28-83d9997f558e"
  3660. },
  3661. "_type": 0,
  3662. "_sizeMode": 0,
  3663. "_fillType": 0,
  3664. "_fillCenter": {
  3665. "__type__": "cc.Vec2",
  3666. "x": 0,
  3667. "y": 0
  3668. },
  3669. "_fillStart": 0,
  3670. "_fillRange": 0,
  3671. "_isTrimmedMode": false,
  3672. "_atlas": null,
  3673. "_id": ""
  3674. },
  3675. {
  3676. "__type__": "cc.PrefabInfo",
  3677. "root": {
  3678. "__id__": 1
  3679. },
  3680. "asset": {
  3681. "__id__": 0
  3682. },
  3683. "fileId": "13X8OPSiFN9Jz970V77Kzq",
  3684. "sync": false
  3685. },
  3686. {
  3687. "__type__": "cc.Node",
  3688. "_name": "icon",
  3689. "_objFlags": 0,
  3690. "_parent": {
  3691. "__id__": 97
  3692. },
  3693. "_children": [],
  3694. "_active": true,
  3695. "_components": [
  3696. {
  3697. "__id__": 102
  3698. }
  3699. ],
  3700. "_prefab": {
  3701. "__id__": 103
  3702. },
  3703. "_opacity": 255,
  3704. "_color": {
  3705. "__type__": "cc.Color",
  3706. "r": 255,
  3707. "g": 255,
  3708. "b": 255,
  3709. "a": 255
  3710. },
  3711. "_contentSize": {
  3712. "__type__": "cc.Size",
  3713. "width": 53,
  3714. "height": 47
  3715. },
  3716. "_anchorPoint": {
  3717. "__type__": "cc.Vec2",
  3718. "x": 0.5,
  3719. "y": 0.5
  3720. },
  3721. "_trs": {
  3722. "__type__": "TypedArray",
  3723. "ctor": "Float64Array",
  3724. "array": [
  3725. -235.95,
  3726. 0,
  3727. 0,
  3728. 0,
  3729. 0,
  3730. 0,
  3731. 1,
  3732. 1,
  3733. 1,
  3734. 1
  3735. ]
  3736. },
  3737. "_eulerAngles": {
  3738. "__type__": "cc.Vec3",
  3739. "x": 0,
  3740. "y": 0,
  3741. "z": 0
  3742. },
  3743. "_skewX": 0,
  3744. "_skewY": 0,
  3745. "_is3DNode": false,
  3746. "_groupIndex": 0,
  3747. "groupIndex": 0,
  3748. "_id": ""
  3749. },
  3750. {
  3751. "__type__": "cc.Sprite",
  3752. "_name": "",
  3753. "_objFlags": 0,
  3754. "node": {
  3755. "__id__": 101
  3756. },
  3757. "_enabled": true,
  3758. "_materials": [
  3759. {
  3760. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3761. }
  3762. ],
  3763. "_srcBlendFactor": 770,
  3764. "_dstBlendFactor": 771,
  3765. "_spriteFrame": null,
  3766. "_type": 0,
  3767. "_sizeMode": 1,
  3768. "_fillType": 0,
  3769. "_fillCenter": {
  3770. "__type__": "cc.Vec2",
  3771. "x": 0,
  3772. "y": 0
  3773. },
  3774. "_fillStart": 0,
  3775. "_fillRange": 0,
  3776. "_isTrimmedMode": true,
  3777. "_atlas": null,
  3778. "_id": ""
  3779. },
  3780. {
  3781. "__type__": "cc.PrefabInfo",
  3782. "root": {
  3783. "__id__": 1
  3784. },
  3785. "asset": {
  3786. "__id__": 0
  3787. },
  3788. "fileId": "2bWWxnU0lBboOoJDuVegwp",
  3789. "sync": false
  3790. },
  3791. {
  3792. "__type__": "cc.Node",
  3793. "_name": "attrName",
  3794. "_objFlags": 0,
  3795. "_parent": {
  3796. "__id__": 97
  3797. },
  3798. "_children": [],
  3799. "_active": true,
  3800. "_components": [
  3801. {
  3802. "__id__": 105
  3803. },
  3804. {
  3805. "__id__": 106
  3806. },
  3807. {
  3808. "__id__": 107
  3809. }
  3810. ],
  3811. "_prefab": {
  3812. "__id__": 108
  3813. },
  3814. "_opacity": 255,
  3815. "_color": {
  3816. "__type__": "cc.Color",
  3817. "r": 255,
  3818. "g": 255,
  3819. "b": 255,
  3820. "a": 255
  3821. },
  3822. "_contentSize": {
  3823. "__type__": "cc.Size",
  3824. "width": 56.75,
  3825. "height": 53.88
  3826. },
  3827. "_anchorPoint": {
  3828. "__type__": "cc.Vec2",
  3829. "x": 0.5,
  3830. "y": 0.5
  3831. },
  3832. "_trs": {
  3833. "__type__": "TypedArray",
  3834. "ctor": "Float64Array",
  3835. "array": [
  3836. -173.04,
  3837. 0,
  3838. 0,
  3839. 0,
  3840. 0,
  3841. 0,
  3842. 1,
  3843. 1,
  3844. 1,
  3845. 1
  3846. ]
  3847. },
  3848. "_eulerAngles": {
  3849. "__type__": "cc.Vec3",
  3850. "x": 0,
  3851. "y": 0,
  3852. "z": 0
  3853. },
  3854. "_skewX": 0,
  3855. "_skewY": 0,
  3856. "_is3DNode": false,
  3857. "_groupIndex": 0,
  3858. "groupIndex": 0,
  3859. "_id": ""
  3860. },
  3861. {
  3862. "__type__": "cc.Label",
  3863. "_name": "",
  3864. "_objFlags": 0,
  3865. "node": {
  3866. "__id__": 104
  3867. },
  3868. "_enabled": true,
  3869. "_materials": [
  3870. {
  3871. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3872. }
  3873. ],
  3874. "_srcBlendFactor": 770,
  3875. "_dstBlendFactor": 771,
  3876. "_string": "HP:",
  3877. "_N$string": "HP:",
  3878. "_fontSize": 36,
  3879. "_lineHeight": 38,
  3880. "_enableWrapText": true,
  3881. "_N$file": {
  3882. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3883. },
  3884. "_isSystemFontUsed": false,
  3885. "_spacingX": 0,
  3886. "_batchAsBitmap": false,
  3887. "_styleFlags": 0,
  3888. "_underlineHeight": 0,
  3889. "_N$horizontalAlign": 1,
  3890. "_N$verticalAlign": 1,
  3891. "_N$fontFamily": "Arial",
  3892. "_N$overflow": 0,
  3893. "_N$cacheMode": 0,
  3894. "_id": ""
  3895. },
  3896. {
  3897. "__type__": "cc.LabelOutline",
  3898. "_name": "",
  3899. "_objFlags": 0,
  3900. "node": {
  3901. "__id__": 104
  3902. },
  3903. "_enabled": true,
  3904. "_color": {
  3905. "__type__": "cc.Color",
  3906. "r": 38,
  3907. "g": 17,
  3908. "b": 12,
  3909. "a": 255
  3910. },
  3911. "_width": 3,
  3912. "_id": ""
  3913. },
  3914. {
  3915. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3916. "_name": "",
  3917. "_objFlags": 0,
  3918. "node": {
  3919. "__id__": 104
  3920. },
  3921. "_enabled": true,
  3922. "_englishCase": 0,
  3923. "i18n_string": "t1001",
  3924. "i18n_params": [],
  3925. "_addColon": true,
  3926. "_id": ""
  3927. },
  3928. {
  3929. "__type__": "cc.PrefabInfo",
  3930. "root": {
  3931. "__id__": 1
  3932. },
  3933. "asset": {
  3934. "__id__": 0
  3935. },
  3936. "fileId": "eejPQ6NztEbrLYXcLX3mIy",
  3937. "sync": false
  3938. },
  3939. {
  3940. "__type__": "cc.Node",
  3941. "_name": "attrNum",
  3942. "_objFlags": 0,
  3943. "_parent": {
  3944. "__id__": 97
  3945. },
  3946. "_children": [],
  3947. "_active": true,
  3948. "_components": [
  3949. {
  3950. "__id__": 110
  3951. },
  3952. {
  3953. "__id__": 111
  3954. }
  3955. ],
  3956. "_prefab": {
  3957. "__id__": 112
  3958. },
  3959. "_opacity": 255,
  3960. "_color": {
  3961. "__type__": "cc.Color",
  3962. "r": 255,
  3963. "g": 255,
  3964. "b": 255,
  3965. "a": 255
  3966. },
  3967. "_contentSize": {
  3968. "__type__": "cc.Size",
  3969. "width": 131.3,
  3970. "height": 53.88
  3971. },
  3972. "_anchorPoint": {
  3973. "__type__": "cc.Vec2",
  3974. "x": 0.5,
  3975. "y": 0.5
  3976. },
  3977. "_trs": {
  3978. "__type__": "TypedArray",
  3979. "ctor": "Float64Array",
  3980. "array": [
  3981. -0.097,
  3982. 0,
  3983. 0,
  3984. 0,
  3985. 0,
  3986. 0,
  3987. 1,
  3988. 1,
  3989. 1,
  3990. 1
  3991. ]
  3992. },
  3993. "_eulerAngles": {
  3994. "__type__": "cc.Vec3",
  3995. "x": 0,
  3996. "y": 0,
  3997. "z": 0
  3998. },
  3999. "_skewX": 0,
  4000. "_skewY": 0,
  4001. "_is3DNode": false,
  4002. "_groupIndex": 0,
  4003. "groupIndex": 0,
  4004. "_id": ""
  4005. },
  4006. {
  4007. "__type__": "cc.Label",
  4008. "_name": "",
  4009. "_objFlags": 0,
  4010. "node": {
  4011. "__id__": 109
  4012. },
  4013. "_enabled": true,
  4014. "_materials": [
  4015. {
  4016. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4017. }
  4018. ],
  4019. "_srcBlendFactor": 770,
  4020. "_dstBlendFactor": 771,
  4021. "_string": "5000k",
  4022. "_N$string": "5000k",
  4023. "_fontSize": 36,
  4024. "_lineHeight": 38,
  4025. "_enableWrapText": true,
  4026. "_N$file": {
  4027. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4028. },
  4029. "_isSystemFontUsed": false,
  4030. "_spacingX": 0,
  4031. "_batchAsBitmap": false,
  4032. "_styleFlags": 0,
  4033. "_underlineHeight": 0,
  4034. "_N$horizontalAlign": 1,
  4035. "_N$verticalAlign": 1,
  4036. "_N$fontFamily": "Arial",
  4037. "_N$overflow": 0,
  4038. "_N$cacheMode": 0,
  4039. "_id": ""
  4040. },
  4041. {
  4042. "__type__": "cc.LabelOutline",
  4043. "_name": "",
  4044. "_objFlags": 0,
  4045. "node": {
  4046. "__id__": 109
  4047. },
  4048. "_enabled": true,
  4049. "_color": {
  4050. "__type__": "cc.Color",
  4051. "r": 38,
  4052. "g": 17,
  4053. "b": 12,
  4054. "a": 255
  4055. },
  4056. "_width": 3,
  4057. "_id": ""
  4058. },
  4059. {
  4060. "__type__": "cc.PrefabInfo",
  4061. "root": {
  4062. "__id__": 1
  4063. },
  4064. "asset": {
  4065. "__id__": 0
  4066. },
  4067. "fileId": "9cZd+rBqFF3Y7kbwSzwBMR",
  4068. "sync": false
  4069. },
  4070. {
  4071. "__type__": "cc.Node",
  4072. "_name": "arrow_3",
  4073. "_objFlags": 0,
  4074. "_parent": {
  4075. "__id__": 97
  4076. },
  4077. "_children": [],
  4078. "_active": true,
  4079. "_components": [
  4080. {
  4081. "__id__": 114
  4082. }
  4083. ],
  4084. "_prefab": {
  4085. "__id__": 115
  4086. },
  4087. "_opacity": 255,
  4088. "_color": {
  4089. "__type__": "cc.Color",
  4090. "r": 186,
  4091. "g": 255,
  4092. "b": 39,
  4093. "a": 255
  4094. },
  4095. "_contentSize": {
  4096. "__type__": "cc.Size",
  4097. "width": 45,
  4098. "height": 28
  4099. },
  4100. "_anchorPoint": {
  4101. "__type__": "cc.Vec2",
  4102. "x": 0.5,
  4103. "y": 0.5
  4104. },
  4105. "_trs": {
  4106. "__type__": "TypedArray",
  4107. "ctor": "Float64Array",
  4108. "array": [
  4109. 93.928,
  4110. 0,
  4111. 0,
  4112. 0,
  4113. 0,
  4114. 0,
  4115. 1,
  4116. 1,
  4117. 1,
  4118. 1
  4119. ]
  4120. },
  4121. "_eulerAngles": {
  4122. "__type__": "cc.Vec3",
  4123. "x": 0,
  4124. "y": 0,
  4125. "z": 0
  4126. },
  4127. "_skewX": 0,
  4128. "_skewY": 0,
  4129. "_is3DNode": false,
  4130. "_groupIndex": 0,
  4131. "groupIndex": 0,
  4132. "_id": ""
  4133. },
  4134. {
  4135. "__type__": "cc.Sprite",
  4136. "_name": "",
  4137. "_objFlags": 0,
  4138. "node": {
  4139. "__id__": 113
  4140. },
  4141. "_enabled": true,
  4142. "_materials": [
  4143. {
  4144. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4145. }
  4146. ],
  4147. "_srcBlendFactor": 770,
  4148. "_dstBlendFactor": 771,
  4149. "_spriteFrame": {
  4150. "__uuid__": "b236e179-24da-4d06-a2ee-8b3747be2fad"
  4151. },
  4152. "_type": 0,
  4153. "_sizeMode": 1,
  4154. "_fillType": 0,
  4155. "_fillCenter": {
  4156. "__type__": "cc.Vec2",
  4157. "x": 0,
  4158. "y": 0
  4159. },
  4160. "_fillStart": 0,
  4161. "_fillRange": 0,
  4162. "_isTrimmedMode": true,
  4163. "_atlas": null,
  4164. "_id": ""
  4165. },
  4166. {
  4167. "__type__": "cc.PrefabInfo",
  4168. "root": {
  4169. "__id__": 1
  4170. },
  4171. "asset": {
  4172. "__id__": 0
  4173. },
  4174. "fileId": "67LPbqE5dD2qojLjVjDzoK",
  4175. "sync": false
  4176. },
  4177. {
  4178. "__type__": "cc.Node",
  4179. "_name": "nextNum",
  4180. "_objFlags": 0,
  4181. "_parent": {
  4182. "__id__": 97
  4183. },
  4184. "_children": [],
  4185. "_active": true,
  4186. "_components": [
  4187. {
  4188. "__id__": 117
  4189. },
  4190. {
  4191. "__id__": 118
  4192. }
  4193. ],
  4194. "_prefab": {
  4195. "__id__": 119
  4196. },
  4197. "_opacity": 255,
  4198. "_color": {
  4199. "__type__": "cc.Color",
  4200. "r": 186,
  4201. "g": 255,
  4202. "b": 39,
  4203. "a": 255
  4204. },
  4205. "_contentSize": {
  4206. "__type__": "cc.Size",
  4207. "width": 131.3,
  4208. "height": 53.88
  4209. },
  4210. "_anchorPoint": {
  4211. "__type__": "cc.Vec2",
  4212. "x": 0.5,
  4213. "y": 0.5
  4214. },
  4215. "_trs": {
  4216. "__type__": "TypedArray",
  4217. "ctor": "Float64Array",
  4218. "array": [
  4219. 187.301,
  4220. 0,
  4221. 0,
  4222. 0,
  4223. 0,
  4224. 0,
  4225. 1,
  4226. 1,
  4227. 1,
  4228. 1
  4229. ]
  4230. },
  4231. "_eulerAngles": {
  4232. "__type__": "cc.Vec3",
  4233. "x": 0,
  4234. "y": 0,
  4235. "z": 0
  4236. },
  4237. "_skewX": 0,
  4238. "_skewY": 0,
  4239. "_is3DNode": false,
  4240. "_groupIndex": 0,
  4241. "groupIndex": 0,
  4242. "_id": ""
  4243. },
  4244. {
  4245. "__type__": "cc.Label",
  4246. "_name": "",
  4247. "_objFlags": 0,
  4248. "node": {
  4249. "__id__": 116
  4250. },
  4251. "_enabled": true,
  4252. "_materials": [
  4253. {
  4254. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4255. }
  4256. ],
  4257. "_srcBlendFactor": 770,
  4258. "_dstBlendFactor": 771,
  4259. "_string": "5000k",
  4260. "_N$string": "5000k",
  4261. "_fontSize": 36,
  4262. "_lineHeight": 38,
  4263. "_enableWrapText": true,
  4264. "_N$file": {
  4265. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4266. },
  4267. "_isSystemFontUsed": false,
  4268. "_spacingX": 0,
  4269. "_batchAsBitmap": false,
  4270. "_styleFlags": 0,
  4271. "_underlineHeight": 0,
  4272. "_N$horizontalAlign": 1,
  4273. "_N$verticalAlign": 1,
  4274. "_N$fontFamily": "Arial",
  4275. "_N$overflow": 0,
  4276. "_N$cacheMode": 0,
  4277. "_id": ""
  4278. },
  4279. {
  4280. "__type__": "cc.LabelOutline",
  4281. "_name": "",
  4282. "_objFlags": 0,
  4283. "node": {
  4284. "__id__": 116
  4285. },
  4286. "_enabled": true,
  4287. "_color": {
  4288. "__type__": "cc.Color",
  4289. "r": 38,
  4290. "g": 17,
  4291. "b": 12,
  4292. "a": 255
  4293. },
  4294. "_width": 3,
  4295. "_id": ""
  4296. },
  4297. {
  4298. "__type__": "cc.PrefabInfo",
  4299. "root": {
  4300. "__id__": 1
  4301. },
  4302. "asset": {
  4303. "__id__": 0
  4304. },
  4305. "fileId": "ae8iBJBj5N/7CrMmECc996",
  4306. "sync": false
  4307. },
  4308. {
  4309. "__type__": "cc.PrefabInfo",
  4310. "root": {
  4311. "__id__": 1
  4312. },
  4313. "asset": {
  4314. "__id__": 0
  4315. },
  4316. "fileId": "18PKv/NzpMQq+jqkx0NuTi",
  4317. "sync": false
  4318. },
  4319. {
  4320. "__type__": "cc.Layout",
  4321. "_name": "",
  4322. "_objFlags": 0,
  4323. "node": {
  4324. "__id__": 24
  4325. },
  4326. "_enabled": true,
  4327. "_layoutSize": {
  4328. "__type__": "cc.Size",
  4329. "width": 520,
  4330. "height": 203
  4331. },
  4332. "_resize": 1,
  4333. "_N$layoutType": 2,
  4334. "_N$cellSize": {
  4335. "__type__": "cc.Size",
  4336. "width": 40,
  4337. "height": 40
  4338. },
  4339. "_N$startAxis": 0,
  4340. "_N$paddingLeft": 0,
  4341. "_N$paddingRight": 0,
  4342. "_N$paddingTop": 13,
  4343. "_N$paddingBottom": 0,
  4344. "_N$spacingX": 0,
  4345. "_N$spacingY": 10,
  4346. "_N$verticalDirection": 1,
  4347. "_N$horizontalDirection": 0,
  4348. "_N$affectedByScale": false,
  4349. "_id": ""
  4350. },
  4351. {
  4352. "__type__": "cc.PrefabInfo",
  4353. "root": {
  4354. "__id__": 1
  4355. },
  4356. "asset": {
  4357. "__id__": 0
  4358. },
  4359. "fileId": "a0oD1OgahBAbzMIXnDEWpv",
  4360. "sync": false
  4361. },
  4362. {
  4363. "__type__": "cc.Node",
  4364. "_name": "rtL",
  4365. "_objFlags": 0,
  4366. "_parent": {
  4367. "__id__": 23
  4368. },
  4369. "_children": [
  4370. {
  4371. "__id__": 124
  4372. }
  4373. ],
  4374. "_active": true,
  4375. "_components": [
  4376. {
  4377. "__id__": 128
  4378. }
  4379. ],
  4380. "_prefab": {
  4381. "__id__": 129
  4382. },
  4383. "_opacity": 255,
  4384. "_color": {
  4385. "__type__": "cc.Color",
  4386. "r": 255,
  4387. "g": 255,
  4388. "b": 255,
  4389. "a": 255
  4390. },
  4391. "_contentSize": {
  4392. "__type__": "cc.Size",
  4393. "width": 520,
  4394. "height": 45.76
  4395. },
  4396. "_anchorPoint": {
  4397. "__type__": "cc.Vec2",
  4398. "x": 0.5,
  4399. "y": 1
  4400. },
  4401. "_trs": {
  4402. "__type__": "TypedArray",
  4403. "ctor": "Float64Array",
  4404. "array": [
  4405. 0,
  4406. -198,
  4407. 0,
  4408. 0,
  4409. 0,
  4410. 0,
  4411. 1,
  4412. 1,
  4413. 1,
  4414. 1
  4415. ]
  4416. },
  4417. "_eulerAngles": {
  4418. "__type__": "cc.Vec3",
  4419. "x": 0,
  4420. "y": 0,
  4421. "z": 0
  4422. },
  4423. "_skewX": 0,
  4424. "_skewY": 0,
  4425. "_is3DNode": false,
  4426. "_groupIndex": 0,
  4427. "groupIndex": 0,
  4428. "_id": ""
  4429. },
  4430. {
  4431. "__type__": "cc.Node",
  4432. "_name": "rt",
  4433. "_objFlags": 0,
  4434. "_parent": {
  4435. "__id__": 123
  4436. },
  4437. "_children": [],
  4438. "_active": true,
  4439. "_components": [
  4440. {
  4441. "__id__": 125
  4442. },
  4443. {
  4444. "__id__": 126
  4445. }
  4446. ],
  4447. "_prefab": {
  4448. "__id__": 127
  4449. },
  4450. "_opacity": 255,
  4451. "_color": {
  4452. "__type__": "cc.Color",
  4453. "r": 255,
  4454. "g": 255,
  4455. "b": 255,
  4456. "a": 255
  4457. },
  4458. "_contentSize": {
  4459. "__type__": "cc.Size",
  4460. "width": 520,
  4461. "height": 32.76
  4462. },
  4463. "_anchorPoint": {
  4464. "__type__": "cc.Vec2",
  4465. "x": 0.5,
  4466. "y": 1
  4467. },
  4468. "_trs": {
  4469. "__type__": "TypedArray",
  4470. "ctor": "Float64Array",
  4471. "array": [
  4472. 0,
  4473. -13,
  4474. 0,
  4475. 0,
  4476. 0,
  4477. 0,
  4478. 1,
  4479. 1,
  4480. 1,
  4481. 1
  4482. ]
  4483. },
  4484. "_eulerAngles": {
  4485. "__type__": "cc.Vec3",
  4486. "x": 0,
  4487. "y": 0,
  4488. "z": 0
  4489. },
  4490. "_skewX": 0,
  4491. "_skewY": 0,
  4492. "_is3DNode": false,
  4493. "_groupIndex": 0,
  4494. "groupIndex": 0,
  4495. "_id": ""
  4496. },
  4497. {
  4498. "__type__": "cc.RichText",
  4499. "_name": "",
  4500. "_objFlags": 0,
  4501. "node": {
  4502. "__id__": 124
  4503. },
  4504. "_enabled": true,
  4505. "_fontFamily": "Arial",
  4506. "_isSystemFontUsed": false,
  4507. "_N$string": "",
  4508. "_N$horizontalAlign": 0,
  4509. "_N$fontSize": 24,
  4510. "_N$font": {
  4511. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4512. },
  4513. "_N$cacheMode": 0,
  4514. "_N$maxWidth": 520,
  4515. "_N$lineHeight": 26,
  4516. "_N$imageAtlas": null,
  4517. "_N$handleTouchEvent": true,
  4518. "_id": ""
  4519. },
  4520. {
  4521. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  4522. "_name": "",
  4523. "_objFlags": 0,
  4524. "node": {
  4525. "__id__": 124
  4526. },
  4527. "_enabled": true,
  4528. "_englishCase": 0,
  4529. "i18n_string": "",
  4530. "i18n_params": [],
  4531. "_addColon": false,
  4532. "_id": ""
  4533. },
  4534. {
  4535. "__type__": "cc.PrefabInfo",
  4536. "root": {
  4537. "__id__": 1
  4538. },
  4539. "asset": {
  4540. "__id__": 0
  4541. },
  4542. "fileId": "e3F+sRufdOnqrSIiL7QZla",
  4543. "sync": false
  4544. },
  4545. {
  4546. "__type__": "cc.Layout",
  4547. "_name": "",
  4548. "_objFlags": 0,
  4549. "node": {
  4550. "__id__": 123
  4551. },
  4552. "_enabled": true,
  4553. "_layoutSize": {
  4554. "__type__": "cc.Size",
  4555. "width": 520,
  4556. "height": 45.76
  4557. },
  4558. "_resize": 1,
  4559. "_N$layoutType": 2,
  4560. "_N$cellSize": {
  4561. "__type__": "cc.Size",
  4562. "width": 40,
  4563. "height": 40
  4564. },
  4565. "_N$startAxis": 0,
  4566. "_N$paddingLeft": 0,
  4567. "_N$paddingRight": 0,
  4568. "_N$paddingTop": 13,
  4569. "_N$paddingBottom": 0,
  4570. "_N$spacingX": 0,
  4571. "_N$spacingY": 10,
  4572. "_N$verticalDirection": 1,
  4573. "_N$horizontalDirection": 0,
  4574. "_N$affectedByScale": false,
  4575. "_id": ""
  4576. },
  4577. {
  4578. "__type__": "cc.PrefabInfo",
  4579. "root": {
  4580. "__id__": 1
  4581. },
  4582. "asset": {
  4583. "__id__": 0
  4584. },
  4585. "fileId": "383SWahatAI40AQZLwMhMy",
  4586. "sync": false
  4587. },
  4588. {
  4589. "__type__": "cc.Layout",
  4590. "_name": "",
  4591. "_objFlags": 0,
  4592. "node": {
  4593. "__id__": 23
  4594. },
  4595. "_enabled": true,
  4596. "_layoutSize": {
  4597. "__type__": "cc.Size",
  4598. "width": 550,
  4599. "height": 280
  4600. },
  4601. "_resize": 0,
  4602. "_N$layoutType": 2,
  4603. "_N$cellSize": {
  4604. "__type__": "cc.Size",
  4605. "width": 40,
  4606. "height": 40
  4607. },
  4608. "_N$startAxis": 0,
  4609. "_N$paddingLeft": 0,
  4610. "_N$paddingRight": 0,
  4611. "_N$paddingTop": 0,
  4612. "_N$paddingBottom": 0,
  4613. "_N$spacingX": 0,
  4614. "_N$spacingY": -5,
  4615. "_N$verticalDirection": 1,
  4616. "_N$horizontalDirection": 0,
  4617. "_N$affectedByScale": false,
  4618. "_id": ""
  4619. },
  4620. {
  4621. "__type__": "cc.PrefabInfo",
  4622. "root": {
  4623. "__id__": 1
  4624. },
  4625. "asset": {
  4626. "__id__": 0
  4627. },
  4628. "fileId": "65I8sPZPRDv4PfNmc9N5tm",
  4629. "sync": false
  4630. },
  4631. {
  4632. "__type__": "cc.Mask",
  4633. "_name": "",
  4634. "_objFlags": 0,
  4635. "node": {
  4636. "__id__": 22
  4637. },
  4638. "_enabled": true,
  4639. "_materials": [
  4640. {
  4641. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4642. }
  4643. ],
  4644. "_spriteFrame": null,
  4645. "_type": 0,
  4646. "_segments": 64,
  4647. "_N$alphaThreshold": 0,
  4648. "_N$inverted": false,
  4649. "_id": ""
  4650. },
  4651. {
  4652. "__type__": "cc.PrefabInfo",
  4653. "root": {
  4654. "__id__": 1
  4655. },
  4656. "asset": {
  4657. "__id__": 0
  4658. },
  4659. "fileId": "04kvFBWcVAjZUCTJwGF8KB",
  4660. "sync": false
  4661. },
  4662. {
  4663. "__type__": "cc.ScrollView",
  4664. "_name": "",
  4665. "_objFlags": 0,
  4666. "node": {
  4667. "__id__": 21
  4668. },
  4669. "_enabled": true,
  4670. "horizontal": false,
  4671. "vertical": true,
  4672. "inertia": true,
  4673. "brake": 0.75,
  4674. "elastic": true,
  4675. "bounceDuration": 0.23,
  4676. "scrollEvents": [],
  4677. "cancelInnerEvents": true,
  4678. "_N$content": {
  4679. "__id__": 23
  4680. },
  4681. "content": {
  4682. "__id__": 23
  4683. },
  4684. "_N$horizontalScrollBar": null,
  4685. "_N$verticalScrollBar": null,
  4686. "_id": ""
  4687. },
  4688. {
  4689. "__type__": "cc.PrefabInfo",
  4690. "root": {
  4691. "__id__": 1
  4692. },
  4693. "asset": {
  4694. "__id__": 0
  4695. },
  4696. "fileId": "4542zCMIpN/qlZAmvv/ETA",
  4697. "sync": false
  4698. },
  4699. {
  4700. "__type__": "cc.PrefabInfo",
  4701. "root": {
  4702. "__id__": 1
  4703. },
  4704. "asset": {
  4705. "__id__": 0
  4706. },
  4707. "fileId": "f1diiebuZAvK8S4arvZWYs",
  4708. "sync": false
  4709. },
  4710. {
  4711. "__type__": "cc.Node",
  4712. "_name": "role",
  4713. "_objFlags": 0,
  4714. "_parent": {
  4715. "__id__": 1
  4716. },
  4717. "_children": [
  4718. {
  4719. "__id__": 138
  4720. },
  4721. {
  4722. "__id__": 141
  4723. },
  4724. {
  4725. "__id__": 146
  4726. },
  4727. {
  4728. "__id__": 149
  4729. },
  4730. {
  4731. "__id__": 152
  4732. },
  4733. {
  4734. "__id__": 155
  4735. },
  4736. {
  4737. "__id__": 158
  4738. },
  4739. {
  4740. "__id__": 167
  4741. },
  4742. {
  4743. "__id__": 170
  4744. }
  4745. ],
  4746. "_active": true,
  4747. "_components": [],
  4748. "_prefab": {
  4749. "__id__": 174
  4750. },
  4751. "_opacity": 255,
  4752. "_color": {
  4753. "__type__": "cc.Color",
  4754. "r": 255,
  4755. "g": 255,
  4756. "b": 255,
  4757. "a": 255
  4758. },
  4759. "_contentSize": {
  4760. "__type__": "cc.Size",
  4761. "width": 0,
  4762. "height": 0
  4763. },
  4764. "_anchorPoint": {
  4765. "__type__": "cc.Vec2",
  4766. "x": 0.5,
  4767. "y": 0.5
  4768. },
  4769. "_trs": {
  4770. "__type__": "TypedArray",
  4771. "ctor": "Float64Array",
  4772. "array": [
  4773. 0,
  4774. 0,
  4775. 0,
  4776. 0,
  4777. 0,
  4778. 0,
  4779. 1,
  4780. 1,
  4781. 1,
  4782. 1
  4783. ]
  4784. },
  4785. "_eulerAngles": {
  4786. "__type__": "cc.Vec3",
  4787. "x": 0,
  4788. "y": 0,
  4789. "z": 0
  4790. },
  4791. "_skewX": 0,
  4792. "_skewY": 0,
  4793. "_is3DNode": false,
  4794. "_groupIndex": 0,
  4795. "groupIndex": 0,
  4796. "_id": ""
  4797. },
  4798. {
  4799. "__type__": "cc.Node",
  4800. "_name": "streamer",
  4801. "_objFlags": 0,
  4802. "_parent": {
  4803. "__id__": 137
  4804. },
  4805. "_children": [],
  4806. "_active": true,
  4807. "_components": [
  4808. {
  4809. "__id__": 139
  4810. }
  4811. ],
  4812. "_prefab": {
  4813. "__id__": 140
  4814. },
  4815. "_opacity": 255,
  4816. "_color": {
  4817. "__type__": "cc.Color",
  4818. "r": 255,
  4819. "g": 255,
  4820. "b": 255,
  4821. "a": 255
  4822. },
  4823. "_contentSize": {
  4824. "__type__": "cc.Size",
  4825. "width": 397,
  4826. "height": 83
  4827. },
  4828. "_anchorPoint": {
  4829. "__type__": "cc.Vec2",
  4830. "x": 0.5,
  4831. "y": 0.5
  4832. },
  4833. "_trs": {
  4834. "__type__": "TypedArray",
  4835. "ctor": "Float64Array",
  4836. "array": [
  4837. 0,
  4838. -54.768,
  4839. 0,
  4840. 0,
  4841. 0,
  4842. 0,
  4843. 1,
  4844. 1,
  4845. 1,
  4846. 1.2
  4847. ]
  4848. },
  4849. "_eulerAngles": {
  4850. "__type__": "cc.Vec3",
  4851. "x": 0,
  4852. "y": 0,
  4853. "z": 0
  4854. },
  4855. "_skewX": 0,
  4856. "_skewY": 0,
  4857. "_is3DNode": false,
  4858. "_groupIndex": 0,
  4859. "groupIndex": 0,
  4860. "_id": ""
  4861. },
  4862. {
  4863. "__type__": "cc.Sprite",
  4864. "_name": "",
  4865. "_objFlags": 0,
  4866. "node": {
  4867. "__id__": 138
  4868. },
  4869. "_enabled": true,
  4870. "_materials": [
  4871. {
  4872. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4873. }
  4874. ],
  4875. "_srcBlendFactor": 770,
  4876. "_dstBlendFactor": 771,
  4877. "_spriteFrame": {
  4878. "__uuid__": "a945e2de-2e32-493e-9f87-90c429744933"
  4879. },
  4880. "_type": 0,
  4881. "_sizeMode": 0,
  4882. "_fillType": 0,
  4883. "_fillCenter": {
  4884. "__type__": "cc.Vec2",
  4885. "x": 0,
  4886. "y": 0
  4887. },
  4888. "_fillStart": 0,
  4889. "_fillRange": 0,
  4890. "_isTrimmedMode": false,
  4891. "_atlas": null,
  4892. "_id": ""
  4893. },
  4894. {
  4895. "__type__": "cc.PrefabInfo",
  4896. "root": {
  4897. "__id__": 1
  4898. },
  4899. "asset": {
  4900. "__id__": 0
  4901. },
  4902. "fileId": "90VnxSdwpGvqCFLZ39MSZN",
  4903. "sync": false
  4904. },
  4905. {
  4906. "__type__": "cc.Node",
  4907. "_name": "roleName",
  4908. "_objFlags": 0,
  4909. "_parent": {
  4910. "__id__": 137
  4911. },
  4912. "_children": [],
  4913. "_active": true,
  4914. "_components": [
  4915. {
  4916. "__id__": 142
  4917. },
  4918. {
  4919. "__id__": 143
  4920. },
  4921. {
  4922. "__id__": 144
  4923. }
  4924. ],
  4925. "_prefab": {
  4926. "__id__": 145
  4927. },
  4928. "_opacity": 255,
  4929. "_color": {
  4930. "__type__": "cc.Color",
  4931. "r": 255,
  4932. "g": 255,
  4933. "b": 255,
  4934. "a": 255
  4935. },
  4936. "_contentSize": {
  4937. "__type__": "cc.Size",
  4938. "width": 175.33,
  4939. "height": 62.7
  4940. },
  4941. "_anchorPoint": {
  4942. "__type__": "cc.Vec2",
  4943. "x": 0.5,
  4944. "y": 0.5
  4945. },
  4946. "_trs": {
  4947. "__type__": "TypedArray",
  4948. "ctor": "Float64Array",
  4949. "array": [
  4950. 0,
  4951. -53.855,
  4952. 0,
  4953. 0,
  4954. 0,
  4955. 0,
  4956. 1,
  4957. 1,
  4958. 1,
  4959. 1
  4960. ]
  4961. },
  4962. "_eulerAngles": {
  4963. "__type__": "cc.Vec3",
  4964. "x": 0,
  4965. "y": 0,
  4966. "z": 0
  4967. },
  4968. "_skewX": 0,
  4969. "_skewY": 0,
  4970. "_is3DNode": false,
  4971. "_groupIndex": 0,
  4972. "groupIndex": 0,
  4973. "_id": ""
  4974. },
  4975. {
  4976. "__type__": "cc.Label",
  4977. "_name": "",
  4978. "_objFlags": 0,
  4979. "node": {
  4980. "__id__": 141
  4981. },
  4982. "_enabled": true,
  4983. "_materials": [
  4984. {
  4985. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4986. }
  4987. ],
  4988. "_srcBlendFactor": 770,
  4989. "_dstBlendFactor": 771,
  4990. "_string": "Role Name",
  4991. "_N$string": "Role Name",
  4992. "_fontSize": 36,
  4993. "_lineHeight": 45,
  4994. "_enableWrapText": true,
  4995. "_N$file": {
  4996. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4997. },
  4998. "_isSystemFontUsed": false,
  4999. "_spacingX": 0,
  5000. "_batchAsBitmap": false,
  5001. "_styleFlags": 0,
  5002. "_underlineHeight": 0,
  5003. "_N$horizontalAlign": 1,
  5004. "_N$verticalAlign": 1,
  5005. "_N$fontFamily": "Arial",
  5006. "_N$overflow": 0,
  5007. "_N$cacheMode": 0,
  5008. "_id": ""
  5009. },
  5010. {
  5011. "__type__": "cc.LabelOutline",
  5012. "_name": "",
  5013. "_objFlags": 0,
  5014. "node": {
  5015. "__id__": 141
  5016. },
  5017. "_enabled": true,
  5018. "_color": {
  5019. "__type__": "cc.Color",
  5020. "r": 38,
  5021. "g": 17,
  5022. "b": 12,
  5023. "a": 255
  5024. },
  5025. "_width": 3,
  5026. "_id": ""
  5027. },
  5028. {
  5029. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  5030. "_name": "",
  5031. "_objFlags": 0,
  5032. "node": {
  5033. "__id__": 141
  5034. },
  5035. "_enabled": true,
  5036. "_englishCase": 0,
  5037. "i18n_string": "",
  5038. "i18n_params": [],
  5039. "_addColon": false,
  5040. "_id": ""
  5041. },
  5042. {
  5043. "__type__": "cc.PrefabInfo",
  5044. "root": {
  5045. "__id__": 1
  5046. },
  5047. "asset": {
  5048. "__id__": 0
  5049. },
  5050. "fileId": "9ekCjo3hxLMaMOaFwA0fAa",
  5051. "sync": false
  5052. },
  5053. {
  5054. "__type__": "cc.Node",
  5055. "_name": "role_type",
  5056. "_objFlags": 0,
  5057. "_parent": {
  5058. "__id__": 137
  5059. },
  5060. "_children": [],
  5061. "_active": true,
  5062. "_components": [
  5063. {
  5064. "__id__": 147
  5065. }
  5066. ],
  5067. "_prefab": {
  5068. "__id__": 148
  5069. },
  5070. "_opacity": 255,
  5071. "_color": {
  5072. "__type__": "cc.Color",
  5073. "r": 255,
  5074. "g": 255,
  5075. "b": 255,
  5076. "a": 255
  5077. },
  5078. "_contentSize": {
  5079. "__type__": "cc.Size",
  5080. "width": 53,
  5081. "height": 60
  5082. },
  5083. "_anchorPoint": {
  5084. "__type__": "cc.Vec2",
  5085. "x": 0.5,
  5086. "y": 0.5
  5087. },
  5088. "_trs": {
  5089. "__type__": "TypedArray",
  5090. "ctor": "Float64Array",
  5091. "array": [
  5092. -74.515,
  5093. 17.444,
  5094. 0,
  5095. 0,
  5096. 0,
  5097. 0,
  5098. 1,
  5099. 1,
  5100. 1,
  5101. 1
  5102. ]
  5103. },
  5104. "_eulerAngles": {
  5105. "__type__": "cc.Vec3",
  5106. "x": 0,
  5107. "y": 0,
  5108. "z": 0
  5109. },
  5110. "_skewX": 0,
  5111. "_skewY": 0,
  5112. "_is3DNode": false,
  5113. "_groupIndex": 0,
  5114. "groupIndex": 0,
  5115. "_id": ""
  5116. },
  5117. {
  5118. "__type__": "cc.Sprite",
  5119. "_name": "",
  5120. "_objFlags": 0,
  5121. "node": {
  5122. "__id__": 146
  5123. },
  5124. "_enabled": true,
  5125. "_materials": [
  5126. {
  5127. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5128. }
  5129. ],
  5130. "_srcBlendFactor": 770,
  5131. "_dstBlendFactor": 771,
  5132. "_spriteFrame": {
  5133. "__uuid__": "0dd72a40-7ec0-4918-bb7a-bccf39790137"
  5134. },
  5135. "_type": 0,
  5136. "_sizeMode": 1,
  5137. "_fillType": 0,
  5138. "_fillCenter": {
  5139. "__type__": "cc.Vec2",
  5140. "x": 0,
  5141. "y": 0
  5142. },
  5143. "_fillStart": 0,
  5144. "_fillRange": 0,
  5145. "_isTrimmedMode": true,
  5146. "_atlas": null,
  5147. "_id": ""
  5148. },
  5149. {
  5150. "__type__": "cc.PrefabInfo",
  5151. "root": {
  5152. "__id__": 1
  5153. },
  5154. "asset": {
  5155. "__id__": 0
  5156. },
  5157. "fileId": "38wK4Nul5Pr4nivmVk2AFz",
  5158. "sync": false
  5159. },
  5160. {
  5161. "__type__": "cc.Node",
  5162. "_name": "role_base",
  5163. "_objFlags": 0,
  5164. "_parent": {
  5165. "__id__": 137
  5166. },
  5167. "_children": [],
  5168. "_active": true,
  5169. "_components": [
  5170. {
  5171. "__id__": 150
  5172. }
  5173. ],
  5174. "_prefab": {
  5175. "__id__": 151
  5176. },
  5177. "_opacity": 255,
  5178. "_color": {
  5179. "__type__": "cc.Color",
  5180. "r": 255,
  5181. "g": 255,
  5182. "b": 255,
  5183. "a": 255
  5184. },
  5185. "_contentSize": {
  5186. "__type__": "cc.Size",
  5187. "width": 252,
  5188. "height": 137
  5189. },
  5190. "_anchorPoint": {
  5191. "__type__": "cc.Vec2",
  5192. "x": 0.5,
  5193. "y": 0.5
  5194. },
  5195. "_trs": {
  5196. "__type__": "TypedArray",
  5197. "ctor": "Float64Array",
  5198. "array": [
  5199. 0,
  5200. 60.03,
  5201. 0,
  5202. 0,
  5203. 0,
  5204. 0,
  5205. 1,
  5206. 1,
  5207. 1,
  5208. 1.5
  5209. ]
  5210. },
  5211. "_eulerAngles": {
  5212. "__type__": "cc.Vec3",
  5213. "x": 0,
  5214. "y": 0,
  5215. "z": 0
  5216. },
  5217. "_skewX": 0,
  5218. "_skewY": 0,
  5219. "_is3DNode": false,
  5220. "_groupIndex": 0,
  5221. "groupIndex": 0,
  5222. "_id": ""
  5223. },
  5224. {
  5225. "__type__": "cc.Sprite",
  5226. "_name": "",
  5227. "_objFlags": 0,
  5228. "node": {
  5229. "__id__": 149
  5230. },
  5231. "_enabled": true,
  5232. "_materials": [
  5233. {
  5234. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5235. }
  5236. ],
  5237. "_srcBlendFactor": 770,
  5238. "_dstBlendFactor": 771,
  5239. "_spriteFrame": {
  5240. "__uuid__": "6e9b8f88-87c3-4d92-872c-4f3ba2e864b4"
  5241. },
  5242. "_type": 0,
  5243. "_sizeMode": 1,
  5244. "_fillType": 0,
  5245. "_fillCenter": {
  5246. "__type__": "cc.Vec2",
  5247. "x": 0,
  5248. "y": 0
  5249. },
  5250. "_fillStart": 0,
  5251. "_fillRange": 0,
  5252. "_isTrimmedMode": true,
  5253. "_atlas": null,
  5254. "_id": ""
  5255. },
  5256. {
  5257. "__type__": "cc.PrefabInfo",
  5258. "root": {
  5259. "__id__": 1
  5260. },
  5261. "asset": {
  5262. "__id__": 0
  5263. },
  5264. "fileId": "1cAj0RwDRHHoVjjx1s8i+C",
  5265. "sync": false
  5266. },
  5267. {
  5268. "__type__": "cc.Node",
  5269. "_name": "base_light",
  5270. "_objFlags": 0,
  5271. "_parent": {
  5272. "__id__": 137
  5273. },
  5274. "_children": [],
  5275. "_active": true,
  5276. "_components": [
  5277. {
  5278. "__id__": 153
  5279. }
  5280. ],
  5281. "_prefab": {
  5282. "__id__": 154
  5283. },
  5284. "_opacity": 255,
  5285. "_color": {
  5286. "__type__": "cc.Color",
  5287. "r": 255,
  5288. "g": 255,
  5289. "b": 255,
  5290. "a": 255
  5291. },
  5292. "_contentSize": {
  5293. "__type__": "cc.Size",
  5294. "width": 289,
  5295. "height": 175
  5296. },
  5297. "_anchorPoint": {
  5298. "__type__": "cc.Vec2",
  5299. "x": 0.5,
  5300. "y": 0.5
  5301. },
  5302. "_trs": {
  5303. "__type__": "TypedArray",
  5304. "ctor": "Float64Array",
  5305. "array": [
  5306. 0,
  5307. 60.03,
  5308. 0,
  5309. 0,
  5310. 0,
  5311. 0,
  5312. 1,
  5313. 1,
  5314. 1,
  5315. 1.5
  5316. ]
  5317. },
  5318. "_eulerAngles": {
  5319. "__type__": "cc.Vec3",
  5320. "x": 0,
  5321. "y": 0,
  5322. "z": 0
  5323. },
  5324. "_skewX": 0,
  5325. "_skewY": 0,
  5326. "_is3DNode": false,
  5327. "_groupIndex": 0,
  5328. "groupIndex": 0,
  5329. "_id": ""
  5330. },
  5331. {
  5332. "__type__": "cc.Sprite",
  5333. "_name": "",
  5334. "_objFlags": 0,
  5335. "node": {
  5336. "__id__": 152
  5337. },
  5338. "_enabled": true,
  5339. "_materials": [
  5340. {
  5341. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5342. }
  5343. ],
  5344. "_srcBlendFactor": 770,
  5345. "_dstBlendFactor": 771,
  5346. "_spriteFrame": {
  5347. "__uuid__": "04ec2b8b-b059-4435-b4c3-1b5106d35588"
  5348. },
  5349. "_type": 0,
  5350. "_sizeMode": 1,
  5351. "_fillType": 0,
  5352. "_fillCenter": {
  5353. "__type__": "cc.Vec2",
  5354. "x": 0,
  5355. "y": 0
  5356. },
  5357. "_fillStart": 0,
  5358. "_fillRange": 0,
  5359. "_isTrimmedMode": true,
  5360. "_atlas": null,
  5361. "_id": ""
  5362. },
  5363. {
  5364. "__type__": "cc.PrefabInfo",
  5365. "root": {
  5366. "__id__": 1
  5367. },
  5368. "asset": {
  5369. "__id__": 0
  5370. },
  5371. "fileId": "01MFaPSutFu4UM7kD3PzrC",
  5372. "sync": false
  5373. },
  5374. {
  5375. "__type__": "cc.Node",
  5376. "_name": "spine",
  5377. "_objFlags": 0,
  5378. "_parent": {
  5379. "__id__": 137
  5380. },
  5381. "_children": [],
  5382. "_active": true,
  5383. "_components": [
  5384. {
  5385. "__id__": 156
  5386. }
  5387. ],
  5388. "_prefab": {
  5389. "__id__": 157
  5390. },
  5391. "_opacity": 255,
  5392. "_color": {
  5393. "__type__": "cc.Color",
  5394. "r": 255,
  5395. "g": 255,
  5396. "b": 255,
  5397. "a": 255
  5398. },
  5399. "_contentSize": {
  5400. "__type__": "cc.Size",
  5401. "width": 436.8602294921875,
  5402. "height": 515.7766723632812
  5403. },
  5404. "_anchorPoint": {
  5405. "__type__": "cc.Vec2",
  5406. "x": 0.5,
  5407. "y": 0.5
  5408. },
  5409. "_trs": {
  5410. "__type__": "TypedArray",
  5411. "ctor": "Float64Array",
  5412. "array": [
  5413. 0,
  5414. 72.455,
  5415. 0,
  5416. 0,
  5417. 0,
  5418. 0,
  5419. 1,
  5420. 0.6,
  5421. 0.6,
  5422. 0.6
  5423. ]
  5424. },
  5425. "_eulerAngles": {
  5426. "__type__": "cc.Vec3",
  5427. "x": 0,
  5428. "y": 0,
  5429. "z": 0
  5430. },
  5431. "_skewX": 0,
  5432. "_skewY": 0,
  5433. "_is3DNode": false,
  5434. "_groupIndex": 0,
  5435. "groupIndex": 0,
  5436. "_id": ""
  5437. },
  5438. {
  5439. "__type__": "sp.Skeleton",
  5440. "_name": "",
  5441. "_objFlags": 0,
  5442. "node": {
  5443. "__id__": 155
  5444. },
  5445. "_enabled": true,
  5446. "_materials": [
  5447. {
  5448. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  5449. }
  5450. ],
  5451. "paused": false,
  5452. "defaultSkin": "default",
  5453. "defaultAnimation": "",
  5454. "_preCacheMode": 0,
  5455. "_cacheMode": 0,
  5456. "loop": false,
  5457. "premultipliedAlpha": true,
  5458. "timeScale": 1,
  5459. "_accTime": 0,
  5460. "_playCount": 0,
  5461. "_frameCache": null,
  5462. "_curFrame": null,
  5463. "_skeletonCache": null,
  5464. "_animationName": "idle",
  5465. "_animationQueue": [],
  5466. "_headAniInfo": null,
  5467. "_playTimes": 0,
  5468. "_isAniComplete": true,
  5469. "_N$skeletonData": null,
  5470. "_N$_defaultCacheMode": 0,
  5471. "_N$debugSlots": false,
  5472. "_N$debugBones": false,
  5473. "_N$debugMesh": false,
  5474. "_N$useTint": false,
  5475. "_N$enableBatch": true,
  5476. "_id": ""
  5477. },
  5478. {
  5479. "__type__": "cc.PrefabInfo",
  5480. "root": {
  5481. "__id__": 1
  5482. },
  5483. "asset": {
  5484. "__id__": 0
  5485. },
  5486. "fileId": "cf8oLIfYhGab3XQijCp26z",
  5487. "sync": false
  5488. },
  5489. {
  5490. "__type__": "cc.Node",
  5491. "_name": "stars",
  5492. "_objFlags": 0,
  5493. "_parent": {
  5494. "__id__": 137
  5495. },
  5496. "_children": [
  5497. {
  5498. "__id__": 159
  5499. },
  5500. {
  5501. "__id__": 162
  5502. }
  5503. ],
  5504. "_active": true,
  5505. "_components": [
  5506. {
  5507. "__id__": 165
  5508. }
  5509. ],
  5510. "_prefab": {
  5511. "__id__": 166
  5512. },
  5513. "_opacity": 255,
  5514. "_color": {
  5515. "__type__": "cc.Color",
  5516. "r": 255,
  5517. "g": 255,
  5518. "b": 255,
  5519. "a": 255
  5520. },
  5521. "_contentSize": {
  5522. "__type__": "cc.Size",
  5523. "width": 100,
  5524. "height": 100
  5525. },
  5526. "_anchorPoint": {
  5527. "__type__": "cc.Vec2",
  5528. "x": 0.5,
  5529. "y": 0.5
  5530. },
  5531. "_trs": {
  5532. "__type__": "TypedArray",
  5533. "ctor": "Float64Array",
  5534. "array": [
  5535. 0,
  5536. 66.797,
  5537. 0,
  5538. 0,
  5539. 0,
  5540. 0,
  5541. 1,
  5542. 1,
  5543. 1,
  5544. 1
  5545. ]
  5546. },
  5547. "_eulerAngles": {
  5548. "__type__": "cc.Vec3",
  5549. "x": 0,
  5550. "y": 0,
  5551. "z": 0
  5552. },
  5553. "_skewX": 0,
  5554. "_skewY": 0,
  5555. "_is3DNode": false,
  5556. "_groupIndex": 0,
  5557. "groupIndex": 0,
  5558. "_id": ""
  5559. },
  5560. {
  5561. "__type__": "cc.Node",
  5562. "_name": "star",
  5563. "_objFlags": 0,
  5564. "_parent": {
  5565. "__id__": 158
  5566. },
  5567. "_children": [],
  5568. "_active": true,
  5569. "_components": [
  5570. {
  5571. "__id__": 160
  5572. }
  5573. ],
  5574. "_prefab": {
  5575. "__id__": 161
  5576. },
  5577. "_opacity": 255,
  5578. "_color": {
  5579. "__type__": "cc.Color",
  5580. "r": 255,
  5581. "g": 255,
  5582. "b": 255,
  5583. "a": 255
  5584. },
  5585. "_contentSize": {
  5586. "__type__": "cc.Size",
  5587. "width": 50,
  5588. "height": 48
  5589. },
  5590. "_anchorPoint": {
  5591. "__type__": "cc.Vec2",
  5592. "x": 0.5,
  5593. "y": 0.5
  5594. },
  5595. "_trs": {
  5596. "__type__": "TypedArray",
  5597. "ctor": "Float64Array",
  5598. "array": [
  5599. -25,
  5600. 0,
  5601. 0,
  5602. 0,
  5603. 0,
  5604. 0,
  5605. 1,
  5606. 1,
  5607. 1,
  5608. 1
  5609. ]
  5610. },
  5611. "_eulerAngles": {
  5612. "__type__": "cc.Vec3",
  5613. "x": 0,
  5614. "y": 0,
  5615. "z": 0
  5616. },
  5617. "_skewX": 0,
  5618. "_skewY": 0,
  5619. "_is3DNode": false,
  5620. "_groupIndex": 0,
  5621. "groupIndex": 0,
  5622. "_id": ""
  5623. },
  5624. {
  5625. "__type__": "cc.Sprite",
  5626. "_name": "",
  5627. "_objFlags": 0,
  5628. "node": {
  5629. "__id__": 159
  5630. },
  5631. "_enabled": true,
  5632. "_materials": [
  5633. {
  5634. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5635. }
  5636. ],
  5637. "_srcBlendFactor": 770,
  5638. "_dstBlendFactor": 771,
  5639. "_spriteFrame": {
  5640. "__uuid__": "285fe6c7-c2f1-437c-a8f0-8050e60d7de1"
  5641. },
  5642. "_type": 0,
  5643. "_sizeMode": 1,
  5644. "_fillType": 0,
  5645. "_fillCenter": {
  5646. "__type__": "cc.Vec2",
  5647. "x": 0,
  5648. "y": 0
  5649. },
  5650. "_fillStart": 0,
  5651. "_fillRange": 0,
  5652. "_isTrimmedMode": true,
  5653. "_atlas": null,
  5654. "_id": ""
  5655. },
  5656. {
  5657. "__type__": "cc.PrefabInfo",
  5658. "root": {
  5659. "__id__": 1
  5660. },
  5661. "asset": {
  5662. "__id__": 0
  5663. },
  5664. "fileId": "6ecNC1d3lD5rmvpatMGInk",
  5665. "sync": false
  5666. },
  5667. {
  5668. "__type__": "cc.Node",
  5669. "_name": "star",
  5670. "_objFlags": 0,
  5671. "_parent": {
  5672. "__id__": 158
  5673. },
  5674. "_children": [],
  5675. "_active": true,
  5676. "_components": [
  5677. {
  5678. "__id__": 163
  5679. }
  5680. ],
  5681. "_prefab": {
  5682. "__id__": 164
  5683. },
  5684. "_opacity": 255,
  5685. "_color": {
  5686. "__type__": "cc.Color",
  5687. "r": 255,
  5688. "g": 255,
  5689. "b": 255,
  5690. "a": 255
  5691. },
  5692. "_contentSize": {
  5693. "__type__": "cc.Size",
  5694. "width": 50,
  5695. "height": 48
  5696. },
  5697. "_anchorPoint": {
  5698. "__type__": "cc.Vec2",
  5699. "x": 0.5,
  5700. "y": 0.5
  5701. },
  5702. "_trs": {
  5703. "__type__": "TypedArray",
  5704. "ctor": "Float64Array",
  5705. "array": [
  5706. 25,
  5707. 0,
  5708. 0,
  5709. 0,
  5710. 0,
  5711. 0,
  5712. 1,
  5713. 1,
  5714. 1,
  5715. 1
  5716. ]
  5717. },
  5718. "_eulerAngles": {
  5719. "__type__": "cc.Vec3",
  5720. "x": 0,
  5721. "y": 0,
  5722. "z": 0
  5723. },
  5724. "_skewX": 0,
  5725. "_skewY": 0,
  5726. "_is3DNode": false,
  5727. "_groupIndex": 0,
  5728. "groupIndex": 0,
  5729. "_id": ""
  5730. },
  5731. {
  5732. "__type__": "cc.Sprite",
  5733. "_name": "",
  5734. "_objFlags": 0,
  5735. "node": {
  5736. "__id__": 162
  5737. },
  5738. "_enabled": true,
  5739. "_materials": [
  5740. {
  5741. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5742. }
  5743. ],
  5744. "_srcBlendFactor": 770,
  5745. "_dstBlendFactor": 771,
  5746. "_spriteFrame": {
  5747. "__uuid__": "285fe6c7-c2f1-437c-a8f0-8050e60d7de1"
  5748. },
  5749. "_type": 0,
  5750. "_sizeMode": 1,
  5751. "_fillType": 0,
  5752. "_fillCenter": {
  5753. "__type__": "cc.Vec2",
  5754. "x": 0,
  5755. "y": 0
  5756. },
  5757. "_fillStart": 0,
  5758. "_fillRange": 0,
  5759. "_isTrimmedMode": true,
  5760. "_atlas": null,
  5761. "_id": ""
  5762. },
  5763. {
  5764. "__type__": "cc.PrefabInfo",
  5765. "root": {
  5766. "__id__": 1
  5767. },
  5768. "asset": {
  5769. "__id__": 0
  5770. },
  5771. "fileId": "c6NqPOsU1LMp92pn5VaJMM",
  5772. "sync": false
  5773. },
  5774. {
  5775. "__type__": "cc.Layout",
  5776. "_name": "",
  5777. "_objFlags": 0,
  5778. "node": {
  5779. "__id__": 158
  5780. },
  5781. "_enabled": true,
  5782. "_layoutSize": {
  5783. "__type__": "cc.Size",
  5784. "width": 100,
  5785. "height": 100
  5786. },
  5787. "_resize": 1,
  5788. "_N$layoutType": 1,
  5789. "_N$cellSize": {
  5790. "__type__": "cc.Size",
  5791. "width": 40,
  5792. "height": 40
  5793. },
  5794. "_N$startAxis": 0,
  5795. "_N$paddingLeft": 0,
  5796. "_N$paddingRight": 0,
  5797. "_N$paddingTop": 0,
  5798. "_N$paddingBottom": 0,
  5799. "_N$spacingX": 0,
  5800. "_N$spacingY": 0,
  5801. "_N$verticalDirection": 1,
  5802. "_N$horizontalDirection": 0,
  5803. "_N$affectedByScale": false,
  5804. "_id": ""
  5805. },
  5806. {
  5807. "__type__": "cc.PrefabInfo",
  5808. "root": {
  5809. "__id__": 1
  5810. },
  5811. "asset": {
  5812. "__id__": 0
  5813. },
  5814. "fileId": "fdpLbkKRJMe7YneS7qphnQ",
  5815. "sync": false
  5816. },
  5817. {
  5818. "__type__": "cc.Node",
  5819. "_name": "base_level",
  5820. "_objFlags": 0,
  5821. "_parent": {
  5822. "__id__": 137
  5823. },
  5824. "_children": [],
  5825. "_active": true,
  5826. "_components": [
  5827. {
  5828. "__id__": 168
  5829. }
  5830. ],
  5831. "_prefab": {
  5832. "__id__": 169
  5833. },
  5834. "_opacity": 255,
  5835. "_color": {
  5836. "__type__": "cc.Color",
  5837. "r": 255,
  5838. "g": 255,
  5839. "b": 255,
  5840. "a": 255
  5841. },
  5842. "_contentSize": {
  5843. "__type__": "cc.Size",
  5844. "width": 202,
  5845. "height": 51
  5846. },
  5847. "_anchorPoint": {
  5848. "__type__": "cc.Vec2",
  5849. "x": 0.5,
  5850. "y": 0.5
  5851. },
  5852. "_trs": {
  5853. "__type__": "TypedArray",
  5854. "ctor": "Float64Array",
  5855. "array": [
  5856. 0,
  5857. 17.064,
  5858. 0,
  5859. 0,
  5860. 0,
  5861. 0,
  5862. 1,
  5863. 1,
  5864. 1,
  5865. 1
  5866. ]
  5867. },
  5868. "_eulerAngles": {
  5869. "__type__": "cc.Vec3",
  5870. "x": 0,
  5871. "y": 0,
  5872. "z": 0
  5873. },
  5874. "_skewX": 0,
  5875. "_skewY": 0,
  5876. "_is3DNode": false,
  5877. "_groupIndex": 0,
  5878. "groupIndex": 0,
  5879. "_id": ""
  5880. },
  5881. {
  5882. "__type__": "cc.Sprite",
  5883. "_name": "",
  5884. "_objFlags": 0,
  5885. "node": {
  5886. "__id__": 167
  5887. },
  5888. "_enabled": true,
  5889. "_materials": [
  5890. {
  5891. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5892. }
  5893. ],
  5894. "_srcBlendFactor": 770,
  5895. "_dstBlendFactor": 771,
  5896. "_spriteFrame": {
  5897. "__uuid__": "e2502aea-01d7-48fd-9ac0-2563d4cf9f3b"
  5898. },
  5899. "_type": 0,
  5900. "_sizeMode": 1,
  5901. "_fillType": 0,
  5902. "_fillCenter": {
  5903. "__type__": "cc.Vec2",
  5904. "x": 0,
  5905. "y": 0
  5906. },
  5907. "_fillStart": 0,
  5908. "_fillRange": 0,
  5909. "_isTrimmedMode": true,
  5910. "_atlas": null,
  5911. "_id": ""
  5912. },
  5913. {
  5914. "__type__": "cc.PrefabInfo",
  5915. "root": {
  5916. "__id__": 1
  5917. },
  5918. "asset": {
  5919. "__id__": 0
  5920. },
  5921. "fileId": "c3Kn8iq9JO9KOdP04hOTj5",
  5922. "sync": false
  5923. },
  5924. {
  5925. "__type__": "cc.Node",
  5926. "_name": "lv",
  5927. "_objFlags": 0,
  5928. "_parent": {
  5929. "__id__": 137
  5930. },
  5931. "_children": [],
  5932. "_active": true,
  5933. "_components": [
  5934. {
  5935. "__id__": 171
  5936. },
  5937. {
  5938. "__id__": 172
  5939. }
  5940. ],
  5941. "_prefab": {
  5942. "__id__": 173
  5943. },
  5944. "_opacity": 255,
  5945. "_color": {
  5946. "__type__": "cc.Color",
  5947. "r": 255,
  5948. "g": 255,
  5949. "b": 255,
  5950. "a": 255
  5951. },
  5952. "_contentSize": {
  5953. "__type__": "cc.Size",
  5954. "width": 95.37,
  5955. "height": 69
  5956. },
  5957. "_anchorPoint": {
  5958. "__type__": "cc.Vec2",
  5959. "x": 0.5,
  5960. "y": 0.5
  5961. },
  5962. "_trs": {
  5963. "__type__": "TypedArray",
  5964. "ctor": "Float64Array",
  5965. "array": [
  5966. 14.699,
  5967. 17.251,
  5968. 0,
  5969. 0,
  5970. 0,
  5971. 0,
  5972. 1,
  5973. 1,
  5974. 1,
  5975. 1
  5976. ]
  5977. },
  5978. "_eulerAngles": {
  5979. "__type__": "cc.Vec3",
  5980. "x": 0,
  5981. "y": 0,
  5982. "z": 0
  5983. },
  5984. "_skewX": 0,
  5985. "_skewY": 0,
  5986. "_is3DNode": false,
  5987. "_groupIndex": 0,
  5988. "groupIndex": 0,
  5989. "_id": ""
  5990. },
  5991. {
  5992. "__type__": "cc.Label",
  5993. "_name": "",
  5994. "_objFlags": 0,
  5995. "node": {
  5996. "__id__": 170
  5997. },
  5998. "_enabled": true,
  5999. "_materials": [
  6000. {
  6001. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6002. }
  6003. ],
  6004. "_srcBlendFactor": 770,
  6005. "_dstBlendFactor": 771,
  6006. "_string": "lv.999",
  6007. "_N$string": "lv.999",
  6008. "_fontSize": 30,
  6009. "_lineHeight": 50,
  6010. "_enableWrapText": false,
  6011. "_N$file": {
  6012. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6013. },
  6014. "_isSystemFontUsed": false,
  6015. "_spacingX": 0,
  6016. "_batchAsBitmap": false,
  6017. "_styleFlags": 0,
  6018. "_underlineHeight": 0,
  6019. "_N$horizontalAlign": 1,
  6020. "_N$verticalAlign": 1,
  6021. "_N$fontFamily": "Arial",
  6022. "_N$overflow": 0,
  6023. "_N$cacheMode": 0,
  6024. "_id": ""
  6025. },
  6026. {
  6027. "__type__": "cc.LabelOutline",
  6028. "_name": "",
  6029. "_objFlags": 0,
  6030. "node": {
  6031. "__id__": 170
  6032. },
  6033. "_enabled": true,
  6034. "_color": {
  6035. "__type__": "cc.Color",
  6036. "r": 38,
  6037. "g": 17,
  6038. "b": 12,
  6039. "a": 255
  6040. },
  6041. "_width": 3,
  6042. "_id": ""
  6043. },
  6044. {
  6045. "__type__": "cc.PrefabInfo",
  6046. "root": {
  6047. "__id__": 1
  6048. },
  6049. "asset": {
  6050. "__id__": 0
  6051. },
  6052. "fileId": "c6XHjUnbhEFq10bqYJR048",
  6053. "sync": false
  6054. },
  6055. {
  6056. "__type__": "cc.PrefabInfo",
  6057. "root": {
  6058. "__id__": 1
  6059. },
  6060. "asset": {
  6061. "__id__": 0
  6062. },
  6063. "fileId": "4611wpPIdM7r2sK5v/MLp5",
  6064. "sync": false
  6065. },
  6066. {
  6067. "__type__": "cc.Node",
  6068. "_name": "label",
  6069. "_objFlags": 0,
  6070. "_parent": {
  6071. "__id__": 1
  6072. },
  6073. "_children": [],
  6074. "_active": true,
  6075. "_components": [
  6076. {
  6077. "__id__": 176
  6078. },
  6079. {
  6080. "__id__": 177
  6081. }
  6082. ],
  6083. "_prefab": {
  6084. "__id__": 178
  6085. },
  6086. "_opacity": 255,
  6087. "_color": {
  6088. "__type__": "cc.Color",
  6089. "r": 255,
  6090. "g": 255,
  6091. "b": 255,
  6092. "a": 255
  6093. },
  6094. "_contentSize": {
  6095. "__type__": "cc.Size",
  6096. "width": 202.2,
  6097. "height": 50.4
  6098. },
  6099. "_anchorPoint": {
  6100. "__type__": "cc.Vec2",
  6101. "x": 0.5,
  6102. "y": 0.5
  6103. },
  6104. "_trs": {
  6105. "__type__": "TypedArray",
  6106. "ctor": "Float64Array",
  6107. "array": [
  6108. 0,
  6109. -458.68,
  6110. 0,
  6111. 0,
  6112. 0,
  6113. 0,
  6114. 1,
  6115. 1,
  6116. 1,
  6117. 1
  6118. ]
  6119. },
  6120. "_eulerAngles": {
  6121. "__type__": "cc.Vec3",
  6122. "x": 0,
  6123. "y": 0,
  6124. "z": 0
  6125. },
  6126. "_skewX": 0,
  6127. "_skewY": 0,
  6128. "_is3DNode": false,
  6129. "_groupIndex": 0,
  6130. "groupIndex": 0,
  6131. "_id": ""
  6132. },
  6133. {
  6134. "__type__": "cc.Label",
  6135. "_name": "",
  6136. "_objFlags": 0,
  6137. "node": {
  6138. "__id__": 175
  6139. },
  6140. "_enabled": true,
  6141. "_materials": [
  6142. {
  6143. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6144. }
  6145. ],
  6146. "_srcBlendFactor": 770,
  6147. "_dstBlendFactor": 771,
  6148. "_string": "click to close",
  6149. "_N$string": "click to close",
  6150. "_fontSize": 36,
  6151. "_lineHeight": 40,
  6152. "_enableWrapText": true,
  6153. "_N$file": {
  6154. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6155. },
  6156. "_isSystemFontUsed": false,
  6157. "_spacingX": 0,
  6158. "_batchAsBitmap": false,
  6159. "_styleFlags": 0,
  6160. "_underlineHeight": 0,
  6161. "_N$horizontalAlign": 1,
  6162. "_N$verticalAlign": 1,
  6163. "_N$fontFamily": "Arial",
  6164. "_N$overflow": 0,
  6165. "_N$cacheMode": 0,
  6166. "_id": ""
  6167. },
  6168. {
  6169. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  6170. "_name": "",
  6171. "_objFlags": 0,
  6172. "node": {
  6173. "__id__": 175
  6174. },
  6175. "_enabled": true,
  6176. "_englishCase": 0,
  6177. "i18n_string": "t39",
  6178. "i18n_params": [],
  6179. "_addColon": false,
  6180. "_id": ""
  6181. },
  6182. {
  6183. "__type__": "cc.PrefabInfo",
  6184. "root": {
  6185. "__id__": 1
  6186. },
  6187. "asset": {
  6188. "__id__": 0
  6189. },
  6190. "fileId": "7bjyc4XCFEXZe9H3CxPELl",
  6191. "sync": false
  6192. },
  6193. {
  6194. "__type__": "cc.Node",
  6195. "_name": "lvupAni",
  6196. "_objFlags": 0,
  6197. "_parent": {
  6198. "__id__": 1
  6199. },
  6200. "_children": [],
  6201. "_active": true,
  6202. "_components": [
  6203. {
  6204. "__id__": 180
  6205. },
  6206. {
  6207. "__id__": 181
  6208. }
  6209. ],
  6210. "_prefab": {
  6211. "__id__": 182
  6212. },
  6213. "_opacity": 255,
  6214. "_color": {
  6215. "__type__": "cc.Color",
  6216. "r": 255,
  6217. "g": 255,
  6218. "b": 255,
  6219. "a": 255
  6220. },
  6221. "_contentSize": {
  6222. "__type__": "cc.Size",
  6223. "width": 360,
  6224. "height": 700
  6225. },
  6226. "_anchorPoint": {
  6227. "__type__": "cc.Vec2",
  6228. "x": 0.5,
  6229. "y": 0.5
  6230. },
  6231. "_trs": {
  6232. "__type__": "TypedArray",
  6233. "ctor": "Float64Array",
  6234. "array": [
  6235. 0,
  6236. 216.387,
  6237. 0,
  6238. 0,
  6239. 0,
  6240. 0,
  6241. 1,
  6242. 0.6,
  6243. 0.6,
  6244. 1
  6245. ]
  6246. },
  6247. "_eulerAngles": {
  6248. "__type__": "cc.Vec3",
  6249. "x": 0,
  6250. "y": 0,
  6251. "z": 0
  6252. },
  6253. "_skewX": 0,
  6254. "_skewY": 0,
  6255. "_is3DNode": false,
  6256. "_groupIndex": 0,
  6257. "groupIndex": 0,
  6258. "_id": ""
  6259. },
  6260. {
  6261. "__type__": "cc.Animation",
  6262. "_name": "",
  6263. "_objFlags": 0,
  6264. "node": {
  6265. "__id__": 179
  6266. },
  6267. "_enabled": true,
  6268. "_defaultClip": null,
  6269. "_clips": [
  6270. {
  6271. "__uuid__": "679013e2-6df3-4012-b966-35eccc53bebf"
  6272. }
  6273. ],
  6274. "playOnLoad": false,
  6275. "_id": ""
  6276. },
  6277. {
  6278. "__type__": "cc.Sprite",
  6279. "_name": "",
  6280. "_objFlags": 0,
  6281. "node": {
  6282. "__id__": 179
  6283. },
  6284. "_enabled": true,
  6285. "_materials": [
  6286. {
  6287. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6288. }
  6289. ],
  6290. "_srcBlendFactor": 770,
  6291. "_dstBlendFactor": 771,
  6292. "_spriteFrame": null,
  6293. "_type": 0,
  6294. "_sizeMode": 2,
  6295. "_fillType": 0,
  6296. "_fillCenter": {
  6297. "__type__": "cc.Vec2",
  6298. "x": 0,
  6299. "y": 0
  6300. },
  6301. "_fillStart": 0,
  6302. "_fillRange": 0,
  6303. "_isTrimmedMode": false,
  6304. "_atlas": null,
  6305. "_id": ""
  6306. },
  6307. {
  6308. "__type__": "cc.PrefabInfo",
  6309. "root": {
  6310. "__id__": 1
  6311. },
  6312. "asset": {
  6313. "__id__": 0
  6314. },
  6315. "fileId": "fcP9ewtClPMYEUry3vgJ7/",
  6316. "sync": false
  6317. },
  6318. {
  6319. "__type__": "4efefS5y3xH+bzL//sW8YPc",
  6320. "_name": "",
  6321. "_objFlags": 0,
  6322. "node": {
  6323. "__id__": 1
  6324. },
  6325. "_enabled": true,
  6326. "quickClose": true,
  6327. "cache": false,
  6328. "showType": 500,
  6329. "prevent": true,
  6330. "_id": ""
  6331. },
  6332. {
  6333. "__type__": "cc.PrefabInfo",
  6334. "root": {
  6335. "__id__": 1
  6336. },
  6337. "asset": {
  6338. "__id__": 0
  6339. },
  6340. "fileId": "",
  6341. "sync": false
  6342. }
  6343. ]