PrepareUI.prefab 144 KB

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