PrepareUI.prefab 143 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233
  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__": 203
  48. },
  49. {
  50. "__id__": 255
  51. }
  52. ],
  53. "_active": true,
  54. "_components": [
  55. {
  56. "__id__": 263
  57. },
  58. {
  59. "__id__": 264
  60. },
  61. {
  62. "__id__": 265
  63. }
  64. ],
  65. "_prefab": {
  66. "__id__": 266
  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__": 159
  4313. },
  4314. {
  4315. "__id__": 172
  4316. },
  4317. {
  4318. "__id__": 186
  4319. }
  4320. ],
  4321. "_active": true,
  4322. "_components": [
  4323. {
  4324. "__id__": 200
  4325. },
  4326. {
  4327. "__id__": 201
  4328. }
  4329. ],
  4330. "_prefab": {
  4331. "__id__": 202
  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__": 150
  4374. }
  4375. ],
  4376. "_active": true,
  4377. "_components": [
  4378. {
  4379. "__id__": 154
  4380. },
  4381. {
  4382. "__id__": 155
  4383. },
  4384. {
  4385. "__id__": 156
  4386. }
  4387. ],
  4388. "_prefab": {
  4389. "__id__": 158
  4390. },
  4391. "_lpos": {
  4392. "__type__": "cc.Vec3",
  4393. "x": -314,
  4394. "y": -55.619,
  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. "_prefab": {
  4437. "__id__": 149
  4438. },
  4439. "_lpos": {
  4440. "__type__": "cc.Vec3",
  4441. "x": -1.7530000000000001,
  4442. "y": -41.539999999999964,
  4443. "z": 0
  4444. },
  4445. "_lrot": {
  4446. "__type__": "cc.Quat",
  4447. "x": 0,
  4448. "y": 0,
  4449. "z": 0,
  4450. "w": 1
  4451. },
  4452. "_lscale": {
  4453. "__type__": "cc.Vec3",
  4454. "x": 1,
  4455. "y": 1,
  4456. "z": 1
  4457. },
  4458. "_layer": 33554432,
  4459. "_euler": {
  4460. "__type__": "cc.Vec3",
  4461. "x": 0,
  4462. "y": 0,
  4463. "z": 0
  4464. },
  4465. "_id": ""
  4466. },
  4467. {
  4468. "__type__": "cc.UITransformComponent",
  4469. "_name": "",
  4470. "_objFlags": 0,
  4471. "node": {
  4472. "__id__": 146
  4473. },
  4474. "_enabled": true,
  4475. "_priority": 0,
  4476. "_contentSize": {
  4477. "__type__": "cc.Size",
  4478. "width": 88,
  4479. "height": 50.4
  4480. },
  4481. "_anchorPoint": {
  4482. "__type__": "cc.Vec2",
  4483. "x": 0.5,
  4484. "y": 0.5
  4485. },
  4486. "_id": ""
  4487. },
  4488. {
  4489. "__type__": "cc.LabelComponent",
  4490. "_name": "",
  4491. "_objFlags": 0,
  4492. "node": {
  4493. "__id__": 146
  4494. },
  4495. "_enabled": true,
  4496. "_srcBlendFactor": 2,
  4497. "_dstBlendFactor": 4,
  4498. "_color": {
  4499. "__type__": "cc.Color",
  4500. "r": 255,
  4501. "g": 255,
  4502. "b": 255,
  4503. "a": 255
  4504. },
  4505. "_sharedMaterial": null,
  4506. "_useOriginalSize": true,
  4507. "_string": "自动合成",
  4508. "_horizontalAlign": 1,
  4509. "_verticalAlign": 1,
  4510. "_actualFontSize": 22,
  4511. "_fontSize": 22,
  4512. "_fontFamily": "Arial",
  4513. "_lineHeight": 40,
  4514. "_overflow": 0,
  4515. "_enableWrapText": true,
  4516. "_font": null,
  4517. "_isSystemFontUsed": true,
  4518. "_isItalic": false,
  4519. "_isBold": false,
  4520. "_isUnderline": false,
  4521. "_cacheMode": 0,
  4522. "_id": ""
  4523. },
  4524. {
  4525. "__type__": "cc.PrefabInfo",
  4526. "root": {
  4527. "__id__": 1
  4528. },
  4529. "asset": {
  4530. "__id__": 0
  4531. },
  4532. "fileId": "91XJ0UAM1I5LHfsB3osT8x",
  4533. "sync": false,
  4534. "_synced": {
  4535. "default": false,
  4536. "serializable": false
  4537. }
  4538. },
  4539. {
  4540. "__type__": "cc.Node",
  4541. "_name": "ImgHongdian",
  4542. "_objFlags": 0,
  4543. "_parent": {
  4544. "__id__": 145
  4545. },
  4546. "_children": [],
  4547. "_active": true,
  4548. "_components": [
  4549. {
  4550. "__id__": 151
  4551. },
  4552. {
  4553. "__id__": 152
  4554. }
  4555. ],
  4556. "_prefab": {
  4557. "__id__": 153
  4558. },
  4559. "_lpos": {
  4560. "__type__": "cc.Vec3",
  4561. "x": 40,
  4562. "y": 40,
  4563. "z": 0
  4564. },
  4565. "_lrot": {
  4566. "__type__": "cc.Quat",
  4567. "x": 0,
  4568. "y": 0,
  4569. "z": 0,
  4570. "w": 1
  4571. },
  4572. "_lscale": {
  4573. "__type__": "cc.Vec3",
  4574. "x": 1,
  4575. "y": 1,
  4576. "z": 1
  4577. },
  4578. "_layer": 33554432,
  4579. "_euler": {
  4580. "__type__": "cc.Vec3",
  4581. "x": 0,
  4582. "y": 0,
  4583. "z": 0
  4584. },
  4585. "_id": ""
  4586. },
  4587. {
  4588. "__type__": "cc.UITransformComponent",
  4589. "_name": "",
  4590. "_objFlags": 0,
  4591. "node": {
  4592. "__id__": 150
  4593. },
  4594. "_enabled": true,
  4595. "_priority": 0,
  4596. "_contentSize": {
  4597. "__type__": "cc.Size",
  4598. "width": 22,
  4599. "height": 22
  4600. },
  4601. "_anchorPoint": {
  4602. "__type__": "cc.Vec2",
  4603. "x": 0.5,
  4604. "y": 0.5
  4605. },
  4606. "_id": ""
  4607. },
  4608. {
  4609. "__type__": "cc.SpriteComponent",
  4610. "_name": "",
  4611. "_objFlags": 0,
  4612. "node": {
  4613. "__id__": 150
  4614. },
  4615. "_enabled": true,
  4616. "_srcBlendFactor": 2,
  4617. "_dstBlendFactor": 4,
  4618. "_color": {
  4619. "__type__": "cc.Color",
  4620. "r": 255,
  4621. "g": 255,
  4622. "b": 255,
  4623. "a": 255
  4624. },
  4625. "_sharedMaterial": null,
  4626. "_spriteFrame": {
  4627. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  4628. },
  4629. "_type": 0,
  4630. "_fillType": 0,
  4631. "_sizeMode": 1,
  4632. "_fillCenter": {
  4633. "__type__": "cc.Vec2",
  4634. "x": 0,
  4635. "y": 0
  4636. },
  4637. "_fillStart": 0,
  4638. "_fillRange": 0,
  4639. "_isTrimmedMode": true,
  4640. "_useGrayscale": false,
  4641. "_atlas": null,
  4642. "_id": ""
  4643. },
  4644. {
  4645. "__type__": "cc.PrefabInfo",
  4646. "root": {
  4647. "__id__": 1
  4648. },
  4649. "asset": {
  4650. "__id__": 0
  4651. },
  4652. "fileId": "56+cHcWcVK+JAoX09r1sWm",
  4653. "sync": false,
  4654. "_synced": {
  4655. "default": false,
  4656. "serializable": false
  4657. }
  4658. },
  4659. {
  4660. "__type__": "cc.UITransformComponent",
  4661. "_name": "",
  4662. "_objFlags": 0,
  4663. "node": {
  4664. "__id__": 145
  4665. },
  4666. "_enabled": true,
  4667. "_priority": 0,
  4668. "_contentSize": {
  4669. "__type__": "cc.Size",
  4670. "width": 77,
  4671. "height": 81
  4672. },
  4673. "_anchorPoint": {
  4674. "__type__": "cc.Vec2",
  4675. "x": 0.5,
  4676. "y": 0.5
  4677. },
  4678. "_id": ""
  4679. },
  4680. {
  4681. "__type__": "cc.SpriteComponent",
  4682. "_name": "",
  4683. "_objFlags": 0,
  4684. "node": {
  4685. "__id__": 145
  4686. },
  4687. "_enabled": true,
  4688. "_srcBlendFactor": 2,
  4689. "_dstBlendFactor": 4,
  4690. "_color": {
  4691. "__type__": "cc.Color",
  4692. "r": 255,
  4693. "g": 255,
  4694. "b": 255,
  4695. "a": 255
  4696. },
  4697. "_sharedMaterial": null,
  4698. "_spriteFrame": {
  4699. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4700. },
  4701. "_type": 1,
  4702. "_fillType": 0,
  4703. "_sizeMode": 1,
  4704. "_fillCenter": {
  4705. "__type__": "cc.Vec2",
  4706. "x": 0,
  4707. "y": 0
  4708. },
  4709. "_fillStart": 0,
  4710. "_fillRange": 0,
  4711. "_isTrimmedMode": true,
  4712. "_useGrayscale": false,
  4713. "_atlas": null,
  4714. "_id": ""
  4715. },
  4716. {
  4717. "__type__": "cc.ButtonComponent",
  4718. "_name": "",
  4719. "_objFlags": 0,
  4720. "node": {
  4721. "__id__": 145
  4722. },
  4723. "_enabled": true,
  4724. "clickEvents": [
  4725. {
  4726. "__id__": 157
  4727. }
  4728. ],
  4729. "_interactable": true,
  4730. "_transition": 2,
  4731. "_normalColor": {
  4732. "__type__": "cc.Color",
  4733. "r": 214,
  4734. "g": 214,
  4735. "b": 214,
  4736. "a": 255
  4737. },
  4738. "_hoverColor": {
  4739. "__type__": "cc.Color",
  4740. "r": 211,
  4741. "g": 211,
  4742. "b": 211,
  4743. "a": 255
  4744. },
  4745. "_pressColor": {
  4746. "__type__": "cc.Color",
  4747. "r": 255,
  4748. "g": 255,
  4749. "b": 255,
  4750. "a": 255
  4751. },
  4752. "_disabledColor": {
  4753. "__type__": "cc.Color",
  4754. "r": 124,
  4755. "g": 124,
  4756. "b": 124,
  4757. "a": 255
  4758. },
  4759. "_normalSprite": {
  4760. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4761. },
  4762. "_hoverSprite": {
  4763. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4764. },
  4765. "_pressedSprite": {
  4766. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4767. },
  4768. "_disabledSprite": {
  4769. "__uuid__": "de21bfae-fb9d-4f9b-920c-d835787460c3@f9941"
  4770. },
  4771. "_duration": 0.1,
  4772. "_zoomScale": 1.2,
  4773. "_target": {
  4774. "__id__": 145
  4775. },
  4776. "_id": ""
  4777. },
  4778. {
  4779. "__type__": "cc.ClickEvent",
  4780. "target": {
  4781. "__id__": 1
  4782. },
  4783. "component": "",
  4784. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  4785. "handler": "AutoSynthesisButtonClickHandler",
  4786. "customEventData": ""
  4787. },
  4788. {
  4789. "__type__": "cc.PrefabInfo",
  4790. "root": {
  4791. "__id__": 1
  4792. },
  4793. "asset": {
  4794. "__id__": 0
  4795. },
  4796. "fileId": "46BFOGQTNK44YForSJlbhY",
  4797. "sync": false,
  4798. "_synced": {
  4799. "default": false,
  4800. "serializable": false
  4801. }
  4802. },
  4803. {
  4804. "__type__": "cc.Node",
  4805. "_name": "ButtonEnter2",
  4806. "_objFlags": 0,
  4807. "_parent": {
  4808. "__id__": 144
  4809. },
  4810. "_children": [
  4811. {
  4812. "__id__": 160
  4813. },
  4814. {
  4815. "__id__": 164
  4816. }
  4817. ],
  4818. "_active": false,
  4819. "_components": [
  4820. {
  4821. "__id__": 168
  4822. },
  4823. {
  4824. "__id__": 169
  4825. },
  4826. {
  4827. "__id__": 170
  4828. }
  4829. ],
  4830. "_prefab": {
  4831. "__id__": 171
  4832. },
  4833. "_lpos": {
  4834. "__type__": "cc.Vec3",
  4835. "x": -314,
  4836. "y": -173.619,
  4837. "z": 0
  4838. },
  4839. "_lrot": {
  4840. "__type__": "cc.Quat",
  4841. "x": 0,
  4842. "y": 0,
  4843. "z": 0,
  4844. "w": 1
  4845. },
  4846. "_lscale": {
  4847. "__type__": "cc.Vec3",
  4848. "x": 1,
  4849. "y": 1,
  4850. "z": 1
  4851. },
  4852. "_layer": 33554432,
  4853. "_euler": {
  4854. "__type__": "cc.Vec3",
  4855. "x": 0,
  4856. "y": 0,
  4857. "z": 0
  4858. },
  4859. "_id": ""
  4860. },
  4861. {
  4862. "__type__": "cc.Node",
  4863. "_name": "Label",
  4864. "_objFlags": 0,
  4865. "_parent": {
  4866. "__id__": 159
  4867. },
  4868. "_children": [],
  4869. "_active": true,
  4870. "_components": [
  4871. {
  4872. "__id__": 161
  4873. },
  4874. {
  4875. "__id__": 162
  4876. }
  4877. ],
  4878. "_prefab": {
  4879. "__id__": 163
  4880. },
  4881. "_lpos": {
  4882. "__type__": "cc.Vec3",
  4883. "x": -1.7530000000000001,
  4884. "y": -41.539999999999964,
  4885. "z": 0
  4886. },
  4887. "_lrot": {
  4888. "__type__": "cc.Quat",
  4889. "x": 0,
  4890. "y": 0,
  4891. "z": 0,
  4892. "w": 1
  4893. },
  4894. "_lscale": {
  4895. "__type__": "cc.Vec3",
  4896. "x": 1,
  4897. "y": 1,
  4898. "z": 1
  4899. },
  4900. "_layer": 33554432,
  4901. "_euler": {
  4902. "__type__": "cc.Vec3",
  4903. "x": 0,
  4904. "y": 0,
  4905. "z": 0
  4906. },
  4907. "_id": ""
  4908. },
  4909. {
  4910. "__type__": "cc.UITransformComponent",
  4911. "_name": "",
  4912. "_objFlags": 0,
  4913. "node": {
  4914. "__id__": 160
  4915. },
  4916. "_enabled": true,
  4917. "_priority": 0,
  4918. "_contentSize": {
  4919. "__type__": "cc.Size",
  4920. "width": 44,
  4921. "height": 50.4
  4922. },
  4923. "_anchorPoint": {
  4924. "__type__": "cc.Vec2",
  4925. "x": 0.5,
  4926. "y": 0.5
  4927. },
  4928. "_id": ""
  4929. },
  4930. {
  4931. "__type__": "cc.LabelComponent",
  4932. "_name": "",
  4933. "_objFlags": 0,
  4934. "node": {
  4935. "__id__": 160
  4936. },
  4937. "_enabled": true,
  4938. "_srcBlendFactor": 2,
  4939. "_dstBlendFactor": 4,
  4940. "_color": {
  4941. "__type__": "cc.Color",
  4942. "r": 255,
  4943. "g": 255,
  4944. "b": 255,
  4945. "a": 255
  4946. },
  4947. "_sharedMaterial": null,
  4948. "_useOriginalSize": true,
  4949. "_string": "签到",
  4950. "_horizontalAlign": 1,
  4951. "_verticalAlign": 1,
  4952. "_actualFontSize": 22,
  4953. "_fontSize": 22,
  4954. "_fontFamily": "Arial",
  4955. "_lineHeight": 40,
  4956. "_overflow": 0,
  4957. "_enableWrapText": true,
  4958. "_font": null,
  4959. "_isSystemFontUsed": true,
  4960. "_isItalic": false,
  4961. "_isBold": false,
  4962. "_isUnderline": false,
  4963. "_cacheMode": 0,
  4964. "_id": ""
  4965. },
  4966. {
  4967. "__type__": "cc.PrefabInfo",
  4968. "root": {
  4969. "__id__": 1
  4970. },
  4971. "asset": {
  4972. "__id__": 0
  4973. },
  4974. "fileId": "1eqquQ6wtMEImnhJxsAfpg",
  4975. "sync": false,
  4976. "_synced": {
  4977. "default": false,
  4978. "serializable": false
  4979. }
  4980. },
  4981. {
  4982. "__type__": "cc.Node",
  4983. "_name": "ImgHongdian",
  4984. "_objFlags": 0,
  4985. "_parent": {
  4986. "__id__": 159
  4987. },
  4988. "_children": [],
  4989. "_active": true,
  4990. "_components": [
  4991. {
  4992. "__id__": 165
  4993. },
  4994. {
  4995. "__id__": 166
  4996. }
  4997. ],
  4998. "_prefab": {
  4999. "__id__": 167
  5000. },
  5001. "_lpos": {
  5002. "__type__": "cc.Vec3",
  5003. "x": 40,
  5004. "y": 40,
  5005. "z": 0
  5006. },
  5007. "_lrot": {
  5008. "__type__": "cc.Quat",
  5009. "x": 0,
  5010. "y": 0,
  5011. "z": 0,
  5012. "w": 1
  5013. },
  5014. "_lscale": {
  5015. "__type__": "cc.Vec3",
  5016. "x": 1,
  5017. "y": 1,
  5018. "z": 1
  5019. },
  5020. "_layer": 33554432,
  5021. "_euler": {
  5022. "__type__": "cc.Vec3",
  5023. "x": 0,
  5024. "y": 0,
  5025. "z": 0
  5026. },
  5027. "_id": ""
  5028. },
  5029. {
  5030. "__type__": "cc.UITransformComponent",
  5031. "_name": "",
  5032. "_objFlags": 0,
  5033. "node": {
  5034. "__id__": 164
  5035. },
  5036. "_enabled": true,
  5037. "_priority": 0,
  5038. "_contentSize": {
  5039. "__type__": "cc.Size",
  5040. "width": 22,
  5041. "height": 22
  5042. },
  5043. "_anchorPoint": {
  5044. "__type__": "cc.Vec2",
  5045. "x": 0.5,
  5046. "y": 0.5
  5047. },
  5048. "_id": ""
  5049. },
  5050. {
  5051. "__type__": "cc.SpriteComponent",
  5052. "_name": "",
  5053. "_objFlags": 0,
  5054. "node": {
  5055. "__id__": 164
  5056. },
  5057. "_enabled": true,
  5058. "_srcBlendFactor": 2,
  5059. "_dstBlendFactor": 4,
  5060. "_color": {
  5061. "__type__": "cc.Color",
  5062. "r": 255,
  5063. "g": 255,
  5064. "b": 255,
  5065. "a": 255
  5066. },
  5067. "_sharedMaterial": null,
  5068. "_spriteFrame": {
  5069. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5070. },
  5071. "_type": 0,
  5072. "_fillType": 0,
  5073. "_sizeMode": 1,
  5074. "_fillCenter": {
  5075. "__type__": "cc.Vec2",
  5076. "x": 0,
  5077. "y": 0
  5078. },
  5079. "_fillStart": 0,
  5080. "_fillRange": 0,
  5081. "_isTrimmedMode": true,
  5082. "_useGrayscale": false,
  5083. "_atlas": null,
  5084. "_id": ""
  5085. },
  5086. {
  5087. "__type__": "cc.PrefabInfo",
  5088. "root": {
  5089. "__id__": 1
  5090. },
  5091. "asset": {
  5092. "__id__": 0
  5093. },
  5094. "fileId": "c3r3ePKwxJ8ZE5w62z0iOz",
  5095. "sync": false,
  5096. "_synced": {
  5097. "default": false,
  5098. "serializable": false
  5099. }
  5100. },
  5101. {
  5102. "__type__": "cc.UITransformComponent",
  5103. "_name": "",
  5104. "_objFlags": 0,
  5105. "node": {
  5106. "__id__": 159
  5107. },
  5108. "_enabled": true,
  5109. "_priority": 0,
  5110. "_contentSize": {
  5111. "__type__": "cc.Size",
  5112. "width": 76,
  5113. "height": 82
  5114. },
  5115. "_anchorPoint": {
  5116. "__type__": "cc.Vec2",
  5117. "x": 0.5,
  5118. "y": 0.5
  5119. },
  5120. "_id": ""
  5121. },
  5122. {
  5123. "__type__": "cc.SpriteComponent",
  5124. "_name": "",
  5125. "_objFlags": 0,
  5126. "node": {
  5127. "__id__": 159
  5128. },
  5129. "_enabled": true,
  5130. "_srcBlendFactor": 2,
  5131. "_dstBlendFactor": 4,
  5132. "_color": {
  5133. "__type__": "cc.Color",
  5134. "r": 255,
  5135. "g": 255,
  5136. "b": 255,
  5137. "a": 255
  5138. },
  5139. "_sharedMaterial": null,
  5140. "_spriteFrame": {
  5141. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5142. },
  5143. "_type": 1,
  5144. "_fillType": 0,
  5145. "_sizeMode": 1,
  5146. "_fillCenter": {
  5147. "__type__": "cc.Vec2",
  5148. "x": 0,
  5149. "y": 0
  5150. },
  5151. "_fillStart": 0,
  5152. "_fillRange": 0,
  5153. "_isTrimmedMode": true,
  5154. "_useGrayscale": false,
  5155. "_atlas": null,
  5156. "_id": ""
  5157. },
  5158. {
  5159. "__type__": "cc.ButtonComponent",
  5160. "_name": "",
  5161. "_objFlags": 0,
  5162. "node": {
  5163. "__id__": 159
  5164. },
  5165. "_enabled": true,
  5166. "clickEvents": [],
  5167. "_interactable": true,
  5168. "_transition": 2,
  5169. "_normalColor": {
  5170. "__type__": "cc.Color",
  5171. "r": 214,
  5172. "g": 214,
  5173. "b": 214,
  5174. "a": 255
  5175. },
  5176. "_hoverColor": {
  5177. "__type__": "cc.Color",
  5178. "r": 211,
  5179. "g": 211,
  5180. "b": 211,
  5181. "a": 255
  5182. },
  5183. "_pressColor": {
  5184. "__type__": "cc.Color",
  5185. "r": 255,
  5186. "g": 255,
  5187. "b": 255,
  5188. "a": 255
  5189. },
  5190. "_disabledColor": {
  5191. "__type__": "cc.Color",
  5192. "r": 124,
  5193. "g": 124,
  5194. "b": 124,
  5195. "a": 255
  5196. },
  5197. "_normalSprite": {
  5198. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5199. },
  5200. "_hoverSprite": {
  5201. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5202. },
  5203. "_pressedSprite": {
  5204. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5205. },
  5206. "_disabledSprite": {
  5207. "__uuid__": "f2667a30-03f5-4bfe-afaf-5ae0c9082122@f9941"
  5208. },
  5209. "_duration": 0.1,
  5210. "_zoomScale": 1.2,
  5211. "_target": {
  5212. "__id__": 159
  5213. },
  5214. "_id": ""
  5215. },
  5216. {
  5217. "__type__": "cc.PrefabInfo",
  5218. "root": {
  5219. "__id__": 1
  5220. },
  5221. "asset": {
  5222. "__id__": 0
  5223. },
  5224. "fileId": "acOI8drglP4K725jPKXq+f",
  5225. "sync": false,
  5226. "_synced": {
  5227. "default": false,
  5228. "serializable": false
  5229. }
  5230. },
  5231. {
  5232. "__type__": "cc.Node",
  5233. "_name": "ButtonEnter3",
  5234. "_objFlags": 0,
  5235. "_parent": {
  5236. "__id__": 144
  5237. },
  5238. "_children": [
  5239. {
  5240. "__id__": 173
  5241. },
  5242. {
  5243. "__id__": 177
  5244. }
  5245. ],
  5246. "_active": true,
  5247. "_components": [
  5248. {
  5249. "__id__": 181
  5250. },
  5251. {
  5252. "__id__": 182
  5253. },
  5254. {
  5255. "__id__": 183
  5256. }
  5257. ],
  5258. "_prefab": {
  5259. "__id__": 185
  5260. },
  5261. "_lpos": {
  5262. "__type__": "cc.Vec3",
  5263. "x": -314,
  5264. "y": -285.619,
  5265. "z": 0
  5266. },
  5267. "_lrot": {
  5268. "__type__": "cc.Quat",
  5269. "x": 0,
  5270. "y": 0,
  5271. "z": 0,
  5272. "w": 1
  5273. },
  5274. "_lscale": {
  5275. "__type__": "cc.Vec3",
  5276. "x": 1,
  5277. "y": 1,
  5278. "z": 1
  5279. },
  5280. "_layer": 33554432,
  5281. "_euler": {
  5282. "__type__": "cc.Vec3",
  5283. "x": 0,
  5284. "y": 0,
  5285. "z": 0
  5286. },
  5287. "_id": ""
  5288. },
  5289. {
  5290. "__type__": "cc.Node",
  5291. "_name": "Label",
  5292. "_objFlags": 0,
  5293. "_parent": {
  5294. "__id__": 172
  5295. },
  5296. "_children": [],
  5297. "_active": true,
  5298. "_components": [
  5299. {
  5300. "__id__": 174
  5301. },
  5302. {
  5303. "__id__": 175
  5304. }
  5305. ],
  5306. "_prefab": {
  5307. "__id__": 176
  5308. },
  5309. "_lpos": {
  5310. "__type__": "cc.Vec3",
  5311. "x": -1.7530000000000001,
  5312. "y": -41.539999999999964,
  5313. "z": 0
  5314. },
  5315. "_lrot": {
  5316. "__type__": "cc.Quat",
  5317. "x": 0,
  5318. "y": 0,
  5319. "z": 0,
  5320. "w": 1
  5321. },
  5322. "_lscale": {
  5323. "__type__": "cc.Vec3",
  5324. "x": 1,
  5325. "y": 1,
  5326. "z": 1
  5327. },
  5328. "_layer": 33554432,
  5329. "_euler": {
  5330. "__type__": "cc.Vec3",
  5331. "x": 0,
  5332. "y": 0,
  5333. "z": 0
  5334. },
  5335. "_id": ""
  5336. },
  5337. {
  5338. "__type__": "cc.UITransformComponent",
  5339. "_name": "",
  5340. "_objFlags": 0,
  5341. "node": {
  5342. "__id__": 173
  5343. },
  5344. "_enabled": true,
  5345. "_priority": 0,
  5346. "_contentSize": {
  5347. "__type__": "cc.Size",
  5348. "width": 88,
  5349. "height": 50.4
  5350. },
  5351. "_anchorPoint": {
  5352. "__type__": "cc.Vec2",
  5353. "x": 0.5,
  5354. "y": 0.5
  5355. },
  5356. "_id": ""
  5357. },
  5358. {
  5359. "__type__": "cc.LabelComponent",
  5360. "_name": "",
  5361. "_objFlags": 0,
  5362. "node": {
  5363. "__id__": 173
  5364. },
  5365. "_enabled": true,
  5366. "_srcBlendFactor": 2,
  5367. "_dstBlendFactor": 4,
  5368. "_color": {
  5369. "__type__": "cc.Color",
  5370. "r": 255,
  5371. "g": 255,
  5372. "b": 255,
  5373. "a": 255
  5374. },
  5375. "_sharedMaterial": null,
  5376. "_useOriginalSize": true,
  5377. "_string": "免费金币",
  5378. "_horizontalAlign": 1,
  5379. "_verticalAlign": 1,
  5380. "_actualFontSize": 22,
  5381. "_fontSize": 22,
  5382. "_fontFamily": "Arial",
  5383. "_lineHeight": 40,
  5384. "_overflow": 0,
  5385. "_enableWrapText": true,
  5386. "_font": null,
  5387. "_isSystemFontUsed": true,
  5388. "_isItalic": false,
  5389. "_isBold": false,
  5390. "_isUnderline": false,
  5391. "_cacheMode": 0,
  5392. "_id": ""
  5393. },
  5394. {
  5395. "__type__": "cc.PrefabInfo",
  5396. "root": {
  5397. "__id__": 1
  5398. },
  5399. "asset": {
  5400. "__id__": 0
  5401. },
  5402. "fileId": "3bQVF7bbRCTLOY26i/7Uwh",
  5403. "sync": false,
  5404. "_synced": {
  5405. "default": false,
  5406. "serializable": false
  5407. }
  5408. },
  5409. {
  5410. "__type__": "cc.Node",
  5411. "_name": "ImgHongdian",
  5412. "_objFlags": 0,
  5413. "_parent": {
  5414. "__id__": 172
  5415. },
  5416. "_children": [],
  5417. "_active": true,
  5418. "_components": [
  5419. {
  5420. "__id__": 178
  5421. },
  5422. {
  5423. "__id__": 179
  5424. }
  5425. ],
  5426. "_prefab": {
  5427. "__id__": 180
  5428. },
  5429. "_lpos": {
  5430. "__type__": "cc.Vec3",
  5431. "x": 40,
  5432. "y": 40,
  5433. "z": 0
  5434. },
  5435. "_lrot": {
  5436. "__type__": "cc.Quat",
  5437. "x": 0,
  5438. "y": 0,
  5439. "z": 0,
  5440. "w": 1
  5441. },
  5442. "_lscale": {
  5443. "__type__": "cc.Vec3",
  5444. "x": 1,
  5445. "y": 1,
  5446. "z": 1
  5447. },
  5448. "_layer": 33554432,
  5449. "_euler": {
  5450. "__type__": "cc.Vec3",
  5451. "x": 0,
  5452. "y": 0,
  5453. "z": 0
  5454. },
  5455. "_id": ""
  5456. },
  5457. {
  5458. "__type__": "cc.UITransformComponent",
  5459. "_name": "",
  5460. "_objFlags": 0,
  5461. "node": {
  5462. "__id__": 177
  5463. },
  5464. "_enabled": true,
  5465. "_priority": 0,
  5466. "_contentSize": {
  5467. "__type__": "cc.Size",
  5468. "width": 22,
  5469. "height": 22
  5470. },
  5471. "_anchorPoint": {
  5472. "__type__": "cc.Vec2",
  5473. "x": 0.5,
  5474. "y": 0.5
  5475. },
  5476. "_id": ""
  5477. },
  5478. {
  5479. "__type__": "cc.SpriteComponent",
  5480. "_name": "",
  5481. "_objFlags": 0,
  5482. "node": {
  5483. "__id__": 177
  5484. },
  5485. "_enabled": true,
  5486. "_srcBlendFactor": 2,
  5487. "_dstBlendFactor": 4,
  5488. "_color": {
  5489. "__type__": "cc.Color",
  5490. "r": 255,
  5491. "g": 255,
  5492. "b": 255,
  5493. "a": 255
  5494. },
  5495. "_sharedMaterial": null,
  5496. "_spriteFrame": {
  5497. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5498. },
  5499. "_type": 0,
  5500. "_fillType": 0,
  5501. "_sizeMode": 1,
  5502. "_fillCenter": {
  5503. "__type__": "cc.Vec2",
  5504. "x": 0,
  5505. "y": 0
  5506. },
  5507. "_fillStart": 0,
  5508. "_fillRange": 0,
  5509. "_isTrimmedMode": true,
  5510. "_useGrayscale": false,
  5511. "_atlas": null,
  5512. "_id": ""
  5513. },
  5514. {
  5515. "__type__": "cc.PrefabInfo",
  5516. "root": {
  5517. "__id__": 1
  5518. },
  5519. "asset": {
  5520. "__id__": 0
  5521. },
  5522. "fileId": "a4UCNHz1hBaYUohBwan8Dv",
  5523. "sync": false,
  5524. "_synced": {
  5525. "default": false,
  5526. "serializable": false
  5527. }
  5528. },
  5529. {
  5530. "__type__": "cc.UITransformComponent",
  5531. "_name": "",
  5532. "_objFlags": 0,
  5533. "node": {
  5534. "__id__": 172
  5535. },
  5536. "_enabled": true,
  5537. "_priority": 0,
  5538. "_contentSize": {
  5539. "__type__": "cc.Size",
  5540. "width": 77,
  5541. "height": 63
  5542. },
  5543. "_anchorPoint": {
  5544. "__type__": "cc.Vec2",
  5545. "x": 0.5,
  5546. "y": 0.5
  5547. },
  5548. "_id": ""
  5549. },
  5550. {
  5551. "__type__": "cc.SpriteComponent",
  5552. "_name": "",
  5553. "_objFlags": 0,
  5554. "node": {
  5555. "__id__": 172
  5556. },
  5557. "_enabled": true,
  5558. "_srcBlendFactor": 2,
  5559. "_dstBlendFactor": 4,
  5560. "_color": {
  5561. "__type__": "cc.Color",
  5562. "r": 255,
  5563. "g": 255,
  5564. "b": 255,
  5565. "a": 255
  5566. },
  5567. "_sharedMaterial": null,
  5568. "_spriteFrame": {
  5569. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5570. },
  5571. "_type": 1,
  5572. "_fillType": 0,
  5573. "_sizeMode": 1,
  5574. "_fillCenter": {
  5575. "__type__": "cc.Vec2",
  5576. "x": 0,
  5577. "y": 0
  5578. },
  5579. "_fillStart": 0,
  5580. "_fillRange": 0,
  5581. "_isTrimmedMode": true,
  5582. "_useGrayscale": false,
  5583. "_atlas": null,
  5584. "_id": ""
  5585. },
  5586. {
  5587. "__type__": "cc.ButtonComponent",
  5588. "_name": "",
  5589. "_objFlags": 0,
  5590. "node": {
  5591. "__id__": 172
  5592. },
  5593. "_enabled": true,
  5594. "clickEvents": [
  5595. {
  5596. "__id__": 184
  5597. }
  5598. ],
  5599. "_interactable": true,
  5600. "_transition": 2,
  5601. "_normalColor": {
  5602. "__type__": "cc.Color",
  5603. "r": 214,
  5604. "g": 214,
  5605. "b": 214,
  5606. "a": 255
  5607. },
  5608. "_hoverColor": {
  5609. "__type__": "cc.Color",
  5610. "r": 211,
  5611. "g": 211,
  5612. "b": 211,
  5613. "a": 255
  5614. },
  5615. "_pressColor": {
  5616. "__type__": "cc.Color",
  5617. "r": 255,
  5618. "g": 255,
  5619. "b": 255,
  5620. "a": 255
  5621. },
  5622. "_disabledColor": {
  5623. "__type__": "cc.Color",
  5624. "r": 124,
  5625. "g": 124,
  5626. "b": 124,
  5627. "a": 255
  5628. },
  5629. "_normalSprite": {
  5630. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5631. },
  5632. "_hoverSprite": {
  5633. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5634. },
  5635. "_pressedSprite": {
  5636. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5637. },
  5638. "_disabledSprite": {
  5639. "__uuid__": "3e7472a8-3b7f-4f15-ba7a-2a4fe21ed515@f9941"
  5640. },
  5641. "_duration": 0.1,
  5642. "_zoomScale": 1.2,
  5643. "_target": {
  5644. "__id__": 172
  5645. },
  5646. "_id": ""
  5647. },
  5648. {
  5649. "__type__": "cc.ClickEvent",
  5650. "target": {
  5651. "__id__": 1
  5652. },
  5653. "component": "",
  5654. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  5655. "handler": "getAdGold",
  5656. "customEventData": ""
  5657. },
  5658. {
  5659. "__type__": "cc.PrefabInfo",
  5660. "root": {
  5661. "__id__": 1
  5662. },
  5663. "asset": {
  5664. "__id__": 0
  5665. },
  5666. "fileId": "7aq+nnJ8ZNPp7eEp20+xir",
  5667. "sync": false,
  5668. "_synced": {
  5669. "default": false,
  5670. "serializable": false
  5671. }
  5672. },
  5673. {
  5674. "__type__": "cc.Node",
  5675. "_name": "ButtonEnter4",
  5676. "_objFlags": 0,
  5677. "_parent": {
  5678. "__id__": 144
  5679. },
  5680. "_children": [
  5681. {
  5682. "__id__": 187
  5683. },
  5684. {
  5685. "__id__": 191
  5686. }
  5687. ],
  5688. "_active": true,
  5689. "_components": [
  5690. {
  5691. "__id__": 195
  5692. },
  5693. {
  5694. "__id__": 196
  5695. },
  5696. {
  5697. "__id__": 197
  5698. }
  5699. ],
  5700. "_prefab": {
  5701. "__id__": 199
  5702. },
  5703. "_lpos": {
  5704. "__type__": "cc.Vec3",
  5705. "x": 320,
  5706. "y": -313.074,
  5707. "z": 0
  5708. },
  5709. "_lrot": {
  5710. "__type__": "cc.Quat",
  5711. "x": 0,
  5712. "y": 0,
  5713. "z": 0,
  5714. "w": 1
  5715. },
  5716. "_lscale": {
  5717. "__type__": "cc.Vec3",
  5718. "x": 1,
  5719. "y": 1,
  5720. "z": 1
  5721. },
  5722. "_layer": 33554432,
  5723. "_euler": {
  5724. "__type__": "cc.Vec3",
  5725. "x": 0,
  5726. "y": 0,
  5727. "z": 0
  5728. },
  5729. "_id": ""
  5730. },
  5731. {
  5732. "__type__": "cc.Node",
  5733. "_name": "Label",
  5734. "_objFlags": 0,
  5735. "_parent": {
  5736. "__id__": 186
  5737. },
  5738. "_children": [],
  5739. "_active": true,
  5740. "_components": [
  5741. {
  5742. "__id__": 188
  5743. },
  5744. {
  5745. "__id__": 189
  5746. }
  5747. ],
  5748. "_prefab": {
  5749. "__id__": 190
  5750. },
  5751. "_lpos": {
  5752. "__type__": "cc.Vec3",
  5753. "x": -1.7530000000000001,
  5754. "y": -41.539999999999964,
  5755. "z": 0
  5756. },
  5757. "_lrot": {
  5758. "__type__": "cc.Quat",
  5759. "x": 0,
  5760. "y": 0,
  5761. "z": 0,
  5762. "w": 1
  5763. },
  5764. "_lscale": {
  5765. "__type__": "cc.Vec3",
  5766. "x": 1,
  5767. "y": 1,
  5768. "z": 1
  5769. },
  5770. "_layer": 33554432,
  5771. "_euler": {
  5772. "__type__": "cc.Vec3",
  5773. "x": 0,
  5774. "y": 0,
  5775. "z": 0
  5776. },
  5777. "_id": ""
  5778. },
  5779. {
  5780. "__type__": "cc.UITransformComponent",
  5781. "_name": "",
  5782. "_objFlags": 0,
  5783. "node": {
  5784. "__id__": 187
  5785. },
  5786. "_enabled": true,
  5787. "_priority": 0,
  5788. "_contentSize": {
  5789. "__type__": "cc.Size",
  5790. "width": 88,
  5791. "height": 50.4
  5792. },
  5793. "_anchorPoint": {
  5794. "__type__": "cc.Vec2",
  5795. "x": 0.5,
  5796. "y": 0.5
  5797. },
  5798. "_id": ""
  5799. },
  5800. {
  5801. "__type__": "cc.LabelComponent",
  5802. "_name": "",
  5803. "_objFlags": 0,
  5804. "node": {
  5805. "__id__": 187
  5806. },
  5807. "_enabled": true,
  5808. "_srcBlendFactor": 2,
  5809. "_dstBlendFactor": 4,
  5810. "_color": {
  5811. "__type__": "cc.Color",
  5812. "r": 255,
  5813. "g": 255,
  5814. "b": 255,
  5815. "a": 255
  5816. },
  5817. "_sharedMaterial": null,
  5818. "_useOriginalSize": true,
  5819. "_string": "金币兑换",
  5820. "_horizontalAlign": 1,
  5821. "_verticalAlign": 1,
  5822. "_actualFontSize": 22,
  5823. "_fontSize": 22,
  5824. "_fontFamily": "Arial",
  5825. "_lineHeight": 40,
  5826. "_overflow": 0,
  5827. "_enableWrapText": true,
  5828. "_font": null,
  5829. "_isSystemFontUsed": true,
  5830. "_isItalic": false,
  5831. "_isBold": false,
  5832. "_isUnderline": false,
  5833. "_cacheMode": 0,
  5834. "_id": ""
  5835. },
  5836. {
  5837. "__type__": "cc.PrefabInfo",
  5838. "root": {
  5839. "__id__": 1
  5840. },
  5841. "asset": {
  5842. "__id__": 0
  5843. },
  5844. "fileId": "c12ArxKwhDYL7/QwEPoKv2",
  5845. "sync": false,
  5846. "_synced": {
  5847. "default": false,
  5848. "serializable": false
  5849. }
  5850. },
  5851. {
  5852. "__type__": "cc.Node",
  5853. "_name": "ImgHongdian",
  5854. "_objFlags": 0,
  5855. "_parent": {
  5856. "__id__": 186
  5857. },
  5858. "_children": [],
  5859. "_active": true,
  5860. "_components": [
  5861. {
  5862. "__id__": 192
  5863. },
  5864. {
  5865. "__id__": 193
  5866. }
  5867. ],
  5868. "_prefab": {
  5869. "__id__": 194
  5870. },
  5871. "_lpos": {
  5872. "__type__": "cc.Vec3",
  5873. "x": 40,
  5874. "y": 40,
  5875. "z": 0
  5876. },
  5877. "_lrot": {
  5878. "__type__": "cc.Quat",
  5879. "x": 0,
  5880. "y": 0,
  5881. "z": 0,
  5882. "w": 1
  5883. },
  5884. "_lscale": {
  5885. "__type__": "cc.Vec3",
  5886. "x": 1,
  5887. "y": 1,
  5888. "z": 1
  5889. },
  5890. "_layer": 33554432,
  5891. "_euler": {
  5892. "__type__": "cc.Vec3",
  5893. "x": 0,
  5894. "y": 0,
  5895. "z": 0
  5896. },
  5897. "_id": ""
  5898. },
  5899. {
  5900. "__type__": "cc.UITransformComponent",
  5901. "_name": "",
  5902. "_objFlags": 0,
  5903. "node": {
  5904. "__id__": 191
  5905. },
  5906. "_enabled": true,
  5907. "_priority": 0,
  5908. "_contentSize": {
  5909. "__type__": "cc.Size",
  5910. "width": 22,
  5911. "height": 22
  5912. },
  5913. "_anchorPoint": {
  5914. "__type__": "cc.Vec2",
  5915. "x": 0.5,
  5916. "y": 0.5
  5917. },
  5918. "_id": ""
  5919. },
  5920. {
  5921. "__type__": "cc.SpriteComponent",
  5922. "_name": "",
  5923. "_objFlags": 0,
  5924. "node": {
  5925. "__id__": 191
  5926. },
  5927. "_enabled": true,
  5928. "_srcBlendFactor": 2,
  5929. "_dstBlendFactor": 4,
  5930. "_color": {
  5931. "__type__": "cc.Color",
  5932. "r": 255,
  5933. "g": 255,
  5934. "b": 255,
  5935. "a": 255
  5936. },
  5937. "_sharedMaterial": null,
  5938. "_spriteFrame": {
  5939. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  5940. },
  5941. "_type": 0,
  5942. "_fillType": 0,
  5943. "_sizeMode": 1,
  5944. "_fillCenter": {
  5945. "__type__": "cc.Vec2",
  5946. "x": 0,
  5947. "y": 0
  5948. },
  5949. "_fillStart": 0,
  5950. "_fillRange": 0,
  5951. "_isTrimmedMode": true,
  5952. "_useGrayscale": false,
  5953. "_atlas": null,
  5954. "_id": ""
  5955. },
  5956. {
  5957. "__type__": "cc.PrefabInfo",
  5958. "root": {
  5959. "__id__": 1
  5960. },
  5961. "asset": {
  5962. "__id__": 0
  5963. },
  5964. "fileId": "04WhYmwMRKX6L/+IO9Z3Ck",
  5965. "sync": false,
  5966. "_synced": {
  5967. "default": false,
  5968. "serializable": false
  5969. }
  5970. },
  5971. {
  5972. "__type__": "cc.UITransformComponent",
  5973. "_name": "",
  5974. "_objFlags": 0,
  5975. "node": {
  5976. "__id__": 186
  5977. },
  5978. "_enabled": true,
  5979. "_priority": 0,
  5980. "_contentSize": {
  5981. "__type__": "cc.Size",
  5982. "width": 82,
  5983. "height": 78
  5984. },
  5985. "_anchorPoint": {
  5986. "__type__": "cc.Vec2",
  5987. "x": 0.5,
  5988. "y": 0.5
  5989. },
  5990. "_id": ""
  5991. },
  5992. {
  5993. "__type__": "cc.SpriteComponent",
  5994. "_name": "",
  5995. "_objFlags": 0,
  5996. "node": {
  5997. "__id__": 186
  5998. },
  5999. "_enabled": true,
  6000. "_srcBlendFactor": 2,
  6001. "_dstBlendFactor": 4,
  6002. "_color": {
  6003. "__type__": "cc.Color",
  6004. "r": 255,
  6005. "g": 255,
  6006. "b": 255,
  6007. "a": 255
  6008. },
  6009. "_sharedMaterial": null,
  6010. "_spriteFrame": {
  6011. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6012. },
  6013. "_type": 1,
  6014. "_fillType": 0,
  6015. "_sizeMode": 1,
  6016. "_fillCenter": {
  6017. "__type__": "cc.Vec2",
  6018. "x": 0,
  6019. "y": 0
  6020. },
  6021. "_fillStart": 0,
  6022. "_fillRange": 0,
  6023. "_isTrimmedMode": true,
  6024. "_useGrayscale": false,
  6025. "_atlas": null,
  6026. "_id": ""
  6027. },
  6028. {
  6029. "__type__": "cc.ButtonComponent",
  6030. "_name": "",
  6031. "_objFlags": 0,
  6032. "node": {
  6033. "__id__": 186
  6034. },
  6035. "_enabled": true,
  6036. "clickEvents": [
  6037. {
  6038. "__id__": 198
  6039. }
  6040. ],
  6041. "_interactable": true,
  6042. "_transition": 2,
  6043. "_normalColor": {
  6044. "__type__": "cc.Color",
  6045. "r": 214,
  6046. "g": 214,
  6047. "b": 214,
  6048. "a": 255
  6049. },
  6050. "_hoverColor": {
  6051. "__type__": "cc.Color",
  6052. "r": 211,
  6053. "g": 211,
  6054. "b": 211,
  6055. "a": 255
  6056. },
  6057. "_pressColor": {
  6058. "__type__": "cc.Color",
  6059. "r": 255,
  6060. "g": 255,
  6061. "b": 255,
  6062. "a": 255
  6063. },
  6064. "_disabledColor": {
  6065. "__type__": "cc.Color",
  6066. "r": 124,
  6067. "g": 124,
  6068. "b": 124,
  6069. "a": 255
  6070. },
  6071. "_normalSprite": {
  6072. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6073. },
  6074. "_hoverSprite": {
  6075. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6076. },
  6077. "_pressedSprite": {
  6078. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6079. },
  6080. "_disabledSprite": {
  6081. "__uuid__": "c4420b66-3232-41d6-a895-7c41ca5a8cda@f9941"
  6082. },
  6083. "_duration": 0.1,
  6084. "_zoomScale": 1.2,
  6085. "_target": {
  6086. "__id__": 186
  6087. },
  6088. "_id": ""
  6089. },
  6090. {
  6091. "__type__": "cc.ClickEvent",
  6092. "target": {
  6093. "__id__": 1
  6094. },
  6095. "component": "",
  6096. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  6097. "handler": "ExchangeButtonClickHandler",
  6098. "customEventData": ""
  6099. },
  6100. {
  6101. "__type__": "cc.PrefabInfo",
  6102. "root": {
  6103. "__id__": 1
  6104. },
  6105. "asset": {
  6106. "__id__": 0
  6107. },
  6108. "fileId": "ec6OKimpNE6bksOCvYPlHH",
  6109. "sync": false,
  6110. "_synced": {
  6111. "default": false,
  6112. "serializable": false
  6113. }
  6114. },
  6115. {
  6116. "__type__": "cc.UITransformComponent",
  6117. "_name": "EnterGroup<UITransformComponent>",
  6118. "_objFlags": 0,
  6119. "node": {
  6120. "__id__": 144
  6121. },
  6122. "_enabled": true,
  6123. "_priority": 0,
  6124. "_contentSize": {
  6125. "__type__": "cc.Size",
  6126. "width": 750,
  6127. "height": 112
  6128. },
  6129. "_anchorPoint": {
  6130. "__type__": "cc.Vec2",
  6131. "x": 0.5,
  6132. "y": 0.5
  6133. },
  6134. "_id": ""
  6135. },
  6136. {
  6137. "__type__": "cc.WidgetComponent",
  6138. "_name": "EnterGroup<WidgetComponent>",
  6139. "_objFlags": 0,
  6140. "node": {
  6141. "__id__": 144
  6142. },
  6143. "_enabled": true,
  6144. "_alignFlags": 41,
  6145. "_target": null,
  6146. "_left": 0,
  6147. "_right": 0,
  6148. "_top": 145.95100000000002,
  6149. "_bottom": 0,
  6150. "_horizontalCenter": 0,
  6151. "_verticalCenter": 0,
  6152. "_isAbsLeft": true,
  6153. "_isAbsRight": true,
  6154. "_isAbsTop": true,
  6155. "_isAbsBottom": true,
  6156. "_isAbsHorizontalCenter": true,
  6157. "_isAbsVerticalCenter": true,
  6158. "_originalWidth": 100,
  6159. "_originalHeight": 0,
  6160. "_alignMode": 2,
  6161. "_lockFlags": 0,
  6162. "_id": ""
  6163. },
  6164. {
  6165. "__type__": "cc.PrefabInfo",
  6166. "root": {
  6167. "__id__": 1
  6168. },
  6169. "asset": {
  6170. "__id__": 0
  6171. },
  6172. "fileId": "02UIbCL4lONI9txsGJYgJk",
  6173. "sync": false,
  6174. "_synced": {
  6175. "default": false,
  6176. "serializable": false
  6177. }
  6178. },
  6179. {
  6180. "__type__": "cc.Node",
  6181. "_name": "BottomGroup",
  6182. "_objFlags": 0,
  6183. "_parent": {
  6184. "__id__": 1
  6185. },
  6186. "_children": [
  6187. {
  6188. "__id__": 204
  6189. },
  6190. {
  6191. "__id__": 209
  6192. },
  6193. {
  6194. "__id__": 222
  6195. },
  6196. {
  6197. "__id__": 236
  6198. }
  6199. ],
  6200. "_active": true,
  6201. "_components": [
  6202. {
  6203. "__id__": 253
  6204. }
  6205. ],
  6206. "_prefab": {
  6207. "__id__": 254
  6208. },
  6209. "_lpos": {
  6210. "__type__": "cc.Vec3",
  6211. "x": 366.622,
  6212. "y": 700,
  6213. "z": 0
  6214. },
  6215. "_lrot": {
  6216. "__type__": "cc.Quat",
  6217. "x": 0,
  6218. "y": 0,
  6219. "z": 0,
  6220. "w": 1
  6221. },
  6222. "_lscale": {
  6223. "__type__": "cc.Vec3",
  6224. "x": 1,
  6225. "y": 1,
  6226. "z": 1
  6227. },
  6228. "_layer": 1073741824,
  6229. "_euler": {
  6230. "__type__": "cc.Vec3",
  6231. "x": 0,
  6232. "y": 0,
  6233. "z": 0
  6234. },
  6235. "_id": ""
  6236. },
  6237. {
  6238. "__type__": "cc.Node",
  6239. "_name": "ButtonSellGun",
  6240. "_objFlags": 0,
  6241. "_parent": {
  6242. "__id__": 203
  6243. },
  6244. "_children": [],
  6245. "_active": true,
  6246. "_components": [
  6247. {
  6248. "__id__": 205
  6249. },
  6250. {
  6251. "__id__": 206
  6252. },
  6253. {
  6254. "__id__": 207
  6255. }
  6256. ],
  6257. "_prefab": {
  6258. "__id__": 208
  6259. },
  6260. "_lpos": {
  6261. "__type__": "cc.Vec3",
  6262. "x": -309.912,
  6263. "y": -394.599,
  6264. "z": 0
  6265. },
  6266. "_lrot": {
  6267. "__type__": "cc.Quat",
  6268. "x": 0,
  6269. "y": 0,
  6270. "z": 0,
  6271. "w": 1
  6272. },
  6273. "_lscale": {
  6274. "__type__": "cc.Vec3",
  6275. "x": 1,
  6276. "y": 1,
  6277. "z": 1
  6278. },
  6279. "_layer": 33554432,
  6280. "_euler": {
  6281. "__type__": "cc.Vec3",
  6282. "x": 0,
  6283. "y": 0,
  6284. "z": 0
  6285. },
  6286. "_id": ""
  6287. },
  6288. {
  6289. "__type__": "cc.UITransformComponent",
  6290. "_name": "",
  6291. "_objFlags": 0,
  6292. "node": {
  6293. "__id__": 204
  6294. },
  6295. "_enabled": true,
  6296. "_priority": 0,
  6297. "_contentSize": {
  6298. "__type__": "cc.Size",
  6299. "width": 68,
  6300. "height": 100
  6301. },
  6302. "_anchorPoint": {
  6303. "__type__": "cc.Vec2",
  6304. "x": 0.5,
  6305. "y": 0.5
  6306. },
  6307. "_id": ""
  6308. },
  6309. {
  6310. "__type__": "cc.SpriteComponent",
  6311. "_name": "",
  6312. "_objFlags": 0,
  6313. "node": {
  6314. "__id__": 204
  6315. },
  6316. "_enabled": true,
  6317. "_srcBlendFactor": 2,
  6318. "_dstBlendFactor": 4,
  6319. "_color": {
  6320. "__type__": "cc.Color",
  6321. "r": 255,
  6322. "g": 255,
  6323. "b": 255,
  6324. "a": 255
  6325. },
  6326. "_sharedMaterial": null,
  6327. "_spriteFrame": {
  6328. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6329. },
  6330. "_type": 1,
  6331. "_fillType": 0,
  6332. "_sizeMode": 1,
  6333. "_fillCenter": {
  6334. "__type__": "cc.Vec2",
  6335. "x": 0,
  6336. "y": 0
  6337. },
  6338. "_fillStart": 0,
  6339. "_fillRange": 0,
  6340. "_isTrimmedMode": true,
  6341. "_useGrayscale": false,
  6342. "_atlas": null,
  6343. "_id": ""
  6344. },
  6345. {
  6346. "__type__": "cc.ButtonComponent",
  6347. "_name": "",
  6348. "_objFlags": 0,
  6349. "node": {
  6350. "__id__": 204
  6351. },
  6352. "_enabled": true,
  6353. "clickEvents": [],
  6354. "_interactable": true,
  6355. "_transition": 2,
  6356. "_normalColor": {
  6357. "__type__": "cc.Color",
  6358. "r": 214,
  6359. "g": 214,
  6360. "b": 214,
  6361. "a": 255
  6362. },
  6363. "_hoverColor": {
  6364. "__type__": "cc.Color",
  6365. "r": 211,
  6366. "g": 211,
  6367. "b": 211,
  6368. "a": 255
  6369. },
  6370. "_pressColor": {
  6371. "__type__": "cc.Color",
  6372. "r": 255,
  6373. "g": 255,
  6374. "b": 255,
  6375. "a": 255
  6376. },
  6377. "_disabledColor": {
  6378. "__type__": "cc.Color",
  6379. "r": 124,
  6380. "g": 124,
  6381. "b": 124,
  6382. "a": 255
  6383. },
  6384. "_normalSprite": {
  6385. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6386. },
  6387. "_hoverSprite": {
  6388. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6389. },
  6390. "_pressedSprite": {
  6391. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6392. },
  6393. "_disabledSprite": {
  6394. "__uuid__": "2aec04a0-5456-4f9f-bd6e-b349eca90450@f9941"
  6395. },
  6396. "_duration": 0.1,
  6397. "_zoomScale": 1.2,
  6398. "_target": {
  6399. "__id__": 204
  6400. },
  6401. "_id": ""
  6402. },
  6403. {
  6404. "__type__": "cc.PrefabInfo",
  6405. "root": {
  6406. "__id__": 1
  6407. },
  6408. "asset": {
  6409. "__id__": 0
  6410. },
  6411. "fileId": "c2SyojjppAR5oOrFEtmDZU",
  6412. "sync": false,
  6413. "_synced": {
  6414. "default": false,
  6415. "serializable": false
  6416. }
  6417. },
  6418. {
  6419. "__type__": "cc.Node",
  6420. "_name": "ButtonShop",
  6421. "_objFlags": 0,
  6422. "_parent": {
  6423. "__id__": 203
  6424. },
  6425. "_children": [
  6426. {
  6427. "__id__": 210
  6428. },
  6429. {
  6430. "__id__": 214
  6431. }
  6432. ],
  6433. "_active": true,
  6434. "_components": [
  6435. {
  6436. "__id__": 218
  6437. },
  6438. {
  6439. "__id__": 219
  6440. },
  6441. {
  6442. "__id__": 220
  6443. }
  6444. ],
  6445. "_prefab": {
  6446. "__id__": 221
  6447. },
  6448. "_lpos": {
  6449. "__type__": "cc.Vec3",
  6450. "x": 297.74800000000005,
  6451. "y": -396,
  6452. "z": 0
  6453. },
  6454. "_lrot": {
  6455. "__type__": "cc.Quat",
  6456. "x": 0,
  6457. "y": 0,
  6458. "z": 0,
  6459. "w": 1
  6460. },
  6461. "_lscale": {
  6462. "__type__": "cc.Vec3",
  6463. "x": 1,
  6464. "y": 1,
  6465. "z": 1
  6466. },
  6467. "_layer": 33554432,
  6468. "_euler": {
  6469. "__type__": "cc.Vec3",
  6470. "x": 0,
  6471. "y": 0,
  6472. "z": 0
  6473. },
  6474. "_id": ""
  6475. },
  6476. {
  6477. "__type__": "cc.Node",
  6478. "_name": "Sprite",
  6479. "_objFlags": 0,
  6480. "_parent": {
  6481. "__id__": 209
  6482. },
  6483. "_children": [],
  6484. "_active": true,
  6485. "_components": [
  6486. {
  6487. "__id__": 211
  6488. },
  6489. {
  6490. "__id__": 212
  6491. }
  6492. ],
  6493. "_prefab": {
  6494. "__id__": 213
  6495. },
  6496. "_lpos": {
  6497. "__type__": "cc.Vec3",
  6498. "x": 1,
  6499. "y": 4,
  6500. "z": 0
  6501. },
  6502. "_lrot": {
  6503. "__type__": "cc.Quat",
  6504. "x": 0,
  6505. "y": 0,
  6506. "z": 0,
  6507. "w": 1
  6508. },
  6509. "_lscale": {
  6510. "__type__": "cc.Vec3",
  6511. "x": 1,
  6512. "y": 1,
  6513. "z": 1
  6514. },
  6515. "_layer": 33554432,
  6516. "_euler": {
  6517. "__type__": "cc.Vec3",
  6518. "x": 0,
  6519. "y": 0,
  6520. "z": 0
  6521. },
  6522. "_id": ""
  6523. },
  6524. {
  6525. "__type__": "cc.UITransformComponent",
  6526. "_name": "",
  6527. "_objFlags": 0,
  6528. "node": {
  6529. "__id__": 210
  6530. },
  6531. "_enabled": true,
  6532. "_priority": 0,
  6533. "_contentSize": {
  6534. "__type__": "cc.Size",
  6535. "width": 61,
  6536. "height": 77
  6537. },
  6538. "_anchorPoint": {
  6539. "__type__": "cc.Vec2",
  6540. "x": 0.5,
  6541. "y": 0.5
  6542. },
  6543. "_id": ""
  6544. },
  6545. {
  6546. "__type__": "cc.SpriteComponent",
  6547. "_name": "",
  6548. "_objFlags": 0,
  6549. "node": {
  6550. "__id__": 210
  6551. },
  6552. "_enabled": true,
  6553. "_srcBlendFactor": 2,
  6554. "_dstBlendFactor": 4,
  6555. "_color": {
  6556. "__type__": "cc.Color",
  6557. "r": 255,
  6558. "g": 255,
  6559. "b": 255,
  6560. "a": 255
  6561. },
  6562. "_sharedMaterial": null,
  6563. "_spriteFrame": {
  6564. "__uuid__": "5798d97b-f3e7-4192-984d-150994cb912a@f9941"
  6565. },
  6566. "_type": 0,
  6567. "_fillType": 0,
  6568. "_sizeMode": 1,
  6569. "_fillCenter": {
  6570. "__type__": "cc.Vec2",
  6571. "x": 0,
  6572. "y": 0
  6573. },
  6574. "_fillStart": 0,
  6575. "_fillRange": 0,
  6576. "_isTrimmedMode": true,
  6577. "_useGrayscale": false,
  6578. "_atlas": null,
  6579. "_id": ""
  6580. },
  6581. {
  6582. "__type__": "cc.PrefabInfo",
  6583. "root": {
  6584. "__id__": 1
  6585. },
  6586. "asset": {
  6587. "__id__": 0
  6588. },
  6589. "fileId": "dduTpda5NJy7ZfRpoWY4xn",
  6590. "sync": false,
  6591. "_synced": {
  6592. "default": false,
  6593. "serializable": false
  6594. }
  6595. },
  6596. {
  6597. "__type__": "cc.Node",
  6598. "_name": "tips",
  6599. "_objFlags": 0,
  6600. "_parent": {
  6601. "__id__": 209
  6602. },
  6603. "_children": [],
  6604. "_active": false,
  6605. "_components": [
  6606. {
  6607. "__id__": 215
  6608. },
  6609. {
  6610. "__id__": 216
  6611. }
  6612. ],
  6613. "_prefab": {
  6614. "__id__": 217
  6615. },
  6616. "_lpos": {
  6617. "__type__": "cc.Vec3",
  6618. "x": 52,
  6619. "y": 47,
  6620. "z": 0
  6621. },
  6622. "_lrot": {
  6623. "__type__": "cc.Quat",
  6624. "x": 0,
  6625. "y": 0,
  6626. "z": 0,
  6627. "w": 1
  6628. },
  6629. "_lscale": {
  6630. "__type__": "cc.Vec3",
  6631. "x": 1,
  6632. "y": 1,
  6633. "z": 1
  6634. },
  6635. "_layer": 33554432,
  6636. "_euler": {
  6637. "__type__": "cc.Vec3",
  6638. "x": 0,
  6639. "y": 0,
  6640. "z": 0
  6641. },
  6642. "_id": ""
  6643. },
  6644. {
  6645. "__type__": "cc.UITransformComponent",
  6646. "_name": "",
  6647. "_objFlags": 0,
  6648. "node": {
  6649. "__id__": 214
  6650. },
  6651. "_enabled": true,
  6652. "_priority": 0,
  6653. "_contentSize": {
  6654. "__type__": "cc.Size",
  6655. "width": 22,
  6656. "height": 22
  6657. },
  6658. "_anchorPoint": {
  6659. "__type__": "cc.Vec2",
  6660. "x": 0.5,
  6661. "y": 0.5
  6662. },
  6663. "_id": ""
  6664. },
  6665. {
  6666. "__type__": "cc.SpriteComponent",
  6667. "_name": "",
  6668. "_objFlags": 0,
  6669. "node": {
  6670. "__id__": 214
  6671. },
  6672. "_enabled": true,
  6673. "_srcBlendFactor": 2,
  6674. "_dstBlendFactor": 4,
  6675. "_color": {
  6676. "__type__": "cc.Color",
  6677. "r": 255,
  6678. "g": 255,
  6679. "b": 255,
  6680. "a": 255
  6681. },
  6682. "_sharedMaterial": null,
  6683. "_spriteFrame": {
  6684. "__uuid__": "eb859167-03ea-460c-86cf-e157149f19f9@f9941"
  6685. },
  6686. "_type": 0,
  6687. "_fillType": 0,
  6688. "_sizeMode": 1,
  6689. "_fillCenter": {
  6690. "__type__": "cc.Vec2",
  6691. "x": 0,
  6692. "y": 0
  6693. },
  6694. "_fillStart": 0,
  6695. "_fillRange": 0,
  6696. "_isTrimmedMode": true,
  6697. "_useGrayscale": false,
  6698. "_atlas": null,
  6699. "_id": ""
  6700. },
  6701. {
  6702. "__type__": "cc.PrefabInfo",
  6703. "root": {
  6704. "__id__": 1
  6705. },
  6706. "asset": {
  6707. "__id__": 0
  6708. },
  6709. "fileId": "bdELvGiqNBOY5vUSd2XbJL",
  6710. "sync": false,
  6711. "_synced": {
  6712. "default": false,
  6713. "serializable": false
  6714. }
  6715. },
  6716. {
  6717. "__type__": "cc.UITransformComponent",
  6718. "_name": "",
  6719. "_objFlags": 0,
  6720. "node": {
  6721. "__id__": 209
  6722. },
  6723. "_enabled": true,
  6724. "_priority": 0,
  6725. "_contentSize": {
  6726. "__type__": "cc.Size",
  6727. "width": 114,
  6728. "height": 100
  6729. },
  6730. "_anchorPoint": {
  6731. "__type__": "cc.Vec2",
  6732. "x": 0.5,
  6733. "y": 0.5
  6734. },
  6735. "_id": ""
  6736. },
  6737. {
  6738. "__type__": "cc.SpriteComponent",
  6739. "_name": "",
  6740. "_objFlags": 0,
  6741. "node": {
  6742. "__id__": 209
  6743. },
  6744. "_enabled": true,
  6745. "_srcBlendFactor": 2,
  6746. "_dstBlendFactor": 4,
  6747. "_color": {
  6748. "__type__": "cc.Color",
  6749. "r": 255,
  6750. "g": 255,
  6751. "b": 255,
  6752. "a": 255
  6753. },
  6754. "_sharedMaterial": null,
  6755. "_spriteFrame": {
  6756. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6757. },
  6758. "_type": 1,
  6759. "_fillType": 0,
  6760. "_sizeMode": 0,
  6761. "_fillCenter": {
  6762. "__type__": "cc.Vec2",
  6763. "x": 0,
  6764. "y": 0
  6765. },
  6766. "_fillStart": 0,
  6767. "_fillRange": 0,
  6768. "_isTrimmedMode": true,
  6769. "_useGrayscale": false,
  6770. "_atlas": null,
  6771. "_id": ""
  6772. },
  6773. {
  6774. "__type__": "cc.ButtonComponent",
  6775. "_name": "",
  6776. "_objFlags": 0,
  6777. "node": {
  6778. "__id__": 209
  6779. },
  6780. "_enabled": true,
  6781. "clickEvents": [],
  6782. "_interactable": true,
  6783. "_transition": 2,
  6784. "_normalColor": {
  6785. "__type__": "cc.Color",
  6786. "r": 214,
  6787. "g": 214,
  6788. "b": 214,
  6789. "a": 255
  6790. },
  6791. "_hoverColor": {
  6792. "__type__": "cc.Color",
  6793. "r": 211,
  6794. "g": 211,
  6795. "b": 211,
  6796. "a": 255
  6797. },
  6798. "_pressColor": {
  6799. "__type__": "cc.Color",
  6800. "r": 255,
  6801. "g": 255,
  6802. "b": 255,
  6803. "a": 255
  6804. },
  6805. "_disabledColor": {
  6806. "__type__": "cc.Color",
  6807. "r": 124,
  6808. "g": 124,
  6809. "b": 124,
  6810. "a": 255
  6811. },
  6812. "_normalSprite": {
  6813. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6814. },
  6815. "_hoverSprite": {
  6816. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6817. },
  6818. "_pressedSprite": {
  6819. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6820. },
  6821. "_disabledSprite": {
  6822. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  6823. },
  6824. "_duration": 0.1,
  6825. "_zoomScale": 1.2,
  6826. "_target": {
  6827. "__id__": 209
  6828. },
  6829. "_id": ""
  6830. },
  6831. {
  6832. "__type__": "cc.PrefabInfo",
  6833. "root": {
  6834. "__id__": 1
  6835. },
  6836. "asset": {
  6837. "__id__": 0
  6838. },
  6839. "fileId": "83Mo20qkNMcJ2UlNbTsCOr",
  6840. "sync": false,
  6841. "_synced": {
  6842. "default": false,
  6843. "serializable": false
  6844. }
  6845. },
  6846. {
  6847. "__type__": "cc.Node",
  6848. "_name": "ButtonDouble",
  6849. "_objFlags": 0,
  6850. "_parent": {
  6851. "__id__": 203
  6852. },
  6853. "_children": [
  6854. {
  6855. "__id__": 223
  6856. },
  6857. {
  6858. "__id__": 227
  6859. }
  6860. ],
  6861. "_active": true,
  6862. "_components": [
  6863. {
  6864. "__id__": 231
  6865. },
  6866. {
  6867. "__id__": 232
  6868. },
  6869. {
  6870. "__id__": 233
  6871. }
  6872. ],
  6873. "_prefab": {
  6874. "__id__": 235
  6875. },
  6876. "_lpos": {
  6877. "__type__": "cc.Vec3",
  6878. "x": -182,
  6879. "y": -396,
  6880. "z": 0
  6881. },
  6882. "_lrot": {
  6883. "__type__": "cc.Quat",
  6884. "x": 0,
  6885. "y": 0,
  6886. "z": 0,
  6887. "w": 1
  6888. },
  6889. "_lscale": {
  6890. "__type__": "cc.Vec3",
  6891. "x": 1,
  6892. "y": 1,
  6893. "z": 1
  6894. },
  6895. "_layer": 33554432,
  6896. "_euler": {
  6897. "__type__": "cc.Vec3",
  6898. "x": 0,
  6899. "y": 0,
  6900. "z": 0
  6901. },
  6902. "_id": ""
  6903. },
  6904. {
  6905. "__type__": "cc.Node",
  6906. "_name": "Sprite",
  6907. "_objFlags": 0,
  6908. "_parent": {
  6909. "__id__": 222
  6910. },
  6911. "_children": [],
  6912. "_active": true,
  6913. "_components": [
  6914. {
  6915. "__id__": 224
  6916. },
  6917. {
  6918. "__id__": 225
  6919. }
  6920. ],
  6921. "_prefab": {
  6922. "__id__": 226
  6923. },
  6924. "_lpos": {
  6925. "__type__": "cc.Vec3",
  6926. "x": -3,
  6927. "y": 4,
  6928. "z": 0
  6929. },
  6930. "_lrot": {
  6931. "__type__": "cc.Quat",
  6932. "x": 0,
  6933. "y": 0,
  6934. "z": 0,
  6935. "w": 1
  6936. },
  6937. "_lscale": {
  6938. "__type__": "cc.Vec3",
  6939. "x": 1,
  6940. "y": 1,
  6941. "z": 1
  6942. },
  6943. "_layer": 33554432,
  6944. "_euler": {
  6945. "__type__": "cc.Vec3",
  6946. "x": 0,
  6947. "y": 0,
  6948. "z": 0
  6949. },
  6950. "_id": ""
  6951. },
  6952. {
  6953. "__type__": "cc.UITransformComponent",
  6954. "_name": "",
  6955. "_objFlags": 0,
  6956. "node": {
  6957. "__id__": 223
  6958. },
  6959. "_enabled": true,
  6960. "_priority": 0,
  6961. "_contentSize": {
  6962. "__type__": "cc.Size",
  6963. "width": 63,
  6964. "height": 76
  6965. },
  6966. "_anchorPoint": {
  6967. "__type__": "cc.Vec2",
  6968. "x": 0.5,
  6969. "y": 0.5
  6970. },
  6971. "_id": ""
  6972. },
  6973. {
  6974. "__type__": "cc.SpriteComponent",
  6975. "_name": "",
  6976. "_objFlags": 0,
  6977. "node": {
  6978. "__id__": 223
  6979. },
  6980. "_enabled": true,
  6981. "_srcBlendFactor": 2,
  6982. "_dstBlendFactor": 4,
  6983. "_color": {
  6984. "__type__": "cc.Color",
  6985. "r": 255,
  6986. "g": 255,
  6987. "b": 255,
  6988. "a": 255
  6989. },
  6990. "_sharedMaterial": null,
  6991. "_spriteFrame": {
  6992. "__uuid__": "cbe9554a-6840-42ce-830d-784cfb01a026@f9941"
  6993. },
  6994. "_type": 0,
  6995. "_fillType": 0,
  6996. "_sizeMode": 1,
  6997. "_fillCenter": {
  6998. "__type__": "cc.Vec2",
  6999. "x": 0,
  7000. "y": 0
  7001. },
  7002. "_fillStart": 0,
  7003. "_fillRange": 0,
  7004. "_isTrimmedMode": true,
  7005. "_useGrayscale": false,
  7006. "_atlas": null,
  7007. "_id": ""
  7008. },
  7009. {
  7010. "__type__": "cc.PrefabInfo",
  7011. "root": {
  7012. "__id__": 1
  7013. },
  7014. "asset": {
  7015. "__id__": 0
  7016. },
  7017. "fileId": "50kBeS50pJ6KRE92h76n77",
  7018. "sync": false,
  7019. "_synced": {
  7020. "default": false,
  7021. "serializable": false
  7022. }
  7023. },
  7024. {
  7025. "__type__": "cc.Node",
  7026. "_name": "tips",
  7027. "_objFlags": 0,
  7028. "_parent": {
  7029. "__id__": 222
  7030. },
  7031. "_children": [],
  7032. "_active": true,
  7033. "_components": [
  7034. {
  7035. "__id__": 228
  7036. },
  7037. {
  7038. "__id__": 229
  7039. }
  7040. ],
  7041. "_prefab": {
  7042. "__id__": 230
  7043. },
  7044. "_lpos": {
  7045. "__type__": "cc.Vec3",
  7046. "x": 38,
  7047. "y": 50,
  7048. "z": 0
  7049. },
  7050. "_lrot": {
  7051. "__type__": "cc.Quat",
  7052. "x": 0,
  7053. "y": 0,
  7054. "z": 0,
  7055. "w": 1
  7056. },
  7057. "_lscale": {
  7058. "__type__": "cc.Vec3",
  7059. "x": 1,
  7060. "y": 1,
  7061. "z": 1
  7062. },
  7063. "_layer": 33554432,
  7064. "_euler": {
  7065. "__type__": "cc.Vec3",
  7066. "x": 0,
  7067. "y": 0,
  7068. "z": 0
  7069. },
  7070. "_id": ""
  7071. },
  7072. {
  7073. "__type__": "cc.UITransformComponent",
  7074. "_name": "",
  7075. "_objFlags": 0,
  7076. "node": {
  7077. "__id__": 227
  7078. },
  7079. "_enabled": true,
  7080. "_priority": 0,
  7081. "_contentSize": {
  7082. "__type__": "cc.Size",
  7083. "width": 45,
  7084. "height": 26
  7085. },
  7086. "_anchorPoint": {
  7087. "__type__": "cc.Vec2",
  7088. "x": 0.5,
  7089. "y": 0.5
  7090. },
  7091. "_id": ""
  7092. },
  7093. {
  7094. "__type__": "cc.SpriteComponent",
  7095. "_name": "",
  7096. "_objFlags": 0,
  7097. "node": {
  7098. "__id__": 227
  7099. },
  7100. "_enabled": true,
  7101. "_srcBlendFactor": 2,
  7102. "_dstBlendFactor": 4,
  7103. "_color": {
  7104. "__type__": "cc.Color",
  7105. "r": 255,
  7106. "g": 255,
  7107. "b": 255,
  7108. "a": 255
  7109. },
  7110. "_sharedMaterial": null,
  7111. "_spriteFrame": {
  7112. "__uuid__": "497c0d61-436a-43e8-b675-8f0ee9729b00@f9941"
  7113. },
  7114. "_type": 0,
  7115. "_fillType": 0,
  7116. "_sizeMode": 1,
  7117. "_fillCenter": {
  7118. "__type__": "cc.Vec2",
  7119. "x": 0,
  7120. "y": 0
  7121. },
  7122. "_fillStart": 0,
  7123. "_fillRange": 0,
  7124. "_isTrimmedMode": true,
  7125. "_useGrayscale": false,
  7126. "_atlas": null,
  7127. "_id": ""
  7128. },
  7129. {
  7130. "__type__": "cc.PrefabInfo",
  7131. "root": {
  7132. "__id__": 1
  7133. },
  7134. "asset": {
  7135. "__id__": 0
  7136. },
  7137. "fileId": "45LEH3I0NI/57UmqjJJHuZ",
  7138. "sync": false,
  7139. "_synced": {
  7140. "default": false,
  7141. "serializable": false
  7142. }
  7143. },
  7144. {
  7145. "__type__": "cc.UITransformComponent",
  7146. "_name": "",
  7147. "_objFlags": 0,
  7148. "node": {
  7149. "__id__": 222
  7150. },
  7151. "_enabled": true,
  7152. "_priority": 0,
  7153. "_contentSize": {
  7154. "__type__": "cc.Size",
  7155. "width": 114,
  7156. "height": 100
  7157. },
  7158. "_anchorPoint": {
  7159. "__type__": "cc.Vec2",
  7160. "x": 0.5,
  7161. "y": 0.5
  7162. },
  7163. "_id": ""
  7164. },
  7165. {
  7166. "__type__": "cc.SpriteComponent",
  7167. "_name": "",
  7168. "_objFlags": 0,
  7169. "node": {
  7170. "__id__": 222
  7171. },
  7172. "_enabled": true,
  7173. "_srcBlendFactor": 2,
  7174. "_dstBlendFactor": 4,
  7175. "_color": {
  7176. "__type__": "cc.Color",
  7177. "r": 255,
  7178. "g": 255,
  7179. "b": 255,
  7180. "a": 255
  7181. },
  7182. "_sharedMaterial": null,
  7183. "_spriteFrame": {
  7184. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7185. },
  7186. "_type": 1,
  7187. "_fillType": 0,
  7188. "_sizeMode": 0,
  7189. "_fillCenter": {
  7190. "__type__": "cc.Vec2",
  7191. "x": 0,
  7192. "y": 0
  7193. },
  7194. "_fillStart": 0,
  7195. "_fillRange": 0,
  7196. "_isTrimmedMode": true,
  7197. "_useGrayscale": false,
  7198. "_atlas": null,
  7199. "_id": ""
  7200. },
  7201. {
  7202. "__type__": "cc.ButtonComponent",
  7203. "_name": "",
  7204. "_objFlags": 0,
  7205. "node": {
  7206. "__id__": 222
  7207. },
  7208. "_enabled": true,
  7209. "clickEvents": [
  7210. {
  7211. "__id__": 234
  7212. }
  7213. ],
  7214. "_interactable": true,
  7215. "_transition": 2,
  7216. "_normalColor": {
  7217. "__type__": "cc.Color",
  7218. "r": 214,
  7219. "g": 214,
  7220. "b": 214,
  7221. "a": 255
  7222. },
  7223. "_hoverColor": {
  7224. "__type__": "cc.Color",
  7225. "r": 211,
  7226. "g": 211,
  7227. "b": 211,
  7228. "a": 255
  7229. },
  7230. "_pressColor": {
  7231. "__type__": "cc.Color",
  7232. "r": 255,
  7233. "g": 255,
  7234. "b": 255,
  7235. "a": 255
  7236. },
  7237. "_disabledColor": {
  7238. "__type__": "cc.Color",
  7239. "r": 124,
  7240. "g": 124,
  7241. "b": 124,
  7242. "a": 255
  7243. },
  7244. "_normalSprite": {
  7245. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7246. },
  7247. "_hoverSprite": {
  7248. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7249. },
  7250. "_pressedSprite": {
  7251. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7252. },
  7253. "_disabledSprite": {
  7254. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7255. },
  7256. "_duration": 0.1,
  7257. "_zoomScale": 1.2,
  7258. "_target": {
  7259. "__id__": 222
  7260. },
  7261. "_id": ""
  7262. },
  7263. {
  7264. "__type__": "cc.ClickEvent",
  7265. "target": {
  7266. "__id__": 1
  7267. },
  7268. "component": "",
  7269. "_componentId": "8fc93vzZ1xF6qpWn8Qq53+4",
  7270. "handler": "AccelerateButtonClickHandler",
  7271. "customEventData": ""
  7272. },
  7273. {
  7274. "__type__": "cc.PrefabInfo",
  7275. "root": {
  7276. "__id__": 1
  7277. },
  7278. "asset": {
  7279. "__id__": 0
  7280. },
  7281. "fileId": "ffTr3WrZVPgoqJ+KSB4CNq",
  7282. "sync": false,
  7283. "_synced": {
  7284. "default": false,
  7285. "serializable": false
  7286. }
  7287. },
  7288. {
  7289. "__type__": "cc.Node",
  7290. "_name": "ButtonBuyGun",
  7291. "_objFlags": 0,
  7292. "_parent": {
  7293. "__id__": 203
  7294. },
  7295. "_children": [
  7296. {
  7297. "__id__": 237
  7298. },
  7299. {
  7300. "__id__": 241
  7301. },
  7302. {
  7303. "__id__": 245
  7304. }
  7305. ],
  7306. "_active": true,
  7307. "_components": [
  7308. {
  7309. "__id__": 249
  7310. },
  7311. {
  7312. "__id__": 250
  7313. },
  7314. {
  7315. "__id__": 251
  7316. }
  7317. ],
  7318. "_prefab": {
  7319. "__id__": 252
  7320. },
  7321. "_lpos": {
  7322. "__type__": "cc.Vec3",
  7323. "x": 59,
  7324. "y": -396,
  7325. "z": 0
  7326. },
  7327. "_lrot": {
  7328. "__type__": "cc.Quat",
  7329. "x": 0,
  7330. "y": 0,
  7331. "z": 0,
  7332. "w": 1
  7333. },
  7334. "_lscale": {
  7335. "__type__": "cc.Vec3",
  7336. "x": 1,
  7337. "y": 1,
  7338. "z": 1
  7339. },
  7340. "_layer": 33554432,
  7341. "_euler": {
  7342. "__type__": "cc.Vec3",
  7343. "x": 0,
  7344. "y": 0,
  7345. "z": 0
  7346. },
  7347. "_id": ""
  7348. },
  7349. {
  7350. "__type__": "cc.Node",
  7351. "_name": "Sprite",
  7352. "_objFlags": 0,
  7353. "_parent": {
  7354. "__id__": 236
  7355. },
  7356. "_children": [],
  7357. "_active": true,
  7358. "_components": [
  7359. {
  7360. "__id__": 238
  7361. },
  7362. {
  7363. "__id__": 239
  7364. }
  7365. ],
  7366. "_prefab": {
  7367. "__id__": 240
  7368. },
  7369. "_lpos": {
  7370. "__type__": "cc.Vec3",
  7371. "x": -95,
  7372. "y": -13,
  7373. "z": 0
  7374. },
  7375. "_lrot": {
  7376. "__type__": "cc.Quat",
  7377. "x": 0,
  7378. "y": 0,
  7379. "z": 0,
  7380. "w": 1
  7381. },
  7382. "_lscale": {
  7383. "__type__": "cc.Vec3",
  7384. "x": 1,
  7385. "y": 1,
  7386. "z": 1
  7387. },
  7388. "_layer": 33554432,
  7389. "_euler": {
  7390. "__type__": "cc.Vec3",
  7391. "x": 0,
  7392. "y": 0,
  7393. "z": 0
  7394. },
  7395. "_id": ""
  7396. },
  7397. {
  7398. "__type__": "cc.UITransformComponent",
  7399. "_name": "",
  7400. "_objFlags": 0,
  7401. "node": {
  7402. "__id__": 237
  7403. },
  7404. "_enabled": true,
  7405. "_priority": 0,
  7406. "_contentSize": {
  7407. "__type__": "cc.Size",
  7408. "width": 50,
  7409. "height": 49
  7410. },
  7411. "_anchorPoint": {
  7412. "__type__": "cc.Vec2",
  7413. "x": 0.5,
  7414. "y": 0.5
  7415. },
  7416. "_id": ""
  7417. },
  7418. {
  7419. "__type__": "cc.SpriteComponent",
  7420. "_name": "",
  7421. "_objFlags": 0,
  7422. "node": {
  7423. "__id__": 237
  7424. },
  7425. "_enabled": true,
  7426. "_srcBlendFactor": 2,
  7427. "_dstBlendFactor": 4,
  7428. "_color": {
  7429. "__type__": "cc.Color",
  7430. "r": 255,
  7431. "g": 255,
  7432. "b": 255,
  7433. "a": 255
  7434. },
  7435. "_sharedMaterial": null,
  7436. "_spriteFrame": {
  7437. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  7438. },
  7439. "_type": 0,
  7440. "_fillType": 0,
  7441. "_sizeMode": 1,
  7442. "_fillCenter": {
  7443. "__type__": "cc.Vec2",
  7444. "x": 0,
  7445. "y": 0
  7446. },
  7447. "_fillStart": 0,
  7448. "_fillRange": 0,
  7449. "_isTrimmedMode": true,
  7450. "_useGrayscale": false,
  7451. "_atlas": null,
  7452. "_id": ""
  7453. },
  7454. {
  7455. "__type__": "cc.PrefabInfo",
  7456. "root": {
  7457. "__id__": 1
  7458. },
  7459. "asset": {
  7460. "__id__": 0
  7461. },
  7462. "fileId": "c3GqGJbtRL55EMoS/E1s2q",
  7463. "sync": false,
  7464. "_synced": {
  7465. "default": false,
  7466. "serializable": false
  7467. }
  7468. },
  7469. {
  7470. "__type__": "cc.Node",
  7471. "_name": "PriceLabel",
  7472. "_objFlags": 0,
  7473. "_parent": {
  7474. "__id__": 236
  7475. },
  7476. "_children": [],
  7477. "_active": true,
  7478. "_components": [
  7479. {
  7480. "__id__": 242
  7481. },
  7482. {
  7483. "__id__": 243
  7484. }
  7485. ],
  7486. "_prefab": {
  7487. "__id__": 244
  7488. },
  7489. "_lpos": {
  7490. "__type__": "cc.Vec3",
  7491. "x": 15.823,
  7492. "y": -23,
  7493. "z": 0
  7494. },
  7495. "_lrot": {
  7496. "__type__": "cc.Quat",
  7497. "x": 0,
  7498. "y": 0,
  7499. "z": 0,
  7500. "w": 1
  7501. },
  7502. "_lscale": {
  7503. "__type__": "cc.Vec3",
  7504. "x": 1,
  7505. "y": 1,
  7506. "z": 1
  7507. },
  7508. "_layer": 33554432,
  7509. "_euler": {
  7510. "__type__": "cc.Vec3",
  7511. "x": 0,
  7512. "y": 0,
  7513. "z": 0
  7514. },
  7515. "_id": ""
  7516. },
  7517. {
  7518. "__type__": "cc.UITransformComponent",
  7519. "_name": "",
  7520. "_objFlags": 0,
  7521. "node": {
  7522. "__id__": 241
  7523. },
  7524. "_enabled": true,
  7525. "_priority": 0,
  7526. "_contentSize": {
  7527. "__type__": "cc.Size",
  7528. "width": 60.06,
  7529. "height": 50.4
  7530. },
  7531. "_anchorPoint": {
  7532. "__type__": "cc.Vec2",
  7533. "x": 0.5,
  7534. "y": 0.5
  7535. },
  7536. "_id": ""
  7537. },
  7538. {
  7539. "__type__": "cc.LabelComponent",
  7540. "_name": "",
  7541. "_objFlags": 0,
  7542. "node": {
  7543. "__id__": 241
  7544. },
  7545. "_enabled": true,
  7546. "_srcBlendFactor": 2,
  7547. "_dstBlendFactor": 4,
  7548. "_color": {
  7549. "__type__": "cc.Color",
  7550. "r": 255,
  7551. "g": 255,
  7552. "b": 255,
  7553. "a": 255
  7554. },
  7555. "_sharedMaterial": null,
  7556. "_useOriginalSize": true,
  7557. "_string": "100",
  7558. "_horizontalAlign": 1,
  7559. "_verticalAlign": 1,
  7560. "_actualFontSize": 36,
  7561. "_fontSize": 36,
  7562. "_fontFamily": "Arial",
  7563. "_lineHeight": 40,
  7564. "_overflow": 0,
  7565. "_enableWrapText": true,
  7566. "_font": null,
  7567. "_isSystemFontUsed": true,
  7568. "_isItalic": false,
  7569. "_isBold": false,
  7570. "_isUnderline": false,
  7571. "_cacheMode": 0,
  7572. "_id": ""
  7573. },
  7574. {
  7575. "__type__": "cc.PrefabInfo",
  7576. "root": {
  7577. "__id__": 1
  7578. },
  7579. "asset": {
  7580. "__id__": 0
  7581. },
  7582. "fileId": "7a32/3V0hAvLl1IsqUvmfr",
  7583. "sync": false,
  7584. "_synced": {
  7585. "default": false,
  7586. "serializable": false
  7587. }
  7588. },
  7589. {
  7590. "__type__": "cc.Node",
  7591. "_name": "GunIcon",
  7592. "_objFlags": 0,
  7593. "_parent": {
  7594. "__id__": 236
  7595. },
  7596. "_children": [],
  7597. "_active": true,
  7598. "_components": [
  7599. {
  7600. "__id__": 246
  7601. },
  7602. {
  7603. "__id__": 247
  7604. }
  7605. ],
  7606. "_prefab": {
  7607. "__id__": 248
  7608. },
  7609. "_lpos": {
  7610. "__type__": "cc.Vec3",
  7611. "x": 0,
  7612. "y": 22.341,
  7613. "z": 0
  7614. },
  7615. "_lrot": {
  7616. "__type__": "cc.Quat",
  7617. "x": 0,
  7618. "y": 0,
  7619. "z": 0,
  7620. "w": 1
  7621. },
  7622. "_lscale": {
  7623. "__type__": "cc.Vec3",
  7624. "x": 1,
  7625. "y": 1,
  7626. "z": 1
  7627. },
  7628. "_layer": 33554432,
  7629. "_euler": {
  7630. "__type__": "cc.Vec3",
  7631. "x": 0,
  7632. "y": 0,
  7633. "z": 0
  7634. },
  7635. "_id": ""
  7636. },
  7637. {
  7638. "__type__": "cc.UITransformComponent",
  7639. "_name": "",
  7640. "_objFlags": 0,
  7641. "node": {
  7642. "__id__": 245
  7643. },
  7644. "_enabled": true,
  7645. "_priority": 0,
  7646. "_contentSize": {
  7647. "__type__": "cc.Size",
  7648. "width": 40,
  7649. "height": 36
  7650. },
  7651. "_anchorPoint": {
  7652. "__type__": "cc.Vec2",
  7653. "x": 0.5,
  7654. "y": 0.5
  7655. },
  7656. "_id": ""
  7657. },
  7658. {
  7659. "__type__": "cc.SpriteComponent",
  7660. "_name": "",
  7661. "_objFlags": 0,
  7662. "node": {
  7663. "__id__": 245
  7664. },
  7665. "_enabled": true,
  7666. "_srcBlendFactor": 2,
  7667. "_dstBlendFactor": 4,
  7668. "_color": {
  7669. "__type__": "cc.Color",
  7670. "r": 255,
  7671. "g": 255,
  7672. "b": 255,
  7673. "a": 255
  7674. },
  7675. "_sharedMaterial": null,
  7676. "_spriteFrame": {
  7677. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  7678. },
  7679. "_type": 0,
  7680. "_fillType": 0,
  7681. "_sizeMode": 1,
  7682. "_fillCenter": {
  7683. "__type__": "cc.Vec2",
  7684. "x": 0,
  7685. "y": 0
  7686. },
  7687. "_fillStart": 0,
  7688. "_fillRange": 0,
  7689. "_isTrimmedMode": true,
  7690. "_useGrayscale": false,
  7691. "_atlas": null,
  7692. "_id": ""
  7693. },
  7694. {
  7695. "__type__": "cc.PrefabInfo",
  7696. "root": {
  7697. "__id__": 1
  7698. },
  7699. "asset": {
  7700. "__id__": 0
  7701. },
  7702. "fileId": "c0/SDBdAlH36zJ8l2cqR1n",
  7703. "sync": false,
  7704. "_synced": {
  7705. "default": false,
  7706. "serializable": false
  7707. }
  7708. },
  7709. {
  7710. "__type__": "cc.UITransformComponent",
  7711. "_name": "",
  7712. "_objFlags": 0,
  7713. "node": {
  7714. "__id__": 236
  7715. },
  7716. "_enabled": true,
  7717. "_priority": 0,
  7718. "_contentSize": {
  7719. "__type__": "cc.Size",
  7720. "width": 332,
  7721. "height": 100
  7722. },
  7723. "_anchorPoint": {
  7724. "__type__": "cc.Vec2",
  7725. "x": 0.5,
  7726. "y": 0.5
  7727. },
  7728. "_id": ""
  7729. },
  7730. {
  7731. "__type__": "cc.SpriteComponent",
  7732. "_name": "",
  7733. "_objFlags": 0,
  7734. "node": {
  7735. "__id__": 236
  7736. },
  7737. "_enabled": true,
  7738. "_srcBlendFactor": 2,
  7739. "_dstBlendFactor": 4,
  7740. "_color": {
  7741. "__type__": "cc.Color",
  7742. "r": 255,
  7743. "g": 255,
  7744. "b": 255,
  7745. "a": 255
  7746. },
  7747. "_sharedMaterial": null,
  7748. "_spriteFrame": {
  7749. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7750. },
  7751. "_type": 1,
  7752. "_fillType": 0,
  7753. "_sizeMode": 0,
  7754. "_fillCenter": {
  7755. "__type__": "cc.Vec2",
  7756. "x": 0,
  7757. "y": 0
  7758. },
  7759. "_fillStart": 0,
  7760. "_fillRange": 0,
  7761. "_isTrimmedMode": true,
  7762. "_useGrayscale": false,
  7763. "_atlas": null,
  7764. "_id": ""
  7765. },
  7766. {
  7767. "__type__": "cc.ButtonComponent",
  7768. "_name": "",
  7769. "_objFlags": 0,
  7770. "node": {
  7771. "__id__": 236
  7772. },
  7773. "_enabled": true,
  7774. "clickEvents": [],
  7775. "_interactable": true,
  7776. "_transition": 2,
  7777. "_normalColor": {
  7778. "__type__": "cc.Color",
  7779. "r": 214,
  7780. "g": 214,
  7781. "b": 214,
  7782. "a": 255
  7783. },
  7784. "_hoverColor": {
  7785. "__type__": "cc.Color",
  7786. "r": 211,
  7787. "g": 211,
  7788. "b": 211,
  7789. "a": 255
  7790. },
  7791. "_pressColor": {
  7792. "__type__": "cc.Color",
  7793. "r": 255,
  7794. "g": 255,
  7795. "b": 255,
  7796. "a": 255
  7797. },
  7798. "_disabledColor": {
  7799. "__type__": "cc.Color",
  7800. "r": 124,
  7801. "g": 124,
  7802. "b": 124,
  7803. "a": 255
  7804. },
  7805. "_normalSprite": {
  7806. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7807. },
  7808. "_hoverSprite": {
  7809. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7810. },
  7811. "_pressedSprite": {
  7812. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7813. },
  7814. "_disabledSprite": {
  7815. "__uuid__": "d68f4e58-069e-476c-8112-05eb7851b775@f9941"
  7816. },
  7817. "_duration": 0.1,
  7818. "_zoomScale": 1.2,
  7819. "_target": {
  7820. "__id__": 236
  7821. },
  7822. "_id": ""
  7823. },
  7824. {
  7825. "__type__": "cc.PrefabInfo",
  7826. "root": {
  7827. "__id__": 1
  7828. },
  7829. "asset": {
  7830. "__id__": 0
  7831. },
  7832. "fileId": "08p1uEfttJtquF+ExDmCbJ",
  7833. "sync": false,
  7834. "_synced": {
  7835. "default": false,
  7836. "serializable": false
  7837. }
  7838. },
  7839. {
  7840. "__type__": "cc.UITransformComponent",
  7841. "_name": "BottomGroup<UITransformComponent>",
  7842. "_objFlags": 0,
  7843. "node": {
  7844. "__id__": 203
  7845. },
  7846. "_enabled": true,
  7847. "_priority": 0,
  7848. "_contentSize": {
  7849. "__type__": "cc.Size",
  7850. "width": 100,
  7851. "height": 100
  7852. },
  7853. "_anchorPoint": {
  7854. "__type__": "cc.Vec2",
  7855. "x": 0.5,
  7856. "y": 0.5
  7857. },
  7858. "_id": ""
  7859. },
  7860. {
  7861. "__type__": "cc.PrefabInfo",
  7862. "root": {
  7863. "__id__": 1
  7864. },
  7865. "asset": {
  7866. "__id__": 0
  7867. },
  7868. "fileId": "e0q1J/UwpDBLKsnYkMysNB",
  7869. "sync": false,
  7870. "_synced": {
  7871. "default": false,
  7872. "serializable": false
  7873. }
  7874. },
  7875. {
  7876. "__type__": "cc.Node",
  7877. "_name": "DragLayer",
  7878. "_objFlags": 0,
  7879. "_parent": {
  7880. "__id__": 1
  7881. },
  7882. "_children": [
  7883. {
  7884. "__id__": 256
  7885. }
  7886. ],
  7887. "_active": true,
  7888. "_components": [
  7889. {
  7890. "__id__": 260
  7891. },
  7892. {
  7893. "__id__": 261
  7894. }
  7895. ],
  7896. "_prefab": {
  7897. "__id__": 262
  7898. },
  7899. "_lpos": {
  7900. "__type__": "cc.Vec3",
  7901. "x": 0,
  7902. "y": 0,
  7903. "z": 0
  7904. },
  7905. "_lrot": {
  7906. "__type__": "cc.Quat",
  7907. "x": 0,
  7908. "y": 0,
  7909. "z": 0,
  7910. "w": 1
  7911. },
  7912. "_lscale": {
  7913. "__type__": "cc.Vec3",
  7914. "x": 1,
  7915. "y": 1,
  7916. "z": 1
  7917. },
  7918. "_layer": 1073741824,
  7919. "_euler": {
  7920. "__type__": "cc.Vec3",
  7921. "x": 0,
  7922. "y": 0,
  7923. "z": 0
  7924. },
  7925. "_id": ""
  7926. },
  7927. {
  7928. "__type__": "cc.Node",
  7929. "_name": "WeaponIcon",
  7930. "_objFlags": 0,
  7931. "_parent": {
  7932. "__id__": 255
  7933. },
  7934. "_children": [],
  7935. "_active": true,
  7936. "_components": [
  7937. {
  7938. "__id__": 257
  7939. },
  7940. {
  7941. "__id__": 258
  7942. }
  7943. ],
  7944. "_prefab": {
  7945. "__id__": 259
  7946. },
  7947. "_lpos": {
  7948. "__type__": "cc.Vec3",
  7949. "x": 0,
  7950. "y": 0,
  7951. "z": 0
  7952. },
  7953. "_lrot": {
  7954. "__type__": "cc.Quat",
  7955. "x": 0,
  7956. "y": 0,
  7957. "z": 0,
  7958. "w": 1
  7959. },
  7960. "_lscale": {
  7961. "__type__": "cc.Vec3",
  7962. "x": 1,
  7963. "y": 1,
  7964. "z": 1
  7965. },
  7966. "_layer": 33554432,
  7967. "_euler": {
  7968. "__type__": "cc.Vec3",
  7969. "x": 0,
  7970. "y": 0,
  7971. "z": 0
  7972. },
  7973. "_id": ""
  7974. },
  7975. {
  7976. "__type__": "cc.UITransformComponent",
  7977. "_name": "",
  7978. "_objFlags": 0,
  7979. "node": {
  7980. "__id__": 256
  7981. },
  7982. "_enabled": true,
  7983. "_priority": 0,
  7984. "_contentSize": {
  7985. "__type__": "cc.Size",
  7986. "width": 40,
  7987. "height": 36
  7988. },
  7989. "_anchorPoint": {
  7990. "__type__": "cc.Vec2",
  7991. "x": 0.5,
  7992. "y": 0.5
  7993. },
  7994. "_id": ""
  7995. },
  7996. {
  7997. "__type__": "cc.SpriteComponent",
  7998. "_name": "",
  7999. "_objFlags": 0,
  8000. "node": {
  8001. "__id__": 256
  8002. },
  8003. "_enabled": true,
  8004. "_srcBlendFactor": 2,
  8005. "_dstBlendFactor": 4,
  8006. "_color": {
  8007. "__type__": "cc.Color",
  8008. "r": 255,
  8009. "g": 255,
  8010. "b": 255,
  8011. "a": 255
  8012. },
  8013. "_sharedMaterial": null,
  8014. "_spriteFrame": {
  8015. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941"
  8016. },
  8017. "_type": 0,
  8018. "_fillType": 0,
  8019. "_sizeMode": 1,
  8020. "_fillCenter": {
  8021. "__type__": "cc.Vec2",
  8022. "x": 0,
  8023. "y": 0
  8024. },
  8025. "_fillStart": 0,
  8026. "_fillRange": 0,
  8027. "_isTrimmedMode": true,
  8028. "_useGrayscale": false,
  8029. "_atlas": null,
  8030. "_id": ""
  8031. },
  8032. {
  8033. "__type__": "cc.PrefabInfo",
  8034. "root": {
  8035. "__id__": 1
  8036. },
  8037. "asset": {
  8038. "__id__": 0
  8039. },
  8040. "fileId": "f0gxMGQ+tAs6VnYHt3THDz",
  8041. "sync": false,
  8042. "_synced": {
  8043. "default": false,
  8044. "serializable": false
  8045. }
  8046. },
  8047. {
  8048. "__type__": "cc.UITransformComponent",
  8049. "_name": "DragLayer<UITransformComponent>",
  8050. "_objFlags": 0,
  8051. "node": {
  8052. "__id__": 255
  8053. },
  8054. "_enabled": true,
  8055. "_priority": 0,
  8056. "_contentSize": {
  8057. "__type__": "cc.Size",
  8058. "width": 750,
  8059. "height": 1334
  8060. },
  8061. "_anchorPoint": {
  8062. "__type__": "cc.Vec2",
  8063. "x": 0,
  8064. "y": 0
  8065. },
  8066. "_id": ""
  8067. },
  8068. {
  8069. "__type__": "cc.WidgetComponent",
  8070. "_name": "DragLayer<WidgetComponent>",
  8071. "_objFlags": 0,
  8072. "node": {
  8073. "__id__": 255
  8074. },
  8075. "_enabled": true,
  8076. "_alignFlags": 45,
  8077. "_target": null,
  8078. "_left": 0,
  8079. "_right": 0,
  8080. "_top": 0,
  8081. "_bottom": 0,
  8082. "_horizontalCenter": 0,
  8083. "_verticalCenter": 0,
  8084. "_isAbsLeft": true,
  8085. "_isAbsRight": true,
  8086. "_isAbsTop": true,
  8087. "_isAbsBottom": true,
  8088. "_isAbsHorizontalCenter": true,
  8089. "_isAbsVerticalCenter": true,
  8090. "_originalWidth": 100,
  8091. "_originalHeight": 100,
  8092. "_alignMode": 2,
  8093. "_lockFlags": 0,
  8094. "_id": ""
  8095. },
  8096. {
  8097. "__type__": "cc.PrefabInfo",
  8098. "root": {
  8099. "__id__": 1
  8100. },
  8101. "asset": {
  8102. "__id__": 0
  8103. },
  8104. "fileId": "1fUaXPI/dEQZtqV4YDubOI",
  8105. "sync": false,
  8106. "_synced": {
  8107. "default": false,
  8108. "serializable": false
  8109. }
  8110. },
  8111. {
  8112. "__type__": "cc.UITransformComponent",
  8113. "_name": "PrepareUI<UITransformComponent>",
  8114. "_objFlags": 0,
  8115. "node": {
  8116. "__id__": 1
  8117. },
  8118. "_enabled": true,
  8119. "_priority": 0,
  8120. "_contentSize": {
  8121. "__type__": "cc.Size",
  8122. "width": 750,
  8123. "height": 1334
  8124. },
  8125. "_anchorPoint": {
  8126. "__type__": "cc.Vec2",
  8127. "x": 0,
  8128. "y": 0
  8129. },
  8130. "_id": ""
  8131. },
  8132. {
  8133. "__type__": "cc.WidgetComponent",
  8134. "_name": "PrepareUI<WidgetComponent>",
  8135. "_objFlags": 0,
  8136. "node": {
  8137. "__id__": 1
  8138. },
  8139. "_enabled": true,
  8140. "_alignFlags": 45,
  8141. "_target": null,
  8142. "_left": 0,
  8143. "_right": 0,
  8144. "_top": 0,
  8145. "_bottom": 0,
  8146. "_horizontalCenter": 0,
  8147. "_verticalCenter": 0,
  8148. "_isAbsLeft": true,
  8149. "_isAbsRight": true,
  8150. "_isAbsTop": true,
  8151. "_isAbsBottom": true,
  8152. "_isAbsHorizontalCenter": true,
  8153. "_isAbsVerticalCenter": true,
  8154. "_originalWidth": 100,
  8155. "_originalHeight": 100,
  8156. "_alignMode": 2,
  8157. "_lockFlags": 0,
  8158. "_id": ""
  8159. },
  8160. {
  8161. "__type__": "8fc93vzZ1xF6qpWn8Qq53+4",
  8162. "_name": "PrepareUI<PrepareMediator>",
  8163. "_objFlags": 0,
  8164. "node": {
  8165. "__id__": 1
  8166. },
  8167. "_enabled": true,
  8168. "bufferNode": {
  8169. "__id__": 123
  8170. },
  8171. "glodLabel": {
  8172. "__id__": 78
  8173. },
  8174. "glodLabel1": {
  8175. "__id__": 82
  8176. },
  8177. "diamondLabel": {
  8178. "__id__": 100
  8179. },
  8180. "gunNameLabel": {
  8181. "__id__": 35
  8182. },
  8183. "levelLabel": {
  8184. "__id__": 48
  8185. },
  8186. "shopButton": {
  8187. "__id__": 220
  8188. },
  8189. "autoSynthesisLabel": {
  8190. "__id__": 148
  8191. },
  8192. "quickBuyButton": {
  8193. "__id__": 251
  8194. },
  8195. "quickBuyWeaponIcon": {
  8196. "__id__": 247
  8197. },
  8198. "quickBuyWeaponPriceLabel": {
  8199. "__id__": 243
  8200. },
  8201. "weaponDragIcon": {
  8202. "__id__": 258
  8203. },
  8204. "deleteWeaponNode": {
  8205. "__id__": 204
  8206. },
  8207. "equipWeaponNode": {
  8208. "__id__": 29
  8209. },
  8210. "WeaponCellPrefab": {
  8211. "__uuid__": "eb8a5df4-1c93-49a2-a673-06ed863b2c27"
  8212. },
  8213. "weaponList": {
  8214. "__id__": 58
  8215. },
  8216. "_id": ""
  8217. },
  8218. {
  8219. "__type__": "cc.PrefabInfo",
  8220. "root": {
  8221. "__id__": 1
  8222. },
  8223. "asset": {
  8224. "__id__": 0
  8225. },
  8226. "fileId": "54NQB7OnVAirjVxHlFJxQM",
  8227. "sync": false,
  8228. "_synced": {
  8229. "default": false,
  8230. "serializable": false
  8231. }
  8232. }
  8233. ]