upgradeGunUI.prefab 144 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "upgradeGunUI",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "upgradeGunUI",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 245
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 341
  32. },
  33. {
  34. "__id__": 343
  35. },
  36. {
  37. "__id__": 345
  38. },
  39. {
  40. "__id__": 347
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 349
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "UI",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [
  84. {
  85. "__id__": 3
  86. },
  87. {
  88. "__id__": 57
  89. },
  90. {
  91. "__id__": 63
  92. }
  93. ],
  94. "_active": true,
  95. "_components": [
  96. {
  97. "__id__": 238
  98. },
  99. {
  100. "__id__": 240
  101. },
  102. {
  103. "__id__": 242
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 244
  108. },
  109. "_lpos": {
  110. "__type__": "cc.Vec3",
  111. "x": 0,
  112. "y": 0,
  113. "z": 0
  114. },
  115. "_lrot": {
  116. "__type__": "cc.Quat",
  117. "x": 0,
  118. "y": 0,
  119. "z": 0,
  120. "w": 1
  121. },
  122. "_lscale": {
  123. "__type__": "cc.Vec3",
  124. "x": 1,
  125. "y": 1,
  126. "z": 1
  127. },
  128. "_mobility": 0,
  129. "_layer": 33554432,
  130. "_euler": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_id": ""
  137. },
  138. {
  139. "__type__": "cc.Node",
  140. "_name": "top",
  141. "_objFlags": 0,
  142. "__editorExtras__": {},
  143. "_parent": {
  144. "__id__": 2
  145. },
  146. "_children": [
  147. {
  148. "__id__": 4
  149. },
  150. {
  151. "__id__": 16
  152. }
  153. ],
  154. "_active": true,
  155. "_components": [
  156. {
  157. "__id__": 48
  158. },
  159. {
  160. "__id__": 50
  161. },
  162. {
  163. "__id__": 52
  164. },
  165. {
  166. "__id__": 54
  167. }
  168. ],
  169. "_prefab": {
  170. "__id__": 56
  171. },
  172. "_lpos": {
  173. "__type__": "cc.Vec3",
  174. "x": 0,
  175. "y": 740.0000000000001,
  176. "z": 0
  177. },
  178. "_lrot": {
  179. "__type__": "cc.Quat",
  180. "x": 0,
  181. "y": 0,
  182. "z": 0,
  183. "w": 1
  184. },
  185. "_lscale": {
  186. "__type__": "cc.Vec3",
  187. "x": 1,
  188. "y": 1,
  189. "z": 1
  190. },
  191. "_mobility": 0,
  192. "_layer": 33554432,
  193. "_euler": {
  194. "__type__": "cc.Vec3",
  195. "x": 0,
  196. "y": 0,
  197. "z": 0
  198. },
  199. "_id": ""
  200. },
  201. {
  202. "__type__": "cc.Node",
  203. "_name": "close_btn",
  204. "_objFlags": 0,
  205. "__editorExtras__": {},
  206. "_parent": {
  207. "__id__": 3
  208. },
  209. "_children": [],
  210. "_active": true,
  211. "_components": [
  212. {
  213. "__id__": 5
  214. },
  215. {
  216. "__id__": 7
  217. },
  218. {
  219. "__id__": 9
  220. },
  221. {
  222. "__id__": 11
  223. },
  224. {
  225. "__id__": 13
  226. }
  227. ],
  228. "_prefab": {
  229. "__id__": 15
  230. },
  231. "_lpos": {
  232. "__type__": "cc.Vec3",
  233. "x": -298,
  234. "y": 0,
  235. "z": 0
  236. },
  237. "_lrot": {
  238. "__type__": "cc.Quat",
  239. "x": 0,
  240. "y": 0,
  241. "z": 0,
  242. "w": 1
  243. },
  244. "_lscale": {
  245. "__type__": "cc.Vec3",
  246. "x": 1,
  247. "y": 1,
  248. "z": 1
  249. },
  250. "_mobility": 0,
  251. "_layer": 33554432,
  252. "_euler": {
  253. "__type__": "cc.Vec3",
  254. "x": 0,
  255. "y": 0,
  256. "z": 0
  257. },
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.UITransform",
  262. "_name": "",
  263. "_objFlags": 0,
  264. "__editorExtras__": {},
  265. "node": {
  266. "__id__": 4
  267. },
  268. "_enabled": true,
  269. "__prefab": {
  270. "__id__": 6
  271. },
  272. "_contentSize": {
  273. "__type__": "cc.Size",
  274. "width": 84,
  275. "height": 85
  276. },
  277. "_anchorPoint": {
  278. "__type__": "cc.Vec2",
  279. "x": 0.5,
  280. "y": 0.5
  281. },
  282. "_id": ""
  283. },
  284. {
  285. "__type__": "cc.CompPrefabInfo",
  286. "fileId": "fe4kKGW7xPbqMXRJk51684"
  287. },
  288. {
  289. "__type__": "cc.Sprite",
  290. "_name": "",
  291. "_objFlags": 0,
  292. "__editorExtras__": {},
  293. "node": {
  294. "__id__": 4
  295. },
  296. "_enabled": true,
  297. "__prefab": {
  298. "__id__": 8
  299. },
  300. "_customMaterial": null,
  301. "_srcBlendFactor": 2,
  302. "_dstBlendFactor": 4,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_spriteFrame": {
  311. "__uuid__": "96e84e26-deaf-4e47-acd3-5867385b14d7@f9941",
  312. "__expectedType__": "cc.SpriteFrame"
  313. },
  314. "_type": 0,
  315. "_fillType": 0,
  316. "_sizeMode": 1,
  317. "_fillCenter": {
  318. "__type__": "cc.Vec2",
  319. "x": 0,
  320. "y": 0
  321. },
  322. "_fillStart": 0,
  323. "_fillRange": 0,
  324. "_isTrimmedMode": true,
  325. "_useGrayscale": false,
  326. "_atlas": null,
  327. "_id": ""
  328. },
  329. {
  330. "__type__": "cc.CompPrefabInfo",
  331. "fileId": "45mKWdQHpMgp7eR3mO7QMe"
  332. },
  333. {
  334. "__type__": "cc.Widget",
  335. "_name": "",
  336. "_objFlags": 0,
  337. "__editorExtras__": {},
  338. "node": {
  339. "__id__": 4
  340. },
  341. "_enabled": true,
  342. "__prefab": {
  343. "__id__": 10
  344. },
  345. "_alignFlags": 9,
  346. "_target": null,
  347. "_left": 20,
  348. "_right": 0,
  349. "_top": 17.5,
  350. "_bottom": 0,
  351. "_horizontalCenter": 0,
  352. "_verticalCenter": 0,
  353. "_isAbsLeft": true,
  354. "_isAbsRight": true,
  355. "_isAbsTop": true,
  356. "_isAbsBottom": true,
  357. "_isAbsHorizontalCenter": true,
  358. "_isAbsVerticalCenter": true,
  359. "_originalWidth": 0,
  360. "_originalHeight": 0,
  361. "_alignMode": 2,
  362. "_lockFlags": 0,
  363. "_id": ""
  364. },
  365. {
  366. "__type__": "cc.CompPrefabInfo",
  367. "fileId": "32ADTr1XRACaJPhUU1/dWR"
  368. },
  369. {
  370. "__type__": "cc.Button",
  371. "_name": "",
  372. "_objFlags": 0,
  373. "__editorExtras__": {},
  374. "node": {
  375. "__id__": 4
  376. },
  377. "_enabled": true,
  378. "__prefab": {
  379. "__id__": 12
  380. },
  381. "clickEvents": [],
  382. "_interactable": true,
  383. "_transition": 3,
  384. "_normalColor": {
  385. "__type__": "cc.Color",
  386. "r": 214,
  387. "g": 214,
  388. "b": 214,
  389. "a": 255
  390. },
  391. "_hoverColor": {
  392. "__type__": "cc.Color",
  393. "r": 211,
  394. "g": 211,
  395. "b": 211,
  396. "a": 255
  397. },
  398. "_pressedColor": {
  399. "__type__": "cc.Color",
  400. "r": 255,
  401. "g": 255,
  402. "b": 255,
  403. "a": 255
  404. },
  405. "_disabledColor": {
  406. "__type__": "cc.Color",
  407. "r": 124,
  408. "g": 124,
  409. "b": 124,
  410. "a": 255
  411. },
  412. "_normalSprite": null,
  413. "_hoverSprite": null,
  414. "_pressedSprite": null,
  415. "_disabledSprite": null,
  416. "_duration": 0.1,
  417. "_zoomScale": 1.01,
  418. "_target": {
  419. "__id__": 4
  420. },
  421. "_id": ""
  422. },
  423. {
  424. "__type__": "cc.CompPrefabInfo",
  425. "fileId": "b5K4U439tKhocNqkvMsOiZ"
  426. },
  427. {
  428. "__type__": "cc.Widget",
  429. "_name": "",
  430. "_objFlags": 0,
  431. "__editorExtras__": {},
  432. "node": {
  433. "__id__": 4
  434. },
  435. "_enabled": true,
  436. "__prefab": {
  437. "__id__": 14
  438. },
  439. "_alignFlags": 33,
  440. "_target": null,
  441. "_left": 0,
  442. "_right": 744,
  443. "_top": -0.7709999999999582,
  444. "_bottom": 0,
  445. "_horizontalCenter": 0,
  446. "_verticalCenter": 0,
  447. "_isAbsLeft": true,
  448. "_isAbsRight": true,
  449. "_isAbsTop": true,
  450. "_isAbsBottom": true,
  451. "_isAbsHorizontalCenter": true,
  452. "_isAbsVerticalCenter": true,
  453. "_originalWidth": 0,
  454. "_originalHeight": 0,
  455. "_alignMode": 2,
  456. "_lockFlags": 0,
  457. "_id": ""
  458. },
  459. {
  460. "__type__": "cc.CompPrefabInfo",
  461. "fileId": "2eDMoKpeFPyLB61xOtgU9G"
  462. },
  463. {
  464. "__type__": "cc.PrefabInfo",
  465. "root": {
  466. "__id__": 1
  467. },
  468. "asset": {
  469. "__id__": 0
  470. },
  471. "fileId": "48NyrlN/9LS6G8nvhFrCFW",
  472. "instance": null,
  473. "targetOverrides": null,
  474. "nestedPrefabInstanceRoots": null
  475. },
  476. {
  477. "__type__": "cc.Node",
  478. "_name": "top_menus",
  479. "_objFlags": 0,
  480. "__editorExtras__": {},
  481. "_parent": {
  482. "__id__": 3
  483. },
  484. "_children": [
  485. {
  486. "__id__": 17
  487. },
  488. {
  489. "__id__": 29
  490. }
  491. ],
  492. "_active": true,
  493. "_components": [
  494. {
  495. "__id__": 41
  496. },
  497. {
  498. "__id__": 43
  499. },
  500. {
  501. "__id__": 45
  502. }
  503. ],
  504. "_prefab": {
  505. "__id__": 47
  506. },
  507. "_lpos": {
  508. "__type__": "cc.Vec3",
  509. "x": -211,
  510. "y": 0,
  511. "z": 0
  512. },
  513. "_lrot": {
  514. "__type__": "cc.Quat",
  515. "x": 0,
  516. "y": 0,
  517. "z": 0,
  518. "w": 1
  519. },
  520. "_lscale": {
  521. "__type__": "cc.Vec3",
  522. "x": 1,
  523. "y": 1,
  524. "z": 1
  525. },
  526. "_mobility": 0,
  527. "_layer": 33554432,
  528. "_euler": {
  529. "__type__": "cc.Vec3",
  530. "x": 0,
  531. "y": 0,
  532. "z": 0
  533. },
  534. "_id": ""
  535. },
  536. {
  537. "__type__": "cc.Node",
  538. "_name": "gold_item",
  539. "_objFlags": 0,
  540. "__editorExtras__": {},
  541. "_parent": {
  542. "__id__": 16
  543. },
  544. "_children": [
  545. {
  546. "__id__": 18
  547. }
  548. ],
  549. "_active": true,
  550. "_components": [
  551. {
  552. "__id__": 24
  553. },
  554. {
  555. "__id__": 26
  556. }
  557. ],
  558. "_prefab": {
  559. "__id__": 28
  560. },
  561. "_lpos": {
  562. "__type__": "cc.Vec3",
  563. "x": 94.5,
  564. "y": 0,
  565. "z": 0
  566. },
  567. "_lrot": {
  568. "__type__": "cc.Quat",
  569. "x": 0,
  570. "y": 0,
  571. "z": 0,
  572. "w": 1
  573. },
  574. "_lscale": {
  575. "__type__": "cc.Vec3",
  576. "x": 1,
  577. "y": 1,
  578. "z": 1
  579. },
  580. "_mobility": 0,
  581. "_layer": 33554432,
  582. "_euler": {
  583. "__type__": "cc.Vec3",
  584. "x": 0,
  585. "y": 0,
  586. "z": 0
  587. },
  588. "_id": ""
  589. },
  590. {
  591. "__type__": "cc.Node",
  592. "_name": "gold_lable",
  593. "_objFlags": 0,
  594. "__editorExtras__": {},
  595. "_parent": {
  596. "__id__": 17
  597. },
  598. "_children": [],
  599. "_active": true,
  600. "_components": [
  601. {
  602. "__id__": 19
  603. },
  604. {
  605. "__id__": 21
  606. }
  607. ],
  608. "_prefab": {
  609. "__id__": 23
  610. },
  611. "_lpos": {
  612. "__type__": "cc.Vec3",
  613. "x": 26.008,
  614. "y": 0,
  615. "z": 0
  616. },
  617. "_lrot": {
  618. "__type__": "cc.Quat",
  619. "x": 0,
  620. "y": 0,
  621. "z": 0,
  622. "w": 1
  623. },
  624. "_lscale": {
  625. "__type__": "cc.Vec3",
  626. "x": 1,
  627. "y": 1,
  628. "z": 1
  629. },
  630. "_mobility": 0,
  631. "_layer": 33554432,
  632. "_euler": {
  633. "__type__": "cc.Vec3",
  634. "x": 0,
  635. "y": 0,
  636. "z": 0
  637. },
  638. "_id": ""
  639. },
  640. {
  641. "__type__": "cc.UITransform",
  642. "_name": "",
  643. "_objFlags": 0,
  644. "__editorExtras__": {},
  645. "node": {
  646. "__id__": 18
  647. },
  648. "_enabled": true,
  649. "__prefab": {
  650. "__id__": 20
  651. },
  652. "_contentSize": {
  653. "__type__": "cc.Size",
  654. "width": 22.478607177734375,
  655. "height": 42.777
  656. },
  657. "_anchorPoint": {
  658. "__type__": "cc.Vec2",
  659. "x": 0.5,
  660. "y": 0.5
  661. },
  662. "_id": ""
  663. },
  664. {
  665. "__type__": "cc.CompPrefabInfo",
  666. "fileId": "fd93jMw4REgYqvTMi7gWM5"
  667. },
  668. {
  669. "__type__": "cc.Label",
  670. "_name": "",
  671. "_objFlags": 0,
  672. "__editorExtras__": {},
  673. "node": {
  674. "__id__": 18
  675. },
  676. "_enabled": true,
  677. "__prefab": {
  678. "__id__": 22
  679. },
  680. "_customMaterial": null,
  681. "_srcBlendFactor": 2,
  682. "_dstBlendFactor": 4,
  683. "_color": {
  684. "__type__": "cc.Color",
  685. "r": 255,
  686. "g": 255,
  687. "b": 255,
  688. "a": 255
  689. },
  690. "_string": "0",
  691. "_horizontalAlign": 1,
  692. "_verticalAlign": 1,
  693. "_actualFontSize": 33.95,
  694. "_fontSize": 33.95,
  695. "_fontFamily": "Arial",
  696. "_lineHeight": 33.95,
  697. "_overflow": 0,
  698. "_enableWrapText": true,
  699. "_font": {
  700. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  701. "__expectedType__": "cc.TTFFont"
  702. },
  703. "_isSystemFontUsed": false,
  704. "_spacingX": 0,
  705. "_isItalic": false,
  706. "_isBold": false,
  707. "_isUnderline": false,
  708. "_underlineHeight": 2,
  709. "_cacheMode": 0,
  710. "_enableOutline": false,
  711. "_outlineColor": {
  712. "__type__": "cc.Color",
  713. "r": 0,
  714. "g": 0,
  715. "b": 0,
  716. "a": 255
  717. },
  718. "_outlineWidth": 2,
  719. "_enableShadow": false,
  720. "_shadowColor": {
  721. "__type__": "cc.Color",
  722. "r": 0,
  723. "g": 0,
  724. "b": 0,
  725. "a": 255
  726. },
  727. "_shadowOffset": {
  728. "__type__": "cc.Vec2",
  729. "x": 2,
  730. "y": 2
  731. },
  732. "_shadowBlur": 2,
  733. "_id": ""
  734. },
  735. {
  736. "__type__": "cc.CompPrefabInfo",
  737. "fileId": "62q8FDWI5FNKpWZylklILQ"
  738. },
  739. {
  740. "__type__": "cc.PrefabInfo",
  741. "root": {
  742. "__id__": 1
  743. },
  744. "asset": {
  745. "__id__": 0
  746. },
  747. "fileId": "c20VpDc8ZFZbTRdEHIC+Mc",
  748. "instance": null,
  749. "targetOverrides": null,
  750. "nestedPrefabInstanceRoots": null
  751. },
  752. {
  753. "__type__": "cc.UITransform",
  754. "_name": "",
  755. "_objFlags": 0,
  756. "__editorExtras__": {},
  757. "node": {
  758. "__id__": 17
  759. },
  760. "_enabled": true,
  761. "__prefab": {
  762. "__id__": 25
  763. },
  764. "_contentSize": {
  765. "__type__": "cc.Size",
  766. "width": 189,
  767. "height": 74
  768. },
  769. "_anchorPoint": {
  770. "__type__": "cc.Vec2",
  771. "x": 0.5,
  772. "y": 0.5
  773. },
  774. "_id": ""
  775. },
  776. {
  777. "__type__": "cc.CompPrefabInfo",
  778. "fileId": "fcTE2mm0NCdKYGmwD6saFw"
  779. },
  780. {
  781. "__type__": "cc.Sprite",
  782. "_name": "",
  783. "_objFlags": 0,
  784. "__editorExtras__": {},
  785. "node": {
  786. "__id__": 17
  787. },
  788. "_enabled": true,
  789. "__prefab": {
  790. "__id__": 27
  791. },
  792. "_customMaterial": null,
  793. "_srcBlendFactor": 2,
  794. "_dstBlendFactor": 4,
  795. "_color": {
  796. "__type__": "cc.Color",
  797. "r": 255,
  798. "g": 255,
  799. "b": 255,
  800. "a": 255
  801. },
  802. "_spriteFrame": {
  803. "__uuid__": "b11b773a-4d80-4b64-a2a2-fe1dc2058317@f9941",
  804. "__expectedType__": "cc.SpriteFrame"
  805. },
  806. "_type": 0,
  807. "_fillType": 0,
  808. "_sizeMode": 1,
  809. "_fillCenter": {
  810. "__type__": "cc.Vec2",
  811. "x": 0,
  812. "y": 0
  813. },
  814. "_fillStart": 0,
  815. "_fillRange": 0,
  816. "_isTrimmedMode": true,
  817. "_useGrayscale": false,
  818. "_atlas": null,
  819. "_id": ""
  820. },
  821. {
  822. "__type__": "cc.CompPrefabInfo",
  823. "fileId": "d8E29moddK+qj7JjMs80gE"
  824. },
  825. {
  826. "__type__": "cc.PrefabInfo",
  827. "root": {
  828. "__id__": 1
  829. },
  830. "asset": {
  831. "__id__": 0
  832. },
  833. "fileId": "29OEHAPGlClKszov0TqXmI",
  834. "instance": null,
  835. "targetOverrides": null,
  836. "nestedPrefabInstanceRoots": null
  837. },
  838. {
  839. "__type__": "cc.Node",
  840. "_name": "diamond_item",
  841. "_objFlags": 0,
  842. "__editorExtras__": {},
  843. "_parent": {
  844. "__id__": 16
  845. },
  846. "_children": [
  847. {
  848. "__id__": 30
  849. }
  850. ],
  851. "_active": true,
  852. "_components": [
  853. {
  854. "__id__": 36
  855. },
  856. {
  857. "__id__": 38
  858. }
  859. ],
  860. "_prefab": {
  861. "__id__": 40
  862. },
  863. "_lpos": {
  864. "__type__": "cc.Vec3",
  865. "x": 296.5,
  866. "y": 0,
  867. "z": 0
  868. },
  869. "_lrot": {
  870. "__type__": "cc.Quat",
  871. "x": 0,
  872. "y": 0,
  873. "z": 0,
  874. "w": 1
  875. },
  876. "_lscale": {
  877. "__type__": "cc.Vec3",
  878. "x": 1,
  879. "y": 1,
  880. "z": 1
  881. },
  882. "_mobility": 0,
  883. "_layer": 33554432,
  884. "_euler": {
  885. "__type__": "cc.Vec3",
  886. "x": 0,
  887. "y": 0,
  888. "z": 0
  889. },
  890. "_id": ""
  891. },
  892. {
  893. "__type__": "cc.Node",
  894. "_name": "diamond_lable",
  895. "_objFlags": 0,
  896. "__editorExtras__": {},
  897. "_parent": {
  898. "__id__": 29
  899. },
  900. "_children": [],
  901. "_active": true,
  902. "_components": [
  903. {
  904. "__id__": 31
  905. },
  906. {
  907. "__id__": 33
  908. }
  909. ],
  910. "_prefab": {
  911. "__id__": 35
  912. },
  913. "_lpos": {
  914. "__type__": "cc.Vec3",
  915. "x": 23.644,
  916. "y": 0,
  917. "z": 0
  918. },
  919. "_lrot": {
  920. "__type__": "cc.Quat",
  921. "x": 0,
  922. "y": 0,
  923. "z": 0,
  924. "w": 1
  925. },
  926. "_lscale": {
  927. "__type__": "cc.Vec3",
  928. "x": 1,
  929. "y": 1,
  930. "z": 1
  931. },
  932. "_mobility": 0,
  933. "_layer": 33554432,
  934. "_euler": {
  935. "__type__": "cc.Vec3",
  936. "x": 0,
  937. "y": 0,
  938. "z": 0
  939. },
  940. "_id": ""
  941. },
  942. {
  943. "__type__": "cc.UITransform",
  944. "_name": "",
  945. "_objFlags": 0,
  946. "__editorExtras__": {},
  947. "node": {
  948. "__id__": 30
  949. },
  950. "_enabled": true,
  951. "__prefab": {
  952. "__id__": 32
  953. },
  954. "_contentSize": {
  955. "__type__": "cc.Size",
  956. "width": 22.478607177734375,
  957. "height": 42.777
  958. },
  959. "_anchorPoint": {
  960. "__type__": "cc.Vec2",
  961. "x": 0.5,
  962. "y": 0.5
  963. },
  964. "_id": ""
  965. },
  966. {
  967. "__type__": "cc.CompPrefabInfo",
  968. "fileId": "f3ZTmyh65MdozrfsYwM0hN"
  969. },
  970. {
  971. "__type__": "cc.Label",
  972. "_name": "",
  973. "_objFlags": 0,
  974. "__editorExtras__": {},
  975. "node": {
  976. "__id__": 30
  977. },
  978. "_enabled": true,
  979. "__prefab": {
  980. "__id__": 34
  981. },
  982. "_customMaterial": null,
  983. "_srcBlendFactor": 2,
  984. "_dstBlendFactor": 4,
  985. "_color": {
  986. "__type__": "cc.Color",
  987. "r": 255,
  988. "g": 255,
  989. "b": 255,
  990. "a": 255
  991. },
  992. "_string": "0",
  993. "_horizontalAlign": 1,
  994. "_verticalAlign": 1,
  995. "_actualFontSize": 33.95,
  996. "_fontSize": 33.95,
  997. "_fontFamily": "Arial",
  998. "_lineHeight": 33.95,
  999. "_overflow": 0,
  1000. "_enableWrapText": true,
  1001. "_font": {
  1002. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  1003. "__expectedType__": "cc.TTFFont"
  1004. },
  1005. "_isSystemFontUsed": false,
  1006. "_spacingX": 0,
  1007. "_isItalic": false,
  1008. "_isBold": false,
  1009. "_isUnderline": false,
  1010. "_underlineHeight": 2,
  1011. "_cacheMode": 0,
  1012. "_enableOutline": false,
  1013. "_outlineColor": {
  1014. "__type__": "cc.Color",
  1015. "r": 0,
  1016. "g": 0,
  1017. "b": 0,
  1018. "a": 255
  1019. },
  1020. "_outlineWidth": 2,
  1021. "_enableShadow": false,
  1022. "_shadowColor": {
  1023. "__type__": "cc.Color",
  1024. "r": 0,
  1025. "g": 0,
  1026. "b": 0,
  1027. "a": 255
  1028. },
  1029. "_shadowOffset": {
  1030. "__type__": "cc.Vec2",
  1031. "x": 2,
  1032. "y": 2
  1033. },
  1034. "_shadowBlur": 2,
  1035. "_id": ""
  1036. },
  1037. {
  1038. "__type__": "cc.CompPrefabInfo",
  1039. "fileId": "66xg3wL7RKpIT8CHgipfQ3"
  1040. },
  1041. {
  1042. "__type__": "cc.PrefabInfo",
  1043. "root": {
  1044. "__id__": 1
  1045. },
  1046. "asset": {
  1047. "__id__": 0
  1048. },
  1049. "fileId": "e5flILmkJNjoT7w9PeElWy",
  1050. "instance": null,
  1051. "targetOverrides": null,
  1052. "nestedPrefabInstanceRoots": null
  1053. },
  1054. {
  1055. "__type__": "cc.UITransform",
  1056. "_name": "",
  1057. "_objFlags": 0,
  1058. "__editorExtras__": {},
  1059. "node": {
  1060. "__id__": 29
  1061. },
  1062. "_enabled": true,
  1063. "__prefab": {
  1064. "__id__": 37
  1065. },
  1066. "_contentSize": {
  1067. "__type__": "cc.Size",
  1068. "width": 189,
  1069. "height": 74
  1070. },
  1071. "_anchorPoint": {
  1072. "__type__": "cc.Vec2",
  1073. "x": 0.5,
  1074. "y": 0.5
  1075. },
  1076. "_id": ""
  1077. },
  1078. {
  1079. "__type__": "cc.CompPrefabInfo",
  1080. "fileId": "2eLhSxWgZLEbnelYNpxM/4"
  1081. },
  1082. {
  1083. "__type__": "cc.Sprite",
  1084. "_name": "",
  1085. "_objFlags": 0,
  1086. "__editorExtras__": {},
  1087. "node": {
  1088. "__id__": 29
  1089. },
  1090. "_enabled": true,
  1091. "__prefab": {
  1092. "__id__": 39
  1093. },
  1094. "_customMaterial": null,
  1095. "_srcBlendFactor": 2,
  1096. "_dstBlendFactor": 4,
  1097. "_color": {
  1098. "__type__": "cc.Color",
  1099. "r": 255,
  1100. "g": 255,
  1101. "b": 255,
  1102. "a": 255
  1103. },
  1104. "_spriteFrame": {
  1105. "__uuid__": "74e54b3a-592c-4eea-a5ab-09611e3f6f2d@f9941",
  1106. "__expectedType__": "cc.SpriteFrame"
  1107. },
  1108. "_type": 0,
  1109. "_fillType": 0,
  1110. "_sizeMode": 1,
  1111. "_fillCenter": {
  1112. "__type__": "cc.Vec2",
  1113. "x": 0,
  1114. "y": 0
  1115. },
  1116. "_fillStart": 0,
  1117. "_fillRange": 0,
  1118. "_isTrimmedMode": true,
  1119. "_useGrayscale": false,
  1120. "_atlas": null,
  1121. "_id": ""
  1122. },
  1123. {
  1124. "__type__": "cc.CompPrefabInfo",
  1125. "fileId": "c47hbsCIdGe4SpzvvODJa1"
  1126. },
  1127. {
  1128. "__type__": "cc.PrefabInfo",
  1129. "root": {
  1130. "__id__": 1
  1131. },
  1132. "asset": {
  1133. "__id__": 0
  1134. },
  1135. "fileId": "e6GB3bQ6FAebjDI8ScztN9",
  1136. "instance": null,
  1137. "targetOverrides": null,
  1138. "nestedPrefabInstanceRoots": null
  1139. },
  1140. {
  1141. "__type__": "cc.UITransform",
  1142. "_name": "",
  1143. "_objFlags": 0,
  1144. "__editorExtras__": {},
  1145. "node": {
  1146. "__id__": 16
  1147. },
  1148. "_enabled": true,
  1149. "__prefab": {
  1150. "__id__": 42
  1151. },
  1152. "_contentSize": {
  1153. "__type__": "cc.Size",
  1154. "width": 391,
  1155. "height": 100
  1156. },
  1157. "_anchorPoint": {
  1158. "__type__": "cc.Vec2",
  1159. "x": 0,
  1160. "y": 0.5
  1161. },
  1162. "_id": ""
  1163. },
  1164. {
  1165. "__type__": "cc.CompPrefabInfo",
  1166. "fileId": "74+srDq/xIDo3BwD37cAq5"
  1167. },
  1168. {
  1169. "__type__": "cc.Layout",
  1170. "_name": "",
  1171. "_objFlags": 0,
  1172. "__editorExtras__": {},
  1173. "node": {
  1174. "__id__": 16
  1175. },
  1176. "_enabled": true,
  1177. "__prefab": {
  1178. "__id__": 44
  1179. },
  1180. "_resizeMode": 1,
  1181. "_layoutType": 1,
  1182. "_cellSize": {
  1183. "__type__": "cc.Size",
  1184. "width": 40,
  1185. "height": 40
  1186. },
  1187. "_startAxis": 0,
  1188. "_paddingLeft": 0,
  1189. "_paddingRight": 0,
  1190. "_paddingTop": 0,
  1191. "_paddingBottom": 0,
  1192. "_spacingX": 13,
  1193. "_spacingY": 0,
  1194. "_verticalDirection": 1,
  1195. "_horizontalDirection": 0,
  1196. "_constraint": 0,
  1197. "_constraintNum": 2,
  1198. "_affectedByScale": false,
  1199. "_isAlign": false,
  1200. "_id": ""
  1201. },
  1202. {
  1203. "__type__": "cc.CompPrefabInfo",
  1204. "fileId": "211vnQN2BADr9fJe/QYAVL"
  1205. },
  1206. {
  1207. "__type__": "cc.Widget",
  1208. "_name": "",
  1209. "_objFlags": 0,
  1210. "__editorExtras__": {},
  1211. "node": {
  1212. "__id__": 16
  1213. },
  1214. "_enabled": true,
  1215. "__prefab": {
  1216. "__id__": 46
  1217. },
  1218. "_alignFlags": 8,
  1219. "_target": null,
  1220. "_left": 0.20694444444444446,
  1221. "_right": 0,
  1222. "_top": 0,
  1223. "_bottom": 0,
  1224. "_horizontalCenter": 0,
  1225. "_verticalCenter": 0,
  1226. "_isAbsLeft": false,
  1227. "_isAbsRight": true,
  1228. "_isAbsTop": true,
  1229. "_isAbsBottom": true,
  1230. "_isAbsHorizontalCenter": true,
  1231. "_isAbsVerticalCenter": true,
  1232. "_originalWidth": 0,
  1233. "_originalHeight": 0,
  1234. "_alignMode": 2,
  1235. "_lockFlags": 0,
  1236. "_id": ""
  1237. },
  1238. {
  1239. "__type__": "cc.CompPrefabInfo",
  1240. "fileId": "e7d1Spr8lP1bNVxE7/lxmg"
  1241. },
  1242. {
  1243. "__type__": "cc.PrefabInfo",
  1244. "root": {
  1245. "__id__": 1
  1246. },
  1247. "asset": {
  1248. "__id__": 0
  1249. },
  1250. "fileId": "318Tu7+qBJLoqSQvzMFi/l",
  1251. "instance": null,
  1252. "targetOverrides": null,
  1253. "nestedPrefabInstanceRoots": null
  1254. },
  1255. {
  1256. "__type__": "cc.UITransform",
  1257. "_name": "",
  1258. "_objFlags": 0,
  1259. "__editorExtras__": {},
  1260. "node": {
  1261. "__id__": 3
  1262. },
  1263. "_enabled": true,
  1264. "__prefab": {
  1265. "__id__": 49
  1266. },
  1267. "_contentSize": {
  1268. "__type__": "cc.Size",
  1269. "width": 720,
  1270. "height": 120
  1271. },
  1272. "_anchorPoint": {
  1273. "__type__": "cc.Vec2",
  1274. "x": 0.5,
  1275. "y": 0.5
  1276. },
  1277. "_id": ""
  1278. },
  1279. {
  1280. "__type__": "cc.CompPrefabInfo",
  1281. "fileId": "c5qiPzAY9Bu4R7sgdh8Xfh"
  1282. },
  1283. {
  1284. "__type__": "cc.Widget",
  1285. "_name": "",
  1286. "_objFlags": 0,
  1287. "__editorExtras__": {},
  1288. "node": {
  1289. "__id__": 3
  1290. },
  1291. "_enabled": true,
  1292. "__prefab": {
  1293. "__id__": 51
  1294. },
  1295. "_alignFlags": 41,
  1296. "_target": null,
  1297. "_left": 0,
  1298. "_right": 0,
  1299. "_top": 0,
  1300. "_bottom": 0,
  1301. "_horizontalCenter": 0,
  1302. "_verticalCenter": 0,
  1303. "_isAbsLeft": false,
  1304. "_isAbsRight": true,
  1305. "_isAbsTop": false,
  1306. "_isAbsBottom": true,
  1307. "_isAbsHorizontalCenter": true,
  1308. "_isAbsVerticalCenter": true,
  1309. "_originalWidth": 391,
  1310. "_originalHeight": 0,
  1311. "_alignMode": 2,
  1312. "_lockFlags": 41,
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.CompPrefabInfo",
  1317. "fileId": "a42UssMDNGdKcrhNVfWU+D"
  1318. },
  1319. {
  1320. "__type__": "cc.Sprite",
  1321. "_name": "",
  1322. "_objFlags": 0,
  1323. "__editorExtras__": {},
  1324. "node": {
  1325. "__id__": 3
  1326. },
  1327. "_enabled": false,
  1328. "__prefab": {
  1329. "__id__": 53
  1330. },
  1331. "_customMaterial": null,
  1332. "_srcBlendFactor": 2,
  1333. "_dstBlendFactor": 4,
  1334. "_color": {
  1335. "__type__": "cc.Color",
  1336. "r": 255,
  1337. "g": 255,
  1338. "b": 255,
  1339. "a": 255
  1340. },
  1341. "_spriteFrame": {
  1342. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  1343. "__expectedType__": "cc.SpriteFrame"
  1344. },
  1345. "_type": 0,
  1346. "_fillType": 0,
  1347. "_sizeMode": 0,
  1348. "_fillCenter": {
  1349. "__type__": "cc.Vec2",
  1350. "x": 0,
  1351. "y": 0
  1352. },
  1353. "_fillStart": 0,
  1354. "_fillRange": 0,
  1355. "_isTrimmedMode": true,
  1356. "_useGrayscale": false,
  1357. "_atlas": null,
  1358. "_id": ""
  1359. },
  1360. {
  1361. "__type__": "cc.CompPrefabInfo",
  1362. "fileId": "faPTkmr/9KD4n+97XoyAMM"
  1363. },
  1364. {
  1365. "__type__": "cc.Layout",
  1366. "_name": "",
  1367. "_objFlags": 0,
  1368. "__editorExtras__": {},
  1369. "node": {
  1370. "__id__": 3
  1371. },
  1372. "_enabled": true,
  1373. "__prefab": {
  1374. "__id__": 55
  1375. },
  1376. "_resizeMode": 0,
  1377. "_layoutType": 1,
  1378. "_cellSize": {
  1379. "__type__": "cc.Size",
  1380. "width": 40,
  1381. "height": 40
  1382. },
  1383. "_startAxis": 0,
  1384. "_paddingLeft": 20,
  1385. "_paddingRight": 0,
  1386. "_paddingTop": 0,
  1387. "_paddingBottom": 0,
  1388. "_spacingX": 45,
  1389. "_spacingY": 0,
  1390. "_verticalDirection": 1,
  1391. "_horizontalDirection": 0,
  1392. "_constraint": 0,
  1393. "_constraintNum": 2,
  1394. "_affectedByScale": false,
  1395. "_isAlign": false,
  1396. "_id": ""
  1397. },
  1398. {
  1399. "__type__": "cc.CompPrefabInfo",
  1400. "fileId": "ebPvPaFQNB1LrV3Ai9B+QI"
  1401. },
  1402. {
  1403. "__type__": "cc.PrefabInfo",
  1404. "root": {
  1405. "__id__": 1
  1406. },
  1407. "asset": {
  1408. "__id__": 0
  1409. },
  1410. "fileId": "243dCouSZJU6u88KynEBYI",
  1411. "instance": null,
  1412. "targetOverrides": null,
  1413. "nestedPrefabInstanceRoots": null
  1414. },
  1415. {
  1416. "__type__": "cc.Node",
  1417. "_name": "title_bg",
  1418. "_objFlags": 0,
  1419. "__editorExtras__": {},
  1420. "_parent": {
  1421. "__id__": 2
  1422. },
  1423. "_children": [],
  1424. "_active": true,
  1425. "_components": [
  1426. {
  1427. "__id__": 58
  1428. },
  1429. {
  1430. "__id__": 60
  1431. }
  1432. ],
  1433. "_prefab": {
  1434. "__id__": 62
  1435. },
  1436. "_lpos": {
  1437. "__type__": "cc.Vec3",
  1438. "x": 0,
  1439. "y": 629.903,
  1440. "z": 0
  1441. },
  1442. "_lrot": {
  1443. "__type__": "cc.Quat",
  1444. "x": 0,
  1445. "y": 0,
  1446. "z": 0,
  1447. "w": 1
  1448. },
  1449. "_lscale": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 1,
  1452. "y": 1,
  1453. "z": 1
  1454. },
  1455. "_mobility": 0,
  1456. "_layer": 33554432,
  1457. "_euler": {
  1458. "__type__": "cc.Vec3",
  1459. "x": 0,
  1460. "y": 0,
  1461. "z": 0
  1462. },
  1463. "_id": ""
  1464. },
  1465. {
  1466. "__type__": "cc.UITransform",
  1467. "_name": "",
  1468. "_objFlags": 0,
  1469. "__editorExtras__": {},
  1470. "node": {
  1471. "__id__": 57
  1472. },
  1473. "_enabled": true,
  1474. "__prefab": {
  1475. "__id__": 59
  1476. },
  1477. "_contentSize": {
  1478. "__type__": "cc.Size",
  1479. "width": 246,
  1480. "height": 108
  1481. },
  1482. "_anchorPoint": {
  1483. "__type__": "cc.Vec2",
  1484. "x": 0.5,
  1485. "y": 0.5
  1486. },
  1487. "_id": ""
  1488. },
  1489. {
  1490. "__type__": "cc.CompPrefabInfo",
  1491. "fileId": "a14GKhpgRAOalFoUpSpfXa"
  1492. },
  1493. {
  1494. "__type__": "cc.Sprite",
  1495. "_name": "",
  1496. "_objFlags": 0,
  1497. "__editorExtras__": {},
  1498. "node": {
  1499. "__id__": 57
  1500. },
  1501. "_enabled": true,
  1502. "__prefab": {
  1503. "__id__": 61
  1504. },
  1505. "_customMaterial": null,
  1506. "_srcBlendFactor": 2,
  1507. "_dstBlendFactor": 4,
  1508. "_color": {
  1509. "__type__": "cc.Color",
  1510. "r": 255,
  1511. "g": 255,
  1512. "b": 255,
  1513. "a": 255
  1514. },
  1515. "_spriteFrame": {
  1516. "__uuid__": "d2a307a5-44d3-4f21-a306-81cfa2175805@f9941",
  1517. "__expectedType__": "cc.SpriteFrame"
  1518. },
  1519. "_type": 0,
  1520. "_fillType": 0,
  1521. "_sizeMode": 1,
  1522. "_fillCenter": {
  1523. "__type__": "cc.Vec2",
  1524. "x": 0,
  1525. "y": 0
  1526. },
  1527. "_fillStart": 0,
  1528. "_fillRange": 0,
  1529. "_isTrimmedMode": true,
  1530. "_useGrayscale": false,
  1531. "_atlas": null,
  1532. "_id": ""
  1533. },
  1534. {
  1535. "__type__": "cc.CompPrefabInfo",
  1536. "fileId": "e5eHvLo6xNybjngAvwEz1V"
  1537. },
  1538. {
  1539. "__type__": "cc.PrefabInfo",
  1540. "root": {
  1541. "__id__": 1
  1542. },
  1543. "asset": {
  1544. "__id__": 0
  1545. },
  1546. "fileId": "2evfxKNVJJ3JSBvb8P4UX+",
  1547. "instance": null,
  1548. "targetOverrides": null,
  1549. "nestedPrefabInstanceRoots": null
  1550. },
  1551. {
  1552. "__type__": "cc.Node",
  1553. "_name": "gun_attr_scrollView",
  1554. "_objFlags": 0,
  1555. "__editorExtras__": {},
  1556. "_parent": {
  1557. "__id__": 2
  1558. },
  1559. "_children": [
  1560. {
  1561. "__id__": 64
  1562. }
  1563. ],
  1564. "_active": true,
  1565. "_components": [
  1566. {
  1567. "__id__": 224
  1568. },
  1569. {
  1570. "__id__": 226
  1571. },
  1572. {
  1573. "__id__": 228
  1574. },
  1575. {
  1576. "__id__": 230
  1577. },
  1578. {
  1579. "__id__": 235
  1580. }
  1581. ],
  1582. "_prefab": {
  1583. "__id__": 237
  1584. },
  1585. "_lpos": {
  1586. "__type__": "cc.Vec3",
  1587. "x": 0,
  1588. "y": 96.29699999999991,
  1589. "z": 0
  1590. },
  1591. "_lrot": {
  1592. "__type__": "cc.Quat",
  1593. "x": 0,
  1594. "y": 0,
  1595. "z": 0,
  1596. "w": 1
  1597. },
  1598. "_lscale": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 1,
  1601. "y": 1,
  1602. "z": 1
  1603. },
  1604. "_mobility": 0,
  1605. "_layer": 33554432,
  1606. "_euler": {
  1607. "__type__": "cc.Vec3",
  1608. "x": 0,
  1609. "y": 0,
  1610. "z": 0
  1611. },
  1612. "_id": ""
  1613. },
  1614. {
  1615. "__type__": "cc.Node",
  1616. "_name": "view",
  1617. "_objFlags": 0,
  1618. "__editorExtras__": {},
  1619. "_parent": {
  1620. "__id__": 63
  1621. },
  1622. "_children": [
  1623. {
  1624. "__id__": 65
  1625. }
  1626. ],
  1627. "_active": true,
  1628. "_components": [
  1629. {
  1630. "__id__": 215
  1631. },
  1632. {
  1633. "__id__": 217
  1634. },
  1635. {
  1636. "__id__": 219
  1637. },
  1638. {
  1639. "__id__": 221
  1640. }
  1641. ],
  1642. "_prefab": {
  1643. "__id__": 223
  1644. },
  1645. "_lpos": {
  1646. "__type__": "cc.Vec3",
  1647. "x": 0,
  1648. "y": -41.64200000000005,
  1649. "z": 0
  1650. },
  1651. "_lrot": {
  1652. "__type__": "cc.Quat",
  1653. "x": 0,
  1654. "y": 0,
  1655. "z": 0,
  1656. "w": 1
  1657. },
  1658. "_lscale": {
  1659. "__type__": "cc.Vec3",
  1660. "x": 1,
  1661. "y": 1,
  1662. "z": 1
  1663. },
  1664. "_mobility": 0,
  1665. "_layer": 33554432,
  1666. "_euler": {
  1667. "__type__": "cc.Vec3",
  1668. "x": 0,
  1669. "y": 0,
  1670. "z": 0
  1671. },
  1672. "_id": ""
  1673. },
  1674. {
  1675. "__type__": "cc.Node",
  1676. "_name": "content",
  1677. "_objFlags": 0,
  1678. "__editorExtras__": {},
  1679. "_parent": {
  1680. "__id__": 64
  1681. },
  1682. "_children": [
  1683. {
  1684. "__id__": 66
  1685. }
  1686. ],
  1687. "_active": true,
  1688. "_components": [
  1689. {
  1690. "__id__": 208
  1691. },
  1692. {
  1693. "__id__": 210
  1694. },
  1695. {
  1696. "__id__": 212
  1697. }
  1698. ],
  1699. "_prefab": {
  1700. "__id__": 214
  1701. },
  1702. "_lpos": {
  1703. "__type__": "cc.Vec3",
  1704. "x": 0,
  1705. "y": 0,
  1706. "z": 0
  1707. },
  1708. "_lrot": {
  1709. "__type__": "cc.Quat",
  1710. "x": 0,
  1711. "y": 0,
  1712. "z": 0,
  1713. "w": 1
  1714. },
  1715. "_lscale": {
  1716. "__type__": "cc.Vec3",
  1717. "x": 1,
  1718. "y": 1,
  1719. "z": 1
  1720. },
  1721. "_mobility": 0,
  1722. "_layer": 33554432,
  1723. "_euler": {
  1724. "__type__": "cc.Vec3",
  1725. "x": 0,
  1726. "y": 0,
  1727. "z": 0
  1728. },
  1729. "_id": ""
  1730. },
  1731. {
  1732. "__type__": "cc.Node",
  1733. "_name": "upgrade_item",
  1734. "_objFlags": 0,
  1735. "__editorExtras__": {},
  1736. "_parent": {
  1737. "__id__": 65
  1738. },
  1739. "_children": [
  1740. {
  1741. "__id__": 67
  1742. },
  1743. {
  1744. "__id__": 73
  1745. },
  1746. {
  1747. "__id__": 81
  1748. },
  1749. {
  1750. "__id__": 105
  1751. },
  1752. {
  1753. "__id__": 122
  1754. },
  1755. {
  1756. "__id__": 145
  1757. },
  1758. {
  1759. "__id__": 176
  1760. }
  1761. ],
  1762. "_active": true,
  1763. "_components": [
  1764. {
  1765. "__id__": 201
  1766. },
  1767. {
  1768. "__id__": 203
  1769. },
  1770. {
  1771. "__id__": 205
  1772. }
  1773. ],
  1774. "_prefab": {
  1775. "__id__": 207
  1776. },
  1777. "_lpos": {
  1778. "__type__": "cc.Vec3",
  1779. "x": 0,
  1780. "y": -58,
  1781. "z": 0
  1782. },
  1783. "_lrot": {
  1784. "__type__": "cc.Quat",
  1785. "x": 0,
  1786. "y": 0,
  1787. "z": 0,
  1788. "w": 1
  1789. },
  1790. "_lscale": {
  1791. "__type__": "cc.Vec3",
  1792. "x": 1,
  1793. "y": 1,
  1794. "z": 1
  1795. },
  1796. "_mobility": 0,
  1797. "_layer": 33554432,
  1798. "_euler": {
  1799. "__type__": "cc.Vec3",
  1800. "x": 0,
  1801. "y": 0,
  1802. "z": 0
  1803. },
  1804. "_id": ""
  1805. },
  1806. {
  1807. "__type__": "cc.Node",
  1808. "_name": "attr_sp",
  1809. "_objFlags": 0,
  1810. "__editorExtras__": {},
  1811. "_parent": {
  1812. "__id__": 66
  1813. },
  1814. "_children": [],
  1815. "_active": true,
  1816. "_components": [
  1817. {
  1818. "__id__": 68
  1819. },
  1820. {
  1821. "__id__": 70
  1822. }
  1823. ],
  1824. "_prefab": {
  1825. "__id__": 72
  1826. },
  1827. "_lpos": {
  1828. "__type__": "cc.Vec3",
  1829. "x": -190.545,
  1830. "y": 9.586,
  1831. "z": 0
  1832. },
  1833. "_lrot": {
  1834. "__type__": "cc.Quat",
  1835. "x": 0,
  1836. "y": 0,
  1837. "z": 0,
  1838. "w": 1
  1839. },
  1840. "_lscale": {
  1841. "__type__": "cc.Vec3",
  1842. "x": 1,
  1843. "y": 1,
  1844. "z": 1
  1845. },
  1846. "_mobility": 0,
  1847. "_layer": 33554432,
  1848. "_euler": {
  1849. "__type__": "cc.Vec3",
  1850. "x": 0,
  1851. "y": 0,
  1852. "z": 0
  1853. },
  1854. "_id": ""
  1855. },
  1856. {
  1857. "__type__": "cc.UITransform",
  1858. "_name": "",
  1859. "_objFlags": 0,
  1860. "__editorExtras__": {},
  1861. "node": {
  1862. "__id__": 67
  1863. },
  1864. "_enabled": true,
  1865. "__prefab": {
  1866. "__id__": 69
  1867. },
  1868. "_contentSize": {
  1869. "__type__": "cc.Size",
  1870. "width": 71,
  1871. "height": 71
  1872. },
  1873. "_anchorPoint": {
  1874. "__type__": "cc.Vec2",
  1875. "x": 0.5,
  1876. "y": 0.5
  1877. },
  1878. "_id": ""
  1879. },
  1880. {
  1881. "__type__": "cc.CompPrefabInfo",
  1882. "fileId": "67h6W9o9JMC6o4R+p9E+s+"
  1883. },
  1884. {
  1885. "__type__": "cc.Sprite",
  1886. "_name": "",
  1887. "_objFlags": 0,
  1888. "__editorExtras__": {},
  1889. "node": {
  1890. "__id__": 67
  1891. },
  1892. "_enabled": true,
  1893. "__prefab": {
  1894. "__id__": 71
  1895. },
  1896. "_customMaterial": null,
  1897. "_srcBlendFactor": 2,
  1898. "_dstBlendFactor": 4,
  1899. "_color": {
  1900. "__type__": "cc.Color",
  1901. "r": 255,
  1902. "g": 255,
  1903. "b": 255,
  1904. "a": 255
  1905. },
  1906. "_spriteFrame": {
  1907. "__uuid__": "dd6c80f4-facd-4c6a-ba9e-86e08451186c@f9941",
  1908. "__expectedType__": "cc.SpriteFrame"
  1909. },
  1910. "_type": 0,
  1911. "_fillType": 0,
  1912. "_sizeMode": 1,
  1913. "_fillCenter": {
  1914. "__type__": "cc.Vec2",
  1915. "x": 0,
  1916. "y": 0
  1917. },
  1918. "_fillStart": 0,
  1919. "_fillRange": 0,
  1920. "_isTrimmedMode": true,
  1921. "_useGrayscale": false,
  1922. "_atlas": null,
  1923. "_id": ""
  1924. },
  1925. {
  1926. "__type__": "cc.CompPrefabInfo",
  1927. "fileId": "e2iNP0F9pOJIRplDAoPpri"
  1928. },
  1929. {
  1930. "__type__": "cc.PrefabInfo",
  1931. "root": {
  1932. "__id__": 1
  1933. },
  1934. "asset": {
  1935. "__id__": 0
  1936. },
  1937. "fileId": "dcgf6jvzRNI5dLK9kQVSVR",
  1938. "instance": null,
  1939. "targetOverrides": null,
  1940. "nestedPrefabInstanceRoots": null
  1941. },
  1942. {
  1943. "__type__": "cc.Node",
  1944. "_name": "attribute_lang_lable",
  1945. "_objFlags": 0,
  1946. "__editorExtras__": {},
  1947. "_parent": {
  1948. "__id__": 66
  1949. },
  1950. "_children": [],
  1951. "_active": true,
  1952. "_components": [
  1953. {
  1954. "__id__": 74
  1955. },
  1956. {
  1957. "__id__": 76
  1958. },
  1959. {
  1960. "__id__": 78
  1961. }
  1962. ],
  1963. "_prefab": {
  1964. "__id__": 80
  1965. },
  1966. "_lpos": {
  1967. "__type__": "cc.Vec3",
  1968. "x": -236.2516053466797,
  1969. "y": -35.075,
  1970. "z": 0
  1971. },
  1972. "_lrot": {
  1973. "__type__": "cc.Quat",
  1974. "x": 0,
  1975. "y": 0,
  1976. "z": 0,
  1977. "w": 1
  1978. },
  1979. "_lscale": {
  1980. "__type__": "cc.Vec3",
  1981. "x": 1,
  1982. "y": 1,
  1983. "z": 1
  1984. },
  1985. "_mobility": 0,
  1986. "_layer": 33554432,
  1987. "_euler": {
  1988. "__type__": "cc.Vec3",
  1989. "x": 0,
  1990. "y": 0,
  1991. "z": 0
  1992. },
  1993. "_id": ""
  1994. },
  1995. {
  1996. "__type__": "cc.UITransform",
  1997. "_name": "",
  1998. "_objFlags": 0,
  1999. "__editorExtras__": {},
  2000. "node": {
  2001. "__id__": 73
  2002. },
  2003. "_enabled": true,
  2004. "__prefab": {
  2005. "__id__": 75
  2006. },
  2007. "_contentSize": {
  2008. "__type__": "cc.Size",
  2009. "width": 111.04721069335938,
  2010. "height": 34.6374
  2011. },
  2012. "_anchorPoint": {
  2013. "__type__": "cc.Vec2",
  2014. "x": 0,
  2015. "y": 0.5
  2016. },
  2017. "_id": ""
  2018. },
  2019. {
  2020. "__type__": "cc.CompPrefabInfo",
  2021. "fileId": "bbDWRCe/tJR5lr7ORB7I40"
  2022. },
  2023. {
  2024. "__type__": "cc.Label",
  2025. "_name": "",
  2026. "_objFlags": 0,
  2027. "__editorExtras__": {},
  2028. "node": {
  2029. "__id__": 73
  2030. },
  2031. "_enabled": true,
  2032. "__prefab": {
  2033. "__id__": 77
  2034. },
  2035. "_customMaterial": null,
  2036. "_srcBlendFactor": 2,
  2037. "_dstBlendFactor": 4,
  2038. "_color": {
  2039. "__type__": "cc.Color",
  2040. "r": 255,
  2041. "g": 255,
  2042. "b": 255,
  2043. "a": 255
  2044. },
  2045. "_string": "Damage",
  2046. "_horizontalAlign": 1,
  2047. "_verticalAlign": 1,
  2048. "_actualFontSize": 27.49,
  2049. "_fontSize": 27.49,
  2050. "_fontFamily": "Arial",
  2051. "_lineHeight": 27.49,
  2052. "_overflow": 0,
  2053. "_enableWrapText": true,
  2054. "_font": {
  2055. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  2056. "__expectedType__": "cc.TTFFont"
  2057. },
  2058. "_isSystemFontUsed": false,
  2059. "_spacingX": 0,
  2060. "_isItalic": false,
  2061. "_isBold": false,
  2062. "_isUnderline": false,
  2063. "_underlineHeight": 2,
  2064. "_cacheMode": 0,
  2065. "_enableOutline": false,
  2066. "_outlineColor": {
  2067. "__type__": "cc.Color",
  2068. "r": 156,
  2069. "g": 107,
  2070. "b": 73,
  2071. "a": 255
  2072. },
  2073. "_outlineWidth": 3,
  2074. "_enableShadow": false,
  2075. "_shadowColor": {
  2076. "__type__": "cc.Color",
  2077. "r": 0,
  2078. "g": 0,
  2079. "b": 0,
  2080. "a": 255
  2081. },
  2082. "_shadowOffset": {
  2083. "__type__": "cc.Vec2",
  2084. "x": 2,
  2085. "y": 2
  2086. },
  2087. "_shadowBlur": 2,
  2088. "_id": ""
  2089. },
  2090. {
  2091. "__type__": "cc.CompPrefabInfo",
  2092. "fileId": "e3MYA0/ldJN58oPeJ1z6Oa"
  2093. },
  2094. {
  2095. "__type__": "cc.Widget",
  2096. "_name": "",
  2097. "_objFlags": 0,
  2098. "__editorExtras__": {},
  2099. "node": {
  2100. "__id__": 73
  2101. },
  2102. "_enabled": true,
  2103. "__prefab": {
  2104. "__id__": 79
  2105. },
  2106. "_alignFlags": 10,
  2107. "_target": null,
  2108. "_left": 16.748394653320304,
  2109. "_right": 0,
  2110. "_top": 0,
  2111. "_bottom": 0,
  2112. "_horizontalCenter": -180.728,
  2113. "_verticalCenter": -35.075,
  2114. "_isAbsLeft": true,
  2115. "_isAbsRight": true,
  2116. "_isAbsTop": true,
  2117. "_isAbsBottom": true,
  2118. "_isAbsHorizontalCenter": true,
  2119. "_isAbsVerticalCenter": true,
  2120. "_originalWidth": 0,
  2121. "_originalHeight": 0,
  2122. "_alignMode": 2,
  2123. "_lockFlags": 0,
  2124. "_id": ""
  2125. },
  2126. {
  2127. "__type__": "cc.CompPrefabInfo",
  2128. "fileId": "e2bgRbC7xNXLk+K+Cadm6B"
  2129. },
  2130. {
  2131. "__type__": "cc.PrefabInfo",
  2132. "root": {
  2133. "__id__": 1
  2134. },
  2135. "asset": {
  2136. "__id__": 0
  2137. },
  2138. "fileId": "e3XJQp2itFn5Q1pwNxnJ0h",
  2139. "instance": null,
  2140. "targetOverrides": null,
  2141. "nestedPrefabInstanceRoots": null
  2142. },
  2143. {
  2144. "__type__": "cc.Node",
  2145. "_name": "progressBar",
  2146. "_objFlags": 0,
  2147. "__editorExtras__": {},
  2148. "_parent": {
  2149. "__id__": 66
  2150. },
  2151. "_children": [
  2152. {
  2153. "__id__": 82
  2154. },
  2155. {
  2156. "__id__": 90
  2157. }
  2158. ],
  2159. "_active": true,
  2160. "_components": [
  2161. {
  2162. "__id__": 98
  2163. },
  2164. {
  2165. "__id__": 100
  2166. },
  2167. {
  2168. "__id__": 102
  2169. }
  2170. ],
  2171. "_prefab": {
  2172. "__id__": 104
  2173. },
  2174. "_lpos": {
  2175. "__type__": "cc.Vec3",
  2176. "x": -52.901,
  2177. "y": -3.673,
  2178. "z": 0
  2179. },
  2180. "_lrot": {
  2181. "__type__": "cc.Quat",
  2182. "x": 0,
  2183. "y": 0,
  2184. "z": 0,
  2185. "w": 1
  2186. },
  2187. "_lscale": {
  2188. "__type__": "cc.Vec3",
  2189. "x": 1,
  2190. "y": 1,
  2191. "z": 1
  2192. },
  2193. "_mobility": 0,
  2194. "_layer": 33554432,
  2195. "_euler": {
  2196. "__type__": "cc.Vec3",
  2197. "x": 0,
  2198. "y": 0,
  2199. "z": 0
  2200. },
  2201. "_id": ""
  2202. },
  2203. {
  2204. "__type__": "cc.Node",
  2205. "_name": "bar",
  2206. "_objFlags": 0,
  2207. "__editorExtras__": {},
  2208. "_parent": {
  2209. "__id__": 81
  2210. },
  2211. "_children": [],
  2212. "_active": true,
  2213. "_components": [
  2214. {
  2215. "__id__": 83
  2216. },
  2217. {
  2218. "__id__": 85
  2219. },
  2220. {
  2221. "__id__": 87
  2222. }
  2223. ],
  2224. "_prefab": {
  2225. "__id__": 89
  2226. },
  2227. "_lpos": {
  2228. "__type__": "cc.Vec3",
  2229. "x": -76,
  2230. "y": 0,
  2231. "z": 0
  2232. },
  2233. "_lrot": {
  2234. "__type__": "cc.Quat",
  2235. "x": 0,
  2236. "y": 0,
  2237. "z": 0,
  2238. "w": 1
  2239. },
  2240. "_lscale": {
  2241. "__type__": "cc.Vec3",
  2242. "x": 1,
  2243. "y": 1,
  2244. "z": 1
  2245. },
  2246. "_mobility": 0,
  2247. "_layer": 33554432,
  2248. "_euler": {
  2249. "__type__": "cc.Vec3",
  2250. "x": 0,
  2251. "y": 0,
  2252. "z": 0
  2253. },
  2254. "_id": ""
  2255. },
  2256. {
  2257. "__type__": "cc.UITransform",
  2258. "_name": "",
  2259. "_objFlags": 0,
  2260. "__editorExtras__": {},
  2261. "node": {
  2262. "__id__": 82
  2263. },
  2264. "_enabled": true,
  2265. "__prefab": {
  2266. "__id__": 84
  2267. },
  2268. "_contentSize": {
  2269. "__type__": "cc.Size",
  2270. "width": 0,
  2271. "height": 29
  2272. },
  2273. "_anchorPoint": {
  2274. "__type__": "cc.Vec2",
  2275. "x": 0,
  2276. "y": 0.5
  2277. },
  2278. "_id": ""
  2279. },
  2280. {
  2281. "__type__": "cc.CompPrefabInfo",
  2282. "fileId": "cdfyobJRZNUoAuY4KRh+wQ"
  2283. },
  2284. {
  2285. "__type__": "cc.Sprite",
  2286. "_name": "",
  2287. "_objFlags": 0,
  2288. "__editorExtras__": {},
  2289. "node": {
  2290. "__id__": 82
  2291. },
  2292. "_enabled": true,
  2293. "__prefab": {
  2294. "__id__": 86
  2295. },
  2296. "_customMaterial": null,
  2297. "_srcBlendFactor": 2,
  2298. "_dstBlendFactor": 4,
  2299. "_color": {
  2300. "__type__": "cc.Color",
  2301. "r": 255,
  2302. "g": 255,
  2303. "b": 255,
  2304. "a": 255
  2305. },
  2306. "_spriteFrame": {
  2307. "__uuid__": "f764bc02-32c4-4296-aa02-ec4433a66c61@f9941",
  2308. "__expectedType__": "cc.SpriteFrame"
  2309. },
  2310. "_type": 1,
  2311. "_fillType": 0,
  2312. "_sizeMode": 0,
  2313. "_fillCenter": {
  2314. "__type__": "cc.Vec2",
  2315. "x": 0,
  2316. "y": 0
  2317. },
  2318. "_fillStart": 0,
  2319. "_fillRange": 0,
  2320. "_isTrimmedMode": true,
  2321. "_useGrayscale": false,
  2322. "_atlas": null,
  2323. "_id": ""
  2324. },
  2325. {
  2326. "__type__": "cc.CompPrefabInfo",
  2327. "fileId": "437IrTD8hKYI7J8fOk3R2U"
  2328. },
  2329. {
  2330. "__type__": "cc.Widget",
  2331. "_name": "",
  2332. "_objFlags": 0,
  2333. "__editorExtras__": {},
  2334. "node": {
  2335. "__id__": 82
  2336. },
  2337. "_enabled": false,
  2338. "__prefab": {
  2339. "__id__": 88
  2340. },
  2341. "_alignFlags": 45,
  2342. "_target": null,
  2343. "_left": 4,
  2344. "_right": 156,
  2345. "_top": 4,
  2346. "_bottom": 4,
  2347. "_horizontalCenter": 0,
  2348. "_verticalCenter": 0,
  2349. "_isAbsLeft": true,
  2350. "_isAbsRight": true,
  2351. "_isAbsTop": true,
  2352. "_isAbsBottom": true,
  2353. "_isAbsHorizontalCenter": true,
  2354. "_isAbsVerticalCenter": true,
  2355. "_originalWidth": 150,
  2356. "_originalHeight": 15,
  2357. "_alignMode": 2,
  2358. "_lockFlags": 0,
  2359. "_id": ""
  2360. },
  2361. {
  2362. "__type__": "cc.CompPrefabInfo",
  2363. "fileId": "69Wv43KtVGwpqxlZg1rIpz"
  2364. },
  2365. {
  2366. "__type__": "cc.PrefabInfo",
  2367. "root": {
  2368. "__id__": 1
  2369. },
  2370. "asset": {
  2371. "__id__": 0
  2372. },
  2373. "fileId": "2dhjfTemBF8pgENP5oukqS",
  2374. "instance": null,
  2375. "targetOverrides": null,
  2376. "nestedPrefabInstanceRoots": null
  2377. },
  2378. {
  2379. "__type__": "cc.Node",
  2380. "_name": "atts_label",
  2381. "_objFlags": 0,
  2382. "__editorExtras__": {},
  2383. "_parent": {
  2384. "__id__": 81
  2385. },
  2386. "_children": [],
  2387. "_active": true,
  2388. "_components": [
  2389. {
  2390. "__id__": 91
  2391. },
  2392. {
  2393. "__id__": 93
  2394. },
  2395. {
  2396. "__id__": 95
  2397. }
  2398. ],
  2399. "_prefab": {
  2400. "__id__": 97
  2401. },
  2402. "_lpos": {
  2403. "__type__": "cc.Vec3",
  2404. "x": 1.624,
  2405. "y": 1.624,
  2406. "z": 0
  2407. },
  2408. "_lrot": {
  2409. "__type__": "cc.Quat",
  2410. "x": 0,
  2411. "y": 0,
  2412. "z": 0,
  2413. "w": 1
  2414. },
  2415. "_lscale": {
  2416. "__type__": "cc.Vec3",
  2417. "x": 1,
  2418. "y": 1,
  2419. "z": 1
  2420. },
  2421. "_mobility": 0,
  2422. "_layer": 33554432,
  2423. "_euler": {
  2424. "__type__": "cc.Vec3",
  2425. "x": 0,
  2426. "y": 0,
  2427. "z": 0
  2428. },
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.UITransform",
  2433. "_name": "",
  2434. "_objFlags": 0,
  2435. "__editorExtras__": {},
  2436. "node": {
  2437. "__id__": 90
  2438. },
  2439. "_enabled": true,
  2440. "__prefab": {
  2441. "__id__": 92
  2442. },
  2443. "_contentSize": {
  2444. "__type__": "cc.Size",
  2445. "width": 90.53044128417969,
  2446. "height": 38.3442
  2447. },
  2448. "_anchorPoint": {
  2449. "__type__": "cc.Vec2",
  2450. "x": 0.5,
  2451. "y": 0.5
  2452. },
  2453. "_id": ""
  2454. },
  2455. {
  2456. "__type__": "cc.CompPrefabInfo",
  2457. "fileId": "22xsiCe2xMAo1f6MEVUaxX"
  2458. },
  2459. {
  2460. "__type__": "cc.Label",
  2461. "_name": "",
  2462. "_objFlags": 0,
  2463. "__editorExtras__": {},
  2464. "node": {
  2465. "__id__": 90
  2466. },
  2467. "_enabled": true,
  2468. "__prefab": {
  2469. "__id__": 94
  2470. },
  2471. "_customMaterial": null,
  2472. "_srcBlendFactor": 2,
  2473. "_dstBlendFactor": 4,
  2474. "_color": {
  2475. "__type__": "cc.Color",
  2476. "r": 255,
  2477. "g": 255,
  2478. "b": 255,
  2479. "a": 255
  2480. },
  2481. "_string": "20/100",
  2482. "_horizontalAlign": 1,
  2483. "_verticalAlign": 1,
  2484. "_actualFontSize": 25.67,
  2485. "_fontSize": 25.67,
  2486. "_fontFamily": "Arial",
  2487. "_lineHeight": 25.67,
  2488. "_overflow": 0,
  2489. "_enableWrapText": true,
  2490. "_font": {
  2491. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  2492. "__expectedType__": "cc.TTFFont"
  2493. },
  2494. "_isSystemFontUsed": false,
  2495. "_spacingX": 0,
  2496. "_isItalic": false,
  2497. "_isBold": false,
  2498. "_isUnderline": false,
  2499. "_underlineHeight": 2,
  2500. "_cacheMode": 0,
  2501. "_enableOutline": true,
  2502. "_outlineColor": {
  2503. "__type__": "cc.Color",
  2504. "r": 156,
  2505. "g": 107,
  2506. "b": 73,
  2507. "a": 255
  2508. },
  2509. "_outlineWidth": 3,
  2510. "_enableShadow": false,
  2511. "_shadowColor": {
  2512. "__type__": "cc.Color",
  2513. "r": 0,
  2514. "g": 0,
  2515. "b": 0,
  2516. "a": 255
  2517. },
  2518. "_shadowOffset": {
  2519. "__type__": "cc.Vec2",
  2520. "x": 2,
  2521. "y": 2
  2522. },
  2523. "_shadowBlur": 2,
  2524. "_id": ""
  2525. },
  2526. {
  2527. "__type__": "cc.CompPrefabInfo",
  2528. "fileId": "ca3ELSE19HC42JZXqB1XJB"
  2529. },
  2530. {
  2531. "__type__": "cc.Widget",
  2532. "_name": "",
  2533. "_objFlags": 0,
  2534. "__editorExtras__": {},
  2535. "node": {
  2536. "__id__": 90
  2537. },
  2538. "_enabled": true,
  2539. "__prefab": {
  2540. "__id__": 96
  2541. },
  2542. "_alignFlags": 18,
  2543. "_target": null,
  2544. "_left": 0,
  2545. "_right": 0,
  2546. "_top": 0,
  2547. "_bottom": 0,
  2548. "_horizontalCenter": 1.624,
  2549. "_verticalCenter": 1.624,
  2550. "_isAbsLeft": true,
  2551. "_isAbsRight": true,
  2552. "_isAbsTop": true,
  2553. "_isAbsBottom": true,
  2554. "_isAbsHorizontalCenter": true,
  2555. "_isAbsVerticalCenter": true,
  2556. "_originalWidth": 0,
  2557. "_originalHeight": 0,
  2558. "_alignMode": 2,
  2559. "_lockFlags": 0,
  2560. "_id": ""
  2561. },
  2562. {
  2563. "__type__": "cc.CompPrefabInfo",
  2564. "fileId": "351dOshgxEwoiQl6VhtGmQ"
  2565. },
  2566. {
  2567. "__type__": "cc.PrefabInfo",
  2568. "root": {
  2569. "__id__": 1
  2570. },
  2571. "asset": {
  2572. "__id__": 0
  2573. },
  2574. "fileId": "c0iKih6+1Odrhi/MjDQnab",
  2575. "instance": null,
  2576. "targetOverrides": null,
  2577. "nestedPrefabInstanceRoots": null
  2578. },
  2579. {
  2580. "__type__": "cc.UITransform",
  2581. "_name": "",
  2582. "_objFlags": 0,
  2583. "__editorExtras__": {},
  2584. "node": {
  2585. "__id__": 81
  2586. },
  2587. "_enabled": true,
  2588. "__prefab": {
  2589. "__id__": 99
  2590. },
  2591. "_contentSize": {
  2592. "__type__": "cc.Size",
  2593. "width": 160,
  2594. "height": 37
  2595. },
  2596. "_anchorPoint": {
  2597. "__type__": "cc.Vec2",
  2598. "x": 0.5,
  2599. "y": 0.5
  2600. },
  2601. "_id": ""
  2602. },
  2603. {
  2604. "__type__": "cc.CompPrefabInfo",
  2605. "fileId": "c1XkEPQNFEzosSgDgKghR5"
  2606. },
  2607. {
  2608. "__type__": "cc.Sprite",
  2609. "_name": "",
  2610. "_objFlags": 0,
  2611. "__editorExtras__": {},
  2612. "node": {
  2613. "__id__": 81
  2614. },
  2615. "_enabled": true,
  2616. "__prefab": {
  2617. "__id__": 101
  2618. },
  2619. "_customMaterial": null,
  2620. "_srcBlendFactor": 2,
  2621. "_dstBlendFactor": 4,
  2622. "_color": {
  2623. "__type__": "cc.Color",
  2624. "r": 255,
  2625. "g": 255,
  2626. "b": 255,
  2627. "a": 255
  2628. },
  2629. "_spriteFrame": {
  2630. "__uuid__": "571bf4f9-9d3d-4538-92c4-6ba77f622c61@f9941",
  2631. "__expectedType__": "cc.SpriteFrame"
  2632. },
  2633. "_type": 1,
  2634. "_fillType": 0,
  2635. "_sizeMode": 0,
  2636. "_fillCenter": {
  2637. "__type__": "cc.Vec2",
  2638. "x": 0,
  2639. "y": 0
  2640. },
  2641. "_fillStart": 0,
  2642. "_fillRange": 0,
  2643. "_isTrimmedMode": true,
  2644. "_useGrayscale": false,
  2645. "_atlas": null,
  2646. "_id": ""
  2647. },
  2648. {
  2649. "__type__": "cc.CompPrefabInfo",
  2650. "fileId": "63FCoFRXZHYL/V8ql0p5Mr"
  2651. },
  2652. {
  2653. "__type__": "cc.ProgressBar",
  2654. "_name": "",
  2655. "_objFlags": 0,
  2656. "__editorExtras__": {},
  2657. "node": {
  2658. "__id__": 81
  2659. },
  2660. "_enabled": true,
  2661. "__prefab": {
  2662. "__id__": 103
  2663. },
  2664. "_barSprite": {
  2665. "__id__": 85
  2666. },
  2667. "_mode": 0,
  2668. "_totalLength": 152,
  2669. "_progress": 0,
  2670. "_reverse": false,
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.CompPrefabInfo",
  2675. "fileId": "66faw7GX1Fgo6aPYCMa0py"
  2676. },
  2677. {
  2678. "__type__": "cc.PrefabInfo",
  2679. "root": {
  2680. "__id__": 1
  2681. },
  2682. "asset": {
  2683. "__id__": 0
  2684. },
  2685. "fileId": "09sboINGRCwI4yLQB+T8jP",
  2686. "instance": null,
  2687. "targetOverrides": null,
  2688. "nestedPrefabInstanceRoots": null
  2689. },
  2690. {
  2691. "__type__": "cc.Node",
  2692. "_name": "ad_free_btn",
  2693. "_objFlags": 0,
  2694. "__editorExtras__": {},
  2695. "_parent": {
  2696. "__id__": 66
  2697. },
  2698. "_children": [
  2699. {
  2700. "__id__": 106
  2701. }
  2702. ],
  2703. "_active": true,
  2704. "_components": [
  2705. {
  2706. "__id__": 114
  2707. },
  2708. {
  2709. "__id__": 116
  2710. },
  2711. {
  2712. "__id__": 118
  2713. }
  2714. ],
  2715. "_prefab": {
  2716. "__id__": 121
  2717. },
  2718. "_lpos": {
  2719. "__type__": "cc.Vec3",
  2720. "x": 152.778,
  2721. "y": -2.051,
  2722. "z": 0
  2723. },
  2724. "_lrot": {
  2725. "__type__": "cc.Quat",
  2726. "x": 0,
  2727. "y": 0,
  2728. "z": 0,
  2729. "w": 1
  2730. },
  2731. "_lscale": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 1,
  2734. "y": 1,
  2735. "z": 1
  2736. },
  2737. "_mobility": 0,
  2738. "_layer": 33554432,
  2739. "_euler": {
  2740. "__type__": "cc.Vec3",
  2741. "x": 0,
  2742. "y": 0,
  2743. "z": 0
  2744. },
  2745. "_id": ""
  2746. },
  2747. {
  2748. "__type__": "cc.Node",
  2749. "_name": "lable",
  2750. "_objFlags": 0,
  2751. "__editorExtras__": {},
  2752. "_parent": {
  2753. "__id__": 105
  2754. },
  2755. "_children": [],
  2756. "_active": true,
  2757. "_components": [
  2758. {
  2759. "__id__": 107
  2760. },
  2761. {
  2762. "__id__": 109
  2763. },
  2764. {
  2765. "__id__": 111
  2766. }
  2767. ],
  2768. "_prefab": {
  2769. "__id__": 113
  2770. },
  2771. "_lpos": {
  2772. "__type__": "cc.Vec3",
  2773. "x": 0,
  2774. "y": 0,
  2775. "z": 0
  2776. },
  2777. "_lrot": {
  2778. "__type__": "cc.Quat",
  2779. "x": 0,
  2780. "y": 0,
  2781. "z": 0,
  2782. "w": 1
  2783. },
  2784. "_lscale": {
  2785. "__type__": "cc.Vec3",
  2786. "x": 1,
  2787. "y": 1,
  2788. "z": 1
  2789. },
  2790. "_mobility": 0,
  2791. "_layer": 33554432,
  2792. "_euler": {
  2793. "__type__": "cc.Vec3",
  2794. "x": 0,
  2795. "y": 0,
  2796. "z": 0
  2797. },
  2798. "_id": ""
  2799. },
  2800. {
  2801. "__type__": "cc.UITransform",
  2802. "_name": "",
  2803. "_objFlags": 0,
  2804. "__editorExtras__": {},
  2805. "node": {
  2806. "__id__": 106
  2807. },
  2808. "_enabled": true,
  2809. "__prefab": {
  2810. "__id__": 108
  2811. },
  2812. "_contentSize": {
  2813. "__type__": "cc.Size",
  2814. "width": 107.57069396972656,
  2815. "height": 40.6374
  2816. },
  2817. "_anchorPoint": {
  2818. "__type__": "cc.Vec2",
  2819. "x": 0.5,
  2820. "y": 0.5
  2821. },
  2822. "_id": ""
  2823. },
  2824. {
  2825. "__type__": "cc.CompPrefabInfo",
  2826. "fileId": "e1uZ9mKhNKPZGUX/SoexTg"
  2827. },
  2828. {
  2829. "__type__": "cc.Label",
  2830. "_name": "",
  2831. "_objFlags": 0,
  2832. "__editorExtras__": {},
  2833. "node": {
  2834. "__id__": 106
  2835. },
  2836. "_enabled": true,
  2837. "__prefab": {
  2838. "__id__": 110
  2839. },
  2840. "_customMaterial": null,
  2841. "_srcBlendFactor": 2,
  2842. "_dstBlendFactor": 4,
  2843. "_color": {
  2844. "__type__": "cc.Color",
  2845. "r": 255,
  2846. "g": 255,
  2847. "b": 255,
  2848. "a": 255
  2849. },
  2850. "_string": "Ad Free",
  2851. "_horizontalAlign": 1,
  2852. "_verticalAlign": 1,
  2853. "_actualFontSize": 27.49,
  2854. "_fontSize": 27.49,
  2855. "_fontFamily": "Arial",
  2856. "_lineHeight": 27.49,
  2857. "_overflow": 0,
  2858. "_enableWrapText": true,
  2859. "_font": {
  2860. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  2861. "__expectedType__": "cc.TTFFont"
  2862. },
  2863. "_isSystemFontUsed": false,
  2864. "_spacingX": 0,
  2865. "_isItalic": false,
  2866. "_isBold": false,
  2867. "_isUnderline": false,
  2868. "_underlineHeight": 2,
  2869. "_cacheMode": 0,
  2870. "_enableOutline": true,
  2871. "_outlineColor": {
  2872. "__type__": "cc.Color",
  2873. "r": 64,
  2874. "g": 27,
  2875. "b": 5,
  2876. "a": 255
  2877. },
  2878. "_outlineWidth": 3,
  2879. "_enableShadow": false,
  2880. "_shadowColor": {
  2881. "__type__": "cc.Color",
  2882. "r": 0,
  2883. "g": 0,
  2884. "b": 0,
  2885. "a": 255
  2886. },
  2887. "_shadowOffset": {
  2888. "__type__": "cc.Vec2",
  2889. "x": 2,
  2890. "y": 2
  2891. },
  2892. "_shadowBlur": 2,
  2893. "_id": ""
  2894. },
  2895. {
  2896. "__type__": "cc.CompPrefabInfo",
  2897. "fileId": "1bbab2C2ZDZ7riPqvyYqth"
  2898. },
  2899. {
  2900. "__type__": "cc.Widget",
  2901. "_name": "",
  2902. "_objFlags": 0,
  2903. "__editorExtras__": {},
  2904. "node": {
  2905. "__id__": 106
  2906. },
  2907. "_enabled": true,
  2908. "__prefab": {
  2909. "__id__": 112
  2910. },
  2911. "_alignFlags": 18,
  2912. "_target": null,
  2913. "_left": 0,
  2914. "_right": 0,
  2915. "_top": 0,
  2916. "_bottom": 0,
  2917. "_horizontalCenter": 0,
  2918. "_verticalCenter": 0,
  2919. "_isAbsLeft": true,
  2920. "_isAbsRight": true,
  2921. "_isAbsTop": true,
  2922. "_isAbsBottom": true,
  2923. "_isAbsHorizontalCenter": true,
  2924. "_isAbsVerticalCenter": true,
  2925. "_originalWidth": 0,
  2926. "_originalHeight": 0,
  2927. "_alignMode": 2,
  2928. "_lockFlags": 0,
  2929. "_id": ""
  2930. },
  2931. {
  2932. "__type__": "cc.CompPrefabInfo",
  2933. "fileId": "aaN5ZKJA9KbprI8nyfydE3"
  2934. },
  2935. {
  2936. "__type__": "cc.PrefabInfo",
  2937. "root": {
  2938. "__id__": 1
  2939. },
  2940. "asset": {
  2941. "__id__": 0
  2942. },
  2943. "fileId": "dfnPEuji9HJrMRjWG6zCGg",
  2944. "instance": null,
  2945. "targetOverrides": null,
  2946. "nestedPrefabInstanceRoots": null
  2947. },
  2948. {
  2949. "__type__": "cc.UITransform",
  2950. "_name": "",
  2951. "_objFlags": 0,
  2952. "__editorExtras__": {},
  2953. "node": {
  2954. "__id__": 105
  2955. },
  2956. "_enabled": true,
  2957. "__prefab": {
  2958. "__id__": 115
  2959. },
  2960. "_contentSize": {
  2961. "__type__": "cc.Size",
  2962. "width": 136,
  2963. "height": 64
  2964. },
  2965. "_anchorPoint": {
  2966. "__type__": "cc.Vec2",
  2967. "x": 0.5,
  2968. "y": 0.5
  2969. },
  2970. "_id": ""
  2971. },
  2972. {
  2973. "__type__": "cc.CompPrefabInfo",
  2974. "fileId": "1bdNuwIJBMFLLcKzdm8fg5"
  2975. },
  2976. {
  2977. "__type__": "cc.Sprite",
  2978. "_name": "",
  2979. "_objFlags": 0,
  2980. "__editorExtras__": {},
  2981. "node": {
  2982. "__id__": 105
  2983. },
  2984. "_enabled": true,
  2985. "__prefab": {
  2986. "__id__": 117
  2987. },
  2988. "_customMaterial": null,
  2989. "_srcBlendFactor": 2,
  2990. "_dstBlendFactor": 4,
  2991. "_color": {
  2992. "__type__": "cc.Color",
  2993. "r": 255,
  2994. "g": 255,
  2995. "b": 255,
  2996. "a": 255
  2997. },
  2998. "_spriteFrame": {
  2999. "__uuid__": "fecaf5d8-52fa-4a90-879b-954afedd4b26@f9941",
  3000. "__expectedType__": "cc.SpriteFrame"
  3001. },
  3002. "_type": 0,
  3003. "_fillType": 0,
  3004. "_sizeMode": 1,
  3005. "_fillCenter": {
  3006. "__type__": "cc.Vec2",
  3007. "x": 0,
  3008. "y": 0
  3009. },
  3010. "_fillStart": 0,
  3011. "_fillRange": 0,
  3012. "_isTrimmedMode": true,
  3013. "_useGrayscale": false,
  3014. "_atlas": null,
  3015. "_id": ""
  3016. },
  3017. {
  3018. "__type__": "cc.CompPrefabInfo",
  3019. "fileId": "92aeBPhJtN/5tNvrUiobxD"
  3020. },
  3021. {
  3022. "__type__": "cc.Button",
  3023. "_name": "",
  3024. "_objFlags": 0,
  3025. "__editorExtras__": {},
  3026. "node": {
  3027. "__id__": 105
  3028. },
  3029. "_enabled": true,
  3030. "__prefab": {
  3031. "__id__": 119
  3032. },
  3033. "clickEvents": [
  3034. {
  3035. "__id__": 120
  3036. }
  3037. ],
  3038. "_interactable": true,
  3039. "_transition": 3,
  3040. "_normalColor": {
  3041. "__type__": "cc.Color",
  3042. "r": 255,
  3043. "g": 255,
  3044. "b": 255,
  3045. "a": 255
  3046. },
  3047. "_hoverColor": {
  3048. "__type__": "cc.Color",
  3049. "r": 211,
  3050. "g": 211,
  3051. "b": 211,
  3052. "a": 255
  3053. },
  3054. "_pressedColor": {
  3055. "__type__": "cc.Color",
  3056. "r": 255,
  3057. "g": 255,
  3058. "b": 255,
  3059. "a": 255
  3060. },
  3061. "_disabledColor": {
  3062. "__type__": "cc.Color",
  3063. "r": 124,
  3064. "g": 124,
  3065. "b": 124,
  3066. "a": 255
  3067. },
  3068. "_normalSprite": null,
  3069. "_hoverSprite": null,
  3070. "_pressedSprite": null,
  3071. "_disabledSprite": null,
  3072. "_duration": 0.1,
  3073. "_zoomScale": 1.02,
  3074. "_target": null,
  3075. "_id": ""
  3076. },
  3077. {
  3078. "__type__": "cc.CompPrefabInfo",
  3079. "fileId": "b9rVcY2QdJjZtSHEK8ThyY"
  3080. },
  3081. {
  3082. "__type__": "cc.ClickEvent",
  3083. "target": {
  3084. "__id__": 66
  3085. },
  3086. "component": "",
  3087. "_componentId": "58119Xb2Q5HDJm3BiboEXdY",
  3088. "handler": "onBtnClicked",
  3089. "customEventData": "1"
  3090. },
  3091. {
  3092. "__type__": "cc.PrefabInfo",
  3093. "root": {
  3094. "__id__": 1
  3095. },
  3096. "asset": {
  3097. "__id__": 0
  3098. },
  3099. "fileId": "753h6FfcRM+pP1UouhYMXZ",
  3100. "instance": null,
  3101. "targetOverrides": null,
  3102. "nestedPrefabInstanceRoots": null
  3103. },
  3104. {
  3105. "__type__": "cc.Node",
  3106. "_name": "video_btn",
  3107. "_objFlags": 0,
  3108. "__editorExtras__": {},
  3109. "_parent": {
  3110. "__id__": 66
  3111. },
  3112. "_children": [
  3113. {
  3114. "__id__": 123
  3115. },
  3116. {
  3117. "__id__": 129
  3118. }
  3119. ],
  3120. "_active": true,
  3121. "_components": [
  3122. {
  3123. "__id__": 137
  3124. },
  3125. {
  3126. "__id__": 139
  3127. },
  3128. {
  3129. "__id__": 141
  3130. }
  3131. ],
  3132. "_prefab": {
  3133. "__id__": 144
  3134. },
  3135. "_lpos": {
  3136. "__type__": "cc.Vec3",
  3137. "x": 152.778,
  3138. "y": -2.051,
  3139. "z": 0
  3140. },
  3141. "_lrot": {
  3142. "__type__": "cc.Quat",
  3143. "x": 0,
  3144. "y": 0,
  3145. "z": 0,
  3146. "w": 1
  3147. },
  3148. "_lscale": {
  3149. "__type__": "cc.Vec3",
  3150. "x": 1,
  3151. "y": 1,
  3152. "z": 1
  3153. },
  3154. "_mobility": 0,
  3155. "_layer": 33554432,
  3156. "_euler": {
  3157. "__type__": "cc.Vec3",
  3158. "x": 0,
  3159. "y": 0,
  3160. "z": 0
  3161. },
  3162. "_id": ""
  3163. },
  3164. {
  3165. "__type__": "cc.Node",
  3166. "_name": "store_video",
  3167. "_objFlags": 0,
  3168. "__editorExtras__": {},
  3169. "_parent": {
  3170. "__id__": 122
  3171. },
  3172. "_children": [],
  3173. "_active": true,
  3174. "_components": [
  3175. {
  3176. "__id__": 124
  3177. },
  3178. {
  3179. "__id__": 126
  3180. }
  3181. ],
  3182. "_prefab": {
  3183. "__id__": 128
  3184. },
  3185. "_lpos": {
  3186. "__type__": "cc.Vec3",
  3187. "x": -21.93292236328125,
  3188. "y": 0,
  3189. "z": 0
  3190. },
  3191. "_lrot": {
  3192. "__type__": "cc.Quat",
  3193. "x": 0,
  3194. "y": 0,
  3195. "z": 0,
  3196. "w": 1
  3197. },
  3198. "_lscale": {
  3199. "__type__": "cc.Vec3",
  3200. "x": 1,
  3201. "y": 1,
  3202. "z": 1
  3203. },
  3204. "_mobility": 0,
  3205. "_layer": 33554432,
  3206. "_euler": {
  3207. "__type__": "cc.Vec3",
  3208. "x": 0,
  3209. "y": 0,
  3210. "z": 0
  3211. },
  3212. "_id": ""
  3213. },
  3214. {
  3215. "__type__": "cc.UITransform",
  3216. "_name": "",
  3217. "_objFlags": 0,
  3218. "__editorExtras__": {},
  3219. "node": {
  3220. "__id__": 123
  3221. },
  3222. "_enabled": true,
  3223. "__prefab": {
  3224. "__id__": 125
  3225. },
  3226. "_contentSize": {
  3227. "__type__": "cc.Size",
  3228. "width": 46,
  3229. "height": 28
  3230. },
  3231. "_anchorPoint": {
  3232. "__type__": "cc.Vec2",
  3233. "x": 0.5,
  3234. "y": 0.5
  3235. },
  3236. "_id": ""
  3237. },
  3238. {
  3239. "__type__": "cc.CompPrefabInfo",
  3240. "fileId": "84wt2Q+rZKMJmnGfDewoeY"
  3241. },
  3242. {
  3243. "__type__": "cc.Sprite",
  3244. "_name": "",
  3245. "_objFlags": 0,
  3246. "__editorExtras__": {},
  3247. "node": {
  3248. "__id__": 123
  3249. },
  3250. "_enabled": true,
  3251. "__prefab": {
  3252. "__id__": 127
  3253. },
  3254. "_customMaterial": null,
  3255. "_srcBlendFactor": 2,
  3256. "_dstBlendFactor": 4,
  3257. "_color": {
  3258. "__type__": "cc.Color",
  3259. "r": 255,
  3260. "g": 255,
  3261. "b": 255,
  3262. "a": 255
  3263. },
  3264. "_spriteFrame": {
  3265. "__uuid__": "696e4160-7535-41ed-bf31-22ce29a550ec@f9941",
  3266. "__expectedType__": "cc.SpriteFrame"
  3267. },
  3268. "_type": 0,
  3269. "_fillType": 0,
  3270. "_sizeMode": 1,
  3271. "_fillCenter": {
  3272. "__type__": "cc.Vec2",
  3273. "x": 0,
  3274. "y": 0
  3275. },
  3276. "_fillStart": 0,
  3277. "_fillRange": 0,
  3278. "_isTrimmedMode": true,
  3279. "_useGrayscale": false,
  3280. "_atlas": null,
  3281. "_id": ""
  3282. },
  3283. {
  3284. "__type__": "cc.CompPrefabInfo",
  3285. "fileId": "30/FcHyLZPi4Wn9ktwMy7a"
  3286. },
  3287. {
  3288. "__type__": "cc.PrefabInfo",
  3289. "root": {
  3290. "__id__": 1
  3291. },
  3292. "asset": {
  3293. "__id__": 0
  3294. },
  3295. "fileId": "59M8ICuXNNqJU7x3BD3qrr",
  3296. "instance": null,
  3297. "targetOverrides": null,
  3298. "nestedPrefabInstanceRoots": null
  3299. },
  3300. {
  3301. "__type__": "cc.Node",
  3302. "_name": "lable",
  3303. "_objFlags": 0,
  3304. "__editorExtras__": {},
  3305. "_parent": {
  3306. "__id__": 122
  3307. },
  3308. "_children": [],
  3309. "_active": true,
  3310. "_components": [
  3311. {
  3312. "__id__": 130
  3313. },
  3314. {
  3315. "__id__": 132
  3316. },
  3317. {
  3318. "__id__": 134
  3319. }
  3320. ],
  3321. "_prefab": {
  3322. "__id__": 136
  3323. },
  3324. "_lpos": {
  3325. "__type__": "cc.Vec3",
  3326. "x": 38.59,
  3327. "y": 0,
  3328. "z": 0
  3329. },
  3330. "_lrot": {
  3331. "__type__": "cc.Quat",
  3332. "x": 0,
  3333. "y": 0,
  3334. "z": 0,
  3335. "w": 1
  3336. },
  3337. "_lscale": {
  3338. "__type__": "cc.Vec3",
  3339. "x": 1,
  3340. "y": 1,
  3341. "z": 1
  3342. },
  3343. "_mobility": 0,
  3344. "_layer": 33554432,
  3345. "_euler": {
  3346. "__type__": "cc.Vec3",
  3347. "x": 0,
  3348. "y": 0,
  3349. "z": 0
  3350. },
  3351. "_id": ""
  3352. },
  3353. {
  3354. "__type__": "cc.UITransform",
  3355. "_name": "",
  3356. "_objFlags": 0,
  3357. "__editorExtras__": {},
  3358. "node": {
  3359. "__id__": 129
  3360. },
  3361. "_enabled": true,
  3362. "__prefab": {
  3363. "__id__": 131
  3364. },
  3365. "_contentSize": {
  3366. "__type__": "cc.Size",
  3367. "width": 43.8658447265625,
  3368. "height": 40.6374
  3369. },
  3370. "_anchorPoint": {
  3371. "__type__": "cc.Vec2",
  3372. "x": 0.5,
  3373. "y": 0.5
  3374. },
  3375. "_id": ""
  3376. },
  3377. {
  3378. "__type__": "cc.CompPrefabInfo",
  3379. "fileId": "28j/mktzZNsK3Xvqr84+1v"
  3380. },
  3381. {
  3382. "__type__": "cc.Label",
  3383. "_name": "",
  3384. "_objFlags": 0,
  3385. "__editorExtras__": {},
  3386. "node": {
  3387. "__id__": 129
  3388. },
  3389. "_enabled": true,
  3390. "__prefab": {
  3391. "__id__": 133
  3392. },
  3393. "_customMaterial": null,
  3394. "_srcBlendFactor": 2,
  3395. "_dstBlendFactor": 4,
  3396. "_color": {
  3397. "__type__": "cc.Color",
  3398. "r": 255,
  3399. "g": 255,
  3400. "b": 255,
  3401. "a": 255
  3402. },
  3403. "_string": "UP",
  3404. "_horizontalAlign": 1,
  3405. "_verticalAlign": 1,
  3406. "_actualFontSize": 27.49,
  3407. "_fontSize": 27.49,
  3408. "_fontFamily": "Arial",
  3409. "_lineHeight": 27.49,
  3410. "_overflow": 0,
  3411. "_enableWrapText": true,
  3412. "_font": {
  3413. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  3414. "__expectedType__": "cc.TTFFont"
  3415. },
  3416. "_isSystemFontUsed": false,
  3417. "_spacingX": 0,
  3418. "_isItalic": false,
  3419. "_isBold": false,
  3420. "_isUnderline": false,
  3421. "_underlineHeight": 2,
  3422. "_cacheMode": 0,
  3423. "_enableOutline": true,
  3424. "_outlineColor": {
  3425. "__type__": "cc.Color",
  3426. "r": 64,
  3427. "g": 27,
  3428. "b": 5,
  3429. "a": 255
  3430. },
  3431. "_outlineWidth": 3,
  3432. "_enableShadow": false,
  3433. "_shadowColor": {
  3434. "__type__": "cc.Color",
  3435. "r": 0,
  3436. "g": 0,
  3437. "b": 0,
  3438. "a": 255
  3439. },
  3440. "_shadowOffset": {
  3441. "__type__": "cc.Vec2",
  3442. "x": 2,
  3443. "y": 2
  3444. },
  3445. "_shadowBlur": 2,
  3446. "_id": ""
  3447. },
  3448. {
  3449. "__type__": "cc.CompPrefabInfo",
  3450. "fileId": "84Xpl8xhNE+7ayni2Cb55B"
  3451. },
  3452. {
  3453. "__type__": "cc.Widget",
  3454. "_name": "",
  3455. "_objFlags": 0,
  3456. "__editorExtras__": {},
  3457. "node": {
  3458. "__id__": 129
  3459. },
  3460. "_enabled": true,
  3461. "__prefab": {
  3462. "__id__": 135
  3463. },
  3464. "_alignFlags": 18,
  3465. "_target": null,
  3466. "_left": 0,
  3467. "_right": 0,
  3468. "_top": 0,
  3469. "_bottom": 0,
  3470. "_horizontalCenter": 38.59,
  3471. "_verticalCenter": 0,
  3472. "_isAbsLeft": true,
  3473. "_isAbsRight": true,
  3474. "_isAbsTop": true,
  3475. "_isAbsBottom": true,
  3476. "_isAbsHorizontalCenter": true,
  3477. "_isAbsVerticalCenter": true,
  3478. "_originalWidth": 0,
  3479. "_originalHeight": 0,
  3480. "_alignMode": 2,
  3481. "_lockFlags": 0,
  3482. "_id": ""
  3483. },
  3484. {
  3485. "__type__": "cc.CompPrefabInfo",
  3486. "fileId": "59bT9H0uFIJIWQ7Nhqg/tT"
  3487. },
  3488. {
  3489. "__type__": "cc.PrefabInfo",
  3490. "root": {
  3491. "__id__": 1
  3492. },
  3493. "asset": {
  3494. "__id__": 0
  3495. },
  3496. "fileId": "bbMEosHhhKFI03ce2f0wh8",
  3497. "instance": null,
  3498. "targetOverrides": null,
  3499. "nestedPrefabInstanceRoots": null
  3500. },
  3501. {
  3502. "__type__": "cc.UITransform",
  3503. "_name": "",
  3504. "_objFlags": 0,
  3505. "__editorExtras__": {},
  3506. "node": {
  3507. "__id__": 122
  3508. },
  3509. "_enabled": true,
  3510. "__prefab": {
  3511. "__id__": 138
  3512. },
  3513. "_contentSize": {
  3514. "__type__": "cc.Size",
  3515. "width": 136,
  3516. "height": 63
  3517. },
  3518. "_anchorPoint": {
  3519. "__type__": "cc.Vec2",
  3520. "x": 0.5,
  3521. "y": 0.5
  3522. },
  3523. "_id": ""
  3524. },
  3525. {
  3526. "__type__": "cc.CompPrefabInfo",
  3527. "fileId": "5fHHThRUZCg6DCcYVvbsWL"
  3528. },
  3529. {
  3530. "__type__": "cc.Sprite",
  3531. "_name": "",
  3532. "_objFlags": 0,
  3533. "__editorExtras__": {},
  3534. "node": {
  3535. "__id__": 122
  3536. },
  3537. "_enabled": true,
  3538. "__prefab": {
  3539. "__id__": 140
  3540. },
  3541. "_customMaterial": null,
  3542. "_srcBlendFactor": 2,
  3543. "_dstBlendFactor": 4,
  3544. "_color": {
  3545. "__type__": "cc.Color",
  3546. "r": 255,
  3547. "g": 255,
  3548. "b": 255,
  3549. "a": 255
  3550. },
  3551. "_spriteFrame": {
  3552. "__uuid__": "5291afd3-f4b2-40af-b260-356ff6438ee4@f9941",
  3553. "__expectedType__": "cc.SpriteFrame"
  3554. },
  3555. "_type": 0,
  3556. "_fillType": 0,
  3557. "_sizeMode": 1,
  3558. "_fillCenter": {
  3559. "__type__": "cc.Vec2",
  3560. "x": 0,
  3561. "y": 0
  3562. },
  3563. "_fillStart": 0,
  3564. "_fillRange": 0,
  3565. "_isTrimmedMode": true,
  3566. "_useGrayscale": false,
  3567. "_atlas": null,
  3568. "_id": ""
  3569. },
  3570. {
  3571. "__type__": "cc.CompPrefabInfo",
  3572. "fileId": "8fk6boUM5IC6PKHQBvAn2F"
  3573. },
  3574. {
  3575. "__type__": "cc.Button",
  3576. "_name": "",
  3577. "_objFlags": 0,
  3578. "__editorExtras__": {},
  3579. "node": {
  3580. "__id__": 122
  3581. },
  3582. "_enabled": true,
  3583. "__prefab": {
  3584. "__id__": 142
  3585. },
  3586. "clickEvents": [
  3587. {
  3588. "__id__": 143
  3589. }
  3590. ],
  3591. "_interactable": true,
  3592. "_transition": 3,
  3593. "_normalColor": {
  3594. "__type__": "cc.Color",
  3595. "r": 255,
  3596. "g": 255,
  3597. "b": 255,
  3598. "a": 255
  3599. },
  3600. "_hoverColor": {
  3601. "__type__": "cc.Color",
  3602. "r": 211,
  3603. "g": 211,
  3604. "b": 211,
  3605. "a": 255
  3606. },
  3607. "_pressedColor": {
  3608. "__type__": "cc.Color",
  3609. "r": 255,
  3610. "g": 255,
  3611. "b": 255,
  3612. "a": 255
  3613. },
  3614. "_disabledColor": {
  3615. "__type__": "cc.Color",
  3616. "r": 124,
  3617. "g": 124,
  3618. "b": 124,
  3619. "a": 255
  3620. },
  3621. "_normalSprite": null,
  3622. "_hoverSprite": null,
  3623. "_pressedSprite": null,
  3624. "_disabledSprite": null,
  3625. "_duration": 0.1,
  3626. "_zoomScale": 1.02,
  3627. "_target": null,
  3628. "_id": ""
  3629. },
  3630. {
  3631. "__type__": "cc.CompPrefabInfo",
  3632. "fileId": "ae9oR7wNpJX6KbajvA6WuN"
  3633. },
  3634. {
  3635. "__type__": "cc.ClickEvent",
  3636. "target": {
  3637. "__id__": 66
  3638. },
  3639. "component": "",
  3640. "_componentId": "58119Xb2Q5HDJm3BiboEXdY",
  3641. "handler": "onBtnClicked",
  3642. "customEventData": "2"
  3643. },
  3644. {
  3645. "__type__": "cc.PrefabInfo",
  3646. "root": {
  3647. "__id__": 1
  3648. },
  3649. "asset": {
  3650. "__id__": 0
  3651. },
  3652. "fileId": "03maq0c0dMX4CvxITjYWtu",
  3653. "instance": null,
  3654. "targetOverrides": null,
  3655. "nestedPrefabInstanceRoots": null
  3656. },
  3657. {
  3658. "__type__": "cc.Node",
  3659. "_name": "prop_btn",
  3660. "_objFlags": 0,
  3661. "__editorExtras__": {},
  3662. "_parent": {
  3663. "__id__": 66
  3664. },
  3665. "_children": [
  3666. {
  3667. "__id__": 146
  3668. },
  3669. {
  3670. "__id__": 152
  3671. },
  3672. {
  3673. "__id__": 160
  3674. }
  3675. ],
  3676. "_active": true,
  3677. "_components": [
  3678. {
  3679. "__id__": 168
  3680. },
  3681. {
  3682. "__id__": 170
  3683. },
  3684. {
  3685. "__id__": 172
  3686. }
  3687. ],
  3688. "_prefab": {
  3689. "__id__": 175
  3690. },
  3691. "_lpos": {
  3692. "__type__": "cc.Vec3",
  3693. "x": 152.778,
  3694. "y": -2.051,
  3695. "z": 0
  3696. },
  3697. "_lrot": {
  3698. "__type__": "cc.Quat",
  3699. "x": 0,
  3700. "y": 0,
  3701. "z": 0,
  3702. "w": 1
  3703. },
  3704. "_lscale": {
  3705. "__type__": "cc.Vec3",
  3706. "x": 1,
  3707. "y": 1,
  3708. "z": 1
  3709. },
  3710. "_mobility": 0,
  3711. "_layer": 33554432,
  3712. "_euler": {
  3713. "__type__": "cc.Vec3",
  3714. "x": 0,
  3715. "y": 0,
  3716. "z": 0
  3717. },
  3718. "_id": ""
  3719. },
  3720. {
  3721. "__type__": "cc.Node",
  3722. "_name": "icon",
  3723. "_objFlags": 0,
  3724. "__editorExtras__": {},
  3725. "_parent": {
  3726. "__id__": 145
  3727. },
  3728. "_children": [],
  3729. "_active": true,
  3730. "_components": [
  3731. {
  3732. "__id__": 147
  3733. },
  3734. {
  3735. "__id__": 149
  3736. }
  3737. ],
  3738. "_prefab": {
  3739. "__id__": 151
  3740. },
  3741. "_lpos": {
  3742. "__type__": "cc.Vec3",
  3743. "x": -36.326,
  3744. "y": 0,
  3745. "z": 0
  3746. },
  3747. "_lrot": {
  3748. "__type__": "cc.Quat",
  3749. "x": 0,
  3750. "y": 0,
  3751. "z": 0,
  3752. "w": 1
  3753. },
  3754. "_lscale": {
  3755. "__type__": "cc.Vec3",
  3756. "x": 0.7,
  3757. "y": 0.7,
  3758. "z": 0.7
  3759. },
  3760. "_mobility": 0,
  3761. "_layer": 33554432,
  3762. "_euler": {
  3763. "__type__": "cc.Vec3",
  3764. "x": 0,
  3765. "y": 0,
  3766. "z": 0
  3767. },
  3768. "_id": ""
  3769. },
  3770. {
  3771. "__type__": "cc.UITransform",
  3772. "_name": "",
  3773. "_objFlags": 0,
  3774. "__editorExtras__": {},
  3775. "node": {
  3776. "__id__": 146
  3777. },
  3778. "_enabled": true,
  3779. "__prefab": {
  3780. "__id__": 148
  3781. },
  3782. "_contentSize": {
  3783. "__type__": "cc.Size",
  3784. "width": 61,
  3785. "height": 64
  3786. },
  3787. "_anchorPoint": {
  3788. "__type__": "cc.Vec2",
  3789. "x": 0.5,
  3790. "y": 0.5
  3791. },
  3792. "_id": ""
  3793. },
  3794. {
  3795. "__type__": "cc.CompPrefabInfo",
  3796. "fileId": "b2XHcSrppCwYR93R69iJSO"
  3797. },
  3798. {
  3799. "__type__": "cc.Sprite",
  3800. "_name": "",
  3801. "_objFlags": 0,
  3802. "__editorExtras__": {},
  3803. "node": {
  3804. "__id__": 146
  3805. },
  3806. "_enabled": true,
  3807. "__prefab": {
  3808. "__id__": 150
  3809. },
  3810. "_customMaterial": null,
  3811. "_srcBlendFactor": 2,
  3812. "_dstBlendFactor": 4,
  3813. "_color": {
  3814. "__type__": "cc.Color",
  3815. "r": 255,
  3816. "g": 255,
  3817. "b": 255,
  3818. "a": 255
  3819. },
  3820. "_spriteFrame": {
  3821. "__uuid__": "179afc17-3700-42ef-82ec-5cdf6c172978@f9941",
  3822. "__expectedType__": "cc.SpriteFrame"
  3823. },
  3824. "_type": 0,
  3825. "_fillType": 0,
  3826. "_sizeMode": 1,
  3827. "_fillCenter": {
  3828. "__type__": "cc.Vec2",
  3829. "x": 0,
  3830. "y": 0
  3831. },
  3832. "_fillStart": 0,
  3833. "_fillRange": 0,
  3834. "_isTrimmedMode": true,
  3835. "_useGrayscale": false,
  3836. "_atlas": null,
  3837. "_id": ""
  3838. },
  3839. {
  3840. "__type__": "cc.CompPrefabInfo",
  3841. "fileId": "c8IA2On4FBzaXV0BvWhOUq"
  3842. },
  3843. {
  3844. "__type__": "cc.PrefabInfo",
  3845. "root": {
  3846. "__id__": 1
  3847. },
  3848. "asset": {
  3849. "__id__": 0
  3850. },
  3851. "fileId": "bar/FsRoNMX6uu+rDH7nJ7",
  3852. "instance": null,
  3853. "targetOverrides": null,
  3854. "nestedPrefabInstanceRoots": null
  3855. },
  3856. {
  3857. "__type__": "cc.Node",
  3858. "_name": "lable",
  3859. "_objFlags": 0,
  3860. "__editorExtras__": {},
  3861. "_parent": {
  3862. "__id__": 145
  3863. },
  3864. "_children": [],
  3865. "_active": true,
  3866. "_components": [
  3867. {
  3868. "__id__": 153
  3869. },
  3870. {
  3871. "__id__": 155
  3872. },
  3873. {
  3874. "__id__": 157
  3875. }
  3876. ],
  3877. "_prefab": {
  3878. "__id__": 159
  3879. },
  3880. "_lpos": {
  3881. "__type__": "cc.Vec3",
  3882. "x": 38.59,
  3883. "y": 0,
  3884. "z": 0
  3885. },
  3886. "_lrot": {
  3887. "__type__": "cc.Quat",
  3888. "x": 0,
  3889. "y": 0,
  3890. "z": 0,
  3891. "w": 1
  3892. },
  3893. "_lscale": {
  3894. "__type__": "cc.Vec3",
  3895. "x": 1,
  3896. "y": 1,
  3897. "z": 1
  3898. },
  3899. "_mobility": 0,
  3900. "_layer": 33554432,
  3901. "_euler": {
  3902. "__type__": "cc.Vec3",
  3903. "x": 0,
  3904. "y": 0,
  3905. "z": 0
  3906. },
  3907. "_id": ""
  3908. },
  3909. {
  3910. "__type__": "cc.UITransform",
  3911. "_name": "",
  3912. "_objFlags": 0,
  3913. "__editorExtras__": {},
  3914. "node": {
  3915. "__id__": 152
  3916. },
  3917. "_enabled": true,
  3918. "__prefab": {
  3919. "__id__": 154
  3920. },
  3921. "_contentSize": {
  3922. "__type__": "cc.Size",
  3923. "width": 43.8658447265625,
  3924. "height": 40.6374
  3925. },
  3926. "_anchorPoint": {
  3927. "__type__": "cc.Vec2",
  3928. "x": 0.5,
  3929. "y": 0.5
  3930. },
  3931. "_id": ""
  3932. },
  3933. {
  3934. "__type__": "cc.CompPrefabInfo",
  3935. "fileId": "67wn0IvxJPJbMNL8wKWCgW"
  3936. },
  3937. {
  3938. "__type__": "cc.Label",
  3939. "_name": "",
  3940. "_objFlags": 0,
  3941. "__editorExtras__": {},
  3942. "node": {
  3943. "__id__": 152
  3944. },
  3945. "_enabled": true,
  3946. "__prefab": {
  3947. "__id__": 156
  3948. },
  3949. "_customMaterial": null,
  3950. "_srcBlendFactor": 2,
  3951. "_dstBlendFactor": 4,
  3952. "_color": {
  3953. "__type__": "cc.Color",
  3954. "r": 255,
  3955. "g": 255,
  3956. "b": 255,
  3957. "a": 255
  3958. },
  3959. "_string": "UP",
  3960. "_horizontalAlign": 1,
  3961. "_verticalAlign": 1,
  3962. "_actualFontSize": 27.49,
  3963. "_fontSize": 27.49,
  3964. "_fontFamily": "Arial",
  3965. "_lineHeight": 27.49,
  3966. "_overflow": 0,
  3967. "_enableWrapText": true,
  3968. "_font": {
  3969. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  3970. "__expectedType__": "cc.TTFFont"
  3971. },
  3972. "_isSystemFontUsed": false,
  3973. "_spacingX": 0,
  3974. "_isItalic": false,
  3975. "_isBold": false,
  3976. "_isUnderline": false,
  3977. "_underlineHeight": 2,
  3978. "_cacheMode": 0,
  3979. "_enableOutline": true,
  3980. "_outlineColor": {
  3981. "__type__": "cc.Color",
  3982. "r": 64,
  3983. "g": 27,
  3984. "b": 5,
  3985. "a": 255
  3986. },
  3987. "_outlineWidth": 3,
  3988. "_enableShadow": false,
  3989. "_shadowColor": {
  3990. "__type__": "cc.Color",
  3991. "r": 0,
  3992. "g": 0,
  3993. "b": 0,
  3994. "a": 255
  3995. },
  3996. "_shadowOffset": {
  3997. "__type__": "cc.Vec2",
  3998. "x": 2,
  3999. "y": 2
  4000. },
  4001. "_shadowBlur": 2,
  4002. "_id": ""
  4003. },
  4004. {
  4005. "__type__": "cc.CompPrefabInfo",
  4006. "fileId": "f60CqksjlDfKw+kn19+ytr"
  4007. },
  4008. {
  4009. "__type__": "cc.Widget",
  4010. "_name": "",
  4011. "_objFlags": 0,
  4012. "__editorExtras__": {},
  4013. "node": {
  4014. "__id__": 152
  4015. },
  4016. "_enabled": true,
  4017. "__prefab": {
  4018. "__id__": 158
  4019. },
  4020. "_alignFlags": 18,
  4021. "_target": null,
  4022. "_left": 0,
  4023. "_right": 0,
  4024. "_top": 0,
  4025. "_bottom": 0,
  4026. "_horizontalCenter": 38.59,
  4027. "_verticalCenter": 0,
  4028. "_isAbsLeft": true,
  4029. "_isAbsRight": true,
  4030. "_isAbsTop": true,
  4031. "_isAbsBottom": true,
  4032. "_isAbsHorizontalCenter": true,
  4033. "_isAbsVerticalCenter": true,
  4034. "_originalWidth": 0,
  4035. "_originalHeight": 0,
  4036. "_alignMode": 2,
  4037. "_lockFlags": 0,
  4038. "_id": ""
  4039. },
  4040. {
  4041. "__type__": "cc.CompPrefabInfo",
  4042. "fileId": "56801+gfRLhKRih2qjmdiB"
  4043. },
  4044. {
  4045. "__type__": "cc.PrefabInfo",
  4046. "root": {
  4047. "__id__": 1
  4048. },
  4049. "asset": {
  4050. "__id__": 0
  4051. },
  4052. "fileId": "c96aqtTWZM3Jw2G72iSdXM",
  4053. "instance": null,
  4054. "targetOverrides": null,
  4055. "nestedPrefabInstanceRoots": null
  4056. },
  4057. {
  4058. "__type__": "cc.Node",
  4059. "_name": "num_lable",
  4060. "_objFlags": 0,
  4061. "__editorExtras__": {},
  4062. "_parent": {
  4063. "__id__": 145
  4064. },
  4065. "_children": [],
  4066. "_active": true,
  4067. "_components": [
  4068. {
  4069. "__id__": 161
  4070. },
  4071. {
  4072. "__id__": 163
  4073. },
  4074. {
  4075. "__id__": 165
  4076. }
  4077. ],
  4078. "_prefab": {
  4079. "__id__": 167
  4080. },
  4081. "_lpos": {
  4082. "__type__": "cc.Vec3",
  4083. "x": 16.323999999999998,
  4084. "y": -13.339,
  4085. "z": 0
  4086. },
  4087. "_lrot": {
  4088. "__type__": "cc.Quat",
  4089. "x": 0,
  4090. "y": 0,
  4091. "z": 0,
  4092. "w": 1
  4093. },
  4094. "_lscale": {
  4095. "__type__": "cc.Vec3",
  4096. "x": 1,
  4097. "y": 1,
  4098. "z": 1
  4099. },
  4100. "_mobility": 0,
  4101. "_layer": 33554432,
  4102. "_euler": {
  4103. "__type__": "cc.Vec3",
  4104. "x": 0,
  4105. "y": 0,
  4106. "z": 0
  4107. },
  4108. "_id": ""
  4109. },
  4110. {
  4111. "__type__": "cc.UITransform",
  4112. "_name": "",
  4113. "_objFlags": 0,
  4114. "__editorExtras__": {},
  4115. "node": {
  4116. "__id__": 160
  4117. },
  4118. "_enabled": true,
  4119. "__prefab": {
  4120. "__id__": 162
  4121. },
  4122. "_contentSize": {
  4123. "__type__": "cc.Size",
  4124. "width": 44.5,
  4125. "height": 26.68
  4126. },
  4127. "_anchorPoint": {
  4128. "__type__": "cc.Vec2",
  4129. "x": 1,
  4130. "y": 0.5
  4131. },
  4132. "_id": ""
  4133. },
  4134. {
  4135. "__type__": "cc.CompPrefabInfo",
  4136. "fileId": "aeTZvIizZAyp+sacv0oBRR"
  4137. },
  4138. {
  4139. "__type__": "cc.Label",
  4140. "_name": "",
  4141. "_objFlags": 0,
  4142. "__editorExtras__": {},
  4143. "node": {
  4144. "__id__": 160
  4145. },
  4146. "_enabled": true,
  4147. "__prefab": {
  4148. "__id__": 164
  4149. },
  4150. "_customMaterial": null,
  4151. "_srcBlendFactor": 2,
  4152. "_dstBlendFactor": 4,
  4153. "_color": {
  4154. "__type__": "cc.Color",
  4155. "r": 255,
  4156. "g": 255,
  4157. "b": 255,
  4158. "a": 255
  4159. },
  4160. "_string": "x100",
  4161. "_horizontalAlign": 1,
  4162. "_verticalAlign": 1,
  4163. "_actualFontSize": 18,
  4164. "_fontSize": 18,
  4165. "_fontFamily": "Arial",
  4166. "_lineHeight": 18,
  4167. "_overflow": 0,
  4168. "_enableWrapText": true,
  4169. "_font": {
  4170. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  4171. "__expectedType__": "cc.TTFFont"
  4172. },
  4173. "_isSystemFontUsed": false,
  4174. "_spacingX": 0,
  4175. "_isItalic": false,
  4176. "_isBold": false,
  4177. "_isUnderline": false,
  4178. "_underlineHeight": 2,
  4179. "_cacheMode": 0,
  4180. "_enableOutline": true,
  4181. "_outlineColor": {
  4182. "__type__": "cc.Color",
  4183. "r": 0,
  4184. "g": 0,
  4185. "b": 0,
  4186. "a": 255
  4187. },
  4188. "_outlineWidth": 2,
  4189. "_enableShadow": false,
  4190. "_shadowColor": {
  4191. "__type__": "cc.Color",
  4192. "r": 0,
  4193. "g": 0,
  4194. "b": 0,
  4195. "a": 255
  4196. },
  4197. "_shadowOffset": {
  4198. "__type__": "cc.Vec2",
  4199. "x": 2,
  4200. "y": 2
  4201. },
  4202. "_shadowBlur": 2,
  4203. "_id": ""
  4204. },
  4205. {
  4206. "__type__": "cc.CompPrefabInfo",
  4207. "fileId": "39K3J01G9L+qooOQSsYvYJ"
  4208. },
  4209. {
  4210. "__type__": "cc.Widget",
  4211. "_name": "",
  4212. "_objFlags": 0,
  4213. "__editorExtras__": {},
  4214. "node": {
  4215. "__id__": 160
  4216. },
  4217. "_enabled": true,
  4218. "__prefab": {
  4219. "__id__": 166
  4220. },
  4221. "_alignFlags": 18,
  4222. "_target": null,
  4223. "_left": 0,
  4224. "_right": 0,
  4225. "_top": 0,
  4226. "_bottom": 0,
  4227. "_horizontalCenter": -5.926,
  4228. "_verticalCenter": -13.339,
  4229. "_isAbsLeft": true,
  4230. "_isAbsRight": true,
  4231. "_isAbsTop": true,
  4232. "_isAbsBottom": true,
  4233. "_isAbsHorizontalCenter": true,
  4234. "_isAbsVerticalCenter": true,
  4235. "_originalWidth": 0,
  4236. "_originalHeight": 0,
  4237. "_alignMode": 2,
  4238. "_lockFlags": 0,
  4239. "_id": ""
  4240. },
  4241. {
  4242. "__type__": "cc.CompPrefabInfo",
  4243. "fileId": "8bKDaUTctFJrJEwlmrEpMI"
  4244. },
  4245. {
  4246. "__type__": "cc.PrefabInfo",
  4247. "root": {
  4248. "__id__": 1
  4249. },
  4250. "asset": {
  4251. "__id__": 0
  4252. },
  4253. "fileId": "ec9UtEb3FMPpKDiGFoQoNO",
  4254. "instance": null,
  4255. "targetOverrides": null,
  4256. "nestedPrefabInstanceRoots": null
  4257. },
  4258. {
  4259. "__type__": "cc.UITransform",
  4260. "_name": "",
  4261. "_objFlags": 0,
  4262. "__editorExtras__": {},
  4263. "node": {
  4264. "__id__": 145
  4265. },
  4266. "_enabled": true,
  4267. "__prefab": {
  4268. "__id__": 169
  4269. },
  4270. "_contentSize": {
  4271. "__type__": "cc.Size",
  4272. "width": 136,
  4273. "height": 63
  4274. },
  4275. "_anchorPoint": {
  4276. "__type__": "cc.Vec2",
  4277. "x": 0.5,
  4278. "y": 0.5
  4279. },
  4280. "_id": ""
  4281. },
  4282. {
  4283. "__type__": "cc.CompPrefabInfo",
  4284. "fileId": "4bLBkpilxA2JoLlrVQ6phV"
  4285. },
  4286. {
  4287. "__type__": "cc.Sprite",
  4288. "_name": "",
  4289. "_objFlags": 0,
  4290. "__editorExtras__": {},
  4291. "node": {
  4292. "__id__": 145
  4293. },
  4294. "_enabled": true,
  4295. "__prefab": {
  4296. "__id__": 171
  4297. },
  4298. "_customMaterial": null,
  4299. "_srcBlendFactor": 2,
  4300. "_dstBlendFactor": 4,
  4301. "_color": {
  4302. "__type__": "cc.Color",
  4303. "r": 255,
  4304. "g": 255,
  4305. "b": 255,
  4306. "a": 255
  4307. },
  4308. "_spriteFrame": {
  4309. "__uuid__": "5291afd3-f4b2-40af-b260-356ff6438ee4@f9941",
  4310. "__expectedType__": "cc.SpriteFrame"
  4311. },
  4312. "_type": 0,
  4313. "_fillType": 0,
  4314. "_sizeMode": 1,
  4315. "_fillCenter": {
  4316. "__type__": "cc.Vec2",
  4317. "x": 0,
  4318. "y": 0
  4319. },
  4320. "_fillStart": 0,
  4321. "_fillRange": 0,
  4322. "_isTrimmedMode": true,
  4323. "_useGrayscale": false,
  4324. "_atlas": null,
  4325. "_id": ""
  4326. },
  4327. {
  4328. "__type__": "cc.CompPrefabInfo",
  4329. "fileId": "0eppM+hZlHr6oZ6QK0QNJC"
  4330. },
  4331. {
  4332. "__type__": "cc.Button",
  4333. "_name": "",
  4334. "_objFlags": 0,
  4335. "__editorExtras__": {},
  4336. "node": {
  4337. "__id__": 145
  4338. },
  4339. "_enabled": true,
  4340. "__prefab": {
  4341. "__id__": 173
  4342. },
  4343. "clickEvents": [
  4344. {
  4345. "__id__": 174
  4346. }
  4347. ],
  4348. "_interactable": true,
  4349. "_transition": 3,
  4350. "_normalColor": {
  4351. "__type__": "cc.Color",
  4352. "r": 255,
  4353. "g": 255,
  4354. "b": 255,
  4355. "a": 255
  4356. },
  4357. "_hoverColor": {
  4358. "__type__": "cc.Color",
  4359. "r": 211,
  4360. "g": 211,
  4361. "b": 211,
  4362. "a": 255
  4363. },
  4364. "_pressedColor": {
  4365. "__type__": "cc.Color",
  4366. "r": 255,
  4367. "g": 255,
  4368. "b": 255,
  4369. "a": 255
  4370. },
  4371. "_disabledColor": {
  4372. "__type__": "cc.Color",
  4373. "r": 124,
  4374. "g": 124,
  4375. "b": 124,
  4376. "a": 255
  4377. },
  4378. "_normalSprite": null,
  4379. "_hoverSprite": null,
  4380. "_pressedSprite": null,
  4381. "_disabledSprite": null,
  4382. "_duration": 0.1,
  4383. "_zoomScale": 1.02,
  4384. "_target": null,
  4385. "_id": ""
  4386. },
  4387. {
  4388. "__type__": "cc.CompPrefabInfo",
  4389. "fileId": "a7vG9aoc1LIodh4Uuh4rli"
  4390. },
  4391. {
  4392. "__type__": "cc.ClickEvent",
  4393. "target": {
  4394. "__id__": 66
  4395. },
  4396. "component": "",
  4397. "_componentId": "58119Xb2Q5HDJm3BiboEXdY",
  4398. "handler": "onBtnClicked",
  4399. "customEventData": "3"
  4400. },
  4401. {
  4402. "__type__": "cc.PrefabInfo",
  4403. "root": {
  4404. "__id__": 1
  4405. },
  4406. "asset": {
  4407. "__id__": 0
  4408. },
  4409. "fileId": "484HdaAxdO8puwYx7ha5d2",
  4410. "instance": null,
  4411. "targetOverrides": null,
  4412. "nestedPrefabInstanceRoots": null
  4413. },
  4414. {
  4415. "__type__": "cc.Node",
  4416. "_name": "max_btn",
  4417. "_objFlags": 0,
  4418. "__editorExtras__": {},
  4419. "_parent": {
  4420. "__id__": 66
  4421. },
  4422. "_children": [
  4423. {
  4424. "__id__": 177
  4425. },
  4426. {
  4427. "__id__": 185
  4428. }
  4429. ],
  4430. "_active": true,
  4431. "_components": [
  4432. {
  4433. "__id__": 193
  4434. },
  4435. {
  4436. "__id__": 195
  4437. },
  4438. {
  4439. "__id__": 197
  4440. }
  4441. ],
  4442. "_prefab": {
  4443. "__id__": 200
  4444. },
  4445. "_lpos": {
  4446. "__type__": "cc.Vec3",
  4447. "x": 152.778,
  4448. "y": -2.051,
  4449. "z": 0
  4450. },
  4451. "_lrot": {
  4452. "__type__": "cc.Quat",
  4453. "x": 0,
  4454. "y": 0,
  4455. "z": 0,
  4456. "w": 1
  4457. },
  4458. "_lscale": {
  4459. "__type__": "cc.Vec3",
  4460. "x": 1,
  4461. "y": 1,
  4462. "z": 1
  4463. },
  4464. "_mobility": 0,
  4465. "_layer": 33554432,
  4466. "_euler": {
  4467. "__type__": "cc.Vec3",
  4468. "x": 0,
  4469. "y": 0,
  4470. "z": 0
  4471. },
  4472. "_id": ""
  4473. },
  4474. {
  4475. "__type__": "cc.Node",
  4476. "_name": "lable",
  4477. "_objFlags": 0,
  4478. "__editorExtras__": {},
  4479. "_parent": {
  4480. "__id__": 176
  4481. },
  4482. "_children": [],
  4483. "_active": true,
  4484. "_components": [
  4485. {
  4486. "__id__": 178
  4487. },
  4488. {
  4489. "__id__": 180
  4490. },
  4491. {
  4492. "__id__": 182
  4493. }
  4494. ],
  4495. "_prefab": {
  4496. "__id__": 184
  4497. },
  4498. "_lpos": {
  4499. "__type__": "cc.Vec3",
  4500. "x": 38.59,
  4501. "y": 0,
  4502. "z": 0
  4503. },
  4504. "_lrot": {
  4505. "__type__": "cc.Quat",
  4506. "x": 0,
  4507. "y": 0,
  4508. "z": 0,
  4509. "w": 1
  4510. },
  4511. "_lscale": {
  4512. "__type__": "cc.Vec3",
  4513. "x": 1,
  4514. "y": 1,
  4515. "z": 1
  4516. },
  4517. "_mobility": 0,
  4518. "_layer": 33554432,
  4519. "_euler": {
  4520. "__type__": "cc.Vec3",
  4521. "x": 0,
  4522. "y": 0,
  4523. "z": 0
  4524. },
  4525. "_id": ""
  4526. },
  4527. {
  4528. "__type__": "cc.UITransform",
  4529. "_name": "",
  4530. "_objFlags": 0,
  4531. "__editorExtras__": {},
  4532. "node": {
  4533. "__id__": 177
  4534. },
  4535. "_enabled": true,
  4536. "__prefab": {
  4537. "__id__": 179
  4538. },
  4539. "_contentSize": {
  4540. "__type__": "cc.Size",
  4541. "width": 43.8658447265625,
  4542. "height": 40.6374
  4543. },
  4544. "_anchorPoint": {
  4545. "__type__": "cc.Vec2",
  4546. "x": 0.5,
  4547. "y": 0.5
  4548. },
  4549. "_id": ""
  4550. },
  4551. {
  4552. "__type__": "cc.CompPrefabInfo",
  4553. "fileId": "31NJ9c5ZNCcJ077Uie8LHe"
  4554. },
  4555. {
  4556. "__type__": "cc.Label",
  4557. "_name": "",
  4558. "_objFlags": 0,
  4559. "__editorExtras__": {},
  4560. "node": {
  4561. "__id__": 177
  4562. },
  4563. "_enabled": true,
  4564. "__prefab": {
  4565. "__id__": 181
  4566. },
  4567. "_customMaterial": null,
  4568. "_srcBlendFactor": 2,
  4569. "_dstBlendFactor": 4,
  4570. "_color": {
  4571. "__type__": "cc.Color",
  4572. "r": 255,
  4573. "g": 255,
  4574. "b": 255,
  4575. "a": 255
  4576. },
  4577. "_string": "UP",
  4578. "_horizontalAlign": 1,
  4579. "_verticalAlign": 1,
  4580. "_actualFontSize": 27.49,
  4581. "_fontSize": 27.49,
  4582. "_fontFamily": "Arial",
  4583. "_lineHeight": 27.49,
  4584. "_overflow": 0,
  4585. "_enableWrapText": true,
  4586. "_font": {
  4587. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  4588. "__expectedType__": "cc.TTFFont"
  4589. },
  4590. "_isSystemFontUsed": false,
  4591. "_spacingX": 0,
  4592. "_isItalic": false,
  4593. "_isBold": false,
  4594. "_isUnderline": false,
  4595. "_underlineHeight": 2,
  4596. "_cacheMode": 0,
  4597. "_enableOutline": true,
  4598. "_outlineColor": {
  4599. "__type__": "cc.Color",
  4600. "r": 64,
  4601. "g": 27,
  4602. "b": 5,
  4603. "a": 255
  4604. },
  4605. "_outlineWidth": 3,
  4606. "_enableShadow": false,
  4607. "_shadowColor": {
  4608. "__type__": "cc.Color",
  4609. "r": 0,
  4610. "g": 0,
  4611. "b": 0,
  4612. "a": 255
  4613. },
  4614. "_shadowOffset": {
  4615. "__type__": "cc.Vec2",
  4616. "x": 2,
  4617. "y": 2
  4618. },
  4619. "_shadowBlur": 2,
  4620. "_id": ""
  4621. },
  4622. {
  4623. "__type__": "cc.CompPrefabInfo",
  4624. "fileId": "4e6zK6jtRN46AJ32ZcUCTU"
  4625. },
  4626. {
  4627. "__type__": "cc.Widget",
  4628. "_name": "",
  4629. "_objFlags": 0,
  4630. "__editorExtras__": {},
  4631. "node": {
  4632. "__id__": 177
  4633. },
  4634. "_enabled": true,
  4635. "__prefab": {
  4636. "__id__": 183
  4637. },
  4638. "_alignFlags": 18,
  4639. "_target": null,
  4640. "_left": 0,
  4641. "_right": 0,
  4642. "_top": 0,
  4643. "_bottom": 0,
  4644. "_horizontalCenter": 38.59,
  4645. "_verticalCenter": 0,
  4646. "_isAbsLeft": true,
  4647. "_isAbsRight": true,
  4648. "_isAbsTop": true,
  4649. "_isAbsBottom": true,
  4650. "_isAbsHorizontalCenter": true,
  4651. "_isAbsVerticalCenter": true,
  4652. "_originalWidth": 0,
  4653. "_originalHeight": 0,
  4654. "_alignMode": 2,
  4655. "_lockFlags": 0,
  4656. "_id": ""
  4657. },
  4658. {
  4659. "__type__": "cc.CompPrefabInfo",
  4660. "fileId": "f0DRB1PchFsa5VTLakXDPf"
  4661. },
  4662. {
  4663. "__type__": "cc.PrefabInfo",
  4664. "root": {
  4665. "__id__": 1
  4666. },
  4667. "asset": {
  4668. "__id__": 0
  4669. },
  4670. "fileId": "1bLKyiT6JEU7oHu6xcLXnB",
  4671. "instance": null,
  4672. "targetOverrides": null,
  4673. "nestedPrefabInstanceRoots": null
  4674. },
  4675. {
  4676. "__type__": "cc.Node",
  4677. "_name": "tips_lable",
  4678. "_objFlags": 0,
  4679. "__editorExtras__": {},
  4680. "_parent": {
  4681. "__id__": 176
  4682. },
  4683. "_children": [],
  4684. "_active": true,
  4685. "_components": [
  4686. {
  4687. "__id__": 186
  4688. },
  4689. {
  4690. "__id__": 188
  4691. },
  4692. {
  4693. "__id__": 190
  4694. }
  4695. ],
  4696. "_prefab": {
  4697. "__id__": 192
  4698. },
  4699. "_lpos": {
  4700. "__type__": "cc.Vec3",
  4701. "x": -20.357,
  4702. "y": 0,
  4703. "z": 0
  4704. },
  4705. "_lrot": {
  4706. "__type__": "cc.Quat",
  4707. "x": 0,
  4708. "y": 0,
  4709. "z": 0,
  4710. "w": 1
  4711. },
  4712. "_lscale": {
  4713. "__type__": "cc.Vec3",
  4714. "x": 1,
  4715. "y": 1,
  4716. "z": 1
  4717. },
  4718. "_mobility": 0,
  4719. "_layer": 33554432,
  4720. "_euler": {
  4721. "__type__": "cc.Vec3",
  4722. "x": 0,
  4723. "y": 0,
  4724. "z": 0
  4725. },
  4726. "_id": ""
  4727. },
  4728. {
  4729. "__type__": "cc.UITransform",
  4730. "_name": "",
  4731. "_objFlags": 0,
  4732. "__editorExtras__": {},
  4733. "node": {
  4734. "__id__": 185
  4735. },
  4736. "_enabled": true,
  4737. "__prefab": {
  4738. "__id__": 187
  4739. },
  4740. "_contentSize": {
  4741. "__type__": "cc.Size",
  4742. "width": 44.2900390625,
  4743. "height": 27.72
  4744. },
  4745. "_anchorPoint": {
  4746. "__type__": "cc.Vec2",
  4747. "x": 0.5,
  4748. "y": 0.5
  4749. },
  4750. "_id": ""
  4751. },
  4752. {
  4753. "__type__": "cc.CompPrefabInfo",
  4754. "fileId": "cbFkwhqlpEaIMLOewltSrd"
  4755. },
  4756. {
  4757. "__type__": "cc.Label",
  4758. "_name": "",
  4759. "_objFlags": 0,
  4760. "__editorExtras__": {},
  4761. "node": {
  4762. "__id__": 185
  4763. },
  4764. "_enabled": true,
  4765. "__prefab": {
  4766. "__id__": 189
  4767. },
  4768. "_customMaterial": null,
  4769. "_srcBlendFactor": 2,
  4770. "_dstBlendFactor": 4,
  4771. "_color": {
  4772. "__type__": "cc.Color",
  4773. "r": 255,
  4774. "g": 255,
  4775. "b": 255,
  4776. "a": 255
  4777. },
  4778. "_string": "Max",
  4779. "_horizontalAlign": 1,
  4780. "_verticalAlign": 1,
  4781. "_actualFontSize": 22,
  4782. "_fontSize": 22,
  4783. "_fontFamily": "Arial",
  4784. "_lineHeight": 22,
  4785. "_overflow": 0,
  4786. "_enableWrapText": true,
  4787. "_font": {
  4788. "__uuid__": "d2eec8aa-eb87-4069-97d1-cdefce1fe602",
  4789. "__expectedType__": "cc.TTFFont"
  4790. },
  4791. "_isSystemFontUsed": false,
  4792. "_spacingX": 0,
  4793. "_isItalic": false,
  4794. "_isBold": false,
  4795. "_isUnderline": false,
  4796. "_underlineHeight": 2,
  4797. "_cacheMode": 0,
  4798. "_enableOutline": false,
  4799. "_outlineColor": {
  4800. "__type__": "cc.Color",
  4801. "r": 64,
  4802. "g": 27,
  4803. "b": 5,
  4804. "a": 255
  4805. },
  4806. "_outlineWidth": 3,
  4807. "_enableShadow": false,
  4808. "_shadowColor": {
  4809. "__type__": "cc.Color",
  4810. "r": 0,
  4811. "g": 0,
  4812. "b": 0,
  4813. "a": 255
  4814. },
  4815. "_shadowOffset": {
  4816. "__type__": "cc.Vec2",
  4817. "x": 2,
  4818. "y": 2
  4819. },
  4820. "_shadowBlur": 2,
  4821. "_id": ""
  4822. },
  4823. {
  4824. "__type__": "cc.CompPrefabInfo",
  4825. "fileId": "31PvHdAm1Ctr+sAkvw8G2v"
  4826. },
  4827. {
  4828. "__type__": "cc.Widget",
  4829. "_name": "",
  4830. "_objFlags": 0,
  4831. "__editorExtras__": {},
  4832. "node": {
  4833. "__id__": 185
  4834. },
  4835. "_enabled": true,
  4836. "__prefab": {
  4837. "__id__": 191
  4838. },
  4839. "_alignFlags": 18,
  4840. "_target": null,
  4841. "_left": 0,
  4842. "_right": 0,
  4843. "_top": 0,
  4844. "_bottom": 0,
  4845. "_horizontalCenter": -20.357,
  4846. "_verticalCenter": 0,
  4847. "_isAbsLeft": true,
  4848. "_isAbsRight": true,
  4849. "_isAbsTop": true,
  4850. "_isAbsBottom": true,
  4851. "_isAbsHorizontalCenter": true,
  4852. "_isAbsVerticalCenter": true,
  4853. "_originalWidth": 0,
  4854. "_originalHeight": 0,
  4855. "_alignMode": 2,
  4856. "_lockFlags": 0,
  4857. "_id": ""
  4858. },
  4859. {
  4860. "__type__": "cc.CompPrefabInfo",
  4861. "fileId": "d6GU90QNpIp4ZZA0qrE4XU"
  4862. },
  4863. {
  4864. "__type__": "cc.PrefabInfo",
  4865. "root": {
  4866. "__id__": 1
  4867. },
  4868. "asset": {
  4869. "__id__": 0
  4870. },
  4871. "fileId": "6bFKp5x7lPhqJdmfrRgZ0D",
  4872. "instance": null,
  4873. "targetOverrides": null,
  4874. "nestedPrefabInstanceRoots": null
  4875. },
  4876. {
  4877. "__type__": "cc.UITransform",
  4878. "_name": "",
  4879. "_objFlags": 0,
  4880. "__editorExtras__": {},
  4881. "node": {
  4882. "__id__": 176
  4883. },
  4884. "_enabled": true,
  4885. "__prefab": {
  4886. "__id__": 194
  4887. },
  4888. "_contentSize": {
  4889. "__type__": "cc.Size",
  4890. "width": 136,
  4891. "height": 63
  4892. },
  4893. "_anchorPoint": {
  4894. "__type__": "cc.Vec2",
  4895. "x": 0.5,
  4896. "y": 0.5
  4897. },
  4898. "_id": ""
  4899. },
  4900. {
  4901. "__type__": "cc.CompPrefabInfo",
  4902. "fileId": "8bR+9F0bpLN5gS5xwNhUtb"
  4903. },
  4904. {
  4905. "__type__": "cc.Sprite",
  4906. "_name": "",
  4907. "_objFlags": 0,
  4908. "__editorExtras__": {},
  4909. "node": {
  4910. "__id__": 176
  4911. },
  4912. "_enabled": true,
  4913. "__prefab": {
  4914. "__id__": 196
  4915. },
  4916. "_customMaterial": null,
  4917. "_srcBlendFactor": 2,
  4918. "_dstBlendFactor": 4,
  4919. "_color": {
  4920. "__type__": "cc.Color",
  4921. "r": 255,
  4922. "g": 255,
  4923. "b": 255,
  4924. "a": 255
  4925. },
  4926. "_spriteFrame": {
  4927. "__uuid__": "5291afd3-f4b2-40af-b260-356ff6438ee4@f9941",
  4928. "__expectedType__": "cc.SpriteFrame"
  4929. },
  4930. "_type": 0,
  4931. "_fillType": 0,
  4932. "_sizeMode": 1,
  4933. "_fillCenter": {
  4934. "__type__": "cc.Vec2",
  4935. "x": 0,
  4936. "y": 0
  4937. },
  4938. "_fillStart": 0,
  4939. "_fillRange": 0,
  4940. "_isTrimmedMode": true,
  4941. "_useGrayscale": false,
  4942. "_atlas": null,
  4943. "_id": ""
  4944. },
  4945. {
  4946. "__type__": "cc.CompPrefabInfo",
  4947. "fileId": "58I05uhTZAiaG/PsY0p3zE"
  4948. },
  4949. {
  4950. "__type__": "cc.Button",
  4951. "_name": "",
  4952. "_objFlags": 0,
  4953. "__editorExtras__": {},
  4954. "node": {
  4955. "__id__": 176
  4956. },
  4957. "_enabled": true,
  4958. "__prefab": {
  4959. "__id__": 198
  4960. },
  4961. "clickEvents": [
  4962. {
  4963. "__id__": 199
  4964. }
  4965. ],
  4966. "_interactable": true,
  4967. "_transition": 3,
  4968. "_normalColor": {
  4969. "__type__": "cc.Color",
  4970. "r": 255,
  4971. "g": 255,
  4972. "b": 255,
  4973. "a": 255
  4974. },
  4975. "_hoverColor": {
  4976. "__type__": "cc.Color",
  4977. "r": 211,
  4978. "g": 211,
  4979. "b": 211,
  4980. "a": 255
  4981. },
  4982. "_pressedColor": {
  4983. "__type__": "cc.Color",
  4984. "r": 255,
  4985. "g": 255,
  4986. "b": 255,
  4987. "a": 255
  4988. },
  4989. "_disabledColor": {
  4990. "__type__": "cc.Color",
  4991. "r": 124,
  4992. "g": 124,
  4993. "b": 124,
  4994. "a": 255
  4995. },
  4996. "_normalSprite": null,
  4997. "_hoverSprite": null,
  4998. "_pressedSprite": null,
  4999. "_disabledSprite": null,
  5000. "_duration": 0.1,
  5001. "_zoomScale": 1.02,
  5002. "_target": null,
  5003. "_id": ""
  5004. },
  5005. {
  5006. "__type__": "cc.CompPrefabInfo",
  5007. "fileId": "e6lcISn7BF1Yr9+mKCJaxL"
  5008. },
  5009. {
  5010. "__type__": "cc.ClickEvent",
  5011. "target": {
  5012. "__id__": 66
  5013. },
  5014. "component": "",
  5015. "_componentId": "58119Xb2Q5HDJm3BiboEXdY",
  5016. "handler": "onBtnClicked",
  5017. "customEventData": "4"
  5018. },
  5019. {
  5020. "__type__": "cc.PrefabInfo",
  5021. "root": {
  5022. "__id__": 1
  5023. },
  5024. "asset": {
  5025. "__id__": 0
  5026. },
  5027. "fileId": "fbNvzLl6pLp5mWhH1dU14n",
  5028. "instance": null,
  5029. "targetOverrides": null,
  5030. "nestedPrefabInstanceRoots": null
  5031. },
  5032. {
  5033. "__type__": "cc.UITransform",
  5034. "_name": "",
  5035. "_objFlags": 0,
  5036. "__editorExtras__": {},
  5037. "node": {
  5038. "__id__": 66
  5039. },
  5040. "_enabled": true,
  5041. "__prefab": {
  5042. "__id__": 202
  5043. },
  5044. "_contentSize": {
  5045. "__type__": "cc.Size",
  5046. "width": 506,
  5047. "height": 116
  5048. },
  5049. "_anchorPoint": {
  5050. "__type__": "cc.Vec2",
  5051. "x": 0.5,
  5052. "y": 0.5
  5053. },
  5054. "_id": ""
  5055. },
  5056. {
  5057. "__type__": "cc.CompPrefabInfo",
  5058. "fileId": "e54vXDpK5JA4H/ukiqmEjF"
  5059. },
  5060. {
  5061. "__type__": "cc.Sprite",
  5062. "_name": "",
  5063. "_objFlags": 0,
  5064. "__editorExtras__": {},
  5065. "node": {
  5066. "__id__": 66
  5067. },
  5068. "_enabled": true,
  5069. "__prefab": {
  5070. "__id__": 204
  5071. },
  5072. "_customMaterial": null,
  5073. "_srcBlendFactor": 2,
  5074. "_dstBlendFactor": 4,
  5075. "_color": {
  5076. "__type__": "cc.Color",
  5077. "r": 255,
  5078. "g": 255,
  5079. "b": 255,
  5080. "a": 255
  5081. },
  5082. "_spriteFrame": {
  5083. "__uuid__": "33036a7c-d573-448a-8989-fee240b79872@f9941",
  5084. "__expectedType__": "cc.SpriteFrame"
  5085. },
  5086. "_type": 0,
  5087. "_fillType": 0,
  5088. "_sizeMode": 1,
  5089. "_fillCenter": {
  5090. "__type__": "cc.Vec2",
  5091. "x": 0,
  5092. "y": 0
  5093. },
  5094. "_fillStart": 0,
  5095. "_fillRange": 0,
  5096. "_isTrimmedMode": true,
  5097. "_useGrayscale": false,
  5098. "_atlas": null,
  5099. "_id": ""
  5100. },
  5101. {
  5102. "__type__": "cc.CompPrefabInfo",
  5103. "fileId": "3f2DBTUI9FHogR0pjUdyS6"
  5104. },
  5105. {
  5106. "__type__": "58119Xb2Q5HDJm3BiboEXdY",
  5107. "_name": "",
  5108. "_objFlags": 0,
  5109. "__editorExtras__": {},
  5110. "node": {
  5111. "__id__": 66
  5112. },
  5113. "_enabled": true,
  5114. "__prefab": {
  5115. "__id__": 206
  5116. },
  5117. "selectedMode": 0,
  5118. "selectedFlag": null,
  5119. "selectedSpriteFrame": null,
  5120. "adaptiveSize": false,
  5121. "attr_sp": {
  5122. "__id__": 70
  5123. },
  5124. "progressBar": {
  5125. "__id__": 102
  5126. },
  5127. "atts_label": {
  5128. "__id__": 93
  5129. },
  5130. "attribute_lang_lable": {
  5131. "__id__": 76
  5132. },
  5133. "ad_free_btn": {
  5134. "__id__": 105
  5135. },
  5136. "video_btn": {
  5137. "__id__": 122
  5138. },
  5139. "prop_btn": {
  5140. "__id__": 145
  5141. },
  5142. "max_btn": {
  5143. "__id__": 176
  5144. },
  5145. "_id": ""
  5146. },
  5147. {
  5148. "__type__": "cc.CompPrefabInfo",
  5149. "fileId": "986YF0pNhGG5fxQbirebXH"
  5150. },
  5151. {
  5152. "__type__": "cc.PrefabInfo",
  5153. "root": {
  5154. "__id__": 1
  5155. },
  5156. "asset": {
  5157. "__id__": 0
  5158. },
  5159. "fileId": "7c7eBTUNtH/7M4FuO3a3KT",
  5160. "instance": null,
  5161. "targetOverrides": null,
  5162. "nestedPrefabInstanceRoots": null
  5163. },
  5164. {
  5165. "__type__": "cc.UITransform",
  5166. "_name": "",
  5167. "_objFlags": 0,
  5168. "__editorExtras__": {},
  5169. "node": {
  5170. "__id__": 65
  5171. },
  5172. "_enabled": true,
  5173. "__prefab": {
  5174. "__id__": 209
  5175. },
  5176. "_contentSize": {
  5177. "__type__": "cc.Size",
  5178. "width": 536,
  5179. "height": 121
  5180. },
  5181. "_anchorPoint": {
  5182. "__type__": "cc.Vec2",
  5183. "x": 0.5,
  5184. "y": 1
  5185. },
  5186. "_id": ""
  5187. },
  5188. {
  5189. "__type__": "cc.CompPrefabInfo",
  5190. "fileId": "f3TQBY3PdKvo5OQDhUg+PE"
  5191. },
  5192. {
  5193. "__type__": "cc.Widget",
  5194. "_name": "",
  5195. "_objFlags": 0,
  5196. "__editorExtras__": {},
  5197. "node": {
  5198. "__id__": 65
  5199. },
  5200. "_enabled": true,
  5201. "__prefab": {
  5202. "__id__": 211
  5203. },
  5204. "_alignFlags": 41,
  5205. "_target": null,
  5206. "_left": 30,
  5207. "_right": 30,
  5208. "_top": 0,
  5209. "_bottom": 483.031,
  5210. "_horizontalCenter": 0,
  5211. "_verticalCenter": 0,
  5212. "_isAbsLeft": true,
  5213. "_isAbsRight": true,
  5214. "_isAbsTop": true,
  5215. "_isAbsBottom": true,
  5216. "_isAbsHorizontalCenter": true,
  5217. "_isAbsVerticalCenter": true,
  5218. "_originalWidth": 220,
  5219. "_originalHeight": 400,
  5220. "_alignMode": 2,
  5221. "_lockFlags": 41,
  5222. "_id": ""
  5223. },
  5224. {
  5225. "__type__": "cc.CompPrefabInfo",
  5226. "fileId": "f9KnPN1DxJ8Iw4y4RDqcPr"
  5227. },
  5228. {
  5229. "__type__": "cc.Layout",
  5230. "_name": "",
  5231. "_objFlags": 0,
  5232. "__editorExtras__": {},
  5233. "node": {
  5234. "__id__": 65
  5235. },
  5236. "_enabled": true,
  5237. "__prefab": {
  5238. "__id__": 213
  5239. },
  5240. "_resizeMode": 1,
  5241. "_layoutType": 2,
  5242. "_cellSize": {
  5243. "__type__": "cc.Size",
  5244. "width": 40,
  5245. "height": 40
  5246. },
  5247. "_startAxis": 0,
  5248. "_paddingLeft": 0,
  5249. "_paddingRight": 0,
  5250. "_paddingTop": 0,
  5251. "_paddingBottom": 5,
  5252. "_spacingX": 0,
  5253. "_spacingY": 10,
  5254. "_verticalDirection": 1,
  5255. "_horizontalDirection": 0,
  5256. "_constraint": 0,
  5257. "_constraintNum": 2,
  5258. "_affectedByScale": false,
  5259. "_isAlign": true,
  5260. "_id": ""
  5261. },
  5262. {
  5263. "__type__": "cc.CompPrefabInfo",
  5264. "fileId": "d5vOH6GwROzLYZrOJ5pfR1"
  5265. },
  5266. {
  5267. "__type__": "cc.PrefabInfo",
  5268. "root": {
  5269. "__id__": 1
  5270. },
  5271. "asset": {
  5272. "__id__": 0
  5273. },
  5274. "fileId": "31sergcsJFsrF908A7dCBk",
  5275. "instance": null,
  5276. "targetOverrides": null,
  5277. "nestedPrefabInstanceRoots": null
  5278. },
  5279. {
  5280. "__type__": "cc.UITransform",
  5281. "_name": "",
  5282. "_objFlags": 0,
  5283. "__editorExtras__": {},
  5284. "node": {
  5285. "__id__": 64
  5286. },
  5287. "_enabled": true,
  5288. "__prefab": {
  5289. "__id__": 216
  5290. },
  5291. "_contentSize": {
  5292. "__type__": "cc.Size",
  5293. "width": 596,
  5294. "height": 736.566
  5295. },
  5296. "_anchorPoint": {
  5297. "__type__": "cc.Vec2",
  5298. "x": 0.5,
  5299. "y": 1
  5300. },
  5301. "_id": ""
  5302. },
  5303. {
  5304. "__type__": "cc.CompPrefabInfo",
  5305. "fileId": "90zCNta49GzoJP7ViXU8Oe"
  5306. },
  5307. {
  5308. "__type__": "cc.Mask",
  5309. "_name": "",
  5310. "_objFlags": 0,
  5311. "__editorExtras__": {},
  5312. "node": {
  5313. "__id__": 64
  5314. },
  5315. "_enabled": true,
  5316. "__prefab": {
  5317. "__id__": 218
  5318. },
  5319. "_type": 0,
  5320. "_inverted": false,
  5321. "_segments": 64,
  5322. "_alphaThreshold": 0.1,
  5323. "_id": ""
  5324. },
  5325. {
  5326. "__type__": "cc.CompPrefabInfo",
  5327. "fileId": "f5FhgdJpVDf6PpX5ddp5Y1"
  5328. },
  5329. {
  5330. "__type__": "cc.Graphics",
  5331. "_name": "",
  5332. "_objFlags": 0,
  5333. "__editorExtras__": {},
  5334. "node": {
  5335. "__id__": 64
  5336. },
  5337. "_enabled": true,
  5338. "__prefab": {
  5339. "__id__": 220
  5340. },
  5341. "_customMaterial": null,
  5342. "_srcBlendFactor": 2,
  5343. "_dstBlendFactor": 4,
  5344. "_color": {
  5345. "__type__": "cc.Color",
  5346. "r": 255,
  5347. "g": 255,
  5348. "b": 255,
  5349. "a": 255
  5350. },
  5351. "_lineWidth": 1,
  5352. "_strokeColor": {
  5353. "__type__": "cc.Color",
  5354. "r": 0,
  5355. "g": 0,
  5356. "b": 0,
  5357. "a": 255
  5358. },
  5359. "_lineJoin": 2,
  5360. "_lineCap": 0,
  5361. "_fillColor": {
  5362. "__type__": "cc.Color",
  5363. "r": 255,
  5364. "g": 255,
  5365. "b": 255,
  5366. "a": 0
  5367. },
  5368. "_miterLimit": 10,
  5369. "_id": ""
  5370. },
  5371. {
  5372. "__type__": "cc.CompPrefabInfo",
  5373. "fileId": "de7hbju7BIeZz8dSOTOvU/"
  5374. },
  5375. {
  5376. "__type__": "cc.Widget",
  5377. "_name": "",
  5378. "_objFlags": 0,
  5379. "__editorExtras__": {},
  5380. "node": {
  5381. "__id__": 64
  5382. },
  5383. "_enabled": true,
  5384. "__prefab": {
  5385. "__id__": 222
  5386. },
  5387. "_alignFlags": 45,
  5388. "_target": null,
  5389. "_left": 0,
  5390. "_right": 0,
  5391. "_top": 41.642000000000046,
  5392. "_bottom": 53.791999999999916,
  5393. "_horizontalCenter": 0,
  5394. "_verticalCenter": 0,
  5395. "_isAbsLeft": true,
  5396. "_isAbsRight": true,
  5397. "_isAbsTop": true,
  5398. "_isAbsBottom": true,
  5399. "_isAbsHorizontalCenter": true,
  5400. "_isAbsVerticalCenter": true,
  5401. "_originalWidth": 240,
  5402. "_originalHeight": 250,
  5403. "_alignMode": 2,
  5404. "_lockFlags": 0,
  5405. "_id": ""
  5406. },
  5407. {
  5408. "__type__": "cc.CompPrefabInfo",
  5409. "fileId": "b8plJJh05PV4Yik5484f5W"
  5410. },
  5411. {
  5412. "__type__": "cc.PrefabInfo",
  5413. "root": {
  5414. "__id__": 1
  5415. },
  5416. "asset": {
  5417. "__id__": 0
  5418. },
  5419. "fileId": "9edNPZqJ9ChpyUTbPk8Q+4",
  5420. "instance": null,
  5421. "targetOverrides": null,
  5422. "nestedPrefabInstanceRoots": null
  5423. },
  5424. {
  5425. "__type__": "cc.UITransform",
  5426. "_name": "",
  5427. "_objFlags": 0,
  5428. "__editorExtras__": {},
  5429. "node": {
  5430. "__id__": 63
  5431. },
  5432. "_enabled": true,
  5433. "__prefab": {
  5434. "__id__": 225
  5435. },
  5436. "_contentSize": {
  5437. "__type__": "cc.Size",
  5438. "width": 596,
  5439. "height": 832
  5440. },
  5441. "_anchorPoint": {
  5442. "__type__": "cc.Vec2",
  5443. "x": 0.5,
  5444. "y": 1
  5445. },
  5446. "_id": ""
  5447. },
  5448. {
  5449. "__type__": "cc.CompPrefabInfo",
  5450. "fileId": "abplSfS3lNOZcUaZwQOS9Q"
  5451. },
  5452. {
  5453. "__type__": "cc.Sprite",
  5454. "_name": "",
  5455. "_objFlags": 0,
  5456. "__editorExtras__": {},
  5457. "node": {
  5458. "__id__": 63
  5459. },
  5460. "_enabled": true,
  5461. "__prefab": {
  5462. "__id__": 227
  5463. },
  5464. "_customMaterial": null,
  5465. "_srcBlendFactor": 2,
  5466. "_dstBlendFactor": 4,
  5467. "_color": {
  5468. "__type__": "cc.Color",
  5469. "r": 255,
  5470. "g": 255,
  5471. "b": 255,
  5472. "a": 255
  5473. },
  5474. "_spriteFrame": {
  5475. "__uuid__": "1018084e-cf32-4de7-bd4e-5431d586f957@f9941",
  5476. "__expectedType__": "cc.SpriteFrame"
  5477. },
  5478. "_type": 0,
  5479. "_fillType": 0,
  5480. "_sizeMode": 1,
  5481. "_fillCenter": {
  5482. "__type__": "cc.Vec2",
  5483. "x": 0,
  5484. "y": 0
  5485. },
  5486. "_fillStart": 0,
  5487. "_fillRange": 0,
  5488. "_isTrimmedMode": true,
  5489. "_useGrayscale": false,
  5490. "_atlas": null,
  5491. "_id": ""
  5492. },
  5493. {
  5494. "__type__": "cc.CompPrefabInfo",
  5495. "fileId": "fa30TgdJRF07HPZUePX4D5"
  5496. },
  5497. {
  5498. "__type__": "cc.ScrollView",
  5499. "_name": "",
  5500. "_objFlags": 0,
  5501. "__editorExtras__": {},
  5502. "node": {
  5503. "__id__": 63
  5504. },
  5505. "_enabled": true,
  5506. "__prefab": {
  5507. "__id__": 229
  5508. },
  5509. "bounceDuration": 0.23,
  5510. "brake": 0.75,
  5511. "elastic": true,
  5512. "inertia": true,
  5513. "horizontal": false,
  5514. "vertical": true,
  5515. "cancelInnerEvents": true,
  5516. "scrollEvents": [],
  5517. "_content": {
  5518. "__id__": 65
  5519. },
  5520. "_horizontalScrollBar": null,
  5521. "_verticalScrollBar": null,
  5522. "_id": ""
  5523. },
  5524. {
  5525. "__type__": "cc.CompPrefabInfo",
  5526. "fileId": "0bdV3plixBSbLwHBPkyirV"
  5527. },
  5528. {
  5529. "__type__": "adcd1ArJf5IPoMo1kZUgpJg",
  5530. "_name": "",
  5531. "_objFlags": 0,
  5532. "__editorExtras__": {},
  5533. "node": {
  5534. "__id__": 63
  5535. },
  5536. "_enabled": true,
  5537. "__prefab": {
  5538. "__id__": 231
  5539. },
  5540. "templateType": 1,
  5541. "tmpNode": {
  5542. "__id__": 66
  5543. },
  5544. "tmpPrefab": null,
  5545. "_slideMode": 1,
  5546. "pageDistance": 0.3,
  5547. "pageChangeEvent": {
  5548. "__id__": 232
  5549. },
  5550. "_virtual": true,
  5551. "cyclic": false,
  5552. "lackCenter": false,
  5553. "lackSlide": false,
  5554. "_updateRate": 0,
  5555. "frameByFrameRenderNum": 0,
  5556. "renderEvent": {
  5557. "__id__": 233
  5558. },
  5559. "selectedMode": 0,
  5560. "selectedEvent": {
  5561. "__id__": 234
  5562. },
  5563. "repeatEventSingle": false,
  5564. "_id": ""
  5565. },
  5566. {
  5567. "__type__": "cc.CompPrefabInfo",
  5568. "fileId": "811XYxn91NxZJK1XZVHDBd"
  5569. },
  5570. {
  5571. "__type__": "cc.ClickEvent",
  5572. "target": null,
  5573. "component": "",
  5574. "_componentId": "",
  5575. "handler": "",
  5576. "customEventData": ""
  5577. },
  5578. {
  5579. "__type__": "cc.ClickEvent",
  5580. "target": {
  5581. "__id__": 1
  5582. },
  5583. "component": "",
  5584. "_componentId": "247c72EjOJKwrNfkJ+UppoA",
  5585. "handler": "setGunAttsItemData",
  5586. "customEventData": ""
  5587. },
  5588. {
  5589. "__type__": "cc.ClickEvent",
  5590. "target": null,
  5591. "component": "",
  5592. "_componentId": "",
  5593. "handler": "",
  5594. "customEventData": ""
  5595. },
  5596. {
  5597. "__type__": "cc.Widget",
  5598. "_name": "",
  5599. "_objFlags": 0,
  5600. "__editorExtras__": {},
  5601. "node": {
  5602. "__id__": 63
  5603. },
  5604. "_enabled": true,
  5605. "__prefab": {
  5606. "__id__": 236
  5607. },
  5608. "_alignFlags": 20,
  5609. "_target": null,
  5610. "_left": 0,
  5611. "_right": 0,
  5612. "_top": 0,
  5613. "_bottom": 64.29700000000003,
  5614. "_horizontalCenter": 0,
  5615. "_verticalCenter": 0,
  5616. "_isAbsLeft": true,
  5617. "_isAbsRight": true,
  5618. "_isAbsTop": true,
  5619. "_isAbsBottom": true,
  5620. "_isAbsHorizontalCenter": true,
  5621. "_isAbsVerticalCenter": true,
  5622. "_originalWidth": 0,
  5623. "_originalHeight": 0,
  5624. "_alignMode": 2,
  5625. "_lockFlags": 0,
  5626. "_id": ""
  5627. },
  5628. {
  5629. "__type__": "cc.CompPrefabInfo",
  5630. "fileId": "6d/oB/7GBIFr2tKgWDEk3i"
  5631. },
  5632. {
  5633. "__type__": "cc.PrefabInfo",
  5634. "root": {
  5635. "__id__": 1
  5636. },
  5637. "asset": {
  5638. "__id__": 0
  5639. },
  5640. "fileId": "39ZQJ8cWRDKpPc0BMsqKPC",
  5641. "instance": null,
  5642. "targetOverrides": null,
  5643. "nestedPrefabInstanceRoots": null
  5644. },
  5645. {
  5646. "__type__": "cc.UITransform",
  5647. "_name": "",
  5648. "_objFlags": 0,
  5649. "__editorExtras__": {},
  5650. "node": {
  5651. "__id__": 2
  5652. },
  5653. "_enabled": true,
  5654. "__prefab": {
  5655. "__id__": 239
  5656. },
  5657. "_contentSize": {
  5658. "__type__": "cc.Size",
  5659. "width": 720,
  5660. "height": 1600.0000000000002
  5661. },
  5662. "_anchorPoint": {
  5663. "__type__": "cc.Vec2",
  5664. "x": 0.5,
  5665. "y": 0.5
  5666. },
  5667. "_id": ""
  5668. },
  5669. {
  5670. "__type__": "cc.CompPrefabInfo",
  5671. "fileId": "7amZSjImxJ6rUw610U8PVE"
  5672. },
  5673. {
  5674. "__type__": "cc.Widget",
  5675. "_name": "",
  5676. "_objFlags": 0,
  5677. "__editorExtras__": {},
  5678. "node": {
  5679. "__id__": 2
  5680. },
  5681. "_enabled": true,
  5682. "__prefab": {
  5683. "__id__": 241
  5684. },
  5685. "_alignFlags": 45,
  5686. "_target": null,
  5687. "_left": 0,
  5688. "_right": 0,
  5689. "_top": 0,
  5690. "_bottom": 0,
  5691. "_horizontalCenter": 0,
  5692. "_verticalCenter": 0,
  5693. "_isAbsLeft": true,
  5694. "_isAbsRight": true,
  5695. "_isAbsTop": true,
  5696. "_isAbsBottom": true,
  5697. "_isAbsHorizontalCenter": true,
  5698. "_isAbsVerticalCenter": true,
  5699. "_originalWidth": 489,
  5700. "_originalHeight": 601,
  5701. "_alignMode": 2,
  5702. "_lockFlags": 0,
  5703. "_id": ""
  5704. },
  5705. {
  5706. "__type__": "cc.CompPrefabInfo",
  5707. "fileId": "9055hoqMRDj52MABHi7tQL"
  5708. },
  5709. {
  5710. "__type__": "cc.Sprite",
  5711. "_name": "",
  5712. "_objFlags": 0,
  5713. "__editorExtras__": {},
  5714. "node": {
  5715. "__id__": 2
  5716. },
  5717. "_enabled": true,
  5718. "__prefab": {
  5719. "__id__": 243
  5720. },
  5721. "_customMaterial": null,
  5722. "_srcBlendFactor": 2,
  5723. "_dstBlendFactor": 4,
  5724. "_color": {
  5725. "__type__": "cc.Color",
  5726. "r": 255,
  5727. "g": 255,
  5728. "b": 255,
  5729. "a": 255
  5730. },
  5731. "_spriteFrame": {
  5732. "__uuid__": "53b8d5cb-d910-46c5-a7f9-11c02ab24461@f9941",
  5733. "__expectedType__": "cc.SpriteFrame"
  5734. },
  5735. "_type": 0,
  5736. "_fillType": 0,
  5737. "_sizeMode": 0,
  5738. "_fillCenter": {
  5739. "__type__": "cc.Vec2",
  5740. "x": 0,
  5741. "y": 0
  5742. },
  5743. "_fillStart": 0,
  5744. "_fillRange": 0,
  5745. "_isTrimmedMode": true,
  5746. "_useGrayscale": false,
  5747. "_atlas": null,
  5748. "_id": ""
  5749. },
  5750. {
  5751. "__type__": "cc.CompPrefabInfo",
  5752. "fileId": "afLOzv0WtM5o//rnnsNkrS"
  5753. },
  5754. {
  5755. "__type__": "cc.PrefabInfo",
  5756. "root": {
  5757. "__id__": 1
  5758. },
  5759. "asset": {
  5760. "__id__": 0
  5761. },
  5762. "fileId": "12sdeePUtP4Ypk+9LrVnaB",
  5763. "instance": null,
  5764. "targetOverrides": null,
  5765. "nestedPrefabInstanceRoots": null
  5766. },
  5767. {
  5768. "__type__": "cc.Node",
  5769. "_name": "model_camera",
  5770. "_objFlags": 0,
  5771. "__editorExtras__": {},
  5772. "_parent": {
  5773. "__id__": 1
  5774. },
  5775. "_children": [
  5776. {
  5777. "__id__": 246
  5778. },
  5779. {
  5780. "__id__": 257
  5781. },
  5782. {
  5783. "__id__": 268
  5784. },
  5785. {
  5786. "__id__": 279
  5787. },
  5788. {
  5789. "__id__": 290
  5790. },
  5791. {
  5792. "__id__": 301
  5793. },
  5794. {
  5795. "__id__": 312
  5796. },
  5797. {
  5798. "__id__": 323
  5799. }
  5800. ],
  5801. "_active": true,
  5802. "_components": [
  5803. {
  5804. "__id__": 334
  5805. },
  5806. {
  5807. "__id__": 336
  5808. },
  5809. {
  5810. "__id__": 338
  5811. }
  5812. ],
  5813. "_prefab": {
  5814. "__id__": 340
  5815. },
  5816. "_lpos": {
  5817. "__type__": "cc.Vec3",
  5818. "x": 13.865999999999985,
  5819. "y": 292.51099999999997,
  5820. "z": 2018.706
  5821. },
  5822. "_lrot": {
  5823. "__type__": "cc.Quat",
  5824. "x": 0.023960428390194525,
  5825. "y": -0.005348442106489101,
  5826. "z": 0.0001281896014143513,
  5827. "w": 0.9996985923796322
  5828. },
  5829. "_lscale": {
  5830. "__type__": "cc.Vec3",
  5831. "x": 1,
  5832. "y": 1,
  5833. "z": 1
  5834. },
  5835. "_mobility": 0,
  5836. "_layer": 0,
  5837. "_euler": {
  5838. "__type__": "cc.Vec3",
  5839. "x": 2.7459649328825386,
  5840. "y": -0.613065254417961,
  5841. "z": -1.8636062586700294e-17
  5842. },
  5843. "_id": ""
  5844. },
  5845. {
  5846. "__type__": "cc.Node",
  5847. "_name": "98k_gun",
  5848. "_objFlags": 0,
  5849. "__editorExtras__": {},
  5850. "_parent": {
  5851. "__id__": 245
  5852. },
  5853. "_children": [
  5854. {
  5855. "__id__": 247
  5856. }
  5857. ],
  5858. "_active": false,
  5859. "_components": [
  5860. {
  5861. "__id__": 252
  5862. },
  5863. {
  5864. "__id__": 254
  5865. }
  5866. ],
  5867. "_prefab": {
  5868. "__id__": 256
  5869. },
  5870. "_lpos": {
  5871. "__type__": "cc.Vec3",
  5872. "x": 13.11,
  5873. "y": 279.592,
  5874. "z": -863.821
  5875. },
  5876. "_lrot": {
  5877. "__type__": "cc.Quat",
  5878. "x": -0.6992518522220864,
  5879. "y": -0.006590491435464964,
  5880. "z": -0.006737159138611,
  5881. "w": 0.7148132786073308
  5882. },
  5883. "_lscale": {
  5884. "__type__": "cc.Vec3",
  5885. "x": 100,
  5886. "y": 100,
  5887. "z": 100
  5888. },
  5889. "_mobility": 0,
  5890. "_layer": 0,
  5891. "_euler": {
  5892. "__type__": "cc.Vec3",
  5893. "x": -88.7392239413358,
  5894. "y": -1.0797390000000002,
  5895. "z": -0.023766000000000044
  5896. },
  5897. "_id": ""
  5898. },
  5899. {
  5900. "__type__": "cc.Node",
  5901. "_name": "98k",
  5902. "_objFlags": 0,
  5903. "__editorExtras__": {},
  5904. "_parent": {
  5905. "__id__": 246
  5906. },
  5907. "_children": [],
  5908. "_active": true,
  5909. "_components": [
  5910. {
  5911. "__id__": 248
  5912. }
  5913. ],
  5914. "_prefab": {
  5915. "__id__": 251
  5916. },
  5917. "_lpos": {
  5918. "__type__": "cc.Vec3",
  5919. "x": -0.752,
  5920. "y": 0,
  5921. "z": 0
  5922. },
  5923. "_lrot": {
  5924. "__type__": "cc.Quat",
  5925. "x": 0,
  5926. "y": 0,
  5927. "z": 0,
  5928. "w": 1
  5929. },
  5930. "_lscale": {
  5931. "__type__": "cc.Vec3",
  5932. "x": 1200,
  5933. "y": 1200,
  5934. "z": 1200
  5935. },
  5936. "_mobility": 0,
  5937. "_layer": 0,
  5938. "_euler": {
  5939. "__type__": "cc.Vec3",
  5940. "x": 0,
  5941. "y": 0,
  5942. "z": 0
  5943. },
  5944. "_id": ""
  5945. },
  5946. {
  5947. "__type__": "cc.MeshRenderer",
  5948. "_name": "",
  5949. "_objFlags": 0,
  5950. "__editorExtras__": {},
  5951. "node": {
  5952. "__id__": 247
  5953. },
  5954. "_enabled": true,
  5955. "__prefab": {
  5956. "__id__": 249
  5957. },
  5958. "_materials": [
  5959. {
  5960. "__uuid__": "339b909a-fbbe-405c-a832-9a878efd4990@22e2a",
  5961. "__expectedType__": "cc.Material"
  5962. }
  5963. ],
  5964. "_visFlags": 0,
  5965. "bakeSettings": {
  5966. "__id__": 250
  5967. },
  5968. "_mesh": {
  5969. "__uuid__": "339b909a-fbbe-405c-a832-9a878efd4990@000dd",
  5970. "__expectedType__": "cc.Mesh"
  5971. },
  5972. "_shadowCastingMode": 1,
  5973. "_shadowReceivingMode": 1,
  5974. "_shadowBias": 0,
  5975. "_shadowNormalBias": 0,
  5976. "_reflectionProbeId": -1,
  5977. "_reflectionProbeBlendId": -1,
  5978. "_reflectionProbeBlendWeight": 0,
  5979. "_enabledGlobalStandardSkinObject": false,
  5980. "_enableMorph": true,
  5981. "_id": ""
  5982. },
  5983. {
  5984. "__type__": "cc.CompPrefabInfo",
  5985. "fileId": "edcj1FEiZKA52H+aJrEgQT"
  5986. },
  5987. {
  5988. "__type__": "cc.ModelBakeSettings",
  5989. "texture": null,
  5990. "uvParam": {
  5991. "__type__": "cc.Vec4",
  5992. "x": 0,
  5993. "y": 0,
  5994. "z": 0,
  5995. "w": 0
  5996. },
  5997. "_bakeable": false,
  5998. "_castShadow": true,
  5999. "_receiveShadow": true,
  6000. "_recieveShadow": true,
  6001. "_lightmapSize": 64,
  6002. "_useLightProbe": false,
  6003. "_bakeToLightProbe": true,
  6004. "_reflectionProbeType": 0,
  6005. "_bakeToReflectionProbe": true
  6006. },
  6007. {
  6008. "__type__": "cc.PrefabInfo",
  6009. "root": {
  6010. "__id__": 1
  6011. },
  6012. "asset": {
  6013. "__id__": 0
  6014. },
  6015. "fileId": "adhP5Ak4dHJYui80jRg59M",
  6016. "instance": null,
  6017. "targetOverrides": null,
  6018. "nestedPrefabInstanceRoots": null
  6019. },
  6020. {
  6021. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  6022. "_name": "",
  6023. "_objFlags": 0,
  6024. "__editorExtras__": {},
  6025. "node": {
  6026. "__id__": 246
  6027. },
  6028. "_enabled": true,
  6029. "__prefab": {
  6030. "__id__": 253
  6031. },
  6032. "speed": 45,
  6033. "touchDeceleration": 0.95,
  6034. "tiltAngle": 100,
  6035. "_id": ""
  6036. },
  6037. {
  6038. "__type__": "cc.CompPrefabInfo",
  6039. "fileId": "5eXt5JvWNCUoDOvJm6rw97"
  6040. },
  6041. {
  6042. "__type__": "cc.BoxCollider",
  6043. "_name": "",
  6044. "_objFlags": 0,
  6045. "__editorExtras__": {},
  6046. "node": {
  6047. "__id__": 246
  6048. },
  6049. "_enabled": true,
  6050. "__prefab": {
  6051. "__id__": 255
  6052. },
  6053. "_material": null,
  6054. "_isTrigger": false,
  6055. "_center": {
  6056. "__type__": "cc.Vec3",
  6057. "x": 0,
  6058. "y": 0,
  6059. "z": 0
  6060. },
  6061. "_size": {
  6062. "__type__": "cc.Vec3",
  6063. "x": 3.376,
  6064. "y": 1,
  6065. "z": 1
  6066. },
  6067. "_id": ""
  6068. },
  6069. {
  6070. "__type__": "cc.CompPrefabInfo",
  6071. "fileId": "96dhM4dfhKCL+V25GxNY04"
  6072. },
  6073. {
  6074. "__type__": "cc.PrefabInfo",
  6075. "root": {
  6076. "__id__": 1
  6077. },
  6078. "asset": {
  6079. "__id__": 0
  6080. },
  6081. "fileId": "17HnmnF8hLq6fJ/kauMHyE",
  6082. "instance": null,
  6083. "targetOverrides": null,
  6084. "nestedPrefabInstanceRoots": null
  6085. },
  6086. {
  6087. "__type__": "cc.Node",
  6088. "_name": "akm_gun",
  6089. "_objFlags": 0,
  6090. "__editorExtras__": {},
  6091. "_parent": {
  6092. "__id__": 245
  6093. },
  6094. "_children": [
  6095. {
  6096. "__id__": 258
  6097. }
  6098. ],
  6099. "_active": false,
  6100. "_components": [
  6101. {
  6102. "__id__": 263
  6103. },
  6104. {
  6105. "__id__": 265
  6106. }
  6107. ],
  6108. "_prefab": {
  6109. "__id__": 267
  6110. },
  6111. "_lpos": {
  6112. "__type__": "cc.Vec3",
  6113. "x": -4.778,
  6114. "y": 279.599,
  6115. "z": -864.158
  6116. },
  6117. "_lrot": {
  6118. "__type__": "cc.Quat",
  6119. "x": -0.6992518522220864,
  6120. "y": -0.006590491435464964,
  6121. "z": -0.006737159138611,
  6122. "w": 0.7148132786073308
  6123. },
  6124. "_lscale": {
  6125. "__type__": "cc.Vec3",
  6126. "x": 100,
  6127. "y": 100,
  6128. "z": 100
  6129. },
  6130. "_mobility": 0,
  6131. "_layer": 0,
  6132. "_euler": {
  6133. "__type__": "cc.Vec3",
  6134. "x": -88.7392239413358,
  6135. "y": -1.0797390000000002,
  6136. "z": -0.023766000000000044
  6137. },
  6138. "_id": ""
  6139. },
  6140. {
  6141. "__type__": "cc.Node",
  6142. "_name": "AKM",
  6143. "_objFlags": 0,
  6144. "__editorExtras__": {},
  6145. "_parent": {
  6146. "__id__": 257
  6147. },
  6148. "_children": [],
  6149. "_active": true,
  6150. "_components": [
  6151. {
  6152. "__id__": 259
  6153. }
  6154. ],
  6155. "_prefab": {
  6156. "__id__": 262
  6157. },
  6158. "_lpos": {
  6159. "__type__": "cc.Vec3",
  6160. "x": 0.112,
  6161. "y": -0.061,
  6162. "z": -0.202
  6163. },
  6164. "_lrot": {
  6165. "__type__": "cc.Quat",
  6166. "x": 0,
  6167. "y": 0,
  6168. "z": 0,
  6169. "w": 1
  6170. },
  6171. "_lscale": {
  6172. "__type__": "cc.Vec3",
  6173. "x": 1200,
  6174. "y": 1200,
  6175. "z": 1200
  6176. },
  6177. "_mobility": 0,
  6178. "_layer": 0,
  6179. "_euler": {
  6180. "__type__": "cc.Vec3",
  6181. "x": 0,
  6182. "y": 0,
  6183. "z": 0
  6184. },
  6185. "_id": ""
  6186. },
  6187. {
  6188. "__type__": "cc.MeshRenderer",
  6189. "_name": "",
  6190. "_objFlags": 0,
  6191. "__editorExtras__": {},
  6192. "node": {
  6193. "__id__": 258
  6194. },
  6195. "_enabled": true,
  6196. "__prefab": {
  6197. "__id__": 260
  6198. },
  6199. "_materials": [
  6200. {
  6201. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@55094",
  6202. "__expectedType__": "cc.Material"
  6203. }
  6204. ],
  6205. "_visFlags": 0,
  6206. "bakeSettings": {
  6207. "__id__": 261
  6208. },
  6209. "_mesh": {
  6210. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@fe7a5",
  6211. "__expectedType__": "cc.Mesh"
  6212. },
  6213. "_shadowCastingMode": 1,
  6214. "_shadowReceivingMode": 1,
  6215. "_shadowBias": 0,
  6216. "_shadowNormalBias": 0,
  6217. "_reflectionProbeId": -1,
  6218. "_reflectionProbeBlendId": -1,
  6219. "_reflectionProbeBlendWeight": 0,
  6220. "_enabledGlobalStandardSkinObject": false,
  6221. "_enableMorph": true,
  6222. "_id": ""
  6223. },
  6224. {
  6225. "__type__": "cc.CompPrefabInfo",
  6226. "fileId": "8eSSgJyLxGcrfYQfpY37qt"
  6227. },
  6228. {
  6229. "__type__": "cc.ModelBakeSettings",
  6230. "texture": null,
  6231. "uvParam": {
  6232. "__type__": "cc.Vec4",
  6233. "x": 0,
  6234. "y": 0,
  6235. "z": 0,
  6236. "w": 0
  6237. },
  6238. "_bakeable": false,
  6239. "_castShadow": true,
  6240. "_receiveShadow": true,
  6241. "_recieveShadow": true,
  6242. "_lightmapSize": 64,
  6243. "_useLightProbe": false,
  6244. "_bakeToLightProbe": true,
  6245. "_reflectionProbeType": 0,
  6246. "_bakeToReflectionProbe": true
  6247. },
  6248. {
  6249. "__type__": "cc.PrefabInfo",
  6250. "root": {
  6251. "__id__": 1
  6252. },
  6253. "asset": {
  6254. "__id__": 0
  6255. },
  6256. "fileId": "8726fdTSBG7reQIxbpllg2",
  6257. "instance": null,
  6258. "targetOverrides": null,
  6259. "nestedPrefabInstanceRoots": null
  6260. },
  6261. {
  6262. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  6263. "_name": "",
  6264. "_objFlags": 0,
  6265. "__editorExtras__": {},
  6266. "node": {
  6267. "__id__": 257
  6268. },
  6269. "_enabled": true,
  6270. "__prefab": {
  6271. "__id__": 264
  6272. },
  6273. "speed": 45,
  6274. "touchDeceleration": 0.95,
  6275. "tiltAngle": 100,
  6276. "_id": ""
  6277. },
  6278. {
  6279. "__type__": "cc.CompPrefabInfo",
  6280. "fileId": "836ImJEYBGXrajJDu1T3Og"
  6281. },
  6282. {
  6283. "__type__": "cc.BoxCollider",
  6284. "_name": "",
  6285. "_objFlags": 0,
  6286. "__editorExtras__": {},
  6287. "node": {
  6288. "__id__": 257
  6289. },
  6290. "_enabled": true,
  6291. "__prefab": {
  6292. "__id__": 266
  6293. },
  6294. "_material": null,
  6295. "_isTrigger": false,
  6296. "_center": {
  6297. "__type__": "cc.Vec3",
  6298. "x": 0,
  6299. "y": 0,
  6300. "z": 0
  6301. },
  6302. "_size": {
  6303. "__type__": "cc.Vec3",
  6304. "x": 3.376,
  6305. "y": 1,
  6306. "z": 1
  6307. },
  6308. "_id": ""
  6309. },
  6310. {
  6311. "__type__": "cc.CompPrefabInfo",
  6312. "fileId": "9fsubpQHtCTYFb5LiKG/85"
  6313. },
  6314. {
  6315. "__type__": "cc.PrefabInfo",
  6316. "root": {
  6317. "__id__": 1
  6318. },
  6319. "asset": {
  6320. "__id__": 0
  6321. },
  6322. "fileId": "ddgJaiaBBDoJQryhV1Ob10",
  6323. "instance": null,
  6324. "targetOverrides": null,
  6325. "nestedPrefabInstanceRoots": null
  6326. },
  6327. {
  6328. "__type__": "cc.Node",
  6329. "_name": "awm_gun",
  6330. "_objFlags": 0,
  6331. "__editorExtras__": {},
  6332. "_parent": {
  6333. "__id__": 245
  6334. },
  6335. "_children": [
  6336. {
  6337. "__id__": 269
  6338. }
  6339. ],
  6340. "_active": false,
  6341. "_components": [
  6342. {
  6343. "__id__": 274
  6344. },
  6345. {
  6346. "__id__": 276
  6347. }
  6348. ],
  6349. "_prefab": {
  6350. "__id__": 278
  6351. },
  6352. "_lpos": {
  6353. "__type__": "cc.Vec3",
  6354. "x": 13.11,
  6355. "y": 279.592,
  6356. "z": -863.821
  6357. },
  6358. "_lrot": {
  6359. "__type__": "cc.Quat",
  6360. "x": -0.6992518522220864,
  6361. "y": -0.006590491435464964,
  6362. "z": -0.006737159138611,
  6363. "w": 0.7148132786073308
  6364. },
  6365. "_lscale": {
  6366. "__type__": "cc.Vec3",
  6367. "x": 100,
  6368. "y": 100,
  6369. "z": 100
  6370. },
  6371. "_mobility": 0,
  6372. "_layer": 0,
  6373. "_euler": {
  6374. "__type__": "cc.Vec3",
  6375. "x": -88.7392239413358,
  6376. "y": -1.0797390000000002,
  6377. "z": -0.023766000000000044
  6378. },
  6379. "_id": ""
  6380. },
  6381. {
  6382. "__type__": "cc.Node",
  6383. "_name": "awm",
  6384. "_objFlags": 0,
  6385. "__editorExtras__": {},
  6386. "_parent": {
  6387. "__id__": 268
  6388. },
  6389. "_children": [],
  6390. "_active": true,
  6391. "_components": [
  6392. {
  6393. "__id__": 270
  6394. }
  6395. ],
  6396. "_prefab": {
  6397. "__id__": 273
  6398. },
  6399. "_lpos": {
  6400. "__type__": "cc.Vec3",
  6401. "x": -0.656,
  6402. "y": -0.159,
  6403. "z": 0.049
  6404. },
  6405. "_lrot": {
  6406. "__type__": "cc.Quat",
  6407. "x": 0,
  6408. "y": 0,
  6409. "z": 0,
  6410. "w": 1
  6411. },
  6412. "_lscale": {
  6413. "__type__": "cc.Vec3",
  6414. "x": 1200,
  6415. "y": 1200,
  6416. "z": 1200
  6417. },
  6418. "_mobility": 0,
  6419. "_layer": 0,
  6420. "_euler": {
  6421. "__type__": "cc.Vec3",
  6422. "x": 0,
  6423. "y": 0,
  6424. "z": 0
  6425. },
  6426. "_id": ""
  6427. },
  6428. {
  6429. "__type__": "cc.MeshRenderer",
  6430. "_name": "",
  6431. "_objFlags": 0,
  6432. "__editorExtras__": {},
  6433. "node": {
  6434. "__id__": 269
  6435. },
  6436. "_enabled": true,
  6437. "__prefab": {
  6438. "__id__": 271
  6439. },
  6440. "_materials": [
  6441. {
  6442. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@55094",
  6443. "__expectedType__": "cc.Material"
  6444. }
  6445. ],
  6446. "_visFlags": 0,
  6447. "bakeSettings": {
  6448. "__id__": 272
  6449. },
  6450. "_mesh": {
  6451. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@36ffd",
  6452. "__expectedType__": "cc.Mesh"
  6453. },
  6454. "_shadowCastingMode": 1,
  6455. "_shadowReceivingMode": 1,
  6456. "_shadowBias": 0,
  6457. "_shadowNormalBias": 0,
  6458. "_reflectionProbeId": -1,
  6459. "_reflectionProbeBlendId": -1,
  6460. "_reflectionProbeBlendWeight": 0,
  6461. "_enabledGlobalStandardSkinObject": false,
  6462. "_enableMorph": true,
  6463. "_id": ""
  6464. },
  6465. {
  6466. "__type__": "cc.CompPrefabInfo",
  6467. "fileId": "06IbL9diFM26Ok831Il2JM"
  6468. },
  6469. {
  6470. "__type__": "cc.ModelBakeSettings",
  6471. "texture": null,
  6472. "uvParam": {
  6473. "__type__": "cc.Vec4",
  6474. "x": 0,
  6475. "y": 0,
  6476. "z": 0,
  6477. "w": 0
  6478. },
  6479. "_bakeable": false,
  6480. "_castShadow": true,
  6481. "_receiveShadow": true,
  6482. "_recieveShadow": true,
  6483. "_lightmapSize": 64,
  6484. "_useLightProbe": false,
  6485. "_bakeToLightProbe": true,
  6486. "_reflectionProbeType": 0,
  6487. "_bakeToReflectionProbe": true
  6488. },
  6489. {
  6490. "__type__": "cc.PrefabInfo",
  6491. "root": {
  6492. "__id__": 1
  6493. },
  6494. "asset": {
  6495. "__id__": 0
  6496. },
  6497. "fileId": "11iqmqwkxCBJvwkAYcEyj5",
  6498. "instance": null,
  6499. "targetOverrides": null,
  6500. "nestedPrefabInstanceRoots": null
  6501. },
  6502. {
  6503. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  6504. "_name": "",
  6505. "_objFlags": 0,
  6506. "__editorExtras__": {},
  6507. "node": {
  6508. "__id__": 268
  6509. },
  6510. "_enabled": true,
  6511. "__prefab": {
  6512. "__id__": 275
  6513. },
  6514. "speed": 45,
  6515. "touchDeceleration": 0.95,
  6516. "tiltAngle": 100,
  6517. "_id": ""
  6518. },
  6519. {
  6520. "__type__": "cc.CompPrefabInfo",
  6521. "fileId": "8dCJGr1hxMy7v1sSUB6h40"
  6522. },
  6523. {
  6524. "__type__": "cc.BoxCollider",
  6525. "_name": "",
  6526. "_objFlags": 0,
  6527. "__editorExtras__": {},
  6528. "node": {
  6529. "__id__": 268
  6530. },
  6531. "_enabled": true,
  6532. "__prefab": {
  6533. "__id__": 277
  6534. },
  6535. "_material": null,
  6536. "_isTrigger": false,
  6537. "_center": {
  6538. "__type__": "cc.Vec3",
  6539. "x": 0,
  6540. "y": 0,
  6541. "z": 0
  6542. },
  6543. "_size": {
  6544. "__type__": "cc.Vec3",
  6545. "x": 3.376,
  6546. "y": 1,
  6547. "z": 1
  6548. },
  6549. "_id": ""
  6550. },
  6551. {
  6552. "__type__": "cc.CompPrefabInfo",
  6553. "fileId": "e2FRuyUGhID50LK6UqwCnJ"
  6554. },
  6555. {
  6556. "__type__": "cc.PrefabInfo",
  6557. "root": {
  6558. "__id__": 1
  6559. },
  6560. "asset": {
  6561. "__id__": 0
  6562. },
  6563. "fileId": "80BLFgGmZGNYhRisQXnuXu",
  6564. "instance": null,
  6565. "targetOverrides": null,
  6566. "nestedPrefabInstanceRoots": null
  6567. },
  6568. {
  6569. "__type__": "cc.Node",
  6570. "_name": "barrettM82A1_gun",
  6571. "_objFlags": 0,
  6572. "__editorExtras__": {},
  6573. "_parent": {
  6574. "__id__": 245
  6575. },
  6576. "_children": [
  6577. {
  6578. "__id__": 280
  6579. }
  6580. ],
  6581. "_active": false,
  6582. "_components": [
  6583. {
  6584. "__id__": 285
  6585. },
  6586. {
  6587. "__id__": 287
  6588. }
  6589. ],
  6590. "_prefab": {
  6591. "__id__": 289
  6592. },
  6593. "_lpos": {
  6594. "__type__": "cc.Vec3",
  6595. "x": 3.553,
  6596. "y": 281.596,
  6597. "z": -863.957
  6598. },
  6599. "_lrot": {
  6600. "__type__": "cc.Quat",
  6601. "x": -0.6992518522220864,
  6602. "y": -0.006590491435464964,
  6603. "z": -0.006737159138611,
  6604. "w": 0.7148132786073308
  6605. },
  6606. "_lscale": {
  6607. "__type__": "cc.Vec3",
  6608. "x": 100,
  6609. "y": 100,
  6610. "z": 100
  6611. },
  6612. "_mobility": 0,
  6613. "_layer": 0,
  6614. "_euler": {
  6615. "__type__": "cc.Vec3",
  6616. "x": -88.7392239413358,
  6617. "y": -1.0797390000000002,
  6618. "z": -0.023766000000000044
  6619. },
  6620. "_id": ""
  6621. },
  6622. {
  6623. "__type__": "cc.Node",
  6624. "_name": "barrettM82A2",
  6625. "_objFlags": 0,
  6626. "__editorExtras__": {},
  6627. "_parent": {
  6628. "__id__": 279
  6629. },
  6630. "_children": [],
  6631. "_active": true,
  6632. "_components": [
  6633. {
  6634. "__id__": 281
  6635. }
  6636. ],
  6637. "_prefab": {
  6638. "__id__": 284
  6639. },
  6640. "_lpos": {
  6641. "__type__": "cc.Vec3",
  6642. "x": -0.652,
  6643. "y": -0.109,
  6644. "z": 0.07
  6645. },
  6646. "_lrot": {
  6647. "__type__": "cc.Quat",
  6648. "x": 0,
  6649. "y": 0,
  6650. "z": 0,
  6651. "w": 1
  6652. },
  6653. "_lscale": {
  6654. "__type__": "cc.Vec3",
  6655. "x": 890,
  6656. "y": 890,
  6657. "z": 890
  6658. },
  6659. "_mobility": 0,
  6660. "_layer": 0,
  6661. "_euler": {
  6662. "__type__": "cc.Vec3",
  6663. "x": 0,
  6664. "y": 0,
  6665. "z": 0
  6666. },
  6667. "_id": ""
  6668. },
  6669. {
  6670. "__type__": "cc.MeshRenderer",
  6671. "_name": "",
  6672. "_objFlags": 0,
  6673. "__editorExtras__": {},
  6674. "node": {
  6675. "__id__": 280
  6676. },
  6677. "_enabled": true,
  6678. "__prefab": {
  6679. "__id__": 282
  6680. },
  6681. "_materials": [
  6682. {
  6683. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@55094",
  6684. "__expectedType__": "cc.Material"
  6685. }
  6686. ],
  6687. "_visFlags": 0,
  6688. "bakeSettings": {
  6689. "__id__": 283
  6690. },
  6691. "_mesh": {
  6692. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@3d5d9",
  6693. "__expectedType__": "cc.Mesh"
  6694. },
  6695. "_shadowCastingMode": 1,
  6696. "_shadowReceivingMode": 1,
  6697. "_shadowBias": 0,
  6698. "_shadowNormalBias": 0,
  6699. "_reflectionProbeId": -1,
  6700. "_reflectionProbeBlendId": -1,
  6701. "_reflectionProbeBlendWeight": 0,
  6702. "_enabledGlobalStandardSkinObject": false,
  6703. "_enableMorph": true,
  6704. "_id": ""
  6705. },
  6706. {
  6707. "__type__": "cc.CompPrefabInfo",
  6708. "fileId": "9dCxg/EuRNdJV+XlzLFBBF"
  6709. },
  6710. {
  6711. "__type__": "cc.ModelBakeSettings",
  6712. "texture": null,
  6713. "uvParam": {
  6714. "__type__": "cc.Vec4",
  6715. "x": 0,
  6716. "y": 0,
  6717. "z": 0,
  6718. "w": 0
  6719. },
  6720. "_bakeable": false,
  6721. "_castShadow": true,
  6722. "_receiveShadow": true,
  6723. "_recieveShadow": true,
  6724. "_lightmapSize": 64,
  6725. "_useLightProbe": false,
  6726. "_bakeToLightProbe": true,
  6727. "_reflectionProbeType": 0,
  6728. "_bakeToReflectionProbe": true
  6729. },
  6730. {
  6731. "__type__": "cc.PrefabInfo",
  6732. "root": {
  6733. "__id__": 1
  6734. },
  6735. "asset": {
  6736. "__id__": 0
  6737. },
  6738. "fileId": "44G0NWqZlA4Ijk7kIm1Jre",
  6739. "instance": null,
  6740. "targetOverrides": null,
  6741. "nestedPrefabInstanceRoots": null
  6742. },
  6743. {
  6744. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  6745. "_name": "",
  6746. "_objFlags": 0,
  6747. "__editorExtras__": {},
  6748. "node": {
  6749. "__id__": 279
  6750. },
  6751. "_enabled": true,
  6752. "__prefab": {
  6753. "__id__": 286
  6754. },
  6755. "speed": 45,
  6756. "touchDeceleration": 0.95,
  6757. "tiltAngle": 100,
  6758. "_id": ""
  6759. },
  6760. {
  6761. "__type__": "cc.CompPrefabInfo",
  6762. "fileId": "472h2yt7pIzr2S7derHHSJ"
  6763. },
  6764. {
  6765. "__type__": "cc.BoxCollider",
  6766. "_name": "",
  6767. "_objFlags": 0,
  6768. "__editorExtras__": {},
  6769. "node": {
  6770. "__id__": 279
  6771. },
  6772. "_enabled": true,
  6773. "__prefab": {
  6774. "__id__": 288
  6775. },
  6776. "_material": null,
  6777. "_isTrigger": false,
  6778. "_center": {
  6779. "__type__": "cc.Vec3",
  6780. "x": 0,
  6781. "y": 0,
  6782. "z": 0
  6783. },
  6784. "_size": {
  6785. "__type__": "cc.Vec3",
  6786. "x": 3.376,
  6787. "y": 1,
  6788. "z": 1
  6789. },
  6790. "_id": ""
  6791. },
  6792. {
  6793. "__type__": "cc.CompPrefabInfo",
  6794. "fileId": "436z/7rWNPx7oJv4U7Pe3L"
  6795. },
  6796. {
  6797. "__type__": "cc.PrefabInfo",
  6798. "root": {
  6799. "__id__": 1
  6800. },
  6801. "asset": {
  6802. "__id__": 0
  6803. },
  6804. "fileId": "32K6jdB1xJe4iOXCbgPOD+",
  6805. "instance": null,
  6806. "targetOverrides": null,
  6807. "nestedPrefabInstanceRoots": null
  6808. },
  6809. {
  6810. "__type__": "cc.Node",
  6811. "_name": "m24_gun",
  6812. "_objFlags": 0,
  6813. "__editorExtras__": {},
  6814. "_parent": {
  6815. "__id__": 245
  6816. },
  6817. "_children": [
  6818. {
  6819. "__id__": 291
  6820. }
  6821. ],
  6822. "_active": false,
  6823. "_components": [
  6824. {
  6825. "__id__": 296
  6826. },
  6827. {
  6828. "__id__": 298
  6829. }
  6830. ],
  6831. "_prefab": {
  6832. "__id__": 300
  6833. },
  6834. "_lpos": {
  6835. "__type__": "cc.Vec3",
  6836. "x": 13.11,
  6837. "y": 279.592,
  6838. "z": -863.821
  6839. },
  6840. "_lrot": {
  6841. "__type__": "cc.Quat",
  6842. "x": -0.6992518522220864,
  6843. "y": -0.006590491435464964,
  6844. "z": -0.006737159138611,
  6845. "w": 0.7148132786073308
  6846. },
  6847. "_lscale": {
  6848. "__type__": "cc.Vec3",
  6849. "x": 100,
  6850. "y": 100,
  6851. "z": 100
  6852. },
  6853. "_mobility": 0,
  6854. "_layer": 0,
  6855. "_euler": {
  6856. "__type__": "cc.Vec3",
  6857. "x": -88.7392239413358,
  6858. "y": -1.0797390000000002,
  6859. "z": -0.023766000000000044
  6860. },
  6861. "_id": ""
  6862. },
  6863. {
  6864. "__type__": "cc.Node",
  6865. "_name": "m24",
  6866. "_objFlags": 0,
  6867. "__editorExtras__": {},
  6868. "_parent": {
  6869. "__id__": 290
  6870. },
  6871. "_children": [],
  6872. "_active": true,
  6873. "_components": [
  6874. {
  6875. "__id__": 292
  6876. }
  6877. ],
  6878. "_prefab": {
  6879. "__id__": 295
  6880. },
  6881. "_lpos": {
  6882. "__type__": "cc.Vec3",
  6883. "x": -0.14,
  6884. "y": -0.018,
  6885. "z": 0.187
  6886. },
  6887. "_lrot": {
  6888. "__type__": "cc.Quat",
  6889. "x": 0.4999999999999999,
  6890. "y": -0.5,
  6891. "z": -0.5,
  6892. "w": 0.5000000000000001
  6893. },
  6894. "_lscale": {
  6895. "__type__": "cc.Vec3",
  6896. "x": 1350,
  6897. "y": 1350,
  6898. "z": 1350
  6899. },
  6900. "_mobility": 0,
  6901. "_layer": 0,
  6902. "_euler": {
  6903. "__type__": "cc.Vec3",
  6904. "x": 0,
  6905. "y": -90,
  6906. "z": -90
  6907. },
  6908. "_id": ""
  6909. },
  6910. {
  6911. "__type__": "cc.MeshRenderer",
  6912. "_name": "",
  6913. "_objFlags": 0,
  6914. "__editorExtras__": {},
  6915. "node": {
  6916. "__id__": 291
  6917. },
  6918. "_enabled": true,
  6919. "__prefab": {
  6920. "__id__": 293
  6921. },
  6922. "_materials": [
  6923. {
  6924. "__uuid__": "339b909a-fbbe-405c-a832-9a878efd4990@22e2a",
  6925. "__expectedType__": "cc.Material"
  6926. }
  6927. ],
  6928. "_visFlags": 0,
  6929. "bakeSettings": {
  6930. "__id__": 294
  6931. },
  6932. "_mesh": {
  6933. "__uuid__": "339b909a-fbbe-405c-a832-9a878efd4990@10dfa",
  6934. "__expectedType__": "cc.Mesh"
  6935. },
  6936. "_shadowCastingMode": 1,
  6937. "_shadowReceivingMode": 1,
  6938. "_shadowBias": 0,
  6939. "_shadowNormalBias": 0,
  6940. "_reflectionProbeId": -1,
  6941. "_reflectionProbeBlendId": -1,
  6942. "_reflectionProbeBlendWeight": 0,
  6943. "_enabledGlobalStandardSkinObject": false,
  6944. "_enableMorph": true,
  6945. "_id": ""
  6946. },
  6947. {
  6948. "__type__": "cc.CompPrefabInfo",
  6949. "fileId": "34muf/+mpPgKkZk16UopIM"
  6950. },
  6951. {
  6952. "__type__": "cc.ModelBakeSettings",
  6953. "texture": null,
  6954. "uvParam": {
  6955. "__type__": "cc.Vec4",
  6956. "x": 0,
  6957. "y": 0,
  6958. "z": 0,
  6959. "w": 0
  6960. },
  6961. "_bakeable": false,
  6962. "_castShadow": true,
  6963. "_receiveShadow": true,
  6964. "_recieveShadow": true,
  6965. "_lightmapSize": 64,
  6966. "_useLightProbe": false,
  6967. "_bakeToLightProbe": true,
  6968. "_reflectionProbeType": 0,
  6969. "_bakeToReflectionProbe": true
  6970. },
  6971. {
  6972. "__type__": "cc.PrefabInfo",
  6973. "root": {
  6974. "__id__": 1
  6975. },
  6976. "asset": {
  6977. "__id__": 0
  6978. },
  6979. "fileId": "26bnWqGT9OyoTCosmuA1t5",
  6980. "instance": null,
  6981. "targetOverrides": null,
  6982. "nestedPrefabInstanceRoots": null
  6983. },
  6984. {
  6985. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  6986. "_name": "",
  6987. "_objFlags": 0,
  6988. "__editorExtras__": {},
  6989. "node": {
  6990. "__id__": 290
  6991. },
  6992. "_enabled": true,
  6993. "__prefab": {
  6994. "__id__": 297
  6995. },
  6996. "speed": 45,
  6997. "touchDeceleration": 0.95,
  6998. "tiltAngle": 100,
  6999. "_id": ""
  7000. },
  7001. {
  7002. "__type__": "cc.CompPrefabInfo",
  7003. "fileId": "72fXF0Cp9EPJhfQ8K7bshf"
  7004. },
  7005. {
  7006. "__type__": "cc.BoxCollider",
  7007. "_name": "",
  7008. "_objFlags": 0,
  7009. "__editorExtras__": {},
  7010. "node": {
  7011. "__id__": 290
  7012. },
  7013. "_enabled": true,
  7014. "__prefab": {
  7015. "__id__": 299
  7016. },
  7017. "_material": null,
  7018. "_isTrigger": false,
  7019. "_center": {
  7020. "__type__": "cc.Vec3",
  7021. "x": 0,
  7022. "y": 0,
  7023. "z": 0
  7024. },
  7025. "_size": {
  7026. "__type__": "cc.Vec3",
  7027. "x": 3.376,
  7028. "y": 1,
  7029. "z": 1
  7030. },
  7031. "_id": ""
  7032. },
  7033. {
  7034. "__type__": "cc.CompPrefabInfo",
  7035. "fileId": "22th7ty6dOfqS4BiXlBi+O"
  7036. },
  7037. {
  7038. "__type__": "cc.PrefabInfo",
  7039. "root": {
  7040. "__id__": 1
  7041. },
  7042. "asset": {
  7043. "__id__": 0
  7044. },
  7045. "fileId": "98JLG0X7hOiaeazyNFlpZ+",
  7046. "instance": null,
  7047. "targetOverrides": null,
  7048. "nestedPrefabInstanceRoots": null
  7049. },
  7050. {
  7051. "__type__": "cc.Node",
  7052. "_name": "m416_gun",
  7053. "_objFlags": 0,
  7054. "__editorExtras__": {},
  7055. "_parent": {
  7056. "__id__": 245
  7057. },
  7058. "_children": [
  7059. {
  7060. "__id__": 302
  7061. }
  7062. ],
  7063. "_active": false,
  7064. "_components": [
  7065. {
  7066. "__id__": 307
  7067. },
  7068. {
  7069. "__id__": 309
  7070. }
  7071. ],
  7072. "_prefab": {
  7073. "__id__": 311
  7074. },
  7075. "_lpos": {
  7076. "__type__": "cc.Vec3",
  7077. "x": 13.11,
  7078. "y": 279.592,
  7079. "z": -863.821
  7080. },
  7081. "_lrot": {
  7082. "__type__": "cc.Quat",
  7083. "x": -0.6992518522220864,
  7084. "y": -0.006590491435464964,
  7085. "z": -0.006737159138611,
  7086. "w": 0.7148132786073308
  7087. },
  7088. "_lscale": {
  7089. "__type__": "cc.Vec3",
  7090. "x": 100,
  7091. "y": 100,
  7092. "z": 100
  7093. },
  7094. "_mobility": 0,
  7095. "_layer": 0,
  7096. "_euler": {
  7097. "__type__": "cc.Vec3",
  7098. "x": -88.7392239413358,
  7099. "y": -1.0797390000000002,
  7100. "z": -0.023766000000000044
  7101. },
  7102. "_id": ""
  7103. },
  7104. {
  7105. "__type__": "cc.Node",
  7106. "_name": "m416",
  7107. "_objFlags": 0,
  7108. "__editorExtras__": {},
  7109. "_parent": {
  7110. "__id__": 301
  7111. },
  7112. "_children": [],
  7113. "_active": true,
  7114. "_components": [
  7115. {
  7116. "__id__": 303
  7117. }
  7118. ],
  7119. "_prefab": {
  7120. "__id__": 306
  7121. },
  7122. "_lpos": {
  7123. "__type__": "cc.Vec3",
  7124. "x": -0.234,
  7125. "y": -0.078,
  7126. "z": -0.08
  7127. },
  7128. "_lrot": {
  7129. "__type__": "cc.Quat",
  7130. "x": 0,
  7131. "y": 0,
  7132. "z": 0,
  7133. "w": 1
  7134. },
  7135. "_lscale": {
  7136. "__type__": "cc.Vec3",
  7137. "x": 850,
  7138. "y": 850,
  7139. "z": 850
  7140. },
  7141. "_mobility": 0,
  7142. "_layer": 0,
  7143. "_euler": {
  7144. "__type__": "cc.Vec3",
  7145. "x": 0,
  7146. "y": 0,
  7147. "z": 0
  7148. },
  7149. "_id": ""
  7150. },
  7151. {
  7152. "__type__": "cc.MeshRenderer",
  7153. "_name": "",
  7154. "_objFlags": 0,
  7155. "__editorExtras__": {},
  7156. "node": {
  7157. "__id__": 302
  7158. },
  7159. "_enabled": true,
  7160. "__prefab": {
  7161. "__id__": 304
  7162. },
  7163. "_materials": [
  7164. {
  7165. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@55094",
  7166. "__expectedType__": "cc.Material"
  7167. }
  7168. ],
  7169. "_visFlags": 0,
  7170. "bakeSettings": {
  7171. "__id__": 305
  7172. },
  7173. "_mesh": {
  7174. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@2c46b",
  7175. "__expectedType__": "cc.Mesh"
  7176. },
  7177. "_shadowCastingMode": 1,
  7178. "_shadowReceivingMode": 1,
  7179. "_shadowBias": 0,
  7180. "_shadowNormalBias": 0,
  7181. "_reflectionProbeId": -1,
  7182. "_reflectionProbeBlendId": -1,
  7183. "_reflectionProbeBlendWeight": 0,
  7184. "_enabledGlobalStandardSkinObject": false,
  7185. "_enableMorph": true,
  7186. "_id": ""
  7187. },
  7188. {
  7189. "__type__": "cc.CompPrefabInfo",
  7190. "fileId": "7bBuOmMEpODYo5F2972qkh"
  7191. },
  7192. {
  7193. "__type__": "cc.ModelBakeSettings",
  7194. "texture": null,
  7195. "uvParam": {
  7196. "__type__": "cc.Vec4",
  7197. "x": 0,
  7198. "y": 0,
  7199. "z": 0,
  7200. "w": 0
  7201. },
  7202. "_bakeable": false,
  7203. "_castShadow": true,
  7204. "_receiveShadow": true,
  7205. "_recieveShadow": true,
  7206. "_lightmapSize": 64,
  7207. "_useLightProbe": false,
  7208. "_bakeToLightProbe": true,
  7209. "_reflectionProbeType": 0,
  7210. "_bakeToReflectionProbe": true
  7211. },
  7212. {
  7213. "__type__": "cc.PrefabInfo",
  7214. "root": {
  7215. "__id__": 1
  7216. },
  7217. "asset": {
  7218. "__id__": 0
  7219. },
  7220. "fileId": "5d4crIiUpOObk7ty2R9Yqc",
  7221. "instance": null,
  7222. "targetOverrides": null,
  7223. "nestedPrefabInstanceRoots": null
  7224. },
  7225. {
  7226. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  7227. "_name": "",
  7228. "_objFlags": 0,
  7229. "__editorExtras__": {},
  7230. "node": {
  7231. "__id__": 301
  7232. },
  7233. "_enabled": true,
  7234. "__prefab": {
  7235. "__id__": 308
  7236. },
  7237. "speed": 45,
  7238. "touchDeceleration": 0.95,
  7239. "tiltAngle": 100,
  7240. "_id": ""
  7241. },
  7242. {
  7243. "__type__": "cc.CompPrefabInfo",
  7244. "fileId": "48s86I5pBCc5XcLPXSWUPy"
  7245. },
  7246. {
  7247. "__type__": "cc.BoxCollider",
  7248. "_name": "",
  7249. "_objFlags": 0,
  7250. "__editorExtras__": {},
  7251. "node": {
  7252. "__id__": 301
  7253. },
  7254. "_enabled": true,
  7255. "__prefab": {
  7256. "__id__": 310
  7257. },
  7258. "_material": null,
  7259. "_isTrigger": false,
  7260. "_center": {
  7261. "__type__": "cc.Vec3",
  7262. "x": 0,
  7263. "y": 0,
  7264. "z": 0
  7265. },
  7266. "_size": {
  7267. "__type__": "cc.Vec3",
  7268. "x": 3.376,
  7269. "y": 1,
  7270. "z": 1
  7271. },
  7272. "_id": ""
  7273. },
  7274. {
  7275. "__type__": "cc.CompPrefabInfo",
  7276. "fileId": "a0EzZmTQNJSpc9rOer46Qf"
  7277. },
  7278. {
  7279. "__type__": "cc.PrefabInfo",
  7280. "root": {
  7281. "__id__": 1
  7282. },
  7283. "asset": {
  7284. "__id__": 0
  7285. },
  7286. "fileId": "38Ca7+TKVJNISVJt5abTdP",
  7287. "instance": null,
  7288. "targetOverrides": null,
  7289. "nestedPrefabInstanceRoots": null
  7290. },
  7291. {
  7292. "__type__": "cc.Node",
  7293. "_name": "sks_gun",
  7294. "_objFlags": 0,
  7295. "__editorExtras__": {},
  7296. "_parent": {
  7297. "__id__": 245
  7298. },
  7299. "_children": [
  7300. {
  7301. "__id__": 313
  7302. }
  7303. ],
  7304. "_active": false,
  7305. "_components": [
  7306. {
  7307. "__id__": 318
  7308. },
  7309. {
  7310. "__id__": 320
  7311. }
  7312. ],
  7313. "_prefab": {
  7314. "__id__": 322
  7315. },
  7316. "_lpos": {
  7317. "__type__": "cc.Vec3",
  7318. "x": -7.001,
  7319. "y": 279.6,
  7320. "z": -864.2
  7321. },
  7322. "_lrot": {
  7323. "__type__": "cc.Quat",
  7324. "x": -0.6992518522220864,
  7325. "y": -0.006590491435464964,
  7326. "z": -0.006737159138611,
  7327. "w": 0.7148132786073308
  7328. },
  7329. "_lscale": {
  7330. "__type__": "cc.Vec3",
  7331. "x": 100,
  7332. "y": 100,
  7333. "z": 100
  7334. },
  7335. "_mobility": 0,
  7336. "_layer": 0,
  7337. "_euler": {
  7338. "__type__": "cc.Vec3",
  7339. "x": -88.7392239413358,
  7340. "y": -1.0797390000000002,
  7341. "z": -0.023766000000000044
  7342. },
  7343. "_id": ""
  7344. },
  7345. {
  7346. "__type__": "cc.Node",
  7347. "_name": "sks",
  7348. "_objFlags": 0,
  7349. "__editorExtras__": {},
  7350. "_parent": {
  7351. "__id__": 312
  7352. },
  7353. "_children": [],
  7354. "_active": true,
  7355. "_components": [
  7356. {
  7357. "__id__": 314
  7358. }
  7359. ],
  7360. "_prefab": {
  7361. "__id__": 317
  7362. },
  7363. "_lpos": {
  7364. "__type__": "cc.Vec3",
  7365. "x": -0.05,
  7366. "y": -0.016,
  7367. "z": -0.077
  7368. },
  7369. "_lrot": {
  7370. "__type__": "cc.Quat",
  7371. "x": 0,
  7372. "y": 0,
  7373. "z": 0,
  7374. "w": 1
  7375. },
  7376. "_lscale": {
  7377. "__type__": "cc.Vec3",
  7378. "x": 950,
  7379. "y": 950,
  7380. "z": 950
  7381. },
  7382. "_mobility": 0,
  7383. "_layer": 0,
  7384. "_euler": {
  7385. "__type__": "cc.Vec3",
  7386. "x": 0,
  7387. "y": 0,
  7388. "z": 0
  7389. },
  7390. "_id": ""
  7391. },
  7392. {
  7393. "__type__": "cc.MeshRenderer",
  7394. "_name": "",
  7395. "_objFlags": 0,
  7396. "__editorExtras__": {},
  7397. "node": {
  7398. "__id__": 313
  7399. },
  7400. "_enabled": true,
  7401. "__prefab": {
  7402. "__id__": 315
  7403. },
  7404. "_materials": [
  7405. {
  7406. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@55094",
  7407. "__expectedType__": "cc.Material"
  7408. }
  7409. ],
  7410. "_visFlags": 0,
  7411. "bakeSettings": {
  7412. "__id__": 316
  7413. },
  7414. "_mesh": {
  7415. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@a4236",
  7416. "__expectedType__": "cc.Mesh"
  7417. },
  7418. "_shadowCastingMode": 1,
  7419. "_shadowReceivingMode": 1,
  7420. "_shadowBias": 0,
  7421. "_shadowNormalBias": 0,
  7422. "_reflectionProbeId": -1,
  7423. "_reflectionProbeBlendId": -1,
  7424. "_reflectionProbeBlendWeight": 0,
  7425. "_enabledGlobalStandardSkinObject": false,
  7426. "_enableMorph": true,
  7427. "_id": ""
  7428. },
  7429. {
  7430. "__type__": "cc.CompPrefabInfo",
  7431. "fileId": "15V9uVdCxGFIEF4Mf2GnY0"
  7432. },
  7433. {
  7434. "__type__": "cc.ModelBakeSettings",
  7435. "texture": null,
  7436. "uvParam": {
  7437. "__type__": "cc.Vec4",
  7438. "x": 0,
  7439. "y": 0,
  7440. "z": 0,
  7441. "w": 0
  7442. },
  7443. "_bakeable": false,
  7444. "_castShadow": true,
  7445. "_receiveShadow": true,
  7446. "_recieveShadow": true,
  7447. "_lightmapSize": 64,
  7448. "_useLightProbe": false,
  7449. "_bakeToLightProbe": true,
  7450. "_reflectionProbeType": 0,
  7451. "_bakeToReflectionProbe": true
  7452. },
  7453. {
  7454. "__type__": "cc.PrefabInfo",
  7455. "root": {
  7456. "__id__": 1
  7457. },
  7458. "asset": {
  7459. "__id__": 0
  7460. },
  7461. "fileId": "7ewW1r9XZJe6vT4DC0WO4Y",
  7462. "instance": null,
  7463. "targetOverrides": null,
  7464. "nestedPrefabInstanceRoots": null
  7465. },
  7466. {
  7467. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  7468. "_name": "",
  7469. "_objFlags": 0,
  7470. "__editorExtras__": {},
  7471. "node": {
  7472. "__id__": 312
  7473. },
  7474. "_enabled": true,
  7475. "__prefab": {
  7476. "__id__": 319
  7477. },
  7478. "speed": 45,
  7479. "touchDeceleration": 0.95,
  7480. "tiltAngle": 100,
  7481. "_id": ""
  7482. },
  7483. {
  7484. "__type__": "cc.CompPrefabInfo",
  7485. "fileId": "d9SuTEK3tGJYBmQvXUdqLb"
  7486. },
  7487. {
  7488. "__type__": "cc.BoxCollider",
  7489. "_name": "",
  7490. "_objFlags": 0,
  7491. "__editorExtras__": {},
  7492. "node": {
  7493. "__id__": 312
  7494. },
  7495. "_enabled": true,
  7496. "__prefab": {
  7497. "__id__": 321
  7498. },
  7499. "_material": null,
  7500. "_isTrigger": false,
  7501. "_center": {
  7502. "__type__": "cc.Vec3",
  7503. "x": 0,
  7504. "y": 0,
  7505. "z": 0
  7506. },
  7507. "_size": {
  7508. "__type__": "cc.Vec3",
  7509. "x": 3.376,
  7510. "y": 1,
  7511. "z": 1
  7512. },
  7513. "_id": ""
  7514. },
  7515. {
  7516. "__type__": "cc.CompPrefabInfo",
  7517. "fileId": "f2hVO9kVpA8o8vHWPC+mFa"
  7518. },
  7519. {
  7520. "__type__": "cc.PrefabInfo",
  7521. "root": {
  7522. "__id__": 1
  7523. },
  7524. "asset": {
  7525. "__id__": 0
  7526. },
  7527. "fileId": "7f4mK7LDxENpyzSzMJnMaf",
  7528. "instance": null,
  7529. "targetOverrides": null,
  7530. "nestedPrefabInstanceRoots": null
  7531. },
  7532. {
  7533. "__type__": "cc.Node",
  7534. "_name": "vss_gun",
  7535. "_objFlags": 0,
  7536. "__editorExtras__": {},
  7537. "_parent": {
  7538. "__id__": 245
  7539. },
  7540. "_children": [
  7541. {
  7542. "__id__": 324
  7543. }
  7544. ],
  7545. "_active": false,
  7546. "_components": [
  7547. {
  7548. "__id__": 329
  7549. },
  7550. {
  7551. "__id__": 331
  7552. }
  7553. ],
  7554. "_prefab": {
  7555. "__id__": 333
  7556. },
  7557. "_lpos": {
  7558. "__type__": "cc.Vec3",
  7559. "x": -7.001,
  7560. "y": 279.6,
  7561. "z": -864.2
  7562. },
  7563. "_lrot": {
  7564. "__type__": "cc.Quat",
  7565. "x": -0.6992518522220864,
  7566. "y": -0.006590491435464964,
  7567. "z": -0.006737159138611,
  7568. "w": 0.7148132786073308
  7569. },
  7570. "_lscale": {
  7571. "__type__": "cc.Vec3",
  7572. "x": 100,
  7573. "y": 100,
  7574. "z": 100
  7575. },
  7576. "_mobility": 0,
  7577. "_layer": 0,
  7578. "_euler": {
  7579. "__type__": "cc.Vec3",
  7580. "x": -88.7392239413358,
  7581. "y": -1.0797390000000002,
  7582. "z": -0.023766000000000044
  7583. },
  7584. "_id": ""
  7585. },
  7586. {
  7587. "__type__": "cc.Node",
  7588. "_name": "vss",
  7589. "_objFlags": 0,
  7590. "__editorExtras__": {},
  7591. "_parent": {
  7592. "__id__": 323
  7593. },
  7594. "_children": [],
  7595. "_active": true,
  7596. "_components": [
  7597. {
  7598. "__id__": 325
  7599. }
  7600. ],
  7601. "_prefab": {
  7602. "__id__": 328
  7603. },
  7604. "_lpos": {
  7605. "__type__": "cc.Vec3",
  7606. "x": 0,
  7607. "y": -0.044,
  7608. "z": -0.127
  7609. },
  7610. "_lrot": {
  7611. "__type__": "cc.Quat",
  7612. "x": 0,
  7613. "y": 0,
  7614. "z": -0.7071067811865475,
  7615. "w": 0.7071067811865476
  7616. },
  7617. "_lscale": {
  7618. "__type__": "cc.Vec3",
  7619. "x": 1400,
  7620. "y": 1400,
  7621. "z": 1400
  7622. },
  7623. "_mobility": 0,
  7624. "_layer": 0,
  7625. "_euler": {
  7626. "__type__": "cc.Vec3",
  7627. "x": 0,
  7628. "y": 0,
  7629. "z": -90
  7630. },
  7631. "_id": ""
  7632. },
  7633. {
  7634. "__type__": "cc.MeshRenderer",
  7635. "_name": "",
  7636. "_objFlags": 0,
  7637. "__editorExtras__": {},
  7638. "node": {
  7639. "__id__": 324
  7640. },
  7641. "_enabled": true,
  7642. "__prefab": {
  7643. "__id__": 326
  7644. },
  7645. "_materials": [
  7646. {
  7647. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@55094",
  7648. "__expectedType__": "cc.Material"
  7649. }
  7650. ],
  7651. "_visFlags": 0,
  7652. "bakeSettings": {
  7653. "__id__": 327
  7654. },
  7655. "_mesh": {
  7656. "__uuid__": "3df4dcc3-5322-4c54-bb1b-7a936beb2cd4@f9389",
  7657. "__expectedType__": "cc.Mesh"
  7658. },
  7659. "_shadowCastingMode": 1,
  7660. "_shadowReceivingMode": 1,
  7661. "_shadowBias": 0,
  7662. "_shadowNormalBias": 0,
  7663. "_reflectionProbeId": -1,
  7664. "_reflectionProbeBlendId": -1,
  7665. "_reflectionProbeBlendWeight": 0,
  7666. "_enabledGlobalStandardSkinObject": false,
  7667. "_enableMorph": true,
  7668. "_id": ""
  7669. },
  7670. {
  7671. "__type__": "cc.CompPrefabInfo",
  7672. "fileId": "09zs+p7M9Pw6pXTUlOM/H5"
  7673. },
  7674. {
  7675. "__type__": "cc.ModelBakeSettings",
  7676. "texture": null,
  7677. "uvParam": {
  7678. "__type__": "cc.Vec4",
  7679. "x": 0,
  7680. "y": 0,
  7681. "z": 0,
  7682. "w": 0
  7683. },
  7684. "_bakeable": false,
  7685. "_castShadow": true,
  7686. "_receiveShadow": true,
  7687. "_recieveShadow": true,
  7688. "_lightmapSize": 64,
  7689. "_useLightProbe": false,
  7690. "_bakeToLightProbe": true,
  7691. "_reflectionProbeType": 0,
  7692. "_bakeToReflectionProbe": true
  7693. },
  7694. {
  7695. "__type__": "cc.PrefabInfo",
  7696. "root": {
  7697. "__id__": 1
  7698. },
  7699. "asset": {
  7700. "__id__": 0
  7701. },
  7702. "fileId": "d3Ja3zCxJIKI9b+4IUy83X",
  7703. "instance": null,
  7704. "targetOverrides": null,
  7705. "nestedPrefabInstanceRoots": null
  7706. },
  7707. {
  7708. "__type__": "70003AYwQ5EK6B4bgpBRvvR",
  7709. "_name": "",
  7710. "_objFlags": 0,
  7711. "__editorExtras__": {},
  7712. "node": {
  7713. "__id__": 323
  7714. },
  7715. "_enabled": true,
  7716. "__prefab": {
  7717. "__id__": 330
  7718. },
  7719. "speed": 45,
  7720. "touchDeceleration": 0.95,
  7721. "tiltAngle": 100,
  7722. "_id": ""
  7723. },
  7724. {
  7725. "__type__": "cc.CompPrefabInfo",
  7726. "fileId": "90mZ26LO1N8YUBR6jtrBtj"
  7727. },
  7728. {
  7729. "__type__": "cc.BoxCollider",
  7730. "_name": "",
  7731. "_objFlags": 0,
  7732. "__editorExtras__": {},
  7733. "node": {
  7734. "__id__": 323
  7735. },
  7736. "_enabled": true,
  7737. "__prefab": {
  7738. "__id__": 332
  7739. },
  7740. "_material": null,
  7741. "_isTrigger": false,
  7742. "_center": {
  7743. "__type__": "cc.Vec3",
  7744. "x": 0,
  7745. "y": 0,
  7746. "z": 0
  7747. },
  7748. "_size": {
  7749. "__type__": "cc.Vec3",
  7750. "x": 3.376,
  7751. "y": 1,
  7752. "z": 1
  7753. },
  7754. "_id": ""
  7755. },
  7756. {
  7757. "__type__": "cc.CompPrefabInfo",
  7758. "fileId": "a1d8fTaLNEQJIBYFf+DScl"
  7759. },
  7760. {
  7761. "__type__": "cc.PrefabInfo",
  7762. "root": {
  7763. "__id__": 1
  7764. },
  7765. "asset": {
  7766. "__id__": 0
  7767. },
  7768. "fileId": "23K4hYULBKnb7kdW1FHWqF",
  7769. "instance": null,
  7770. "targetOverrides": null,
  7771. "nestedPrefabInstanceRoots": null
  7772. },
  7773. {
  7774. "__type__": "cc.Camera",
  7775. "_name": "Camera<CameraComponent>",
  7776. "_objFlags": 0,
  7777. "__editorExtras__": {},
  7778. "node": {
  7779. "__id__": 245
  7780. },
  7781. "_enabled": true,
  7782. "__prefab": {
  7783. "__id__": 335
  7784. },
  7785. "_projection": 1,
  7786. "_priority": 200,
  7787. "_fov": 71.429,
  7788. "_fovAxis": 0,
  7789. "_orthoHeight": 10,
  7790. "_near": 1,
  7791. "_far": 1200,
  7792. "_color": {
  7793. "__type__": "cc.Color",
  7794. "r": 255,
  7795. "g": 255,
  7796. "b": 255,
  7797. "a": 0
  7798. },
  7799. "_depth": 1,
  7800. "_stencil": 0,
  7801. "_clearFlags": 6,
  7802. "_rect": {
  7803. "__type__": "cc.Rect",
  7804. "x": 0,
  7805. "y": 0,
  7806. "width": 1,
  7807. "height": 1
  7808. },
  7809. "_aperture": 19,
  7810. "_shutter": 7,
  7811. "_iso": 0,
  7812. "_screenScale": 1,
  7813. "_visibility": 1073741824,
  7814. "_targetTexture": null,
  7815. "_postProcess": null,
  7816. "_usePostProcess": false,
  7817. "_cameraType": -1,
  7818. "_trackingType": 0,
  7819. "_id": ""
  7820. },
  7821. {
  7822. "__type__": "cc.CompPrefabInfo",
  7823. "fileId": "bfDNp9gIBIfYaIIziq3hMK"
  7824. },
  7825. {
  7826. "__type__": "cc.UITransform",
  7827. "_name": "",
  7828. "_objFlags": 0,
  7829. "__editorExtras__": {},
  7830. "node": {
  7831. "__id__": 245
  7832. },
  7833. "_enabled": true,
  7834. "__prefab": {
  7835. "__id__": 337
  7836. },
  7837. "_contentSize": {
  7838. "__type__": "cc.Size",
  7839. "width": 100,
  7840. "height": 100.00000000000028
  7841. },
  7842. "_anchorPoint": {
  7843. "__type__": "cc.Vec2",
  7844. "x": 0.5,
  7845. "y": 0.5
  7846. },
  7847. "_id": ""
  7848. },
  7849. {
  7850. "__type__": "cc.CompPrefabInfo",
  7851. "fileId": "0dkU9p/yJCk4chARXRMwKS"
  7852. },
  7853. {
  7854. "__type__": "cc.Widget",
  7855. "_name": "",
  7856. "_objFlags": 0,
  7857. "__editorExtras__": {},
  7858. "node": {
  7859. "__id__": 245
  7860. },
  7861. "_enabled": true,
  7862. "__prefab": {
  7863. "__id__": 339
  7864. },
  7865. "_alignFlags": 45,
  7866. "_target": null,
  7867. "_left": 323.866,
  7868. "_right": 296.134,
  7869. "_top": 457.489,
  7870. "_bottom": 1042.511,
  7871. "_horizontalCenter": 0,
  7872. "_verticalCenter": 0,
  7873. "_isAbsLeft": true,
  7874. "_isAbsRight": true,
  7875. "_isAbsTop": true,
  7876. "_isAbsBottom": true,
  7877. "_isAbsHorizontalCenter": true,
  7878. "_isAbsVerticalCenter": true,
  7879. "_originalWidth": 100,
  7880. "_originalHeight": 100,
  7881. "_alignMode": 2,
  7882. "_lockFlags": 0,
  7883. "_id": ""
  7884. },
  7885. {
  7886. "__type__": "cc.CompPrefabInfo",
  7887. "fileId": "fcvY4pMFBKLY+YrqrDWv5t"
  7888. },
  7889. {
  7890. "__type__": "cc.PrefabInfo",
  7891. "root": {
  7892. "__id__": 1
  7893. },
  7894. "asset": {
  7895. "__id__": 0
  7896. },
  7897. "fileId": "69scb85gpAaJrsAwVYodiR",
  7898. "instance": null,
  7899. "targetOverrides": null,
  7900. "nestedPrefabInstanceRoots": null
  7901. },
  7902. {
  7903. "__type__": "cc.UITransform",
  7904. "_name": "",
  7905. "_objFlags": 0,
  7906. "__editorExtras__": {},
  7907. "node": {
  7908. "__id__": 1
  7909. },
  7910. "_enabled": true,
  7911. "__prefab": {
  7912. "__id__": 342
  7913. },
  7914. "_contentSize": {
  7915. "__type__": "cc.Size",
  7916. "width": 720,
  7917. "height": 1600.0000000000002
  7918. },
  7919. "_anchorPoint": {
  7920. "__type__": "cc.Vec2",
  7921. "x": 0.5,
  7922. "y": 0.5
  7923. },
  7924. "_id": ""
  7925. },
  7926. {
  7927. "__type__": "cc.CompPrefabInfo",
  7928. "fileId": "e5AHx618JExqSYZ7DOIWzS"
  7929. },
  7930. {
  7931. "__type__": "cc.Widget",
  7932. "_name": "",
  7933. "_objFlags": 0,
  7934. "__editorExtras__": {},
  7935. "node": {
  7936. "__id__": 1
  7937. },
  7938. "_enabled": true,
  7939. "__prefab": {
  7940. "__id__": 344
  7941. },
  7942. "_alignFlags": 45,
  7943. "_target": null,
  7944. "_left": 0,
  7945. "_right": 0,
  7946. "_top": 0,
  7947. "_bottom": 0,
  7948. "_horizontalCenter": 0,
  7949. "_verticalCenter": 0,
  7950. "_isAbsLeft": true,
  7951. "_isAbsRight": true,
  7952. "_isAbsTop": true,
  7953. "_isAbsBottom": true,
  7954. "_isAbsHorizontalCenter": true,
  7955. "_isAbsVerticalCenter": true,
  7956. "_originalWidth": 100,
  7957. "_originalHeight": 100,
  7958. "_alignMode": 1,
  7959. "_lockFlags": 0,
  7960. "_id": ""
  7961. },
  7962. {
  7963. "__type__": "cc.CompPrefabInfo",
  7964. "fileId": "a4dKtDcPlKuabzeHsQgEXK"
  7965. },
  7966. {
  7967. "__type__": "cc.BlockInputEvents",
  7968. "_name": "",
  7969. "_objFlags": 0,
  7970. "__editorExtras__": {},
  7971. "node": {
  7972. "__id__": 1
  7973. },
  7974. "_enabled": true,
  7975. "__prefab": {
  7976. "__id__": 346
  7977. },
  7978. "_id": ""
  7979. },
  7980. {
  7981. "__type__": "cc.CompPrefabInfo",
  7982. "fileId": "d6pMg+kS9KepKN2QffIpJR"
  7983. },
  7984. {
  7985. "__type__": "247c72EjOJKwrNfkJ+UppoA",
  7986. "_name": "",
  7987. "_objFlags": 0,
  7988. "__editorExtras__": {},
  7989. "node": {
  7990. "__id__": 1
  7991. },
  7992. "_enabled": true,
  7993. "__prefab": {
  7994. "__id__": 348
  7995. },
  7996. "_id": ""
  7997. },
  7998. {
  7999. "__type__": "cc.CompPrefabInfo",
  8000. "fileId": "6ddotbHzBMVYzutJH7B1gr"
  8001. },
  8002. {
  8003. "__type__": "cc.PrefabInfo",
  8004. "root": {
  8005. "__id__": 1
  8006. },
  8007. "asset": {
  8008. "__id__": 0
  8009. },
  8010. "fileId": "06MVkym15A64rDZlBAEthm",
  8011. "instance": null,
  8012. "targetOverrides": null
  8013. }
  8014. ]