RoleBreakSuccessUI.prefab 106 KB

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