PrepareUI.prefab 144 KB

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