SelectTroops.prefab 157 KB

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