RoleUI.prefab 163 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589
  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": "RoleUI",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 13
  28. },
  29. {
  30. "__id__": 18
  31. },
  32. {
  33. "__id__": 21
  34. },
  35. {
  36. "__id__": 24
  37. },
  38. {
  39. "__id__": 29
  40. },
  41. {
  42. "__id__": 37
  43. },
  44. {
  45. "__id__": 40
  46. },
  47. {
  48. "__id__": 44
  49. },
  50. {
  51. "__id__": 47
  52. },
  53. {
  54. "__id__": 50
  55. },
  56. {
  57. "__id__": 53
  58. },
  59. {
  60. "__id__": 56
  61. },
  62. {
  63. "__id__": 59
  64. },
  65. {
  66. "__id__": 62
  67. },
  68. {
  69. "__id__": 65
  70. },
  71. {
  72. "__id__": 69
  73. },
  74. {
  75. "__id__": 72
  76. },
  77. {
  78. "__id__": 76
  79. },
  80. {
  81. "__id__": 81
  82. },
  83. {
  84. "__id__": 85
  85. },
  86. {
  87. "__id__": 144
  88. },
  89. {
  90. "__id__": 150
  91. },
  92. {
  93. "__id__": 156
  94. },
  95. {
  96. "__id__": 162
  97. },
  98. {
  99. "__id__": 195
  100. },
  101. {
  102. "__id__": 206
  103. },
  104. {
  105. "__id__": 217
  106. },
  107. {
  108. "__id__": 228
  109. },
  110. {
  111. "__id__": 239
  112. },
  113. {
  114. "__id__": 242
  115. },
  116. {
  117. "__id__": 247
  118. },
  119. {
  120. "__id__": 272
  121. },
  122. {
  123. "__id__": 274
  124. }
  125. ],
  126. "_active": true,
  127. "_components": [
  128. {
  129. "__id__": 278
  130. }
  131. ],
  132. "_prefab": {
  133. "__id__": 279
  134. },
  135. "_opacity": 255,
  136. "_color": {
  137. "__type__": "cc.Color",
  138. "r": 255,
  139. "g": 255,
  140. "b": 255,
  141. "a": 255
  142. },
  143. "_contentSize": {
  144. "__type__": "cc.Size",
  145. "width": 2400,
  146. "height": 1080
  147. },
  148. "_anchorPoint": {
  149. "__type__": "cc.Vec2",
  150. "x": 0.5,
  151. "y": 0.5
  152. },
  153. "_trs": {
  154. "__type__": "TypedArray",
  155. "ctor": "Float64Array",
  156. "array": [
  157. 0,
  158. 0,
  159. 0,
  160. 0,
  161. 0,
  162. 0,
  163. 1,
  164. 1,
  165. 1,
  166. 1
  167. ]
  168. },
  169. "_eulerAngles": {
  170. "__type__": "cc.Vec3",
  171. "x": 0,
  172. "y": 0,
  173. "z": 0
  174. },
  175. "_skewX": 0,
  176. "_skewY": 0,
  177. "_is3DNode": false,
  178. "_groupIndex": 0,
  179. "groupIndex": 0,
  180. "_id": ""
  181. },
  182. {
  183. "__type__": "cc.Node",
  184. "_name": "bg",
  185. "_objFlags": 0,
  186. "_parent": {
  187. "__id__": 1
  188. },
  189. "_children": [],
  190. "_active": true,
  191. "_components": [
  192. {
  193. "__id__": 3
  194. },
  195. {
  196. "__id__": 4
  197. },
  198. {
  199. "__id__": 5
  200. }
  201. ],
  202. "_prefab": {
  203. "__id__": 6
  204. },
  205. "_opacity": 255,
  206. "_color": {
  207. "__type__": "cc.Color",
  208. "r": 255,
  209. "g": 255,
  210. "b": 255,
  211. "a": 255
  212. },
  213. "_contentSize": {
  214. "__type__": "cc.Size",
  215. "width": 1920,
  216. "height": 1080
  217. },
  218. "_anchorPoint": {
  219. "__type__": "cc.Vec2",
  220. "x": 0.5,
  221. "y": 0.5
  222. },
  223. "_trs": {
  224. "__type__": "TypedArray",
  225. "ctor": "Float64Array",
  226. "array": [
  227. 0,
  228. 0,
  229. 0,
  230. 0,
  231. 0,
  232. 0,
  233. 1,
  234. 1,
  235. 1,
  236. 1
  237. ]
  238. },
  239. "_eulerAngles": {
  240. "__type__": "cc.Vec3",
  241. "x": 0,
  242. "y": 0,
  243. "z": 0
  244. },
  245. "_skewX": 0,
  246. "_skewY": 0,
  247. "_is3DNode": false,
  248. "_groupIndex": 0,
  249. "groupIndex": 0,
  250. "_id": ""
  251. },
  252. {
  253. "__type__": "cc.Sprite",
  254. "_name": "",
  255. "_objFlags": 0,
  256. "node": {
  257. "__id__": 2
  258. },
  259. "_enabled": true,
  260. "_materials": [
  261. {
  262. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  263. }
  264. ],
  265. "_srcBlendFactor": 770,
  266. "_dstBlendFactor": 771,
  267. "_spriteFrame": {
  268. "__uuid__": "9c65fb73-0545-4b53-9ecb-ee9eb1972867"
  269. },
  270. "_type": 0,
  271. "_sizeMode": 0,
  272. "_fillType": 0,
  273. "_fillCenter": {
  274. "__type__": "cc.Vec2",
  275. "x": 0,
  276. "y": 0
  277. },
  278. "_fillStart": 0,
  279. "_fillRange": 0,
  280. "_isTrimmedMode": true,
  281. "_atlas": null,
  282. "_id": ""
  283. },
  284. {
  285. "__type__": "62f58zwdOVN/rFVGtus3pDj",
  286. "_name": "",
  287. "_objFlags": 0,
  288. "node": {
  289. "__id__": 2
  290. },
  291. "_enabled": true,
  292. "widthFit": true,
  293. "heightFit": true,
  294. "_id": ""
  295. },
  296. {
  297. "__type__": "cc.BlockInputEvents",
  298. "_name": "",
  299. "_objFlags": 0,
  300. "node": {
  301. "__id__": 2
  302. },
  303. "_enabled": true,
  304. "_id": ""
  305. },
  306. {
  307. "__type__": "cc.PrefabInfo",
  308. "root": {
  309. "__id__": 1
  310. },
  311. "asset": {
  312. "__id__": 0
  313. },
  314. "fileId": "9bgdV2GepFWrGQLzQTNC92",
  315. "sync": false
  316. },
  317. {
  318. "__type__": "cc.Node",
  319. "_name": "return",
  320. "_objFlags": 0,
  321. "_parent": {
  322. "__id__": 1
  323. },
  324. "_children": [],
  325. "_active": true,
  326. "_components": [
  327. {
  328. "__id__": 8
  329. },
  330. {
  331. "__id__": 9
  332. },
  333. {
  334. "__id__": 10
  335. }
  336. ],
  337. "_prefab": {
  338. "__id__": 12
  339. },
  340. "_opacity": 255,
  341. "_color": {
  342. "__type__": "cc.Color",
  343. "r": 255,
  344. "g": 255,
  345. "b": 255,
  346. "a": 255
  347. },
  348. "_contentSize": {
  349. "__type__": "cc.Size",
  350. "width": 106,
  351. "height": 106
  352. },
  353. "_anchorPoint": {
  354. "__type__": "cc.Vec2",
  355. "x": 0.5,
  356. "y": 0.5
  357. },
  358. "_trs": {
  359. "__type__": "TypedArray",
  360. "ctor": "Float64Array",
  361. "array": [
  362. -900,
  363. 480,
  364. 0,
  365. 0,
  366. 0,
  367. 0,
  368. 1,
  369. 1,
  370. 1,
  371. 0
  372. ]
  373. },
  374. "_eulerAngles": {
  375. "__type__": "cc.Vec3",
  376. "x": 0,
  377. "y": 0,
  378. "z": 0
  379. },
  380. "_skewX": 0,
  381. "_skewY": 0,
  382. "_is3DNode": false,
  383. "_groupIndex": 0,
  384. "groupIndex": 0,
  385. "_id": ""
  386. },
  387. {
  388. "__type__": "cc.Sprite",
  389. "_name": "",
  390. "_objFlags": 0,
  391. "node": {
  392. "__id__": 7
  393. },
  394. "_enabled": true,
  395. "_materials": [
  396. {
  397. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  398. }
  399. ],
  400. "_srcBlendFactor": 770,
  401. "_dstBlendFactor": 771,
  402. "_spriteFrame": {
  403. "__uuid__": "aad0ef4a-c231-4830-bea5-9b59c21d6548"
  404. },
  405. "_type": 0,
  406. "_sizeMode": 1,
  407. "_fillType": 0,
  408. "_fillCenter": {
  409. "__type__": "cc.Vec2",
  410. "x": 0,
  411. "y": 0
  412. },
  413. "_fillStart": 0,
  414. "_fillRange": 0,
  415. "_isTrimmedMode": true,
  416. "_atlas": null,
  417. "_id": ""
  418. },
  419. {
  420. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  421. "_name": "",
  422. "_objFlags": 0,
  423. "node": {
  424. "__id__": 7
  425. },
  426. "_enabled": true,
  427. "openContinuous": true,
  428. "continuousTime": 0.2,
  429. "multiTouch": false,
  430. "_id": ""
  431. },
  432. {
  433. "__type__": "61994AafntNFIbmt1zoyLq+",
  434. "_name": "",
  435. "_objFlags": 0,
  436. "node": {
  437. "__id__": 7
  438. },
  439. "_enabled": true,
  440. "_normalMaterial": null,
  441. "_grayMaterial": null,
  442. "duration": 0.1,
  443. "zoomScale": 1.2,
  444. "clickEvents": [
  445. {
  446. "__id__": 11
  447. }
  448. ],
  449. "_N$interactable": true,
  450. "_N$enableAutoGrayEffect": false,
  451. "_N$transition": 3,
  452. "transition": 3,
  453. "_N$normalColor": {
  454. "__type__": "cc.Color",
  455. "r": 255,
  456. "g": 255,
  457. "b": 255,
  458. "a": 255
  459. },
  460. "_N$pressedColor": {
  461. "__type__": "cc.Color",
  462. "r": 211,
  463. "g": 211,
  464. "b": 211,
  465. "a": 255
  466. },
  467. "pressedColor": {
  468. "__type__": "cc.Color",
  469. "r": 211,
  470. "g": 211,
  471. "b": 211,
  472. "a": 255
  473. },
  474. "_N$hoverColor": {
  475. "__type__": "cc.Color",
  476. "r": 255,
  477. "g": 255,
  478. "b": 255,
  479. "a": 255
  480. },
  481. "hoverColor": {
  482. "__type__": "cc.Color",
  483. "r": 255,
  484. "g": 255,
  485. "b": 255,
  486. "a": 255
  487. },
  488. "_N$disabledColor": {
  489. "__type__": "cc.Color",
  490. "r": 124,
  491. "g": 124,
  492. "b": 124,
  493. "a": 255
  494. },
  495. "_N$normalSprite": null,
  496. "_N$pressedSprite": null,
  497. "pressedSprite": null,
  498. "_N$hoverSprite": null,
  499. "hoverSprite": null,
  500. "_N$disabledSprite": null,
  501. "_N$target": null,
  502. "_id": ""
  503. },
  504. {
  505. "__type__": "cc.ClickEvent",
  506. "target": {
  507. "__id__": 1
  508. },
  509. "component": "",
  510. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  511. "handler": "hide",
  512. "customEventData": ""
  513. },
  514. {
  515. "__type__": "cc.PrefabInfo",
  516. "root": {
  517. "__id__": 1
  518. },
  519. "asset": {
  520. "__id__": 0
  521. },
  522. "fileId": "28JhtGNstKibqr1PJ15e6G",
  523. "sync": false
  524. },
  525. {
  526. "__type__": "cc.Node",
  527. "_name": "lb",
  528. "_objFlags": 0,
  529. "_parent": {
  530. "__id__": 1
  531. },
  532. "_children": [],
  533. "_active": true,
  534. "_components": [
  535. {
  536. "__id__": 14
  537. },
  538. {
  539. "__id__": 15
  540. },
  541. {
  542. "__id__": 16
  543. }
  544. ],
  545. "_prefab": {
  546. "__id__": 17
  547. },
  548. "_opacity": 255,
  549. "_color": {
  550. "__type__": "cc.Color",
  551. "r": 255,
  552. "g": 255,
  553. "b": 255,
  554. "a": 255
  555. },
  556. "_contentSize": {
  557. "__type__": "cc.Size",
  558. "width": 138.77,
  559. "height": 73
  560. },
  561. "_anchorPoint": {
  562. "__type__": "cc.Vec2",
  563. "x": 0,
  564. "y": 0.5
  565. },
  566. "_trs": {
  567. "__type__": "TypedArray",
  568. "ctor": "Float64Array",
  569. "array": [
  570. -840,
  571. 480,
  572. 0,
  573. 0,
  574. 0,
  575. 0,
  576. 1,
  577. 1,
  578. 1,
  579. 1
  580. ]
  581. },
  582. "_eulerAngles": {
  583. "__type__": "cc.Vec3",
  584. "x": 0,
  585. "y": 0,
  586. "z": 0
  587. },
  588. "_skewX": 0,
  589. "_skewY": 0,
  590. "_is3DNode": false,
  591. "_groupIndex": 0,
  592. "groupIndex": 0,
  593. "_id": ""
  594. },
  595. {
  596. "__type__": "cc.Label",
  597. "_name": "",
  598. "_objFlags": 0,
  599. "node": {
  600. "__id__": 13
  601. },
  602. "_enabled": true,
  603. "_materials": [
  604. {
  605. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  606. }
  607. ],
  608. "_srcBlendFactor": 770,
  609. "_dstBlendFactor": 771,
  610. "_string": "HERO",
  611. "_N$string": "HERO",
  612. "_fontSize": 48,
  613. "_lineHeight": 50,
  614. "_enableWrapText": true,
  615. "_N$file": {
  616. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  617. },
  618. "_isSystemFontUsed": false,
  619. "_spacingX": 0,
  620. "_batchAsBitmap": false,
  621. "_styleFlags": 0,
  622. "_underlineHeight": 0,
  623. "_N$horizontalAlign": 1,
  624. "_N$verticalAlign": 1,
  625. "_N$fontFamily": "Arial",
  626. "_N$overflow": 0,
  627. "_N$cacheMode": 0,
  628. "_id": ""
  629. },
  630. {
  631. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  632. "_name": "",
  633. "_objFlags": 0,
  634. "node": {
  635. "__id__": 13
  636. },
  637. "_enabled": true,
  638. "_englishCase": 2,
  639. "i18n_string": "t43",
  640. "i18n_params": [],
  641. "_addColon": false,
  642. "_id": ""
  643. },
  644. {
  645. "__type__": "cc.LabelOutline",
  646. "_name": "",
  647. "_objFlags": 0,
  648. "node": {
  649. "__id__": 13
  650. },
  651. "_enabled": true,
  652. "_color": {
  653. "__type__": "cc.Color",
  654. "r": 38,
  655. "g": 17,
  656. "b": 12,
  657. "a": 255
  658. },
  659. "_width": 5,
  660. "_id": ""
  661. },
  662. {
  663. "__type__": "cc.PrefabInfo",
  664. "root": {
  665. "__id__": 1
  666. },
  667. "asset": {
  668. "__id__": 0
  669. },
  670. "fileId": "10a/ABE51C6bvzidUf2bUx",
  671. "sync": false
  672. },
  673. {
  674. "__type__": "cc.Node",
  675. "_name": "common_frame2",
  676. "_objFlags": 0,
  677. "_parent": {
  678. "__id__": 1
  679. },
  680. "_children": [],
  681. "_active": true,
  682. "_components": [
  683. {
  684. "__id__": 19
  685. }
  686. ],
  687. "_prefab": {
  688. "__id__": 20
  689. },
  690. "_opacity": 255,
  691. "_color": {
  692. "__type__": "cc.Color",
  693. "r": 255,
  694. "g": 255,
  695. "b": 255,
  696. "a": 255
  697. },
  698. "_contentSize": {
  699. "__type__": "cc.Size",
  700. "width": 519.1,
  701. "height": 512.4
  702. },
  703. "_anchorPoint": {
  704. "__type__": "cc.Vec2",
  705. "x": 0.5,
  706. "y": 0.5
  707. },
  708. "_trs": {
  709. "__type__": "TypedArray",
  710. "ctor": "Float64Array",
  711. "array": [
  712. -681,
  713. 110.2,
  714. 0,
  715. 0,
  716. 0,
  717. 0,
  718. 1,
  719. 1,
  720. 1,
  721. 1
  722. ]
  723. },
  724. "_eulerAngles": {
  725. "__type__": "cc.Vec3",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0
  729. },
  730. "_skewX": 0,
  731. "_skewY": 0,
  732. "_is3DNode": false,
  733. "_groupIndex": 0,
  734. "groupIndex": 0,
  735. "_id": ""
  736. },
  737. {
  738. "__type__": "cc.Sprite",
  739. "_name": "",
  740. "_objFlags": 0,
  741. "node": {
  742. "__id__": 18
  743. },
  744. "_enabled": true,
  745. "_materials": [
  746. {
  747. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  748. }
  749. ],
  750. "_srcBlendFactor": 770,
  751. "_dstBlendFactor": 771,
  752. "_spriteFrame": {
  753. "__uuid__": "081dc70f-4e06-4aa8-aed4-915ef25eff26"
  754. },
  755. "_type": 1,
  756. "_sizeMode": 0,
  757. "_fillType": 0,
  758. "_fillCenter": {
  759. "__type__": "cc.Vec2",
  760. "x": 0,
  761. "y": 0
  762. },
  763. "_fillStart": 0,
  764. "_fillRange": 0,
  765. "_isTrimmedMode": true,
  766. "_atlas": null,
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.PrefabInfo",
  771. "root": {
  772. "__id__": 1
  773. },
  774. "asset": {
  775. "__id__": 0
  776. },
  777. "fileId": "cfOxQex3lG5o5PmjGMvDOn",
  778. "sync": false
  779. },
  780. {
  781. "__type__": "cc.Node",
  782. "_name": "bar_1",
  783. "_objFlags": 0,
  784. "_parent": {
  785. "__id__": 1
  786. },
  787. "_children": [],
  788. "_active": true,
  789. "_components": [
  790. {
  791. "__id__": 22
  792. }
  793. ],
  794. "_prefab": {
  795. "__id__": 23
  796. },
  797. "_opacity": 255,
  798. "_color": {
  799. "__type__": "cc.Color",
  800. "r": 255,
  801. "g": 255,
  802. "b": 255,
  803. "a": 255
  804. },
  805. "_contentSize": {
  806. "__type__": "cc.Size",
  807. "width": 411,
  808. "height": 72
  809. },
  810. "_anchorPoint": {
  811. "__type__": "cc.Vec2",
  812. "x": 0.5,
  813. "y": 0.5
  814. },
  815. "_trs": {
  816. "__type__": "TypedArray",
  817. "ctor": "Float64Array",
  818. "array": [
  819. -680,
  820. 300,
  821. 0,
  822. 0,
  823. 0,
  824. 0,
  825. 1,
  826. 1,
  827. 1,
  828. 1
  829. ]
  830. },
  831. "_eulerAngles": {
  832. "__type__": "cc.Vec3",
  833. "x": 0,
  834. "y": 0,
  835. "z": 0
  836. },
  837. "_skewX": 0,
  838. "_skewY": 0,
  839. "_is3DNode": false,
  840. "_groupIndex": 0,
  841. "groupIndex": 0,
  842. "_id": ""
  843. },
  844. {
  845. "__type__": "cc.Sprite",
  846. "_name": "",
  847. "_objFlags": 0,
  848. "node": {
  849. "__id__": 21
  850. },
  851. "_enabled": true,
  852. "_materials": [
  853. {
  854. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  855. }
  856. ],
  857. "_srcBlendFactor": 770,
  858. "_dstBlendFactor": 771,
  859. "_spriteFrame": {
  860. "__uuid__": "147924ff-94f3-47c2-bed9-754856ec9715"
  861. },
  862. "_type": 0,
  863. "_sizeMode": 0,
  864. "_fillType": 0,
  865. "_fillCenter": {
  866. "__type__": "cc.Vec2",
  867. "x": 0,
  868. "y": 0
  869. },
  870. "_fillStart": 0,
  871. "_fillRange": 0,
  872. "_isTrimmedMode": true,
  873. "_atlas": null,
  874. "_id": ""
  875. },
  876. {
  877. "__type__": "cc.PrefabInfo",
  878. "root": {
  879. "__id__": 1
  880. },
  881. "asset": {
  882. "__id__": 0
  883. },
  884. "fileId": "21FHx1K4pKN7/vGYZcCYJk",
  885. "sync": false
  886. },
  887. {
  888. "__type__": "cc.Node",
  889. "_name": "skillName",
  890. "_objFlags": 0,
  891. "_parent": {
  892. "__id__": 1
  893. },
  894. "_children": [],
  895. "_active": true,
  896. "_components": [
  897. {
  898. "__id__": 25
  899. },
  900. {
  901. "__id__": 26
  902. },
  903. {
  904. "__id__": 27
  905. }
  906. ],
  907. "_prefab": {
  908. "__id__": 28
  909. },
  910. "_opacity": 255,
  911. "_color": {
  912. "__type__": "cc.Color",
  913. "r": 255,
  914. "g": 255,
  915. "b": 255,
  916. "a": 255
  917. },
  918. "_contentSize": {
  919. "__type__": "cc.Size",
  920. "width": 340,
  921. "height": 44
  922. },
  923. "_anchorPoint": {
  924. "__type__": "cc.Vec2",
  925. "x": 0.5,
  926. "y": 0.5
  927. },
  928. "_trs": {
  929. "__type__": "TypedArray",
  930. "ctor": "Float64Array",
  931. "array": [
  932. -680,
  933. 300,
  934. 0,
  935. 0,
  936. 0,
  937. 0,
  938. 1,
  939. 1,
  940. 1,
  941. 1
  942. ]
  943. },
  944. "_eulerAngles": {
  945. "__type__": "cc.Vec3",
  946. "x": 0,
  947. "y": 0,
  948. "z": 0
  949. },
  950. "_skewX": 0,
  951. "_skewY": 0,
  952. "_is3DNode": false,
  953. "_groupIndex": 0,
  954. "groupIndex": 0,
  955. "_id": ""
  956. },
  957. {
  958. "__type__": "cc.Label",
  959. "_name": "",
  960. "_objFlags": 0,
  961. "node": {
  962. "__id__": 24
  963. },
  964. "_enabled": true,
  965. "_materials": [
  966. {
  967. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  968. }
  969. ],
  970. "_srcBlendFactor": 770,
  971. "_dstBlendFactor": 771,
  972. "_string": "skill name",
  973. "_N$string": "skill name",
  974. "_fontSize": 36,
  975. "_lineHeight": 40,
  976. "_enableWrapText": true,
  977. "_N$file": {
  978. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  979. },
  980. "_isSystemFontUsed": false,
  981. "_spacingX": 0,
  982. "_batchAsBitmap": false,
  983. "_styleFlags": 0,
  984. "_underlineHeight": 0,
  985. "_N$horizontalAlign": 1,
  986. "_N$verticalAlign": 1,
  987. "_N$fontFamily": "Arial",
  988. "_N$overflow": 2,
  989. "_N$cacheMode": 0,
  990. "_id": ""
  991. },
  992. {
  993. "__type__": "cc.LabelOutline",
  994. "_name": "",
  995. "_objFlags": 0,
  996. "node": {
  997. "__id__": 24
  998. },
  999. "_enabled": true,
  1000. "_color": {
  1001. "__type__": "cc.Color",
  1002. "r": 38,
  1003. "g": 17,
  1004. "b": 12,
  1005. "a": 255
  1006. },
  1007. "_width": 2,
  1008. "_id": ""
  1009. },
  1010. {
  1011. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1012. "_name": "",
  1013. "_objFlags": 0,
  1014. "node": {
  1015. "__id__": 24
  1016. },
  1017. "_enabled": true,
  1018. "_englishCase": 0,
  1019. "i18n_string": "",
  1020. "i18n_params": [],
  1021. "_addColon": false,
  1022. "_id": ""
  1023. },
  1024. {
  1025. "__type__": "cc.PrefabInfo",
  1026. "root": {
  1027. "__id__": 1
  1028. },
  1029. "asset": {
  1030. "__id__": 0
  1031. },
  1032. "fileId": "78ckv0Rd5Bq4BSjh0M7OeC",
  1033. "sync": false
  1034. },
  1035. {
  1036. "__type__": "cc.Node",
  1037. "_name": "skill_item",
  1038. "_objFlags": 0,
  1039. "_parent": {
  1040. "__id__": 1
  1041. },
  1042. "_children": [
  1043. {
  1044. "__id__": 30
  1045. },
  1046. {
  1047. "__id__": 33
  1048. }
  1049. ],
  1050. "_active": true,
  1051. "_components": [],
  1052. "_prefab": {
  1053. "__id__": 36
  1054. },
  1055. "_opacity": 255,
  1056. "_color": {
  1057. "__type__": "cc.Color",
  1058. "r": 0,
  1059. "g": 0,
  1060. "b": 0,
  1061. "a": 255
  1062. },
  1063. "_contentSize": {
  1064. "__type__": "cc.Size",
  1065. "width": 150,
  1066. "height": 150
  1067. },
  1068. "_anchorPoint": {
  1069. "__type__": "cc.Vec2",
  1070. "x": 0.5,
  1071. "y": 0.5
  1072. },
  1073. "_trs": {
  1074. "__type__": "TypedArray",
  1075. "ctor": "Float64Array",
  1076. "array": [
  1077. -678.926,
  1078. 171.797,
  1079. 0,
  1080. 0,
  1081. 0,
  1082. 0,
  1083. 1,
  1084. 1,
  1085. 1,
  1086. 1
  1087. ]
  1088. },
  1089. "_eulerAngles": {
  1090. "__type__": "cc.Vec3",
  1091. "x": 0,
  1092. "y": 0,
  1093. "z": 0
  1094. },
  1095. "_skewX": 0,
  1096. "_skewY": 0,
  1097. "_is3DNode": false,
  1098. "_groupIndex": 0,
  1099. "groupIndex": 0,
  1100. "_id": ""
  1101. },
  1102. {
  1103. "__type__": "cc.Node",
  1104. "_name": "item_frame",
  1105. "_objFlags": 0,
  1106. "_parent": {
  1107. "__id__": 29
  1108. },
  1109. "_children": [],
  1110. "_active": true,
  1111. "_components": [
  1112. {
  1113. "__id__": 31
  1114. }
  1115. ],
  1116. "_prefab": {
  1117. "__id__": 32
  1118. },
  1119. "_opacity": 255,
  1120. "_color": {
  1121. "__type__": "cc.Color",
  1122. "r": 255,
  1123. "g": 255,
  1124. "b": 255,
  1125. "a": 255
  1126. },
  1127. "_contentSize": {
  1128. "__type__": "cc.Size",
  1129. "width": 150,
  1130. "height": 150
  1131. },
  1132. "_anchorPoint": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0.5,
  1135. "y": 0.5
  1136. },
  1137. "_trs": {
  1138. "__type__": "TypedArray",
  1139. "ctor": "Float64Array",
  1140. "array": [
  1141. 0,
  1142. 0,
  1143. 0,
  1144. 0,
  1145. 0,
  1146. 0,
  1147. 1,
  1148. 1,
  1149. 1,
  1150. 1
  1151. ]
  1152. },
  1153. "_eulerAngles": {
  1154. "__type__": "cc.Vec3",
  1155. "x": 0,
  1156. "y": 0,
  1157. "z": 0
  1158. },
  1159. "_skewX": 0,
  1160. "_skewY": 0,
  1161. "_is3DNode": false,
  1162. "_groupIndex": 0,
  1163. "groupIndex": 0,
  1164. "_id": ""
  1165. },
  1166. {
  1167. "__type__": "cc.Sprite",
  1168. "_name": "",
  1169. "_objFlags": 0,
  1170. "node": {
  1171. "__id__": 30
  1172. },
  1173. "_enabled": true,
  1174. "_materials": [
  1175. {
  1176. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1177. }
  1178. ],
  1179. "_srcBlendFactor": 770,
  1180. "_dstBlendFactor": 771,
  1181. "_spriteFrame": {
  1182. "__uuid__": "9001cedd-06f1-4884-8ed1-17038fad7fa6"
  1183. },
  1184. "_type": 0,
  1185. "_sizeMode": 0,
  1186. "_fillType": 0,
  1187. "_fillCenter": {
  1188. "__type__": "cc.Vec2",
  1189. "x": 0,
  1190. "y": 0
  1191. },
  1192. "_fillStart": 0,
  1193. "_fillRange": 0,
  1194. "_isTrimmedMode": true,
  1195. "_atlas": null,
  1196. "_id": ""
  1197. },
  1198. {
  1199. "__type__": "cc.PrefabInfo",
  1200. "root": {
  1201. "__id__": 1
  1202. },
  1203. "asset": {
  1204. "__id__": 0
  1205. },
  1206. "fileId": "adDwQIj+pHNZ375z09QeQn",
  1207. "sync": false
  1208. },
  1209. {
  1210. "__type__": "cc.Node",
  1211. "_name": "icon",
  1212. "_objFlags": 0,
  1213. "_parent": {
  1214. "__id__": 29
  1215. },
  1216. "_children": [],
  1217. "_active": true,
  1218. "_components": [
  1219. {
  1220. "__id__": 34
  1221. }
  1222. ],
  1223. "_prefab": {
  1224. "__id__": 35
  1225. },
  1226. "_opacity": 255,
  1227. "_color": {
  1228. "__type__": "cc.Color",
  1229. "r": 255,
  1230. "g": 255,
  1231. "b": 255,
  1232. "a": 255
  1233. },
  1234. "_contentSize": {
  1235. "__type__": "cc.Size",
  1236. "width": 126,
  1237. "height": 126
  1238. },
  1239. "_anchorPoint": {
  1240. "__type__": "cc.Vec2",
  1241. "x": 0.5,
  1242. "y": 0.5
  1243. },
  1244. "_trs": {
  1245. "__type__": "TypedArray",
  1246. "ctor": "Float64Array",
  1247. "array": [
  1248. 0,
  1249. 0,
  1250. 0,
  1251. 0,
  1252. 0,
  1253. 0,
  1254. 1,
  1255. 1,
  1256. 1,
  1257. 1
  1258. ]
  1259. },
  1260. "_eulerAngles": {
  1261. "__type__": "cc.Vec3",
  1262. "x": 0,
  1263. "y": 0,
  1264. "z": 0
  1265. },
  1266. "_skewX": 0,
  1267. "_skewY": 0,
  1268. "_is3DNode": false,
  1269. "_groupIndex": 0,
  1270. "groupIndex": 0,
  1271. "_id": ""
  1272. },
  1273. {
  1274. "__type__": "cc.Sprite",
  1275. "_name": "",
  1276. "_objFlags": 0,
  1277. "node": {
  1278. "__id__": 33
  1279. },
  1280. "_enabled": true,
  1281. "_materials": [
  1282. {
  1283. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1284. }
  1285. ],
  1286. "_srcBlendFactor": 770,
  1287. "_dstBlendFactor": 771,
  1288. "_spriteFrame": null,
  1289. "_type": 0,
  1290. "_sizeMode": 0,
  1291. "_fillType": 0,
  1292. "_fillCenter": {
  1293. "__type__": "cc.Vec2",
  1294. "x": 0,
  1295. "y": 0
  1296. },
  1297. "_fillStart": 0,
  1298. "_fillRange": 0,
  1299. "_isTrimmedMode": false,
  1300. "_atlas": null,
  1301. "_id": ""
  1302. },
  1303. {
  1304. "__type__": "cc.PrefabInfo",
  1305. "root": {
  1306. "__id__": 1
  1307. },
  1308. "asset": {
  1309. "__id__": 0
  1310. },
  1311. "fileId": "27zFgyImtPmZVtYR08CkF5",
  1312. "sync": false
  1313. },
  1314. {
  1315. "__type__": "cc.PrefabInfo",
  1316. "root": {
  1317. "__id__": 1
  1318. },
  1319. "asset": {
  1320. "__id__": 0
  1321. },
  1322. "fileId": "f3pClGs0pCbYgMBghWWr39",
  1323. "sync": false
  1324. },
  1325. {
  1326. "__type__": "cc.Node",
  1327. "_name": "bottom1",
  1328. "_objFlags": 0,
  1329. "_parent": {
  1330. "__id__": 1
  1331. },
  1332. "_children": [],
  1333. "_active": true,
  1334. "_components": [
  1335. {
  1336. "__id__": 38
  1337. }
  1338. ],
  1339. "_prefab": {
  1340. "__id__": 39
  1341. },
  1342. "_opacity": 255,
  1343. "_color": {
  1344. "__type__": "cc.Color",
  1345. "r": 255,
  1346. "g": 255,
  1347. "b": 255,
  1348. "a": 255
  1349. },
  1350. "_contentSize": {
  1351. "__type__": "cc.Size",
  1352. "width": 460,
  1353. "height": 200
  1354. },
  1355. "_anchorPoint": {
  1356. "__type__": "cc.Vec2",
  1357. "x": 0.5,
  1358. "y": 0.5
  1359. },
  1360. "_trs": {
  1361. "__type__": "TypedArray",
  1362. "ctor": "Float64Array",
  1363. "array": [
  1364. -684.3,
  1365. -15.143,
  1366. 0,
  1367. 0,
  1368. 0,
  1369. 0,
  1370. 1,
  1371. 1,
  1372. 1,
  1373. 1
  1374. ]
  1375. },
  1376. "_eulerAngles": {
  1377. "__type__": "cc.Vec3",
  1378. "x": 0,
  1379. "y": 0,
  1380. "z": 0
  1381. },
  1382. "_skewX": 0,
  1383. "_skewY": 0,
  1384. "_is3DNode": false,
  1385. "_groupIndex": 0,
  1386. "groupIndex": 0,
  1387. "_id": ""
  1388. },
  1389. {
  1390. "__type__": "cc.Sprite",
  1391. "_name": "",
  1392. "_objFlags": 0,
  1393. "node": {
  1394. "__id__": 37
  1395. },
  1396. "_enabled": true,
  1397. "_materials": [
  1398. {
  1399. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1400. }
  1401. ],
  1402. "_srcBlendFactor": 770,
  1403. "_dstBlendFactor": 771,
  1404. "_spriteFrame": {
  1405. "__uuid__": "f2a9fd92-10f7-4e39-b1e4-54d0059b8c1f"
  1406. },
  1407. "_type": 1,
  1408. "_sizeMode": 0,
  1409. "_fillType": 0,
  1410. "_fillCenter": {
  1411. "__type__": "cc.Vec2",
  1412. "x": 0,
  1413. "y": 0
  1414. },
  1415. "_fillStart": 0,
  1416. "_fillRange": 0,
  1417. "_isTrimmedMode": true,
  1418. "_atlas": null,
  1419. "_id": ""
  1420. },
  1421. {
  1422. "__type__": "cc.PrefabInfo",
  1423. "root": {
  1424. "__id__": 1
  1425. },
  1426. "asset": {
  1427. "__id__": 0
  1428. },
  1429. "fileId": "7aGqeWLnJGao7IAz2YYa0d",
  1430. "sync": false
  1431. },
  1432. {
  1433. "__type__": "cc.Node",
  1434. "_name": "skill_rt",
  1435. "_objFlags": 0,
  1436. "_parent": {
  1437. "__id__": 1
  1438. },
  1439. "_children": [],
  1440. "_active": true,
  1441. "_components": [
  1442. {
  1443. "__id__": 41
  1444. },
  1445. {
  1446. "__id__": 42
  1447. }
  1448. ],
  1449. "_prefab": {
  1450. "__id__": 43
  1451. },
  1452. "_opacity": 255,
  1453. "_color": {
  1454. "__type__": "cc.Color",
  1455. "r": 255,
  1456. "g": 255,
  1457. "b": 255,
  1458. "a": 255
  1459. },
  1460. "_contentSize": {
  1461. "__type__": "cc.Size",
  1462. "width": 436,
  1463. "height": 45.36
  1464. },
  1465. "_anchorPoint": {
  1466. "__type__": "cc.Vec2",
  1467. "x": 0.5,
  1468. "y": 1
  1469. },
  1470. "_trs": {
  1471. "__type__": "TypedArray",
  1472. "ctor": "Float64Array",
  1473. "array": [
  1474. -686.177,
  1475. 82.028,
  1476. 0,
  1477. 0,
  1478. 0,
  1479. 0,
  1480. 1,
  1481. 1,
  1482. 1,
  1483. 1
  1484. ]
  1485. },
  1486. "_eulerAngles": {
  1487. "__type__": "cc.Vec3",
  1488. "x": 0,
  1489. "y": 0,
  1490. "z": 0
  1491. },
  1492. "_skewX": 0,
  1493. "_skewY": 0,
  1494. "_is3DNode": false,
  1495. "_groupIndex": 0,
  1496. "groupIndex": 0,
  1497. "_id": ""
  1498. },
  1499. {
  1500. "__type__": "cc.RichText",
  1501. "_name": "",
  1502. "_objFlags": 0,
  1503. "node": {
  1504. "__id__": 40
  1505. },
  1506. "_enabled": true,
  1507. "_fontFamily": "Arial",
  1508. "_isSystemFontUsed": false,
  1509. "_N$string": "",
  1510. "_N$horizontalAlign": 0,
  1511. "_N$fontSize": 30,
  1512. "_N$font": {
  1513. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  1514. },
  1515. "_N$cacheMode": 0,
  1516. "_N$maxWidth": 436,
  1517. "_N$lineHeight": 36,
  1518. "_N$imageAtlas": null,
  1519. "_N$handleTouchEvent": true,
  1520. "_id": ""
  1521. },
  1522. {
  1523. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  1524. "_name": "",
  1525. "_objFlags": 0,
  1526. "node": {
  1527. "__id__": 40
  1528. },
  1529. "_enabled": true,
  1530. "_englishCase": 0,
  1531. "i18n_string": "",
  1532. "i18n_params": [],
  1533. "_addColon": false,
  1534. "_id": ""
  1535. },
  1536. {
  1537. "__type__": "cc.PrefabInfo",
  1538. "root": {
  1539. "__id__": 1
  1540. },
  1541. "asset": {
  1542. "__id__": 0
  1543. },
  1544. "fileId": "b3gVP8HGJC8roiTjUlfJ83",
  1545. "sync": false
  1546. },
  1547. {
  1548. "__type__": "cc.Node",
  1549. "_name": "chain",
  1550. "_objFlags": 0,
  1551. "_parent": {
  1552. "__id__": 1
  1553. },
  1554. "_children": [],
  1555. "_active": true,
  1556. "_components": [
  1557. {
  1558. "__id__": 45
  1559. }
  1560. ],
  1561. "_prefab": {
  1562. "__id__": 46
  1563. },
  1564. "_opacity": 255,
  1565. "_color": {
  1566. "__type__": "cc.Color",
  1567. "r": 255,
  1568. "g": 255,
  1569. "b": 255,
  1570. "a": 255
  1571. },
  1572. "_contentSize": {
  1573. "__type__": "cc.Size",
  1574. "width": 24,
  1575. "height": 59
  1576. },
  1577. "_anchorPoint": {
  1578. "__type__": "cc.Vec2",
  1579. "x": 0.5,
  1580. "y": 0.5
  1581. },
  1582. "_trs": {
  1583. "__type__": "TypedArray",
  1584. "ctor": "Float64Array",
  1585. "array": [
  1586. -840.205,
  1587. -175.031,
  1588. 0,
  1589. 0,
  1590. 0,
  1591. 0,
  1592. 1,
  1593. 1,
  1594. 1,
  1595. 1
  1596. ]
  1597. },
  1598. "_eulerAngles": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 0,
  1601. "y": 0,
  1602. "z": 0
  1603. },
  1604. "_skewX": 0,
  1605. "_skewY": 0,
  1606. "_is3DNode": false,
  1607. "_groupIndex": 0,
  1608. "groupIndex": 0,
  1609. "_id": ""
  1610. },
  1611. {
  1612. "__type__": "cc.Sprite",
  1613. "_name": "",
  1614. "_objFlags": 0,
  1615. "node": {
  1616. "__id__": 44
  1617. },
  1618. "_enabled": true,
  1619. "_materials": [
  1620. {
  1621. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1622. }
  1623. ],
  1624. "_srcBlendFactor": 770,
  1625. "_dstBlendFactor": 771,
  1626. "_spriteFrame": {
  1627. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1628. },
  1629. "_type": 0,
  1630. "_sizeMode": 1,
  1631. "_fillType": 0,
  1632. "_fillCenter": {
  1633. "__type__": "cc.Vec2",
  1634. "x": 0,
  1635. "y": 0
  1636. },
  1637. "_fillStart": 0,
  1638. "_fillRange": 0,
  1639. "_isTrimmedMode": true,
  1640. "_atlas": null,
  1641. "_id": ""
  1642. },
  1643. {
  1644. "__type__": "cc.PrefabInfo",
  1645. "root": {
  1646. "__id__": 1
  1647. },
  1648. "asset": {
  1649. "__id__": 0
  1650. },
  1651. "fileId": "4cf8c2eKBJpp6vN8r0kUHd",
  1652. "sync": false
  1653. },
  1654. {
  1655. "__type__": "cc.Node",
  1656. "_name": "chain",
  1657. "_objFlags": 0,
  1658. "_parent": {
  1659. "__id__": 1
  1660. },
  1661. "_children": [],
  1662. "_active": true,
  1663. "_components": [
  1664. {
  1665. "__id__": 48
  1666. }
  1667. ],
  1668. "_prefab": {
  1669. "__id__": 49
  1670. },
  1671. "_opacity": 255,
  1672. "_color": {
  1673. "__type__": "cc.Color",
  1674. "r": 255,
  1675. "g": 255,
  1676. "b": 255,
  1677. "a": 255
  1678. },
  1679. "_contentSize": {
  1680. "__type__": "cc.Size",
  1681. "width": 24,
  1682. "height": 59
  1683. },
  1684. "_anchorPoint": {
  1685. "__type__": "cc.Vec2",
  1686. "x": 0.5,
  1687. "y": 0.5
  1688. },
  1689. "_trs": {
  1690. "__type__": "TypedArray",
  1691. "ctor": "Float64Array",
  1692. "array": [
  1693. -526.851,
  1694. -175.031,
  1695. 0,
  1696. 0,
  1697. 0,
  1698. 0,
  1699. 1,
  1700. 1,
  1701. 1,
  1702. 1
  1703. ]
  1704. },
  1705. "_eulerAngles": {
  1706. "__type__": "cc.Vec3",
  1707. "x": 0,
  1708. "y": 0,
  1709. "z": 0
  1710. },
  1711. "_skewX": 0,
  1712. "_skewY": 0,
  1713. "_is3DNode": false,
  1714. "_groupIndex": 0,
  1715. "groupIndex": 0,
  1716. "_id": ""
  1717. },
  1718. {
  1719. "__type__": "cc.Sprite",
  1720. "_name": "",
  1721. "_objFlags": 0,
  1722. "node": {
  1723. "__id__": 47
  1724. },
  1725. "_enabled": true,
  1726. "_materials": [
  1727. {
  1728. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1729. }
  1730. ],
  1731. "_srcBlendFactor": 770,
  1732. "_dstBlendFactor": 771,
  1733. "_spriteFrame": {
  1734. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1735. },
  1736. "_type": 0,
  1737. "_sizeMode": 1,
  1738. "_fillType": 0,
  1739. "_fillCenter": {
  1740. "__type__": "cc.Vec2",
  1741. "x": 0,
  1742. "y": 0
  1743. },
  1744. "_fillStart": 0,
  1745. "_fillRange": 0,
  1746. "_isTrimmedMode": true,
  1747. "_atlas": null,
  1748. "_id": ""
  1749. },
  1750. {
  1751. "__type__": "cc.PrefabInfo",
  1752. "root": {
  1753. "__id__": 1
  1754. },
  1755. "asset": {
  1756. "__id__": 0
  1757. },
  1758. "fileId": "04mWK211JFx6I8KqOuxS5f",
  1759. "sync": false
  1760. },
  1761. {
  1762. "__type__": "cc.Node",
  1763. "_name": "chain",
  1764. "_objFlags": 0,
  1765. "_parent": {
  1766. "__id__": 1
  1767. },
  1768. "_children": [],
  1769. "_active": true,
  1770. "_components": [
  1771. {
  1772. "__id__": 51
  1773. }
  1774. ],
  1775. "_prefab": {
  1776. "__id__": 52
  1777. },
  1778. "_opacity": 255,
  1779. "_color": {
  1780. "__type__": "cc.Color",
  1781. "r": 255,
  1782. "g": 255,
  1783. "b": 255,
  1784. "a": 255
  1785. },
  1786. "_contentSize": {
  1787. "__type__": "cc.Size",
  1788. "width": 24,
  1789. "height": 59
  1790. },
  1791. "_anchorPoint": {
  1792. "__type__": "cc.Vec2",
  1793. "x": 0.5,
  1794. "y": 0.5
  1795. },
  1796. "_trs": {
  1797. "__type__": "TypedArray",
  1798. "ctor": "Float64Array",
  1799. "array": [
  1800. -840.205,
  1801. -272.95,
  1802. 0,
  1803. 0,
  1804. 0,
  1805. 0,
  1806. 1,
  1807. 1,
  1808. 1,
  1809. 1
  1810. ]
  1811. },
  1812. "_eulerAngles": {
  1813. "__type__": "cc.Vec3",
  1814. "x": 0,
  1815. "y": 0,
  1816. "z": 0
  1817. },
  1818. "_skewX": 0,
  1819. "_skewY": 0,
  1820. "_is3DNode": false,
  1821. "_groupIndex": 0,
  1822. "groupIndex": 0,
  1823. "_id": ""
  1824. },
  1825. {
  1826. "__type__": "cc.Sprite",
  1827. "_name": "",
  1828. "_objFlags": 0,
  1829. "node": {
  1830. "__id__": 50
  1831. },
  1832. "_enabled": true,
  1833. "_materials": [
  1834. {
  1835. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1836. }
  1837. ],
  1838. "_srcBlendFactor": 770,
  1839. "_dstBlendFactor": 771,
  1840. "_spriteFrame": {
  1841. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1842. },
  1843. "_type": 0,
  1844. "_sizeMode": 1,
  1845. "_fillType": 0,
  1846. "_fillCenter": {
  1847. "__type__": "cc.Vec2",
  1848. "x": 0,
  1849. "y": 0
  1850. },
  1851. "_fillStart": 0,
  1852. "_fillRange": 0,
  1853. "_isTrimmedMode": true,
  1854. "_atlas": null,
  1855. "_id": ""
  1856. },
  1857. {
  1858. "__type__": "cc.PrefabInfo",
  1859. "root": {
  1860. "__id__": 1
  1861. },
  1862. "asset": {
  1863. "__id__": 0
  1864. },
  1865. "fileId": "30BPAgaMlHf6MxkNjh2neN",
  1866. "sync": false
  1867. },
  1868. {
  1869. "__type__": "cc.Node",
  1870. "_name": "chain",
  1871. "_objFlags": 0,
  1872. "_parent": {
  1873. "__id__": 1
  1874. },
  1875. "_children": [],
  1876. "_active": true,
  1877. "_components": [
  1878. {
  1879. "__id__": 54
  1880. }
  1881. ],
  1882. "_prefab": {
  1883. "__id__": 55
  1884. },
  1885. "_opacity": 255,
  1886. "_color": {
  1887. "__type__": "cc.Color",
  1888. "r": 255,
  1889. "g": 255,
  1890. "b": 255,
  1891. "a": 255
  1892. },
  1893. "_contentSize": {
  1894. "__type__": "cc.Size",
  1895. "width": 24,
  1896. "height": 59
  1897. },
  1898. "_anchorPoint": {
  1899. "__type__": "cc.Vec2",
  1900. "x": 0.5,
  1901. "y": 0.5
  1902. },
  1903. "_trs": {
  1904. "__type__": "TypedArray",
  1905. "ctor": "Float64Array",
  1906. "array": [
  1907. -526.851,
  1908. -272.95,
  1909. 0,
  1910. 0,
  1911. 0,
  1912. 0,
  1913. 1,
  1914. 1,
  1915. 1,
  1916. 1
  1917. ]
  1918. },
  1919. "_eulerAngles": {
  1920. "__type__": "cc.Vec3",
  1921. "x": 0,
  1922. "y": 0,
  1923. "z": 0
  1924. },
  1925. "_skewX": 0,
  1926. "_skewY": 0,
  1927. "_is3DNode": false,
  1928. "_groupIndex": 0,
  1929. "groupIndex": 0,
  1930. "_id": ""
  1931. },
  1932. {
  1933. "__type__": "cc.Sprite",
  1934. "_name": "",
  1935. "_objFlags": 0,
  1936. "node": {
  1937. "__id__": 53
  1938. },
  1939. "_enabled": true,
  1940. "_materials": [
  1941. {
  1942. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1943. }
  1944. ],
  1945. "_srcBlendFactor": 770,
  1946. "_dstBlendFactor": 771,
  1947. "_spriteFrame": {
  1948. "__uuid__": "d1c8582d-6d32-45d1-9197-3a9e97252180"
  1949. },
  1950. "_type": 0,
  1951. "_sizeMode": 1,
  1952. "_fillType": 0,
  1953. "_fillCenter": {
  1954. "__type__": "cc.Vec2",
  1955. "x": 0,
  1956. "y": 0
  1957. },
  1958. "_fillStart": 0,
  1959. "_fillRange": 0,
  1960. "_isTrimmedMode": true,
  1961. "_atlas": null,
  1962. "_id": ""
  1963. },
  1964. {
  1965. "__type__": "cc.PrefabInfo",
  1966. "root": {
  1967. "__id__": 1
  1968. },
  1969. "asset": {
  1970. "__id__": 0
  1971. },
  1972. "fileId": "1a8MsLVINGapKpKBw5gIhN",
  1973. "sync": false
  1974. },
  1975. {
  1976. "__type__": "cc.Node",
  1977. "_name": "bar_2",
  1978. "_objFlags": 0,
  1979. "_parent": {
  1980. "__id__": 1
  1981. },
  1982. "_children": [],
  1983. "_active": true,
  1984. "_components": [
  1985. {
  1986. "__id__": 57
  1987. }
  1988. ],
  1989. "_prefab": {
  1990. "__id__": 58
  1991. },
  1992. "_opacity": 255,
  1993. "_color": {
  1994. "__type__": "cc.Color",
  1995. "r": 255,
  1996. "g": 255,
  1997. "b": 255,
  1998. "a": 255
  1999. },
  2000. "_contentSize": {
  2001. "__type__": "cc.Size",
  2002. "width": 515,
  2003. "height": 80
  2004. },
  2005. "_anchorPoint": {
  2006. "__type__": "cc.Vec2",
  2007. "x": 0.5,
  2008. "y": 0.5
  2009. },
  2010. "_trs": {
  2011. "__type__": "TypedArray",
  2012. "ctor": "Float64Array",
  2013. "array": [
  2014. -685.021,
  2015. -208.657,
  2016. 0,
  2017. 0,
  2018. 0,
  2019. 0,
  2020. 1,
  2021. 1,
  2022. 1,
  2023. 1
  2024. ]
  2025. },
  2026. "_eulerAngles": {
  2027. "__type__": "cc.Vec3",
  2028. "x": 0,
  2029. "y": 0,
  2030. "z": 0
  2031. },
  2032. "_skewX": 0,
  2033. "_skewY": 0,
  2034. "_is3DNode": false,
  2035. "_groupIndex": 0,
  2036. "groupIndex": 0,
  2037. "_id": ""
  2038. },
  2039. {
  2040. "__type__": "cc.Sprite",
  2041. "_name": "",
  2042. "_objFlags": 0,
  2043. "node": {
  2044. "__id__": 56
  2045. },
  2046. "_enabled": true,
  2047. "_materials": [
  2048. {
  2049. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2050. }
  2051. ],
  2052. "_srcBlendFactor": 770,
  2053. "_dstBlendFactor": 771,
  2054. "_spriteFrame": {
  2055. "__uuid__": "42f31920-8483-4613-9f40-cb3a6ecab849"
  2056. },
  2057. "_type": 1,
  2058. "_sizeMode": 0,
  2059. "_fillType": 0,
  2060. "_fillCenter": {
  2061. "__type__": "cc.Vec2",
  2062. "x": 0,
  2063. "y": 0
  2064. },
  2065. "_fillStart": 0,
  2066. "_fillRange": 0,
  2067. "_isTrimmedMode": true,
  2068. "_atlas": null,
  2069. "_id": ""
  2070. },
  2071. {
  2072. "__type__": "cc.PrefabInfo",
  2073. "root": {
  2074. "__id__": 1
  2075. },
  2076. "asset": {
  2077. "__id__": 0
  2078. },
  2079. "fileId": "52IMGuEIdI5qGwOgOcYaqQ",
  2080. "sync": false
  2081. },
  2082. {
  2083. "__type__": "cc.Node",
  2084. "_name": "bar_2",
  2085. "_objFlags": 0,
  2086. "_parent": {
  2087. "__id__": 1
  2088. },
  2089. "_children": [],
  2090. "_active": true,
  2091. "_components": [
  2092. {
  2093. "__id__": 60
  2094. }
  2095. ],
  2096. "_prefab": {
  2097. "__id__": 61
  2098. },
  2099. "_opacity": 255,
  2100. "_color": {
  2101. "__type__": "cc.Color",
  2102. "r": 255,
  2103. "g": 255,
  2104. "b": 255,
  2105. "a": 255
  2106. },
  2107. "_contentSize": {
  2108. "__type__": "cc.Size",
  2109. "width": 515,
  2110. "height": 80
  2111. },
  2112. "_anchorPoint": {
  2113. "__type__": "cc.Vec2",
  2114. "x": 0.5,
  2115. "y": 0.5
  2116. },
  2117. "_trs": {
  2118. "__type__": "TypedArray",
  2119. "ctor": "Float64Array",
  2120. "array": [
  2121. -685.021,
  2122. -305.328,
  2123. 0,
  2124. 0,
  2125. 0,
  2126. 0,
  2127. 1,
  2128. 1,
  2129. 1,
  2130. 1
  2131. ]
  2132. },
  2133. "_eulerAngles": {
  2134. "__type__": "cc.Vec3",
  2135. "x": 0,
  2136. "y": 0,
  2137. "z": 0
  2138. },
  2139. "_skewX": 0,
  2140. "_skewY": 0,
  2141. "_is3DNode": false,
  2142. "_groupIndex": 0,
  2143. "groupIndex": 0,
  2144. "_id": ""
  2145. },
  2146. {
  2147. "__type__": "cc.Sprite",
  2148. "_name": "",
  2149. "_objFlags": 0,
  2150. "node": {
  2151. "__id__": 59
  2152. },
  2153. "_enabled": true,
  2154. "_materials": [
  2155. {
  2156. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2157. }
  2158. ],
  2159. "_srcBlendFactor": 770,
  2160. "_dstBlendFactor": 771,
  2161. "_spriteFrame": {
  2162. "__uuid__": "42f31920-8483-4613-9f40-cb3a6ecab849"
  2163. },
  2164. "_type": 1,
  2165. "_sizeMode": 0,
  2166. "_fillType": 0,
  2167. "_fillCenter": {
  2168. "__type__": "cc.Vec2",
  2169. "x": 0,
  2170. "y": 0
  2171. },
  2172. "_fillStart": 0,
  2173. "_fillRange": 0,
  2174. "_isTrimmedMode": true,
  2175. "_atlas": null,
  2176. "_id": ""
  2177. },
  2178. {
  2179. "__type__": "cc.PrefabInfo",
  2180. "root": {
  2181. "__id__": 1
  2182. },
  2183. "asset": {
  2184. "__id__": 0
  2185. },
  2186. "fileId": "c3GAqFmehFpbAhzGExOhXe",
  2187. "sync": false
  2188. },
  2189. {
  2190. "__type__": "cc.Node",
  2191. "_name": "attackIcon",
  2192. "_objFlags": 0,
  2193. "_parent": {
  2194. "__id__": 1
  2195. },
  2196. "_children": [],
  2197. "_active": true,
  2198. "_components": [
  2199. {
  2200. "__id__": 63
  2201. }
  2202. ],
  2203. "_prefab": {
  2204. "__id__": 64
  2205. },
  2206. "_opacity": 255,
  2207. "_color": {
  2208. "__type__": "cc.Color",
  2209. "r": 255,
  2210. "g": 255,
  2211. "b": 255,
  2212. "a": 255
  2213. },
  2214. "_contentSize": {
  2215. "__type__": "cc.Size",
  2216. "width": 47,
  2217. "height": 49
  2218. },
  2219. "_anchorPoint": {
  2220. "__type__": "cc.Vec2",
  2221. "x": 0.5,
  2222. "y": 0.5
  2223. },
  2224. "_trs": {
  2225. "__type__": "TypedArray",
  2226. "ctor": "Float64Array",
  2227. "array": [
  2228. -885.551,
  2229. -302.93,
  2230. 0,
  2231. 0,
  2232. 0,
  2233. 0,
  2234. 1,
  2235. 1,
  2236. 1,
  2237. 1
  2238. ]
  2239. },
  2240. "_eulerAngles": {
  2241. "__type__": "cc.Vec3",
  2242. "x": 0,
  2243. "y": 0,
  2244. "z": 0
  2245. },
  2246. "_skewX": 0,
  2247. "_skewY": 0,
  2248. "_is3DNode": false,
  2249. "_groupIndex": 0,
  2250. "groupIndex": 0,
  2251. "_id": ""
  2252. },
  2253. {
  2254. "__type__": "cc.Sprite",
  2255. "_name": "",
  2256. "_objFlags": 0,
  2257. "node": {
  2258. "__id__": 62
  2259. },
  2260. "_enabled": true,
  2261. "_materials": [
  2262. {
  2263. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2264. }
  2265. ],
  2266. "_srcBlendFactor": 770,
  2267. "_dstBlendFactor": 771,
  2268. "_spriteFrame": {
  2269. "__uuid__": "b8daa138-6f3d-4d72-8808-807cb5033a18"
  2270. },
  2271. "_type": 0,
  2272. "_sizeMode": 1,
  2273. "_fillType": 0,
  2274. "_fillCenter": {
  2275. "__type__": "cc.Vec2",
  2276. "x": 0,
  2277. "y": 0
  2278. },
  2279. "_fillStart": 0,
  2280. "_fillRange": 0,
  2281. "_isTrimmedMode": true,
  2282. "_atlas": null,
  2283. "_id": ""
  2284. },
  2285. {
  2286. "__type__": "cc.PrefabInfo",
  2287. "root": {
  2288. "__id__": 1
  2289. },
  2290. "asset": {
  2291. "__id__": 0
  2292. },
  2293. "fileId": "a7eVF59CBGcKDJDf6Uzdnh",
  2294. "sync": false
  2295. },
  2296. {
  2297. "__type__": "cc.Node",
  2298. "_name": "attack",
  2299. "_objFlags": 0,
  2300. "_parent": {
  2301. "__id__": 1
  2302. },
  2303. "_children": [],
  2304. "_active": true,
  2305. "_components": [
  2306. {
  2307. "__id__": 66
  2308. },
  2309. {
  2310. "__id__": 67
  2311. }
  2312. ],
  2313. "_prefab": {
  2314. "__id__": 68
  2315. },
  2316. "_opacity": 255,
  2317. "_color": {
  2318. "__type__": "cc.Color",
  2319. "r": 255,
  2320. "g": 255,
  2321. "b": 255,
  2322. "a": 255
  2323. },
  2324. "_contentSize": {
  2325. "__type__": "cc.Size",
  2326. "width": 160,
  2327. "height": 60.4
  2328. },
  2329. "_anchorPoint": {
  2330. "__type__": "cc.Vec2",
  2331. "x": 0.5,
  2332. "y": 0.5
  2333. },
  2334. "_trs": {
  2335. "__type__": "TypedArray",
  2336. "ctor": "Float64Array",
  2337. "array": [
  2338. -780.82,
  2339. -305.991,
  2340. 0,
  2341. 0,
  2342. 0,
  2343. 0,
  2344. 1,
  2345. 1,
  2346. 1,
  2347. 1
  2348. ]
  2349. },
  2350. "_eulerAngles": {
  2351. "__type__": "cc.Vec3",
  2352. "x": 0,
  2353. "y": 0,
  2354. "z": 0
  2355. },
  2356. "_skewX": 0,
  2357. "_skewY": 0,
  2358. "_is3DNode": false,
  2359. "_groupIndex": 0,
  2360. "groupIndex": 0,
  2361. "_id": ""
  2362. },
  2363. {
  2364. "__type__": "cc.Label",
  2365. "_name": "",
  2366. "_objFlags": 0,
  2367. "node": {
  2368. "__id__": 65
  2369. },
  2370. "_enabled": true,
  2371. "_materials": [
  2372. {
  2373. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2374. }
  2375. ],
  2376. "_srcBlendFactor": 770,
  2377. "_dstBlendFactor": 771,
  2378. "_string": "100000",
  2379. "_N$string": "100000",
  2380. "_fontSize": 36,
  2381. "_lineHeight": 40,
  2382. "_enableWrapText": false,
  2383. "_N$file": {
  2384. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2385. },
  2386. "_isSystemFontUsed": false,
  2387. "_spacingX": 0,
  2388. "_batchAsBitmap": false,
  2389. "_styleFlags": 0,
  2390. "_underlineHeight": 0,
  2391. "_N$horizontalAlign": 1,
  2392. "_N$verticalAlign": 1,
  2393. "_N$fontFamily": "Arial",
  2394. "_N$overflow": 2,
  2395. "_N$cacheMode": 0,
  2396. "_id": ""
  2397. },
  2398. {
  2399. "__type__": "cc.LabelOutline",
  2400. "_name": "",
  2401. "_objFlags": 0,
  2402. "node": {
  2403. "__id__": 65
  2404. },
  2405. "_enabled": true,
  2406. "_color": {
  2407. "__type__": "cc.Color",
  2408. "r": 38,
  2409. "g": 17,
  2410. "b": 12,
  2411. "a": 255
  2412. },
  2413. "_width": 5,
  2414. "_id": ""
  2415. },
  2416. {
  2417. "__type__": "cc.PrefabInfo",
  2418. "root": {
  2419. "__id__": 1
  2420. },
  2421. "asset": {
  2422. "__id__": 0
  2423. },
  2424. "fileId": "14LqIXnf1Gp60DmOGlQe0X",
  2425. "sync": false
  2426. },
  2427. {
  2428. "__type__": "cc.Node",
  2429. "_name": "HP",
  2430. "_objFlags": 0,
  2431. "_parent": {
  2432. "__id__": 1
  2433. },
  2434. "_children": [],
  2435. "_active": true,
  2436. "_components": [
  2437. {
  2438. "__id__": 70
  2439. }
  2440. ],
  2441. "_prefab": {
  2442. "__id__": 71
  2443. },
  2444. "_opacity": 255,
  2445. "_color": {
  2446. "__type__": "cc.Color",
  2447. "r": 255,
  2448. "g": 255,
  2449. "b": 255,
  2450. "a": 255
  2451. },
  2452. "_contentSize": {
  2453. "__type__": "cc.Size",
  2454. "width": 53,
  2455. "height": 47
  2456. },
  2457. "_anchorPoint": {
  2458. "__type__": "cc.Vec2",
  2459. "x": 0.5,
  2460. "y": 0.5
  2461. },
  2462. "_trs": {
  2463. "__type__": "TypedArray",
  2464. "ctor": "Float64Array",
  2465. "array": [
  2466. -649.344,
  2467. -304.284,
  2468. 0,
  2469. 0,
  2470. 0,
  2471. 0,
  2472. 1,
  2473. 1,
  2474. 1,
  2475. 1
  2476. ]
  2477. },
  2478. "_eulerAngles": {
  2479. "__type__": "cc.Vec3",
  2480. "x": 0,
  2481. "y": 0,
  2482. "z": 0
  2483. },
  2484. "_skewX": 0,
  2485. "_skewY": 0,
  2486. "_is3DNode": false,
  2487. "_groupIndex": 0,
  2488. "groupIndex": 0,
  2489. "_id": ""
  2490. },
  2491. {
  2492. "__type__": "cc.Sprite",
  2493. "_name": "",
  2494. "_objFlags": 0,
  2495. "node": {
  2496. "__id__": 69
  2497. },
  2498. "_enabled": true,
  2499. "_materials": [
  2500. {
  2501. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2502. }
  2503. ],
  2504. "_srcBlendFactor": 770,
  2505. "_dstBlendFactor": 771,
  2506. "_spriteFrame": {
  2507. "__uuid__": "7d51e0e8-56fd-41c7-a0e5-d393425c13c4"
  2508. },
  2509. "_type": 0,
  2510. "_sizeMode": 1,
  2511. "_fillType": 0,
  2512. "_fillCenter": {
  2513. "__type__": "cc.Vec2",
  2514. "x": 0,
  2515. "y": 0
  2516. },
  2517. "_fillStart": 0,
  2518. "_fillRange": 0,
  2519. "_isTrimmedMode": true,
  2520. "_atlas": null,
  2521. "_id": ""
  2522. },
  2523. {
  2524. "__type__": "cc.PrefabInfo",
  2525. "root": {
  2526. "__id__": 1
  2527. },
  2528. "asset": {
  2529. "__id__": 0
  2530. },
  2531. "fileId": "07Wa8KISFG44xX+4YFwh2I",
  2532. "sync": false
  2533. },
  2534. {
  2535. "__type__": "cc.Node",
  2536. "_name": "power",
  2537. "_objFlags": 0,
  2538. "_parent": {
  2539. "__id__": 1
  2540. },
  2541. "_children": [],
  2542. "_active": true,
  2543. "_components": [
  2544. {
  2545. "__id__": 73
  2546. },
  2547. {
  2548. "__id__": 74
  2549. }
  2550. ],
  2551. "_prefab": {
  2552. "__id__": 75
  2553. },
  2554. "_opacity": 255,
  2555. "_color": {
  2556. "__type__": "cc.Color",
  2557. "r": 255,
  2558. "g": 198,
  2559. "b": 0,
  2560. "a": 255
  2561. },
  2562. "_contentSize": {
  2563. "__type__": "cc.Size",
  2564. "width": 215.08,
  2565. "height": 91.9
  2566. },
  2567. "_anchorPoint": {
  2568. "__type__": "cc.Vec2",
  2569. "x": 0.5,
  2570. "y": 0.5
  2571. },
  2572. "_trs": {
  2573. "__type__": "TypedArray",
  2574. "ctor": "Float64Array",
  2575. "array": [
  2576. -583.822,
  2577. -208.92,
  2578. 0,
  2579. 0,
  2580. 0,
  2581. 0,
  2582. 1,
  2583. 1,
  2584. 1,
  2585. 1
  2586. ]
  2587. },
  2588. "_eulerAngles": {
  2589. "__type__": "cc.Vec3",
  2590. "x": 0,
  2591. "y": 0,
  2592. "z": 0
  2593. },
  2594. "_skewX": 0,
  2595. "_skewY": 0,
  2596. "_is3DNode": false,
  2597. "_groupIndex": 0,
  2598. "groupIndex": 0,
  2599. "_id": ""
  2600. },
  2601. {
  2602. "__type__": "cc.Label",
  2603. "_name": "",
  2604. "_objFlags": 0,
  2605. "node": {
  2606. "__id__": 72
  2607. },
  2608. "_enabled": true,
  2609. "_materials": [
  2610. {
  2611. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2612. }
  2613. ],
  2614. "_srcBlendFactor": 770,
  2615. "_dstBlendFactor": 771,
  2616. "_string": "1000000",
  2617. "_N$string": "1000000",
  2618. "_fontSize": 48,
  2619. "_lineHeight": 50,
  2620. "_enableWrapText": false,
  2621. "_N$file": {
  2622. "__uuid__": "1ea1269b-2899-4901-832f-a2881c911116"
  2623. },
  2624. "_isSystemFontUsed": false,
  2625. "_spacingX": 0,
  2626. "_batchAsBitmap": false,
  2627. "_styleFlags": 0,
  2628. "_underlineHeight": 0,
  2629. "_N$horizontalAlign": 1,
  2630. "_N$verticalAlign": 1,
  2631. "_N$fontFamily": "Arial",
  2632. "_N$overflow": 2,
  2633. "_N$cacheMode": 0,
  2634. "_id": ""
  2635. },
  2636. {
  2637. "__type__": "cc.LabelOutline",
  2638. "_name": "",
  2639. "_objFlags": 0,
  2640. "node": {
  2641. "__id__": 72
  2642. },
  2643. "_enabled": true,
  2644. "_color": {
  2645. "__type__": "cc.Color",
  2646. "r": 38,
  2647. "g": 17,
  2648. "b": 12,
  2649. "a": 255
  2650. },
  2651. "_width": 5,
  2652. "_id": ""
  2653. },
  2654. {
  2655. "__type__": "cc.PrefabInfo",
  2656. "root": {
  2657. "__id__": 1
  2658. },
  2659. "asset": {
  2660. "__id__": 0
  2661. },
  2662. "fileId": "6d4Z1qmTpJ+YINPSreWLju",
  2663. "sync": false
  2664. },
  2665. {
  2666. "__type__": "cc.Node",
  2667. "_name": "power_lb",
  2668. "_objFlags": 0,
  2669. "_parent": {
  2670. "__id__": 1
  2671. },
  2672. "_children": [],
  2673. "_active": true,
  2674. "_components": [
  2675. {
  2676. "__id__": 77
  2677. },
  2678. {
  2679. "__id__": 78
  2680. },
  2681. {
  2682. "__id__": 79
  2683. }
  2684. ],
  2685. "_prefab": {
  2686. "__id__": 80
  2687. },
  2688. "_opacity": 255,
  2689. "_color": {
  2690. "__type__": "cc.Color",
  2691. "r": 255,
  2692. "g": 255,
  2693. "b": 255,
  2694. "a": 255
  2695. },
  2696. "_contentSize": {
  2697. "__type__": "cc.Size",
  2698. "width": 148.26,
  2699. "height": 73
  2700. },
  2701. "_anchorPoint": {
  2702. "__type__": "cc.Vec2",
  2703. "x": 0.5,
  2704. "y": 0.5
  2705. },
  2706. "_trs": {
  2707. "__type__": "TypedArray",
  2708. "ctor": "Float64Array",
  2709. "array": [
  2710. -791.872,
  2711. -208.92,
  2712. 0,
  2713. 0,
  2714. 0,
  2715. 0,
  2716. 1,
  2717. 1,
  2718. 1,
  2719. 1
  2720. ]
  2721. },
  2722. "_eulerAngles": {
  2723. "__type__": "cc.Vec3",
  2724. "x": 0,
  2725. "y": 0,
  2726. "z": 0
  2727. },
  2728. "_skewX": 0,
  2729. "_skewY": 0,
  2730. "_is3DNode": false,
  2731. "_groupIndex": 0,
  2732. "groupIndex": 0,
  2733. "_id": ""
  2734. },
  2735. {
  2736. "__type__": "cc.Label",
  2737. "_name": "",
  2738. "_objFlags": 0,
  2739. "node": {
  2740. "__id__": 76
  2741. },
  2742. "_enabled": true,
  2743. "_materials": [
  2744. {
  2745. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2746. }
  2747. ],
  2748. "_srcBlendFactor": 770,
  2749. "_dstBlendFactor": 771,
  2750. "_string": "Power:",
  2751. "_N$string": "Power:",
  2752. "_fontSize": 48,
  2753. "_lineHeight": 50,
  2754. "_enableWrapText": true,
  2755. "_N$file": {
  2756. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2757. },
  2758. "_isSystemFontUsed": false,
  2759. "_spacingX": 0,
  2760. "_batchAsBitmap": false,
  2761. "_styleFlags": 0,
  2762. "_underlineHeight": 0,
  2763. "_N$horizontalAlign": 1,
  2764. "_N$verticalAlign": 1,
  2765. "_N$fontFamily": "Arial",
  2766. "_N$overflow": 0,
  2767. "_N$cacheMode": 0,
  2768. "_id": ""
  2769. },
  2770. {
  2771. "__type__": "cc.LabelOutline",
  2772. "_name": "",
  2773. "_objFlags": 0,
  2774. "node": {
  2775. "__id__": 76
  2776. },
  2777. "_enabled": true,
  2778. "_color": {
  2779. "__type__": "cc.Color",
  2780. "r": 38,
  2781. "g": 17,
  2782. "b": 12,
  2783. "a": 255
  2784. },
  2785. "_width": 5,
  2786. "_id": ""
  2787. },
  2788. {
  2789. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  2790. "_name": "",
  2791. "_objFlags": 0,
  2792. "node": {
  2793. "__id__": 76
  2794. },
  2795. "_enabled": true,
  2796. "_englishCase": 1,
  2797. "i18n_string": "t22",
  2798. "i18n_params": [
  2799. ":"
  2800. ],
  2801. "_addColon": true,
  2802. "_id": ""
  2803. },
  2804. {
  2805. "__type__": "cc.PrefabInfo",
  2806. "root": {
  2807. "__id__": 1
  2808. },
  2809. "asset": {
  2810. "__id__": 0
  2811. },
  2812. "fileId": "56P7o0DAROOYczIAAZ405j",
  2813. "sync": false
  2814. },
  2815. {
  2816. "__type__": "cc.Node",
  2817. "_name": "hp_lb",
  2818. "_objFlags": 0,
  2819. "_parent": {
  2820. "__id__": 1
  2821. },
  2822. "_children": [],
  2823. "_active": true,
  2824. "_components": [
  2825. {
  2826. "__id__": 82
  2827. },
  2828. {
  2829. "__id__": 83
  2830. }
  2831. ],
  2832. "_prefab": {
  2833. "__id__": 84
  2834. },
  2835. "_opacity": 255,
  2836. "_color": {
  2837. "__type__": "cc.Color",
  2838. "r": 255,
  2839. "g": 255,
  2840. "b": 255,
  2841. "a": 255
  2842. },
  2843. "_contentSize": {
  2844. "__type__": "cc.Size",
  2845. "width": 160,
  2846. "height": 50
  2847. },
  2848. "_anchorPoint": {
  2849. "__type__": "cc.Vec2",
  2850. "x": 0.5,
  2851. "y": 0.5
  2852. },
  2853. "_trs": {
  2854. "__type__": "TypedArray",
  2855. "ctor": "Float64Array",
  2856. "array": [
  2857. -538.932,
  2858. -304.624,
  2859. 0,
  2860. 0,
  2861. 0,
  2862. 0,
  2863. 1,
  2864. 1,
  2865. 1,
  2866. 1
  2867. ]
  2868. },
  2869. "_eulerAngles": {
  2870. "__type__": "cc.Vec3",
  2871. "x": 0,
  2872. "y": 0,
  2873. "z": 0
  2874. },
  2875. "_skewX": 0,
  2876. "_skewY": 0,
  2877. "_is3DNode": false,
  2878. "_groupIndex": 0,
  2879. "groupIndex": 0,
  2880. "_id": ""
  2881. },
  2882. {
  2883. "__type__": "cc.Label",
  2884. "_name": "",
  2885. "_objFlags": 0,
  2886. "node": {
  2887. "__id__": 81
  2888. },
  2889. "_enabled": true,
  2890. "_materials": [
  2891. {
  2892. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2893. }
  2894. ],
  2895. "_srcBlendFactor": 770,
  2896. "_dstBlendFactor": 771,
  2897. "_string": "100000",
  2898. "_N$string": "100000",
  2899. "_fontSize": 36,
  2900. "_lineHeight": 40,
  2901. "_enableWrapText": false,
  2902. "_N$file": {
  2903. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  2904. },
  2905. "_isSystemFontUsed": false,
  2906. "_spacingX": 0,
  2907. "_batchAsBitmap": false,
  2908. "_styleFlags": 0,
  2909. "_underlineHeight": 0,
  2910. "_N$horizontalAlign": 1,
  2911. "_N$verticalAlign": 1,
  2912. "_N$fontFamily": "Arial",
  2913. "_N$overflow": 2,
  2914. "_N$cacheMode": 0,
  2915. "_id": ""
  2916. },
  2917. {
  2918. "__type__": "cc.LabelOutline",
  2919. "_name": "",
  2920. "_objFlags": 0,
  2921. "node": {
  2922. "__id__": 81
  2923. },
  2924. "_enabled": true,
  2925. "_color": {
  2926. "__type__": "cc.Color",
  2927. "r": 38,
  2928. "g": 17,
  2929. "b": 12,
  2930. "a": 255
  2931. },
  2932. "_width": 5,
  2933. "_id": ""
  2934. },
  2935. {
  2936. "__type__": "cc.PrefabInfo",
  2937. "root": {
  2938. "__id__": 1
  2939. },
  2940. "asset": {
  2941. "__id__": 0
  2942. },
  2943. "fileId": "6eIP3QnulLaLHJZ/eZGStb",
  2944. "sync": false
  2945. },
  2946. {
  2947. "__type__": "cc.Node",
  2948. "_name": "role",
  2949. "_objFlags": 0,
  2950. "_parent": {
  2951. "__id__": 1
  2952. },
  2953. "_children": [
  2954. {
  2955. "__id__": 86
  2956. },
  2957. {
  2958. "__id__": 89
  2959. },
  2960. {
  2961. "__id__": 94
  2962. },
  2963. {
  2964. "__id__": 97
  2965. },
  2966. {
  2967. "__id__": 102
  2968. },
  2969. {
  2970. "__id__": 105
  2971. },
  2972. {
  2973. "__id__": 108
  2974. },
  2975. {
  2976. "__id__": 111
  2977. },
  2978. {
  2979. "__id__": 114
  2980. },
  2981. {
  2982. "__id__": 118
  2983. },
  2984. {
  2985. "__id__": 125
  2986. }
  2987. ],
  2988. "_active": true,
  2989. "_components": [],
  2990. "_prefab": {
  2991. "__id__": 143
  2992. },
  2993. "_opacity": 255,
  2994. "_color": {
  2995. "__type__": "cc.Color",
  2996. "r": 255,
  2997. "g": 255,
  2998. "b": 255,
  2999. "a": 255
  3000. },
  3001. "_contentSize": {
  3002. "__type__": "cc.Size",
  3003. "width": 0,
  3004. "height": 0
  3005. },
  3006. "_anchorPoint": {
  3007. "__type__": "cc.Vec2",
  3008. "x": 0.5,
  3009. "y": 0.5
  3010. },
  3011. "_trs": {
  3012. "__type__": "TypedArray",
  3013. "ctor": "Float64Array",
  3014. "array": [
  3015. 0,
  3016. 0,
  3017. 0,
  3018. 0,
  3019. 0,
  3020. 0,
  3021. 1,
  3022. 1,
  3023. 1,
  3024. 1
  3025. ]
  3026. },
  3027. "_eulerAngles": {
  3028. "__type__": "cc.Vec3",
  3029. "x": 0,
  3030. "y": 0,
  3031. "z": 0
  3032. },
  3033. "_skewX": 0,
  3034. "_skewY": 0,
  3035. "_is3DNode": false,
  3036. "_groupIndex": 0,
  3037. "groupIndex": 0,
  3038. "_id": ""
  3039. },
  3040. {
  3041. "__type__": "cc.Node",
  3042. "_name": "streamer",
  3043. "_objFlags": 0,
  3044. "_parent": {
  3045. "__id__": 85
  3046. },
  3047. "_children": [],
  3048. "_active": true,
  3049. "_components": [
  3050. {
  3051. "__id__": 87
  3052. }
  3053. ],
  3054. "_prefab": {
  3055. "__id__": 88
  3056. },
  3057. "_opacity": 255,
  3058. "_color": {
  3059. "__type__": "cc.Color",
  3060. "r": 255,
  3061. "g": 255,
  3062. "b": 255,
  3063. "a": 255
  3064. },
  3065. "_contentSize": {
  3066. "__type__": "cc.Size",
  3067. "width": 602,
  3068. "height": 126
  3069. },
  3070. "_anchorPoint": {
  3071. "__type__": "cc.Vec2",
  3072. "x": 0.5,
  3073. "y": 0.5
  3074. },
  3075. "_trs": {
  3076. "__type__": "TypedArray",
  3077. "ctor": "Float64Array",
  3078. "array": [
  3079. 0,
  3080. 392.513,
  3081. 0,
  3082. 0,
  3083. 0,
  3084. 0,
  3085. 1,
  3086. 1.2,
  3087. 1.2,
  3088. 1.2
  3089. ]
  3090. },
  3091. "_eulerAngles": {
  3092. "__type__": "cc.Vec3",
  3093. "x": 0,
  3094. "y": 0,
  3095. "z": 0
  3096. },
  3097. "_skewX": 0,
  3098. "_skewY": 0,
  3099. "_is3DNode": false,
  3100. "_groupIndex": 0,
  3101. "groupIndex": 0,
  3102. "_id": ""
  3103. },
  3104. {
  3105. "__type__": "cc.Sprite",
  3106. "_name": "",
  3107. "_objFlags": 0,
  3108. "node": {
  3109. "__id__": 86
  3110. },
  3111. "_enabled": true,
  3112. "_materials": [
  3113. {
  3114. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3115. }
  3116. ],
  3117. "_srcBlendFactor": 770,
  3118. "_dstBlendFactor": 771,
  3119. "_spriteFrame": null,
  3120. "_type": 0,
  3121. "_sizeMode": 2,
  3122. "_fillType": 0,
  3123. "_fillCenter": {
  3124. "__type__": "cc.Vec2",
  3125. "x": 0,
  3126. "y": 0
  3127. },
  3128. "_fillStart": 0,
  3129. "_fillRange": 0,
  3130. "_isTrimmedMode": false,
  3131. "_atlas": null,
  3132. "_id": ""
  3133. },
  3134. {
  3135. "__type__": "cc.PrefabInfo",
  3136. "root": {
  3137. "__id__": 1
  3138. },
  3139. "asset": {
  3140. "__id__": 0
  3141. },
  3142. "fileId": "6dxJ8fV2pEsYKyhRL3reLg",
  3143. "sync": false
  3144. },
  3145. {
  3146. "__type__": "cc.Node",
  3147. "_name": "roleName",
  3148. "_objFlags": 0,
  3149. "_parent": {
  3150. "__id__": 85
  3151. },
  3152. "_children": [],
  3153. "_active": true,
  3154. "_components": [
  3155. {
  3156. "__id__": 90
  3157. },
  3158. {
  3159. "__id__": 91
  3160. },
  3161. {
  3162. "__id__": 92
  3163. }
  3164. ],
  3165. "_prefab": {
  3166. "__id__": 93
  3167. },
  3168. "_opacity": 255,
  3169. "_color": {
  3170. "__type__": "cc.Color",
  3171. "r": 255,
  3172. "g": 255,
  3173. "b": 255,
  3174. "a": 255
  3175. },
  3176. "_contentSize": {
  3177. "__type__": "cc.Size",
  3178. "width": 203.55,
  3179. "height": 62.7
  3180. },
  3181. "_anchorPoint": {
  3182. "__type__": "cc.Vec2",
  3183. "x": 0.5,
  3184. "y": 0.5
  3185. },
  3186. "_trs": {
  3187. "__type__": "TypedArray",
  3188. "ctor": "Float64Array",
  3189. "array": [
  3190. 0,
  3191. 435.812,
  3192. 0,
  3193. 0,
  3194. 0,
  3195. 0,
  3196. 1,
  3197. 1,
  3198. 1,
  3199. 1
  3200. ]
  3201. },
  3202. "_eulerAngles": {
  3203. "__type__": "cc.Vec3",
  3204. "x": 0,
  3205. "y": 0,
  3206. "z": 0
  3207. },
  3208. "_skewX": 0,
  3209. "_skewY": 0,
  3210. "_is3DNode": false,
  3211. "_groupIndex": 0,
  3212. "groupIndex": 0,
  3213. "_id": ""
  3214. },
  3215. {
  3216. "__type__": "cc.Label",
  3217. "_name": "",
  3218. "_objFlags": 0,
  3219. "node": {
  3220. "__id__": 89
  3221. },
  3222. "_enabled": true,
  3223. "_materials": [
  3224. {
  3225. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3226. }
  3227. ],
  3228. "_srcBlendFactor": 770,
  3229. "_dstBlendFactor": 771,
  3230. "_string": "Role Name",
  3231. "_N$string": "Role Name",
  3232. "_fontSize": 42,
  3233. "_lineHeight": 45,
  3234. "_enableWrapText": true,
  3235. "_N$file": {
  3236. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3237. },
  3238. "_isSystemFontUsed": false,
  3239. "_spacingX": 0,
  3240. "_batchAsBitmap": false,
  3241. "_styleFlags": 0,
  3242. "_underlineHeight": 0,
  3243. "_N$horizontalAlign": 1,
  3244. "_N$verticalAlign": 1,
  3245. "_N$fontFamily": "Arial",
  3246. "_N$overflow": 0,
  3247. "_N$cacheMode": 0,
  3248. "_id": ""
  3249. },
  3250. {
  3251. "__type__": "cc.LabelOutline",
  3252. "_name": "",
  3253. "_objFlags": 0,
  3254. "node": {
  3255. "__id__": 89
  3256. },
  3257. "_enabled": true,
  3258. "_color": {
  3259. "__type__": "cc.Color",
  3260. "r": 38,
  3261. "g": 17,
  3262. "b": 12,
  3263. "a": 255
  3264. },
  3265. "_width": 3,
  3266. "_id": ""
  3267. },
  3268. {
  3269. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3270. "_name": "",
  3271. "_objFlags": 0,
  3272. "node": {
  3273. "__id__": 89
  3274. },
  3275. "_enabled": true,
  3276. "_englishCase": 0,
  3277. "i18n_string": "",
  3278. "i18n_params": [],
  3279. "_addColon": false,
  3280. "_id": ""
  3281. },
  3282. {
  3283. "__type__": "cc.PrefabInfo",
  3284. "root": {
  3285. "__id__": 1
  3286. },
  3287. "asset": {
  3288. "__id__": 0
  3289. },
  3290. "fileId": "5c3zmAq7RI/5fGAcB+cwQ5",
  3291. "sync": false
  3292. },
  3293. {
  3294. "__type__": "cc.Node",
  3295. "_name": "role_type",
  3296. "_objFlags": 0,
  3297. "_parent": {
  3298. "__id__": 85
  3299. },
  3300. "_children": [],
  3301. "_active": true,
  3302. "_components": [
  3303. {
  3304. "__id__": 95
  3305. }
  3306. ],
  3307. "_prefab": {
  3308. "__id__": 96
  3309. },
  3310. "_opacity": 255,
  3311. "_color": {
  3312. "__type__": "cc.Color",
  3313. "r": 255,
  3314. "g": 255,
  3315. "b": 255,
  3316. "a": 255
  3317. },
  3318. "_contentSize": {
  3319. "__type__": "cc.Size",
  3320. "width": 53,
  3321. "height": 60
  3322. },
  3323. "_anchorPoint": {
  3324. "__type__": "cc.Vec2",
  3325. "x": 0.5,
  3326. "y": 0.5
  3327. },
  3328. "_trs": {
  3329. "__type__": "TypedArray",
  3330. "ctor": "Float64Array",
  3331. "array": [
  3332. -58.982,
  3333. 385.772,
  3334. 0,
  3335. 0,
  3336. 0,
  3337. 0,
  3338. 1,
  3339. 1,
  3340. 1,
  3341. 1
  3342. ]
  3343. },
  3344. "_eulerAngles": {
  3345. "__type__": "cc.Vec3",
  3346. "x": 0,
  3347. "y": 0,
  3348. "z": 0
  3349. },
  3350. "_skewX": 0,
  3351. "_skewY": 0,
  3352. "_is3DNode": false,
  3353. "_groupIndex": 0,
  3354. "groupIndex": 0,
  3355. "_id": ""
  3356. },
  3357. {
  3358. "__type__": "cc.Sprite",
  3359. "_name": "",
  3360. "_objFlags": 0,
  3361. "node": {
  3362. "__id__": 94
  3363. },
  3364. "_enabled": true,
  3365. "_materials": [
  3366. {
  3367. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3368. }
  3369. ],
  3370. "_srcBlendFactor": 770,
  3371. "_dstBlendFactor": 771,
  3372. "_spriteFrame": {
  3373. "__uuid__": "0dd72a40-7ec0-4918-bb7a-bccf39790137"
  3374. },
  3375. "_type": 0,
  3376. "_sizeMode": 1,
  3377. "_fillType": 0,
  3378. "_fillCenter": {
  3379. "__type__": "cc.Vec2",
  3380. "x": 0,
  3381. "y": 0
  3382. },
  3383. "_fillStart": 0,
  3384. "_fillRange": 0,
  3385. "_isTrimmedMode": true,
  3386. "_atlas": null,
  3387. "_id": ""
  3388. },
  3389. {
  3390. "__type__": "cc.PrefabInfo",
  3391. "root": {
  3392. "__id__": 1
  3393. },
  3394. "asset": {
  3395. "__id__": 0
  3396. },
  3397. "fileId": "bfhA3I3glAc6c6Itdxl7/E",
  3398. "sync": false
  3399. },
  3400. {
  3401. "__type__": "cc.Node",
  3402. "_name": "prof_name",
  3403. "_objFlags": 0,
  3404. "_parent": {
  3405. "__id__": 85
  3406. },
  3407. "_children": [],
  3408. "_active": true,
  3409. "_components": [
  3410. {
  3411. "__id__": 98
  3412. },
  3413. {
  3414. "__id__": 99
  3415. },
  3416. {
  3417. "__id__": 100
  3418. }
  3419. ],
  3420. "_prefab": {
  3421. "__id__": 101
  3422. },
  3423. "_opacity": 255,
  3424. "_color": {
  3425. "__type__": "cc.Color",
  3426. "r": 255,
  3427. "g": 255,
  3428. "b": 255,
  3429. "a": 255
  3430. },
  3431. "_contentSize": {
  3432. "__type__": "cc.Size",
  3433. "width": 135.17,
  3434. "height": 38
  3435. },
  3436. "_anchorPoint": {
  3437. "__type__": "cc.Vec2",
  3438. "x": 0.5,
  3439. "y": 0.5
  3440. },
  3441. "_trs": {
  3442. "__type__": "TypedArray",
  3443. "ctor": "Float64Array",
  3444. "array": [
  3445. 37.363,
  3446. 386.474,
  3447. 0,
  3448. 0,
  3449. 0,
  3450. 0,
  3451. 1,
  3452. 1,
  3453. 1,
  3454. 1
  3455. ]
  3456. },
  3457. "_eulerAngles": {
  3458. "__type__": "cc.Vec3",
  3459. "x": 0,
  3460. "y": 0,
  3461. "z": 0
  3462. },
  3463. "_skewX": 0,
  3464. "_skewY": 0,
  3465. "_is3DNode": false,
  3466. "_groupIndex": 0,
  3467. "groupIndex": 0,
  3468. "_id": ""
  3469. },
  3470. {
  3471. "__type__": "cc.Label",
  3472. "_name": "",
  3473. "_objFlags": 0,
  3474. "node": {
  3475. "__id__": 97
  3476. },
  3477. "_enabled": true,
  3478. "_materials": [
  3479. {
  3480. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3481. }
  3482. ],
  3483. "_srcBlendFactor": 770,
  3484. "_dstBlendFactor": 771,
  3485. "_string": "warrior",
  3486. "_N$string": "warrior",
  3487. "_fontSize": 30,
  3488. "_lineHeight": 32,
  3489. "_enableWrapText": false,
  3490. "_N$file": {
  3491. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  3492. },
  3493. "_isSystemFontUsed": false,
  3494. "_spacingX": 0,
  3495. "_batchAsBitmap": false,
  3496. "_styleFlags": 0,
  3497. "_underlineHeight": 0,
  3498. "_N$horizontalAlign": 1,
  3499. "_N$verticalAlign": 1,
  3500. "_N$fontFamily": "Arial",
  3501. "_N$overflow": 2,
  3502. "_N$cacheMode": 0,
  3503. "_id": ""
  3504. },
  3505. {
  3506. "__type__": "cc.LabelOutline",
  3507. "_name": "",
  3508. "_objFlags": 0,
  3509. "node": {
  3510. "__id__": 97
  3511. },
  3512. "_enabled": true,
  3513. "_color": {
  3514. "__type__": "cc.Color",
  3515. "r": 38,
  3516. "g": 17,
  3517. "b": 12,
  3518. "a": 255
  3519. },
  3520. "_width": 3,
  3521. "_id": ""
  3522. },
  3523. {
  3524. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  3525. "_name": "",
  3526. "_objFlags": 0,
  3527. "node": {
  3528. "__id__": 97
  3529. },
  3530. "_enabled": true,
  3531. "_englishCase": 0,
  3532. "i18n_string": "",
  3533. "i18n_params": [],
  3534. "_addColon": false,
  3535. "_id": ""
  3536. },
  3537. {
  3538. "__type__": "cc.PrefabInfo",
  3539. "root": {
  3540. "__id__": 1
  3541. },
  3542. "asset": {
  3543. "__id__": 0
  3544. },
  3545. "fileId": "9ec9myGaBNuqxX/fowpX+m",
  3546. "sync": false
  3547. },
  3548. {
  3549. "__type__": "cc.Node",
  3550. "_name": "role_base",
  3551. "_objFlags": 0,
  3552. "_parent": {
  3553. "__id__": 85
  3554. },
  3555. "_children": [],
  3556. "_active": true,
  3557. "_components": [
  3558. {
  3559. "__id__": 103
  3560. }
  3561. ],
  3562. "_prefab": {
  3563. "__id__": 104
  3564. },
  3565. "_opacity": 255,
  3566. "_color": {
  3567. "__type__": "cc.Color",
  3568. "r": 255,
  3569. "g": 255,
  3570. "b": 255,
  3571. "a": 255
  3572. },
  3573. "_contentSize": {
  3574. "__type__": "cc.Size",
  3575. "width": 252,
  3576. "height": 137
  3577. },
  3578. "_anchorPoint": {
  3579. "__type__": "cc.Vec2",
  3580. "x": 0.5,
  3581. "y": 0.5
  3582. },
  3583. "_trs": {
  3584. "__type__": "TypedArray",
  3585. "ctor": "Float64Array",
  3586. "array": [
  3587. 0,
  3588. -155.97,
  3589. 0,
  3590. 0,
  3591. 0,
  3592. 0,
  3593. 1,
  3594. 1.5,
  3595. 1.5,
  3596. 1.5
  3597. ]
  3598. },
  3599. "_eulerAngles": {
  3600. "__type__": "cc.Vec3",
  3601. "x": 0,
  3602. "y": 0,
  3603. "z": 0
  3604. },
  3605. "_skewX": 0,
  3606. "_skewY": 0,
  3607. "_is3DNode": false,
  3608. "_groupIndex": 0,
  3609. "groupIndex": 0,
  3610. "_id": ""
  3611. },
  3612. {
  3613. "__type__": "cc.Sprite",
  3614. "_name": "",
  3615. "_objFlags": 0,
  3616. "node": {
  3617. "__id__": 102
  3618. },
  3619. "_enabled": true,
  3620. "_materials": [
  3621. {
  3622. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3623. }
  3624. ],
  3625. "_srcBlendFactor": 770,
  3626. "_dstBlendFactor": 771,
  3627. "_spriteFrame": {
  3628. "__uuid__": "6e9b8f88-87c3-4d92-872c-4f3ba2e864b4"
  3629. },
  3630. "_type": 0,
  3631. "_sizeMode": 1,
  3632. "_fillType": 0,
  3633. "_fillCenter": {
  3634. "__type__": "cc.Vec2",
  3635. "x": 0,
  3636. "y": 0
  3637. },
  3638. "_fillStart": 0,
  3639. "_fillRange": 0,
  3640. "_isTrimmedMode": true,
  3641. "_atlas": null,
  3642. "_id": ""
  3643. },
  3644. {
  3645. "__type__": "cc.PrefabInfo",
  3646. "root": {
  3647. "__id__": 1
  3648. },
  3649. "asset": {
  3650. "__id__": 0
  3651. },
  3652. "fileId": "5dVlHIy+9E17ZcQGFE7J4J",
  3653. "sync": false
  3654. },
  3655. {
  3656. "__type__": "cc.Node",
  3657. "_name": "base_light",
  3658. "_objFlags": 0,
  3659. "_parent": {
  3660. "__id__": 85
  3661. },
  3662. "_children": [],
  3663. "_active": true,
  3664. "_components": [
  3665. {
  3666. "__id__": 106
  3667. }
  3668. ],
  3669. "_prefab": {
  3670. "__id__": 107
  3671. },
  3672. "_opacity": 255,
  3673. "_color": {
  3674. "__type__": "cc.Color",
  3675. "r": 255,
  3676. "g": 255,
  3677. "b": 255,
  3678. "a": 255
  3679. },
  3680. "_contentSize": {
  3681. "__type__": "cc.Size",
  3682. "width": 289,
  3683. "height": 175
  3684. },
  3685. "_anchorPoint": {
  3686. "__type__": "cc.Vec2",
  3687. "x": 0.5,
  3688. "y": 0.5
  3689. },
  3690. "_trs": {
  3691. "__type__": "TypedArray",
  3692. "ctor": "Float64Array",
  3693. "array": [
  3694. 0,
  3695. -155.97,
  3696. 0,
  3697. 0,
  3698. 0,
  3699. 0,
  3700. 1,
  3701. 1.5,
  3702. 1.5,
  3703. 1.5
  3704. ]
  3705. },
  3706. "_eulerAngles": {
  3707. "__type__": "cc.Vec3",
  3708. "x": 0,
  3709. "y": 0,
  3710. "z": 0
  3711. },
  3712. "_skewX": 0,
  3713. "_skewY": 0,
  3714. "_is3DNode": false,
  3715. "_groupIndex": 0,
  3716. "groupIndex": 0,
  3717. "_id": ""
  3718. },
  3719. {
  3720. "__type__": "cc.Sprite",
  3721. "_name": "",
  3722. "_objFlags": 0,
  3723. "node": {
  3724. "__id__": 105
  3725. },
  3726. "_enabled": true,
  3727. "_materials": [
  3728. {
  3729. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3730. }
  3731. ],
  3732. "_srcBlendFactor": 770,
  3733. "_dstBlendFactor": 771,
  3734. "_spriteFrame": {
  3735. "__uuid__": "04ec2b8b-b059-4435-b4c3-1b5106d35588"
  3736. },
  3737. "_type": 0,
  3738. "_sizeMode": 1,
  3739. "_fillType": 0,
  3740. "_fillCenter": {
  3741. "__type__": "cc.Vec2",
  3742. "x": 0,
  3743. "y": 0
  3744. },
  3745. "_fillStart": 0,
  3746. "_fillRange": 0,
  3747. "_isTrimmedMode": true,
  3748. "_atlas": null,
  3749. "_id": ""
  3750. },
  3751. {
  3752. "__type__": "cc.PrefabInfo",
  3753. "root": {
  3754. "__id__": 1
  3755. },
  3756. "asset": {
  3757. "__id__": 0
  3758. },
  3759. "fileId": "cdAB7BwCtN6Iem+awjExZ/",
  3760. "sync": false
  3761. },
  3762. {
  3763. "__type__": "cc.Node",
  3764. "_name": "spine",
  3765. "_objFlags": 0,
  3766. "_parent": {
  3767. "__id__": 85
  3768. },
  3769. "_children": [],
  3770. "_active": true,
  3771. "_components": [
  3772. {
  3773. "__id__": 109
  3774. }
  3775. ],
  3776. "_prefab": {
  3777. "__id__": 110
  3778. },
  3779. "_opacity": 255,
  3780. "_color": {
  3781. "__type__": "cc.Color",
  3782. "r": 255,
  3783. "g": 255,
  3784. "b": 255,
  3785. "a": 255
  3786. },
  3787. "_contentSize": {
  3788. "__type__": "cc.Size",
  3789. "width": 436.8602294921875,
  3790. "height": 515.7766723632812
  3791. },
  3792. "_anchorPoint": {
  3793. "__type__": "cc.Vec2",
  3794. "x": 0.5,
  3795. "y": 0.5
  3796. },
  3797. "_trs": {
  3798. "__type__": "TypedArray",
  3799. "ctor": "Float64Array",
  3800. "array": [
  3801. 0,
  3802. -151.888,
  3803. 0,
  3804. 0,
  3805. 0,
  3806. 0,
  3807. 1,
  3808. 0.9,
  3809. 0.9,
  3810. 0.6
  3811. ]
  3812. },
  3813. "_eulerAngles": {
  3814. "__type__": "cc.Vec3",
  3815. "x": 0,
  3816. "y": 0,
  3817. "z": 0
  3818. },
  3819. "_skewX": 0,
  3820. "_skewY": 0,
  3821. "_is3DNode": false,
  3822. "_groupIndex": 0,
  3823. "groupIndex": 0,
  3824. "_id": ""
  3825. },
  3826. {
  3827. "__type__": "sp.Skeleton",
  3828. "_name": "",
  3829. "_objFlags": 0,
  3830. "node": {
  3831. "__id__": 108
  3832. },
  3833. "_enabled": true,
  3834. "_materials": [
  3835. {
  3836. "__uuid__": "7afd064b-113f-480e-b793-8817d19f63c3"
  3837. }
  3838. ],
  3839. "paused": false,
  3840. "defaultSkin": "default",
  3841. "defaultAnimation": "",
  3842. "_preCacheMode": 0,
  3843. "_cacheMode": 1,
  3844. "loop": false,
  3845. "premultipliedAlpha": true,
  3846. "timeScale": 1,
  3847. "_accTime": 0,
  3848. "_playCount": 0,
  3849. "_frameCache": null,
  3850. "_curFrame": null,
  3851. "_skeletonCache": null,
  3852. "_animationName": "idle",
  3853. "_animationQueue": [],
  3854. "_headAniInfo": null,
  3855. "_playTimes": 0,
  3856. "_isAniComplete": true,
  3857. "_N$skeletonData": null,
  3858. "_N$_defaultCacheMode": 0,
  3859. "_N$debugSlots": false,
  3860. "_N$debugBones": false,
  3861. "_N$debugMesh": false,
  3862. "_N$useTint": false,
  3863. "_N$enableBatch": false,
  3864. "_id": ""
  3865. },
  3866. {
  3867. "__type__": "cc.PrefabInfo",
  3868. "root": {
  3869. "__id__": 1
  3870. },
  3871. "asset": {
  3872. "__id__": 0
  3873. },
  3874. "fileId": "32VOMwswpFVqsdZkd3fysj",
  3875. "sync": false
  3876. },
  3877. {
  3878. "__type__": "cc.Node",
  3879. "_name": "base_level",
  3880. "_objFlags": 0,
  3881. "_parent": {
  3882. "__id__": 85
  3883. },
  3884. "_children": [],
  3885. "_active": true,
  3886. "_components": [
  3887. {
  3888. "__id__": 112
  3889. }
  3890. ],
  3891. "_prefab": {
  3892. "__id__": 113
  3893. },
  3894. "_opacity": 255,
  3895. "_color": {
  3896. "__type__": "cc.Color",
  3897. "r": 255,
  3898. "g": 255,
  3899. "b": 255,
  3900. "a": 255
  3901. },
  3902. "_contentSize": {
  3903. "__type__": "cc.Size",
  3904. "width": 202,
  3905. "height": 51
  3906. },
  3907. "_anchorPoint": {
  3908. "__type__": "cc.Vec2",
  3909. "x": 0.5,
  3910. "y": 0.5
  3911. },
  3912. "_trs": {
  3913. "__type__": "TypedArray",
  3914. "ctor": "Float64Array",
  3915. "array": [
  3916. 0,
  3917. -218.131,
  3918. 0,
  3919. 0,
  3920. 0,
  3921. 0,
  3922. 1,
  3923. 1.6,
  3924. 1.6,
  3925. 1
  3926. ]
  3927. },
  3928. "_eulerAngles": {
  3929. "__type__": "cc.Vec3",
  3930. "x": 0,
  3931. "y": 0,
  3932. "z": 0
  3933. },
  3934. "_skewX": 0,
  3935. "_skewY": 0,
  3936. "_is3DNode": false,
  3937. "_groupIndex": 0,
  3938. "groupIndex": 0,
  3939. "_id": ""
  3940. },
  3941. {
  3942. "__type__": "cc.Sprite",
  3943. "_name": "",
  3944. "_objFlags": 0,
  3945. "node": {
  3946. "__id__": 111
  3947. },
  3948. "_enabled": true,
  3949. "_materials": [
  3950. {
  3951. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3952. }
  3953. ],
  3954. "_srcBlendFactor": 770,
  3955. "_dstBlendFactor": 771,
  3956. "_spriteFrame": {
  3957. "__uuid__": "e2502aea-01d7-48fd-9ac0-2563d4cf9f3b"
  3958. },
  3959. "_type": 0,
  3960. "_sizeMode": 1,
  3961. "_fillType": 0,
  3962. "_fillCenter": {
  3963. "__type__": "cc.Vec2",
  3964. "x": 0,
  3965. "y": 0
  3966. },
  3967. "_fillStart": 0,
  3968. "_fillRange": 0,
  3969. "_isTrimmedMode": true,
  3970. "_atlas": null,
  3971. "_id": ""
  3972. },
  3973. {
  3974. "__type__": "cc.PrefabInfo",
  3975. "root": {
  3976. "__id__": 1
  3977. },
  3978. "asset": {
  3979. "__id__": 0
  3980. },
  3981. "fileId": "58ztO8UJNJtLCDDvDZGH7z",
  3982. "sync": false
  3983. },
  3984. {
  3985. "__type__": "cc.Node",
  3986. "_name": "lv",
  3987. "_objFlags": 0,
  3988. "_parent": {
  3989. "__id__": 85
  3990. },
  3991. "_children": [],
  3992. "_active": true,
  3993. "_components": [
  3994. {
  3995. "__id__": 115
  3996. },
  3997. {
  3998. "__id__": 116
  3999. }
  4000. ],
  4001. "_prefab": {
  4002. "__id__": 117
  4003. },
  4004. "_opacity": 255,
  4005. "_color": {
  4006. "__type__": "cc.Color",
  4007. "r": 255,
  4008. "g": 255,
  4009. "b": 255,
  4010. "a": 255
  4011. },
  4012. "_contentSize": {
  4013. "__type__": "cc.Size",
  4014. "width": 228.87,
  4015. "height": 69
  4016. },
  4017. "_anchorPoint": {
  4018. "__type__": "cc.Vec2",
  4019. "x": 0.5,
  4020. "y": 0.5
  4021. },
  4022. "_trs": {
  4023. "__type__": "TypedArray",
  4024. "ctor": "Float64Array",
  4025. "array": [
  4026. 22.068,
  4027. -216.776,
  4028. 0,
  4029. 0,
  4030. 0,
  4031. 0,
  4032. 1,
  4033. 1,
  4034. 1,
  4035. 1
  4036. ]
  4037. },
  4038. "_eulerAngles": {
  4039. "__type__": "cc.Vec3",
  4040. "x": 0,
  4041. "y": 0,
  4042. "z": 0
  4043. },
  4044. "_skewX": 0,
  4045. "_skewY": 0,
  4046. "_is3DNode": false,
  4047. "_groupIndex": 0,
  4048. "groupIndex": 0,
  4049. "_id": ""
  4050. },
  4051. {
  4052. "__type__": "cc.Label",
  4053. "_name": "",
  4054. "_objFlags": 0,
  4055. "node": {
  4056. "__id__": 114
  4057. },
  4058. "_enabled": true,
  4059. "_materials": [
  4060. {
  4061. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4062. }
  4063. ],
  4064. "_srcBlendFactor": 770,
  4065. "_dstBlendFactor": 771,
  4066. "_string": "lv.999/999",
  4067. "_N$string": "lv.999/999",
  4068. "_fontSize": 40,
  4069. "_lineHeight": 50,
  4070. "_enableWrapText": false,
  4071. "_N$file": {
  4072. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4073. },
  4074. "_isSystemFontUsed": false,
  4075. "_spacingX": 0,
  4076. "_batchAsBitmap": false,
  4077. "_styleFlags": 0,
  4078. "_underlineHeight": 0,
  4079. "_N$horizontalAlign": 1,
  4080. "_N$verticalAlign": 1,
  4081. "_N$fontFamily": "Arial",
  4082. "_N$overflow": 0,
  4083. "_N$cacheMode": 0,
  4084. "_id": ""
  4085. },
  4086. {
  4087. "__type__": "cc.LabelOutline",
  4088. "_name": "",
  4089. "_objFlags": 0,
  4090. "node": {
  4091. "__id__": 114
  4092. },
  4093. "_enabled": true,
  4094. "_color": {
  4095. "__type__": "cc.Color",
  4096. "r": 38,
  4097. "g": 17,
  4098. "b": 12,
  4099. "a": 255
  4100. },
  4101. "_width": 3,
  4102. "_id": ""
  4103. },
  4104. {
  4105. "__type__": "cc.PrefabInfo",
  4106. "root": {
  4107. "__id__": 1
  4108. },
  4109. "asset": {
  4110. "__id__": 0
  4111. },
  4112. "fileId": "8fKePJq81CZ5CEVt8YtRvL",
  4113. "sync": false
  4114. },
  4115. {
  4116. "__type__": "cc.Node",
  4117. "_name": "cost",
  4118. "_objFlags": 0,
  4119. "_parent": {
  4120. "__id__": 85
  4121. },
  4122. "_children": [
  4123. {
  4124. "__id__": 119
  4125. }
  4126. ],
  4127. "_active": true,
  4128. "_components": [
  4129. {
  4130. "__id__": 123
  4131. }
  4132. ],
  4133. "_prefab": {
  4134. "__id__": 124
  4135. },
  4136. "_opacity": 255,
  4137. "_color": {
  4138. "__type__": "cc.Color",
  4139. "r": 255,
  4140. "g": 255,
  4141. "b": 255,
  4142. "a": 255
  4143. },
  4144. "_contentSize": {
  4145. "__type__": "cc.Size",
  4146. "width": 65,
  4147. "height": 74
  4148. },
  4149. "_anchorPoint": {
  4150. "__type__": "cc.Vec2",
  4151. "x": 0.5,
  4152. "y": 0.5
  4153. },
  4154. "_trs": {
  4155. "__type__": "TypedArray",
  4156. "ctor": "Float64Array",
  4157. "array": [
  4158. -139.785,
  4159. -217.147,
  4160. 0,
  4161. 0,
  4162. 0,
  4163. 0,
  4164. 1,
  4165. 1.2,
  4166. 1.2,
  4167. 1
  4168. ]
  4169. },
  4170. "_eulerAngles": {
  4171. "__type__": "cc.Vec3",
  4172. "x": 0,
  4173. "y": 0,
  4174. "z": 0
  4175. },
  4176. "_skewX": 0,
  4177. "_skewY": 0,
  4178. "_is3DNode": false,
  4179. "_groupIndex": 0,
  4180. "groupIndex": 0,
  4181. "_id": ""
  4182. },
  4183. {
  4184. "__type__": "cc.Node",
  4185. "_name": "lb",
  4186. "_objFlags": 0,
  4187. "_parent": {
  4188. "__id__": 118
  4189. },
  4190. "_children": [],
  4191. "_active": true,
  4192. "_components": [
  4193. {
  4194. "__id__": 120
  4195. },
  4196. {
  4197. "__id__": 121
  4198. }
  4199. ],
  4200. "_prefab": {
  4201. "__id__": 122
  4202. },
  4203. "_opacity": 255,
  4204. "_color": {
  4205. "__type__": "cc.Color",
  4206. "r": 255,
  4207. "g": 255,
  4208. "b": 255,
  4209. "a": 255
  4210. },
  4211. "_contentSize": {
  4212. "__type__": "cc.Size",
  4213. "width": 40.84,
  4214. "height": 60.4
  4215. },
  4216. "_anchorPoint": {
  4217. "__type__": "cc.Vec2",
  4218. "x": 0.5,
  4219. "y": 0.5
  4220. },
  4221. "_trs": {
  4222. "__type__": "TypedArray",
  4223. "ctor": "Float64Array",
  4224. "array": [
  4225. 0,
  4226. 0,
  4227. 0,
  4228. 0,
  4229. 0,
  4230. 0,
  4231. 1,
  4232. 0.83333,
  4233. 0.83333,
  4234. 0.83333
  4235. ]
  4236. },
  4237. "_eulerAngles": {
  4238. "__type__": "cc.Vec3",
  4239. "x": 0,
  4240. "y": 0,
  4241. "z": 0
  4242. },
  4243. "_skewX": 0,
  4244. "_skewY": 0,
  4245. "_is3DNode": false,
  4246. "_groupIndex": 0,
  4247. "groupIndex": 0,
  4248. "_id": ""
  4249. },
  4250. {
  4251. "__type__": "cc.Label",
  4252. "_name": "",
  4253. "_objFlags": 0,
  4254. "node": {
  4255. "__id__": 119
  4256. },
  4257. "_enabled": true,
  4258. "_materials": [
  4259. {
  4260. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4261. }
  4262. ],
  4263. "_srcBlendFactor": 770,
  4264. "_dstBlendFactor": 771,
  4265. "_string": "3",
  4266. "_N$string": "3",
  4267. "_fontSize": 48,
  4268. "_lineHeight": 40,
  4269. "_enableWrapText": true,
  4270. "_N$file": {
  4271. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  4272. },
  4273. "_isSystemFontUsed": false,
  4274. "_spacingX": 0,
  4275. "_batchAsBitmap": false,
  4276. "_styleFlags": 0,
  4277. "_underlineHeight": 0,
  4278. "_N$horizontalAlign": 1,
  4279. "_N$verticalAlign": 1,
  4280. "_N$fontFamily": "Arial",
  4281. "_N$overflow": 0,
  4282. "_N$cacheMode": 0,
  4283. "_id": ""
  4284. },
  4285. {
  4286. "__type__": "cc.LabelOutline",
  4287. "_name": "",
  4288. "_objFlags": 0,
  4289. "node": {
  4290. "__id__": 119
  4291. },
  4292. "_enabled": true,
  4293. "_color": {
  4294. "__type__": "cc.Color",
  4295. "r": 38,
  4296. "g": 17,
  4297. "b": 12,
  4298. "a": 255
  4299. },
  4300. "_width": 5,
  4301. "_id": ""
  4302. },
  4303. {
  4304. "__type__": "cc.PrefabInfo",
  4305. "root": {
  4306. "__id__": 119
  4307. },
  4308. "asset": {
  4309. "__uuid__": "b55c4816-1512-4abe-a683-117b4601b39a"
  4310. },
  4311. "fileId": "4a0sI2tIJAl6BchcOKGLg0",
  4312. "sync": false
  4313. },
  4314. {
  4315. "__type__": "cc.Sprite",
  4316. "_name": "",
  4317. "_objFlags": 0,
  4318. "node": {
  4319. "__id__": 118
  4320. },
  4321. "_enabled": true,
  4322. "_materials": [
  4323. {
  4324. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4325. }
  4326. ],
  4327. "_srcBlendFactor": 770,
  4328. "_dstBlendFactor": 771,
  4329. "_spriteFrame": {
  4330. "__uuid__": "c203fd19-2f75-4c2f-9d64-e479205bb771"
  4331. },
  4332. "_type": 0,
  4333. "_sizeMode": 1,
  4334. "_fillType": 0,
  4335. "_fillCenter": {
  4336. "__type__": "cc.Vec2",
  4337. "x": 0,
  4338. "y": 0
  4339. },
  4340. "_fillStart": 0,
  4341. "_fillRange": 0,
  4342. "_isTrimmedMode": true,
  4343. "_atlas": null,
  4344. "_id": ""
  4345. },
  4346. {
  4347. "__type__": "cc.PrefabInfo",
  4348. "root": {
  4349. "__id__": 1
  4350. },
  4351. "asset": {
  4352. "__id__": 0
  4353. },
  4354. "fileId": "f8ty2YLIhIFZNpP6MATq8c",
  4355. "sync": false
  4356. },
  4357. {
  4358. "__type__": "cc.Node",
  4359. "_name": "stars",
  4360. "_objFlags": 0,
  4361. "_parent": {
  4362. "__id__": 85
  4363. },
  4364. "_children": [
  4365. {
  4366. "__id__": 126
  4367. },
  4368. {
  4369. "__id__": 129
  4370. },
  4371. {
  4372. "__id__": 132
  4373. },
  4374. {
  4375. "__id__": 135
  4376. },
  4377. {
  4378. "__id__": 138
  4379. }
  4380. ],
  4381. "_active": true,
  4382. "_components": [
  4383. {
  4384. "__id__": 141
  4385. }
  4386. ],
  4387. "_prefab": {
  4388. "__id__": 142
  4389. },
  4390. "_opacity": 255,
  4391. "_color": {
  4392. "__type__": "cc.Color",
  4393. "r": 255,
  4394. "g": 255,
  4395. "b": 255,
  4396. "a": 255
  4397. },
  4398. "_contentSize": {
  4399. "__type__": "cc.Size",
  4400. "width": 195,
  4401. "height": 100
  4402. },
  4403. "_anchorPoint": {
  4404. "__type__": "cc.Vec2",
  4405. "x": 0.5,
  4406. "y": 0.5
  4407. },
  4408. "_trs": {
  4409. "__type__": "TypedArray",
  4410. "ctor": "Float64Array",
  4411. "array": [
  4412. 15.136,
  4413. -252.973,
  4414. 0,
  4415. 0,
  4416. 0,
  4417. 0,
  4418. 1,
  4419. 1,
  4420. 1,
  4421. 1
  4422. ]
  4423. },
  4424. "_eulerAngles": {
  4425. "__type__": "cc.Vec3",
  4426. "x": 0,
  4427. "y": 0,
  4428. "z": 0
  4429. },
  4430. "_skewX": 0,
  4431. "_skewY": 0,
  4432. "_is3DNode": false,
  4433. "_groupIndex": 0,
  4434. "groupIndex": 0,
  4435. "_id": ""
  4436. },
  4437. {
  4438. "__type__": "cc.Node",
  4439. "_name": "star",
  4440. "_objFlags": 0,
  4441. "_parent": {
  4442. "__id__": 125
  4443. },
  4444. "_children": [],
  4445. "_active": true,
  4446. "_components": [
  4447. {
  4448. "__id__": 127
  4449. }
  4450. ],
  4451. "_prefab": {
  4452. "__id__": 128
  4453. },
  4454. "_opacity": 255,
  4455. "_color": {
  4456. "__type__": "cc.Color",
  4457. "r": 255,
  4458. "g": 255,
  4459. "b": 255,
  4460. "a": 255
  4461. },
  4462. "_contentSize": {
  4463. "__type__": "cc.Size",
  4464. "width": 51,
  4465. "height": 50
  4466. },
  4467. "_anchorPoint": {
  4468. "__type__": "cc.Vec2",
  4469. "x": 0.5,
  4470. "y": 0.5
  4471. },
  4472. "_trs": {
  4473. "__type__": "TypedArray",
  4474. "ctor": "Float64Array",
  4475. "array": [
  4476. -72,
  4477. 0,
  4478. 0,
  4479. 0,
  4480. 0,
  4481. 0,
  4482. 1,
  4483. 1,
  4484. 1,
  4485. 1
  4486. ]
  4487. },
  4488. "_eulerAngles": {
  4489. "__type__": "cc.Vec3",
  4490. "x": 0,
  4491. "y": 0,
  4492. "z": 0
  4493. },
  4494. "_skewX": 0,
  4495. "_skewY": 0,
  4496. "_is3DNode": false,
  4497. "_groupIndex": 0,
  4498. "groupIndex": 0,
  4499. "_id": ""
  4500. },
  4501. {
  4502. "__type__": "cc.Sprite",
  4503. "_name": "",
  4504. "_objFlags": 0,
  4505. "node": {
  4506. "__id__": 126
  4507. },
  4508. "_enabled": true,
  4509. "_materials": [
  4510. {
  4511. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4512. }
  4513. ],
  4514. "_srcBlendFactor": 770,
  4515. "_dstBlendFactor": 771,
  4516. "_spriteFrame": {
  4517. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  4518. },
  4519. "_type": 0,
  4520. "_sizeMode": 1,
  4521. "_fillType": 0,
  4522. "_fillCenter": {
  4523. "__type__": "cc.Vec2",
  4524. "x": 0,
  4525. "y": 0
  4526. },
  4527. "_fillStart": 0,
  4528. "_fillRange": 0,
  4529. "_isTrimmedMode": true,
  4530. "_atlas": null,
  4531. "_id": ""
  4532. },
  4533. {
  4534. "__type__": "cc.PrefabInfo",
  4535. "root": {
  4536. "__id__": 1
  4537. },
  4538. "asset": {
  4539. "__id__": 0
  4540. },
  4541. "fileId": "832TK4tvJP+IN6F50D/85F",
  4542. "sync": false
  4543. },
  4544. {
  4545. "__type__": "cc.Node",
  4546. "_name": "star",
  4547. "_objFlags": 0,
  4548. "_parent": {
  4549. "__id__": 125
  4550. },
  4551. "_children": [],
  4552. "_active": true,
  4553. "_components": [
  4554. {
  4555. "__id__": 130
  4556. }
  4557. ],
  4558. "_prefab": {
  4559. "__id__": 131
  4560. },
  4561. "_opacity": 255,
  4562. "_color": {
  4563. "__type__": "cc.Color",
  4564. "r": 255,
  4565. "g": 255,
  4566. "b": 255,
  4567. "a": 255
  4568. },
  4569. "_contentSize": {
  4570. "__type__": "cc.Size",
  4571. "width": 51,
  4572. "height": 50
  4573. },
  4574. "_anchorPoint": {
  4575. "__type__": "cc.Vec2",
  4576. "x": 0.5,
  4577. "y": 0.5
  4578. },
  4579. "_trs": {
  4580. "__type__": "TypedArray",
  4581. "ctor": "Float64Array",
  4582. "array": [
  4583. -36,
  4584. 0,
  4585. 0,
  4586. 0,
  4587. 0,
  4588. 0,
  4589. 1,
  4590. 1,
  4591. 1,
  4592. 1
  4593. ]
  4594. },
  4595. "_eulerAngles": {
  4596. "__type__": "cc.Vec3",
  4597. "x": 0,
  4598. "y": 0,
  4599. "z": 0
  4600. },
  4601. "_skewX": 0,
  4602. "_skewY": 0,
  4603. "_is3DNode": false,
  4604. "_groupIndex": 0,
  4605. "groupIndex": 0,
  4606. "_id": ""
  4607. },
  4608. {
  4609. "__type__": "cc.Sprite",
  4610. "_name": "",
  4611. "_objFlags": 0,
  4612. "node": {
  4613. "__id__": 129
  4614. },
  4615. "_enabled": true,
  4616. "_materials": [
  4617. {
  4618. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4619. }
  4620. ],
  4621. "_srcBlendFactor": 770,
  4622. "_dstBlendFactor": 771,
  4623. "_spriteFrame": {
  4624. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  4625. },
  4626. "_type": 0,
  4627. "_sizeMode": 1,
  4628. "_fillType": 0,
  4629. "_fillCenter": {
  4630. "__type__": "cc.Vec2",
  4631. "x": 0,
  4632. "y": 0
  4633. },
  4634. "_fillStart": 0,
  4635. "_fillRange": 0,
  4636. "_isTrimmedMode": true,
  4637. "_atlas": null,
  4638. "_id": ""
  4639. },
  4640. {
  4641. "__type__": "cc.PrefabInfo",
  4642. "root": {
  4643. "__id__": 1
  4644. },
  4645. "asset": {
  4646. "__id__": 0
  4647. },
  4648. "fileId": "71lVqYHWJAzZKXWS4CbStD",
  4649. "sync": false
  4650. },
  4651. {
  4652. "__type__": "cc.Node",
  4653. "_name": "star",
  4654. "_objFlags": 0,
  4655. "_parent": {
  4656. "__id__": 125
  4657. },
  4658. "_children": [],
  4659. "_active": true,
  4660. "_components": [
  4661. {
  4662. "__id__": 133
  4663. }
  4664. ],
  4665. "_prefab": {
  4666. "__id__": 134
  4667. },
  4668. "_opacity": 255,
  4669. "_color": {
  4670. "__type__": "cc.Color",
  4671. "r": 255,
  4672. "g": 255,
  4673. "b": 255,
  4674. "a": 255
  4675. },
  4676. "_contentSize": {
  4677. "__type__": "cc.Size",
  4678. "width": 51,
  4679. "height": 50
  4680. },
  4681. "_anchorPoint": {
  4682. "__type__": "cc.Vec2",
  4683. "x": 0.5,
  4684. "y": 0.5
  4685. },
  4686. "_trs": {
  4687. "__type__": "TypedArray",
  4688. "ctor": "Float64Array",
  4689. "array": [
  4690. 0,
  4691. 0,
  4692. 0,
  4693. 0,
  4694. 0,
  4695. 0,
  4696. 1,
  4697. 1,
  4698. 1,
  4699. 1
  4700. ]
  4701. },
  4702. "_eulerAngles": {
  4703. "__type__": "cc.Vec3",
  4704. "x": 0,
  4705. "y": 0,
  4706. "z": 0
  4707. },
  4708. "_skewX": 0,
  4709. "_skewY": 0,
  4710. "_is3DNode": false,
  4711. "_groupIndex": 0,
  4712. "groupIndex": 0,
  4713. "_id": ""
  4714. },
  4715. {
  4716. "__type__": "cc.Sprite",
  4717. "_name": "",
  4718. "_objFlags": 0,
  4719. "node": {
  4720. "__id__": 132
  4721. },
  4722. "_enabled": true,
  4723. "_materials": [
  4724. {
  4725. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4726. }
  4727. ],
  4728. "_srcBlendFactor": 770,
  4729. "_dstBlendFactor": 771,
  4730. "_spriteFrame": {
  4731. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  4732. },
  4733. "_type": 0,
  4734. "_sizeMode": 1,
  4735. "_fillType": 0,
  4736. "_fillCenter": {
  4737. "__type__": "cc.Vec2",
  4738. "x": 0,
  4739. "y": 0
  4740. },
  4741. "_fillStart": 0,
  4742. "_fillRange": 0,
  4743. "_isTrimmedMode": true,
  4744. "_atlas": null,
  4745. "_id": ""
  4746. },
  4747. {
  4748. "__type__": "cc.PrefabInfo",
  4749. "root": {
  4750. "__id__": 1
  4751. },
  4752. "asset": {
  4753. "__id__": 0
  4754. },
  4755. "fileId": "a1Vl8WAlVEX4DJXDdSKFQx",
  4756. "sync": false
  4757. },
  4758. {
  4759. "__type__": "cc.Node",
  4760. "_name": "star",
  4761. "_objFlags": 0,
  4762. "_parent": {
  4763. "__id__": 125
  4764. },
  4765. "_children": [],
  4766. "_active": true,
  4767. "_components": [
  4768. {
  4769. "__id__": 136
  4770. }
  4771. ],
  4772. "_prefab": {
  4773. "__id__": 137
  4774. },
  4775. "_opacity": 255,
  4776. "_color": {
  4777. "__type__": "cc.Color",
  4778. "r": 255,
  4779. "g": 255,
  4780. "b": 255,
  4781. "a": 255
  4782. },
  4783. "_contentSize": {
  4784. "__type__": "cc.Size",
  4785. "width": 51,
  4786. "height": 50
  4787. },
  4788. "_anchorPoint": {
  4789. "__type__": "cc.Vec2",
  4790. "x": 0.5,
  4791. "y": 0.5
  4792. },
  4793. "_trs": {
  4794. "__type__": "TypedArray",
  4795. "ctor": "Float64Array",
  4796. "array": [
  4797. 36,
  4798. 0,
  4799. 0,
  4800. 0,
  4801. 0,
  4802. 0,
  4803. 1,
  4804. 1,
  4805. 1,
  4806. 1
  4807. ]
  4808. },
  4809. "_eulerAngles": {
  4810. "__type__": "cc.Vec3",
  4811. "x": 0,
  4812. "y": 0,
  4813. "z": 0
  4814. },
  4815. "_skewX": 0,
  4816. "_skewY": 0,
  4817. "_is3DNode": false,
  4818. "_groupIndex": 0,
  4819. "groupIndex": 0,
  4820. "_id": ""
  4821. },
  4822. {
  4823. "__type__": "cc.Sprite",
  4824. "_name": "",
  4825. "_objFlags": 0,
  4826. "node": {
  4827. "__id__": 135
  4828. },
  4829. "_enabled": true,
  4830. "_materials": [
  4831. {
  4832. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4833. }
  4834. ],
  4835. "_srcBlendFactor": 770,
  4836. "_dstBlendFactor": 771,
  4837. "_spriteFrame": {
  4838. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  4839. },
  4840. "_type": 0,
  4841. "_sizeMode": 1,
  4842. "_fillType": 0,
  4843. "_fillCenter": {
  4844. "__type__": "cc.Vec2",
  4845. "x": 0,
  4846. "y": 0
  4847. },
  4848. "_fillStart": 0,
  4849. "_fillRange": 0,
  4850. "_isTrimmedMode": true,
  4851. "_atlas": null,
  4852. "_id": ""
  4853. },
  4854. {
  4855. "__type__": "cc.PrefabInfo",
  4856. "root": {
  4857. "__id__": 1
  4858. },
  4859. "asset": {
  4860. "__id__": 0
  4861. },
  4862. "fileId": "8dWFUZ6QVBtq1PaEKgWDxV",
  4863. "sync": false
  4864. },
  4865. {
  4866. "__type__": "cc.Node",
  4867. "_name": "star",
  4868. "_objFlags": 0,
  4869. "_parent": {
  4870. "__id__": 125
  4871. },
  4872. "_children": [],
  4873. "_active": true,
  4874. "_components": [
  4875. {
  4876. "__id__": 139
  4877. }
  4878. ],
  4879. "_prefab": {
  4880. "__id__": 140
  4881. },
  4882. "_opacity": 255,
  4883. "_color": {
  4884. "__type__": "cc.Color",
  4885. "r": 255,
  4886. "g": 255,
  4887. "b": 255,
  4888. "a": 255
  4889. },
  4890. "_contentSize": {
  4891. "__type__": "cc.Size",
  4892. "width": 51,
  4893. "height": 50
  4894. },
  4895. "_anchorPoint": {
  4896. "__type__": "cc.Vec2",
  4897. "x": 0.5,
  4898. "y": 0.5
  4899. },
  4900. "_trs": {
  4901. "__type__": "TypedArray",
  4902. "ctor": "Float64Array",
  4903. "array": [
  4904. 72,
  4905. 0,
  4906. 0,
  4907. 0,
  4908. 0,
  4909. 0,
  4910. 1,
  4911. 1,
  4912. 1,
  4913. 1
  4914. ]
  4915. },
  4916. "_eulerAngles": {
  4917. "__type__": "cc.Vec3",
  4918. "x": 0,
  4919. "y": 0,
  4920. "z": 0
  4921. },
  4922. "_skewX": 0,
  4923. "_skewY": 0,
  4924. "_is3DNode": false,
  4925. "_groupIndex": 0,
  4926. "groupIndex": 0,
  4927. "_id": ""
  4928. },
  4929. {
  4930. "__type__": "cc.Sprite",
  4931. "_name": "",
  4932. "_objFlags": 0,
  4933. "node": {
  4934. "__id__": 138
  4935. },
  4936. "_enabled": true,
  4937. "_materials": [
  4938. {
  4939. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4940. }
  4941. ],
  4942. "_srcBlendFactor": 770,
  4943. "_dstBlendFactor": 771,
  4944. "_spriteFrame": {
  4945. "__uuid__": "88e472a0-0849-4af9-a65b-7891928a24dd"
  4946. },
  4947. "_type": 0,
  4948. "_sizeMode": 1,
  4949. "_fillType": 0,
  4950. "_fillCenter": {
  4951. "__type__": "cc.Vec2",
  4952. "x": 0,
  4953. "y": 0
  4954. },
  4955. "_fillStart": 0,
  4956. "_fillRange": 0,
  4957. "_isTrimmedMode": true,
  4958. "_atlas": null,
  4959. "_id": ""
  4960. },
  4961. {
  4962. "__type__": "cc.PrefabInfo",
  4963. "root": {
  4964. "__id__": 1
  4965. },
  4966. "asset": {
  4967. "__id__": 0
  4968. },
  4969. "fileId": "c5ho4eIiJOfJQEyV/m/UMy",
  4970. "sync": false
  4971. },
  4972. {
  4973. "__type__": "cc.Layout",
  4974. "_name": "",
  4975. "_objFlags": 0,
  4976. "node": {
  4977. "__id__": 125
  4978. },
  4979. "_enabled": true,
  4980. "_layoutSize": {
  4981. "__type__": "cc.Size",
  4982. "width": 195,
  4983. "height": 100
  4984. },
  4985. "_resize": 1,
  4986. "_N$layoutType": 1,
  4987. "_N$cellSize": {
  4988. "__type__": "cc.Size",
  4989. "width": 40,
  4990. "height": 40
  4991. },
  4992. "_N$startAxis": 0,
  4993. "_N$paddingLeft": 0,
  4994. "_N$paddingRight": 0,
  4995. "_N$paddingTop": 0,
  4996. "_N$paddingBottom": 0,
  4997. "_N$spacingX": -15,
  4998. "_N$spacingY": 0,
  4999. "_N$verticalDirection": 1,
  5000. "_N$horizontalDirection": 0,
  5001. "_N$affectedByScale": false,
  5002. "_id": ""
  5003. },
  5004. {
  5005. "__type__": "cc.PrefabInfo",
  5006. "root": {
  5007. "__id__": 1
  5008. },
  5009. "asset": {
  5010. "__id__": 0
  5011. },
  5012. "fileId": "bd6kXeUy9FYJZZ6VaC/n40",
  5013. "sync": false
  5014. },
  5015. {
  5016. "__type__": "cc.PrefabInfo",
  5017. "root": {
  5018. "__id__": 1
  5019. },
  5020. "asset": {
  5021. "__id__": 0
  5022. },
  5023. "fileId": "1d4U4GmO5KKrSb+nEWDKa0",
  5024. "sync": false
  5025. },
  5026. {
  5027. "__type__": "cc.Node",
  5028. "_name": "arrow_left",
  5029. "_objFlags": 0,
  5030. "_parent": {
  5031. "__id__": 1
  5032. },
  5033. "_children": [],
  5034. "_active": true,
  5035. "_components": [
  5036. {
  5037. "__id__": 145
  5038. },
  5039. {
  5040. "__id__": 146
  5041. },
  5042. {
  5043. "__id__": 147
  5044. }
  5045. ],
  5046. "_prefab": {
  5047. "__id__": 149
  5048. },
  5049. "_opacity": 255,
  5050. "_color": {
  5051. "__type__": "cc.Color",
  5052. "r": 255,
  5053. "g": 255,
  5054. "b": 255,
  5055. "a": 255
  5056. },
  5057. "_contentSize": {
  5058. "__type__": "cc.Size",
  5059. "width": 56,
  5060. "height": 94
  5061. },
  5062. "_anchorPoint": {
  5063. "__type__": "cc.Vec2",
  5064. "x": 0.5,
  5065. "y": 0.5
  5066. },
  5067. "_trs": {
  5068. "__type__": "TypedArray",
  5069. "ctor": "Float64Array",
  5070. "array": [
  5071. -330.883,
  5072. 49.366,
  5073. 0,
  5074. 0,
  5075. 0,
  5076. 0,
  5077. 1,
  5078. 1,
  5079. 1,
  5080. 0
  5081. ]
  5082. },
  5083. "_eulerAngles": {
  5084. "__type__": "cc.Vec3",
  5085. "x": 0,
  5086. "y": 0,
  5087. "z": 0
  5088. },
  5089. "_skewX": 0,
  5090. "_skewY": 0,
  5091. "_is3DNode": false,
  5092. "_groupIndex": 0,
  5093. "groupIndex": 0,
  5094. "_id": ""
  5095. },
  5096. {
  5097. "__type__": "cc.Sprite",
  5098. "_name": "",
  5099. "_objFlags": 0,
  5100. "node": {
  5101. "__id__": 144
  5102. },
  5103. "_enabled": true,
  5104. "_materials": [
  5105. {
  5106. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5107. }
  5108. ],
  5109. "_srcBlendFactor": 770,
  5110. "_dstBlendFactor": 771,
  5111. "_spriteFrame": {
  5112. "__uuid__": "da47bbb2-3600-470d-b447-e33a3bb005ff"
  5113. },
  5114. "_type": 0,
  5115. "_sizeMode": 1,
  5116. "_fillType": 0,
  5117. "_fillCenter": {
  5118. "__type__": "cc.Vec2",
  5119. "x": 0,
  5120. "y": 0
  5121. },
  5122. "_fillStart": 0,
  5123. "_fillRange": 0,
  5124. "_isTrimmedMode": true,
  5125. "_atlas": null,
  5126. "_id": ""
  5127. },
  5128. {
  5129. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5130. "_name": "",
  5131. "_objFlags": 0,
  5132. "node": {
  5133. "__id__": 144
  5134. },
  5135. "_enabled": true,
  5136. "openContinuous": true,
  5137. "continuousTime": 0.2,
  5138. "multiTouch": false,
  5139. "_id": ""
  5140. },
  5141. {
  5142. "__type__": "61994AafntNFIbmt1zoyLq+",
  5143. "_name": "",
  5144. "_objFlags": 0,
  5145. "node": {
  5146. "__id__": 144
  5147. },
  5148. "_enabled": true,
  5149. "_normalMaterial": null,
  5150. "_grayMaterial": null,
  5151. "duration": 0.1,
  5152. "zoomScale": 1.2,
  5153. "clickEvents": [
  5154. {
  5155. "__id__": 148
  5156. }
  5157. ],
  5158. "_N$interactable": true,
  5159. "_N$enableAutoGrayEffect": false,
  5160. "_N$transition": 3,
  5161. "transition": 3,
  5162. "_N$normalColor": {
  5163. "__type__": "cc.Color",
  5164. "r": 255,
  5165. "g": 255,
  5166. "b": 255,
  5167. "a": 255
  5168. },
  5169. "_N$pressedColor": {
  5170. "__type__": "cc.Color",
  5171. "r": 211,
  5172. "g": 211,
  5173. "b": 211,
  5174. "a": 255
  5175. },
  5176. "pressedColor": {
  5177. "__type__": "cc.Color",
  5178. "r": 211,
  5179. "g": 211,
  5180. "b": 211,
  5181. "a": 255
  5182. },
  5183. "_N$hoverColor": {
  5184. "__type__": "cc.Color",
  5185. "r": 255,
  5186. "g": 255,
  5187. "b": 255,
  5188. "a": 255
  5189. },
  5190. "hoverColor": {
  5191. "__type__": "cc.Color",
  5192. "r": 255,
  5193. "g": 255,
  5194. "b": 255,
  5195. "a": 255
  5196. },
  5197. "_N$disabledColor": {
  5198. "__type__": "cc.Color",
  5199. "r": 124,
  5200. "g": 124,
  5201. "b": 124,
  5202. "a": 255
  5203. },
  5204. "_N$normalSprite": null,
  5205. "_N$pressedSprite": null,
  5206. "pressedSprite": null,
  5207. "_N$hoverSprite": null,
  5208. "hoverSprite": null,
  5209. "_N$disabledSprite": null,
  5210. "_N$target": null,
  5211. "_id": ""
  5212. },
  5213. {
  5214. "__type__": "cc.ClickEvent",
  5215. "target": {
  5216. "__id__": 1
  5217. },
  5218. "component": "",
  5219. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  5220. "handler": "onLeftClick",
  5221. "customEventData": ""
  5222. },
  5223. {
  5224. "__type__": "cc.PrefabInfo",
  5225. "root": {
  5226. "__id__": 1
  5227. },
  5228. "asset": {
  5229. "__id__": 0
  5230. },
  5231. "fileId": "e0Rv1QJVdMy4KQijhsMHXj",
  5232. "sync": false
  5233. },
  5234. {
  5235. "__type__": "cc.Node",
  5236. "_name": "arrow_right",
  5237. "_objFlags": 0,
  5238. "_parent": {
  5239. "__id__": 1
  5240. },
  5241. "_children": [],
  5242. "_active": true,
  5243. "_components": [
  5244. {
  5245. "__id__": 151
  5246. },
  5247. {
  5248. "__id__": 152
  5249. },
  5250. {
  5251. "__id__": 153
  5252. }
  5253. ],
  5254. "_prefab": {
  5255. "__id__": 155
  5256. },
  5257. "_opacity": 255,
  5258. "_color": {
  5259. "__type__": "cc.Color",
  5260. "r": 255,
  5261. "g": 255,
  5262. "b": 255,
  5263. "a": 255
  5264. },
  5265. "_contentSize": {
  5266. "__type__": "cc.Size",
  5267. "width": 56,
  5268. "height": 94
  5269. },
  5270. "_anchorPoint": {
  5271. "__type__": "cc.Vec2",
  5272. "x": 0.5,
  5273. "y": 0.5
  5274. },
  5275. "_trs": {
  5276. "__type__": "TypedArray",
  5277. "ctor": "Float64Array",
  5278. "array": [
  5279. 331.839,
  5280. 47.324,
  5281. 0,
  5282. 0,
  5283. 0,
  5284. 0,
  5285. 1,
  5286. -1,
  5287. 1,
  5288. 0
  5289. ]
  5290. },
  5291. "_eulerAngles": {
  5292. "__type__": "cc.Vec3",
  5293. "x": 0,
  5294. "y": 0,
  5295. "z": 0
  5296. },
  5297. "_skewX": 0,
  5298. "_skewY": 0,
  5299. "_is3DNode": false,
  5300. "_groupIndex": 0,
  5301. "groupIndex": 0,
  5302. "_id": ""
  5303. },
  5304. {
  5305. "__type__": "cc.Sprite",
  5306. "_name": "",
  5307. "_objFlags": 0,
  5308. "node": {
  5309. "__id__": 150
  5310. },
  5311. "_enabled": true,
  5312. "_materials": [
  5313. {
  5314. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5315. }
  5316. ],
  5317. "_srcBlendFactor": 770,
  5318. "_dstBlendFactor": 771,
  5319. "_spriteFrame": {
  5320. "__uuid__": "da47bbb2-3600-470d-b447-e33a3bb005ff"
  5321. },
  5322. "_type": 0,
  5323. "_sizeMode": 1,
  5324. "_fillType": 0,
  5325. "_fillCenter": {
  5326. "__type__": "cc.Vec2",
  5327. "x": 0,
  5328. "y": 0
  5329. },
  5330. "_fillStart": 0,
  5331. "_fillRange": 0,
  5332. "_isTrimmedMode": true,
  5333. "_atlas": null,
  5334. "_id": ""
  5335. },
  5336. {
  5337. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5338. "_name": "",
  5339. "_objFlags": 0,
  5340. "node": {
  5341. "__id__": 150
  5342. },
  5343. "_enabled": true,
  5344. "openContinuous": true,
  5345. "continuousTime": 0.2,
  5346. "multiTouch": false,
  5347. "_id": ""
  5348. },
  5349. {
  5350. "__type__": "61994AafntNFIbmt1zoyLq+",
  5351. "_name": "",
  5352. "_objFlags": 0,
  5353. "node": {
  5354. "__id__": 150
  5355. },
  5356. "_enabled": true,
  5357. "_normalMaterial": null,
  5358. "_grayMaterial": null,
  5359. "duration": 0.1,
  5360. "zoomScale": 1.2,
  5361. "clickEvents": [
  5362. {
  5363. "__id__": 154
  5364. }
  5365. ],
  5366. "_N$interactable": true,
  5367. "_N$enableAutoGrayEffect": false,
  5368. "_N$transition": 3,
  5369. "transition": 3,
  5370. "_N$normalColor": {
  5371. "__type__": "cc.Color",
  5372. "r": 255,
  5373. "g": 255,
  5374. "b": 255,
  5375. "a": 255
  5376. },
  5377. "_N$pressedColor": {
  5378. "__type__": "cc.Color",
  5379. "r": 211,
  5380. "g": 211,
  5381. "b": 211,
  5382. "a": 255
  5383. },
  5384. "pressedColor": {
  5385. "__type__": "cc.Color",
  5386. "r": 211,
  5387. "g": 211,
  5388. "b": 211,
  5389. "a": 255
  5390. },
  5391. "_N$hoverColor": {
  5392. "__type__": "cc.Color",
  5393. "r": 255,
  5394. "g": 255,
  5395. "b": 255,
  5396. "a": 255
  5397. },
  5398. "hoverColor": {
  5399. "__type__": "cc.Color",
  5400. "r": 255,
  5401. "g": 255,
  5402. "b": 255,
  5403. "a": 255
  5404. },
  5405. "_N$disabledColor": {
  5406. "__type__": "cc.Color",
  5407. "r": 124,
  5408. "g": 124,
  5409. "b": 124,
  5410. "a": 255
  5411. },
  5412. "_N$normalSprite": null,
  5413. "_N$pressedSprite": null,
  5414. "pressedSprite": null,
  5415. "_N$hoverSprite": null,
  5416. "hoverSprite": null,
  5417. "_N$disabledSprite": null,
  5418. "_N$target": null,
  5419. "_id": ""
  5420. },
  5421. {
  5422. "__type__": "cc.ClickEvent",
  5423. "target": {
  5424. "__id__": 1
  5425. },
  5426. "component": "",
  5427. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  5428. "handler": "onRightClick",
  5429. "customEventData": ""
  5430. },
  5431. {
  5432. "__type__": "cc.PrefabInfo",
  5433. "root": {
  5434. "__id__": 1
  5435. },
  5436. "asset": {
  5437. "__id__": 0
  5438. },
  5439. "fileId": "16vrrTO4tK77kvMNJ6nn3e",
  5440. "sync": false
  5441. },
  5442. {
  5443. "__type__": "cc.Node",
  5444. "_name": "button_reset",
  5445. "_objFlags": 0,
  5446. "_parent": {
  5447. "__id__": 1
  5448. },
  5449. "_children": [],
  5450. "_active": true,
  5451. "_components": [
  5452. {
  5453. "__id__": 157
  5454. },
  5455. {
  5456. "__id__": 158
  5457. },
  5458. {
  5459. "__id__": 159
  5460. }
  5461. ],
  5462. "_prefab": {
  5463. "__id__": 161
  5464. },
  5465. "_opacity": 255,
  5466. "_color": {
  5467. "__type__": "cc.Color",
  5468. "r": 255,
  5469. "g": 255,
  5470. "b": 255,
  5471. "a": 255
  5472. },
  5473. "_contentSize": {
  5474. "__type__": "cc.Size",
  5475. "width": 90,
  5476. "height": 90
  5477. },
  5478. "_anchorPoint": {
  5479. "__type__": "cc.Vec2",
  5480. "x": 0.5,
  5481. "y": 0.5
  5482. },
  5483. "_trs": {
  5484. "__type__": "TypedArray",
  5485. "ctor": "Float64Array",
  5486. "array": [
  5487. 230.152,
  5488. -218.728,
  5489. 0,
  5490. 0,
  5491. 0,
  5492. 0,
  5493. 1,
  5494. 1,
  5495. 1,
  5496. 1
  5497. ]
  5498. },
  5499. "_eulerAngles": {
  5500. "__type__": "cc.Vec3",
  5501. "x": 0,
  5502. "y": 0,
  5503. "z": 0
  5504. },
  5505. "_skewX": 0,
  5506. "_skewY": 0,
  5507. "_is3DNode": false,
  5508. "_groupIndex": 0,
  5509. "groupIndex": 0,
  5510. "_id": ""
  5511. },
  5512. {
  5513. "__type__": "cc.Sprite",
  5514. "_name": "",
  5515. "_objFlags": 0,
  5516. "node": {
  5517. "__id__": 156
  5518. },
  5519. "_enabled": true,
  5520. "_materials": [
  5521. {
  5522. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5523. }
  5524. ],
  5525. "_srcBlendFactor": 770,
  5526. "_dstBlendFactor": 771,
  5527. "_spriteFrame": {
  5528. "__uuid__": "38cfeedf-4f14-49d6-99e9-fd99d3080557"
  5529. },
  5530. "_type": 0,
  5531. "_sizeMode": 1,
  5532. "_fillType": 0,
  5533. "_fillCenter": {
  5534. "__type__": "cc.Vec2",
  5535. "x": 0,
  5536. "y": 0
  5537. },
  5538. "_fillStart": 0,
  5539. "_fillRange": 0,
  5540. "_isTrimmedMode": true,
  5541. "_atlas": null,
  5542. "_id": ""
  5543. },
  5544. {
  5545. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  5546. "_name": "",
  5547. "_objFlags": 0,
  5548. "node": {
  5549. "__id__": 156
  5550. },
  5551. "_enabled": true,
  5552. "openContinuous": true,
  5553. "continuousTime": 0.2,
  5554. "multiTouch": false,
  5555. "_id": ""
  5556. },
  5557. {
  5558. "__type__": "61994AafntNFIbmt1zoyLq+",
  5559. "_name": "",
  5560. "_objFlags": 0,
  5561. "node": {
  5562. "__id__": 156
  5563. },
  5564. "_enabled": true,
  5565. "_normalMaterial": null,
  5566. "_grayMaterial": null,
  5567. "duration": 0.1,
  5568. "zoomScale": 1.2,
  5569. "clickEvents": [
  5570. {
  5571. "__id__": 160
  5572. }
  5573. ],
  5574. "_N$interactable": true,
  5575. "_N$enableAutoGrayEffect": false,
  5576. "_N$transition": 0,
  5577. "transition": 0,
  5578. "_N$normalColor": {
  5579. "__type__": "cc.Color",
  5580. "r": 255,
  5581. "g": 255,
  5582. "b": 255,
  5583. "a": 255
  5584. },
  5585. "_N$pressedColor": {
  5586. "__type__": "cc.Color",
  5587. "r": 211,
  5588. "g": 211,
  5589. "b": 211,
  5590. "a": 255
  5591. },
  5592. "pressedColor": {
  5593. "__type__": "cc.Color",
  5594. "r": 211,
  5595. "g": 211,
  5596. "b": 211,
  5597. "a": 255
  5598. },
  5599. "_N$hoverColor": {
  5600. "__type__": "cc.Color",
  5601. "r": 255,
  5602. "g": 255,
  5603. "b": 255,
  5604. "a": 255
  5605. },
  5606. "hoverColor": {
  5607. "__type__": "cc.Color",
  5608. "r": 255,
  5609. "g": 255,
  5610. "b": 255,
  5611. "a": 255
  5612. },
  5613. "_N$disabledColor": {
  5614. "__type__": "cc.Color",
  5615. "r": 124,
  5616. "g": 124,
  5617. "b": 124,
  5618. "a": 255
  5619. },
  5620. "_N$normalSprite": null,
  5621. "_N$pressedSprite": null,
  5622. "pressedSprite": null,
  5623. "_N$hoverSprite": null,
  5624. "hoverSprite": null,
  5625. "_N$disabledSprite": null,
  5626. "_N$target": null,
  5627. "_id": ""
  5628. },
  5629. {
  5630. "__type__": "cc.ClickEvent",
  5631. "target": {
  5632. "__id__": 1
  5633. },
  5634. "component": "",
  5635. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  5636. "handler": "onResetClick",
  5637. "customEventData": ""
  5638. },
  5639. {
  5640. "__type__": "cc.PrefabInfo",
  5641. "root": {
  5642. "__id__": 1
  5643. },
  5644. "asset": {
  5645. "__id__": 0
  5646. },
  5647. "fileId": "dbiwHvOjZJ/qs03//3wPH7",
  5648. "sync": false
  5649. },
  5650. {
  5651. "__type__": "cc.Node",
  5652. "_name": "needLy",
  5653. "_objFlags": 0,
  5654. "_parent": {
  5655. "__id__": 1
  5656. },
  5657. "_children": [
  5658. {
  5659. "__id__": 163
  5660. },
  5661. {
  5662. "__id__": 178
  5663. }
  5664. ],
  5665. "_active": true,
  5666. "_components": [
  5667. {
  5668. "__id__": 193
  5669. }
  5670. ],
  5671. "_prefab": {
  5672. "__id__": 194
  5673. },
  5674. "_opacity": 255,
  5675. "_color": {
  5676. "__type__": "cc.Color",
  5677. "r": 255,
  5678. "g": 255,
  5679. "b": 255,
  5680. "a": 255
  5681. },
  5682. "_contentSize": {
  5683. "__type__": "cc.Size",
  5684. "width": 580.8,
  5685. "height": 100
  5686. },
  5687. "_anchorPoint": {
  5688. "__type__": "cc.Vec2",
  5689. "x": 0.5,
  5690. "y": 0.5
  5691. },
  5692. "_trs": {
  5693. "__type__": "TypedArray",
  5694. "ctor": "Float64Array",
  5695. "array": [
  5696. 0,
  5697. -342.677,
  5698. 0,
  5699. 0,
  5700. 0,
  5701. 0,
  5702. 1,
  5703. 1,
  5704. 1,
  5705. 1
  5706. ]
  5707. },
  5708. "_eulerAngles": {
  5709. "__type__": "cc.Vec3",
  5710. "x": 0,
  5711. "y": 0,
  5712. "z": 0
  5713. },
  5714. "_skewX": 0,
  5715. "_skewY": 0,
  5716. "_is3DNode": false,
  5717. "_groupIndex": 0,
  5718. "groupIndex": 0,
  5719. "_id": ""
  5720. },
  5721. {
  5722. "__type__": "cc.Node",
  5723. "_name": "item",
  5724. "_objFlags": 0,
  5725. "_parent": {
  5726. "__id__": 162
  5727. },
  5728. "_children": [
  5729. {
  5730. "__id__": 164
  5731. },
  5732. {
  5733. "__id__": 167
  5734. },
  5735. {
  5736. "__id__": 171
  5737. }
  5738. ],
  5739. "_active": true,
  5740. "_components": [
  5741. {
  5742. "__id__": 175
  5743. },
  5744. {
  5745. "__id__": 176
  5746. }
  5747. ],
  5748. "_prefab": {
  5749. "__id__": 177
  5750. },
  5751. "_opacity": 255,
  5752. "_color": {
  5753. "__type__": "cc.Color",
  5754. "r": 0,
  5755. "g": 0,
  5756. "b": 0,
  5757. "a": 255
  5758. },
  5759. "_contentSize": {
  5760. "__type__": "cc.Size",
  5761. "width": 272.9,
  5762. "height": 50
  5763. },
  5764. "_anchorPoint": {
  5765. "__type__": "cc.Vec2",
  5766. "x": 0.49,
  5767. "y": 0.55
  5768. },
  5769. "_trs": {
  5770. "__type__": "TypedArray",
  5771. "ctor": "Float64Array",
  5772. "array": [
  5773. -156.679,
  5774. 0,
  5775. 0,
  5776. 0,
  5777. 0,
  5778. 0,
  5779. 1,
  5780. 1,
  5781. 1,
  5782. 1
  5783. ]
  5784. },
  5785. "_eulerAngles": {
  5786. "__type__": "cc.Vec3",
  5787. "x": 0,
  5788. "y": 0,
  5789. "z": 0
  5790. },
  5791. "_skewX": 0,
  5792. "_skewY": 0,
  5793. "_is3DNode": false,
  5794. "_groupIndex": 0,
  5795. "groupIndex": 0,
  5796. "_id": ""
  5797. },
  5798. {
  5799. "__type__": "cc.Node",
  5800. "_name": "icon",
  5801. "_objFlags": 0,
  5802. "_parent": {
  5803. "__id__": 163
  5804. },
  5805. "_children": [],
  5806. "_active": true,
  5807. "_components": [
  5808. {
  5809. "__id__": 165
  5810. }
  5811. ],
  5812. "_prefab": {
  5813. "__id__": 166
  5814. },
  5815. "_opacity": 255,
  5816. "_color": {
  5817. "__type__": "cc.Color",
  5818. "r": 255,
  5819. "g": 255,
  5820. "b": 255,
  5821. "a": 255
  5822. },
  5823. "_contentSize": {
  5824. "__type__": "cc.Size",
  5825. "width": 81,
  5826. "height": 68
  5827. },
  5828. "_anchorPoint": {
  5829. "__type__": "cc.Vec2",
  5830. "x": 0.5,
  5831. "y": 0.5
  5832. },
  5833. "_trs": {
  5834. "__type__": "TypedArray",
  5835. "ctor": "Float64Array",
  5836. "array": [
  5837. -83.22099999999998,
  5838. -3.683,
  5839. 0,
  5840. 0,
  5841. 0,
  5842. 0,
  5843. 1,
  5844. 0.5,
  5845. 0.5,
  5846. 1
  5847. ]
  5848. },
  5849. "_eulerAngles": {
  5850. "__type__": "cc.Vec3",
  5851. "x": 0,
  5852. "y": 0,
  5853. "z": 0
  5854. },
  5855. "_skewX": 0,
  5856. "_skewY": 0,
  5857. "_is3DNode": false,
  5858. "_groupIndex": 0,
  5859. "groupIndex": 0,
  5860. "_id": ""
  5861. },
  5862. {
  5863. "__type__": "cc.Sprite",
  5864. "_name": "",
  5865. "_objFlags": 0,
  5866. "node": {
  5867. "__id__": 164
  5868. },
  5869. "_enabled": true,
  5870. "_materials": [
  5871. {
  5872. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5873. }
  5874. ],
  5875. "_srcBlendFactor": 770,
  5876. "_dstBlendFactor": 771,
  5877. "_spriteFrame": null,
  5878. "_type": 0,
  5879. "_sizeMode": 1,
  5880. "_fillType": 0,
  5881. "_fillCenter": {
  5882. "__type__": "cc.Vec2",
  5883. "x": 0,
  5884. "y": 0
  5885. },
  5886. "_fillStart": 0,
  5887. "_fillRange": 0,
  5888. "_isTrimmedMode": true,
  5889. "_atlas": null,
  5890. "_id": ""
  5891. },
  5892. {
  5893. "__type__": "cc.PrefabInfo",
  5894. "root": {
  5895. "__id__": 1
  5896. },
  5897. "asset": {
  5898. "__id__": 0
  5899. },
  5900. "fileId": "43F3iRVllDEq+gbGB1E224",
  5901. "sync": false
  5902. },
  5903. {
  5904. "__type__": "cc.Node",
  5905. "_name": "has",
  5906. "_objFlags": 0,
  5907. "_parent": {
  5908. "__id__": 163
  5909. },
  5910. "_children": [],
  5911. "_active": true,
  5912. "_components": [
  5913. {
  5914. "__id__": 168
  5915. },
  5916. {
  5917. "__id__": 169
  5918. }
  5919. ],
  5920. "_prefab": {
  5921. "__id__": 170
  5922. },
  5923. "_opacity": 255,
  5924. "_color": {
  5925. "__type__": "cc.Color",
  5926. "r": 255,
  5927. "g": 255,
  5928. "b": 255,
  5929. "a": 255
  5930. },
  5931. "_contentSize": {
  5932. "__type__": "cc.Size",
  5933. "width": 76.88,
  5934. "height": 56.4
  5935. },
  5936. "_anchorPoint": {
  5937. "__type__": "cc.Vec2",
  5938. "x": 1,
  5939. "y": 0.5
  5940. },
  5941. "_trs": {
  5942. "__type__": "TypedArray",
  5943. "ctor": "Float64Array",
  5944. "array": [
  5945. 34.15900000000002,
  5946. 0,
  5947. 0,
  5948. 0,
  5949. 0,
  5950. 0,
  5951. 1,
  5952. 1,
  5953. 1,
  5954. 1
  5955. ]
  5956. },
  5957. "_eulerAngles": {
  5958. "__type__": "cc.Vec3",
  5959. "x": 0,
  5960. "y": 0,
  5961. "z": 0
  5962. },
  5963. "_skewX": 0,
  5964. "_skewY": 0,
  5965. "_is3DNode": false,
  5966. "_groupIndex": 0,
  5967. "groupIndex": 0,
  5968. "_id": ""
  5969. },
  5970. {
  5971. "__type__": "cc.Label",
  5972. "_name": "",
  5973. "_objFlags": 0,
  5974. "node": {
  5975. "__id__": 167
  5976. },
  5977. "_enabled": true,
  5978. "_materials": [
  5979. {
  5980. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5981. }
  5982. ],
  5983. "_srcBlendFactor": 770,
  5984. "_dstBlendFactor": 771,
  5985. "_string": "100",
  5986. "_N$string": "100",
  5987. "_fontSize": 36,
  5988. "_lineHeight": 40,
  5989. "_enableWrapText": true,
  5990. "_N$file": {
  5991. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  5992. },
  5993. "_isSystemFontUsed": false,
  5994. "_spacingX": 0,
  5995. "_batchAsBitmap": false,
  5996. "_styleFlags": 0,
  5997. "_underlineHeight": 0,
  5998. "_N$horizontalAlign": 2,
  5999. "_N$verticalAlign": 1,
  6000. "_N$fontFamily": "Arial",
  6001. "_N$overflow": 0,
  6002. "_N$cacheMode": 0,
  6003. "_id": ""
  6004. },
  6005. {
  6006. "__type__": "cc.LabelOutline",
  6007. "_name": "",
  6008. "_objFlags": 0,
  6009. "node": {
  6010. "__id__": 167
  6011. },
  6012. "_enabled": true,
  6013. "_color": {
  6014. "__type__": "cc.Color",
  6015. "r": 38,
  6016. "g": 17,
  6017. "b": 12,
  6018. "a": 255
  6019. },
  6020. "_width": 3,
  6021. "_id": ""
  6022. },
  6023. {
  6024. "__type__": "cc.PrefabInfo",
  6025. "root": {
  6026. "__id__": 1
  6027. },
  6028. "asset": {
  6029. "__id__": 0
  6030. },
  6031. "fileId": "68Dw6JAwlLiIKwNOQz+eXx",
  6032. "sync": false
  6033. },
  6034. {
  6035. "__type__": "cc.Node",
  6036. "_name": "need",
  6037. "_objFlags": 0,
  6038. "_parent": {
  6039. "__id__": 163
  6040. },
  6041. "_children": [],
  6042. "_active": true,
  6043. "_components": [
  6044. {
  6045. "__id__": 172
  6046. },
  6047. {
  6048. "__id__": 173
  6049. }
  6050. ],
  6051. "_prefab": {
  6052. "__id__": 174
  6053. },
  6054. "_opacity": 255,
  6055. "_color": {
  6056. "__type__": "cc.Color",
  6057. "r": 255,
  6058. "g": 255,
  6059. "b": 255,
  6060. "a": 255
  6061. },
  6062. "_contentSize": {
  6063. "__type__": "cc.Size",
  6064. "width": 95.02,
  6065. "height": 56.4
  6066. },
  6067. "_anchorPoint": {
  6068. "__type__": "cc.Vec2",
  6069. "x": 0.5,
  6070. "y": 0.5
  6071. },
  6072. "_trs": {
  6073. "__type__": "TypedArray",
  6074. "ctor": "Float64Array",
  6075. "array": [
  6076. 81.66900000000001,
  6077. 0,
  6078. 0,
  6079. 0,
  6080. 0,
  6081. 0,
  6082. 1,
  6083. 1,
  6084. 1,
  6085. 1
  6086. ]
  6087. },
  6088. "_eulerAngles": {
  6089. "__type__": "cc.Vec3",
  6090. "x": 0,
  6091. "y": 0,
  6092. "z": 0
  6093. },
  6094. "_skewX": 0,
  6095. "_skewY": 0,
  6096. "_is3DNode": false,
  6097. "_groupIndex": 0,
  6098. "groupIndex": 0,
  6099. "_id": ""
  6100. },
  6101. {
  6102. "__type__": "cc.Label",
  6103. "_name": "",
  6104. "_objFlags": 0,
  6105. "node": {
  6106. "__id__": 171
  6107. },
  6108. "_enabled": true,
  6109. "_materials": [
  6110. {
  6111. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6112. }
  6113. ],
  6114. "_srcBlendFactor": 770,
  6115. "_dstBlendFactor": 771,
  6116. "_string": "/100",
  6117. "_N$string": "/100",
  6118. "_fontSize": 36,
  6119. "_lineHeight": 40,
  6120. "_enableWrapText": true,
  6121. "_N$file": {
  6122. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6123. },
  6124. "_isSystemFontUsed": false,
  6125. "_spacingX": 0,
  6126. "_batchAsBitmap": false,
  6127. "_styleFlags": 0,
  6128. "_underlineHeight": 0,
  6129. "_N$horizontalAlign": 0,
  6130. "_N$verticalAlign": 1,
  6131. "_N$fontFamily": "Arial",
  6132. "_N$overflow": 0,
  6133. "_N$cacheMode": 0,
  6134. "_id": ""
  6135. },
  6136. {
  6137. "__type__": "cc.LabelOutline",
  6138. "_name": "",
  6139. "_objFlags": 0,
  6140. "node": {
  6141. "__id__": 171
  6142. },
  6143. "_enabled": true,
  6144. "_color": {
  6145. "__type__": "cc.Color",
  6146. "r": 38,
  6147. "g": 17,
  6148. "b": 12,
  6149. "a": 255
  6150. },
  6151. "_width": 3,
  6152. "_id": ""
  6153. },
  6154. {
  6155. "__type__": "cc.PrefabInfo",
  6156. "root": {
  6157. "__id__": 1
  6158. },
  6159. "asset": {
  6160. "__id__": 0
  6161. },
  6162. "fileId": "7fMSqk5z9HMK9NZGy7ThJM",
  6163. "sync": false
  6164. },
  6165. {
  6166. "__type__": "cc.Layout",
  6167. "_name": "",
  6168. "_objFlags": 0,
  6169. "node": {
  6170. "__id__": 163
  6171. },
  6172. "_enabled": true,
  6173. "_layoutSize": {
  6174. "__type__": "cc.Size",
  6175. "width": 272.9,
  6176. "height": 50
  6177. },
  6178. "_resize": 1,
  6179. "_N$layoutType": 1,
  6180. "_N$cellSize": {
  6181. "__type__": "cc.Size",
  6182. "width": 40,
  6183. "height": 40
  6184. },
  6185. "_N$startAxis": 0,
  6186. "_N$paddingLeft": 10,
  6187. "_N$paddingRight": 10,
  6188. "_N$paddingTop": 0,
  6189. "_N$paddingBottom": 0,
  6190. "_N$spacingX": 0,
  6191. "_N$spacingY": 0,
  6192. "_N$verticalDirection": 1,
  6193. "_N$horizontalDirection": 0,
  6194. "_N$affectedByScale": false,
  6195. "_id": ""
  6196. },
  6197. {
  6198. "__type__": "cc.Sprite",
  6199. "_name": "",
  6200. "_objFlags": 0,
  6201. "node": {
  6202. "__id__": 163
  6203. },
  6204. "_enabled": true,
  6205. "_materials": [
  6206. {
  6207. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6208. }
  6209. ],
  6210. "_srcBlendFactor": 770,
  6211. "_dstBlendFactor": 771,
  6212. "_spriteFrame": {
  6213. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  6214. },
  6215. "_type": 1,
  6216. "_sizeMode": 0,
  6217. "_fillType": 0,
  6218. "_fillCenter": {
  6219. "__type__": "cc.Vec2",
  6220. "x": 0,
  6221. "y": 0
  6222. },
  6223. "_fillStart": 0,
  6224. "_fillRange": 0,
  6225. "_isTrimmedMode": true,
  6226. "_atlas": null,
  6227. "_id": ""
  6228. },
  6229. {
  6230. "__type__": "cc.PrefabInfo",
  6231. "root": {
  6232. "__id__": 1
  6233. },
  6234. "asset": {
  6235. "__id__": 0
  6236. },
  6237. "fileId": "22crURfhNPWpl0Zuiwk7jB",
  6238. "sync": false
  6239. },
  6240. {
  6241. "__type__": "cc.Node",
  6242. "_name": "item",
  6243. "_objFlags": 0,
  6244. "_parent": {
  6245. "__id__": 162
  6246. },
  6247. "_children": [
  6248. {
  6249. "__id__": 179
  6250. },
  6251. {
  6252. "__id__": 182
  6253. },
  6254. {
  6255. "__id__": 186
  6256. }
  6257. ],
  6258. "_active": true,
  6259. "_components": [
  6260. {
  6261. "__id__": 190
  6262. },
  6263. {
  6264. "__id__": 191
  6265. }
  6266. ],
  6267. "_prefab": {
  6268. "__id__": 192
  6269. },
  6270. "_opacity": 255,
  6271. "_color": {
  6272. "__type__": "cc.Color",
  6273. "r": 0,
  6274. "g": 0,
  6275. "b": 0,
  6276. "a": 255
  6277. },
  6278. "_contentSize": {
  6279. "__type__": "cc.Size",
  6280. "width": 297.9,
  6281. "height": 50
  6282. },
  6283. "_anchorPoint": {
  6284. "__type__": "cc.Vec2",
  6285. "x": 0.49,
  6286. "y": 0.55
  6287. },
  6288. "_trs": {
  6289. "__type__": "TypedArray",
  6290. "ctor": "Float64Array",
  6291. "array": [
  6292. 138.47099999999998,
  6293. 0,
  6294. 0,
  6295. 0,
  6296. 0,
  6297. 0,
  6298. 1,
  6299. 1,
  6300. 1,
  6301. 1
  6302. ]
  6303. },
  6304. "_eulerAngles": {
  6305. "__type__": "cc.Vec3",
  6306. "x": 0,
  6307. "y": 0,
  6308. "z": 0
  6309. },
  6310. "_skewX": 0,
  6311. "_skewY": 0,
  6312. "_is3DNode": false,
  6313. "_groupIndex": 0,
  6314. "groupIndex": 0,
  6315. "_id": ""
  6316. },
  6317. {
  6318. "__type__": "cc.Node",
  6319. "_name": "icon",
  6320. "_objFlags": 0,
  6321. "_parent": {
  6322. "__id__": 178
  6323. },
  6324. "_children": [],
  6325. "_active": true,
  6326. "_components": [
  6327. {
  6328. "__id__": 180
  6329. }
  6330. ],
  6331. "_prefab": {
  6332. "__id__": 181
  6333. },
  6334. "_opacity": 255,
  6335. "_color": {
  6336. "__type__": "cc.Color",
  6337. "r": 255,
  6338. "g": 255,
  6339. "b": 255,
  6340. "a": 255
  6341. },
  6342. "_contentSize": {
  6343. "__type__": "cc.Size",
  6344. "width": 106,
  6345. "height": 116
  6346. },
  6347. "_anchorPoint": {
  6348. "__type__": "cc.Vec2",
  6349. "x": 0.5,
  6350. "y": 0.5
  6351. },
  6352. "_trs": {
  6353. "__type__": "TypedArray",
  6354. "ctor": "Float64Array",
  6355. "array": [
  6356. -82.97099999999998,
  6357. -3.683,
  6358. 0,
  6359. 0,
  6360. 0,
  6361. 0,
  6362. 1,
  6363. 0.5,
  6364. 0.5,
  6365. 1
  6366. ]
  6367. },
  6368. "_eulerAngles": {
  6369. "__type__": "cc.Vec3",
  6370. "x": 0,
  6371. "y": 0,
  6372. "z": 0
  6373. },
  6374. "_skewX": 0,
  6375. "_skewY": 0,
  6376. "_is3DNode": false,
  6377. "_groupIndex": 0,
  6378. "groupIndex": 0,
  6379. "_id": ""
  6380. },
  6381. {
  6382. "__type__": "cc.Sprite",
  6383. "_name": "",
  6384. "_objFlags": 0,
  6385. "node": {
  6386. "__id__": 179
  6387. },
  6388. "_enabled": true,
  6389. "_materials": [
  6390. {
  6391. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6392. }
  6393. ],
  6394. "_srcBlendFactor": 770,
  6395. "_dstBlendFactor": 771,
  6396. "_spriteFrame": null,
  6397. "_type": 0,
  6398. "_sizeMode": 1,
  6399. "_fillType": 0,
  6400. "_fillCenter": {
  6401. "__type__": "cc.Vec2",
  6402. "x": 0,
  6403. "y": 0
  6404. },
  6405. "_fillStart": 0,
  6406. "_fillRange": 0,
  6407. "_isTrimmedMode": true,
  6408. "_atlas": null,
  6409. "_id": ""
  6410. },
  6411. {
  6412. "__type__": "cc.PrefabInfo",
  6413. "root": {
  6414. "__id__": 1
  6415. },
  6416. "asset": {
  6417. "__id__": 0
  6418. },
  6419. "fileId": "6cXbd3q+1AXoU/gAa/OAx4",
  6420. "sync": false
  6421. },
  6422. {
  6423. "__type__": "cc.Node",
  6424. "_name": "has",
  6425. "_objFlags": 0,
  6426. "_parent": {
  6427. "__id__": 178
  6428. },
  6429. "_children": [],
  6430. "_active": true,
  6431. "_components": [
  6432. {
  6433. "__id__": 183
  6434. },
  6435. {
  6436. "__id__": 184
  6437. }
  6438. ],
  6439. "_prefab": {
  6440. "__id__": 185
  6441. },
  6442. "_opacity": 255,
  6443. "_color": {
  6444. "__type__": "cc.Color",
  6445. "r": 255,
  6446. "g": 255,
  6447. "b": 255,
  6448. "a": 255
  6449. },
  6450. "_contentSize": {
  6451. "__type__": "cc.Size",
  6452. "width": 76.88,
  6453. "height": 56.4
  6454. },
  6455. "_anchorPoint": {
  6456. "__type__": "cc.Vec2",
  6457. "x": 1,
  6458. "y": 0.5
  6459. },
  6460. "_trs": {
  6461. "__type__": "TypedArray",
  6462. "ctor": "Float64Array",
  6463. "array": [
  6464. 46.90900000000002,
  6465. 0,
  6466. 0,
  6467. 0,
  6468. 0,
  6469. 0,
  6470. 1,
  6471. 1,
  6472. 1,
  6473. 1
  6474. ]
  6475. },
  6476. "_eulerAngles": {
  6477. "__type__": "cc.Vec3",
  6478. "x": 0,
  6479. "y": 0,
  6480. "z": 0
  6481. },
  6482. "_skewX": 0,
  6483. "_skewY": 0,
  6484. "_is3DNode": false,
  6485. "_groupIndex": 0,
  6486. "groupIndex": 0,
  6487. "_id": ""
  6488. },
  6489. {
  6490. "__type__": "cc.Label",
  6491. "_name": "",
  6492. "_objFlags": 0,
  6493. "node": {
  6494. "__id__": 182
  6495. },
  6496. "_enabled": true,
  6497. "_materials": [
  6498. {
  6499. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6500. }
  6501. ],
  6502. "_srcBlendFactor": 770,
  6503. "_dstBlendFactor": 771,
  6504. "_string": "100",
  6505. "_N$string": "100",
  6506. "_fontSize": 36,
  6507. "_lineHeight": 40,
  6508. "_enableWrapText": true,
  6509. "_N$file": {
  6510. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6511. },
  6512. "_isSystemFontUsed": false,
  6513. "_spacingX": 0,
  6514. "_batchAsBitmap": false,
  6515. "_styleFlags": 0,
  6516. "_underlineHeight": 0,
  6517. "_N$horizontalAlign": 2,
  6518. "_N$verticalAlign": 1,
  6519. "_N$fontFamily": "Arial",
  6520. "_N$overflow": 0,
  6521. "_N$cacheMode": 0,
  6522. "_id": ""
  6523. },
  6524. {
  6525. "__type__": "cc.LabelOutline",
  6526. "_name": "",
  6527. "_objFlags": 0,
  6528. "node": {
  6529. "__id__": 182
  6530. },
  6531. "_enabled": true,
  6532. "_color": {
  6533. "__type__": "cc.Color",
  6534. "r": 38,
  6535. "g": 17,
  6536. "b": 12,
  6537. "a": 255
  6538. },
  6539. "_width": 3,
  6540. "_id": ""
  6541. },
  6542. {
  6543. "__type__": "cc.PrefabInfo",
  6544. "root": {
  6545. "__id__": 1
  6546. },
  6547. "asset": {
  6548. "__id__": 0
  6549. },
  6550. "fileId": "77EKUR8O5I764kWWKHUuW0",
  6551. "sync": false
  6552. },
  6553. {
  6554. "__type__": "cc.Node",
  6555. "_name": "need",
  6556. "_objFlags": 0,
  6557. "_parent": {
  6558. "__id__": 178
  6559. },
  6560. "_children": [],
  6561. "_active": true,
  6562. "_components": [
  6563. {
  6564. "__id__": 187
  6565. },
  6566. {
  6567. "__id__": 188
  6568. }
  6569. ],
  6570. "_prefab": {
  6571. "__id__": 189
  6572. },
  6573. "_opacity": 255,
  6574. "_color": {
  6575. "__type__": "cc.Color",
  6576. "r": 255,
  6577. "g": 255,
  6578. "b": 255,
  6579. "a": 255
  6580. },
  6581. "_contentSize": {
  6582. "__type__": "cc.Size",
  6583. "width": 95.02,
  6584. "height": 56.4
  6585. },
  6586. "_anchorPoint": {
  6587. "__type__": "cc.Vec2",
  6588. "x": 0.5,
  6589. "y": 0.5
  6590. },
  6591. "_trs": {
  6592. "__type__": "TypedArray",
  6593. "ctor": "Float64Array",
  6594. "array": [
  6595. 94.41900000000001,
  6596. 0,
  6597. 0,
  6598. 0,
  6599. 0,
  6600. 0,
  6601. 1,
  6602. 1,
  6603. 1,
  6604. 1
  6605. ]
  6606. },
  6607. "_eulerAngles": {
  6608. "__type__": "cc.Vec3",
  6609. "x": 0,
  6610. "y": 0,
  6611. "z": 0
  6612. },
  6613. "_skewX": 0,
  6614. "_skewY": 0,
  6615. "_is3DNode": false,
  6616. "_groupIndex": 0,
  6617. "groupIndex": 0,
  6618. "_id": ""
  6619. },
  6620. {
  6621. "__type__": "cc.Label",
  6622. "_name": "",
  6623. "_objFlags": 0,
  6624. "node": {
  6625. "__id__": 186
  6626. },
  6627. "_enabled": true,
  6628. "_materials": [
  6629. {
  6630. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6631. }
  6632. ],
  6633. "_srcBlendFactor": 770,
  6634. "_dstBlendFactor": 771,
  6635. "_string": "/100",
  6636. "_N$string": "/100",
  6637. "_fontSize": 36,
  6638. "_lineHeight": 40,
  6639. "_enableWrapText": true,
  6640. "_N$file": {
  6641. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6642. },
  6643. "_isSystemFontUsed": false,
  6644. "_spacingX": 0,
  6645. "_batchAsBitmap": false,
  6646. "_styleFlags": 0,
  6647. "_underlineHeight": 0,
  6648. "_N$horizontalAlign": 0,
  6649. "_N$verticalAlign": 1,
  6650. "_N$fontFamily": "Arial",
  6651. "_N$overflow": 0,
  6652. "_N$cacheMode": 0,
  6653. "_id": ""
  6654. },
  6655. {
  6656. "__type__": "cc.LabelOutline",
  6657. "_name": "",
  6658. "_objFlags": 0,
  6659. "node": {
  6660. "__id__": 186
  6661. },
  6662. "_enabled": true,
  6663. "_color": {
  6664. "__type__": "cc.Color",
  6665. "r": 38,
  6666. "g": 17,
  6667. "b": 12,
  6668. "a": 255
  6669. },
  6670. "_width": 3,
  6671. "_id": ""
  6672. },
  6673. {
  6674. "__type__": "cc.PrefabInfo",
  6675. "root": {
  6676. "__id__": 1
  6677. },
  6678. "asset": {
  6679. "__id__": 0
  6680. },
  6681. "fileId": "eagBbWpt9H4qIra8N3V0CN",
  6682. "sync": false
  6683. },
  6684. {
  6685. "__type__": "cc.Layout",
  6686. "_name": "",
  6687. "_objFlags": 0,
  6688. "node": {
  6689. "__id__": 178
  6690. },
  6691. "_enabled": true,
  6692. "_layoutSize": {
  6693. "__type__": "cc.Size",
  6694. "width": 297.9,
  6695. "height": 50
  6696. },
  6697. "_resize": 1,
  6698. "_N$layoutType": 1,
  6699. "_N$cellSize": {
  6700. "__type__": "cc.Size",
  6701. "width": 40,
  6702. "height": 40
  6703. },
  6704. "_N$startAxis": 0,
  6705. "_N$paddingLeft": 10,
  6706. "_N$paddingRight": 10,
  6707. "_N$paddingTop": 0,
  6708. "_N$paddingBottom": 0,
  6709. "_N$spacingX": 0,
  6710. "_N$spacingY": 0,
  6711. "_N$verticalDirection": 1,
  6712. "_N$horizontalDirection": 0,
  6713. "_N$affectedByScale": false,
  6714. "_id": ""
  6715. },
  6716. {
  6717. "__type__": "cc.Sprite",
  6718. "_name": "",
  6719. "_objFlags": 0,
  6720. "node": {
  6721. "__id__": 178
  6722. },
  6723. "_enabled": true,
  6724. "_materials": [
  6725. {
  6726. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6727. }
  6728. ],
  6729. "_srcBlendFactor": 770,
  6730. "_dstBlendFactor": 771,
  6731. "_spriteFrame": {
  6732. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  6733. },
  6734. "_type": 1,
  6735. "_sizeMode": 0,
  6736. "_fillType": 0,
  6737. "_fillCenter": {
  6738. "__type__": "cc.Vec2",
  6739. "x": 0,
  6740. "y": 0
  6741. },
  6742. "_fillStart": 0,
  6743. "_fillRange": 0,
  6744. "_isTrimmedMode": true,
  6745. "_atlas": null,
  6746. "_id": ""
  6747. },
  6748. {
  6749. "__type__": "cc.PrefabInfo",
  6750. "root": {
  6751. "__id__": 1
  6752. },
  6753. "asset": {
  6754. "__id__": 0
  6755. },
  6756. "fileId": "7bsNoGyI9OgLoE190fwYs2",
  6757. "sync": false
  6758. },
  6759. {
  6760. "__type__": "cc.Layout",
  6761. "_name": "",
  6762. "_objFlags": 0,
  6763. "node": {
  6764. "__id__": 162
  6765. },
  6766. "_enabled": true,
  6767. "_layoutSize": {
  6768. "__type__": "cc.Size",
  6769. "width": 580.8,
  6770. "height": 100
  6771. },
  6772. "_resize": 1,
  6773. "_N$layoutType": 1,
  6774. "_N$cellSize": {
  6775. "__type__": "cc.Size",
  6776. "width": 40,
  6777. "height": 40
  6778. },
  6779. "_N$startAxis": 0,
  6780. "_N$paddingLeft": 0,
  6781. "_N$paddingRight": 0,
  6782. "_N$paddingTop": 0,
  6783. "_N$paddingBottom": 0,
  6784. "_N$spacingX": 10,
  6785. "_N$spacingY": 0,
  6786. "_N$verticalDirection": 1,
  6787. "_N$horizontalDirection": 0,
  6788. "_N$affectedByScale": false,
  6789. "_id": ""
  6790. },
  6791. {
  6792. "__type__": "cc.PrefabInfo",
  6793. "root": {
  6794. "__id__": 1
  6795. },
  6796. "asset": {
  6797. "__id__": 0
  6798. },
  6799. "fileId": "295w8LZ8hAeKsI5YPuPzC6",
  6800. "sync": false
  6801. },
  6802. {
  6803. "__type__": "cc.Node",
  6804. "_name": "btn_auto_upgrade",
  6805. "_objFlags": 0,
  6806. "_parent": {
  6807. "__id__": 1
  6808. },
  6809. "_children": [
  6810. {
  6811. "__id__": 196
  6812. }
  6813. ],
  6814. "_active": true,
  6815. "_components": [
  6816. {
  6817. "__id__": 201
  6818. },
  6819. {
  6820. "__id__": 202
  6821. },
  6822. {
  6823. "__id__": 203
  6824. }
  6825. ],
  6826. "_prefab": {
  6827. "__id__": 205
  6828. },
  6829. "_opacity": 255,
  6830. "_color": {
  6831. "__type__": "cc.Color",
  6832. "r": 255,
  6833. "g": 255,
  6834. "b": 255,
  6835. "a": 255
  6836. },
  6837. "_contentSize": {
  6838. "__type__": "cc.Size",
  6839. "width": 254.4,
  6840. "height": 103.2
  6841. },
  6842. "_anchorPoint": {
  6843. "__type__": "cc.Vec2",
  6844. "x": 0.5,
  6845. "y": 0.5
  6846. },
  6847. "_trs": {
  6848. "__type__": "TypedArray",
  6849. "ctor": "Float64Array",
  6850. "array": [
  6851. -139.053,
  6852. -438.523,
  6853. 0,
  6854. 0,
  6855. 0,
  6856. 0,
  6857. 1,
  6858. 1,
  6859. 1,
  6860. 0
  6861. ]
  6862. },
  6863. "_eulerAngles": {
  6864. "__type__": "cc.Vec3",
  6865. "x": 0,
  6866. "y": 0,
  6867. "z": 0
  6868. },
  6869. "_skewX": 0,
  6870. "_skewY": 0,
  6871. "_is3DNode": false,
  6872. "_groupIndex": 0,
  6873. "groupIndex": 0,
  6874. "_id": ""
  6875. },
  6876. {
  6877. "__type__": "cc.Node",
  6878. "_name": "lb",
  6879. "_objFlags": 0,
  6880. "_parent": {
  6881. "__id__": 195
  6882. },
  6883. "_children": [],
  6884. "_active": true,
  6885. "_components": [
  6886. {
  6887. "__id__": 197
  6888. },
  6889. {
  6890. "__id__": 198
  6891. },
  6892. {
  6893. "__id__": 199
  6894. }
  6895. ],
  6896. "_prefab": {
  6897. "__id__": 200
  6898. },
  6899. "_opacity": 255,
  6900. "_color": {
  6901. "__type__": "cc.Color",
  6902. "r": 29,
  6903. "g": 37,
  6904. "b": 7,
  6905. "a": 255
  6906. },
  6907. "_contentSize": {
  6908. "__type__": "cc.Size",
  6909. "width": 147.16,
  6910. "height": 91.36
  6911. },
  6912. "_anchorPoint": {
  6913. "__type__": "cc.Vec2",
  6914. "x": 0.5,
  6915. "y": 0.5
  6916. },
  6917. "_trs": {
  6918. "__type__": "TypedArray",
  6919. "ctor": "Float64Array",
  6920. "array": [
  6921. 0,
  6922. 7,
  6923. 0,
  6924. 0,
  6925. 0,
  6926. 0,
  6927. 1,
  6928. 1,
  6929. 1,
  6930. 1
  6931. ]
  6932. },
  6933. "_eulerAngles": {
  6934. "__type__": "cc.Vec3",
  6935. "x": 0,
  6936. "y": 0,
  6937. "z": 0
  6938. },
  6939. "_skewX": 0,
  6940. "_skewY": 0,
  6941. "_is3DNode": false,
  6942. "_groupIndex": 0,
  6943. "groupIndex": 0,
  6944. "_id": ""
  6945. },
  6946. {
  6947. "__type__": "cc.Label",
  6948. "_name": "",
  6949. "_objFlags": 0,
  6950. "node": {
  6951. "__id__": 196
  6952. },
  6953. "_enabled": true,
  6954. "_materials": [
  6955. {
  6956. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6957. }
  6958. ],
  6959. "_srcBlendFactor": 770,
  6960. "_dstBlendFactor": 771,
  6961. "_string": "Auto\nUpgrade",
  6962. "_N$string": "Auto\nUpgrade",
  6963. "_fontSize": 36,
  6964. "_lineHeight": 36,
  6965. "_enableWrapText": true,
  6966. "_N$file": {
  6967. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  6968. },
  6969. "_isSystemFontUsed": false,
  6970. "_spacingX": 0,
  6971. "_batchAsBitmap": false,
  6972. "_styleFlags": 0,
  6973. "_underlineHeight": 0,
  6974. "_N$horizontalAlign": 1,
  6975. "_N$verticalAlign": 1,
  6976. "_N$fontFamily": "Arial",
  6977. "_N$overflow": 0,
  6978. "_N$cacheMode": 0,
  6979. "_id": ""
  6980. },
  6981. {
  6982. "__type__": "cc.LabelOutline",
  6983. "_name": "",
  6984. "_objFlags": 0,
  6985. "node": {
  6986. "__id__": 196
  6987. },
  6988. "_enabled": true,
  6989. "_color": {
  6990. "__type__": "cc.Color",
  6991. "r": 190,
  6992. "g": 213,
  6993. "b": 4,
  6994. "a": 255
  6995. },
  6996. "_width": 5,
  6997. "_id": ""
  6998. },
  6999. {
  7000. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7001. "_name": "",
  7002. "_objFlags": 0,
  7003. "node": {
  7004. "__id__": 196
  7005. },
  7006. "_enabled": true,
  7007. "_englishCase": 1,
  7008. "i18n_string": "t41",
  7009. "i18n_params": [],
  7010. "_addColon": false,
  7011. "_id": ""
  7012. },
  7013. {
  7014. "__type__": "cc.PrefabInfo",
  7015. "root": {
  7016. "__id__": 1
  7017. },
  7018. "asset": {
  7019. "__id__": 0
  7020. },
  7021. "fileId": "f7XVEFQR1ANrLX6Qk+jre4",
  7022. "sync": false
  7023. },
  7024. {
  7025. "__type__": "cc.Sprite",
  7026. "_name": "",
  7027. "_objFlags": 0,
  7028. "node": {
  7029. "__id__": 195
  7030. },
  7031. "_enabled": true,
  7032. "_materials": [
  7033. {
  7034. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7035. }
  7036. ],
  7037. "_srcBlendFactor": 770,
  7038. "_dstBlendFactor": 771,
  7039. "_spriteFrame": {
  7040. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  7041. },
  7042. "_type": 0,
  7043. "_sizeMode": 0,
  7044. "_fillType": 0,
  7045. "_fillCenter": {
  7046. "__type__": "cc.Vec2",
  7047. "x": 0,
  7048. "y": 0
  7049. },
  7050. "_fillStart": 0,
  7051. "_fillRange": 0,
  7052. "_isTrimmedMode": true,
  7053. "_atlas": null,
  7054. "_id": ""
  7055. },
  7056. {
  7057. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7058. "_name": "",
  7059. "_objFlags": 0,
  7060. "node": {
  7061. "__id__": 195
  7062. },
  7063. "_enabled": true,
  7064. "openContinuous": true,
  7065. "continuousTime": 0.2,
  7066. "multiTouch": false,
  7067. "_id": ""
  7068. },
  7069. {
  7070. "__type__": "61994AafntNFIbmt1zoyLq+",
  7071. "_name": "",
  7072. "_objFlags": 0,
  7073. "node": {
  7074. "__id__": 195
  7075. },
  7076. "_enabled": true,
  7077. "_normalMaterial": null,
  7078. "_grayMaterial": null,
  7079. "duration": 0.1,
  7080. "zoomScale": 1.2,
  7081. "clickEvents": [
  7082. {
  7083. "__id__": 204
  7084. }
  7085. ],
  7086. "_N$interactable": true,
  7087. "_N$enableAutoGrayEffect": false,
  7088. "_N$transition": 3,
  7089. "transition": 3,
  7090. "_N$normalColor": {
  7091. "__type__": "cc.Color",
  7092. "r": 255,
  7093. "g": 255,
  7094. "b": 255,
  7095. "a": 255
  7096. },
  7097. "_N$pressedColor": {
  7098. "__type__": "cc.Color",
  7099. "r": 211,
  7100. "g": 211,
  7101. "b": 211,
  7102. "a": 255
  7103. },
  7104. "pressedColor": {
  7105. "__type__": "cc.Color",
  7106. "r": 211,
  7107. "g": 211,
  7108. "b": 211,
  7109. "a": 255
  7110. },
  7111. "_N$hoverColor": {
  7112. "__type__": "cc.Color",
  7113. "r": 255,
  7114. "g": 255,
  7115. "b": 255,
  7116. "a": 255
  7117. },
  7118. "hoverColor": {
  7119. "__type__": "cc.Color",
  7120. "r": 255,
  7121. "g": 255,
  7122. "b": 255,
  7123. "a": 255
  7124. },
  7125. "_N$disabledColor": {
  7126. "__type__": "cc.Color",
  7127. "r": 124,
  7128. "g": 124,
  7129. "b": 124,
  7130. "a": 255
  7131. },
  7132. "_N$normalSprite": null,
  7133. "_N$pressedSprite": null,
  7134. "pressedSprite": null,
  7135. "_N$hoverSprite": null,
  7136. "hoverSprite": null,
  7137. "_N$disabledSprite": null,
  7138. "_N$target": null,
  7139. "_id": ""
  7140. },
  7141. {
  7142. "__type__": "cc.ClickEvent",
  7143. "target": {
  7144. "__id__": 1
  7145. },
  7146. "component": "",
  7147. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  7148. "handler": "onLevelClick",
  7149. "customEventData": "1"
  7150. },
  7151. {
  7152. "__type__": "cc.PrefabInfo",
  7153. "root": {
  7154. "__id__": 1
  7155. },
  7156. "asset": {
  7157. "__id__": 0
  7158. },
  7159. "fileId": "33MzolzVJIt55QZ9HvUyt1",
  7160. "sync": false
  7161. },
  7162. {
  7163. "__type__": "cc.Node",
  7164. "_name": "btn_upgrade",
  7165. "_objFlags": 0,
  7166. "_parent": {
  7167. "__id__": 1
  7168. },
  7169. "_children": [
  7170. {
  7171. "__id__": 207
  7172. }
  7173. ],
  7174. "_active": true,
  7175. "_components": [
  7176. {
  7177. "__id__": 212
  7178. },
  7179. {
  7180. "__id__": 213
  7181. },
  7182. {
  7183. "__id__": 214
  7184. }
  7185. ],
  7186. "_prefab": {
  7187. "__id__": 216
  7188. },
  7189. "_opacity": 255,
  7190. "_color": {
  7191. "__type__": "cc.Color",
  7192. "r": 255,
  7193. "g": 255,
  7194. "b": 255,
  7195. "a": 255
  7196. },
  7197. "_contentSize": {
  7198. "__type__": "cc.Size",
  7199. "width": 254.4,
  7200. "height": 103.2
  7201. },
  7202. "_anchorPoint": {
  7203. "__type__": "cc.Vec2",
  7204. "x": 0.5,
  7205. "y": 0.5
  7206. },
  7207. "_trs": {
  7208. "__type__": "TypedArray",
  7209. "ctor": "Float64Array",
  7210. "array": [
  7211. 136.632,
  7212. -439.833,
  7213. 0,
  7214. 0,
  7215. 0,
  7216. 0,
  7217. 1,
  7218. 1,
  7219. 1,
  7220. 0
  7221. ]
  7222. },
  7223. "_eulerAngles": {
  7224. "__type__": "cc.Vec3",
  7225. "x": 0,
  7226. "y": 0,
  7227. "z": 0
  7228. },
  7229. "_skewX": 0,
  7230. "_skewY": 0,
  7231. "_is3DNode": false,
  7232. "_groupIndex": 0,
  7233. "groupIndex": 0,
  7234. "_id": ""
  7235. },
  7236. {
  7237. "__type__": "cc.Node",
  7238. "_name": "lb",
  7239. "_objFlags": 0,
  7240. "_parent": {
  7241. "__id__": 206
  7242. },
  7243. "_children": [],
  7244. "_active": true,
  7245. "_components": [
  7246. {
  7247. "__id__": 208
  7248. },
  7249. {
  7250. "__id__": 209
  7251. },
  7252. {
  7253. "__id__": 210
  7254. }
  7255. ],
  7256. "_prefab": {
  7257. "__id__": 211
  7258. },
  7259. "_opacity": 255,
  7260. "_color": {
  7261. "__type__": "cc.Color",
  7262. "r": 68,
  7263. "g": 41,
  7264. "b": 0,
  7265. "a": 255
  7266. },
  7267. "_contentSize": {
  7268. "__type__": "cc.Size",
  7269. "width": 141.16,
  7270. "height": 54.4
  7271. },
  7272. "_anchorPoint": {
  7273. "__type__": "cc.Vec2",
  7274. "x": 0.5,
  7275. "y": 0.5
  7276. },
  7277. "_trs": {
  7278. "__type__": "TypedArray",
  7279. "ctor": "Float64Array",
  7280. "array": [
  7281. 0,
  7282. 7,
  7283. 0,
  7284. 0,
  7285. 0,
  7286. 0,
  7287. 1,
  7288. 1,
  7289. 1,
  7290. 1
  7291. ]
  7292. },
  7293. "_eulerAngles": {
  7294. "__type__": "cc.Vec3",
  7295. "x": 0,
  7296. "y": 0,
  7297. "z": 0
  7298. },
  7299. "_skewX": 0,
  7300. "_skewY": 0,
  7301. "_is3DNode": false,
  7302. "_groupIndex": 0,
  7303. "groupIndex": 0,
  7304. "_id": ""
  7305. },
  7306. {
  7307. "__type__": "cc.Label",
  7308. "_name": "",
  7309. "_objFlags": 0,
  7310. "node": {
  7311. "__id__": 207
  7312. },
  7313. "_enabled": true,
  7314. "_materials": [
  7315. {
  7316. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7317. }
  7318. ],
  7319. "_srcBlendFactor": 770,
  7320. "_dstBlendFactor": 771,
  7321. "_string": "Upgrade",
  7322. "_N$string": "Upgrade",
  7323. "_fontSize": 36,
  7324. "_lineHeight": 40,
  7325. "_enableWrapText": false,
  7326. "_N$file": {
  7327. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7328. },
  7329. "_isSystemFontUsed": false,
  7330. "_spacingX": 0,
  7331. "_batchAsBitmap": false,
  7332. "_styleFlags": 0,
  7333. "_underlineHeight": 0,
  7334. "_N$horizontalAlign": 1,
  7335. "_N$verticalAlign": 1,
  7336. "_N$fontFamily": "Arial",
  7337. "_N$overflow": 0,
  7338. "_N$cacheMode": 0,
  7339. "_id": ""
  7340. },
  7341. {
  7342. "__type__": "cc.LabelOutline",
  7343. "_name": "",
  7344. "_objFlags": 0,
  7345. "node": {
  7346. "__id__": 207
  7347. },
  7348. "_enabled": true,
  7349. "_color": {
  7350. "__type__": "cc.Color",
  7351. "r": 255,
  7352. "g": 210,
  7353. "b": 0,
  7354. "a": 255
  7355. },
  7356. "_width": 2,
  7357. "_id": ""
  7358. },
  7359. {
  7360. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7361. "_name": "",
  7362. "_objFlags": 0,
  7363. "node": {
  7364. "__id__": 207
  7365. },
  7366. "_enabled": true,
  7367. "_englishCase": 1,
  7368. "i18n_string": "t17",
  7369. "i18n_params": [],
  7370. "_addColon": false,
  7371. "_id": ""
  7372. },
  7373. {
  7374. "__type__": "cc.PrefabInfo",
  7375. "root": {
  7376. "__id__": 1
  7377. },
  7378. "asset": {
  7379. "__id__": 0
  7380. },
  7381. "fileId": "4bheXLKUlG6IOj9ay8jzex",
  7382. "sync": false
  7383. },
  7384. {
  7385. "__type__": "cc.Sprite",
  7386. "_name": "",
  7387. "_objFlags": 0,
  7388. "node": {
  7389. "__id__": 206
  7390. },
  7391. "_enabled": true,
  7392. "_materials": [
  7393. {
  7394. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7395. }
  7396. ],
  7397. "_srcBlendFactor": 770,
  7398. "_dstBlendFactor": 771,
  7399. "_spriteFrame": {
  7400. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  7401. },
  7402. "_type": 0,
  7403. "_sizeMode": 0,
  7404. "_fillType": 0,
  7405. "_fillCenter": {
  7406. "__type__": "cc.Vec2",
  7407. "x": 0,
  7408. "y": 0
  7409. },
  7410. "_fillStart": 0,
  7411. "_fillRange": 0,
  7412. "_isTrimmedMode": true,
  7413. "_atlas": null,
  7414. "_id": ""
  7415. },
  7416. {
  7417. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7418. "_name": "",
  7419. "_objFlags": 0,
  7420. "node": {
  7421. "__id__": 206
  7422. },
  7423. "_enabled": true,
  7424. "openContinuous": true,
  7425. "continuousTime": 0.2,
  7426. "multiTouch": false,
  7427. "_id": ""
  7428. },
  7429. {
  7430. "__type__": "61994AafntNFIbmt1zoyLq+",
  7431. "_name": "",
  7432. "_objFlags": 0,
  7433. "node": {
  7434. "__id__": 206
  7435. },
  7436. "_enabled": true,
  7437. "_normalMaterial": null,
  7438. "_grayMaterial": null,
  7439. "duration": 0.1,
  7440. "zoomScale": 1.2,
  7441. "clickEvents": [
  7442. {
  7443. "__id__": 215
  7444. }
  7445. ],
  7446. "_N$interactable": true,
  7447. "_N$enableAutoGrayEffect": false,
  7448. "_N$transition": 3,
  7449. "transition": 3,
  7450. "_N$normalColor": {
  7451. "__type__": "cc.Color",
  7452. "r": 255,
  7453. "g": 255,
  7454. "b": 255,
  7455. "a": 255
  7456. },
  7457. "_N$pressedColor": {
  7458. "__type__": "cc.Color",
  7459. "r": 211,
  7460. "g": 211,
  7461. "b": 211,
  7462. "a": 255
  7463. },
  7464. "pressedColor": {
  7465. "__type__": "cc.Color",
  7466. "r": 211,
  7467. "g": 211,
  7468. "b": 211,
  7469. "a": 255
  7470. },
  7471. "_N$hoverColor": {
  7472. "__type__": "cc.Color",
  7473. "r": 255,
  7474. "g": 255,
  7475. "b": 255,
  7476. "a": 255
  7477. },
  7478. "hoverColor": {
  7479. "__type__": "cc.Color",
  7480. "r": 255,
  7481. "g": 255,
  7482. "b": 255,
  7483. "a": 255
  7484. },
  7485. "_N$disabledColor": {
  7486. "__type__": "cc.Color",
  7487. "r": 124,
  7488. "g": 124,
  7489. "b": 124,
  7490. "a": 255
  7491. },
  7492. "_N$normalSprite": null,
  7493. "_N$pressedSprite": null,
  7494. "pressedSprite": null,
  7495. "_N$hoverSprite": null,
  7496. "hoverSprite": null,
  7497. "_N$disabledSprite": null,
  7498. "_N$target": null,
  7499. "_id": ""
  7500. },
  7501. {
  7502. "__type__": "cc.ClickEvent",
  7503. "target": {
  7504. "__id__": 1
  7505. },
  7506. "component": "",
  7507. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  7508. "handler": "onLevelClick",
  7509. "customEventData": ""
  7510. },
  7511. {
  7512. "__type__": "cc.PrefabInfo",
  7513. "root": {
  7514. "__id__": 1
  7515. },
  7516. "asset": {
  7517. "__id__": 0
  7518. },
  7519. "fileId": "64YfIU3LJDW5Cb33UPQuvP",
  7520. "sync": false
  7521. },
  7522. {
  7523. "__type__": "cc.Node",
  7524. "_name": "btn_go_altar",
  7525. "_objFlags": 0,
  7526. "_parent": {
  7527. "__id__": 1
  7528. },
  7529. "_children": [
  7530. {
  7531. "__id__": 218
  7532. }
  7533. ],
  7534. "_active": false,
  7535. "_components": [
  7536. {
  7537. "__id__": 223
  7538. },
  7539. {
  7540. "__id__": 224
  7541. },
  7542. {
  7543. "__id__": 225
  7544. }
  7545. ],
  7546. "_prefab": {
  7547. "__id__": 227
  7548. },
  7549. "_opacity": 255,
  7550. "_color": {
  7551. "__type__": "cc.Color",
  7552. "r": 255,
  7553. "g": 255,
  7554. "b": 255,
  7555. "a": 255
  7556. },
  7557. "_contentSize": {
  7558. "__type__": "cc.Size",
  7559. "width": 254.4,
  7560. "height": 103.2
  7561. },
  7562. "_anchorPoint": {
  7563. "__type__": "cc.Vec2",
  7564. "x": 0.5,
  7565. "y": 0.5
  7566. },
  7567. "_trs": {
  7568. "__type__": "TypedArray",
  7569. "ctor": "Float64Array",
  7570. "array": [
  7571. 0,
  7572. -438.523,
  7573. 0,
  7574. 0,
  7575. 0,
  7576. 0,
  7577. 1,
  7578. 1,
  7579. 1,
  7580. 0
  7581. ]
  7582. },
  7583. "_eulerAngles": {
  7584. "__type__": "cc.Vec3",
  7585. "x": 0,
  7586. "y": 0,
  7587. "z": 0
  7588. },
  7589. "_skewX": 0,
  7590. "_skewY": 0,
  7591. "_is3DNode": false,
  7592. "_groupIndex": 0,
  7593. "groupIndex": 0,
  7594. "_id": ""
  7595. },
  7596. {
  7597. "__type__": "cc.Node",
  7598. "_name": "lb",
  7599. "_objFlags": 0,
  7600. "_parent": {
  7601. "__id__": 217
  7602. },
  7603. "_children": [],
  7604. "_active": true,
  7605. "_components": [
  7606. {
  7607. "__id__": 219
  7608. },
  7609. {
  7610. "__id__": 220
  7611. },
  7612. {
  7613. "__id__": 221
  7614. }
  7615. ],
  7616. "_prefab": {
  7617. "__id__": 222
  7618. },
  7619. "_opacity": 255,
  7620. "_color": {
  7621. "__type__": "cc.Color",
  7622. "r": 29,
  7623. "g": 37,
  7624. "b": 7,
  7625. "a": 255
  7626. },
  7627. "_contentSize": {
  7628. "__type__": "cc.Size",
  7629. "width": 227.66,
  7630. "height": 55.36
  7631. },
  7632. "_anchorPoint": {
  7633. "__type__": "cc.Vec2",
  7634. "x": 0.5,
  7635. "y": 0.5
  7636. },
  7637. "_trs": {
  7638. "__type__": "TypedArray",
  7639. "ctor": "Float64Array",
  7640. "array": [
  7641. 0,
  7642. 7,
  7643. 0,
  7644. 0,
  7645. 0,
  7646. 0,
  7647. 1,
  7648. 1,
  7649. 1,
  7650. 1
  7651. ]
  7652. },
  7653. "_eulerAngles": {
  7654. "__type__": "cc.Vec3",
  7655. "x": 0,
  7656. "y": 0,
  7657. "z": 0
  7658. },
  7659. "_skewX": 0,
  7660. "_skewY": 0,
  7661. "_is3DNode": false,
  7662. "_groupIndex": 0,
  7663. "groupIndex": 0,
  7664. "_id": ""
  7665. },
  7666. {
  7667. "__type__": "cc.Label",
  7668. "_name": "",
  7669. "_objFlags": 0,
  7670. "node": {
  7671. "__id__": 218
  7672. },
  7673. "_enabled": true,
  7674. "_materials": [
  7675. {
  7676. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7677. }
  7678. ],
  7679. "_srcBlendFactor": 770,
  7680. "_dstBlendFactor": 771,
  7681. "_string": "Go to the altar",
  7682. "_N$string": "Go to the altar",
  7683. "_fontSize": 32,
  7684. "_lineHeight": 36,
  7685. "_enableWrapText": true,
  7686. "_N$file": {
  7687. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  7688. },
  7689. "_isSystemFontUsed": false,
  7690. "_spacingX": 0,
  7691. "_batchAsBitmap": false,
  7692. "_styleFlags": 0,
  7693. "_underlineHeight": 0,
  7694. "_N$horizontalAlign": 1,
  7695. "_N$verticalAlign": 1,
  7696. "_N$fontFamily": "Arial",
  7697. "_N$overflow": 0,
  7698. "_N$cacheMode": 0,
  7699. "_id": ""
  7700. },
  7701. {
  7702. "__type__": "cc.LabelOutline",
  7703. "_name": "",
  7704. "_objFlags": 0,
  7705. "node": {
  7706. "__id__": 218
  7707. },
  7708. "_enabled": true,
  7709. "_color": {
  7710. "__type__": "cc.Color",
  7711. "r": 190,
  7712. "g": 213,
  7713. "b": 4,
  7714. "a": 255
  7715. },
  7716. "_width": 5,
  7717. "_id": ""
  7718. },
  7719. {
  7720. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  7721. "_name": "",
  7722. "_objFlags": 0,
  7723. "node": {
  7724. "__id__": 218
  7725. },
  7726. "_enabled": true,
  7727. "_englishCase": 1,
  7728. "i18n_string": "t394",
  7729. "i18n_params": [],
  7730. "_addColon": false,
  7731. "_id": ""
  7732. },
  7733. {
  7734. "__type__": "cc.PrefabInfo",
  7735. "root": {
  7736. "__id__": 1
  7737. },
  7738. "asset": {
  7739. "__id__": 0
  7740. },
  7741. "fileId": "815uO6jCJLp5yUOxk/WKlp",
  7742. "sync": false
  7743. },
  7744. {
  7745. "__type__": "cc.Sprite",
  7746. "_name": "",
  7747. "_objFlags": 0,
  7748. "node": {
  7749. "__id__": 217
  7750. },
  7751. "_enabled": true,
  7752. "_materials": [
  7753. {
  7754. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7755. }
  7756. ],
  7757. "_srcBlendFactor": 770,
  7758. "_dstBlendFactor": 771,
  7759. "_spriteFrame": {
  7760. "__uuid__": "79ade49c-941d-4e47-a06a-8c8504fa6f4a"
  7761. },
  7762. "_type": 0,
  7763. "_sizeMode": 0,
  7764. "_fillType": 0,
  7765. "_fillCenter": {
  7766. "__type__": "cc.Vec2",
  7767. "x": 0,
  7768. "y": 0
  7769. },
  7770. "_fillStart": 0,
  7771. "_fillRange": 0,
  7772. "_isTrimmedMode": true,
  7773. "_atlas": null,
  7774. "_id": ""
  7775. },
  7776. {
  7777. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  7778. "_name": "",
  7779. "_objFlags": 0,
  7780. "node": {
  7781. "__id__": 217
  7782. },
  7783. "_enabled": true,
  7784. "openContinuous": true,
  7785. "continuousTime": 0.2,
  7786. "multiTouch": false,
  7787. "_id": ""
  7788. },
  7789. {
  7790. "__type__": "61994AafntNFIbmt1zoyLq+",
  7791. "_name": "",
  7792. "_objFlags": 0,
  7793. "node": {
  7794. "__id__": 217
  7795. },
  7796. "_enabled": true,
  7797. "_normalMaterial": null,
  7798. "_grayMaterial": null,
  7799. "duration": 0.1,
  7800. "zoomScale": 1.2,
  7801. "clickEvents": [
  7802. {
  7803. "__id__": 226
  7804. }
  7805. ],
  7806. "_N$interactable": true,
  7807. "_N$enableAutoGrayEffect": false,
  7808. "_N$transition": 3,
  7809. "transition": 3,
  7810. "_N$normalColor": {
  7811. "__type__": "cc.Color",
  7812. "r": 255,
  7813. "g": 255,
  7814. "b": 255,
  7815. "a": 255
  7816. },
  7817. "_N$pressedColor": {
  7818. "__type__": "cc.Color",
  7819. "r": 211,
  7820. "g": 211,
  7821. "b": 211,
  7822. "a": 255
  7823. },
  7824. "pressedColor": {
  7825. "__type__": "cc.Color",
  7826. "r": 211,
  7827. "g": 211,
  7828. "b": 211,
  7829. "a": 255
  7830. },
  7831. "_N$hoverColor": {
  7832. "__type__": "cc.Color",
  7833. "r": 255,
  7834. "g": 255,
  7835. "b": 255,
  7836. "a": 255
  7837. },
  7838. "hoverColor": {
  7839. "__type__": "cc.Color",
  7840. "r": 255,
  7841. "g": 255,
  7842. "b": 255,
  7843. "a": 255
  7844. },
  7845. "_N$disabledColor": {
  7846. "__type__": "cc.Color",
  7847. "r": 124,
  7848. "g": 124,
  7849. "b": 124,
  7850. "a": 255
  7851. },
  7852. "_N$normalSprite": null,
  7853. "_N$pressedSprite": null,
  7854. "pressedSprite": null,
  7855. "_N$hoverSprite": null,
  7856. "hoverSprite": null,
  7857. "_N$disabledSprite": null,
  7858. "_N$target": null,
  7859. "_id": ""
  7860. },
  7861. {
  7862. "__type__": "cc.ClickEvent",
  7863. "target": {
  7864. "__id__": 1
  7865. },
  7866. "component": "",
  7867. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  7868. "handler": "onGoAltarClick",
  7869. "customEventData": "1"
  7870. },
  7871. {
  7872. "__type__": "cc.PrefabInfo",
  7873. "root": {
  7874. "__id__": 1
  7875. },
  7876. "asset": {
  7877. "__id__": 0
  7878. },
  7879. "fileId": "f7wk9bf6pLRq3V+C/0FKT5",
  7880. "sync": false
  7881. },
  7882. {
  7883. "__type__": "cc.Node",
  7884. "_name": "btn_join",
  7885. "_objFlags": 0,
  7886. "_parent": {
  7887. "__id__": 1
  7888. },
  7889. "_children": [
  7890. {
  7891. "__id__": 229
  7892. }
  7893. ],
  7894. "_active": true,
  7895. "_components": [
  7896. {
  7897. "__id__": 234
  7898. },
  7899. {
  7900. "__id__": 235
  7901. },
  7902. {
  7903. "__id__": 236
  7904. }
  7905. ],
  7906. "_prefab": {
  7907. "__id__": 238
  7908. },
  7909. "_opacity": 255,
  7910. "_color": {
  7911. "__type__": "cc.Color",
  7912. "r": 255,
  7913. "g": 255,
  7914. "b": 255,
  7915. "a": 255
  7916. },
  7917. "_contentSize": {
  7918. "__type__": "cc.Size",
  7919. "width": 318,
  7920. "height": 129
  7921. },
  7922. "_anchorPoint": {
  7923. "__type__": "cc.Vec2",
  7924. "x": 0.5,
  7925. "y": 0.5
  7926. },
  7927. "_trs": {
  7928. "__type__": "TypedArray",
  7929. "ctor": "Float64Array",
  7930. "array": [
  7931. 679,
  7932. -434.53,
  7933. 0,
  7934. 0,
  7935. 0,
  7936. 0,
  7937. 1,
  7938. 1,
  7939. 1,
  7940. 0
  7941. ]
  7942. },
  7943. "_eulerAngles": {
  7944. "__type__": "cc.Vec3",
  7945. "x": 0,
  7946. "y": 0,
  7947. "z": 0
  7948. },
  7949. "_skewX": 0,
  7950. "_skewY": 0,
  7951. "_is3DNode": false,
  7952. "_groupIndex": 0,
  7953. "groupIndex": 0,
  7954. "_id": ""
  7955. },
  7956. {
  7957. "__type__": "cc.Node",
  7958. "_name": "lb",
  7959. "_objFlags": 0,
  7960. "_parent": {
  7961. "__id__": 228
  7962. },
  7963. "_children": [],
  7964. "_active": true,
  7965. "_components": [
  7966. {
  7967. "__id__": 230
  7968. },
  7969. {
  7970. "__id__": 231
  7971. },
  7972. {
  7973. "__id__": 232
  7974. }
  7975. ],
  7976. "_prefab": {
  7977. "__id__": 233
  7978. },
  7979. "_opacity": 255,
  7980. "_color": {
  7981. "__type__": "cc.Color",
  7982. "r": 68,
  7983. "g": 41,
  7984. "b": 0,
  7985. "a": 255
  7986. },
  7987. "_contentSize": {
  7988. "__type__": "cc.Size",
  7989. "width": 93.6,
  7990. "height": 67
  7991. },
  7992. "_anchorPoint": {
  7993. "__type__": "cc.Vec2",
  7994. "x": 0.5,
  7995. "y": 0.5
  7996. },
  7997. "_trs": {
  7998. "__type__": "TypedArray",
  7999. "ctor": "Float64Array",
  8000. "array": [
  8001. 0,
  8002. 5,
  8003. 0,
  8004. 0,
  8005. 0,
  8006. 0,
  8007. 1,
  8008. 1,
  8009. 1,
  8010. 1
  8011. ]
  8012. },
  8013. "_eulerAngles": {
  8014. "__type__": "cc.Vec3",
  8015. "x": 0,
  8016. "y": 0,
  8017. "z": 0
  8018. },
  8019. "_skewX": 0,
  8020. "_skewY": 0,
  8021. "_is3DNode": false,
  8022. "_groupIndex": 0,
  8023. "groupIndex": 0,
  8024. "_id": ""
  8025. },
  8026. {
  8027. "__type__": "cc.Label",
  8028. "_name": "",
  8029. "_objFlags": 0,
  8030. "node": {
  8031. "__id__": 229
  8032. },
  8033. "_enabled": true,
  8034. "_materials": [
  8035. {
  8036. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8037. }
  8038. ],
  8039. "_srcBlendFactor": 770,
  8040. "_dstBlendFactor": 771,
  8041. "_string": "Join",
  8042. "_N$string": "Join",
  8043. "_fontSize": 48,
  8044. "_lineHeight": 50,
  8045. "_enableWrapText": false,
  8046. "_N$file": {
  8047. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8048. },
  8049. "_isSystemFontUsed": false,
  8050. "_spacingX": 0,
  8051. "_batchAsBitmap": false,
  8052. "_styleFlags": 0,
  8053. "_underlineHeight": 0,
  8054. "_N$horizontalAlign": 1,
  8055. "_N$verticalAlign": 1,
  8056. "_N$fontFamily": "Arial",
  8057. "_N$overflow": 0,
  8058. "_N$cacheMode": 0,
  8059. "_id": ""
  8060. },
  8061. {
  8062. "__type__": "cc.LabelOutline",
  8063. "_name": "",
  8064. "_objFlags": 0,
  8065. "node": {
  8066. "__id__": 229
  8067. },
  8068. "_enabled": true,
  8069. "_color": {
  8070. "__type__": "cc.Color",
  8071. "r": 255,
  8072. "g": 210,
  8073. "b": 0,
  8074. "a": 255
  8075. },
  8076. "_width": 2,
  8077. "_id": ""
  8078. },
  8079. {
  8080. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  8081. "_name": "",
  8082. "_objFlags": 0,
  8083. "node": {
  8084. "__id__": 229
  8085. },
  8086. "_enabled": true,
  8087. "_englishCase": 1,
  8088. "i18n_string": "t30",
  8089. "i18n_params": [],
  8090. "_addColon": false,
  8091. "_id": ""
  8092. },
  8093. {
  8094. "__type__": "cc.PrefabInfo",
  8095. "root": {
  8096. "__id__": 1
  8097. },
  8098. "asset": {
  8099. "__id__": 0
  8100. },
  8101. "fileId": "e987OAwQ1BTI24/N47Sq65",
  8102. "sync": false
  8103. },
  8104. {
  8105. "__type__": "cc.Sprite",
  8106. "_name": "",
  8107. "_objFlags": 0,
  8108. "node": {
  8109. "__id__": 228
  8110. },
  8111. "_enabled": true,
  8112. "_materials": [
  8113. {
  8114. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8115. }
  8116. ],
  8117. "_srcBlendFactor": 770,
  8118. "_dstBlendFactor": 771,
  8119. "_spriteFrame": {
  8120. "__uuid__": "d3486a1f-4c52-44bd-924b-39e06794d99f"
  8121. },
  8122. "_type": 0,
  8123. "_sizeMode": 1,
  8124. "_fillType": 0,
  8125. "_fillCenter": {
  8126. "__type__": "cc.Vec2",
  8127. "x": 0,
  8128. "y": 0
  8129. },
  8130. "_fillStart": 0,
  8131. "_fillRange": 0,
  8132. "_isTrimmedMode": true,
  8133. "_atlas": null,
  8134. "_id": ""
  8135. },
  8136. {
  8137. "__type__": "466e8BS6wJF6bKBj6rcxcSE",
  8138. "_name": "",
  8139. "_objFlags": 0,
  8140. "node": {
  8141. "__id__": 228
  8142. },
  8143. "_enabled": true,
  8144. "openContinuous": true,
  8145. "continuousTime": 0.2,
  8146. "multiTouch": false,
  8147. "_id": ""
  8148. },
  8149. {
  8150. "__type__": "61994AafntNFIbmt1zoyLq+",
  8151. "_name": "",
  8152. "_objFlags": 0,
  8153. "node": {
  8154. "__id__": 228
  8155. },
  8156. "_enabled": true,
  8157. "_normalMaterial": null,
  8158. "_grayMaterial": null,
  8159. "duration": 0.1,
  8160. "zoomScale": 1.2,
  8161. "clickEvents": [
  8162. {
  8163. "__id__": 237
  8164. }
  8165. ],
  8166. "_N$interactable": true,
  8167. "_N$enableAutoGrayEffect": false,
  8168. "_N$transition": 3,
  8169. "transition": 3,
  8170. "_N$normalColor": {
  8171. "__type__": "cc.Color",
  8172. "r": 255,
  8173. "g": 255,
  8174. "b": 255,
  8175. "a": 255
  8176. },
  8177. "_N$pressedColor": {
  8178. "__type__": "cc.Color",
  8179. "r": 211,
  8180. "g": 211,
  8181. "b": 211,
  8182. "a": 255
  8183. },
  8184. "pressedColor": {
  8185. "__type__": "cc.Color",
  8186. "r": 211,
  8187. "g": 211,
  8188. "b": 211,
  8189. "a": 255
  8190. },
  8191. "_N$hoverColor": {
  8192. "__type__": "cc.Color",
  8193. "r": 255,
  8194. "g": 255,
  8195. "b": 255,
  8196. "a": 255
  8197. },
  8198. "hoverColor": {
  8199. "__type__": "cc.Color",
  8200. "r": 255,
  8201. "g": 255,
  8202. "b": 255,
  8203. "a": 255
  8204. },
  8205. "_N$disabledColor": {
  8206. "__type__": "cc.Color",
  8207. "r": 124,
  8208. "g": 124,
  8209. "b": 124,
  8210. "a": 255
  8211. },
  8212. "_N$normalSprite": null,
  8213. "_N$pressedSprite": null,
  8214. "pressedSprite": null,
  8215. "_N$hoverSprite": null,
  8216. "hoverSprite": null,
  8217. "_N$disabledSprite": null,
  8218. "_N$target": null,
  8219. "_id": ""
  8220. },
  8221. {
  8222. "__type__": "cc.ClickEvent",
  8223. "target": {
  8224. "__id__": 1
  8225. },
  8226. "component": "",
  8227. "_componentId": "17ef9TbFbdLLqYkU8YjT6fN",
  8228. "handler": "onUpClick",
  8229. "customEventData": ""
  8230. },
  8231. {
  8232. "__type__": "cc.PrefabInfo",
  8233. "root": {
  8234. "__id__": 1
  8235. },
  8236. "asset": {
  8237. "__id__": 0
  8238. },
  8239. "fileId": "1bZJCypJ1JxLCBUd5ohLRS",
  8240. "sync": false
  8241. },
  8242. {
  8243. "__type__": "cc.Node",
  8244. "_name": "common_frame3",
  8245. "_objFlags": 0,
  8246. "_parent": {
  8247. "__id__": 1
  8248. },
  8249. "_children": [],
  8250. "_active": true,
  8251. "_components": [
  8252. {
  8253. "__id__": 240
  8254. }
  8255. ],
  8256. "_prefab": {
  8257. "__id__": 241
  8258. },
  8259. "_opacity": 255,
  8260. "_color": {
  8261. "__type__": "cc.Color",
  8262. "r": 255,
  8263. "g": 255,
  8264. "b": 255,
  8265. "a": 255
  8266. },
  8267. "_contentSize": {
  8268. "__type__": "cc.Size",
  8269. "width": 520,
  8270. "height": 720
  8271. },
  8272. "_anchorPoint": {
  8273. "__type__": "cc.Vec2",
  8274. "x": 0.5,
  8275. "y": 0.5
  8276. },
  8277. "_trs": {
  8278. "__type__": "TypedArray",
  8279. "ctor": "Float64Array",
  8280. "array": [
  8281. 679,
  8282. 10,
  8283. 0,
  8284. 0,
  8285. 0,
  8286. 0,
  8287. 1,
  8288. 1,
  8289. 1,
  8290. 1
  8291. ]
  8292. },
  8293. "_eulerAngles": {
  8294. "__type__": "cc.Vec3",
  8295. "x": 0,
  8296. "y": 0,
  8297. "z": 0
  8298. },
  8299. "_skewX": 0,
  8300. "_skewY": 0,
  8301. "_is3DNode": false,
  8302. "_groupIndex": 0,
  8303. "groupIndex": 0,
  8304. "_id": ""
  8305. },
  8306. {
  8307. "__type__": "cc.Sprite",
  8308. "_name": "",
  8309. "_objFlags": 0,
  8310. "node": {
  8311. "__id__": 239
  8312. },
  8313. "_enabled": true,
  8314. "_materials": [
  8315. {
  8316. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8317. }
  8318. ],
  8319. "_srcBlendFactor": 770,
  8320. "_dstBlendFactor": 771,
  8321. "_spriteFrame": {
  8322. "__uuid__": "c9078637-a113-41c3-b7d9-c1135458b04d"
  8323. },
  8324. "_type": 1,
  8325. "_sizeMode": 0,
  8326. "_fillType": 0,
  8327. "_fillCenter": {
  8328. "__type__": "cc.Vec2",
  8329. "x": 0,
  8330. "y": 0
  8331. },
  8332. "_fillStart": 0,
  8333. "_fillRange": 0,
  8334. "_isTrimmedMode": true,
  8335. "_atlas": null,
  8336. "_id": ""
  8337. },
  8338. {
  8339. "__type__": "cc.PrefabInfo",
  8340. "root": {
  8341. "__id__": 1
  8342. },
  8343. "asset": {
  8344. "__id__": 0
  8345. },
  8346. "fileId": "a4AapY3rVHzo8KWktsqyR+",
  8347. "sync": false
  8348. },
  8349. {
  8350. "__type__": "cc.Node",
  8351. "_name": "roleName",
  8352. "_objFlags": 0,
  8353. "_parent": {
  8354. "__id__": 1
  8355. },
  8356. "_children": [],
  8357. "_active": true,
  8358. "_components": [
  8359. {
  8360. "__id__": 243
  8361. },
  8362. {
  8363. "__id__": 244
  8364. },
  8365. {
  8366. "__id__": 245
  8367. }
  8368. ],
  8369. "_prefab": {
  8370. "__id__": 246
  8371. },
  8372. "_opacity": 255,
  8373. "_color": {
  8374. "__type__": "cc.Color",
  8375. "r": 255,
  8376. "g": 255,
  8377. "b": 255,
  8378. "a": 255
  8379. },
  8380. "_contentSize": {
  8381. "__type__": "cc.Size",
  8382. "width": 279.97,
  8383. "height": 62.7
  8384. },
  8385. "_anchorPoint": {
  8386. "__type__": "cc.Vec2",
  8387. "x": 0.5,
  8388. "y": 0.5
  8389. },
  8390. "_trs": {
  8391. "__type__": "TypedArray",
  8392. "ctor": "Float64Array",
  8393. "array": [
  8394. 679,
  8395. 307.649,
  8396. 0,
  8397. 0,
  8398. 0,
  8399. 0,
  8400. 1,
  8401. 1,
  8402. 1,
  8403. 1
  8404. ]
  8405. },
  8406. "_eulerAngles": {
  8407. "__type__": "cc.Vec3",
  8408. "x": 0,
  8409. "y": 0,
  8410. "z": 0
  8411. },
  8412. "_skewX": 0,
  8413. "_skewY": 0,
  8414. "_is3DNode": false,
  8415. "_groupIndex": 0,
  8416. "groupIndex": 0,
  8417. "_id": ""
  8418. },
  8419. {
  8420. "__type__": "cc.Label",
  8421. "_name": "",
  8422. "_objFlags": 0,
  8423. "node": {
  8424. "__id__": 242
  8425. },
  8426. "_enabled": true,
  8427. "_materials": [
  8428. {
  8429. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8430. }
  8431. ],
  8432. "_srcBlendFactor": 770,
  8433. "_dstBlendFactor": 771,
  8434. "_string": "unlock properties",
  8435. "_N$string": "unlock properties",
  8436. "_fontSize": 36,
  8437. "_lineHeight": 45,
  8438. "_enableWrapText": true,
  8439. "_N$file": {
  8440. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  8441. },
  8442. "_isSystemFontUsed": false,
  8443. "_spacingX": 0,
  8444. "_batchAsBitmap": false,
  8445. "_styleFlags": 0,
  8446. "_underlineHeight": 0,
  8447. "_N$horizontalAlign": 1,
  8448. "_N$verticalAlign": 1,
  8449. "_N$fontFamily": "Arial",
  8450. "_N$overflow": 0,
  8451. "_N$cacheMode": 0,
  8452. "_id": ""
  8453. },
  8454. {
  8455. "__type__": "cc.LabelOutline",
  8456. "_name": "",
  8457. "_objFlags": 0,
  8458. "node": {
  8459. "__id__": 242
  8460. },
  8461. "_enabled": true,
  8462. "_color": {
  8463. "__type__": "cc.Color",
  8464. "r": 38,
  8465. "g": 17,
  8466. "b": 12,
  8467. "a": 255
  8468. },
  8469. "_width": 3,
  8470. "_id": ""
  8471. },
  8472. {
  8473. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  8474. "_name": "",
  8475. "_objFlags": 0,
  8476. "node": {
  8477. "__id__": 242
  8478. },
  8479. "_enabled": true,
  8480. "_englishCase": 0,
  8481. "i18n_string": "t46",
  8482. "i18n_params": [],
  8483. "_addColon": false,
  8484. "_id": ""
  8485. },
  8486. {
  8487. "__type__": "cc.PrefabInfo",
  8488. "root": {
  8489. "__id__": 1
  8490. },
  8491. "asset": {
  8492. "__id__": 0
  8493. },
  8494. "fileId": "a5eR48L7NAGpy9p4DgZTdj",
  8495. "sync": false
  8496. },
  8497. {
  8498. "__type__": "cc.Node",
  8499. "_name": "attrList",
  8500. "_objFlags": 0,
  8501. "_parent": {
  8502. "__id__": 1
  8503. },
  8504. "_children": [
  8505. {
  8506. "__id__": 248
  8507. }
  8508. ],
  8509. "_active": true,
  8510. "_components": [
  8511. {
  8512. "__id__": 269
  8513. },
  8514. {
  8515. "__id__": 270
  8516. }
  8517. ],
  8518. "_prefab": {
  8519. "__id__": 271
  8520. },
  8521. "_opacity": 255,
  8522. "_color": {
  8523. "__type__": "cc.Color",
  8524. "r": 186,
  8525. "g": 162,
  8526. "b": 102,
  8527. "a": 255
  8528. },
  8529. "_contentSize": {
  8530. "__type__": "cc.Size",
  8531. "width": 450,
  8532. "height": 550
  8533. },
  8534. "_anchorPoint": {
  8535. "__type__": "cc.Vec2",
  8536. "x": 0.5,
  8537. "y": 0.5
  8538. },
  8539. "_trs": {
  8540. "__type__": "TypedArray",
  8541. "ctor": "Float64Array",
  8542. "array": [
  8543. 677.445,
  8544. -10.016,
  8545. 0,
  8546. 0,
  8547. 0,
  8548. 0,
  8549. 1,
  8550. 1,
  8551. 1,
  8552. 1
  8553. ]
  8554. },
  8555. "_eulerAngles": {
  8556. "__type__": "cc.Vec3",
  8557. "x": 0,
  8558. "y": 0,
  8559. "z": 0
  8560. },
  8561. "_skewX": 0,
  8562. "_skewY": 0,
  8563. "_is3DNode": false,
  8564. "_groupIndex": 0,
  8565. "groupIndex": 0,
  8566. "_id": ""
  8567. },
  8568. {
  8569. "__type__": "cc.Node",
  8570. "_name": "view",
  8571. "_objFlags": 0,
  8572. "_parent": {
  8573. "__id__": 247
  8574. },
  8575. "_children": [
  8576. {
  8577. "__id__": 249
  8578. }
  8579. ],
  8580. "_active": true,
  8581. "_components": [
  8582. {
  8583. "__id__": 267
  8584. }
  8585. ],
  8586. "_prefab": {
  8587. "__id__": 268
  8588. },
  8589. "_opacity": 255,
  8590. "_color": {
  8591. "__type__": "cc.Color",
  8592. "r": 255,
  8593. "g": 255,
  8594. "b": 255,
  8595. "a": 255
  8596. },
  8597. "_contentSize": {
  8598. "__type__": "cc.Size",
  8599. "width": 450,
  8600. "height": 550
  8601. },
  8602. "_anchorPoint": {
  8603. "__type__": "cc.Vec2",
  8604. "x": 0.5,
  8605. "y": 1
  8606. },
  8607. "_trs": {
  8608. "__type__": "TypedArray",
  8609. "ctor": "Float64Array",
  8610. "array": [
  8611. 0,
  8612. 275,
  8613. 0,
  8614. 0,
  8615. 0,
  8616. 0,
  8617. 1,
  8618. 1,
  8619. 1,
  8620. 1
  8621. ]
  8622. },
  8623. "_eulerAngles": {
  8624. "__type__": "cc.Vec3",
  8625. "x": 0,
  8626. "y": 0,
  8627. "z": 0
  8628. },
  8629. "_skewX": 0,
  8630. "_skewY": 0,
  8631. "_is3DNode": false,
  8632. "_groupIndex": 0,
  8633. "groupIndex": 0,
  8634. "_id": ""
  8635. },
  8636. {
  8637. "__type__": "cc.Node",
  8638. "_name": "content",
  8639. "_objFlags": 0,
  8640. "_parent": {
  8641. "__id__": 248
  8642. },
  8643. "_children": [
  8644. {
  8645. "__id__": 250
  8646. }
  8647. ],
  8648. "_active": true,
  8649. "_components": [
  8650. {
  8651. "__id__": 265
  8652. }
  8653. ],
  8654. "_prefab": {
  8655. "__id__": 266
  8656. },
  8657. "_opacity": 255,
  8658. "_color": {
  8659. "__type__": "cc.Color",
  8660. "r": 255,
  8661. "g": 255,
  8662. "b": 255,
  8663. "a": 255
  8664. },
  8665. "_contentSize": {
  8666. "__type__": "cc.Size",
  8667. "width": 450,
  8668. "height": 550
  8669. },
  8670. "_anchorPoint": {
  8671. "__type__": "cc.Vec2",
  8672. "x": 0.5,
  8673. "y": 1
  8674. },
  8675. "_trs": {
  8676. "__type__": "TypedArray",
  8677. "ctor": "Float64Array",
  8678. "array": [
  8679. 0,
  8680. 0,
  8681. 0,
  8682. 0,
  8683. 0,
  8684. 0,
  8685. 1,
  8686. 1,
  8687. 1,
  8688. 1
  8689. ]
  8690. },
  8691. "_eulerAngles": {
  8692. "__type__": "cc.Vec3",
  8693. "x": 0,
  8694. "y": 0,
  8695. "z": 0
  8696. },
  8697. "_skewX": 0,
  8698. "_skewY": 0,
  8699. "_is3DNode": false,
  8700. "_groupIndex": 0,
  8701. "groupIndex": 0,
  8702. "_id": ""
  8703. },
  8704. {
  8705. "__type__": "cc.Node",
  8706. "_name": "item",
  8707. "_objFlags": 0,
  8708. "_parent": {
  8709. "__id__": 249
  8710. },
  8711. "_children": [
  8712. {
  8713. "__id__": 251
  8714. },
  8715. {
  8716. "__id__": 259
  8717. }
  8718. ],
  8719. "_active": true,
  8720. "_components": [
  8721. {
  8722. "__id__": 263
  8723. }
  8724. ],
  8725. "_prefab": {
  8726. "__id__": 264
  8727. },
  8728. "_opacity": 255,
  8729. "_color": {
  8730. "__type__": "cc.Color",
  8731. "r": 255,
  8732. "g": 255,
  8733. "b": 255,
  8734. "a": 255
  8735. },
  8736. "_contentSize": {
  8737. "__type__": "cc.Size",
  8738. "width": 450,
  8739. "height": 40.36
  8740. },
  8741. "_anchorPoint": {
  8742. "__type__": "cc.Vec2",
  8743. "x": 0.5,
  8744. "y": 1
  8745. },
  8746. "_trs": {
  8747. "__type__": "TypedArray",
  8748. "ctor": "Float64Array",
  8749. "array": [
  8750. 0,
  8751. -15,
  8752. 0,
  8753. 0,
  8754. 0,
  8755. 0,
  8756. 1,
  8757. 1,
  8758. 1,
  8759. 1
  8760. ]
  8761. },
  8762. "_eulerAngles": {
  8763. "__type__": "cc.Vec3",
  8764. "x": 0,
  8765. "y": 0,
  8766. "z": 0
  8767. },
  8768. "_skewX": 0,
  8769. "_skewY": 0,
  8770. "_is3DNode": false,
  8771. "_groupIndex": 0,
  8772. "groupIndex": 0,
  8773. "_id": ""
  8774. },
  8775. {
  8776. "__type__": "cc.Node",
  8777. "_name": "icon",
  8778. "_objFlags": 0,
  8779. "_parent": {
  8780. "__id__": 250
  8781. },
  8782. "_children": [
  8783. {
  8784. "__id__": 252
  8785. },
  8786. {
  8787. "__id__": 255
  8788. }
  8789. ],
  8790. "_active": true,
  8791. "_components": [],
  8792. "_prefab": {
  8793. "__id__": 258
  8794. },
  8795. "_opacity": 255,
  8796. "_color": {
  8797. "__type__": "cc.Color",
  8798. "r": 255,
  8799. "g": 255,
  8800. "b": 255,
  8801. "a": 255
  8802. },
  8803. "_contentSize": {
  8804. "__type__": "cc.Size",
  8805. "width": 0,
  8806. "height": 0
  8807. },
  8808. "_anchorPoint": {
  8809. "__type__": "cc.Vec2",
  8810. "x": 0.5,
  8811. "y": 0.5
  8812. },
  8813. "_trs": {
  8814. "__type__": "TypedArray",
  8815. "ctor": "Float64Array",
  8816. "array": [
  8817. 0,
  8818. 5,
  8819. 0,
  8820. 0,
  8821. 0,
  8822. 0,
  8823. 1,
  8824. 1,
  8825. 1,
  8826. 1
  8827. ]
  8828. },
  8829. "_eulerAngles": {
  8830. "__type__": "cc.Vec3",
  8831. "x": 0,
  8832. "y": 0,
  8833. "z": 0
  8834. },
  8835. "_skewX": 0,
  8836. "_skewY": 0,
  8837. "_is3DNode": false,
  8838. "_groupIndex": 0,
  8839. "groupIndex": 0,
  8840. "_id": ""
  8841. },
  8842. {
  8843. "__type__": "cc.Node",
  8844. "_name": "item_frame",
  8845. "_objFlags": 0,
  8846. "_parent": {
  8847. "__id__": 251
  8848. },
  8849. "_children": [],
  8850. "_active": true,
  8851. "_components": [
  8852. {
  8853. "__id__": 253
  8854. }
  8855. ],
  8856. "_prefab": {
  8857. "__id__": 254
  8858. },
  8859. "_opacity": 255,
  8860. "_color": {
  8861. "__type__": "cc.Color",
  8862. "r": 255,
  8863. "g": 255,
  8864. "b": 255,
  8865. "a": 255
  8866. },
  8867. "_contentSize": {
  8868. "__type__": "cc.Size",
  8869. "width": 150,
  8870. "height": 150
  8871. },
  8872. "_anchorPoint": {
  8873. "__type__": "cc.Vec2",
  8874. "x": 0.5,
  8875. "y": 0.5
  8876. },
  8877. "_trs": {
  8878. "__type__": "TypedArray",
  8879. "ctor": "Float64Array",
  8880. "array": [
  8881. -181.504,
  8882. -37.392,
  8883. 0,
  8884. 0,
  8885. 0,
  8886. 0,
  8887. 1,
  8888. 0.44,
  8889. 0.44,
  8890. 0.44
  8891. ]
  8892. },
  8893. "_eulerAngles": {
  8894. "__type__": "cc.Vec3",
  8895. "x": 0,
  8896. "y": 0,
  8897. "z": 0
  8898. },
  8899. "_skewX": 0,
  8900. "_skewY": 0,
  8901. "_is3DNode": false,
  8902. "_groupIndex": 0,
  8903. "groupIndex": 0,
  8904. "_id": ""
  8905. },
  8906. {
  8907. "__type__": "cc.Sprite",
  8908. "_name": "",
  8909. "_objFlags": 0,
  8910. "node": {
  8911. "__id__": 252
  8912. },
  8913. "_enabled": true,
  8914. "_materials": [
  8915. {
  8916. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8917. }
  8918. ],
  8919. "_srcBlendFactor": 770,
  8920. "_dstBlendFactor": 771,
  8921. "_spriteFrame": {
  8922. "__uuid__": "9001cedd-06f1-4884-8ed1-17038fad7fa6"
  8923. },
  8924. "_type": 0,
  8925. "_sizeMode": 0,
  8926. "_fillType": 0,
  8927. "_fillCenter": {
  8928. "__type__": "cc.Vec2",
  8929. "x": 0,
  8930. "y": 0
  8931. },
  8932. "_fillStart": 0,
  8933. "_fillRange": 0,
  8934. "_isTrimmedMode": true,
  8935. "_atlas": null,
  8936. "_id": ""
  8937. },
  8938. {
  8939. "__type__": "cc.PrefabInfo",
  8940. "root": {
  8941. "__id__": 1
  8942. },
  8943. "asset": {
  8944. "__id__": 0
  8945. },
  8946. "fileId": "47CcS1TVhK6ZIcZG+znaEi",
  8947. "sync": false
  8948. },
  8949. {
  8950. "__type__": "cc.Node",
  8951. "_name": "lock_1",
  8952. "_objFlags": 0,
  8953. "_parent": {
  8954. "__id__": 251
  8955. },
  8956. "_children": [],
  8957. "_active": true,
  8958. "_components": [
  8959. {
  8960. "__id__": 256
  8961. }
  8962. ],
  8963. "_prefab": {
  8964. "__id__": 257
  8965. },
  8966. "_opacity": 255,
  8967. "_color": {
  8968. "__type__": "cc.Color",
  8969. "r": 255,
  8970. "g": 255,
  8971. "b": 255,
  8972. "a": 255
  8973. },
  8974. "_contentSize": {
  8975. "__type__": "cc.Size",
  8976. "width": 86,
  8977. "height": 101
  8978. },
  8979. "_anchorPoint": {
  8980. "__type__": "cc.Vec2",
  8981. "x": 0.5,
  8982. "y": 0.5
  8983. },
  8984. "_trs": {
  8985. "__type__": "TypedArray",
  8986. "ctor": "Float64Array",
  8987. "array": [
  8988. -181.504,
  8989. -37.392,
  8990. 0,
  8991. 0,
  8992. 0,
  8993. 0,
  8994. 1,
  8995. 0.5,
  8996. 0.5,
  8997. 1
  8998. ]
  8999. },
  9000. "_eulerAngles": {
  9001. "__type__": "cc.Vec3",
  9002. "x": 0,
  9003. "y": 0,
  9004. "z": 0
  9005. },
  9006. "_skewX": 0,
  9007. "_skewY": 0,
  9008. "_is3DNode": false,
  9009. "_groupIndex": 0,
  9010. "groupIndex": 0,
  9011. "_id": ""
  9012. },
  9013. {
  9014. "__type__": "cc.Sprite",
  9015. "_name": "",
  9016. "_objFlags": 0,
  9017. "node": {
  9018. "__id__": 255
  9019. },
  9020. "_enabled": true,
  9021. "_materials": [
  9022. {
  9023. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9024. }
  9025. ],
  9026. "_srcBlendFactor": 770,
  9027. "_dstBlendFactor": 771,
  9028. "_spriteFrame": {
  9029. "__uuid__": "954cc19b-81e3-49ef-94ce-3636e473a277"
  9030. },
  9031. "_type": 0,
  9032. "_sizeMode": 1,
  9033. "_fillType": 0,
  9034. "_fillCenter": {
  9035. "__type__": "cc.Vec2",
  9036. "x": 0,
  9037. "y": 0
  9038. },
  9039. "_fillStart": 0,
  9040. "_fillRange": 0,
  9041. "_isTrimmedMode": true,
  9042. "_atlas": null,
  9043. "_id": ""
  9044. },
  9045. {
  9046. "__type__": "cc.PrefabInfo",
  9047. "root": {
  9048. "__id__": 1
  9049. },
  9050. "asset": {
  9051. "__id__": 0
  9052. },
  9053. "fileId": "14Qfh5x/xOhKDC4FDDlIgD",
  9054. "sync": false
  9055. },
  9056. {
  9057. "__type__": "cc.PrefabInfo",
  9058. "root": {
  9059. "__id__": 1
  9060. },
  9061. "asset": {
  9062. "__id__": 0
  9063. },
  9064. "fileId": "1eeUyShalOqr8vo81bejid",
  9065. "sync": false
  9066. },
  9067. {
  9068. "__type__": "cc.Node",
  9069. "_name": "richText",
  9070. "_objFlags": 0,
  9071. "_parent": {
  9072. "__id__": 250
  9073. },
  9074. "_children": [],
  9075. "_active": true,
  9076. "_components": [
  9077. {
  9078. "__id__": 260
  9079. },
  9080. {
  9081. "__id__": 261
  9082. }
  9083. ],
  9084. "_prefab": {
  9085. "__id__": 262
  9086. },
  9087. "_opacity": 255,
  9088. "_color": {
  9089. "__type__": "cc.Color",
  9090. "r": 255,
  9091. "g": 255,
  9092. "b": 255,
  9093. "a": 255
  9094. },
  9095. "_contentSize": {
  9096. "__type__": "cc.Size",
  9097. "width": 345,
  9098. "height": 45.36
  9099. },
  9100. "_anchorPoint": {
  9101. "__type__": "cc.Vec2",
  9102. "x": 0.5,
  9103. "y": 1
  9104. },
  9105. "_trs": {
  9106. "__type__": "TypedArray",
  9107. "ctor": "Float64Array",
  9108. "array": [
  9109. 40,
  9110. 5,
  9111. 0,
  9112. 0,
  9113. 0,
  9114. 0,
  9115. 1,
  9116. 1,
  9117. 1,
  9118. 1
  9119. ]
  9120. },
  9121. "_eulerAngles": {
  9122. "__type__": "cc.Vec3",
  9123. "x": 0,
  9124. "y": 0,
  9125. "z": 0
  9126. },
  9127. "_skewX": 0,
  9128. "_skewY": 0,
  9129. "_is3DNode": false,
  9130. "_groupIndex": 0,
  9131. "groupIndex": 0,
  9132. "_id": ""
  9133. },
  9134. {
  9135. "__type__": "cc.RichText",
  9136. "_name": "",
  9137. "_objFlags": 0,
  9138. "node": {
  9139. "__id__": 259
  9140. },
  9141. "_enabled": true,
  9142. "_fontFamily": "Arial",
  9143. "_isSystemFontUsed": false,
  9144. "_N$string": "",
  9145. "_N$horizontalAlign": 0,
  9146. "_N$fontSize": 30,
  9147. "_N$font": {
  9148. "__uuid__": "53fae5bd-72f8-48d5-9465-9798bf9bde5c"
  9149. },
  9150. "_N$cacheMode": 0,
  9151. "_N$maxWidth": 345,
  9152. "_N$lineHeight": 36,
  9153. "_N$imageAtlas": null,
  9154. "_N$handleTouchEvent": true,
  9155. "_id": ""
  9156. },
  9157. {
  9158. "__type__": "41ebaVoPpRA4Kp67XEdHfZn",
  9159. "_name": "",
  9160. "_objFlags": 0,
  9161. "node": {
  9162. "__id__": 259
  9163. },
  9164. "_enabled": true,
  9165. "_englishCase": 0,
  9166. "i18n_string": "",
  9167. "i18n_params": [],
  9168. "_addColon": false,
  9169. "_id": ""
  9170. },
  9171. {
  9172. "__type__": "cc.PrefabInfo",
  9173. "root": {
  9174. "__id__": 1
  9175. },
  9176. "asset": {
  9177. "__id__": 0
  9178. },
  9179. "fileId": "97rOlW4pZAW7lsXlOcYle/",
  9180. "sync": false
  9181. },
  9182. {
  9183. "__type__": "cc.Layout",
  9184. "_name": "",
  9185. "_objFlags": 0,
  9186. "node": {
  9187. "__id__": 250
  9188. },
  9189. "_enabled": true,
  9190. "_layoutSize": {
  9191. "__type__": "cc.Size",
  9192. "width": 450,
  9193. "height": 40.36
  9194. },
  9195. "_resize": 1,
  9196. "_N$layoutType": 2,
  9197. "_N$cellSize": {
  9198. "__type__": "cc.Size",
  9199. "width": 40,
  9200. "height": 40
  9201. },
  9202. "_N$startAxis": 0,
  9203. "_N$paddingLeft": 0,
  9204. "_N$paddingRight": 0,
  9205. "_N$paddingTop": -5,
  9206. "_N$paddingBottom": 0,
  9207. "_N$spacingX": 0,
  9208. "_N$spacingY": 0,
  9209. "_N$verticalDirection": 1,
  9210. "_N$horizontalDirection": 0,
  9211. "_N$affectedByScale": false,
  9212. "_id": ""
  9213. },
  9214. {
  9215. "__type__": "cc.PrefabInfo",
  9216. "root": {
  9217. "__id__": 1
  9218. },
  9219. "asset": {
  9220. "__id__": 0
  9221. },
  9222. "fileId": "fbS1vazKhLMp+GMgrqc4F+",
  9223. "sync": false
  9224. },
  9225. {
  9226. "__type__": "cc.Layout",
  9227. "_name": "",
  9228. "_objFlags": 0,
  9229. "node": {
  9230. "__id__": 249
  9231. },
  9232. "_enabled": true,
  9233. "_layoutSize": {
  9234. "__type__": "cc.Size",
  9235. "width": 450,
  9236. "height": 550
  9237. },
  9238. "_resize": 0,
  9239. "_N$layoutType": 2,
  9240. "_N$cellSize": {
  9241. "__type__": "cc.Size",
  9242. "width": 40,
  9243. "height": 40
  9244. },
  9245. "_N$startAxis": 0,
  9246. "_N$paddingLeft": 0,
  9247. "_N$paddingRight": 0,
  9248. "_N$paddingTop": 15,
  9249. "_N$paddingBottom": 0,
  9250. "_N$spacingX": 0,
  9251. "_N$spacingY": 10,
  9252. "_N$verticalDirection": 1,
  9253. "_N$horizontalDirection": 0,
  9254. "_N$affectedByScale": false,
  9255. "_id": ""
  9256. },
  9257. {
  9258. "__type__": "cc.PrefabInfo",
  9259. "root": {
  9260. "__id__": 1
  9261. },
  9262. "asset": {
  9263. "__id__": 0
  9264. },
  9265. "fileId": "66JaOLVHlCHpE8Kkf+SuM+",
  9266. "sync": false
  9267. },
  9268. {
  9269. "__type__": "cc.Mask",
  9270. "_name": "",
  9271. "_objFlags": 0,
  9272. "node": {
  9273. "__id__": 248
  9274. },
  9275. "_enabled": true,
  9276. "_materials": [
  9277. {
  9278. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9279. }
  9280. ],
  9281. "_spriteFrame": null,
  9282. "_type": 0,
  9283. "_segments": 64,
  9284. "_N$alphaThreshold": 0,
  9285. "_N$inverted": false,
  9286. "_id": ""
  9287. },
  9288. {
  9289. "__type__": "cc.PrefabInfo",
  9290. "root": {
  9291. "__id__": 1
  9292. },
  9293. "asset": {
  9294. "__id__": 0
  9295. },
  9296. "fileId": "ccSGXqwNpGQLG7hH3DRF4w",
  9297. "sync": false
  9298. },
  9299. {
  9300. "__type__": "cc.ScrollView",
  9301. "_name": "",
  9302. "_objFlags": 0,
  9303. "node": {
  9304. "__id__": 247
  9305. },
  9306. "_enabled": true,
  9307. "horizontal": false,
  9308. "vertical": true,
  9309. "inertia": true,
  9310. "brake": 0.75,
  9311. "elastic": false,
  9312. "bounceDuration": 0.23,
  9313. "scrollEvents": [],
  9314. "cancelInnerEvents": false,
  9315. "_N$content": {
  9316. "__id__": 249
  9317. },
  9318. "content": {
  9319. "__id__": 249
  9320. },
  9321. "_N$horizontalScrollBar": null,
  9322. "_N$verticalScrollBar": null,
  9323. "_id": ""
  9324. },
  9325. {
  9326. "__type__": "cc.Sprite",
  9327. "_name": "",
  9328. "_objFlags": 0,
  9329. "node": {
  9330. "__id__": 247
  9331. },
  9332. "_enabled": true,
  9333. "_materials": [
  9334. {
  9335. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9336. }
  9337. ],
  9338. "_srcBlendFactor": 770,
  9339. "_dstBlendFactor": 771,
  9340. "_spriteFrame": {
  9341. "__uuid__": "05b69229-67ad-42c3-bf71-09c34d9def2b"
  9342. },
  9343. "_type": 1,
  9344. "_sizeMode": 0,
  9345. "_fillType": 0,
  9346. "_fillCenter": {
  9347. "__type__": "cc.Vec2",
  9348. "x": 0,
  9349. "y": 0
  9350. },
  9351. "_fillStart": 0,
  9352. "_fillRange": 0,
  9353. "_isTrimmedMode": true,
  9354. "_atlas": null,
  9355. "_id": ""
  9356. },
  9357. {
  9358. "__type__": "cc.PrefabInfo",
  9359. "root": {
  9360. "__id__": 1
  9361. },
  9362. "asset": {
  9363. "__id__": 0
  9364. },
  9365. "fileId": "73Gi1H1AdBFpxpCH1SewR6",
  9366. "sync": false
  9367. },
  9368. {
  9369. "__type__": "cc.Node",
  9370. "_name": "levelGuide",
  9371. "_objFlags": 0,
  9372. "_parent": {
  9373. "__id__": 1
  9374. },
  9375. "_children": [],
  9376. "_active": false,
  9377. "_components": [],
  9378. "_prefab": {
  9379. "__id__": 273
  9380. },
  9381. "_opacity": 255,
  9382. "_color": {
  9383. "__type__": "cc.Color",
  9384. "r": 255,
  9385. "g": 255,
  9386. "b": 255,
  9387. "a": 255
  9388. },
  9389. "_contentSize": {
  9390. "__type__": "cc.Size",
  9391. "width": 610,
  9392. "height": 200
  9393. },
  9394. "_anchorPoint": {
  9395. "__type__": "cc.Vec2",
  9396. "x": 0.5,
  9397. "y": 0.5
  9398. },
  9399. "_trs": {
  9400. "__type__": "TypedArray",
  9401. "ctor": "Float64Array",
  9402. "array": [
  9403. -1,
  9404. -402,
  9405. 0,
  9406. 0,
  9407. 0,
  9408. 0,
  9409. 1,
  9410. 1,
  9411. 1,
  9412. 1
  9413. ]
  9414. },
  9415. "_eulerAngles": {
  9416. "__type__": "cc.Vec3",
  9417. "x": 0,
  9418. "y": 0,
  9419. "z": 0
  9420. },
  9421. "_skewX": 0,
  9422. "_skewY": 0,
  9423. "_is3DNode": false,
  9424. "_groupIndex": 0,
  9425. "groupIndex": 0,
  9426. "_id": ""
  9427. },
  9428. {
  9429. "__type__": "cc.PrefabInfo",
  9430. "root": {
  9431. "__id__": 1
  9432. },
  9433. "asset": {
  9434. "__id__": 0
  9435. },
  9436. "fileId": "f6tgsjB5hGJ6QU3GVeo2zO",
  9437. "sync": false
  9438. },
  9439. {
  9440. "__type__": "cc.Node",
  9441. "_name": "lvupAni",
  9442. "_objFlags": 0,
  9443. "_parent": {
  9444. "__id__": 1
  9445. },
  9446. "_children": [],
  9447. "_active": true,
  9448. "_components": [
  9449. {
  9450. "__id__": 275
  9451. },
  9452. {
  9453. "__id__": 276
  9454. }
  9455. ],
  9456. "_prefab": {
  9457. "__id__": 277
  9458. },
  9459. "_opacity": 255,
  9460. "_color": {
  9461. "__type__": "cc.Color",
  9462. "r": 255,
  9463. "g": 255,
  9464. "b": 255,
  9465. "a": 255
  9466. },
  9467. "_contentSize": {
  9468. "__type__": "cc.Size",
  9469. "width": 337,
  9470. "height": 633
  9471. },
  9472. "_anchorPoint": {
  9473. "__type__": "cc.Vec2",
  9474. "x": 0.5,
  9475. "y": 0.5
  9476. },
  9477. "_trs": {
  9478. "__type__": "TypedArray",
  9479. "ctor": "Float64Array",
  9480. "array": [
  9481. 0,
  9482. 103.633,
  9483. 0,
  9484. 0,
  9485. 0,
  9486. 0,
  9487. 1,
  9488. 1,
  9489. 1,
  9490. 1
  9491. ]
  9492. },
  9493. "_eulerAngles": {
  9494. "__type__": "cc.Vec3",
  9495. "x": 0,
  9496. "y": 0,
  9497. "z": 0
  9498. },
  9499. "_skewX": 0,
  9500. "_skewY": 0,
  9501. "_is3DNode": false,
  9502. "_groupIndex": 0,
  9503. "groupIndex": 0,
  9504. "_id": ""
  9505. },
  9506. {
  9507. "__type__": "cc.Animation",
  9508. "_name": "",
  9509. "_objFlags": 0,
  9510. "node": {
  9511. "__id__": 274
  9512. },
  9513. "_enabled": true,
  9514. "_defaultClip": null,
  9515. "_clips": [
  9516. {
  9517. "__uuid__": "679013e2-6df3-4012-b966-35eccc53bebf"
  9518. }
  9519. ],
  9520. "playOnLoad": false,
  9521. "_id": ""
  9522. },
  9523. {
  9524. "__type__": "cc.Sprite",
  9525. "_name": "",
  9526. "_objFlags": 0,
  9527. "node": {
  9528. "__id__": 274
  9529. },
  9530. "_enabled": true,
  9531. "_materials": [
  9532. {
  9533. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9534. }
  9535. ],
  9536. "_srcBlendFactor": 770,
  9537. "_dstBlendFactor": 771,
  9538. "_spriteFrame": null,
  9539. "_type": 0,
  9540. "_sizeMode": 2,
  9541. "_fillType": 0,
  9542. "_fillCenter": {
  9543. "__type__": "cc.Vec2",
  9544. "x": 0,
  9545. "y": 0
  9546. },
  9547. "_fillStart": 0,
  9548. "_fillRange": 0,
  9549. "_isTrimmedMode": false,
  9550. "_atlas": null,
  9551. "_id": ""
  9552. },
  9553. {
  9554. "__type__": "cc.PrefabInfo",
  9555. "root": {
  9556. "__id__": 1
  9557. },
  9558. "asset": {
  9559. "__id__": 0
  9560. },
  9561. "fileId": "84Fm3e5u5HXbY/pRxPqxlT",
  9562. "sync": false
  9563. },
  9564. {
  9565. "__type__": "17ef9TbFbdLLqYkU8YjT6fN",
  9566. "_name": "",
  9567. "_objFlags": 0,
  9568. "node": {
  9569. "__id__": 1
  9570. },
  9571. "_enabled": true,
  9572. "quickClose": false,
  9573. "cache": false,
  9574. "showType": 0,
  9575. "prevent": true,
  9576. "_id": ""
  9577. },
  9578. {
  9579. "__type__": "cc.PrefabInfo",
  9580. "root": {
  9581. "__id__": 1
  9582. },
  9583. "asset": {
  9584. "__id__": 0
  9585. },
  9586. "fileId": "",
  9587. "sync": false
  9588. }
  9589. ]