StartScene.scene 247 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "StartScene",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "StartScene",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": {
  26. "__id__": 349
  27. },
  28. "_lpos": {
  29. "__type__": "cc.Vec3",
  30. "x": 0,
  31. "y": 0,
  32. "z": 0
  33. },
  34. "_lrot": {
  35. "__type__": "cc.Quat",
  36. "x": 0,
  37. "y": 0,
  38. "z": 0,
  39. "w": 1
  40. },
  41. "_lscale": {
  42. "__type__": "cc.Vec3",
  43. "x": 1,
  44. "y": 1,
  45. "z": 1
  46. },
  47. "_mobility": 0,
  48. "_layer": 1073741824,
  49. "_euler": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "autoReleaseAssets": false,
  56. "_globals": {
  57. "__id__": 368
  58. },
  59. "_id": "099ece80-6a52-4fc1-8f49-dcd0345183d0"
  60. },
  61. {
  62. "__type__": "cc.Node",
  63. "_name": "Canvas",
  64. "_objFlags": 0,
  65. "__editorExtras__": {},
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 5
  75. },
  76. {
  77. "__id__": 333
  78. }
  79. ],
  80. "_active": true,
  81. "_components": [
  82. {
  83. "__id__": 345
  84. },
  85. {
  86. "__id__": 346
  87. },
  88. {
  89. "__id__": 347
  90. },
  91. {
  92. "__id__": 348
  93. }
  94. ],
  95. "_prefab": null,
  96. "_lpos": {
  97. "__type__": "cc.Vec3",
  98. "x": 640,
  99. "y": 360.00000000000006,
  100. "z": 0
  101. },
  102. "_lrot": {
  103. "__type__": "cc.Quat",
  104. "x": 0,
  105. "y": 0,
  106. "z": 0,
  107. "w": 1
  108. },
  109. "_lscale": {
  110. "__type__": "cc.Vec3",
  111. "x": 1,
  112. "y": 1,
  113. "z": 1
  114. },
  115. "_mobility": 0,
  116. "_layer": 33554432,
  117. "_euler": {
  118. "__type__": "cc.Vec3",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0
  122. },
  123. "_id": "beI88Z2HpFELqR4T5EMHpg"
  124. },
  125. {
  126. "__type__": "cc.Node",
  127. "_name": "Camera",
  128. "_objFlags": 0,
  129. "__editorExtras__": {},
  130. "_parent": {
  131. "__id__": 2
  132. },
  133. "_children": [],
  134. "_active": true,
  135. "_components": [
  136. {
  137. "__id__": 4
  138. }
  139. ],
  140. "_prefab": null,
  141. "_lpos": {
  142. "__type__": "cc.Vec3",
  143. "x": 0,
  144. "y": 0,
  145. "z": 1000
  146. },
  147. "_lrot": {
  148. "__type__": "cc.Quat",
  149. "x": 0,
  150. "y": 0,
  151. "z": 0,
  152. "w": 1
  153. },
  154. "_lscale": {
  155. "__type__": "cc.Vec3",
  156. "x": 1,
  157. "y": 1,
  158. "z": 1
  159. },
  160. "_mobility": 0,
  161. "_layer": 1073741824,
  162. "_euler": {
  163. "__type__": "cc.Vec3",
  164. "x": 0,
  165. "y": 0,
  166. "z": 0
  167. },
  168. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  169. },
  170. {
  171. "__type__": "cc.Camera",
  172. "_name": "",
  173. "_objFlags": 0,
  174. "__editorExtras__": {},
  175. "node": {
  176. "__id__": 3
  177. },
  178. "_enabled": true,
  179. "__prefab": null,
  180. "_projection": 0,
  181. "_priority": 0,
  182. "_fov": 45,
  183. "_fovAxis": 0,
  184. "_orthoHeight": 365.52016985138005,
  185. "_near": 0,
  186. "_far": 1000,
  187. "_color": {
  188. "__type__": "cc.Color",
  189. "r": 0,
  190. "g": 0,
  191. "b": 0,
  192. "a": 255
  193. },
  194. "_depth": 1,
  195. "_stencil": 0,
  196. "_clearFlags": 7,
  197. "_rect": {
  198. "__type__": "cc.Rect",
  199. "x": 0,
  200. "y": 0,
  201. "width": 1,
  202. "height": 1
  203. },
  204. "_aperture": 19,
  205. "_shutter": 7,
  206. "_iso": 0,
  207. "_screenScale": 1,
  208. "_visibility": 1108344832,
  209. "_targetTexture": null,
  210. "_postProcess": null,
  211. "_usePostProcess": false,
  212. "_cameraType": -1,
  213. "_trackingType": 0,
  214. "_id": "63WIch3o5BEYRlXzTT0oWc"
  215. },
  216. {
  217. "__type__": "cc.Node",
  218. "_name": "GameRoot",
  219. "_objFlags": 0,
  220. "__editorExtras__": {},
  221. "_parent": {
  222. "__id__": 2
  223. },
  224. "_children": [
  225. {
  226. "__id__": 6
  227. },
  228. {
  229. "__id__": 18
  230. },
  231. {
  232. "__id__": 51
  233. },
  234. {
  235. "__id__": 97
  236. },
  237. {
  238. "__id__": 292
  239. }
  240. ],
  241. "_active": true,
  242. "_components": [
  243. {
  244. "__id__": 330
  245. },
  246. {
  247. "__id__": 331
  248. },
  249. {
  250. "__id__": 332
  251. }
  252. ],
  253. "_prefab": null,
  254. "_lpos": {
  255. "__type__": "cc.Vec3",
  256. "x": 0,
  257. "y": 0,
  258. "z": 0
  259. },
  260. "_lrot": {
  261. "__type__": "cc.Quat",
  262. "x": 0,
  263. "y": 0,
  264. "z": 0,
  265. "w": 1
  266. },
  267. "_lscale": {
  268. "__type__": "cc.Vec3",
  269. "x": 1,
  270. "y": 1,
  271. "z": 1
  272. },
  273. "_mobility": 0,
  274. "_layer": 33554432,
  275. "_euler": {
  276. "__type__": "cc.Vec3",
  277. "x": 0,
  278. "y": 0,
  279. "z": 0
  280. },
  281. "_id": "bcoCLCheBKu548MJo42ADu"
  282. },
  283. {
  284. "__type__": "cc.Node",
  285. "_name": "Bg",
  286. "_objFlags": 0,
  287. "__editorExtras__": {},
  288. "_parent": {
  289. "__id__": 5
  290. },
  291. "_children": [
  292. {
  293. "__id__": 7
  294. },
  295. {
  296. "__id__": 11
  297. }
  298. ],
  299. "_active": true,
  300. "_components": [
  301. {
  302. "__id__": 15
  303. },
  304. {
  305. "__id__": 16
  306. },
  307. {
  308. "__id__": 17
  309. }
  310. ],
  311. "_prefab": null,
  312. "_lpos": {
  313. "__type__": "cc.Vec3",
  314. "x": 0,
  315. "y": 0,
  316. "z": 0
  317. },
  318. "_lrot": {
  319. "__type__": "cc.Quat",
  320. "x": 0,
  321. "y": 0,
  322. "z": 0,
  323. "w": 1
  324. },
  325. "_lscale": {
  326. "__type__": "cc.Vec3",
  327. "x": 1,
  328. "y": 1,
  329. "z": 1
  330. },
  331. "_mobility": 0,
  332. "_layer": 33554432,
  333. "_euler": {
  334. "__type__": "cc.Vec3",
  335. "x": 0,
  336. "y": 0,
  337. "z": 0
  338. },
  339. "_id": "862BxgkgFPZJlc3P6YTT4D"
  340. },
  341. {
  342. "__type__": "cc.Node",
  343. "_name": "CornerLeft",
  344. "_objFlags": 0,
  345. "__editorExtras__": {},
  346. "_parent": {
  347. "__id__": 6
  348. },
  349. "_children": [],
  350. "_active": true,
  351. "_components": [
  352. {
  353. "__id__": 8
  354. },
  355. {
  356. "__id__": 9
  357. },
  358. {
  359. "__id__": 10
  360. }
  361. ],
  362. "_prefab": null,
  363. "_lpos": {
  364. "__type__": "cc.Vec3",
  365. "x": -571,
  366. "y": -303.75,
  367. "z": 0
  368. },
  369. "_lrot": {
  370. "__type__": "cc.Quat",
  371. "x": 0,
  372. "y": 0,
  373. "z": 0,
  374. "w": 1
  375. },
  376. "_lscale": {
  377. "__type__": "cc.Vec3",
  378. "x": 1,
  379. "y": 1,
  380. "z": 1
  381. },
  382. "_mobility": 0,
  383. "_layer": 33554432,
  384. "_euler": {
  385. "__type__": "cc.Vec3",
  386. "x": 0,
  387. "y": 0,
  388. "z": 0
  389. },
  390. "_id": "0c3yzXbDdMB62HQhoZxC1G"
  391. },
  392. {
  393. "__type__": "cc.UITransform",
  394. "_name": "",
  395. "_objFlags": 0,
  396. "__editorExtras__": {},
  397. "node": {
  398. "__id__": 7
  399. },
  400. "_enabled": true,
  401. "__prefab": null,
  402. "_contentSize": {
  403. "__type__": "cc.Size",
  404. "width": 138,
  405. "height": 112.5
  406. },
  407. "_anchorPoint": {
  408. "__type__": "cc.Vec2",
  409. "x": 0.5,
  410. "y": 0.5
  411. },
  412. "_id": "c2vPUApitOpaWWNe6uyyxQ"
  413. },
  414. {
  415. "__type__": "cc.Sprite",
  416. "_name": "",
  417. "_objFlags": 0,
  418. "__editorExtras__": {},
  419. "node": {
  420. "__id__": 7
  421. },
  422. "_enabled": true,
  423. "__prefab": null,
  424. "_customMaterial": null,
  425. "_srcBlendFactor": 2,
  426. "_dstBlendFactor": 4,
  427. "_color": {
  428. "__type__": "cc.Color",
  429. "r": 255,
  430. "g": 255,
  431. "b": 255,
  432. "a": 255
  433. },
  434. "_spriteFrame": {
  435. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@3f6c7",
  436. "__expectedType__": "cc.SpriteFrame"
  437. },
  438. "_type": 0,
  439. "_fillType": 0,
  440. "_sizeMode": 0,
  441. "_fillCenter": {
  442. "__type__": "cc.Vec2",
  443. "x": 0,
  444. "y": 0
  445. },
  446. "_fillStart": 0,
  447. "_fillRange": 0,
  448. "_isTrimmedMode": true,
  449. "_useGrayscale": false,
  450. "_atlas": null,
  451. "_id": "22RN+0uUlB+5WrDNA6UBLW"
  452. },
  453. {
  454. "__type__": "cc.Widget",
  455. "_name": "",
  456. "_objFlags": 0,
  457. "__editorExtras__": {},
  458. "node": {
  459. "__id__": 7
  460. },
  461. "_enabled": true,
  462. "__prefab": null,
  463. "_alignFlags": 12,
  464. "_target": null,
  465. "_left": 0,
  466. "_right": 0,
  467. "_top": 0,
  468. "_bottom": 0,
  469. "_horizontalCenter": 0,
  470. "_verticalCenter": 0,
  471. "_isAbsLeft": true,
  472. "_isAbsRight": true,
  473. "_isAbsTop": true,
  474. "_isAbsBottom": true,
  475. "_isAbsHorizontalCenter": true,
  476. "_isAbsVerticalCenter": true,
  477. "_originalWidth": 0,
  478. "_originalHeight": 0,
  479. "_alignMode": 2,
  480. "_lockFlags": 0,
  481. "_id": "f09I2znjBPm5RDKXZaKRU9"
  482. },
  483. {
  484. "__type__": "cc.Node",
  485. "_name": "CornerRight",
  486. "_objFlags": 0,
  487. "__editorExtras__": {},
  488. "_parent": {
  489. "__id__": 6
  490. },
  491. "_children": [],
  492. "_active": true,
  493. "_components": [
  494. {
  495. "__id__": 12
  496. },
  497. {
  498. "__id__": 13
  499. },
  500. {
  501. "__id__": 14
  502. }
  503. ],
  504. "_prefab": null,
  505. "_lpos": {
  506. "__type__": "cc.Vec3",
  507. "x": 570.75,
  508. "y": -303.75,
  509. "z": 0
  510. },
  511. "_lrot": {
  512. "__type__": "cc.Quat",
  513. "x": 0,
  514. "y": 0,
  515. "z": 0,
  516. "w": 1
  517. },
  518. "_lscale": {
  519. "__type__": "cc.Vec3",
  520. "x": 1,
  521. "y": 1,
  522. "z": 1
  523. },
  524. "_mobility": 0,
  525. "_layer": 33554432,
  526. "_euler": {
  527. "__type__": "cc.Vec3",
  528. "x": 0,
  529. "y": 0,
  530. "z": 0
  531. },
  532. "_id": "231UMB4vNMJLaZypg4do2i"
  533. },
  534. {
  535. "__type__": "cc.UITransform",
  536. "_name": "",
  537. "_objFlags": 0,
  538. "__editorExtras__": {},
  539. "node": {
  540. "__id__": 11
  541. },
  542. "_enabled": true,
  543. "__prefab": null,
  544. "_contentSize": {
  545. "__type__": "cc.Size",
  546. "width": 138.5,
  547. "height": 112.5
  548. },
  549. "_anchorPoint": {
  550. "__type__": "cc.Vec2",
  551. "x": 0.5,
  552. "y": 0.5
  553. },
  554. "_id": "07793NNLVHarrdK0KxvrJp"
  555. },
  556. {
  557. "__type__": "cc.Sprite",
  558. "_name": "",
  559. "_objFlags": 0,
  560. "__editorExtras__": {},
  561. "node": {
  562. "__id__": 11
  563. },
  564. "_enabled": true,
  565. "__prefab": null,
  566. "_customMaterial": null,
  567. "_srcBlendFactor": 2,
  568. "_dstBlendFactor": 4,
  569. "_color": {
  570. "__type__": "cc.Color",
  571. "r": 255,
  572. "g": 255,
  573. "b": 255,
  574. "a": 255
  575. },
  576. "_spriteFrame": {
  577. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@dbd97",
  578. "__expectedType__": "cc.SpriteFrame"
  579. },
  580. "_type": 0,
  581. "_fillType": 0,
  582. "_sizeMode": 0,
  583. "_fillCenter": {
  584. "__type__": "cc.Vec2",
  585. "x": 0,
  586. "y": 0
  587. },
  588. "_fillStart": 0,
  589. "_fillRange": 0,
  590. "_isTrimmedMode": true,
  591. "_useGrayscale": false,
  592. "_atlas": null,
  593. "_id": "85TTK3tfRNSJ9/s6nRkAoF"
  594. },
  595. {
  596. "__type__": "cc.Widget",
  597. "_name": "",
  598. "_objFlags": 0,
  599. "__editorExtras__": {},
  600. "node": {
  601. "__id__": 11
  602. },
  603. "_enabled": true,
  604. "__prefab": null,
  605. "_alignFlags": 36,
  606. "_target": null,
  607. "_left": 0,
  608. "_right": 0,
  609. "_top": 0,
  610. "_bottom": 0,
  611. "_horizontalCenter": 0,
  612. "_verticalCenter": 0,
  613. "_isAbsLeft": true,
  614. "_isAbsRight": true,
  615. "_isAbsTop": true,
  616. "_isAbsBottom": true,
  617. "_isAbsHorizontalCenter": true,
  618. "_isAbsVerticalCenter": true,
  619. "_originalWidth": 0,
  620. "_originalHeight": 0,
  621. "_alignMode": 2,
  622. "_lockFlags": 0,
  623. "_id": "bev6foNWBJForK/JeZX9E6"
  624. },
  625. {
  626. "__type__": "cc.UITransform",
  627. "_name": "",
  628. "_objFlags": 0,
  629. "__editorExtras__": {},
  630. "node": {
  631. "__id__": 6
  632. },
  633. "_enabled": true,
  634. "__prefab": null,
  635. "_contentSize": {
  636. "__type__": "cc.Size",
  637. "width": 1280,
  638. "height": 720
  639. },
  640. "_anchorPoint": {
  641. "__type__": "cc.Vec2",
  642. "x": 0.5,
  643. "y": 0.5
  644. },
  645. "_id": "20NU/hwPlCgLHSAp3+2HCb"
  646. },
  647. {
  648. "__type__": "cc.Sprite",
  649. "_name": "",
  650. "_objFlags": 0,
  651. "__editorExtras__": {},
  652. "node": {
  653. "__id__": 6
  654. },
  655. "_enabled": true,
  656. "__prefab": null,
  657. "_customMaterial": null,
  658. "_srcBlendFactor": 2,
  659. "_dstBlendFactor": 4,
  660. "_color": {
  661. "__type__": "cc.Color",
  662. "r": 244,
  663. "g": 253,
  664. "b": 233,
  665. "a": 255
  666. },
  667. "_spriteFrame": {
  668. "__uuid__": "aec9314b-0100-429b-9d8d-a9962c65d6ff@f9941",
  669. "__expectedType__": "cc.SpriteFrame"
  670. },
  671. "_type": 0,
  672. "_fillType": 0,
  673. "_sizeMode": 0,
  674. "_fillCenter": {
  675. "__type__": "cc.Vec2",
  676. "x": 0,
  677. "y": 0
  678. },
  679. "_fillStart": 0,
  680. "_fillRange": 0,
  681. "_isTrimmedMode": true,
  682. "_useGrayscale": false,
  683. "_atlas": null,
  684. "_id": "dbgHgbwmpFmLvlDKAMxayI"
  685. },
  686. {
  687. "__type__": "cc.Widget",
  688. "_name": "",
  689. "_objFlags": 0,
  690. "__editorExtras__": {},
  691. "node": {
  692. "__id__": 6
  693. },
  694. "_enabled": true,
  695. "__prefab": null,
  696. "_alignFlags": 45,
  697. "_target": {
  698. "__id__": 5
  699. },
  700. "_left": 0,
  701. "_right": 0,
  702. "_top": 0,
  703. "_bottom": 0,
  704. "_horizontalCenter": 0,
  705. "_verticalCenter": 0,
  706. "_isAbsLeft": true,
  707. "_isAbsRight": true,
  708. "_isAbsTop": true,
  709. "_isAbsBottom": true,
  710. "_isAbsHorizontalCenter": true,
  711. "_isAbsVerticalCenter": true,
  712. "_originalWidth": 100,
  713. "_originalHeight": 100,
  714. "_alignMode": 2,
  715. "_lockFlags": 0,
  716. "_id": "17IAUK6Q1JQr8ECahf0nxT"
  717. },
  718. {
  719. "__type__": "cc.Node",
  720. "_name": "BattleScene_Left",
  721. "_objFlags": 0,
  722. "__editorExtras__": {},
  723. "_parent": {
  724. "__id__": 5
  725. },
  726. "_children": [
  727. {
  728. "__id__": 19
  729. },
  730. {
  731. "__id__": 24
  732. },
  733. {
  734. "__id__": 32
  735. }
  736. ],
  737. "_active": true,
  738. "_components": [
  739. {
  740. "__id__": 47
  741. },
  742. {
  743. "__id__": 48
  744. },
  745. {
  746. "__id__": 49
  747. },
  748. {
  749. "__id__": 50
  750. }
  751. ],
  752. "_prefab": null,
  753. "_lpos": {
  754. "__type__": "cc.Vec3",
  755. "x": -240,
  756. "y": -110,
  757. "z": 0
  758. },
  759. "_lrot": {
  760. "__type__": "cc.Quat",
  761. "x": 0,
  762. "y": 0,
  763. "z": 0,
  764. "w": 1
  765. },
  766. "_lscale": {
  767. "__type__": "cc.Vec3",
  768. "x": 1,
  769. "y": 1,
  770. "z": 1
  771. },
  772. "_mobility": 0,
  773. "_layer": 33554432,
  774. "_euler": {
  775. "__type__": "cc.Vec3",
  776. "x": 0,
  777. "y": 0,
  778. "z": 0
  779. },
  780. "_id": "00GvPOXDlA5Ihr6laCL4Oe"
  781. },
  782. {
  783. "__type__": "cc.Node",
  784. "_name": "_btnLevel",
  785. "_objFlags": 0,
  786. "__editorExtras__": {},
  787. "_parent": {
  788. "__id__": 18
  789. },
  790. "_children": [],
  791. "_active": true,
  792. "_components": [
  793. {
  794. "__id__": 20
  795. },
  796. {
  797. "__id__": 21
  798. },
  799. {
  800. "__id__": 22
  801. },
  802. {
  803. "__id__": 23
  804. }
  805. ],
  806. "_prefab": null,
  807. "_lpos": {
  808. "__type__": "cc.Vec3",
  809. "x": 0,
  810. "y": -120,
  811. "z": 0
  812. },
  813. "_lrot": {
  814. "__type__": "cc.Quat",
  815. "x": 0,
  816. "y": 0,
  817. "z": 0,
  818. "w": 1
  819. },
  820. "_lscale": {
  821. "__type__": "cc.Vec3",
  822. "x": 1,
  823. "y": 1,
  824. "z": 1
  825. },
  826. "_mobility": 0,
  827. "_layer": 33554432,
  828. "_euler": {
  829. "__type__": "cc.Vec3",
  830. "x": 0,
  831. "y": 0,
  832. "z": 0
  833. },
  834. "_id": "41tKKuY4BBAYftS/rY+X1k"
  835. },
  836. {
  837. "__type__": "cc.UITransform",
  838. "_name": "",
  839. "_objFlags": 0,
  840. "__editorExtras__": {},
  841. "node": {
  842. "__id__": 19
  843. },
  844. "_enabled": true,
  845. "__prefab": null,
  846. "_contentSize": {
  847. "__type__": "cc.Size",
  848. "width": 150,
  849. "height": 50.5
  850. },
  851. "_anchorPoint": {
  852. "__type__": "cc.Vec2",
  853. "x": 0.5,
  854. "y": 0.5
  855. },
  856. "_id": "58NJ4QiatOboCPzrwcQRh+"
  857. },
  858. {
  859. "__type__": "cc.Sprite",
  860. "_name": "",
  861. "_objFlags": 0,
  862. "__editorExtras__": {},
  863. "node": {
  864. "__id__": 19
  865. },
  866. "_enabled": true,
  867. "__prefab": null,
  868. "_customMaterial": null,
  869. "_srcBlendFactor": 2,
  870. "_dstBlendFactor": 4,
  871. "_color": {
  872. "__type__": "cc.Color",
  873. "r": 255,
  874. "g": 255,
  875. "b": 255,
  876. "a": 255
  877. },
  878. "_spriteFrame": {
  879. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@356ff",
  880. "__expectedType__": "cc.SpriteFrame"
  881. },
  882. "_type": 1,
  883. "_fillType": 0,
  884. "_sizeMode": 0,
  885. "_fillCenter": {
  886. "__type__": "cc.Vec2",
  887. "x": 0,
  888. "y": 0
  889. },
  890. "_fillStart": 0,
  891. "_fillRange": 0,
  892. "_isTrimmedMode": true,
  893. "_useGrayscale": false,
  894. "_atlas": null,
  895. "_id": "fe63PXo6NKia0TTL11Skff"
  896. },
  897. {
  898. "__type__": "cc.Button",
  899. "_name": "",
  900. "_objFlags": 0,
  901. "__editorExtras__": {},
  902. "node": {
  903. "__id__": 19
  904. },
  905. "_enabled": true,
  906. "__prefab": null,
  907. "clickEvents": [],
  908. "_interactable": true,
  909. "_transition": 3,
  910. "_normalColor": {
  911. "__type__": "cc.Color",
  912. "r": 214,
  913. "g": 214,
  914. "b": 214,
  915. "a": 255
  916. },
  917. "_hoverColor": {
  918. "__type__": "cc.Color",
  919. "r": 211,
  920. "g": 211,
  921. "b": 211,
  922. "a": 255
  923. },
  924. "_pressedColor": {
  925. "__type__": "cc.Color",
  926. "r": 255,
  927. "g": 255,
  928. "b": 255,
  929. "a": 255
  930. },
  931. "_disabledColor": {
  932. "__type__": "cc.Color",
  933. "r": 124,
  934. "g": 124,
  935. "b": 124,
  936. "a": 255
  937. },
  938. "_normalSprite": {
  939. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@356ff",
  940. "__expectedType__": "cc.SpriteFrame"
  941. },
  942. "_hoverSprite": null,
  943. "_pressedSprite": null,
  944. "_disabledSprite": null,
  945. "_duration": 0.1,
  946. "_zoomScale": 1.2,
  947. "_target": {
  948. "__id__": 19
  949. },
  950. "_id": "6fuZ2CdClOgpMCYgKedrXk"
  951. },
  952. {
  953. "__type__": "cc.Widget",
  954. "_name": "",
  955. "_objFlags": 0,
  956. "__editorExtras__": {},
  957. "node": {
  958. "__id__": 19
  959. },
  960. "_enabled": true,
  961. "__prefab": null,
  962. "_alignFlags": 44,
  963. "_target": null,
  964. "_left": 125,
  965. "_right": 125,
  966. "_top": 0,
  967. "_bottom": 54.75,
  968. "_horizontalCenter": 0,
  969. "_verticalCenter": 0,
  970. "_isAbsLeft": true,
  971. "_isAbsRight": true,
  972. "_isAbsTop": true,
  973. "_isAbsBottom": true,
  974. "_isAbsHorizontalCenter": true,
  975. "_isAbsVerticalCenter": true,
  976. "_originalWidth": 100,
  977. "_originalHeight": 0,
  978. "_alignMode": 2,
  979. "_lockFlags": 0,
  980. "_id": "59Wpgws7hHdLmnkpwqcmSF"
  981. },
  982. {
  983. "__type__": "cc.Node",
  984. "_name": "Level",
  985. "_objFlags": 0,
  986. "__editorExtras__": {},
  987. "_parent": {
  988. "__id__": 18
  989. },
  990. "_children": [
  991. {
  992. "__id__": 25
  993. }
  994. ],
  995. "_active": true,
  996. "_components": [
  997. {
  998. "__id__": 29
  999. },
  1000. {
  1001. "__id__": 30
  1002. },
  1003. {
  1004. "__id__": 31
  1005. }
  1006. ],
  1007. "_prefab": null,
  1008. "_lpos": {
  1009. "__type__": "cc.Vec3",
  1010. "x": -95,
  1011. "y": 35.624,
  1012. "z": 0
  1013. },
  1014. "_lrot": {
  1015. "__type__": "cc.Quat",
  1016. "x": 0,
  1017. "y": 0,
  1018. "z": 0,
  1019. "w": 1
  1020. },
  1021. "_lscale": {
  1022. "__type__": "cc.Vec3",
  1023. "x": 1,
  1024. "y": 1,
  1025. "z": 1
  1026. },
  1027. "_mobility": 0,
  1028. "_layer": 33554432,
  1029. "_euler": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 0,
  1032. "y": 0,
  1033. "z": 0
  1034. },
  1035. "_id": "c4plNMkVVGqqFLZ9Yyj+ul"
  1036. },
  1037. {
  1038. "__type__": "cc.Node",
  1039. "_name": "_curLv",
  1040. "_objFlags": 0,
  1041. "__editorExtras__": {},
  1042. "_parent": {
  1043. "__id__": 24
  1044. },
  1045. "_children": [],
  1046. "_active": true,
  1047. "_components": [
  1048. {
  1049. "__id__": 26
  1050. },
  1051. {
  1052. "__id__": 27
  1053. },
  1054. {
  1055. "__id__": 28
  1056. }
  1057. ],
  1058. "_prefab": null,
  1059. "_lpos": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 60,
  1062. "y": 0,
  1063. "z": 0
  1064. },
  1065. "_lrot": {
  1066. "__type__": "cc.Quat",
  1067. "x": 0,
  1068. "y": 0,
  1069. "z": 0,
  1070. "w": 1
  1071. },
  1072. "_lscale": {
  1073. "__type__": "cc.Vec3",
  1074. "x": 1,
  1075. "y": 1,
  1076. "z": 1
  1077. },
  1078. "_mobility": 0,
  1079. "_layer": 33554432,
  1080. "_euler": {
  1081. "__type__": "cc.Vec3",
  1082. "x": 0,
  1083. "y": 0,
  1084. "z": 0
  1085. },
  1086. "_id": "e7oM7j3xVJg7uOBo4lZiyk"
  1087. },
  1088. {
  1089. "__type__": "cc.UITransform",
  1090. "_name": "",
  1091. "_objFlags": 0,
  1092. "__editorExtras__": {},
  1093. "node": {
  1094. "__id__": 25
  1095. },
  1096. "_enabled": true,
  1097. "__prefab": null,
  1098. "_contentSize": {
  1099. "__type__": "cc.Size",
  1100. "width": 22.24609375,
  1101. "height": 50.4
  1102. },
  1103. "_anchorPoint": {
  1104. "__type__": "cc.Vec2",
  1105. "x": 0,
  1106. "y": 0.5
  1107. },
  1108. "_id": "6aNXmk4VhKZod76qdbQ32O"
  1109. },
  1110. {
  1111. "__type__": "cc.Widget",
  1112. "_name": "",
  1113. "_objFlags": 0,
  1114. "__editorExtras__": {},
  1115. "node": {
  1116. "__id__": 25
  1117. },
  1118. "_enabled": true,
  1119. "__prefab": null,
  1120. "_alignFlags": 13,
  1121. "_target": null,
  1122. "_left": 120,
  1123. "_right": 0,
  1124. "_top": 0,
  1125. "_bottom": 0,
  1126. "_horizontalCenter": 0,
  1127. "_verticalCenter": 0,
  1128. "_isAbsLeft": true,
  1129. "_isAbsRight": true,
  1130. "_isAbsTop": true,
  1131. "_isAbsBottom": true,
  1132. "_isAbsHorizontalCenter": true,
  1133. "_isAbsVerticalCenter": true,
  1134. "_originalWidth": 0,
  1135. "_originalHeight": 36,
  1136. "_alignMode": 2,
  1137. "_lockFlags": 0,
  1138. "_id": "64BC3fjPRJr7nxkuf4q/Jd"
  1139. },
  1140. {
  1141. "__type__": "cc.Label",
  1142. "_name": "",
  1143. "_objFlags": 0,
  1144. "__editorExtras__": {},
  1145. "node": {
  1146. "__id__": 25
  1147. },
  1148. "_enabled": true,
  1149. "__prefab": null,
  1150. "_customMaterial": null,
  1151. "_srcBlendFactor": 2,
  1152. "_dstBlendFactor": 4,
  1153. "_color": {
  1154. "__type__": "cc.Color",
  1155. "r": 255,
  1156. "g": 20,
  1157. "b": 180,
  1158. "a": 255
  1159. },
  1160. "_string": "1",
  1161. "_horizontalAlign": 1,
  1162. "_verticalAlign": 1,
  1163. "_actualFontSize": 40,
  1164. "_fontSize": 40,
  1165. "_fontFamily": "Arial",
  1166. "_lineHeight": 40,
  1167. "_overflow": 0,
  1168. "_enableWrapText": true,
  1169. "_font": null,
  1170. "_isSystemFontUsed": true,
  1171. "_spacingX": 0,
  1172. "_isItalic": false,
  1173. "_isBold": false,
  1174. "_isUnderline": false,
  1175. "_underlineHeight": 2,
  1176. "_cacheMode": 0,
  1177. "_enableOutline": false,
  1178. "_outlineColor": {
  1179. "__type__": "cc.Color",
  1180. "r": 0,
  1181. "g": 0,
  1182. "b": 0,
  1183. "a": 255
  1184. },
  1185. "_outlineWidth": 2,
  1186. "_enableShadow": false,
  1187. "_shadowColor": {
  1188. "__type__": "cc.Color",
  1189. "r": 0,
  1190. "g": 0,
  1191. "b": 0,
  1192. "a": 255
  1193. },
  1194. "_shadowOffset": {
  1195. "__type__": "cc.Vec2",
  1196. "x": 2,
  1197. "y": 2
  1198. },
  1199. "_shadowBlur": 2,
  1200. "_id": "09gCHJTipPvZZFT+x/iWsD"
  1201. },
  1202. {
  1203. "__type__": "cc.UITransform",
  1204. "_name": "",
  1205. "_objFlags": 0,
  1206. "__editorExtras__": {},
  1207. "node": {
  1208. "__id__": 24
  1209. },
  1210. "_enabled": true,
  1211. "__prefab": null,
  1212. "_contentSize": {
  1213. "__type__": "cc.Size",
  1214. "width": 120,
  1215. "height": 50.4
  1216. },
  1217. "_anchorPoint": {
  1218. "__type__": "cc.Vec2",
  1219. "x": 0.5,
  1220. "y": 0.5
  1221. },
  1222. "_id": "8azJ0dP9NN/pPDX4dGyqdS"
  1223. },
  1224. {
  1225. "__type__": "cc.Label",
  1226. "_name": "",
  1227. "_objFlags": 0,
  1228. "__editorExtras__": {},
  1229. "node": {
  1230. "__id__": 24
  1231. },
  1232. "_enabled": true,
  1233. "__prefab": null,
  1234. "_customMaterial": null,
  1235. "_srcBlendFactor": 2,
  1236. "_dstBlendFactor": 4,
  1237. "_color": {
  1238. "__type__": "cc.Color",
  1239. "r": 70,
  1240. "g": 160,
  1241. "b": 243,
  1242. "a": 255
  1243. },
  1244. "_string": "关卡:",
  1245. "_horizontalAlign": 1,
  1246. "_verticalAlign": 1,
  1247. "_actualFontSize": 40,
  1248. "_fontSize": 40,
  1249. "_fontFamily": "Arial",
  1250. "_lineHeight": 40,
  1251. "_overflow": 0,
  1252. "_enableWrapText": true,
  1253. "_font": null,
  1254. "_isSystemFontUsed": true,
  1255. "_spacingX": 0,
  1256. "_isItalic": false,
  1257. "_isBold": false,
  1258. "_isUnderline": false,
  1259. "_underlineHeight": 2,
  1260. "_cacheMode": 0,
  1261. "_enableOutline": false,
  1262. "_outlineColor": {
  1263. "__type__": "cc.Color",
  1264. "r": 0,
  1265. "g": 0,
  1266. "b": 0,
  1267. "a": 255
  1268. },
  1269. "_outlineWidth": 2,
  1270. "_enableShadow": false,
  1271. "_shadowColor": {
  1272. "__type__": "cc.Color",
  1273. "r": 0,
  1274. "g": 0,
  1275. "b": 0,
  1276. "a": 255
  1277. },
  1278. "_shadowOffset": {
  1279. "__type__": "cc.Vec2",
  1280. "x": 2,
  1281. "y": 2
  1282. },
  1283. "_shadowBlur": 2,
  1284. "_id": "f4rp1+cCtAm7u9Av66G9iO"
  1285. },
  1286. {
  1287. "__type__": "cc.Widget",
  1288. "_name": "",
  1289. "_objFlags": 0,
  1290. "__editorExtras__": {},
  1291. "node": {
  1292. "__id__": 24
  1293. },
  1294. "_enabled": true,
  1295. "__prefab": null,
  1296. "_alignFlags": 8,
  1297. "_target": null,
  1298. "_left": 45,
  1299. "_right": 0,
  1300. "_top": 0,
  1301. "_bottom": 0,
  1302. "_horizontalCenter": 0,
  1303. "_verticalCenter": 0,
  1304. "_isAbsLeft": true,
  1305. "_isAbsRight": true,
  1306. "_isAbsTop": true,
  1307. "_isAbsBottom": true,
  1308. "_isAbsHorizontalCenter": true,
  1309. "_isAbsVerticalCenter": true,
  1310. "_originalWidth": 0,
  1311. "_originalHeight": 0,
  1312. "_alignMode": 2,
  1313. "_lockFlags": 0,
  1314. "_id": "3dn/AoqChGg6xeIugvI0WQ"
  1315. },
  1316. {
  1317. "__type__": "cc.Node",
  1318. "_name": "EditBox",
  1319. "_objFlags": 0,
  1320. "__editorExtras__": {},
  1321. "_parent": {
  1322. "__id__": 18
  1323. },
  1324. "_children": [
  1325. {
  1326. "__id__": 33
  1327. },
  1328. {
  1329. "__id__": 36
  1330. },
  1331. {
  1332. "__id__": 39
  1333. }
  1334. ],
  1335. "_active": true,
  1336. "_components": [
  1337. {
  1338. "__id__": 43
  1339. },
  1340. {
  1341. "__id__": 44
  1342. },
  1343. {
  1344. "__id__": 45
  1345. },
  1346. {
  1347. "__id__": 46
  1348. }
  1349. ],
  1350. "_prefab": null,
  1351. "_lpos": {
  1352. "__type__": "cc.Vec3",
  1353. "x": -110,
  1354. "y": 230,
  1355. "z": 0
  1356. },
  1357. "_lrot": {
  1358. "__type__": "cc.Quat",
  1359. "x": 0,
  1360. "y": 0,
  1361. "z": 0,
  1362. "w": 1
  1363. },
  1364. "_lscale": {
  1365. "__type__": "cc.Vec3",
  1366. "x": 1,
  1367. "y": 1,
  1368. "z": 1
  1369. },
  1370. "_mobility": 0,
  1371. "_layer": 33554432,
  1372. "_euler": {
  1373. "__type__": "cc.Vec3",
  1374. "x": 0,
  1375. "y": 0,
  1376. "z": 0
  1377. },
  1378. "_id": "9aRdl77wVJu7ZcHJoqerbK"
  1379. },
  1380. {
  1381. "__type__": "cc.Node",
  1382. "_name": "TEXT_LABEL",
  1383. "_objFlags": 0,
  1384. "__editorExtras__": {},
  1385. "_parent": {
  1386. "__id__": 32
  1387. },
  1388. "_children": [],
  1389. "_active": false,
  1390. "_components": [
  1391. {
  1392. "__id__": 34
  1393. },
  1394. {
  1395. "__id__": 35
  1396. }
  1397. ],
  1398. "_prefab": null,
  1399. "_lpos": {
  1400. "__type__": "cc.Vec3",
  1401. "x": -78,
  1402. "y": 20,
  1403. "z": 0
  1404. },
  1405. "_lrot": {
  1406. "__type__": "cc.Quat",
  1407. "x": 0,
  1408. "y": 0,
  1409. "z": 0,
  1410. "w": 1
  1411. },
  1412. "_lscale": {
  1413. "__type__": "cc.Vec3",
  1414. "x": 1,
  1415. "y": 1,
  1416. "z": 1
  1417. },
  1418. "_mobility": 0,
  1419. "_layer": 33554432,
  1420. "_euler": {
  1421. "__type__": "cc.Vec3",
  1422. "x": 0,
  1423. "y": 0,
  1424. "z": 0
  1425. },
  1426. "_id": "98oUgxotRMdYjzfFRqLIbn"
  1427. },
  1428. {
  1429. "__type__": "cc.UITransform",
  1430. "_name": "",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "node": {
  1434. "__id__": 33
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": null,
  1438. "_contentSize": {
  1439. "__type__": "cc.Size",
  1440. "width": 158,
  1441. "height": 40
  1442. },
  1443. "_anchorPoint": {
  1444. "__type__": "cc.Vec2",
  1445. "x": 0,
  1446. "y": 1
  1447. },
  1448. "_id": "64X5AuFxRDgLclhDwZAXOq"
  1449. },
  1450. {
  1451. "__type__": "cc.Label",
  1452. "_name": "",
  1453. "_objFlags": 0,
  1454. "__editorExtras__": {},
  1455. "node": {
  1456. "__id__": 33
  1457. },
  1458. "_enabled": true,
  1459. "__prefab": null,
  1460. "_customMaterial": null,
  1461. "_srcBlendFactor": 2,
  1462. "_dstBlendFactor": 4,
  1463. "_color": {
  1464. "__type__": "cc.Color",
  1465. "r": 104,
  1466. "g": 104,
  1467. "b": 104,
  1468. "a": 255
  1469. },
  1470. "_string": "",
  1471. "_horizontalAlign": 0,
  1472. "_verticalAlign": 1,
  1473. "_actualFontSize": 20,
  1474. "_fontSize": 20,
  1475. "_fontFamily": "Arial",
  1476. "_lineHeight": 40,
  1477. "_overflow": 1,
  1478. "_enableWrapText": false,
  1479. "_font": null,
  1480. "_isSystemFontUsed": true,
  1481. "_spacingX": 0,
  1482. "_isItalic": false,
  1483. "_isBold": false,
  1484. "_isUnderline": false,
  1485. "_underlineHeight": 2,
  1486. "_cacheMode": 0,
  1487. "_enableOutline": false,
  1488. "_outlineColor": {
  1489. "__type__": "cc.Color",
  1490. "r": 0,
  1491. "g": 0,
  1492. "b": 0,
  1493. "a": 255
  1494. },
  1495. "_outlineWidth": 2,
  1496. "_enableShadow": false,
  1497. "_shadowColor": {
  1498. "__type__": "cc.Color",
  1499. "r": 0,
  1500. "g": 0,
  1501. "b": 0,
  1502. "a": 255
  1503. },
  1504. "_shadowOffset": {
  1505. "__type__": "cc.Vec2",
  1506. "x": 2,
  1507. "y": 2
  1508. },
  1509. "_shadowBlur": 2,
  1510. "_id": "e90CHLMfZDN5U6Jjb/xMyd"
  1511. },
  1512. {
  1513. "__type__": "cc.Node",
  1514. "_name": "PLACEHOLDER_LABEL",
  1515. "_objFlags": 0,
  1516. "__editorExtras__": {},
  1517. "_parent": {
  1518. "__id__": 32
  1519. },
  1520. "_children": [],
  1521. "_active": true,
  1522. "_components": [
  1523. {
  1524. "__id__": 37
  1525. },
  1526. {
  1527. "__id__": 38
  1528. }
  1529. ],
  1530. "_prefab": null,
  1531. "_lpos": {
  1532. "__type__": "cc.Vec3",
  1533. "x": -78,
  1534. "y": 20,
  1535. "z": 0
  1536. },
  1537. "_lrot": {
  1538. "__type__": "cc.Quat",
  1539. "x": 0,
  1540. "y": 0,
  1541. "z": 0,
  1542. "w": 1
  1543. },
  1544. "_lscale": {
  1545. "__type__": "cc.Vec3",
  1546. "x": 1,
  1547. "y": 1,
  1548. "z": 1
  1549. },
  1550. "_mobility": 0,
  1551. "_layer": 33554432,
  1552. "_euler": {
  1553. "__type__": "cc.Vec3",
  1554. "x": 0,
  1555. "y": 0,
  1556. "z": 0
  1557. },
  1558. "_id": "feMULMz7hLSJLxclLGxnrP"
  1559. },
  1560. {
  1561. "__type__": "cc.UITransform",
  1562. "_name": "",
  1563. "_objFlags": 0,
  1564. "__editorExtras__": {},
  1565. "node": {
  1566. "__id__": 36
  1567. },
  1568. "_enabled": true,
  1569. "__prefab": null,
  1570. "_contentSize": {
  1571. "__type__": "cc.Size",
  1572. "width": 158,
  1573. "height": 40
  1574. },
  1575. "_anchorPoint": {
  1576. "__type__": "cc.Vec2",
  1577. "x": 0,
  1578. "y": 1
  1579. },
  1580. "_id": "640J2x0tVC0YkB3DwEeWJc"
  1581. },
  1582. {
  1583. "__type__": "cc.Label",
  1584. "_name": "",
  1585. "_objFlags": 0,
  1586. "__editorExtras__": {},
  1587. "node": {
  1588. "__id__": 36
  1589. },
  1590. "_enabled": true,
  1591. "__prefab": null,
  1592. "_customMaterial": null,
  1593. "_srcBlendFactor": 2,
  1594. "_dstBlendFactor": 4,
  1595. "_color": {
  1596. "__type__": "cc.Color",
  1597. "r": 104,
  1598. "g": 104,
  1599. "b": 104,
  1600. "a": 255
  1601. },
  1602. "_string": "Enter text here...",
  1603. "_horizontalAlign": 0,
  1604. "_verticalAlign": 1,
  1605. "_actualFontSize": 20,
  1606. "_fontSize": 20,
  1607. "_fontFamily": "Arial",
  1608. "_lineHeight": 40,
  1609. "_overflow": 1,
  1610. "_enableWrapText": false,
  1611. "_font": null,
  1612. "_isSystemFontUsed": true,
  1613. "_spacingX": 0,
  1614. "_isItalic": false,
  1615. "_isBold": false,
  1616. "_isUnderline": false,
  1617. "_underlineHeight": 2,
  1618. "_cacheMode": 0,
  1619. "_enableOutline": false,
  1620. "_outlineColor": {
  1621. "__type__": "cc.Color",
  1622. "r": 0,
  1623. "g": 0,
  1624. "b": 0,
  1625. "a": 255
  1626. },
  1627. "_outlineWidth": 2,
  1628. "_enableShadow": false,
  1629. "_shadowColor": {
  1630. "__type__": "cc.Color",
  1631. "r": 0,
  1632. "g": 0,
  1633. "b": 0,
  1634. "a": 255
  1635. },
  1636. "_shadowOffset": {
  1637. "__type__": "cc.Vec2",
  1638. "x": 2,
  1639. "y": 2
  1640. },
  1641. "_shadowBlur": 2,
  1642. "_id": "f5FgUpnKNP8biljxiKU82A"
  1643. },
  1644. {
  1645. "__type__": "cc.Node",
  1646. "_name": "Label",
  1647. "_objFlags": 0,
  1648. "__editorExtras__": {},
  1649. "_parent": {
  1650. "__id__": 32
  1651. },
  1652. "_children": [],
  1653. "_active": true,
  1654. "_components": [
  1655. {
  1656. "__id__": 40
  1657. },
  1658. {
  1659. "__id__": 41
  1660. },
  1661. {
  1662. "__id__": 42
  1663. }
  1664. ],
  1665. "_prefab": null,
  1666. "_lpos": {
  1667. "__type__": "cc.Vec3",
  1668. "x": -40,
  1669. "y": 34.8,
  1670. "z": 0
  1671. },
  1672. "_lrot": {
  1673. "__type__": "cc.Quat",
  1674. "x": 0,
  1675. "y": 0,
  1676. "z": 0,
  1677. "w": 1
  1678. },
  1679. "_lscale": {
  1680. "__type__": "cc.Vec3",
  1681. "x": 1,
  1682. "y": 1,
  1683. "z": 1
  1684. },
  1685. "_mobility": 0,
  1686. "_layer": 33554432,
  1687. "_euler": {
  1688. "__type__": "cc.Vec3",
  1689. "x": 0,
  1690. "y": 0,
  1691. "z": 0
  1692. },
  1693. "_id": "fao4Mz0HdLHLIuLuW0/dh0"
  1694. },
  1695. {
  1696. "__type__": "cc.UITransform",
  1697. "_name": "",
  1698. "_objFlags": 0,
  1699. "__editorExtras__": {},
  1700. "node": {
  1701. "__id__": 39
  1702. },
  1703. "_enabled": true,
  1704. "__prefab": null,
  1705. "_contentSize": {
  1706. "__type__": "cc.Size",
  1707. "width": 80,
  1708. "height": 50.4
  1709. },
  1710. "_anchorPoint": {
  1711. "__type__": "cc.Vec2",
  1712. "x": 0.5,
  1713. "y": 0.5
  1714. },
  1715. "_id": "7dllkNq1FH6rmm+Pko67S2"
  1716. },
  1717. {
  1718. "__type__": "cc.Label",
  1719. "_name": "",
  1720. "_objFlags": 0,
  1721. "__editorExtras__": {},
  1722. "node": {
  1723. "__id__": 39
  1724. },
  1725. "_enabled": true,
  1726. "__prefab": null,
  1727. "_customMaterial": null,
  1728. "_srcBlendFactor": 2,
  1729. "_dstBlendFactor": 4,
  1730. "_color": {
  1731. "__type__": "cc.Color",
  1732. "r": 255,
  1733. "g": 255,
  1734. "b": 255,
  1735. "a": 255
  1736. },
  1737. "_string": "欢迎回来",
  1738. "_horizontalAlign": 1,
  1739. "_verticalAlign": 1,
  1740. "_actualFontSize": 20,
  1741. "_fontSize": 20,
  1742. "_fontFamily": "Arial",
  1743. "_lineHeight": 40,
  1744. "_overflow": 0,
  1745. "_enableWrapText": true,
  1746. "_font": null,
  1747. "_isSystemFontUsed": true,
  1748. "_spacingX": 0,
  1749. "_isItalic": false,
  1750. "_isBold": false,
  1751. "_isUnderline": false,
  1752. "_underlineHeight": 2,
  1753. "_cacheMode": 0,
  1754. "_enableOutline": false,
  1755. "_outlineColor": {
  1756. "__type__": "cc.Color",
  1757. "r": 0,
  1758. "g": 0,
  1759. "b": 0,
  1760. "a": 255
  1761. },
  1762. "_outlineWidth": 2,
  1763. "_enableShadow": false,
  1764. "_shadowColor": {
  1765. "__type__": "cc.Color",
  1766. "r": 0,
  1767. "g": 0,
  1768. "b": 0,
  1769. "a": 255
  1770. },
  1771. "_shadowOffset": {
  1772. "__type__": "cc.Vec2",
  1773. "x": 2,
  1774. "y": 2
  1775. },
  1776. "_shadowBlur": 2,
  1777. "_id": "86Xw+fvQJPOKhL1GPNAlde"
  1778. },
  1779. {
  1780. "__type__": "cc.Widget",
  1781. "_name": "",
  1782. "_objFlags": 0,
  1783. "__editorExtras__": {},
  1784. "node": {
  1785. "__id__": 39
  1786. },
  1787. "_enabled": true,
  1788. "__prefab": null,
  1789. "_alignFlags": 9,
  1790. "_target": {
  1791. "__id__": 32
  1792. },
  1793. "_left": 0,
  1794. "_right": 0,
  1795. "_top": -40,
  1796. "_bottom": 0,
  1797. "_horizontalCenter": 0,
  1798. "_verticalCenter": 0,
  1799. "_isAbsLeft": true,
  1800. "_isAbsRight": true,
  1801. "_isAbsTop": true,
  1802. "_isAbsBottom": true,
  1803. "_isAbsHorizontalCenter": true,
  1804. "_isAbsVerticalCenter": true,
  1805. "_originalWidth": 0,
  1806. "_originalHeight": 0,
  1807. "_alignMode": 2,
  1808. "_lockFlags": 0,
  1809. "_id": "26XmVrvF1JDoixS/mbn57L"
  1810. },
  1811. {
  1812. "__type__": "cc.UITransform",
  1813. "_name": "",
  1814. "_objFlags": 0,
  1815. "__editorExtras__": {},
  1816. "node": {
  1817. "__id__": 32
  1818. },
  1819. "_enabled": true,
  1820. "__prefab": null,
  1821. "_contentSize": {
  1822. "__type__": "cc.Size",
  1823. "width": 160,
  1824. "height": 40
  1825. },
  1826. "_anchorPoint": {
  1827. "__type__": "cc.Vec2",
  1828. "x": 0.5,
  1829. "y": 0.5
  1830. },
  1831. "_id": "ccMFgdFylMQb71ZMHqMqIW"
  1832. },
  1833. {
  1834. "__type__": "cc.Sprite",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "__editorExtras__": {},
  1838. "node": {
  1839. "__id__": 32
  1840. },
  1841. "_enabled": true,
  1842. "__prefab": null,
  1843. "_customMaterial": null,
  1844. "_srcBlendFactor": 2,
  1845. "_dstBlendFactor": 4,
  1846. "_color": {
  1847. "__type__": "cc.Color",
  1848. "r": 255,
  1849. "g": 255,
  1850. "b": 255,
  1851. "a": 255
  1852. },
  1853. "_spriteFrame": {
  1854. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@975ac",
  1855. "__expectedType__": "cc.SpriteFrame"
  1856. },
  1857. "_type": 1,
  1858. "_fillType": 0,
  1859. "_sizeMode": 0,
  1860. "_fillCenter": {
  1861. "__type__": "cc.Vec2",
  1862. "x": 0,
  1863. "y": 0
  1864. },
  1865. "_fillStart": 0,
  1866. "_fillRange": 0,
  1867. "_isTrimmedMode": true,
  1868. "_useGrayscale": false,
  1869. "_atlas": null,
  1870. "_id": "d2xZlFQ1lFQKWkqX/UiTu8"
  1871. },
  1872. {
  1873. "__type__": "cc.EditBox",
  1874. "_name": "",
  1875. "_objFlags": 0,
  1876. "__editorExtras__": {},
  1877. "node": {
  1878. "__id__": 32
  1879. },
  1880. "_enabled": true,
  1881. "__prefab": null,
  1882. "editingDidBegan": [],
  1883. "textChanged": [],
  1884. "editingDidEnded": [],
  1885. "editingReturn": [],
  1886. "_textLabel": {
  1887. "__id__": 35
  1888. },
  1889. "_placeholderLabel": {
  1890. "__id__": 38
  1891. },
  1892. "_returnType": 0,
  1893. "_string": "",
  1894. "_tabIndex": 0,
  1895. "_backgroundImage": {
  1896. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@975ac",
  1897. "__expectedType__": "cc.SpriteFrame"
  1898. },
  1899. "_inputFlag": 5,
  1900. "_inputMode": 6,
  1901. "_maxLength": 8,
  1902. "_id": "67iolD5n9MD6+HRGMgLBpE"
  1903. },
  1904. {
  1905. "__type__": "cc.Widget",
  1906. "_name": "",
  1907. "_objFlags": 0,
  1908. "__editorExtras__": {},
  1909. "node": {
  1910. "__id__": 32
  1911. },
  1912. "_enabled": true,
  1913. "__prefab": null,
  1914. "_alignFlags": 9,
  1915. "_target": {
  1916. "__id__": 18
  1917. },
  1918. "_left": 10,
  1919. "_right": 0,
  1920. "_top": -50,
  1921. "_bottom": 0,
  1922. "_horizontalCenter": 0,
  1923. "_verticalCenter": 0,
  1924. "_isAbsLeft": true,
  1925. "_isAbsRight": true,
  1926. "_isAbsTop": true,
  1927. "_isAbsBottom": true,
  1928. "_isAbsHorizontalCenter": true,
  1929. "_isAbsVerticalCenter": true,
  1930. "_originalWidth": 0,
  1931. "_originalHeight": 0,
  1932. "_alignMode": 2,
  1933. "_lockFlags": 0,
  1934. "_id": "f3Xd8GurxBl7mF4PX/NiMQ"
  1935. },
  1936. {
  1937. "__type__": "cc.UITransform",
  1938. "_name": "",
  1939. "_objFlags": 0,
  1940. "__editorExtras__": {},
  1941. "node": {
  1942. "__id__": 18
  1943. },
  1944. "_enabled": true,
  1945. "__prefab": null,
  1946. "_contentSize": {
  1947. "__type__": "cc.Size",
  1948. "width": 400,
  1949. "height": 400
  1950. },
  1951. "_anchorPoint": {
  1952. "__type__": "cc.Vec2",
  1953. "x": 0.5,
  1954. "y": 0.5
  1955. },
  1956. "_id": "62g/EMc11KCaIduKTKYy1z"
  1957. },
  1958. {
  1959. "__type__": "cc.Sprite",
  1960. "_name": "",
  1961. "_objFlags": 0,
  1962. "__editorExtras__": {},
  1963. "node": {
  1964. "__id__": 18
  1965. },
  1966. "_enabled": true,
  1967. "__prefab": null,
  1968. "_customMaterial": null,
  1969. "_srcBlendFactor": 2,
  1970. "_dstBlendFactor": 4,
  1971. "_color": {
  1972. "__type__": "cc.Color",
  1973. "r": 255,
  1974. "g": 255,
  1975. "b": 255,
  1976. "a": 255
  1977. },
  1978. "_spriteFrame": {
  1979. "__uuid__": "bb4aa6a1-96c4-46a7-ab7a-0c1265a52733@f9941",
  1980. "__expectedType__": "cc.SpriteFrame"
  1981. },
  1982. "_type": 0,
  1983. "_fillType": 0,
  1984. "_sizeMode": 0,
  1985. "_fillCenter": {
  1986. "__type__": "cc.Vec2",
  1987. "x": 0,
  1988. "y": 0
  1989. },
  1990. "_fillStart": 0,
  1991. "_fillRange": 0,
  1992. "_isTrimmedMode": true,
  1993. "_useGrayscale": false,
  1994. "_atlas": null,
  1995. "_id": "40yozhS0RNHq4nn3gUScRQ"
  1996. },
  1997. {
  1998. "__type__": "cc.Widget",
  1999. "_name": "",
  2000. "_objFlags": 0,
  2001. "__editorExtras__": {},
  2002. "node": {
  2003. "__id__": 18
  2004. },
  2005. "_enabled": true,
  2006. "__prefab": null,
  2007. "_alignFlags": 12,
  2008. "_target": {
  2009. "__id__": 5
  2010. },
  2011. "_left": 200,
  2012. "_right": 0,
  2013. "_top": 160,
  2014. "_bottom": 50,
  2015. "_horizontalCenter": 0,
  2016. "_verticalCenter": 0,
  2017. "_isAbsLeft": true,
  2018. "_isAbsRight": true,
  2019. "_isAbsTop": true,
  2020. "_isAbsBottom": true,
  2021. "_isAbsHorizontalCenter": true,
  2022. "_isAbsVerticalCenter": true,
  2023. "_originalWidth": 0,
  2024. "_originalHeight": 400,
  2025. "_alignMode": 2,
  2026. "_lockFlags": 0,
  2027. "_id": "0a7XdvG1xLGaB8/f3b8+Iz"
  2028. },
  2029. {
  2030. "__type__": "1599fPNn1pOl5EHk5pkIuTS",
  2031. "_name": "",
  2032. "_objFlags": 0,
  2033. "__editorExtras__": {},
  2034. "node": {
  2035. "__id__": 18
  2036. },
  2037. "_enabled": true,
  2038. "__prefab": null,
  2039. "_id": "8cl5Do4oVOuL0tfmF1aEaU"
  2040. },
  2041. {
  2042. "__type__": "cc.Node",
  2043. "_name": "BattleScene_Right",
  2044. "_objFlags": 0,
  2045. "__editorExtras__": {},
  2046. "_parent": {
  2047. "__id__": 5
  2048. },
  2049. "_children": [
  2050. {
  2051. "__id__": 52
  2052. },
  2053. {
  2054. "__id__": 57
  2055. },
  2056. {
  2057. "__id__": 77
  2058. },
  2059. {
  2060. "__id__": 85
  2061. }
  2062. ],
  2063. "_active": true,
  2064. "_components": [
  2065. {
  2066. "__id__": 93
  2067. },
  2068. {
  2069. "__id__": 94
  2070. },
  2071. {
  2072. "__id__": 95
  2073. },
  2074. {
  2075. "__id__": 96
  2076. }
  2077. ],
  2078. "_prefab": null,
  2079. "_lpos": {
  2080. "__type__": "cc.Vec3",
  2081. "x": 240,
  2082. "y": -110,
  2083. "z": 0
  2084. },
  2085. "_lrot": {
  2086. "__type__": "cc.Quat",
  2087. "x": 0,
  2088. "y": 0,
  2089. "z": 0,
  2090. "w": 1
  2091. },
  2092. "_lscale": {
  2093. "__type__": "cc.Vec3",
  2094. "x": 1,
  2095. "y": 1,
  2096. "z": 1
  2097. },
  2098. "_mobility": 0,
  2099. "_layer": 33554432,
  2100. "_euler": {
  2101. "__type__": "cc.Vec3",
  2102. "x": 0,
  2103. "y": 0,
  2104. "z": 0
  2105. },
  2106. "_id": "1cM1q6kzhNeZyO0cVxOOJS"
  2107. },
  2108. {
  2109. "__type__": "cc.Node",
  2110. "_name": "_btnArena",
  2111. "_objFlags": 0,
  2112. "__editorExtras__": {},
  2113. "_parent": {
  2114. "__id__": 51
  2115. },
  2116. "_children": [],
  2117. "_active": true,
  2118. "_components": [
  2119. {
  2120. "__id__": 53
  2121. },
  2122. {
  2123. "__id__": 54
  2124. },
  2125. {
  2126. "__id__": 55
  2127. },
  2128. {
  2129. "__id__": 56
  2130. }
  2131. ],
  2132. "_prefab": null,
  2133. "_lpos": {
  2134. "__type__": "cc.Vec3",
  2135. "x": 0,
  2136. "y": -119.99999999999999,
  2137. "z": 0
  2138. },
  2139. "_lrot": {
  2140. "__type__": "cc.Quat",
  2141. "x": 0,
  2142. "y": 0,
  2143. "z": 0,
  2144. "w": 1
  2145. },
  2146. "_lscale": {
  2147. "__type__": "cc.Vec3",
  2148. "x": 1,
  2149. "y": 1,
  2150. "z": 1
  2151. },
  2152. "_mobility": 0,
  2153. "_layer": 33554432,
  2154. "_euler": {
  2155. "__type__": "cc.Vec3",
  2156. "x": 0,
  2157. "y": 0,
  2158. "z": 0
  2159. },
  2160. "_id": "5ceSL/m1JE85ZzwK2O+xEF"
  2161. },
  2162. {
  2163. "__type__": "cc.UITransform",
  2164. "_name": "",
  2165. "_objFlags": 0,
  2166. "__editorExtras__": {},
  2167. "node": {
  2168. "__id__": 52
  2169. },
  2170. "_enabled": true,
  2171. "__prefab": null,
  2172. "_contentSize": {
  2173. "__type__": "cc.Size",
  2174. "width": 150,
  2175. "height": 50.4
  2176. },
  2177. "_anchorPoint": {
  2178. "__type__": "cc.Vec2",
  2179. "x": 0.5,
  2180. "y": 0.5
  2181. },
  2182. "_id": "f6dBhJETlB+5wTr8U7u1O0"
  2183. },
  2184. {
  2185. "__type__": "cc.Sprite",
  2186. "_name": "",
  2187. "_objFlags": 0,
  2188. "__editorExtras__": {},
  2189. "node": {
  2190. "__id__": 52
  2191. },
  2192. "_enabled": true,
  2193. "__prefab": null,
  2194. "_customMaterial": null,
  2195. "_srcBlendFactor": 2,
  2196. "_dstBlendFactor": 4,
  2197. "_color": {
  2198. "__type__": "cc.Color",
  2199. "r": 255,
  2200. "g": 255,
  2201. "b": 255,
  2202. "a": 255
  2203. },
  2204. "_spriteFrame": {
  2205. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b3156",
  2206. "__expectedType__": "cc.SpriteFrame"
  2207. },
  2208. "_type": 1,
  2209. "_fillType": 0,
  2210. "_sizeMode": 0,
  2211. "_fillCenter": {
  2212. "__type__": "cc.Vec2",
  2213. "x": 0,
  2214. "y": 0
  2215. },
  2216. "_fillStart": 0,
  2217. "_fillRange": 0,
  2218. "_isTrimmedMode": true,
  2219. "_useGrayscale": false,
  2220. "_atlas": null,
  2221. "_id": "71eHlRTMlGyZLD6W54FVbZ"
  2222. },
  2223. {
  2224. "__type__": "cc.Button",
  2225. "_name": "",
  2226. "_objFlags": 0,
  2227. "__editorExtras__": {},
  2228. "node": {
  2229. "__id__": 52
  2230. },
  2231. "_enabled": true,
  2232. "__prefab": null,
  2233. "clickEvents": [],
  2234. "_interactable": true,
  2235. "_transition": 3,
  2236. "_normalColor": {
  2237. "__type__": "cc.Color",
  2238. "r": 214,
  2239. "g": 214,
  2240. "b": 214,
  2241. "a": 255
  2242. },
  2243. "_hoverColor": {
  2244. "__type__": "cc.Color",
  2245. "r": 211,
  2246. "g": 211,
  2247. "b": 211,
  2248. "a": 255
  2249. },
  2250. "_pressedColor": {
  2251. "__type__": "cc.Color",
  2252. "r": 255,
  2253. "g": 255,
  2254. "b": 255,
  2255. "a": 255
  2256. },
  2257. "_disabledColor": {
  2258. "__type__": "cc.Color",
  2259. "r": 124,
  2260. "g": 124,
  2261. "b": 124,
  2262. "a": 255
  2263. },
  2264. "_normalSprite": null,
  2265. "_hoverSprite": null,
  2266. "_pressedSprite": null,
  2267. "_disabledSprite": null,
  2268. "_duration": 0.1,
  2269. "_zoomScale": 1.2,
  2270. "_target": {
  2271. "__id__": 52
  2272. },
  2273. "_id": "28L8rRbitHZI5R47m5zDo7"
  2274. },
  2275. {
  2276. "__type__": "cc.Widget",
  2277. "_name": "",
  2278. "_objFlags": 0,
  2279. "__editorExtras__": {},
  2280. "node": {
  2281. "__id__": 52
  2282. },
  2283. "_enabled": true,
  2284. "__prefab": null,
  2285. "_alignFlags": 44,
  2286. "_target": null,
  2287. "_left": 125,
  2288. "_right": 125,
  2289. "_top": 0,
  2290. "_bottom": 54.8,
  2291. "_horizontalCenter": 0,
  2292. "_verticalCenter": 0,
  2293. "_isAbsLeft": true,
  2294. "_isAbsRight": true,
  2295. "_isAbsTop": true,
  2296. "_isAbsBottom": true,
  2297. "_isAbsHorizontalCenter": true,
  2298. "_isAbsVerticalCenter": true,
  2299. "_originalWidth": 100,
  2300. "_originalHeight": 0,
  2301. "_alignMode": 2,
  2302. "_lockFlags": 0,
  2303. "_id": "1aQuc52fxKg4nD0V+PHga8"
  2304. },
  2305. {
  2306. "__type__": "cc.Node",
  2307. "_name": "_ProgressBar",
  2308. "_objFlags": 0,
  2309. "__editorExtras__": {},
  2310. "_parent": {
  2311. "__id__": 51
  2312. },
  2313. "_children": [
  2314. {
  2315. "__id__": 58
  2316. },
  2317. {
  2318. "__id__": 61
  2319. }
  2320. ],
  2321. "_active": true,
  2322. "_components": [
  2323. {
  2324. "__id__": 73
  2325. },
  2326. {
  2327. "__id__": 74
  2328. },
  2329. {
  2330. "__id__": 75
  2331. },
  2332. {
  2333. "__id__": 76
  2334. }
  2335. ],
  2336. "_prefab": null,
  2337. "_lpos": {
  2338. "__type__": "cc.Vec3",
  2339. "x": -45,
  2340. "y": 222.5,
  2341. "z": 0
  2342. },
  2343. "_lrot": {
  2344. "__type__": "cc.Quat",
  2345. "x": 0,
  2346. "y": 0,
  2347. "z": 0,
  2348. "w": 1
  2349. },
  2350. "_lscale": {
  2351. "__type__": "cc.Vec3",
  2352. "x": 1,
  2353. "y": 1,
  2354. "z": 1
  2355. },
  2356. "_mobility": 0,
  2357. "_layer": 33554432,
  2358. "_euler": {
  2359. "__type__": "cc.Vec3",
  2360. "x": 0,
  2361. "y": 0,
  2362. "z": 0
  2363. },
  2364. "_id": "8fcONC2VtJ/YJEqmX1Ptah"
  2365. },
  2366. {
  2367. "__type__": "cc.Node",
  2368. "_name": "Bar",
  2369. "_objFlags": 0,
  2370. "__editorExtras__": {},
  2371. "_parent": {
  2372. "__id__": 57
  2373. },
  2374. "_children": [],
  2375. "_active": true,
  2376. "_components": [
  2377. {
  2378. "__id__": 59
  2379. },
  2380. {
  2381. "__id__": 60
  2382. }
  2383. ],
  2384. "_prefab": null,
  2385. "_lpos": {
  2386. "__type__": "cc.Vec3",
  2387. "x": -150,
  2388. "y": 0,
  2389. "z": 0
  2390. },
  2391. "_lrot": {
  2392. "__type__": "cc.Quat",
  2393. "x": 0,
  2394. "y": 0,
  2395. "z": 0,
  2396. "w": 1
  2397. },
  2398. "_lscale": {
  2399. "__type__": "cc.Vec3",
  2400. "x": 1,
  2401. "y": 1,
  2402. "z": 1
  2403. },
  2404. "_mobility": 0,
  2405. "_layer": 33554432,
  2406. "_euler": {
  2407. "__type__": "cc.Vec3",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0
  2411. },
  2412. "_id": "5dF0WxRq9AHp221hu4LB8j"
  2413. },
  2414. {
  2415. "__type__": "cc.UITransform",
  2416. "_name": "",
  2417. "_objFlags": 0,
  2418. "__editorExtras__": {},
  2419. "node": {
  2420. "__id__": 58
  2421. },
  2422. "_enabled": true,
  2423. "__prefab": null,
  2424. "_contentSize": {
  2425. "__type__": "cc.Size",
  2426. "width": 210,
  2427. "height": 15
  2428. },
  2429. "_anchorPoint": {
  2430. "__type__": "cc.Vec2",
  2431. "x": 0,
  2432. "y": 0.5
  2433. },
  2434. "_id": "2bZmbTX7hB4bWeGcS5iX39"
  2435. },
  2436. {
  2437. "__type__": "cc.Sprite",
  2438. "_name": "",
  2439. "_objFlags": 0,
  2440. "__editorExtras__": {},
  2441. "node": {
  2442. "__id__": 58
  2443. },
  2444. "_enabled": true,
  2445. "__prefab": null,
  2446. "_customMaterial": null,
  2447. "_srcBlendFactor": 2,
  2448. "_dstBlendFactor": 4,
  2449. "_color": {
  2450. "__type__": "cc.Color",
  2451. "r": 111,
  2452. "g": 241,
  2453. "b": 24,
  2454. "a": 255
  2455. },
  2456. "_spriteFrame": {
  2457. "__uuid__": "24a704da-2867-446d-8d1a-5e920c75e09d@f9941",
  2458. "__expectedType__": "cc.SpriteFrame"
  2459. },
  2460. "_type": 1,
  2461. "_fillType": 0,
  2462. "_sizeMode": 0,
  2463. "_fillCenter": {
  2464. "__type__": "cc.Vec2",
  2465. "x": 0,
  2466. "y": 0
  2467. },
  2468. "_fillStart": 0,
  2469. "_fillRange": 0,
  2470. "_isTrimmedMode": true,
  2471. "_useGrayscale": false,
  2472. "_atlas": null,
  2473. "_id": "d4uJLTbAVFALkp8n6kQsbV"
  2474. },
  2475. {
  2476. "__type__": "cc.Node",
  2477. "_name": "Grade",
  2478. "_objFlags": 0,
  2479. "__editorExtras__": {},
  2480. "_parent": {
  2481. "__id__": 57
  2482. },
  2483. "_children": [
  2484. {
  2485. "__id__": 62
  2486. },
  2487. {
  2488. "__id__": 66
  2489. }
  2490. ],
  2491. "_active": true,
  2492. "_components": [
  2493. {
  2494. "__id__": 70
  2495. },
  2496. {
  2497. "__id__": 71
  2498. },
  2499. {
  2500. "__id__": 72
  2501. }
  2502. ],
  2503. "_prefab": null,
  2504. "_lpos": {
  2505. "__type__": "cc.Vec3",
  2506. "x": -105,
  2507. "y": 32.3,
  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": "abCURcj+RHVJwAJfbNcbmV"
  2532. },
  2533. {
  2534. "__type__": "cc.Node",
  2535. "_name": "_grade",
  2536. "_objFlags": 0,
  2537. "__editorExtras__": {},
  2538. "_parent": {
  2539. "__id__": 61
  2540. },
  2541. "_children": [],
  2542. "_active": true,
  2543. "_components": [
  2544. {
  2545. "__id__": 63
  2546. },
  2547. {
  2548. "__id__": 64
  2549. },
  2550. {
  2551. "__id__": 65
  2552. }
  2553. ],
  2554. "_prefab": null,
  2555. "_lpos": {
  2556. "__type__": "cc.Vec3",
  2557. "x": 63.34228515625,
  2558. "y": 0,
  2559. "z": 0
  2560. },
  2561. "_lrot": {
  2562. "__type__": "cc.Quat",
  2563. "x": 0,
  2564. "y": 0,
  2565. "z": 0,
  2566. "w": 1
  2567. },
  2568. "_lscale": {
  2569. "__type__": "cc.Vec3",
  2570. "x": 1,
  2571. "y": 1,
  2572. "z": 1
  2573. },
  2574. "_mobility": 0,
  2575. "_layer": 33554432,
  2576. "_euler": {
  2577. "__type__": "cc.Vec3",
  2578. "x": 0,
  2579. "y": 0,
  2580. "z": 0
  2581. },
  2582. "_id": "81ScVg4vhOVZZ1VcBvH4Nn"
  2583. },
  2584. {
  2585. "__type__": "cc.UITransform",
  2586. "_name": "",
  2587. "_objFlags": 0,
  2588. "__editorExtras__": {},
  2589. "node": {
  2590. "__id__": 62
  2591. },
  2592. "_enabled": true,
  2593. "__prefab": null,
  2594. "_contentSize": {
  2595. "__type__": "cc.Size",
  2596. "width": 25.38,
  2597. "height": 40
  2598. },
  2599. "_anchorPoint": {
  2600. "__type__": "cc.Vec2",
  2601. "x": 0.5,
  2602. "y": 0.5
  2603. },
  2604. "_id": "25k9HEfQdOJZB/SyG69WMb"
  2605. },
  2606. {
  2607. "__type__": "cc.Label",
  2608. "_name": "",
  2609. "_objFlags": 0,
  2610. "__editorExtras__": {},
  2611. "node": {
  2612. "__id__": 62
  2613. },
  2614. "_enabled": true,
  2615. "__prefab": null,
  2616. "_customMaterial": null,
  2617. "_srcBlendFactor": 2,
  2618. "_dstBlendFactor": 4,
  2619. "_color": {
  2620. "__type__": "cc.Color",
  2621. "r": 255,
  2622. "g": 255,
  2623. "b": 255,
  2624. "a": 255
  2625. },
  2626. "_string": "1",
  2627. "_horizontalAlign": 1,
  2628. "_verticalAlign": 1,
  2629. "_actualFontSize": 30,
  2630. "_fontSize": 30,
  2631. "_fontFamily": "Arial",
  2632. "_lineHeight": 40,
  2633. "_overflow": 0,
  2634. "_enableWrapText": true,
  2635. "_font": {
  2636. "__uuid__": "d280166a-1c85-4319-ab27-e44e796b09a1",
  2637. "__expectedType__": "cc.LabelAtlas"
  2638. },
  2639. "_isSystemFontUsed": false,
  2640. "_spacingX": 0,
  2641. "_isItalic": false,
  2642. "_isBold": false,
  2643. "_isUnderline": false,
  2644. "_underlineHeight": 2,
  2645. "_cacheMode": 0,
  2646. "_enableOutline": false,
  2647. "_outlineColor": {
  2648. "__type__": "cc.Color",
  2649. "r": 0,
  2650. "g": 0,
  2651. "b": 0,
  2652. "a": 255
  2653. },
  2654. "_outlineWidth": 2,
  2655. "_enableShadow": false,
  2656. "_shadowColor": {
  2657. "__type__": "cc.Color",
  2658. "r": 0,
  2659. "g": 0,
  2660. "b": 0,
  2661. "a": 255
  2662. },
  2663. "_shadowOffset": {
  2664. "__type__": "cc.Vec2",
  2665. "x": 2,
  2666. "y": 2
  2667. },
  2668. "_shadowBlur": 2,
  2669. "_id": "8dLoG0mj5LhacU1mIzKxb6"
  2670. },
  2671. {
  2672. "__type__": "cc.Widget",
  2673. "_name": "",
  2674. "_objFlags": 0,
  2675. "__editorExtras__": {},
  2676. "node": {
  2677. "__id__": 62
  2678. },
  2679. "_enabled": true,
  2680. "__prefab": null,
  2681. "_alignFlags": 13,
  2682. "_target": {
  2683. "__id__": 61
  2684. },
  2685. "_left": 95.65228515625,
  2686. "_right": 0,
  2687. "_top": 5.199999999999999,
  2688. "_bottom": 5.199999999999999,
  2689. "_horizontalCenter": 0,
  2690. "_verticalCenter": 0,
  2691. "_isAbsLeft": true,
  2692. "_isAbsRight": true,
  2693. "_isAbsTop": true,
  2694. "_isAbsBottom": true,
  2695. "_isAbsHorizontalCenter": true,
  2696. "_isAbsVerticalCenter": true,
  2697. "_originalWidth": 0,
  2698. "_originalHeight": 50.4,
  2699. "_alignMode": 2,
  2700. "_lockFlags": 0,
  2701. "_id": "31WMGA30RADJ1xHFjfCCsU"
  2702. },
  2703. {
  2704. "__type__": "cc.Node",
  2705. "_name": "_exp",
  2706. "_objFlags": 0,
  2707. "__editorExtras__": {},
  2708. "_parent": {
  2709. "__id__": 61
  2710. },
  2711. "_children": [],
  2712. "_active": true,
  2713. "_components": [
  2714. {
  2715. "__id__": 67
  2716. },
  2717. {
  2718. "__id__": 68
  2719. },
  2720. {
  2721. "__id__": 69
  2722. }
  2723. ],
  2724. "_prefab": null,
  2725. "_lpos": {
  2726. "__type__": "cc.Vec3",
  2727. "x": 180,
  2728. "y": 0,
  2729. "z": 0
  2730. },
  2731. "_lrot": {
  2732. "__type__": "cc.Quat",
  2733. "x": 0,
  2734. "y": 0,
  2735. "z": 0,
  2736. "w": 1
  2737. },
  2738. "_lscale": {
  2739. "__type__": "cc.Vec3",
  2740. "x": 1,
  2741. "y": 1,
  2742. "z": 1
  2743. },
  2744. "_mobility": 0,
  2745. "_layer": 33554432,
  2746. "_euler": {
  2747. "__type__": "cc.Vec3",
  2748. "x": 0,
  2749. "y": 0,
  2750. "z": 0
  2751. },
  2752. "_id": "5eTLt2fLhJPq+KGgXWKYOj"
  2753. },
  2754. {
  2755. "__type__": "cc.UITransform",
  2756. "_name": "",
  2757. "_objFlags": 0,
  2758. "__editorExtras__": {},
  2759. "node": {
  2760. "__id__": 66
  2761. },
  2762. "_enabled": true,
  2763. "__prefab": null,
  2764. "_contentSize": {
  2765. "__type__": "cc.Size",
  2766. "width": 11.123046875,
  2767. "height": 50.4
  2768. },
  2769. "_anchorPoint": {
  2770. "__type__": "cc.Vec2",
  2771. "x": 0,
  2772. "y": 0.5
  2773. },
  2774. "_id": "588biSztNIuJhMuBrHXC8c"
  2775. },
  2776. {
  2777. "__type__": "cc.Label",
  2778. "_name": "",
  2779. "_objFlags": 0,
  2780. "__editorExtras__": {},
  2781. "node": {
  2782. "__id__": 66
  2783. },
  2784. "_enabled": true,
  2785. "__prefab": null,
  2786. "_customMaterial": null,
  2787. "_srcBlendFactor": 2,
  2788. "_dstBlendFactor": 4,
  2789. "_color": {
  2790. "__type__": "cc.Color",
  2791. "r": 119,
  2792. "g": 248,
  2793. "b": 0,
  2794. "a": 255
  2795. },
  2796. "_string": "0",
  2797. "_horizontalAlign": 1,
  2798. "_verticalAlign": 1,
  2799. "_actualFontSize": 20,
  2800. "_fontSize": 20,
  2801. "_fontFamily": "Arial",
  2802. "_lineHeight": 40,
  2803. "_overflow": 0,
  2804. "_enableWrapText": true,
  2805. "_font": null,
  2806. "_isSystemFontUsed": true,
  2807. "_spacingX": 0,
  2808. "_isItalic": false,
  2809. "_isBold": false,
  2810. "_isUnderline": false,
  2811. "_underlineHeight": 2,
  2812. "_cacheMode": 0,
  2813. "_enableOutline": false,
  2814. "_outlineColor": {
  2815. "__type__": "cc.Color",
  2816. "r": 0,
  2817. "g": 0,
  2818. "b": 0,
  2819. "a": 255
  2820. },
  2821. "_outlineWidth": 2,
  2822. "_enableShadow": false,
  2823. "_shadowColor": {
  2824. "__type__": "cc.Color",
  2825. "r": 0,
  2826. "g": 0,
  2827. "b": 0,
  2828. "a": 255
  2829. },
  2830. "_shadowOffset": {
  2831. "__type__": "cc.Vec2",
  2832. "x": 2,
  2833. "y": 2
  2834. },
  2835. "_shadowBlur": 2,
  2836. "_id": "18bOsGybBJO6sCupeUos0H"
  2837. },
  2838. {
  2839. "__type__": "cc.Widget",
  2840. "_name": "",
  2841. "_objFlags": 0,
  2842. "__editorExtras__": {},
  2843. "node": {
  2844. "__id__": 66
  2845. },
  2846. "_enabled": true,
  2847. "__prefab": null,
  2848. "_alignFlags": 13,
  2849. "_target": null,
  2850. "_left": 225,
  2851. "_right": 0,
  2852. "_top": 0,
  2853. "_bottom": 0,
  2854. "_horizontalCenter": 0,
  2855. "_verticalCenter": 0,
  2856. "_isAbsLeft": true,
  2857. "_isAbsRight": true,
  2858. "_isAbsTop": true,
  2859. "_isAbsBottom": true,
  2860. "_isAbsHorizontalCenter": true,
  2861. "_isAbsVerticalCenter": true,
  2862. "_originalWidth": 0,
  2863. "_originalHeight": 50.4,
  2864. "_alignMode": 2,
  2865. "_lockFlags": 0,
  2866. "_id": "a1spkGmKRMrbt/SysK3eHP"
  2867. },
  2868. {
  2869. "__type__": "cc.UITransform",
  2870. "_name": "",
  2871. "_objFlags": 0,
  2872. "__editorExtras__": {},
  2873. "node": {
  2874. "__id__": 61
  2875. },
  2876. "_enabled": true,
  2877. "__prefab": null,
  2878. "_contentSize": {
  2879. "__type__": "cc.Size",
  2880. "width": 90,
  2881. "height": 50.4
  2882. },
  2883. "_anchorPoint": {
  2884. "__type__": "cc.Vec2",
  2885. "x": 0.5,
  2886. "y": 0.5
  2887. },
  2888. "_id": "f04eA2tXZNFakN1jIp2Mt7"
  2889. },
  2890. {
  2891. "__type__": "cc.Label",
  2892. "_name": "",
  2893. "_objFlags": 0,
  2894. "__editorExtras__": {},
  2895. "node": {
  2896. "__id__": 61
  2897. },
  2898. "_enabled": true,
  2899. "__prefab": null,
  2900. "_customMaterial": null,
  2901. "_srcBlendFactor": 2,
  2902. "_dstBlendFactor": 4,
  2903. "_color": {
  2904. "__type__": "cc.Color",
  2905. "r": 255,
  2906. "g": 255,
  2907. "b": 255,
  2908. "a": 255
  2909. },
  2910. "_string": "等级:",
  2911. "_horizontalAlign": 1,
  2912. "_verticalAlign": 1,
  2913. "_actualFontSize": 30,
  2914. "_fontSize": 30,
  2915. "_fontFamily": "Arial",
  2916. "_lineHeight": 40,
  2917. "_overflow": 0,
  2918. "_enableWrapText": true,
  2919. "_font": null,
  2920. "_isSystemFontUsed": true,
  2921. "_spacingX": 0,
  2922. "_isItalic": false,
  2923. "_isBold": false,
  2924. "_isUnderline": false,
  2925. "_underlineHeight": 2,
  2926. "_cacheMode": 0,
  2927. "_enableOutline": false,
  2928. "_outlineColor": {
  2929. "__type__": "cc.Color",
  2930. "r": 255,
  2931. "g": 255,
  2932. "b": 255,
  2933. "a": 255
  2934. },
  2935. "_outlineWidth": 0.1,
  2936. "_enableShadow": false,
  2937. "_shadowColor": {
  2938. "__type__": "cc.Color",
  2939. "r": 0,
  2940. "g": 0,
  2941. "b": 0,
  2942. "a": 255
  2943. },
  2944. "_shadowOffset": {
  2945. "__type__": "cc.Vec2",
  2946. "x": 2,
  2947. "y": 2
  2948. },
  2949. "_shadowBlur": 2,
  2950. "_id": "e8iIKQ7SlCxYvms4vPzrbY"
  2951. },
  2952. {
  2953. "__type__": "cc.Widget",
  2954. "_name": "",
  2955. "_objFlags": 0,
  2956. "__editorExtras__": {},
  2957. "node": {
  2958. "__id__": 61
  2959. },
  2960. "_enabled": true,
  2961. "__prefab": null,
  2962. "_alignFlags": 9,
  2963. "_target": {
  2964. "__id__": 57
  2965. },
  2966. "_left": 0,
  2967. "_right": 0,
  2968. "_top": -50,
  2969. "_bottom": 0,
  2970. "_horizontalCenter": 0,
  2971. "_verticalCenter": 0,
  2972. "_isAbsLeft": true,
  2973. "_isAbsRight": true,
  2974. "_isAbsTop": true,
  2975. "_isAbsBottom": true,
  2976. "_isAbsHorizontalCenter": true,
  2977. "_isAbsVerticalCenter": true,
  2978. "_originalWidth": 0,
  2979. "_originalHeight": 0,
  2980. "_alignMode": 2,
  2981. "_lockFlags": 0,
  2982. "_id": "35BrbhCCtCFbNv/KFe8oUJ"
  2983. },
  2984. {
  2985. "__type__": "cc.UITransform",
  2986. "_name": "",
  2987. "_objFlags": 0,
  2988. "__editorExtras__": {},
  2989. "node": {
  2990. "__id__": 57
  2991. },
  2992. "_enabled": true,
  2993. "__prefab": null,
  2994. "_contentSize": {
  2995. "__type__": "cc.Size",
  2996. "width": 300,
  2997. "height": 15
  2998. },
  2999. "_anchorPoint": {
  3000. "__type__": "cc.Vec2",
  3001. "x": 0.5,
  3002. "y": 0.5
  3003. },
  3004. "_id": "22rKhfiHJAjrR4zAByDaTn"
  3005. },
  3006. {
  3007. "__type__": "cc.Sprite",
  3008. "_name": "",
  3009. "_objFlags": 0,
  3010. "__editorExtras__": {},
  3011. "node": {
  3012. "__id__": 57
  3013. },
  3014. "_enabled": true,
  3015. "__prefab": null,
  3016. "_customMaterial": null,
  3017. "_srcBlendFactor": 2,
  3018. "_dstBlendFactor": 4,
  3019. "_color": {
  3020. "__type__": "cc.Color",
  3021. "r": 62,
  3022. "g": 207,
  3023. "b": 14,
  3024. "a": 255
  3025. },
  3026. "_spriteFrame": {
  3027. "__uuid__": "9fd900dd-221b-4f89-8f2c-fba34243c835@f9941",
  3028. "__expectedType__": "cc.SpriteFrame"
  3029. },
  3030. "_type": 1,
  3031. "_fillType": 0,
  3032. "_sizeMode": 0,
  3033. "_fillCenter": {
  3034. "__type__": "cc.Vec2",
  3035. "x": 0,
  3036. "y": 0
  3037. },
  3038. "_fillStart": 0,
  3039. "_fillRange": 0,
  3040. "_isTrimmedMode": true,
  3041. "_useGrayscale": false,
  3042. "_atlas": null,
  3043. "_id": "a3ZH0mdl5Kpr0RzHmFRv00"
  3044. },
  3045. {
  3046. "__type__": "cc.ProgressBar",
  3047. "_name": "",
  3048. "_objFlags": 0,
  3049. "__editorExtras__": {},
  3050. "node": {
  3051. "__id__": 57
  3052. },
  3053. "_enabled": true,
  3054. "__prefab": null,
  3055. "_barSprite": {
  3056. "__id__": 60
  3057. },
  3058. "_mode": 0,
  3059. "_totalLength": 300,
  3060. "_progress": 0.7,
  3061. "_reverse": false,
  3062. "_id": "59Bip/gnFJZZFeMKxk0y99"
  3063. },
  3064. {
  3065. "__type__": "cc.Widget",
  3066. "_name": "",
  3067. "_objFlags": 0,
  3068. "__editorExtras__": {},
  3069. "node": {
  3070. "__id__": 57
  3071. },
  3072. "_enabled": true,
  3073. "__prefab": null,
  3074. "_alignFlags": 9,
  3075. "_target": {
  3076. "__id__": 51
  3077. },
  3078. "_left": 5,
  3079. "_right": 83.19300000000001,
  3080. "_top": -30,
  3081. "_bottom": 0,
  3082. "_horizontalCenter": 0,
  3083. "_verticalCenter": 0,
  3084. "_isAbsLeft": true,
  3085. "_isAbsRight": true,
  3086. "_isAbsTop": true,
  3087. "_isAbsBottom": true,
  3088. "_isAbsHorizontalCenter": true,
  3089. "_isAbsVerticalCenter": true,
  3090. "_originalWidth": 300,
  3091. "_originalHeight": 0,
  3092. "_alignMode": 2,
  3093. "_lockFlags": 0,
  3094. "_id": "fbDWOr7OJN7ocB/GNUq9vG"
  3095. },
  3096. {
  3097. "__type__": "cc.Node",
  3098. "_name": "Win",
  3099. "_objFlags": 0,
  3100. "__editorExtras__": {},
  3101. "_parent": {
  3102. "__id__": 51
  3103. },
  3104. "_children": [
  3105. {
  3106. "__id__": 78
  3107. }
  3108. ],
  3109. "_active": true,
  3110. "_components": [
  3111. {
  3112. "__id__": 82
  3113. },
  3114. {
  3115. "__id__": 83
  3116. },
  3117. {
  3118. "__id__": 84
  3119. }
  3120. ],
  3121. "_prefab": null,
  3122. "_lpos": {
  3123. "__type__": "cc.Vec3",
  3124. "x": -95,
  3125. "y": 35.624,
  3126. "z": 0
  3127. },
  3128. "_lrot": {
  3129. "__type__": "cc.Quat",
  3130. "x": 0,
  3131. "y": 0,
  3132. "z": 0,
  3133. "w": 1
  3134. },
  3135. "_lscale": {
  3136. "__type__": "cc.Vec3",
  3137. "x": 1,
  3138. "y": 1,
  3139. "z": 1
  3140. },
  3141. "_mobility": 0,
  3142. "_layer": 33554432,
  3143. "_euler": {
  3144. "__type__": "cc.Vec3",
  3145. "x": 0,
  3146. "y": 0,
  3147. "z": 0
  3148. },
  3149. "_id": "cd9aTfx/VFe5he/SZ2YquB"
  3150. },
  3151. {
  3152. "__type__": "cc.Node",
  3153. "_name": "_win",
  3154. "_objFlags": 0,
  3155. "__editorExtras__": {},
  3156. "_parent": {
  3157. "__id__": 77
  3158. },
  3159. "_children": [],
  3160. "_active": true,
  3161. "_components": [
  3162. {
  3163. "__id__": 79
  3164. },
  3165. {
  3166. "__id__": 80
  3167. },
  3168. {
  3169. "__id__": 81
  3170. }
  3171. ],
  3172. "_prefab": null,
  3173. "_lpos": {
  3174. "__type__": "cc.Vec3",
  3175. "x": 60,
  3176. "y": 0,
  3177. "z": 0
  3178. },
  3179. "_lrot": {
  3180. "__type__": "cc.Quat",
  3181. "x": 0,
  3182. "y": 0,
  3183. "z": 0,
  3184. "w": 1
  3185. },
  3186. "_lscale": {
  3187. "__type__": "cc.Vec3",
  3188. "x": 1,
  3189. "y": 1,
  3190. "z": 1
  3191. },
  3192. "_mobility": 0,
  3193. "_layer": 33554432,
  3194. "_euler": {
  3195. "__type__": "cc.Vec3",
  3196. "x": 0,
  3197. "y": 0,
  3198. "z": 0
  3199. },
  3200. "_id": "469APWXP5JCYArM5oSo4Jf"
  3201. },
  3202. {
  3203. "__type__": "cc.UITransform",
  3204. "_name": "",
  3205. "_objFlags": 0,
  3206. "__editorExtras__": {},
  3207. "node": {
  3208. "__id__": 78
  3209. },
  3210. "_enabled": true,
  3211. "__prefab": null,
  3212. "_contentSize": {
  3213. "__type__": "cc.Size",
  3214. "width": 22.24609375,
  3215. "height": 50.4
  3216. },
  3217. "_anchorPoint": {
  3218. "__type__": "cc.Vec2",
  3219. "x": 0,
  3220. "y": 0.5
  3221. },
  3222. "_id": "49CGdrBTVGIbOW2sV6hU8b"
  3223. },
  3224. {
  3225. "__type__": "cc.Widget",
  3226. "_name": "",
  3227. "_objFlags": 0,
  3228. "__editorExtras__": {},
  3229. "node": {
  3230. "__id__": 78
  3231. },
  3232. "_enabled": true,
  3233. "__prefab": null,
  3234. "_alignFlags": 13,
  3235. "_target": {
  3236. "__id__": 77
  3237. },
  3238. "_left": 120,
  3239. "_right": 45,
  3240. "_top": 0,
  3241. "_bottom": 0,
  3242. "_horizontalCenter": 0,
  3243. "_verticalCenter": 0,
  3244. "_isAbsLeft": true,
  3245. "_isAbsRight": true,
  3246. "_isAbsTop": true,
  3247. "_isAbsBottom": true,
  3248. "_isAbsHorizontalCenter": true,
  3249. "_isAbsVerticalCenter": true,
  3250. "_originalWidth": 30,
  3251. "_originalHeight": 50.4,
  3252. "_alignMode": 2,
  3253. "_lockFlags": 0,
  3254. "_id": "a1NtwOsmxGJK02ZbL/RPft"
  3255. },
  3256. {
  3257. "__type__": "cc.Label",
  3258. "_name": "",
  3259. "_objFlags": 0,
  3260. "__editorExtras__": {},
  3261. "node": {
  3262. "__id__": 78
  3263. },
  3264. "_enabled": true,
  3265. "__prefab": null,
  3266. "_customMaterial": null,
  3267. "_srcBlendFactor": 2,
  3268. "_dstBlendFactor": 4,
  3269. "_color": {
  3270. "__type__": "cc.Color",
  3271. "r": 255,
  3272. "g": 0,
  3273. "b": 174,
  3274. "a": 255
  3275. },
  3276. "_string": "0",
  3277. "_horizontalAlign": 1,
  3278. "_verticalAlign": 1,
  3279. "_actualFontSize": 40,
  3280. "_fontSize": 40,
  3281. "_fontFamily": "Arial",
  3282. "_lineHeight": 40,
  3283. "_overflow": 0,
  3284. "_enableWrapText": true,
  3285. "_font": null,
  3286. "_isSystemFontUsed": true,
  3287. "_spacingX": 0,
  3288. "_isItalic": false,
  3289. "_isBold": false,
  3290. "_isUnderline": false,
  3291. "_underlineHeight": 2,
  3292. "_cacheMode": 0,
  3293. "_enableOutline": false,
  3294. "_outlineColor": {
  3295. "__type__": "cc.Color",
  3296. "r": 0,
  3297. "g": 0,
  3298. "b": 0,
  3299. "a": 255
  3300. },
  3301. "_outlineWidth": 2,
  3302. "_enableShadow": false,
  3303. "_shadowColor": {
  3304. "__type__": "cc.Color",
  3305. "r": 0,
  3306. "g": 0,
  3307. "b": 0,
  3308. "a": 255
  3309. },
  3310. "_shadowOffset": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 2,
  3313. "y": 2
  3314. },
  3315. "_shadowBlur": 2,
  3316. "_id": "ecxhjHAKlJWJbAFf8iKpf7"
  3317. },
  3318. {
  3319. "__type__": "cc.UITransform",
  3320. "_name": "",
  3321. "_objFlags": 0,
  3322. "__editorExtras__": {},
  3323. "node": {
  3324. "__id__": 77
  3325. },
  3326. "_enabled": true,
  3327. "__prefab": null,
  3328. "_contentSize": {
  3329. "__type__": "cc.Size",
  3330. "width": 120,
  3331. "height": 50.4
  3332. },
  3333. "_anchorPoint": {
  3334. "__type__": "cc.Vec2",
  3335. "x": 0.5,
  3336. "y": 0.5
  3337. },
  3338. "_id": "4d1q1RpjBKL7ICD1JLtj0Q"
  3339. },
  3340. {
  3341. "__type__": "cc.Label",
  3342. "_name": "",
  3343. "_objFlags": 0,
  3344. "__editorExtras__": {},
  3345. "node": {
  3346. "__id__": 77
  3347. },
  3348. "_enabled": true,
  3349. "__prefab": null,
  3350. "_customMaterial": null,
  3351. "_srcBlendFactor": 2,
  3352. "_dstBlendFactor": 4,
  3353. "_color": {
  3354. "__type__": "cc.Color",
  3355. "r": 70,
  3356. "g": 160,
  3357. "b": 243,
  3358. "a": 255
  3359. },
  3360. "_string": "获胜:",
  3361. "_horizontalAlign": 1,
  3362. "_verticalAlign": 1,
  3363. "_actualFontSize": 40,
  3364. "_fontSize": 40,
  3365. "_fontFamily": "Arial",
  3366. "_lineHeight": 40,
  3367. "_overflow": 0,
  3368. "_enableWrapText": true,
  3369. "_font": null,
  3370. "_isSystemFontUsed": true,
  3371. "_spacingX": 0,
  3372. "_isItalic": false,
  3373. "_isBold": false,
  3374. "_isUnderline": false,
  3375. "_underlineHeight": 2,
  3376. "_cacheMode": 0,
  3377. "_enableOutline": false,
  3378. "_outlineColor": {
  3379. "__type__": "cc.Color",
  3380. "r": 0,
  3381. "g": 0,
  3382. "b": 0,
  3383. "a": 255
  3384. },
  3385. "_outlineWidth": 2,
  3386. "_enableShadow": false,
  3387. "_shadowColor": {
  3388. "__type__": "cc.Color",
  3389. "r": 0,
  3390. "g": 0,
  3391. "b": 0,
  3392. "a": 255
  3393. },
  3394. "_shadowOffset": {
  3395. "__type__": "cc.Vec2",
  3396. "x": 2,
  3397. "y": 2
  3398. },
  3399. "_shadowBlur": 2,
  3400. "_id": "86sa459BpHWYD8GepmpDCb"
  3401. },
  3402. {
  3403. "__type__": "cc.Widget",
  3404. "_name": "",
  3405. "_objFlags": 0,
  3406. "__editorExtras__": {},
  3407. "node": {
  3408. "__id__": 77
  3409. },
  3410. "_enabled": true,
  3411. "__prefab": null,
  3412. "_alignFlags": 8,
  3413. "_target": null,
  3414. "_left": 45,
  3415. "_right": 0,
  3416. "_top": 0,
  3417. "_bottom": 0,
  3418. "_horizontalCenter": 0,
  3419. "_verticalCenter": 0,
  3420. "_isAbsLeft": true,
  3421. "_isAbsRight": true,
  3422. "_isAbsTop": true,
  3423. "_isAbsBottom": true,
  3424. "_isAbsHorizontalCenter": true,
  3425. "_isAbsVerticalCenter": true,
  3426. "_originalWidth": 0,
  3427. "_originalHeight": 0,
  3428. "_alignMode": 2,
  3429. "_lockFlags": 0,
  3430. "_id": "28+rXOkHpOn7wBsvESaCte"
  3431. },
  3432. {
  3433. "__type__": "cc.Node",
  3434. "_name": "Fail",
  3435. "_objFlags": 0,
  3436. "__editorExtras__": {},
  3437. "_parent": {
  3438. "__id__": 51
  3439. },
  3440. "_children": [
  3441. {
  3442. "__id__": 86
  3443. }
  3444. ],
  3445. "_active": true,
  3446. "_components": [
  3447. {
  3448. "__id__": 90
  3449. },
  3450. {
  3451. "__id__": 91
  3452. },
  3453. {
  3454. "__id__": 92
  3455. }
  3456. ],
  3457. "_prefab": null,
  3458. "_lpos": {
  3459. "__type__": "cc.Vec3",
  3460. "x": -95,
  3461. "y": -25.2,
  3462. "z": 0
  3463. },
  3464. "_lrot": {
  3465. "__type__": "cc.Quat",
  3466. "x": 0,
  3467. "y": 0,
  3468. "z": 0,
  3469. "w": 1
  3470. },
  3471. "_lscale": {
  3472. "__type__": "cc.Vec3",
  3473. "x": 1,
  3474. "y": 1,
  3475. "z": 1
  3476. },
  3477. "_mobility": 0,
  3478. "_layer": 33554432,
  3479. "_euler": {
  3480. "__type__": "cc.Vec3",
  3481. "x": 0,
  3482. "y": 0,
  3483. "z": 0
  3484. },
  3485. "_id": "0d37J7uexERLlldaRhX2tj"
  3486. },
  3487. {
  3488. "__type__": "cc.Node",
  3489. "_name": "_fail",
  3490. "_objFlags": 0,
  3491. "__editorExtras__": {},
  3492. "_parent": {
  3493. "__id__": 85
  3494. },
  3495. "_children": [],
  3496. "_active": true,
  3497. "_components": [
  3498. {
  3499. "__id__": 87
  3500. },
  3501. {
  3502. "__id__": 88
  3503. },
  3504. {
  3505. "__id__": 89
  3506. }
  3507. ],
  3508. "_prefab": null,
  3509. "_lpos": {
  3510. "__type__": "cc.Vec3",
  3511. "x": 60,
  3512. "y": 0,
  3513. "z": 0
  3514. },
  3515. "_lrot": {
  3516. "__type__": "cc.Quat",
  3517. "x": 0,
  3518. "y": 0,
  3519. "z": 0,
  3520. "w": 1
  3521. },
  3522. "_lscale": {
  3523. "__type__": "cc.Vec3",
  3524. "x": 1,
  3525. "y": 1,
  3526. "z": 1
  3527. },
  3528. "_mobility": 0,
  3529. "_layer": 33554432,
  3530. "_euler": {
  3531. "__type__": "cc.Vec3",
  3532. "x": 0,
  3533. "y": 0,
  3534. "z": 0
  3535. },
  3536. "_id": "6a+FKdv05I9rsw6RY/1Q+5"
  3537. },
  3538. {
  3539. "__type__": "cc.UITransform",
  3540. "_name": "",
  3541. "_objFlags": 0,
  3542. "__editorExtras__": {},
  3543. "node": {
  3544. "__id__": 86
  3545. },
  3546. "_enabled": true,
  3547. "__prefab": null,
  3548. "_contentSize": {
  3549. "__type__": "cc.Size",
  3550. "width": 22.24609375,
  3551. "height": 50.4
  3552. },
  3553. "_anchorPoint": {
  3554. "__type__": "cc.Vec2",
  3555. "x": 0,
  3556. "y": 0.5
  3557. },
  3558. "_id": "95mx1IyNNPw7AooCRSIT9m"
  3559. },
  3560. {
  3561. "__type__": "cc.Widget",
  3562. "_name": "",
  3563. "_objFlags": 0,
  3564. "__editorExtras__": {},
  3565. "node": {
  3566. "__id__": 86
  3567. },
  3568. "_enabled": true,
  3569. "__prefab": null,
  3570. "_alignFlags": 13,
  3571. "_target": {
  3572. "__id__": 85
  3573. },
  3574. "_left": 120,
  3575. "_right": 266.807,
  3576. "_top": 0,
  3577. "_bottom": 0,
  3578. "_horizontalCenter": 0,
  3579. "_verticalCenter": 0,
  3580. "_isAbsLeft": true,
  3581. "_isAbsRight": true,
  3582. "_isAbsTop": true,
  3583. "_isAbsBottom": true,
  3584. "_isAbsHorizontalCenter": true,
  3585. "_isAbsVerticalCenter": true,
  3586. "_originalWidth": 30,
  3587. "_originalHeight": 30,
  3588. "_alignMode": 2,
  3589. "_lockFlags": 0,
  3590. "_id": "cd3BfYGAJPUqRGiGzx+r6X"
  3591. },
  3592. {
  3593. "__type__": "cc.Label",
  3594. "_name": "",
  3595. "_objFlags": 0,
  3596. "__editorExtras__": {},
  3597. "node": {
  3598. "__id__": 86
  3599. },
  3600. "_enabled": true,
  3601. "__prefab": null,
  3602. "_customMaterial": null,
  3603. "_srcBlendFactor": 2,
  3604. "_dstBlendFactor": 4,
  3605. "_color": {
  3606. "__type__": "cc.Color",
  3607. "r": 255,
  3608. "g": 0,
  3609. "b": 174,
  3610. "a": 255
  3611. },
  3612. "_string": "0",
  3613. "_horizontalAlign": 1,
  3614. "_verticalAlign": 1,
  3615. "_actualFontSize": 40,
  3616. "_fontSize": 40,
  3617. "_fontFamily": "Arial",
  3618. "_lineHeight": 40,
  3619. "_overflow": 0,
  3620. "_enableWrapText": true,
  3621. "_font": null,
  3622. "_isSystemFontUsed": true,
  3623. "_spacingX": 0,
  3624. "_isItalic": false,
  3625. "_isBold": false,
  3626. "_isUnderline": false,
  3627. "_underlineHeight": 2,
  3628. "_cacheMode": 0,
  3629. "_enableOutline": false,
  3630. "_outlineColor": {
  3631. "__type__": "cc.Color",
  3632. "r": 0,
  3633. "g": 0,
  3634. "b": 0,
  3635. "a": 255
  3636. },
  3637. "_outlineWidth": 2,
  3638. "_enableShadow": false,
  3639. "_shadowColor": {
  3640. "__type__": "cc.Color",
  3641. "r": 0,
  3642. "g": 0,
  3643. "b": 0,
  3644. "a": 255
  3645. },
  3646. "_shadowOffset": {
  3647. "__type__": "cc.Vec2",
  3648. "x": 2,
  3649. "y": 2
  3650. },
  3651. "_shadowBlur": 2,
  3652. "_id": "deD7aLmetGwpMUfrJD/Wau"
  3653. },
  3654. {
  3655. "__type__": "cc.UITransform",
  3656. "_name": "",
  3657. "_objFlags": 0,
  3658. "__editorExtras__": {},
  3659. "node": {
  3660. "__id__": 85
  3661. },
  3662. "_enabled": true,
  3663. "__prefab": null,
  3664. "_contentSize": {
  3665. "__type__": "cc.Size",
  3666. "width": 120,
  3667. "height": 50.4
  3668. },
  3669. "_anchorPoint": {
  3670. "__type__": "cc.Vec2",
  3671. "x": 0.5,
  3672. "y": 0.5
  3673. },
  3674. "_id": "f3SOAOYxhKHZLvoIjwHYVV"
  3675. },
  3676. {
  3677. "__type__": "cc.Label",
  3678. "_name": "",
  3679. "_objFlags": 0,
  3680. "__editorExtras__": {},
  3681. "node": {
  3682. "__id__": 85
  3683. },
  3684. "_enabled": true,
  3685. "__prefab": null,
  3686. "_customMaterial": null,
  3687. "_srcBlendFactor": 2,
  3688. "_dstBlendFactor": 4,
  3689. "_color": {
  3690. "__type__": "cc.Color",
  3691. "r": 70,
  3692. "g": 160,
  3693. "b": 243,
  3694. "a": 255
  3695. },
  3696. "_string": "失败:",
  3697. "_horizontalAlign": 1,
  3698. "_verticalAlign": 1,
  3699. "_actualFontSize": 40,
  3700. "_fontSize": 40,
  3701. "_fontFamily": "Arial",
  3702. "_lineHeight": 40,
  3703. "_overflow": 0,
  3704. "_enableWrapText": true,
  3705. "_font": null,
  3706. "_isSystemFontUsed": true,
  3707. "_spacingX": 0,
  3708. "_isItalic": false,
  3709. "_isBold": false,
  3710. "_isUnderline": false,
  3711. "_underlineHeight": 2,
  3712. "_cacheMode": 0,
  3713. "_enableOutline": false,
  3714. "_outlineColor": {
  3715. "__type__": "cc.Color",
  3716. "r": 0,
  3717. "g": 0,
  3718. "b": 0,
  3719. "a": 255
  3720. },
  3721. "_outlineWidth": 2,
  3722. "_enableShadow": false,
  3723. "_shadowColor": {
  3724. "__type__": "cc.Color",
  3725. "r": 0,
  3726. "g": 0,
  3727. "b": 0,
  3728. "a": 255
  3729. },
  3730. "_shadowOffset": {
  3731. "__type__": "cc.Vec2",
  3732. "x": 2,
  3733. "y": 2
  3734. },
  3735. "_shadowBlur": 2,
  3736. "_id": "05+cSo+bhBbIwwJx8GrIvr"
  3737. },
  3738. {
  3739. "__type__": "cc.Widget",
  3740. "_name": "",
  3741. "_objFlags": 0,
  3742. "__editorExtras__": {},
  3743. "node": {
  3744. "__id__": 85
  3745. },
  3746. "_enabled": true,
  3747. "__prefab": null,
  3748. "_alignFlags": 9,
  3749. "_target": null,
  3750. "_left": 45,
  3751. "_right": 0,
  3752. "_top": 200,
  3753. "_bottom": 0,
  3754. "_horizontalCenter": 0,
  3755. "_verticalCenter": 0,
  3756. "_isAbsLeft": true,
  3757. "_isAbsRight": true,
  3758. "_isAbsTop": true,
  3759. "_isAbsBottom": true,
  3760. "_isAbsHorizontalCenter": true,
  3761. "_isAbsVerticalCenter": true,
  3762. "_originalWidth": 0,
  3763. "_originalHeight": 0,
  3764. "_alignMode": 2,
  3765. "_lockFlags": 0,
  3766. "_id": "23TPpA03NCDr2M1m1WQWwW"
  3767. },
  3768. {
  3769. "__type__": "cc.UITransform",
  3770. "_name": "",
  3771. "_objFlags": 0,
  3772. "__editorExtras__": {},
  3773. "node": {
  3774. "__id__": 51
  3775. },
  3776. "_enabled": true,
  3777. "__prefab": null,
  3778. "_contentSize": {
  3779. "__type__": "cc.Size",
  3780. "width": 400,
  3781. "height": 400
  3782. },
  3783. "_anchorPoint": {
  3784. "__type__": "cc.Vec2",
  3785. "x": 0.5,
  3786. "y": 0.5
  3787. },
  3788. "_id": "6eIjX5TR5ORLucWzllbhUa"
  3789. },
  3790. {
  3791. "__type__": "cc.Sprite",
  3792. "_name": "",
  3793. "_objFlags": 0,
  3794. "__editorExtras__": {},
  3795. "node": {
  3796. "__id__": 51
  3797. },
  3798. "_enabled": true,
  3799. "__prefab": null,
  3800. "_customMaterial": null,
  3801. "_srcBlendFactor": 2,
  3802. "_dstBlendFactor": 4,
  3803. "_color": {
  3804. "__type__": "cc.Color",
  3805. "r": 255,
  3806. "g": 255,
  3807. "b": 255,
  3808. "a": 255
  3809. },
  3810. "_spriteFrame": {
  3811. "__uuid__": "bb4aa6a1-96c4-46a7-ab7a-0c1265a52733@f9941",
  3812. "__expectedType__": "cc.SpriteFrame"
  3813. },
  3814. "_type": 0,
  3815. "_fillType": 0,
  3816. "_sizeMode": 0,
  3817. "_fillCenter": {
  3818. "__type__": "cc.Vec2",
  3819. "x": 0,
  3820. "y": 0
  3821. },
  3822. "_fillStart": 0,
  3823. "_fillRange": 0,
  3824. "_isTrimmedMode": true,
  3825. "_useGrayscale": false,
  3826. "_atlas": null,
  3827. "_id": "49ilGtQLdHL7zb5ddjGIJW"
  3828. },
  3829. {
  3830. "__type__": "cc.Widget",
  3831. "_name": "",
  3832. "_objFlags": 0,
  3833. "__editorExtras__": {},
  3834. "node": {
  3835. "__id__": 51
  3836. },
  3837. "_enabled": true,
  3838. "__prefab": null,
  3839. "_alignFlags": 36,
  3840. "_target": {
  3841. "__id__": 5
  3842. },
  3843. "_left": 664.697,
  3844. "_right": 200,
  3845. "_top": 160,
  3846. "_bottom": 50,
  3847. "_horizontalCenter": 0,
  3848. "_verticalCenter": 0,
  3849. "_isAbsLeft": true,
  3850. "_isAbsRight": true,
  3851. "_isAbsTop": true,
  3852. "_isAbsBottom": true,
  3853. "_isAbsHorizontalCenter": true,
  3854. "_isAbsVerticalCenter": true,
  3855. "_originalWidth": 0,
  3856. "_originalHeight": 400,
  3857. "_alignMode": 2,
  3858. "_lockFlags": 0,
  3859. "_id": "f48BIlp+dPirkXSMg0en9C"
  3860. },
  3861. {
  3862. "__type__": "e0cabX/iidPFJF5PWpyU+l3",
  3863. "_name": "",
  3864. "_objFlags": 0,
  3865. "__editorExtras__": {},
  3866. "node": {
  3867. "__id__": 51
  3868. },
  3869. "_enabled": true,
  3870. "__prefab": null,
  3871. "_id": "784G2YQ+5Ko7aeiRT7K69x"
  3872. },
  3873. {
  3874. "__type__": "cc.Node",
  3875. "_name": "SelectTroops",
  3876. "_objFlags": 0,
  3877. "__editorExtras__": {},
  3878. "_parent": {
  3879. "__id__": 5
  3880. },
  3881. "_children": [
  3882. {
  3883. "__id__": 98
  3884. },
  3885. {
  3886. "__id__": 115
  3887. },
  3888. {
  3889. "__id__": 150
  3890. }
  3891. ],
  3892. "_active": false,
  3893. "_components": [
  3894. {
  3895. "__id__": 288
  3896. },
  3897. {
  3898. "__id__": 289
  3899. },
  3900. {
  3901. "__id__": 290
  3902. },
  3903. {
  3904. "__id__": 291
  3905. }
  3906. ],
  3907. "_prefab": null,
  3908. "_lpos": {
  3909. "__type__": "cc.Vec3",
  3910. "x": 0,
  3911. "y": 0,
  3912. "z": 0
  3913. },
  3914. "_lrot": {
  3915. "__type__": "cc.Quat",
  3916. "x": 0,
  3917. "y": 0,
  3918. "z": 0,
  3919. "w": 1
  3920. },
  3921. "_lscale": {
  3922. "__type__": "cc.Vec3",
  3923. "x": 1,
  3924. "y": 1,
  3925. "z": 1
  3926. },
  3927. "_mobility": 0,
  3928. "_layer": 33554432,
  3929. "_euler": {
  3930. "__type__": "cc.Vec3",
  3931. "x": 0,
  3932. "y": 0,
  3933. "z": 0
  3934. },
  3935. "_id": "86TFgYjKtOOolSuaNyPzRV"
  3936. },
  3937. {
  3938. "__type__": "cc.Node",
  3939. "_name": "RoleList",
  3940. "_objFlags": 0,
  3941. "__editorExtras__": {},
  3942. "_parent": {
  3943. "__id__": 97
  3944. },
  3945. "_children": [
  3946. {
  3947. "__id__": 99
  3948. },
  3949. {
  3950. "__id__": 106
  3951. }
  3952. ],
  3953. "_active": true,
  3954. "_components": [
  3955. {
  3956. "__id__": 110
  3957. },
  3958. {
  3959. "__id__": 111
  3960. },
  3961. {
  3962. "__id__": 112
  3963. },
  3964. {
  3965. "__id__": 113
  3966. },
  3967. {
  3968. "__id__": 114
  3969. }
  3970. ],
  3971. "_prefab": null,
  3972. "_lpos": {
  3973. "__type__": "cc.Vec3",
  3974. "x": -240,
  3975. "y": 45,
  3976. "z": 0
  3977. },
  3978. "_lrot": {
  3979. "__type__": "cc.Quat",
  3980. "x": 0,
  3981. "y": 0,
  3982. "z": 0,
  3983. "w": 1
  3984. },
  3985. "_lscale": {
  3986. "__type__": "cc.Vec3",
  3987. "x": 1,
  3988. "y": 1,
  3989. "z": 1
  3990. },
  3991. "_mobility": 0,
  3992. "_layer": 33554432,
  3993. "_euler": {
  3994. "__type__": "cc.Vec3",
  3995. "x": 0,
  3996. "y": 0,
  3997. "z": 0
  3998. },
  3999. "_id": "7aG1ARN4xHUZmAUc00iXzE"
  4000. },
  4001. {
  4002. "__type__": "cc.Node",
  4003. "_name": "view",
  4004. "_objFlags": 0,
  4005. "__editorExtras__": {},
  4006. "_parent": {
  4007. "__id__": 98
  4008. },
  4009. "_children": [
  4010. {
  4011. "__id__": 100
  4012. }
  4013. ],
  4014. "_active": true,
  4015. "_components": [
  4016. {
  4017. "__id__": 103
  4018. },
  4019. {
  4020. "__id__": 104
  4021. },
  4022. {
  4023. "__id__": 105
  4024. }
  4025. ],
  4026. "_prefab": null,
  4027. "_lpos": {
  4028. "__type__": "cc.Vec3",
  4029. "x": 0,
  4030. "y": 0,
  4031. "z": 0
  4032. },
  4033. "_lrot": {
  4034. "__type__": "cc.Quat",
  4035. "x": 0,
  4036. "y": 0,
  4037. "z": 0,
  4038. "w": 1
  4039. },
  4040. "_lscale": {
  4041. "__type__": "cc.Vec3",
  4042. "x": 1,
  4043. "y": 1,
  4044. "z": 1
  4045. },
  4046. "_mobility": 0,
  4047. "_layer": 33554432,
  4048. "_euler": {
  4049. "__type__": "cc.Vec3",
  4050. "x": 0,
  4051. "y": 0,
  4052. "z": 0
  4053. },
  4054. "_id": "52mIGkUbhK36QWYynOIgOI"
  4055. },
  4056. {
  4057. "__type__": "cc.Node",
  4058. "_name": "content",
  4059. "_objFlags": 0,
  4060. "__editorExtras__": {},
  4061. "_parent": {
  4062. "__id__": 99
  4063. },
  4064. "_children": [],
  4065. "_active": true,
  4066. "_components": [
  4067. {
  4068. "__id__": 101
  4069. },
  4070. {
  4071. "__id__": 102
  4072. }
  4073. ],
  4074. "_prefab": null,
  4075. "_lpos": {
  4076. "__type__": "cc.Vec3",
  4077. "x": 0,
  4078. "y": 125,
  4079. "z": 0
  4080. },
  4081. "_lrot": {
  4082. "__type__": "cc.Quat",
  4083. "x": 0,
  4084. "y": 0,
  4085. "z": 0,
  4086. "w": 1
  4087. },
  4088. "_lscale": {
  4089. "__type__": "cc.Vec3",
  4090. "x": 1,
  4091. "y": 1,
  4092. "z": 1
  4093. },
  4094. "_mobility": 0,
  4095. "_layer": 33554432,
  4096. "_euler": {
  4097. "__type__": "cc.Vec3",
  4098. "x": 0,
  4099. "y": 0,
  4100. "z": 0
  4101. },
  4102. "_id": "0ezTfqcAdKd4GI1MVJjH9C"
  4103. },
  4104. {
  4105. "__type__": "cc.UITransform",
  4106. "_name": "",
  4107. "_objFlags": 0,
  4108. "__editorExtras__": {},
  4109. "node": {
  4110. "__id__": 100
  4111. },
  4112. "_enabled": true,
  4113. "__prefab": null,
  4114. "_contentSize": {
  4115. "__type__": "cc.Size",
  4116. "width": 600,
  4117. "height": 40
  4118. },
  4119. "_anchorPoint": {
  4120. "__type__": "cc.Vec2",
  4121. "x": 0.5,
  4122. "y": 1
  4123. },
  4124. "_id": "5aJx+SCRBDY54dH1BI1sfh"
  4125. },
  4126. {
  4127. "__type__": "cc.Layout",
  4128. "_name": "",
  4129. "_objFlags": 0,
  4130. "__editorExtras__": {},
  4131. "node": {
  4132. "__id__": 100
  4133. },
  4134. "_enabled": true,
  4135. "__prefab": null,
  4136. "_resizeMode": 1,
  4137. "_layoutType": 3,
  4138. "_cellSize": {
  4139. "__type__": "cc.Size",
  4140. "width": 40,
  4141. "height": 40
  4142. },
  4143. "_startAxis": 0,
  4144. "_paddingLeft": 20,
  4145. "_paddingRight": 20,
  4146. "_paddingTop": 20,
  4147. "_paddingBottom": 20,
  4148. "_spacingX": 20,
  4149. "_spacingY": 20,
  4150. "_verticalDirection": 1,
  4151. "_horizontalDirection": 0,
  4152. "_constraint": 2,
  4153. "_constraintNum": 4,
  4154. "_affectedByScale": false,
  4155. "_isAlign": true,
  4156. "_id": "faVChaPYlFOqWGr4AS3586"
  4157. },
  4158. {
  4159. "__type__": "cc.UITransform",
  4160. "_name": "",
  4161. "_objFlags": 0,
  4162. "__editorExtras__": {},
  4163. "node": {
  4164. "__id__": 99
  4165. },
  4166. "_enabled": true,
  4167. "__prefab": null,
  4168. "_contentSize": {
  4169. "__type__": "cc.Size",
  4170. "width": 600,
  4171. "height": 350
  4172. },
  4173. "_anchorPoint": {
  4174. "__type__": "cc.Vec2",
  4175. "x": 0.5,
  4176. "y": 0.5
  4177. },
  4178. "_id": "eedCZXAnZLn4KuouUOrW6X"
  4179. },
  4180. {
  4181. "__type__": "cc.Mask",
  4182. "_name": "",
  4183. "_objFlags": 0,
  4184. "__editorExtras__": {},
  4185. "node": {
  4186. "__id__": 99
  4187. },
  4188. "_enabled": true,
  4189. "__prefab": null,
  4190. "_type": 0,
  4191. "_inverted": false,
  4192. "_segments": 64,
  4193. "_alphaThreshold": 0.1,
  4194. "_id": "72ydh4419Ha74L7gyDwuQt"
  4195. },
  4196. {
  4197. "__type__": "cc.Graphics",
  4198. "_name": "",
  4199. "_objFlags": 0,
  4200. "__editorExtras__": {},
  4201. "node": {
  4202. "__id__": 99
  4203. },
  4204. "_enabled": true,
  4205. "__prefab": null,
  4206. "_customMaterial": null,
  4207. "_srcBlendFactor": 2,
  4208. "_dstBlendFactor": 4,
  4209. "_color": {
  4210. "__type__": "cc.Color",
  4211. "r": 255,
  4212. "g": 255,
  4213. "b": 255,
  4214. "a": 255
  4215. },
  4216. "_lineWidth": 1,
  4217. "_strokeColor": {
  4218. "__type__": "cc.Color",
  4219. "r": 0,
  4220. "g": 0,
  4221. "b": 0,
  4222. "a": 255
  4223. },
  4224. "_lineJoin": 2,
  4225. "_lineCap": 0,
  4226. "_fillColor": {
  4227. "__type__": "cc.Color",
  4228. "r": 255,
  4229. "g": 255,
  4230. "b": 255,
  4231. "a": 0
  4232. },
  4233. "_miterLimit": 10,
  4234. "_id": "95Y2J0xkBMU47FDr/FkeZJ"
  4235. },
  4236. {
  4237. "__type__": "cc.Node",
  4238. "_name": "TouchMgr",
  4239. "_objFlags": 0,
  4240. "__editorExtras__": {},
  4241. "_parent": {
  4242. "__id__": 98
  4243. },
  4244. "_children": [],
  4245. "_active": true,
  4246. "_components": [
  4247. {
  4248. "__id__": 107
  4249. },
  4250. {
  4251. "__id__": 108
  4252. },
  4253. {
  4254. "__id__": 109
  4255. }
  4256. ],
  4257. "_prefab": null,
  4258. "_lpos": {
  4259. "__type__": "cc.Vec3",
  4260. "x": 5.684341886080802e-14,
  4261. "y": 0,
  4262. "z": 0
  4263. },
  4264. "_lrot": {
  4265. "__type__": "cc.Quat",
  4266. "x": 0,
  4267. "y": 0,
  4268. "z": 0,
  4269. "w": 1
  4270. },
  4271. "_lscale": {
  4272. "__type__": "cc.Vec3",
  4273. "x": 1,
  4274. "y": 1,
  4275. "z": 1
  4276. },
  4277. "_mobility": 0,
  4278. "_layer": 33554432,
  4279. "_euler": {
  4280. "__type__": "cc.Vec3",
  4281. "x": 0,
  4282. "y": 0,
  4283. "z": 0
  4284. },
  4285. "_id": "8duKbnYslMx51IZeyEPHQ0"
  4286. },
  4287. {
  4288. "__type__": "cc.UITransform",
  4289. "_name": "",
  4290. "_objFlags": 0,
  4291. "__editorExtras__": {},
  4292. "node": {
  4293. "__id__": 106
  4294. },
  4295. "_enabled": true,
  4296. "__prefab": null,
  4297. "_contentSize": {
  4298. "__type__": "cc.Size",
  4299. "width": 600,
  4300. "height": 350
  4301. },
  4302. "_anchorPoint": {
  4303. "__type__": "cc.Vec2",
  4304. "x": 0.5,
  4305. "y": 0.5
  4306. },
  4307. "_id": "adDYgmtv1GVrpzm6z/qta0"
  4308. },
  4309. {
  4310. "__type__": "cc.Widget",
  4311. "_name": "",
  4312. "_objFlags": 0,
  4313. "__editorExtras__": {},
  4314. "node": {
  4315. "__id__": 106
  4316. },
  4317. "_enabled": true,
  4318. "__prefab": null,
  4319. "_alignFlags": 12,
  4320. "_target": null,
  4321. "_left": 3.019806626980426e-14,
  4322. "_right": 1180,
  4323. "_top": 620,
  4324. "_bottom": 0,
  4325. "_horizontalCenter": 0,
  4326. "_verticalCenter": 0,
  4327. "_isAbsLeft": true,
  4328. "_isAbsRight": true,
  4329. "_isAbsTop": true,
  4330. "_isAbsBottom": true,
  4331. "_isAbsHorizontalCenter": true,
  4332. "_isAbsVerticalCenter": true,
  4333. "_originalWidth": 100,
  4334. "_originalHeight": 100,
  4335. "_alignMode": 2,
  4336. "_lockFlags": 0,
  4337. "_id": "daC76n4vhHtbcr+MKr218O"
  4338. },
  4339. {
  4340. "__type__": "2c63cooW81Gtpti/cIy4AtH",
  4341. "_name": "",
  4342. "_objFlags": 0,
  4343. "__editorExtras__": {},
  4344. "node": {
  4345. "__id__": 106
  4346. },
  4347. "_enabled": true,
  4348. "__prefab": null,
  4349. "_id": "897ZnsvZlP1buFqHudd85B"
  4350. },
  4351. {
  4352. "__type__": "cc.UITransform",
  4353. "_name": "",
  4354. "_objFlags": 0,
  4355. "__editorExtras__": {},
  4356. "node": {
  4357. "__id__": 98
  4358. },
  4359. "_enabled": true,
  4360. "__prefab": null,
  4361. "_contentSize": {
  4362. "__type__": "cc.Size",
  4363. "width": 600,
  4364. "height": 350
  4365. },
  4366. "_anchorPoint": {
  4367. "__type__": "cc.Vec2",
  4368. "x": 0.5,
  4369. "y": 0.5
  4370. },
  4371. "_id": "95maUUwWxH+7UefdoWJhrD"
  4372. },
  4373. {
  4374. "__type__": "cc.Sprite",
  4375. "_name": "",
  4376. "_objFlags": 0,
  4377. "__editorExtras__": {},
  4378. "node": {
  4379. "__id__": 98
  4380. },
  4381. "_enabled": true,
  4382. "__prefab": null,
  4383. "_customMaterial": null,
  4384. "_srcBlendFactor": 2,
  4385. "_dstBlendFactor": 4,
  4386. "_color": {
  4387. "__type__": "cc.Color",
  4388. "r": 255,
  4389. "g": 255,
  4390. "b": 255,
  4391. "a": 255
  4392. },
  4393. "_spriteFrame": {
  4394. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@f0787",
  4395. "__expectedType__": "cc.SpriteFrame"
  4396. },
  4397. "_type": 1,
  4398. "_fillType": 0,
  4399. "_sizeMode": 0,
  4400. "_fillCenter": {
  4401. "__type__": "cc.Vec2",
  4402. "x": 0,
  4403. "y": 0
  4404. },
  4405. "_fillStart": 0,
  4406. "_fillRange": 0,
  4407. "_isTrimmedMode": true,
  4408. "_useGrayscale": false,
  4409. "_atlas": null,
  4410. "_id": "eeQ5F/oEBNko+SXB3xeYPG"
  4411. },
  4412. {
  4413. "__type__": "cc.ScrollView",
  4414. "_name": "",
  4415. "_objFlags": 0,
  4416. "__editorExtras__": {},
  4417. "node": {
  4418. "__id__": 98
  4419. },
  4420. "_enabled": true,
  4421. "__prefab": null,
  4422. "bounceDuration": 0.23,
  4423. "brake": 0.75,
  4424. "elastic": true,
  4425. "inertia": true,
  4426. "horizontal": false,
  4427. "vertical": true,
  4428. "cancelInnerEvents": true,
  4429. "scrollEvents": [],
  4430. "_content": {
  4431. "__id__": 100
  4432. },
  4433. "_horizontalScrollBar": null,
  4434. "_verticalScrollBar": null,
  4435. "_id": "51BJL7/wVF4qe1Hrq3vOLB"
  4436. },
  4437. {
  4438. "__type__": "cc.Widget",
  4439. "_name": "",
  4440. "_objFlags": 0,
  4441. "__editorExtras__": {},
  4442. "node": {
  4443. "__id__": 98
  4444. },
  4445. "_enabled": true,
  4446. "__prefab": null,
  4447. "_alignFlags": 9,
  4448. "_target": null,
  4449. "_left": 100,
  4450. "_right": 0,
  4451. "_top": 140,
  4452. "_bottom": 0,
  4453. "_horizontalCenter": 0,
  4454. "_verticalCenter": 0,
  4455. "_isAbsLeft": true,
  4456. "_isAbsRight": true,
  4457. "_isAbsTop": true,
  4458. "_isAbsBottom": true,
  4459. "_isAbsHorizontalCenter": true,
  4460. "_isAbsVerticalCenter": true,
  4461. "_originalWidth": 0,
  4462. "_originalHeight": 0,
  4463. "_alignMode": 2,
  4464. "_lockFlags": 0,
  4465. "_id": "f0qwd00KxFnpZlvY6htRan"
  4466. },
  4467. {
  4468. "__type__": "f23c3WBxVtCIIISP/245dfp",
  4469. "_name": "",
  4470. "_objFlags": 0,
  4471. "__editorExtras__": {},
  4472. "node": {
  4473. "__id__": 98
  4474. },
  4475. "_enabled": true,
  4476. "__prefab": null,
  4477. "_id": "60uhV1iEZEdon6f1bPkM+X"
  4478. },
  4479. {
  4480. "__type__": "cc.Node",
  4481. "_name": "FunctionalZone",
  4482. "_objFlags": 0,
  4483. "__editorExtras__": {},
  4484. "_parent": {
  4485. "__id__": 97
  4486. },
  4487. "_children": [
  4488. {
  4489. "__id__": 116
  4490. },
  4491. {
  4492. "__id__": 125
  4493. },
  4494. {
  4495. "__id__": 134
  4496. },
  4497. {
  4498. "__id__": 143
  4499. }
  4500. ],
  4501. "_active": true,
  4502. "_components": [
  4503. {
  4504. "__id__": 148
  4505. },
  4506. {
  4507. "__id__": 149
  4508. }
  4509. ],
  4510. "_prefab": null,
  4511. "_lpos": {
  4512. "__type__": "cc.Vec3",
  4513. "x": 327.5,
  4514. "y": 45,
  4515. "z": 0
  4516. },
  4517. "_lrot": {
  4518. "__type__": "cc.Quat",
  4519. "x": 0,
  4520. "y": 0,
  4521. "z": 0,
  4522. "w": 1
  4523. },
  4524. "_lscale": {
  4525. "__type__": "cc.Vec3",
  4526. "x": 1,
  4527. "y": 1,
  4528. "z": 1
  4529. },
  4530. "_mobility": 0,
  4531. "_layer": 33554432,
  4532. "_euler": {
  4533. "__type__": "cc.Vec3",
  4534. "x": 0,
  4535. "y": 0,
  4536. "z": 0
  4537. },
  4538. "_id": "f6nAbmBstIXIqq2hR6duYu"
  4539. },
  4540. {
  4541. "__type__": "cc.Node",
  4542. "_name": "_btnMarket",
  4543. "_objFlags": 0,
  4544. "__editorExtras__": {},
  4545. "_parent": {
  4546. "__id__": 115
  4547. },
  4548. "_children": [
  4549. {
  4550. "__id__": 117
  4551. }
  4552. ],
  4553. "_active": true,
  4554. "_components": [
  4555. {
  4556. "__id__": 121
  4557. },
  4558. {
  4559. "__id__": 122
  4560. },
  4561. {
  4562. "__id__": 123
  4563. },
  4564. {
  4565. "__id__": 124
  4566. }
  4567. ],
  4568. "_prefab": null,
  4569. "_lpos": {
  4570. "__type__": "cc.Vec3",
  4571. "x": 0,
  4572. "y": 95,
  4573. "z": 0
  4574. },
  4575. "_lrot": {
  4576. "__type__": "cc.Quat",
  4577. "x": 0,
  4578. "y": 0,
  4579. "z": 0,
  4580. "w": 1
  4581. },
  4582. "_lscale": {
  4583. "__type__": "cc.Vec3",
  4584. "x": 1,
  4585. "y": 1,
  4586. "z": 1
  4587. },
  4588. "_mobility": 0,
  4589. "_layer": 33554432,
  4590. "_euler": {
  4591. "__type__": "cc.Vec3",
  4592. "x": 0,
  4593. "y": 0,
  4594. "z": 0
  4595. },
  4596. "_id": "b0qF6KoKhFy6mVAFFlpykP"
  4597. },
  4598. {
  4599. "__type__": "cc.Node",
  4600. "_name": "Label",
  4601. "_objFlags": 0,
  4602. "__editorExtras__": {},
  4603. "_parent": {
  4604. "__id__": 116
  4605. },
  4606. "_children": [],
  4607. "_active": true,
  4608. "_components": [
  4609. {
  4610. "__id__": 118
  4611. },
  4612. {
  4613. "__id__": 119
  4614. },
  4615. {
  4616. "__id__": 120
  4617. }
  4618. ],
  4619. "_prefab": null,
  4620. "_lpos": {
  4621. "__type__": "cc.Vec3",
  4622. "x": 0,
  4623. "y": 74.8,
  4624. "z": 0
  4625. },
  4626. "_lrot": {
  4627. "__type__": "cc.Quat",
  4628. "x": 0,
  4629. "y": 0,
  4630. "z": 0,
  4631. "w": 1
  4632. },
  4633. "_lscale": {
  4634. "__type__": "cc.Vec3",
  4635. "x": 1,
  4636. "y": 1,
  4637. "z": 1
  4638. },
  4639. "_mobility": 0,
  4640. "_layer": 33554432,
  4641. "_euler": {
  4642. "__type__": "cc.Vec3",
  4643. "x": 0,
  4644. "y": 0,
  4645. "z": 0
  4646. },
  4647. "_id": "64auNhS0lG1r1GllaiabZ3"
  4648. },
  4649. {
  4650. "__type__": "cc.UITransform",
  4651. "_name": "",
  4652. "_objFlags": 0,
  4653. "__editorExtras__": {},
  4654. "node": {
  4655. "__id__": 117
  4656. },
  4657. "_enabled": true,
  4658. "__prefab": null,
  4659. "_contentSize": {
  4660. "__type__": "cc.Size",
  4661. "width": 68.3349609375,
  4662. "height": 50.4
  4663. },
  4664. "_anchorPoint": {
  4665. "__type__": "cc.Vec2",
  4666. "x": 0.5,
  4667. "y": 0.5
  4668. },
  4669. "_id": "f0zVLF/g1DR5yH5wf9g/N5"
  4670. },
  4671. {
  4672. "__type__": "cc.Label",
  4673. "_name": "",
  4674. "_objFlags": 0,
  4675. "__editorExtras__": {},
  4676. "node": {
  4677. "__id__": 117
  4678. },
  4679. "_enabled": true,
  4680. "__prefab": null,
  4681. "_customMaterial": null,
  4682. "_srcBlendFactor": 2,
  4683. "_dstBlendFactor": 4,
  4684. "_color": {
  4685. "__type__": "cc.Color",
  4686. "r": 255,
  4687. "g": 0,
  4688. "b": 0,
  4689. "a": 255
  4690. },
  4691. "_string": "市 场",
  4692. "_horizontalAlign": 1,
  4693. "_verticalAlign": 1,
  4694. "_actualFontSize": 30,
  4695. "_fontSize": 30,
  4696. "_fontFamily": "Arial",
  4697. "_lineHeight": 40,
  4698. "_overflow": 0,
  4699. "_enableWrapText": true,
  4700. "_font": null,
  4701. "_isSystemFontUsed": true,
  4702. "_spacingX": 0,
  4703. "_isItalic": false,
  4704. "_isBold": true,
  4705. "_isUnderline": false,
  4706. "_underlineHeight": 2,
  4707. "_cacheMode": 0,
  4708. "_enableOutline": false,
  4709. "_outlineColor": {
  4710. "__type__": "cc.Color",
  4711. "r": 0,
  4712. "g": 0,
  4713. "b": 0,
  4714. "a": 255
  4715. },
  4716. "_outlineWidth": 2,
  4717. "_enableShadow": false,
  4718. "_shadowColor": {
  4719. "__type__": "cc.Color",
  4720. "r": 0,
  4721. "g": 0,
  4722. "b": 0,
  4723. "a": 255
  4724. },
  4725. "_shadowOffset": {
  4726. "__type__": "cc.Vec2",
  4727. "x": 2,
  4728. "y": 2
  4729. },
  4730. "_shadowBlur": 2,
  4731. "_id": "57WXumqCxKAp0JuzFBdVaH"
  4732. },
  4733. {
  4734. "__type__": "cc.Widget",
  4735. "_name": "",
  4736. "_objFlags": 0,
  4737. "__editorExtras__": {},
  4738. "node": {
  4739. "__id__": 117
  4740. },
  4741. "_enabled": true,
  4742. "__prefab": null,
  4743. "_alignFlags": 41,
  4744. "_target": null,
  4745. "_left": 15.83251953125,
  4746. "_right": 15.83251953125,
  4747. "_top": -50,
  4748. "_bottom": 0,
  4749. "_horizontalCenter": 0,
  4750. "_verticalCenter": 0,
  4751. "_isAbsLeft": true,
  4752. "_isAbsRight": true,
  4753. "_isAbsTop": true,
  4754. "_isAbsBottom": true,
  4755. "_isAbsHorizontalCenter": true,
  4756. "_isAbsVerticalCenter": true,
  4757. "_originalWidth": 80,
  4758. "_originalHeight": 0,
  4759. "_alignMode": 2,
  4760. "_lockFlags": 0,
  4761. "_id": "e84kGpNgpLarb1tZdz0q2W"
  4762. },
  4763. {
  4764. "__type__": "cc.UITransform",
  4765. "_name": "",
  4766. "_objFlags": 0,
  4767. "__editorExtras__": {},
  4768. "node": {
  4769. "__id__": 116
  4770. },
  4771. "_enabled": true,
  4772. "__prefab": null,
  4773. "_contentSize": {
  4774. "__type__": "cc.Size",
  4775. "width": 100,
  4776. "height": 100
  4777. },
  4778. "_anchorPoint": {
  4779. "__type__": "cc.Vec2",
  4780. "x": 0.5,
  4781. "y": 0.5
  4782. },
  4783. "_id": "9fqLcTb1RFT6NM+4KoT1FN"
  4784. },
  4785. {
  4786. "__type__": "cc.Sprite",
  4787. "_name": "",
  4788. "_objFlags": 0,
  4789. "__editorExtras__": {},
  4790. "node": {
  4791. "__id__": 116
  4792. },
  4793. "_enabled": true,
  4794. "__prefab": null,
  4795. "_customMaterial": null,
  4796. "_srcBlendFactor": 2,
  4797. "_dstBlendFactor": 4,
  4798. "_color": {
  4799. "__type__": "cc.Color",
  4800. "r": 255,
  4801. "g": 255,
  4802. "b": 255,
  4803. "a": 255
  4804. },
  4805. "_spriteFrame": {
  4806. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@f80f2",
  4807. "__expectedType__": "cc.SpriteFrame"
  4808. },
  4809. "_type": 1,
  4810. "_fillType": 0,
  4811. "_sizeMode": 0,
  4812. "_fillCenter": {
  4813. "__type__": "cc.Vec2",
  4814. "x": 0,
  4815. "y": 0
  4816. },
  4817. "_fillStart": 0,
  4818. "_fillRange": 0,
  4819. "_isTrimmedMode": true,
  4820. "_useGrayscale": false,
  4821. "_atlas": null,
  4822. "_id": "d5gVG97TRDT4koAezY+GqS"
  4823. },
  4824. {
  4825. "__type__": "cc.Button",
  4826. "_name": "",
  4827. "_objFlags": 0,
  4828. "__editorExtras__": {},
  4829. "node": {
  4830. "__id__": 116
  4831. },
  4832. "_enabled": true,
  4833. "__prefab": null,
  4834. "clickEvents": [],
  4835. "_interactable": true,
  4836. "_transition": 3,
  4837. "_normalColor": {
  4838. "__type__": "cc.Color",
  4839. "r": 214,
  4840. "g": 214,
  4841. "b": 214,
  4842. "a": 255
  4843. },
  4844. "_hoverColor": {
  4845. "__type__": "cc.Color",
  4846. "r": 211,
  4847. "g": 211,
  4848. "b": 211,
  4849. "a": 255
  4850. },
  4851. "_pressedColor": {
  4852. "__type__": "cc.Color",
  4853. "r": 255,
  4854. "g": 255,
  4855. "b": 255,
  4856. "a": 255
  4857. },
  4858. "_disabledColor": {
  4859. "__type__": "cc.Color",
  4860. "r": 124,
  4861. "g": 124,
  4862. "b": 124,
  4863. "a": 255
  4864. },
  4865. "_normalSprite": null,
  4866. "_hoverSprite": null,
  4867. "_pressedSprite": null,
  4868. "_disabledSprite": null,
  4869. "_duration": 0.1,
  4870. "_zoomScale": 1.2,
  4871. "_target": {
  4872. "__id__": 116
  4873. },
  4874. "_id": "07ez56HbNJjZ3WE7BFrNNX"
  4875. },
  4876. {
  4877. "__type__": "cc.Widget",
  4878. "_name": "",
  4879. "_objFlags": 0,
  4880. "__editorExtras__": {},
  4881. "node": {
  4882. "__id__": 116
  4883. },
  4884. "_enabled": true,
  4885. "__prefab": null,
  4886. "_alignFlags": 41,
  4887. "_target": null,
  4888. "_left": 162.5,
  4889. "_right": 162.5,
  4890. "_top": 30,
  4891. "_bottom": 245.894,
  4892. "_horizontalCenter": 0,
  4893. "_verticalCenter": 0,
  4894. "_isAbsLeft": true,
  4895. "_isAbsRight": true,
  4896. "_isAbsTop": true,
  4897. "_isAbsBottom": true,
  4898. "_isAbsHorizontalCenter": true,
  4899. "_isAbsVerticalCenter": true,
  4900. "_originalWidth": 100,
  4901. "_originalHeight": 40,
  4902. "_alignMode": 2,
  4903. "_lockFlags": 0,
  4904. "_id": "46n2ST7XtHs7vTleM08N2t"
  4905. },
  4906. {
  4907. "__type__": "cc.Node",
  4908. "_name": "_btnCompound",
  4909. "_objFlags": 0,
  4910. "__editorExtras__": {},
  4911. "_parent": {
  4912. "__id__": 115
  4913. },
  4914. "_children": [
  4915. {
  4916. "__id__": 126
  4917. }
  4918. ],
  4919. "_active": true,
  4920. "_components": [
  4921. {
  4922. "__id__": 130
  4923. },
  4924. {
  4925. "__id__": 131
  4926. },
  4927. {
  4928. "__id__": 132
  4929. },
  4930. {
  4931. "__id__": 133
  4932. }
  4933. ],
  4934. "_prefab": null,
  4935. "_lpos": {
  4936. "__type__": "cc.Vec3",
  4937. "x": -112.5,
  4938. "y": -79.352,
  4939. "z": 0
  4940. },
  4941. "_lrot": {
  4942. "__type__": "cc.Quat",
  4943. "x": 0,
  4944. "y": 0,
  4945. "z": 0,
  4946. "w": 1
  4947. },
  4948. "_lscale": {
  4949. "__type__": "cc.Vec3",
  4950. "x": 1,
  4951. "y": 1,
  4952. "z": 1
  4953. },
  4954. "_mobility": 0,
  4955. "_layer": 33554432,
  4956. "_euler": {
  4957. "__type__": "cc.Vec3",
  4958. "x": 0,
  4959. "y": 0,
  4960. "z": 0
  4961. },
  4962. "_id": "00YAy6MANOlKDTHiSmYSDg"
  4963. },
  4964. {
  4965. "__type__": "cc.Node",
  4966. "_name": "Label",
  4967. "_objFlags": 0,
  4968. "__editorExtras__": {},
  4969. "_parent": {
  4970. "__id__": 125
  4971. },
  4972. "_children": [],
  4973. "_active": true,
  4974. "_components": [
  4975. {
  4976. "__id__": 127
  4977. },
  4978. {
  4979. "__id__": 128
  4980. },
  4981. {
  4982. "__id__": 129
  4983. }
  4984. ],
  4985. "_prefab": null,
  4986. "_lpos": {
  4987. "__type__": "cc.Vec3",
  4988. "x": 0,
  4989. "y": -74.8,
  4990. "z": 0
  4991. },
  4992. "_lrot": {
  4993. "__type__": "cc.Quat",
  4994. "x": 0,
  4995. "y": 0,
  4996. "z": 0,
  4997. "w": 1
  4998. },
  4999. "_lscale": {
  5000. "__type__": "cc.Vec3",
  5001. "x": 1,
  5002. "y": 1,
  5003. "z": 1
  5004. },
  5005. "_mobility": 0,
  5006. "_layer": 33554432,
  5007. "_euler": {
  5008. "__type__": "cc.Vec3",
  5009. "x": 0,
  5010. "y": 0,
  5011. "z": 0
  5012. },
  5013. "_id": "2f3LVCYIRLMI365B0rcL+J"
  5014. },
  5015. {
  5016. "__type__": "cc.UITransform",
  5017. "_name": "",
  5018. "_objFlags": 0,
  5019. "__editorExtras__": {},
  5020. "node": {
  5021. "__id__": 126
  5022. },
  5023. "_enabled": true,
  5024. "__prefab": null,
  5025. "_contentSize": {
  5026. "__type__": "cc.Size",
  5027. "width": 68.3349609375,
  5028. "height": 50.4
  5029. },
  5030. "_anchorPoint": {
  5031. "__type__": "cc.Vec2",
  5032. "x": 0.5,
  5033. "y": 0.5
  5034. },
  5035. "_id": "ebA0hRsbpA+YYqHPkIsuAf"
  5036. },
  5037. {
  5038. "__type__": "cc.Label",
  5039. "_name": "",
  5040. "_objFlags": 0,
  5041. "__editorExtras__": {},
  5042. "node": {
  5043. "__id__": 126
  5044. },
  5045. "_enabled": true,
  5046. "__prefab": null,
  5047. "_customMaterial": null,
  5048. "_srcBlendFactor": 2,
  5049. "_dstBlendFactor": 4,
  5050. "_color": {
  5051. "__type__": "cc.Color",
  5052. "r": 255,
  5053. "g": 0,
  5054. "b": 0,
  5055. "a": 255
  5056. },
  5057. "_string": "合 成",
  5058. "_horizontalAlign": 1,
  5059. "_verticalAlign": 1,
  5060. "_actualFontSize": 30,
  5061. "_fontSize": 30,
  5062. "_fontFamily": "Arial",
  5063. "_lineHeight": 40,
  5064. "_overflow": 0,
  5065. "_enableWrapText": true,
  5066. "_font": null,
  5067. "_isSystemFontUsed": true,
  5068. "_spacingX": 0,
  5069. "_isItalic": false,
  5070. "_isBold": true,
  5071. "_isUnderline": false,
  5072. "_underlineHeight": 2,
  5073. "_cacheMode": 0,
  5074. "_enableOutline": false,
  5075. "_outlineColor": {
  5076. "__type__": "cc.Color",
  5077. "r": 0,
  5078. "g": 0,
  5079. "b": 0,
  5080. "a": 255
  5081. },
  5082. "_outlineWidth": 2,
  5083. "_enableShadow": false,
  5084. "_shadowColor": {
  5085. "__type__": "cc.Color",
  5086. "r": 0,
  5087. "g": 0,
  5088. "b": 0,
  5089. "a": 255
  5090. },
  5091. "_shadowOffset": {
  5092. "__type__": "cc.Vec2",
  5093. "x": 2,
  5094. "y": 2
  5095. },
  5096. "_shadowBlur": 2,
  5097. "_id": "daahoUqqBBMYlRob0OI9eM"
  5098. },
  5099. {
  5100. "__type__": "cc.Widget",
  5101. "_name": "",
  5102. "_objFlags": 0,
  5103. "__editorExtras__": {},
  5104. "node": {
  5105. "__id__": 126
  5106. },
  5107. "_enabled": true,
  5108. "__prefab": null,
  5109. "_alignFlags": 44,
  5110. "_target": null,
  5111. "_left": 15.83251953125,
  5112. "_right": 15.83251953125,
  5113. "_top": -50,
  5114. "_bottom": -50,
  5115. "_horizontalCenter": 0,
  5116. "_verticalCenter": 0,
  5117. "_isAbsLeft": true,
  5118. "_isAbsRight": true,
  5119. "_isAbsTop": true,
  5120. "_isAbsBottom": true,
  5121. "_isAbsHorizontalCenter": true,
  5122. "_isAbsVerticalCenter": true,
  5123. "_originalWidth": 80,
  5124. "_originalHeight": 0,
  5125. "_alignMode": 2,
  5126. "_lockFlags": 0,
  5127. "_id": "0aApY1b/lLHpRrUj8DE8nP"
  5128. },
  5129. {
  5130. "__type__": "cc.UITransform",
  5131. "_name": "",
  5132. "_objFlags": 0,
  5133. "__editorExtras__": {},
  5134. "node": {
  5135. "__id__": 125
  5136. },
  5137. "_enabled": true,
  5138. "__prefab": null,
  5139. "_contentSize": {
  5140. "__type__": "cc.Size",
  5141. "width": 100,
  5142. "height": 100
  5143. },
  5144. "_anchorPoint": {
  5145. "__type__": "cc.Vec2",
  5146. "x": 0.5,
  5147. "y": 0.5
  5148. },
  5149. "_id": "debHp+r4RLKIJV9HaL66lj"
  5150. },
  5151. {
  5152. "__type__": "cc.Sprite",
  5153. "_name": "",
  5154. "_objFlags": 0,
  5155. "__editorExtras__": {},
  5156. "node": {
  5157. "__id__": 125
  5158. },
  5159. "_enabled": true,
  5160. "__prefab": null,
  5161. "_customMaterial": null,
  5162. "_srcBlendFactor": 2,
  5163. "_dstBlendFactor": 4,
  5164. "_color": {
  5165. "__type__": "cc.Color",
  5166. "r": 255,
  5167. "g": 255,
  5168. "b": 255,
  5169. "a": 255
  5170. },
  5171. "_spriteFrame": {
  5172. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@2a05f",
  5173. "__expectedType__": "cc.SpriteFrame"
  5174. },
  5175. "_type": 1,
  5176. "_fillType": 0,
  5177. "_sizeMode": 0,
  5178. "_fillCenter": {
  5179. "__type__": "cc.Vec2",
  5180. "x": 0,
  5181. "y": 0
  5182. },
  5183. "_fillStart": 0,
  5184. "_fillRange": 0,
  5185. "_isTrimmedMode": true,
  5186. "_useGrayscale": false,
  5187. "_atlas": null,
  5188. "_id": "aa4u+6Dr1J2oYBS89NsdXE"
  5189. },
  5190. {
  5191. "__type__": "cc.Button",
  5192. "_name": "",
  5193. "_objFlags": 0,
  5194. "__editorExtras__": {},
  5195. "node": {
  5196. "__id__": 125
  5197. },
  5198. "_enabled": true,
  5199. "__prefab": null,
  5200. "clickEvents": [],
  5201. "_interactable": true,
  5202. "_transition": 3,
  5203. "_normalColor": {
  5204. "__type__": "cc.Color",
  5205. "r": 214,
  5206. "g": 214,
  5207. "b": 214,
  5208. "a": 255
  5209. },
  5210. "_hoverColor": {
  5211. "__type__": "cc.Color",
  5212. "r": 211,
  5213. "g": 211,
  5214. "b": 211,
  5215. "a": 255
  5216. },
  5217. "_pressedColor": {
  5218. "__type__": "cc.Color",
  5219. "r": 255,
  5220. "g": 255,
  5221. "b": 255,
  5222. "a": 255
  5223. },
  5224. "_disabledColor": {
  5225. "__type__": "cc.Color",
  5226. "r": 124,
  5227. "g": 124,
  5228. "b": 124,
  5229. "a": 255
  5230. },
  5231. "_normalSprite": null,
  5232. "_hoverSprite": null,
  5233. "_pressedSprite": null,
  5234. "_disabledSprite": null,
  5235. "_duration": 0.1,
  5236. "_zoomScale": 1.2,
  5237. "_target": null,
  5238. "_id": "e0MBJoVSZFzouMDmDiSyne"
  5239. },
  5240. {
  5241. "__type__": "cc.Widget",
  5242. "_name": "",
  5243. "_objFlags": 0,
  5244. "__editorExtras__": {},
  5245. "node": {
  5246. "__id__": 125
  5247. },
  5248. "_enabled": true,
  5249. "__prefab": null,
  5250. "_alignFlags": 13,
  5251. "_target": null,
  5252. "_left": 50,
  5253. "_right": 0,
  5254. "_top": 204.352,
  5255. "_bottom": 45.647999999999996,
  5256. "_horizontalCenter": 0,
  5257. "_verticalCenter": 0,
  5258. "_isAbsLeft": true,
  5259. "_isAbsRight": true,
  5260. "_isAbsTop": true,
  5261. "_isAbsBottom": true,
  5262. "_isAbsHorizontalCenter": true,
  5263. "_isAbsVerticalCenter": true,
  5264. "_originalWidth": 0,
  5265. "_originalHeight": 40,
  5266. "_alignMode": 2,
  5267. "_lockFlags": 0,
  5268. "_id": "86pLZP8lBNQ6iWvjvS5LQw"
  5269. },
  5270. {
  5271. "__type__": "cc.Node",
  5272. "_name": "_btnUpGrade",
  5273. "_objFlags": 0,
  5274. "__editorExtras__": {},
  5275. "_parent": {
  5276. "__id__": 115
  5277. },
  5278. "_children": [
  5279. {
  5280. "__id__": 135
  5281. }
  5282. ],
  5283. "_active": true,
  5284. "_components": [
  5285. {
  5286. "__id__": 139
  5287. },
  5288. {
  5289. "__id__": 140
  5290. },
  5291. {
  5292. "__id__": 141
  5293. },
  5294. {
  5295. "__id__": 142
  5296. }
  5297. ],
  5298. "_prefab": null,
  5299. "_lpos": {
  5300. "__type__": "cc.Vec3",
  5301. "x": 112.5,
  5302. "y": -81.51600000000002,
  5303. "z": 0
  5304. },
  5305. "_lrot": {
  5306. "__type__": "cc.Quat",
  5307. "x": 0,
  5308. "y": 0,
  5309. "z": 0,
  5310. "w": 1
  5311. },
  5312. "_lscale": {
  5313. "__type__": "cc.Vec3",
  5314. "x": 1,
  5315. "y": 1,
  5316. "z": 1
  5317. },
  5318. "_mobility": 0,
  5319. "_layer": 33554432,
  5320. "_euler": {
  5321. "__type__": "cc.Vec3",
  5322. "x": 0,
  5323. "y": 0,
  5324. "z": 0
  5325. },
  5326. "_id": "cfO7iDnEVHUq0MWKCnZtSG"
  5327. },
  5328. {
  5329. "__type__": "cc.Node",
  5330. "_name": "Label",
  5331. "_objFlags": 0,
  5332. "__editorExtras__": {},
  5333. "_parent": {
  5334. "__id__": 134
  5335. },
  5336. "_children": [],
  5337. "_active": true,
  5338. "_components": [
  5339. {
  5340. "__id__": 136
  5341. },
  5342. {
  5343. "__id__": 137
  5344. },
  5345. {
  5346. "__id__": 138
  5347. }
  5348. ],
  5349. "_prefab": null,
  5350. "_lpos": {
  5351. "__type__": "cc.Vec3",
  5352. "x": 0,
  5353. "y": -74.8,
  5354. "z": 0
  5355. },
  5356. "_lrot": {
  5357. "__type__": "cc.Quat",
  5358. "x": 0,
  5359. "y": 0,
  5360. "z": 0,
  5361. "w": 1
  5362. },
  5363. "_lscale": {
  5364. "__type__": "cc.Vec3",
  5365. "x": 1,
  5366. "y": 1,
  5367. "z": 1
  5368. },
  5369. "_mobility": 0,
  5370. "_layer": 33554432,
  5371. "_euler": {
  5372. "__type__": "cc.Vec3",
  5373. "x": 0,
  5374. "y": 0,
  5375. "z": 0
  5376. },
  5377. "_id": "e5M2HdvspC9qv3rmR8YXoG"
  5378. },
  5379. {
  5380. "__type__": "cc.UITransform",
  5381. "_name": "",
  5382. "_objFlags": 0,
  5383. "__editorExtras__": {},
  5384. "node": {
  5385. "__id__": 135
  5386. },
  5387. "_enabled": true,
  5388. "__prefab": null,
  5389. "_contentSize": {
  5390. "__type__": "cc.Size",
  5391. "width": 68.3349609375,
  5392. "height": 50.4
  5393. },
  5394. "_anchorPoint": {
  5395. "__type__": "cc.Vec2",
  5396. "x": 0.5,
  5397. "y": 0.5
  5398. },
  5399. "_id": "b7jPT7vu1GTK5pXUFf75ID"
  5400. },
  5401. {
  5402. "__type__": "cc.Label",
  5403. "_name": "",
  5404. "_objFlags": 0,
  5405. "__editorExtras__": {},
  5406. "node": {
  5407. "__id__": 135
  5408. },
  5409. "_enabled": true,
  5410. "__prefab": null,
  5411. "_customMaterial": null,
  5412. "_srcBlendFactor": 2,
  5413. "_dstBlendFactor": 4,
  5414. "_color": {
  5415. "__type__": "cc.Color",
  5416. "r": 255,
  5417. "g": 0,
  5418. "b": 0,
  5419. "a": 255
  5420. },
  5421. "_string": "升 级",
  5422. "_horizontalAlign": 1,
  5423. "_verticalAlign": 1,
  5424. "_actualFontSize": 30,
  5425. "_fontSize": 30,
  5426. "_fontFamily": "Arial",
  5427. "_lineHeight": 40,
  5428. "_overflow": 0,
  5429. "_enableWrapText": true,
  5430. "_font": null,
  5431. "_isSystemFontUsed": true,
  5432. "_spacingX": 0,
  5433. "_isItalic": false,
  5434. "_isBold": true,
  5435. "_isUnderline": false,
  5436. "_underlineHeight": 2,
  5437. "_cacheMode": 0,
  5438. "_enableOutline": false,
  5439. "_outlineColor": {
  5440. "__type__": "cc.Color",
  5441. "r": 0,
  5442. "g": 0,
  5443. "b": 0,
  5444. "a": 255
  5445. },
  5446. "_outlineWidth": 2,
  5447. "_enableShadow": false,
  5448. "_shadowColor": {
  5449. "__type__": "cc.Color",
  5450. "r": 0,
  5451. "g": 0,
  5452. "b": 0,
  5453. "a": 255
  5454. },
  5455. "_shadowOffset": {
  5456. "__type__": "cc.Vec2",
  5457. "x": 2,
  5458. "y": 2
  5459. },
  5460. "_shadowBlur": 2,
  5461. "_id": "653CrkYT1E16ie2cpZgEPa"
  5462. },
  5463. {
  5464. "__type__": "cc.Widget",
  5465. "_name": "",
  5466. "_objFlags": 0,
  5467. "__editorExtras__": {},
  5468. "node": {
  5469. "__id__": 135
  5470. },
  5471. "_enabled": true,
  5472. "__prefab": null,
  5473. "_alignFlags": 44,
  5474. "_target": null,
  5475. "_left": 15.83251953125,
  5476. "_right": 15.83251953125,
  5477. "_top": -50,
  5478. "_bottom": -50,
  5479. "_horizontalCenter": 0,
  5480. "_verticalCenter": 0,
  5481. "_isAbsLeft": true,
  5482. "_isAbsRight": true,
  5483. "_isAbsTop": true,
  5484. "_isAbsBottom": true,
  5485. "_isAbsHorizontalCenter": true,
  5486. "_isAbsVerticalCenter": true,
  5487. "_originalWidth": 80,
  5488. "_originalHeight": 0,
  5489. "_alignMode": 2,
  5490. "_lockFlags": 0,
  5491. "_id": "a15sZgp6JN2Ypsf+tT+TFg"
  5492. },
  5493. {
  5494. "__type__": "cc.UITransform",
  5495. "_name": "",
  5496. "_objFlags": 0,
  5497. "__editorExtras__": {},
  5498. "node": {
  5499. "__id__": 134
  5500. },
  5501. "_enabled": true,
  5502. "__prefab": null,
  5503. "_contentSize": {
  5504. "__type__": "cc.Size",
  5505. "width": 100,
  5506. "height": 100
  5507. },
  5508. "_anchorPoint": {
  5509. "__type__": "cc.Vec2",
  5510. "x": 0.5,
  5511. "y": 0.5
  5512. },
  5513. "_id": "3fxLzRT0JOCrgPscEKLJie"
  5514. },
  5515. {
  5516. "__type__": "cc.Sprite",
  5517. "_name": "",
  5518. "_objFlags": 0,
  5519. "__editorExtras__": {},
  5520. "node": {
  5521. "__id__": 134
  5522. },
  5523. "_enabled": true,
  5524. "__prefab": null,
  5525. "_customMaterial": null,
  5526. "_srcBlendFactor": 2,
  5527. "_dstBlendFactor": 4,
  5528. "_color": {
  5529. "__type__": "cc.Color",
  5530. "r": 255,
  5531. "g": 255,
  5532. "b": 255,
  5533. "a": 255
  5534. },
  5535. "_spriteFrame": {
  5536. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@f194f",
  5537. "__expectedType__": "cc.SpriteFrame"
  5538. },
  5539. "_type": 1,
  5540. "_fillType": 0,
  5541. "_sizeMode": 0,
  5542. "_fillCenter": {
  5543. "__type__": "cc.Vec2",
  5544. "x": 0,
  5545. "y": 0
  5546. },
  5547. "_fillStart": 0,
  5548. "_fillRange": 0,
  5549. "_isTrimmedMode": true,
  5550. "_useGrayscale": false,
  5551. "_atlas": null,
  5552. "_id": "20SrRrIBZFw5UGYuZ1S224"
  5553. },
  5554. {
  5555. "__type__": "cc.Button",
  5556. "_name": "",
  5557. "_objFlags": 0,
  5558. "__editorExtras__": {},
  5559. "node": {
  5560. "__id__": 134
  5561. },
  5562. "_enabled": true,
  5563. "__prefab": null,
  5564. "clickEvents": [],
  5565. "_interactable": true,
  5566. "_transition": 3,
  5567. "_normalColor": {
  5568. "__type__": "cc.Color",
  5569. "r": 214,
  5570. "g": 214,
  5571. "b": 214,
  5572. "a": 255
  5573. },
  5574. "_hoverColor": {
  5575. "__type__": "cc.Color",
  5576. "r": 211,
  5577. "g": 211,
  5578. "b": 211,
  5579. "a": 255
  5580. },
  5581. "_pressedColor": {
  5582. "__type__": "cc.Color",
  5583. "r": 255,
  5584. "g": 255,
  5585. "b": 255,
  5586. "a": 255
  5587. },
  5588. "_disabledColor": {
  5589. "__type__": "cc.Color",
  5590. "r": 124,
  5591. "g": 124,
  5592. "b": 124,
  5593. "a": 255
  5594. },
  5595. "_normalSprite": null,
  5596. "_hoverSprite": null,
  5597. "_pressedSprite": null,
  5598. "_disabledSprite": null,
  5599. "_duration": 0.1,
  5600. "_zoomScale": 1.2,
  5601. "_target": {
  5602. "__id__": 134
  5603. },
  5604. "_id": "e5uYyZ0JBFNpE5SSgWn4g8"
  5605. },
  5606. {
  5607. "__type__": "cc.Widget",
  5608. "_name": "",
  5609. "_objFlags": 0,
  5610. "__editorExtras__": {},
  5611. "node": {
  5612. "__id__": 134
  5613. },
  5614. "_enabled": true,
  5615. "__prefab": null,
  5616. "_alignFlags": 37,
  5617. "_target": null,
  5618. "_left": 0,
  5619. "_right": 50,
  5620. "_top": 206.51600000000002,
  5621. "_bottom": 43.48399999999998,
  5622. "_horizontalCenter": 0,
  5623. "_verticalCenter": 0,
  5624. "_isAbsLeft": true,
  5625. "_isAbsRight": true,
  5626. "_isAbsTop": true,
  5627. "_isAbsBottom": true,
  5628. "_isAbsHorizontalCenter": true,
  5629. "_isAbsVerticalCenter": true,
  5630. "_originalWidth": 0,
  5631. "_originalHeight": 40,
  5632. "_alignMode": 2,
  5633. "_lockFlags": 0,
  5634. "_id": "d2IAOrSMVNzqlKPN2rvCum"
  5635. },
  5636. {
  5637. "__type__": "cc.Node",
  5638. "_name": "FreeGold",
  5639. "_objFlags": 0,
  5640. "__editorExtras__": {},
  5641. "_parent": {
  5642. "__id__": 115
  5643. },
  5644. "_children": [],
  5645. "_active": true,
  5646. "_components": [
  5647. {
  5648. "__id__": 144
  5649. },
  5650. {
  5651. "__id__": 145
  5652. },
  5653. {
  5654. "__id__": 146
  5655. },
  5656. {
  5657. "__id__": 147
  5658. }
  5659. ],
  5660. "_prefab": null,
  5661. "_lpos": {
  5662. "__type__": "cc.Vec3",
  5663. "x": -132.5,
  5664. "y": 95,
  5665. "z": 0
  5666. },
  5667. "_lrot": {
  5668. "__type__": "cc.Quat",
  5669. "x": 0,
  5670. "y": 0,
  5671. "z": 0,
  5672. "w": 1
  5673. },
  5674. "_lscale": {
  5675. "__type__": "cc.Vec3",
  5676. "x": 1,
  5677. "y": 1,
  5678. "z": 1
  5679. },
  5680. "_mobility": 0,
  5681. "_layer": 33554432,
  5682. "_euler": {
  5683. "__type__": "cc.Vec3",
  5684. "x": 0,
  5685. "y": 0,
  5686. "z": 0
  5687. },
  5688. "_id": "838+1PWSJNboJCjb8gl9ff"
  5689. },
  5690. {
  5691. "__type__": "cc.UITransform",
  5692. "_name": "",
  5693. "_objFlags": 0,
  5694. "__editorExtras__": {},
  5695. "node": {
  5696. "__id__": 143
  5697. },
  5698. "_enabled": true,
  5699. "__prefab": null,
  5700. "_contentSize": {
  5701. "__type__": "cc.Size",
  5702. "width": 90,
  5703. "height": 90
  5704. },
  5705. "_anchorPoint": {
  5706. "__type__": "cc.Vec2",
  5707. "x": 0.5,
  5708. "y": 0.5
  5709. },
  5710. "_id": "fd8xMCUd5NHYRbZDSeRKt3"
  5711. },
  5712. {
  5713. "__type__": "cc.Sprite",
  5714. "_name": "",
  5715. "_objFlags": 0,
  5716. "__editorExtras__": {},
  5717. "node": {
  5718. "__id__": 143
  5719. },
  5720. "_enabled": true,
  5721. "__prefab": null,
  5722. "_customMaterial": null,
  5723. "_srcBlendFactor": 2,
  5724. "_dstBlendFactor": 4,
  5725. "_color": {
  5726. "__type__": "cc.Color",
  5727. "r": 255,
  5728. "g": 255,
  5729. "b": 255,
  5730. "a": 255
  5731. },
  5732. "_spriteFrame": {
  5733. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@20d46",
  5734. "__expectedType__": "cc.SpriteFrame"
  5735. },
  5736. "_type": 1,
  5737. "_fillType": 0,
  5738. "_sizeMode": 0,
  5739. "_fillCenter": {
  5740. "__type__": "cc.Vec2",
  5741. "x": 0,
  5742. "y": 0
  5743. },
  5744. "_fillStart": 0,
  5745. "_fillRange": 0,
  5746. "_isTrimmedMode": true,
  5747. "_useGrayscale": false,
  5748. "_atlas": null,
  5749. "_id": "72DHmQlW1GUIjOFqD4f3JD"
  5750. },
  5751. {
  5752. "__type__": "cc.Button",
  5753. "_name": "",
  5754. "_objFlags": 0,
  5755. "__editorExtras__": {},
  5756. "node": {
  5757. "__id__": 143
  5758. },
  5759. "_enabled": true,
  5760. "__prefab": null,
  5761. "clickEvents": [],
  5762. "_interactable": true,
  5763. "_transition": 3,
  5764. "_normalColor": {
  5765. "__type__": "cc.Color",
  5766. "r": 214,
  5767. "g": 214,
  5768. "b": 214,
  5769. "a": 255
  5770. },
  5771. "_hoverColor": {
  5772. "__type__": "cc.Color",
  5773. "r": 211,
  5774. "g": 211,
  5775. "b": 211,
  5776. "a": 255
  5777. },
  5778. "_pressedColor": {
  5779. "__type__": "cc.Color",
  5780. "r": 255,
  5781. "g": 255,
  5782. "b": 255,
  5783. "a": 255
  5784. },
  5785. "_disabledColor": {
  5786. "__type__": "cc.Color",
  5787. "r": 124,
  5788. "g": 124,
  5789. "b": 124,
  5790. "a": 255
  5791. },
  5792. "_normalSprite": null,
  5793. "_hoverSprite": null,
  5794. "_pressedSprite": null,
  5795. "_disabledSprite": null,
  5796. "_duration": 0.1,
  5797. "_zoomScale": 1.2,
  5798. "_target": {
  5799. "__id__": 143
  5800. },
  5801. "_id": "27J/cl5V5BcZkZhHB3sXmB"
  5802. },
  5803. {
  5804. "__type__": "cc.Widget",
  5805. "_name": "",
  5806. "_objFlags": 0,
  5807. "__editorExtras__": {},
  5808. "node": {
  5809. "__id__": 143
  5810. },
  5811. "_enabled": true,
  5812. "__prefab": null,
  5813. "_alignFlags": 9,
  5814. "_target": null,
  5815. "_left": 35,
  5816. "_right": 0,
  5817. "_top": 35,
  5818. "_bottom": 0,
  5819. "_horizontalCenter": 0,
  5820. "_verticalCenter": 0,
  5821. "_isAbsLeft": true,
  5822. "_isAbsRight": true,
  5823. "_isAbsTop": true,
  5824. "_isAbsBottom": true,
  5825. "_isAbsHorizontalCenter": true,
  5826. "_isAbsVerticalCenter": true,
  5827. "_originalWidth": 0,
  5828. "_originalHeight": 0,
  5829. "_alignMode": 2,
  5830. "_lockFlags": 0,
  5831. "_id": "0eMrghtEtGlq8SbrxjxsGS"
  5832. },
  5833. {
  5834. "__type__": "cc.UITransform",
  5835. "_name": "",
  5836. "_objFlags": 0,
  5837. "__editorExtras__": {},
  5838. "node": {
  5839. "__id__": 115
  5840. },
  5841. "_enabled": true,
  5842. "__prefab": null,
  5843. "_contentSize": {
  5844. "__type__": "cc.Size",
  5845. "width": 425,
  5846. "height": 350
  5847. },
  5848. "_anchorPoint": {
  5849. "__type__": "cc.Vec2",
  5850. "x": 0.5,
  5851. "y": 0.5
  5852. },
  5853. "_id": "62hDhHuMxNRq6yLvpfJLkV"
  5854. },
  5855. {
  5856. "__type__": "cc.Widget",
  5857. "_name": "",
  5858. "_objFlags": 0,
  5859. "__editorExtras__": {},
  5860. "node": {
  5861. "__id__": 115
  5862. },
  5863. "_enabled": true,
  5864. "__prefab": null,
  5865. "_alignFlags": 33,
  5866. "_target": null,
  5867. "_left": 0,
  5868. "_right": 100,
  5869. "_top": 140,
  5870. "_bottom": 0,
  5871. "_horizontalCenter": 0,
  5872. "_verticalCenter": 0,
  5873. "_isAbsLeft": true,
  5874. "_isAbsRight": true,
  5875. "_isAbsTop": true,
  5876. "_isAbsBottom": true,
  5877. "_isAbsHorizontalCenter": true,
  5878. "_isAbsVerticalCenter": true,
  5879. "_originalWidth": 0,
  5880. "_originalHeight": 0,
  5881. "_alignMode": 2,
  5882. "_lockFlags": 0,
  5883. "_id": "f4ApeUDi1OaZuw7G4DDs1B"
  5884. },
  5885. {
  5886. "__type__": "cc.Node",
  5887. "_name": "SelectTroops_Bottom",
  5888. "_objFlags": 0,
  5889. "__editorExtras__": {},
  5890. "_parent": {
  5891. "__id__": 97
  5892. },
  5893. "_children": [
  5894. {
  5895. "__id__": 151
  5896. },
  5897. {
  5898. "__id__": 159
  5899. },
  5900. {
  5901. "__id__": 179
  5902. },
  5903. {
  5904. "__id__": 275
  5905. },
  5906. {
  5907. "__id__": 280
  5908. }
  5909. ],
  5910. "_active": true,
  5911. "_components": [
  5912. {
  5913. "__id__": 284
  5914. },
  5915. {
  5916. "__id__": 285
  5917. },
  5918. {
  5919. "__id__": 286
  5920. },
  5921. {
  5922. "__id__": 287
  5923. }
  5924. ],
  5925. "_prefab": null,
  5926. "_lpos": {
  5927. "__type__": "cc.Vec3",
  5928. "x": 0,
  5929. "y": -270,
  5930. "z": 0
  5931. },
  5932. "_lrot": {
  5933. "__type__": "cc.Quat",
  5934. "x": 0,
  5935. "y": 0,
  5936. "z": 0,
  5937. "w": 1
  5938. },
  5939. "_lscale": {
  5940. "__type__": "cc.Vec3",
  5941. "x": 1,
  5942. "y": 1,
  5943. "z": 1
  5944. },
  5945. "_mobility": 0,
  5946. "_layer": 33554432,
  5947. "_euler": {
  5948. "__type__": "cc.Vec3",
  5949. "x": 0,
  5950. "y": 0,
  5951. "z": 0
  5952. },
  5953. "_id": "ffI++aqpRAhZJczX4YiFQe"
  5954. },
  5955. {
  5956. "__type__": "cc.Node",
  5957. "_name": "labelLevel",
  5958. "_objFlags": 0,
  5959. "__editorExtras__": {},
  5960. "_parent": {
  5961. "__id__": 150
  5962. },
  5963. "_children": [
  5964. {
  5965. "__id__": 152
  5966. }
  5967. ],
  5968. "_active": true,
  5969. "_components": [
  5970. {
  5971. "__id__": 156
  5972. },
  5973. {
  5974. "__id__": 157
  5975. },
  5976. {
  5977. "__id__": 158
  5978. }
  5979. ],
  5980. "_prefab": null,
  5981. "_lpos": {
  5982. "__type__": "cc.Vec3",
  5983. "x": -557.33203125,
  5984. "y": 42.8,
  5985. "z": 0
  5986. },
  5987. "_lrot": {
  5988. "__type__": "cc.Quat",
  5989. "x": 0,
  5990. "y": 0,
  5991. "z": 0,
  5992. "w": 1
  5993. },
  5994. "_lscale": {
  5995. "__type__": "cc.Vec3",
  5996. "x": 1,
  5997. "y": 1,
  5998. "z": 1
  5999. },
  6000. "_mobility": 0,
  6001. "_layer": 33554432,
  6002. "_euler": {
  6003. "__type__": "cc.Vec3",
  6004. "x": 0,
  6005. "y": 0,
  6006. "z": 0
  6007. },
  6008. "_id": "8aCTin7WNIe40eXNs2IZSb"
  6009. },
  6010. {
  6011. "__type__": "cc.Node",
  6012. "_name": "_lvNumber",
  6013. "_objFlags": 0,
  6014. "__editorExtras__": {},
  6015. "_parent": {
  6016. "__id__": 151
  6017. },
  6018. "_children": [],
  6019. "_active": true,
  6020. "_components": [
  6021. {
  6022. "__id__": 153
  6023. },
  6024. {
  6025. "__id__": 154
  6026. },
  6027. {
  6028. "__id__": 155
  6029. }
  6030. ],
  6031. "_prefab": null,
  6032. "_lpos": {
  6033. "__type__": "cc.Vec3",
  6034. "x": -3.386405656250002,
  6035. "y": -60,
  6036. "z": 0
  6037. },
  6038. "_lrot": {
  6039. "__type__": "cc.Quat",
  6040. "x": 0,
  6041. "y": 0,
  6042. "z": 0,
  6043. "w": 1
  6044. },
  6045. "_lscale": {
  6046. "__type__": "cc.Vec3",
  6047. "x": 1,
  6048. "y": 1,
  6049. "z": 1
  6050. },
  6051. "_mobility": 0,
  6052. "_layer": 33554432,
  6053. "_euler": {
  6054. "__type__": "cc.Vec3",
  6055. "x": 0,
  6056. "y": 0,
  6057. "z": 0
  6058. },
  6059. "_id": "93adk6BfRNB7EhP7gdkvol"
  6060. },
  6061. {
  6062. "__type__": "cc.UITransform",
  6063. "_name": "",
  6064. "_objFlags": 0,
  6065. "__editorExtras__": {},
  6066. "node": {
  6067. "__id__": 152
  6068. },
  6069. "_enabled": true,
  6070. "__prefab": null,
  6071. "_contentSize": {
  6072. "__type__": "cc.Size",
  6073. "width": 26.2460941875,
  6074. "height": 54.4
  6075. },
  6076. "_anchorPoint": {
  6077. "__type__": "cc.Vec2",
  6078. "x": 0.5,
  6079. "y": 0.5
  6080. },
  6081. "_id": "b1HKiL5vBCk5NlXsq9J5UB"
  6082. },
  6083. {
  6084. "__type__": "cc.Label",
  6085. "_name": "",
  6086. "_objFlags": 0,
  6087. "__editorExtras__": {},
  6088. "node": {
  6089. "__id__": 152
  6090. },
  6091. "_enabled": true,
  6092. "__prefab": null,
  6093. "_customMaterial": null,
  6094. "_srcBlendFactor": 2,
  6095. "_dstBlendFactor": 4,
  6096. "_color": {
  6097. "__type__": "cc.Color",
  6098. "r": 255,
  6099. "g": 255,
  6100. "b": 255,
  6101. "a": 255
  6102. },
  6103. "_string": "1",
  6104. "_horizontalAlign": 1,
  6105. "_verticalAlign": 1,
  6106. "_actualFontSize": 40,
  6107. "_fontSize": 40,
  6108. "_fontFamily": "Arial",
  6109. "_lineHeight": 40,
  6110. "_overflow": 0,
  6111. "_enableWrapText": true,
  6112. "_font": null,
  6113. "_isSystemFontUsed": true,
  6114. "_spacingX": 0,
  6115. "_isItalic": false,
  6116. "_isBold": false,
  6117. "_isUnderline": false,
  6118. "_underlineHeight": 2,
  6119. "_cacheMode": 0,
  6120. "_enableOutline": true,
  6121. "_outlineColor": {
  6122. "__type__": "cc.Color",
  6123. "r": 240,
  6124. "g": 91,
  6125. "b": 91,
  6126. "a": 255
  6127. },
  6128. "_outlineWidth": 2,
  6129. "_enableShadow": false,
  6130. "_shadowColor": {
  6131. "__type__": "cc.Color",
  6132. "r": 0,
  6133. "g": 0,
  6134. "b": 0,
  6135. "a": 255
  6136. },
  6137. "_shadowOffset": {
  6138. "__type__": "cc.Vec2",
  6139. "x": 2,
  6140. "y": 2
  6141. },
  6142. "_shadowBlur": 2,
  6143. "_id": "72lhTlMQdNfLLgK/UBWC51"
  6144. },
  6145. {
  6146. "__type__": "cc.Widget",
  6147. "_name": "",
  6148. "_objFlags": 0,
  6149. "__editorExtras__": {},
  6150. "node": {
  6151. "__id__": 152
  6152. },
  6153. "_enabled": true,
  6154. "__prefab": null,
  6155. "_alignFlags": 41,
  6156. "_target": null,
  6157. "_left": 16.158516,
  6158. "_right": 22.931327312500002,
  6159. "_top": 60,
  6160. "_bottom": -43.717,
  6161. "_horizontalCenter": 0,
  6162. "_verticalCenter": 0,
  6163. "_isAbsLeft": true,
  6164. "_isAbsRight": true,
  6165. "_isAbsTop": true,
  6166. "_isAbsBottom": true,
  6167. "_isAbsHorizontalCenter": true,
  6168. "_isAbsVerticalCenter": true,
  6169. "_originalWidth": 26.24609375,
  6170. "_originalHeight": 54.4,
  6171. "_alignMode": 2,
  6172. "_lockFlags": 0,
  6173. "_id": "04ZOsmTLxAqIvfUHPGWWeW"
  6174. },
  6175. {
  6176. "__type__": "cc.UITransform",
  6177. "_name": "",
  6178. "_objFlags": 0,
  6179. "__editorExtras__": {},
  6180. "node": {
  6181. "__id__": 151
  6182. },
  6183. "_enabled": true,
  6184. "__prefab": null,
  6185. "_contentSize": {
  6186. "__type__": "cc.Size",
  6187. "width": 65.3359375,
  6188. "height": 54.4
  6189. },
  6190. "_anchorPoint": {
  6191. "__type__": "cc.Vec2",
  6192. "x": 0.5,
  6193. "y": 0.5
  6194. },
  6195. "_id": "1bR5pHVglBZ5gXM1ydl3+Q"
  6196. },
  6197. {
  6198. "__type__": "cc.Label",
  6199. "_name": "",
  6200. "_objFlags": 0,
  6201. "__editorExtras__": {},
  6202. "node": {
  6203. "__id__": 151
  6204. },
  6205. "_enabled": true,
  6206. "__prefab": null,
  6207. "_customMaterial": null,
  6208. "_srcBlendFactor": 2,
  6209. "_dstBlendFactor": 4,
  6210. "_color": {
  6211. "__type__": "cc.Color",
  6212. "r": 255,
  6213. "g": 255,
  6214. "b": 255,
  6215. "a": 255
  6216. },
  6217. "_string": "关 卡",
  6218. "_horizontalAlign": 1,
  6219. "_verticalAlign": 1,
  6220. "_actualFontSize": 24,
  6221. "_fontSize": 24,
  6222. "_fontFamily": "Arial",
  6223. "_lineHeight": 40,
  6224. "_overflow": 0,
  6225. "_enableWrapText": true,
  6226. "_font": null,
  6227. "_isSystemFontUsed": true,
  6228. "_spacingX": 0,
  6229. "_isItalic": false,
  6230. "_isBold": false,
  6231. "_isUnderline": false,
  6232. "_underlineHeight": 2,
  6233. "_cacheMode": 0,
  6234. "_enableOutline": true,
  6235. "_outlineColor": {
  6236. "__type__": "cc.Color",
  6237. "r": 240,
  6238. "g": 91,
  6239. "b": 91,
  6240. "a": 255
  6241. },
  6242. "_outlineWidth": 2,
  6243. "_enableShadow": false,
  6244. "_shadowColor": {
  6245. "__type__": "cc.Color",
  6246. "r": 0,
  6247. "g": 0,
  6248. "b": 0,
  6249. "a": 255
  6250. },
  6251. "_shadowOffset": {
  6252. "__type__": "cc.Vec2",
  6253. "x": 2,
  6254. "y": 2
  6255. },
  6256. "_shadowBlur": 2,
  6257. "_id": "2e9geFbUdF4ZMmjb5cyPd6"
  6258. },
  6259. {
  6260. "__type__": "cc.Widget",
  6261. "_name": "",
  6262. "_objFlags": 0,
  6263. "__editorExtras__": {},
  6264. "node": {
  6265. "__id__": 151
  6266. },
  6267. "_enabled": true,
  6268. "__prefab": null,
  6269. "_alignFlags": 9,
  6270. "_target": null,
  6271. "_left": 50,
  6272. "_right": 0,
  6273. "_top": 20,
  6274. "_bottom": 0,
  6275. "_horizontalCenter": 0,
  6276. "_verticalCenter": 0,
  6277. "_isAbsLeft": true,
  6278. "_isAbsRight": true,
  6279. "_isAbsTop": true,
  6280. "_isAbsBottom": true,
  6281. "_isAbsHorizontalCenter": true,
  6282. "_isAbsVerticalCenter": true,
  6283. "_originalWidth": 0,
  6284. "_originalHeight": 0,
  6285. "_alignMode": 2,
  6286. "_lockFlags": 0,
  6287. "_id": "edE9uv01FDKLk0ok/73yzr"
  6288. },
  6289. {
  6290. "__type__": "cc.Node",
  6291. "_name": "OreSpeed",
  6292. "_objFlags": 0,
  6293. "__editorExtras__": {},
  6294. "_parent": {
  6295. "__id__": 150
  6296. },
  6297. "_children": [
  6298. {
  6299. "__id__": 160
  6300. },
  6301. {
  6302. "__id__": 164
  6303. },
  6304. {
  6305. "__id__": 168
  6306. },
  6307. {
  6308. "__id__": 172
  6309. }
  6310. ],
  6311. "_active": true,
  6312. "_components": [
  6313. {
  6314. "__id__": 176
  6315. },
  6316. {
  6317. "__id__": 177
  6318. },
  6319. {
  6320. "__id__": 178
  6321. }
  6322. ],
  6323. "_prefab": null,
  6324. "_lpos": {
  6325. "__type__": "cc.Vec3",
  6326. "x": -365,
  6327. "y": 0,
  6328. "z": 0
  6329. },
  6330. "_lrot": {
  6331. "__type__": "cc.Quat",
  6332. "x": 0,
  6333. "y": 0,
  6334. "z": 0,
  6335. "w": 1
  6336. },
  6337. "_lscale": {
  6338. "__type__": "cc.Vec3",
  6339. "x": 1,
  6340. "y": 1,
  6341. "z": 1
  6342. },
  6343. "_mobility": 0,
  6344. "_layer": 33554432,
  6345. "_euler": {
  6346. "__type__": "cc.Vec3",
  6347. "x": 0,
  6348. "y": 0,
  6349. "z": 0
  6350. },
  6351. "_id": "d9pq/NhLNNm4BbuMZ0VxB9"
  6352. },
  6353. {
  6354. "__type__": "cc.Node",
  6355. "_name": "Ore_Big",
  6356. "_objFlags": 0,
  6357. "__editorExtras__": {},
  6358. "_parent": {
  6359. "__id__": 159
  6360. },
  6361. "_children": [],
  6362. "_active": true,
  6363. "_components": [
  6364. {
  6365. "__id__": 161
  6366. },
  6367. {
  6368. "__id__": 162
  6369. },
  6370. {
  6371. "__id__": 163
  6372. }
  6373. ],
  6374. "_prefab": null,
  6375. "_lpos": {
  6376. "__type__": "cc.Vec3",
  6377. "x": -75,
  6378. "y": 0,
  6379. "z": 0
  6380. },
  6381. "_lrot": {
  6382. "__type__": "cc.Quat",
  6383. "x": 0,
  6384. "y": 0,
  6385. "z": 0,
  6386. "w": 1
  6387. },
  6388. "_lscale": {
  6389. "__type__": "cc.Vec3",
  6390. "x": 1,
  6391. "y": 1,
  6392. "z": 1
  6393. },
  6394. "_mobility": 0,
  6395. "_layer": 33554432,
  6396. "_euler": {
  6397. "__type__": "cc.Vec3",
  6398. "x": 0,
  6399. "y": 0,
  6400. "z": 0
  6401. },
  6402. "_id": "c7iAl6GZ5B8bynaBJOLim/"
  6403. },
  6404. {
  6405. "__type__": "cc.UITransform",
  6406. "_name": "",
  6407. "_objFlags": 0,
  6408. "__editorExtras__": {},
  6409. "node": {
  6410. "__id__": 160
  6411. },
  6412. "_enabled": true,
  6413. "__prefab": null,
  6414. "_contentSize": {
  6415. "__type__": "cc.Size",
  6416. "width": 80,
  6417. "height": 72
  6418. },
  6419. "_anchorPoint": {
  6420. "__type__": "cc.Vec2",
  6421. "x": 0.5,
  6422. "y": 0.5
  6423. },
  6424. "_id": "89WIdEXyJBdqMeFJg/TCh6"
  6425. },
  6426. {
  6427. "__type__": "cc.Sprite",
  6428. "_name": "",
  6429. "_objFlags": 0,
  6430. "__editorExtras__": {},
  6431. "node": {
  6432. "__id__": 160
  6433. },
  6434. "_enabled": true,
  6435. "__prefab": null,
  6436. "_customMaterial": null,
  6437. "_srcBlendFactor": 2,
  6438. "_dstBlendFactor": 4,
  6439. "_color": {
  6440. "__type__": "cc.Color",
  6441. "r": 255,
  6442. "g": 255,
  6443. "b": 255,
  6444. "a": 255
  6445. },
  6446. "_spriteFrame": {
  6447. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@c5d0d",
  6448. "__expectedType__": "cc.SpriteFrame"
  6449. },
  6450. "_type": 0,
  6451. "_fillType": 0,
  6452. "_sizeMode": 0,
  6453. "_fillCenter": {
  6454. "__type__": "cc.Vec2",
  6455. "x": 0,
  6456. "y": 0
  6457. },
  6458. "_fillStart": 0,
  6459. "_fillRange": 0,
  6460. "_isTrimmedMode": true,
  6461. "_useGrayscale": false,
  6462. "_atlas": null,
  6463. "_id": "242rnU3rBK94dWIS/mHwVV"
  6464. },
  6465. {
  6466. "__type__": "cc.Widget",
  6467. "_name": "",
  6468. "_objFlags": 0,
  6469. "__editorExtras__": {},
  6470. "node": {
  6471. "__id__": 160
  6472. },
  6473. "_enabled": true,
  6474. "__prefab": null,
  6475. "_alignFlags": 13,
  6476. "_target": null,
  6477. "_left": 10,
  6478. "_right": 0,
  6479. "_top": 39,
  6480. "_bottom": 39,
  6481. "_horizontalCenter": 0,
  6482. "_verticalCenter": 0,
  6483. "_isAbsLeft": true,
  6484. "_isAbsRight": true,
  6485. "_isAbsTop": true,
  6486. "_isAbsBottom": true,
  6487. "_isAbsHorizontalCenter": true,
  6488. "_isAbsVerticalCenter": true,
  6489. "_originalWidth": 0,
  6490. "_originalHeight": 72,
  6491. "_alignMode": 2,
  6492. "_lockFlags": 0,
  6493. "_id": "8cFhe9KjlGwKvsBu69Oy7Q"
  6494. },
  6495. {
  6496. "__type__": "cc.Node",
  6497. "_name": "Ore_Small",
  6498. "_objFlags": 0,
  6499. "__editorExtras__": {},
  6500. "_parent": {
  6501. "__id__": 159
  6502. },
  6503. "_children": [],
  6504. "_active": true,
  6505. "_components": [
  6506. {
  6507. "__id__": 165
  6508. },
  6509. {
  6510. "__id__": 166
  6511. },
  6512. {
  6513. "__id__": 167
  6514. }
  6515. ],
  6516. "_prefab": null,
  6517. "_lpos": {
  6518. "__type__": "cc.Vec3",
  6519. "x": 55,
  6520. "y": -47,
  6521. "z": 0
  6522. },
  6523. "_lrot": {
  6524. "__type__": "cc.Quat",
  6525. "x": 0,
  6526. "y": 0,
  6527. "z": 0,
  6528. "w": 1
  6529. },
  6530. "_lscale": {
  6531. "__type__": "cc.Vec3",
  6532. "x": 1,
  6533. "y": 1,
  6534. "z": 1
  6535. },
  6536. "_mobility": 0,
  6537. "_layer": 33554432,
  6538. "_euler": {
  6539. "__type__": "cc.Vec3",
  6540. "x": 0,
  6541. "y": 0,
  6542. "z": 0
  6543. },
  6544. "_id": "c6OgfzUYlMB4g/2XDhBpSy"
  6545. },
  6546. {
  6547. "__type__": "cc.UITransform",
  6548. "_name": "",
  6549. "_objFlags": 0,
  6550. "__editorExtras__": {},
  6551. "node": {
  6552. "__id__": 164
  6553. },
  6554. "_enabled": true,
  6555. "__prefab": null,
  6556. "_contentSize": {
  6557. "__type__": "cc.Size",
  6558. "width": 40,
  6559. "height": 36
  6560. },
  6561. "_anchorPoint": {
  6562. "__type__": "cc.Vec2",
  6563. "x": 0.5,
  6564. "y": 0.5
  6565. },
  6566. "_id": "e2vBFnQAxNWoTP0vNckyzT"
  6567. },
  6568. {
  6569. "__type__": "cc.Sprite",
  6570. "_name": "",
  6571. "_objFlags": 0,
  6572. "__editorExtras__": {},
  6573. "node": {
  6574. "__id__": 164
  6575. },
  6576. "_enabled": true,
  6577. "__prefab": null,
  6578. "_customMaterial": null,
  6579. "_srcBlendFactor": 2,
  6580. "_dstBlendFactor": 4,
  6581. "_color": {
  6582. "__type__": "cc.Color",
  6583. "r": 255,
  6584. "g": 255,
  6585. "b": 255,
  6586. "a": 255
  6587. },
  6588. "_spriteFrame": {
  6589. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@0c37c",
  6590. "__expectedType__": "cc.SpriteFrame"
  6591. },
  6592. "_type": 0,
  6593. "_fillType": 0,
  6594. "_sizeMode": 0,
  6595. "_fillCenter": {
  6596. "__type__": "cc.Vec2",
  6597. "x": 0,
  6598. "y": 0
  6599. },
  6600. "_fillStart": 0,
  6601. "_fillRange": 0,
  6602. "_isTrimmedMode": true,
  6603. "_useGrayscale": false,
  6604. "_atlas": null,
  6605. "_id": "3a66TrKzhKNL/62U8jLVjZ"
  6606. },
  6607. {
  6608. "__type__": "cc.Widget",
  6609. "_name": "",
  6610. "_objFlags": 0,
  6611. "__editorExtras__": {},
  6612. "node": {
  6613. "__id__": 164
  6614. },
  6615. "_enabled": true,
  6616. "__prefab": null,
  6617. "_alignFlags": 36,
  6618. "_target": null,
  6619. "_left": 0,
  6620. "_right": 50,
  6621. "_top": 0,
  6622. "_bottom": 10,
  6623. "_horizontalCenter": 0,
  6624. "_verticalCenter": 0,
  6625. "_isAbsLeft": true,
  6626. "_isAbsRight": true,
  6627. "_isAbsTop": true,
  6628. "_isAbsBottom": true,
  6629. "_isAbsHorizontalCenter": true,
  6630. "_isAbsVerticalCenter": true,
  6631. "_originalWidth": 0,
  6632. "_originalHeight": 0,
  6633. "_alignMode": 2,
  6634. "_lockFlags": 0,
  6635. "_id": "ceRBIwkVBO65x0w7tTwwg7"
  6636. },
  6637. {
  6638. "__type__": "cc.Node",
  6639. "_name": "_oreGrade",
  6640. "_objFlags": 0,
  6641. "__editorExtras__": {},
  6642. "_parent": {
  6643. "__id__": 159
  6644. },
  6645. "_children": [],
  6646. "_active": true,
  6647. "_components": [
  6648. {
  6649. "__id__": 169
  6650. },
  6651. {
  6652. "__id__": 170
  6653. },
  6654. {
  6655. "__id__": 171
  6656. }
  6657. ],
  6658. "_prefab": null,
  6659. "_lpos": {
  6660. "__type__": "cc.Vec3",
  6661. "x": 57.490234375,
  6662. "y": 39.8,
  6663. "z": 0
  6664. },
  6665. "_lrot": {
  6666. "__type__": "cc.Quat",
  6667. "x": 0,
  6668. "y": 0,
  6669. "z": 0,
  6670. "w": 1
  6671. },
  6672. "_lscale": {
  6673. "__type__": "cc.Vec3",
  6674. "x": 1,
  6675. "y": 1,
  6676. "z": 1
  6677. },
  6678. "_mobility": 0,
  6679. "_layer": 33554432,
  6680. "_euler": {
  6681. "__type__": "cc.Vec3",
  6682. "x": 0,
  6683. "y": 0,
  6684. "z": 0
  6685. },
  6686. "_id": "72KOxa+IZIc7MYaBN3fuPW"
  6687. },
  6688. {
  6689. "__type__": "cc.UITransform",
  6690. "_name": "",
  6691. "_objFlags": 0,
  6692. "__editorExtras__": {},
  6693. "node": {
  6694. "__id__": 168
  6695. },
  6696. "_enabled": true,
  6697. "__prefab": null,
  6698. "_contentSize": {
  6699. "__type__": "cc.Size",
  6700. "width": 85.01953125,
  6701. "height": 50.4
  6702. },
  6703. "_anchorPoint": {
  6704. "__type__": "cc.Vec2",
  6705. "x": 0.5,
  6706. "y": 0.5
  6707. },
  6708. "_id": "e6ZWHw5gZMYJn/mv6OFmOa"
  6709. },
  6710. {
  6711. "__type__": "cc.Label",
  6712. "_name": "",
  6713. "_objFlags": 0,
  6714. "__editorExtras__": {},
  6715. "node": {
  6716. "__id__": 168
  6717. },
  6718. "_enabled": true,
  6719. "__prefab": null,
  6720. "_customMaterial": null,
  6721. "_srcBlendFactor": 2,
  6722. "_dstBlendFactor": 4,
  6723. "_color": {
  6724. "__type__": "cc.Color",
  6725. "r": 40,
  6726. "g": 241,
  6727. "b": 217,
  6728. "a": 255
  6729. },
  6730. "_string": "等级.1",
  6731. "_horizontalAlign": 1,
  6732. "_verticalAlign": 1,
  6733. "_actualFontSize": 30,
  6734. "_fontSize": 30,
  6735. "_fontFamily": "Arial",
  6736. "_lineHeight": 40,
  6737. "_overflow": 0,
  6738. "_enableWrapText": true,
  6739. "_font": null,
  6740. "_isSystemFontUsed": true,
  6741. "_spacingX": 0,
  6742. "_isItalic": false,
  6743. "_isBold": false,
  6744. "_isUnderline": false,
  6745. "_underlineHeight": 2,
  6746. "_cacheMode": 0,
  6747. "_enableOutline": false,
  6748. "_outlineColor": {
  6749. "__type__": "cc.Color",
  6750. "r": 0,
  6751. "g": 0,
  6752. "b": 0,
  6753. "a": 255
  6754. },
  6755. "_outlineWidth": 2,
  6756. "_enableShadow": false,
  6757. "_shadowColor": {
  6758. "__type__": "cc.Color",
  6759. "r": 0,
  6760. "g": 0,
  6761. "b": 0,
  6762. "a": 255
  6763. },
  6764. "_shadowOffset": {
  6765. "__type__": "cc.Vec2",
  6766. "x": 2,
  6767. "y": 2
  6768. },
  6769. "_shadowBlur": 2,
  6770. "_id": "29Hv8T6CxFeLw16bG1Pulh"
  6771. },
  6772. {
  6773. "__type__": "cc.Widget",
  6774. "_name": "",
  6775. "_objFlags": 0,
  6776. "__editorExtras__": {},
  6777. "node": {
  6778. "__id__": 168
  6779. },
  6780. "_enabled": true,
  6781. "__prefab": null,
  6782. "_alignFlags": 33,
  6783. "_target": null,
  6784. "_left": 0,
  6785. "_right": 25,
  6786. "_top": 10,
  6787. "_bottom": 0,
  6788. "_horizontalCenter": 0,
  6789. "_verticalCenter": 0,
  6790. "_isAbsLeft": true,
  6791. "_isAbsRight": true,
  6792. "_isAbsTop": true,
  6793. "_isAbsBottom": true,
  6794. "_isAbsHorizontalCenter": true,
  6795. "_isAbsVerticalCenter": true,
  6796. "_originalWidth": 0,
  6797. "_originalHeight": 0,
  6798. "_alignMode": 2,
  6799. "_lockFlags": 0,
  6800. "_id": "faz2mXzi9CVLtBpuBW4y2C"
  6801. },
  6802. {
  6803. "__type__": "cc.Node",
  6804. "_name": "_oreSpeed",
  6805. "_objFlags": 0,
  6806. "__editorExtras__": {},
  6807. "_parent": {
  6808. "__id__": 159
  6809. },
  6810. "_children": [],
  6811. "_active": true,
  6812. "_components": [
  6813. {
  6814. "__id__": 173
  6815. },
  6816. {
  6817. "__id__": 174
  6818. },
  6819. {
  6820. "__id__": 175
  6821. }
  6822. ],
  6823. "_prefab": null,
  6824. "_lpos": {
  6825. "__type__": "cc.Vec3",
  6826. "x": 53.8720703125,
  6827. "y": 0,
  6828. "z": 0
  6829. },
  6830. "_lrot": {
  6831. "__type__": "cc.Quat",
  6832. "x": 0,
  6833. "y": 0,
  6834. "z": 0,
  6835. "w": 1
  6836. },
  6837. "_lscale": {
  6838. "__type__": "cc.Vec3",
  6839. "x": 1,
  6840. "y": 1,
  6841. "z": 1
  6842. },
  6843. "_mobility": 0,
  6844. "_layer": 33554432,
  6845. "_euler": {
  6846. "__type__": "cc.Vec3",
  6847. "x": 0,
  6848. "y": 0,
  6849. "z": 0
  6850. },
  6851. "_id": "08uUUs3ghJiaq63vJlT9Ay"
  6852. },
  6853. {
  6854. "__type__": "cc.UITransform",
  6855. "_name": "",
  6856. "_objFlags": 0,
  6857. "__editorExtras__": {},
  6858. "node": {
  6859. "__id__": 172
  6860. },
  6861. "_enabled": true,
  6862. "__prefab": null,
  6863. "_contentSize": {
  6864. "__type__": "cc.Size",
  6865. "width": 94.923828125,
  6866. "height": 50.400000000000006
  6867. },
  6868. "_anchorPoint": {
  6869. "__type__": "cc.Vec2",
  6870. "x": 0.5,
  6871. "y": 0.5
  6872. },
  6873. "_id": "48SHCqEZpJ3KFxqk1dN642"
  6874. },
  6875. {
  6876. "__type__": "cc.Label",
  6877. "_name": "",
  6878. "_objFlags": 0,
  6879. "__editorExtras__": {},
  6880. "node": {
  6881. "__id__": 172
  6882. },
  6883. "_enabled": true,
  6884. "__prefab": null,
  6885. "_customMaterial": null,
  6886. "_srcBlendFactor": 2,
  6887. "_dstBlendFactor": 4,
  6888. "_color": {
  6889. "__type__": "cc.Color",
  6890. "r": 40,
  6891. "g": 241,
  6892. "b": 217,
  6893. "a": 255
  6894. },
  6895. "_string": "60/分钟",
  6896. "_horizontalAlign": 1,
  6897. "_verticalAlign": 1,
  6898. "_actualFontSize": 28,
  6899. "_fontSize": 28,
  6900. "_fontFamily": "Arial",
  6901. "_lineHeight": 40,
  6902. "_overflow": 0,
  6903. "_enableWrapText": true,
  6904. "_font": null,
  6905. "_isSystemFontUsed": true,
  6906. "_spacingX": 0,
  6907. "_isItalic": false,
  6908. "_isBold": false,
  6909. "_isUnderline": false,
  6910. "_underlineHeight": 2,
  6911. "_cacheMode": 0,
  6912. "_enableOutline": false,
  6913. "_outlineColor": {
  6914. "__type__": "cc.Color",
  6915. "r": 0,
  6916. "g": 0,
  6917. "b": 0,
  6918. "a": 255
  6919. },
  6920. "_outlineWidth": 2,
  6921. "_enableShadow": false,
  6922. "_shadowColor": {
  6923. "__type__": "cc.Color",
  6924. "r": 0,
  6925. "g": 0,
  6926. "b": 0,
  6927. "a": 255
  6928. },
  6929. "_shadowOffset": {
  6930. "__type__": "cc.Vec2",
  6931. "x": 2,
  6932. "y": 2
  6933. },
  6934. "_shadowBlur": 2,
  6935. "_id": "1fdALzMetDDqDoEunF33u4"
  6936. },
  6937. {
  6938. "__type__": "cc.Widget",
  6939. "_name": "",
  6940. "_objFlags": 0,
  6941. "__editorExtras__": {},
  6942. "node": {
  6943. "__id__": 172
  6944. },
  6945. "_enabled": true,
  6946. "__prefab": null,
  6947. "_alignFlags": 37,
  6948. "_target": null,
  6949. "_left": 0,
  6950. "_right": 23.666015625,
  6951. "_top": 49.8,
  6952. "_bottom": 49.8,
  6953. "_horizontalCenter": 0,
  6954. "_verticalCenter": 0,
  6955. "_isAbsLeft": true,
  6956. "_isAbsRight": true,
  6957. "_isAbsTop": true,
  6958. "_isAbsBottom": true,
  6959. "_isAbsHorizontalCenter": true,
  6960. "_isAbsVerticalCenter": true,
  6961. "_originalWidth": 0,
  6962. "_originalHeight": 50.4,
  6963. "_alignMode": 2,
  6964. "_lockFlags": 0,
  6965. "_id": "93rkniABZEv7/399JaauNJ"
  6966. },
  6967. {
  6968. "__type__": "cc.UITransform",
  6969. "_name": "",
  6970. "_objFlags": 0,
  6971. "__editorExtras__": {},
  6972. "node": {
  6973. "__id__": 159
  6974. },
  6975. "_enabled": true,
  6976. "__prefab": null,
  6977. "_contentSize": {
  6978. "__type__": "cc.Size",
  6979. "width": 250,
  6980. "height": 150
  6981. },
  6982. "_anchorPoint": {
  6983. "__type__": "cc.Vec2",
  6984. "x": 0.5,
  6985. "y": 0.5
  6986. },
  6987. "_id": "3f4TVo35RIWpo7Bzwa3e3h"
  6988. },
  6989. {
  6990. "__type__": "cc.Widget",
  6991. "_name": "",
  6992. "_objFlags": 0,
  6993. "__editorExtras__": {},
  6994. "node": {
  6995. "__id__": 159
  6996. },
  6997. "_enabled": true,
  6998. "__prefab": null,
  6999. "_alignFlags": 13,
  7000. "_target": null,
  7001. "_left": 150,
  7002. "_right": 0,
  7003. "_top": 15,
  7004. "_bottom": 15,
  7005. "_horizontalCenter": 0,
  7006. "_verticalCenter": 0,
  7007. "_isAbsLeft": true,
  7008. "_isAbsRight": true,
  7009. "_isAbsTop": true,
  7010. "_isAbsBottom": true,
  7011. "_isAbsHorizontalCenter": true,
  7012. "_isAbsVerticalCenter": true,
  7013. "_originalWidth": 0,
  7014. "_originalHeight": 100,
  7015. "_alignMode": 2,
  7016. "_lockFlags": 0,
  7017. "_id": "5f4/lddShKL7y5MjEQLitB"
  7018. },
  7019. {
  7020. "__type__": "cc.Sprite",
  7021. "_name": "",
  7022. "_objFlags": 0,
  7023. "__editorExtras__": {},
  7024. "node": {
  7025. "__id__": 159
  7026. },
  7027. "_enabled": true,
  7028. "__prefab": null,
  7029. "_customMaterial": null,
  7030. "_srcBlendFactor": 2,
  7031. "_dstBlendFactor": 4,
  7032. "_color": {
  7033. "__type__": "cc.Color",
  7034. "r": 255,
  7035. "g": 255,
  7036. "b": 255,
  7037. "a": 255
  7038. },
  7039. "_spriteFrame": {
  7040. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@58e92",
  7041. "__expectedType__": "cc.SpriteFrame"
  7042. },
  7043. "_type": 0,
  7044. "_fillType": 0,
  7045. "_sizeMode": 0,
  7046. "_fillCenter": {
  7047. "__type__": "cc.Vec2",
  7048. "x": 0,
  7049. "y": 0
  7050. },
  7051. "_fillStart": 0,
  7052. "_fillRange": 0,
  7053. "_isTrimmedMode": true,
  7054. "_useGrayscale": false,
  7055. "_atlas": null,
  7056. "_id": "3egU2rEWNKJrACPQ7r/Js5"
  7057. },
  7058. {
  7059. "__type__": "cc.Node",
  7060. "_name": "CharacterSlot",
  7061. "_objFlags": 0,
  7062. "__editorExtras__": {},
  7063. "_parent": {
  7064. "__id__": 150
  7065. },
  7066. "_children": [
  7067. {
  7068. "__id__": 180
  7069. },
  7070. {
  7071. "__id__": 195
  7072. },
  7073. {
  7074. "__id__": 210
  7075. },
  7076. {
  7077. "__id__": 225
  7078. },
  7079. {
  7080. "__id__": 240
  7081. },
  7082. {
  7083. "__id__": 255
  7084. }
  7085. ],
  7086. "_active": true,
  7087. "_components": [
  7088. {
  7089. "__id__": 270
  7090. },
  7091. {
  7092. "__id__": 271
  7093. },
  7094. {
  7095. "__id__": 272
  7096. },
  7097. {
  7098. "__id__": 273
  7099. },
  7100. {
  7101. "__id__": 274
  7102. }
  7103. ],
  7104. "_prefab": null,
  7105. "_lpos": {
  7106. "__type__": "cc.Vec3",
  7107. "x": 125,
  7108. "y": 0,
  7109. "z": 0
  7110. },
  7111. "_lrot": {
  7112. "__type__": "cc.Quat",
  7113. "x": 0,
  7114. "y": 0,
  7115. "z": 0,
  7116. "w": 1
  7117. },
  7118. "_lscale": {
  7119. "__type__": "cc.Vec3",
  7120. "x": 1,
  7121. "y": 1,
  7122. "z": 1
  7123. },
  7124. "_mobility": 0,
  7125. "_layer": 33554432,
  7126. "_euler": {
  7127. "__type__": "cc.Vec3",
  7128. "x": 0,
  7129. "y": 0,
  7130. "z": 0
  7131. },
  7132. "_id": "7cMoppP2JHUKA4KbBeMUqU"
  7133. },
  7134. {
  7135. "__type__": "cc.Node",
  7136. "_name": "Card-000",
  7137. "_objFlags": 0,
  7138. "__editorExtras__": {},
  7139. "_parent": {
  7140. "__id__": 179
  7141. },
  7142. "_children": [
  7143. {
  7144. "__id__": 181
  7145. },
  7146. {
  7147. "__id__": 185
  7148. },
  7149. {
  7150. "__id__": 189
  7151. }
  7152. ],
  7153. "_active": true,
  7154. "_components": [
  7155. {
  7156. "__id__": 192
  7157. },
  7158. {
  7159. "__id__": 193
  7160. },
  7161. {
  7162. "__id__": 194
  7163. }
  7164. ],
  7165. "_prefab": null,
  7166. "_lpos": {
  7167. "__type__": "cc.Vec3",
  7168. "x": -287.5,
  7169. "y": 0,
  7170. "z": 0
  7171. },
  7172. "_lrot": {
  7173. "__type__": "cc.Quat",
  7174. "x": 0,
  7175. "y": 0,
  7176. "z": 0,
  7177. "w": 1
  7178. },
  7179. "_lscale": {
  7180. "__type__": "cc.Vec3",
  7181. "x": 1,
  7182. "y": 1,
  7183. "z": 1
  7184. },
  7185. "_mobility": 0,
  7186. "_layer": 33554432,
  7187. "_euler": {
  7188. "__type__": "cc.Vec3",
  7189. "x": 0,
  7190. "y": 0,
  7191. "z": 0
  7192. },
  7193. "_id": "9ag9QQj7pOBpMVZyRYHnJd"
  7194. },
  7195. {
  7196. "__type__": "cc.Node",
  7197. "_name": "Lock",
  7198. "_objFlags": 0,
  7199. "__editorExtras__": {},
  7200. "_parent": {
  7201. "__id__": 180
  7202. },
  7203. "_children": [],
  7204. "_active": false,
  7205. "_components": [
  7206. {
  7207. "__id__": 182
  7208. },
  7209. {
  7210. "__id__": 183
  7211. },
  7212. {
  7213. "__id__": 184
  7214. }
  7215. ],
  7216. "_prefab": null,
  7217. "_lpos": {
  7218. "__type__": "cc.Vec3",
  7219. "x": 0,
  7220. "y": 0,
  7221. "z": 0
  7222. },
  7223. "_lrot": {
  7224. "__type__": "cc.Quat",
  7225. "x": 0,
  7226. "y": 0,
  7227. "z": 0,
  7228. "w": 1
  7229. },
  7230. "_lscale": {
  7231. "__type__": "cc.Vec3",
  7232. "x": 1,
  7233. "y": 1,
  7234. "z": 1
  7235. },
  7236. "_mobility": 0,
  7237. "_layer": 33554432,
  7238. "_euler": {
  7239. "__type__": "cc.Vec3",
  7240. "x": 0,
  7241. "y": 0,
  7242. "z": 0
  7243. },
  7244. "_id": "aaZiaYnQVIa7+g17ciSUto"
  7245. },
  7246. {
  7247. "__type__": "cc.UITransform",
  7248. "_name": "",
  7249. "_objFlags": 0,
  7250. "__editorExtras__": {},
  7251. "node": {
  7252. "__id__": 181
  7253. },
  7254. "_enabled": true,
  7255. "__prefab": null,
  7256. "_contentSize": {
  7257. "__type__": "cc.Size",
  7258. "width": 80,
  7259. "height": 72
  7260. },
  7261. "_anchorPoint": {
  7262. "__type__": "cc.Vec2",
  7263. "x": 0.5,
  7264. "y": 0.5
  7265. },
  7266. "_id": "22pGkmATZBV583RdzCCYMV"
  7267. },
  7268. {
  7269. "__type__": "cc.Sprite",
  7270. "_name": "",
  7271. "_objFlags": 0,
  7272. "__editorExtras__": {},
  7273. "node": {
  7274. "__id__": 181
  7275. },
  7276. "_enabled": true,
  7277. "__prefab": null,
  7278. "_customMaterial": null,
  7279. "_srcBlendFactor": 2,
  7280. "_dstBlendFactor": 4,
  7281. "_color": {
  7282. "__type__": "cc.Color",
  7283. "r": 255,
  7284. "g": 255,
  7285. "b": 255,
  7286. "a": 255
  7287. },
  7288. "_spriteFrame": {
  7289. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941",
  7290. "__expectedType__": "cc.SpriteFrame"
  7291. },
  7292. "_type": 0,
  7293. "_fillType": 0,
  7294. "_sizeMode": 0,
  7295. "_fillCenter": {
  7296. "__type__": "cc.Vec2",
  7297. "x": 0,
  7298. "y": 0
  7299. },
  7300. "_fillStart": 0,
  7301. "_fillRange": 0,
  7302. "_isTrimmedMode": true,
  7303. "_useGrayscale": false,
  7304. "_atlas": null,
  7305. "_id": "53VAC1br9EgKn9QeBJyqr8"
  7306. },
  7307. {
  7308. "__type__": "cc.Widget",
  7309. "_name": "",
  7310. "_objFlags": 0,
  7311. "__editorExtras__": {},
  7312. "node": {
  7313. "__id__": 181
  7314. },
  7315. "_enabled": true,
  7316. "__prefab": null,
  7317. "_alignFlags": 45,
  7318. "_target": null,
  7319. "_left": 12.5,
  7320. "_right": 12.5,
  7321. "_top": 24,
  7322. "_bottom": 24,
  7323. "_horizontalCenter": 0,
  7324. "_verticalCenter": 0,
  7325. "_isAbsLeft": true,
  7326. "_isAbsRight": true,
  7327. "_isAbsTop": true,
  7328. "_isAbsBottom": true,
  7329. "_isAbsHorizontalCenter": true,
  7330. "_isAbsVerticalCenter": true,
  7331. "_originalWidth": 80,
  7332. "_originalHeight": 72,
  7333. "_alignMode": 2,
  7334. "_lockFlags": 0,
  7335. "_id": "abdCJiLTlO2qU7V2m/CGv3"
  7336. },
  7337. {
  7338. "__type__": "cc.Node",
  7339. "_name": "Label",
  7340. "_objFlags": 0,
  7341. "__editorExtras__": {},
  7342. "_parent": {
  7343. "__id__": 180
  7344. },
  7345. "_children": [],
  7346. "_active": false,
  7347. "_components": [
  7348. {
  7349. "__id__": 186
  7350. },
  7351. {
  7352. "__id__": 187
  7353. },
  7354. {
  7355. "__id__": 188
  7356. }
  7357. ],
  7358. "_prefab": null,
  7359. "_lpos": {
  7360. "__type__": "cc.Vec3",
  7361. "x": 0,
  7362. "y": -45.357000000000006,
  7363. "z": 0
  7364. },
  7365. "_lrot": {
  7366. "__type__": "cc.Quat",
  7367. "x": 0,
  7368. "y": 0,
  7369. "z": 0,
  7370. "w": 1
  7371. },
  7372. "_lscale": {
  7373. "__type__": "cc.Vec3",
  7374. "x": 1,
  7375. "y": 1,
  7376. "z": 1
  7377. },
  7378. "_mobility": 0,
  7379. "_layer": 33554432,
  7380. "_euler": {
  7381. "__type__": "cc.Vec3",
  7382. "x": 0,
  7383. "y": 0,
  7384. "z": 0
  7385. },
  7386. "_id": "581xXw9ylGIqcEBP+aZqNJ"
  7387. },
  7388. {
  7389. "__type__": "cc.UITransform",
  7390. "_name": "",
  7391. "_objFlags": 0,
  7392. "__editorExtras__": {},
  7393. "node": {
  7394. "__id__": 185
  7395. },
  7396. "_enabled": true,
  7397. "__prefab": null,
  7398. "_contentSize": {
  7399. "__type__": "cc.Size",
  7400. "width": 96,
  7401. "height": 37.8
  7402. },
  7403. "_anchorPoint": {
  7404. "__type__": "cc.Vec2",
  7405. "x": 0.5,
  7406. "y": 0.5
  7407. },
  7408. "_id": "64BuJWpw5BmLxR8IWuepRd"
  7409. },
  7410. {
  7411. "__type__": "cc.Label",
  7412. "_name": "",
  7413. "_objFlags": 0,
  7414. "__editorExtras__": {},
  7415. "node": {
  7416. "__id__": 185
  7417. },
  7418. "_enabled": true,
  7419. "__prefab": null,
  7420. "_customMaterial": null,
  7421. "_srcBlendFactor": 2,
  7422. "_dstBlendFactor": 4,
  7423. "_color": {
  7424. "__type__": "cc.Color",
  7425. "r": 119,
  7426. "g": 255,
  7427. "b": 179,
  7428. "a": 255
  7429. },
  7430. "_string": "解锁卡槽",
  7431. "_horizontalAlign": 1,
  7432. "_verticalAlign": 1,
  7433. "_actualFontSize": 24,
  7434. "_fontSize": 24,
  7435. "_fontFamily": "Arial",
  7436. "_lineHeight": 30,
  7437. "_overflow": 0,
  7438. "_enableWrapText": true,
  7439. "_font": null,
  7440. "_isSystemFontUsed": true,
  7441. "_spacingX": 0,
  7442. "_isItalic": false,
  7443. "_isBold": false,
  7444. "_isUnderline": false,
  7445. "_underlineHeight": 2,
  7446. "_cacheMode": 0,
  7447. "_enableOutline": false,
  7448. "_outlineColor": {
  7449. "__type__": "cc.Color",
  7450. "r": 0,
  7451. "g": 0,
  7452. "b": 0,
  7453. "a": 255
  7454. },
  7455. "_outlineWidth": 2,
  7456. "_enableShadow": false,
  7457. "_shadowColor": {
  7458. "__type__": "cc.Color",
  7459. "r": 0,
  7460. "g": 0,
  7461. "b": 0,
  7462. "a": 255
  7463. },
  7464. "_shadowOffset": {
  7465. "__type__": "cc.Vec2",
  7466. "x": 2,
  7467. "y": 2
  7468. },
  7469. "_shadowBlur": 2,
  7470. "_id": "0dwVCWFmhK2KauZfjHjudd"
  7471. },
  7472. {
  7473. "__type__": "cc.Widget",
  7474. "_name": "",
  7475. "_objFlags": 0,
  7476. "__editorExtras__": {},
  7477. "node": {
  7478. "__id__": 185
  7479. },
  7480. "_enabled": true,
  7481. "__prefab": null,
  7482. "_alignFlags": 4,
  7483. "_target": null,
  7484. "_left": 0,
  7485. "_right": 0,
  7486. "_top": 34.8,
  7487. "_bottom": -4.257,
  7488. "_horizontalCenter": 0,
  7489. "_verticalCenter": 0,
  7490. "_isAbsLeft": true,
  7491. "_isAbsRight": true,
  7492. "_isAbsTop": true,
  7493. "_isAbsBottom": true,
  7494. "_isAbsHorizontalCenter": true,
  7495. "_isAbsVerticalCenter": true,
  7496. "_originalWidth": 0,
  7497. "_originalHeight": 0,
  7498. "_alignMode": 2,
  7499. "_lockFlags": 0,
  7500. "_id": "d9+gEUE45JcavYqGuTrZV6"
  7501. },
  7502. {
  7503. "__type__": "cc.Node",
  7504. "_name": "Sprite",
  7505. "_objFlags": 0,
  7506. "__editorExtras__": {},
  7507. "_parent": {
  7508. "__id__": 180
  7509. },
  7510. "_children": [],
  7511. "_active": true,
  7512. "_components": [
  7513. {
  7514. "__id__": 190
  7515. },
  7516. {
  7517. "__id__": 191
  7518. }
  7519. ],
  7520. "_prefab": null,
  7521. "_lpos": {
  7522. "__type__": "cc.Vec3",
  7523. "x": 0,
  7524. "y": 0,
  7525. "z": 0
  7526. },
  7527. "_lrot": {
  7528. "__type__": "cc.Quat",
  7529. "x": 0,
  7530. "y": 0,
  7531. "z": 0,
  7532. "w": 1
  7533. },
  7534. "_lscale": {
  7535. "__type__": "cc.Vec3",
  7536. "x": 1,
  7537. "y": 1,
  7538. "z": 1
  7539. },
  7540. "_mobility": 0,
  7541. "_layer": 33554432,
  7542. "_euler": {
  7543. "__type__": "cc.Vec3",
  7544. "x": 0,
  7545. "y": 0,
  7546. "z": 0
  7547. },
  7548. "_id": "92WFiaWrdLg4gbpnsiiOWP"
  7549. },
  7550. {
  7551. "__type__": "cc.UITransform",
  7552. "_name": "",
  7553. "_objFlags": 0,
  7554. "__editorExtras__": {},
  7555. "node": {
  7556. "__id__": 189
  7557. },
  7558. "_enabled": true,
  7559. "__prefab": null,
  7560. "_contentSize": {
  7561. "__type__": "cc.Size",
  7562. "width": 105,
  7563. "height": 120
  7564. },
  7565. "_anchorPoint": {
  7566. "__type__": "cc.Vec2",
  7567. "x": 0.5,
  7568. "y": 0.5
  7569. },
  7570. "_id": "edAj8qyzJDB46W8UtAJu6Y"
  7571. },
  7572. {
  7573. "__type__": "cc.Sprite",
  7574. "_name": "",
  7575. "_objFlags": 0,
  7576. "__editorExtras__": {},
  7577. "node": {
  7578. "__id__": 189
  7579. },
  7580. "_enabled": true,
  7581. "__prefab": null,
  7582. "_customMaterial": null,
  7583. "_srcBlendFactor": 2,
  7584. "_dstBlendFactor": 4,
  7585. "_color": {
  7586. "__type__": "cc.Color",
  7587. "r": 255,
  7588. "g": 255,
  7589. "b": 255,
  7590. "a": 255
  7591. },
  7592. "_spriteFrame": null,
  7593. "_type": 0,
  7594. "_fillType": 0,
  7595. "_sizeMode": 0,
  7596. "_fillCenter": {
  7597. "__type__": "cc.Vec2",
  7598. "x": 0,
  7599. "y": 0
  7600. },
  7601. "_fillStart": 0,
  7602. "_fillRange": 0,
  7603. "_isTrimmedMode": true,
  7604. "_useGrayscale": false,
  7605. "_atlas": null,
  7606. "_id": "d8dCaEbOVH2IMfaVrOstYK"
  7607. },
  7608. {
  7609. "__type__": "cc.UITransform",
  7610. "_name": "",
  7611. "_objFlags": 0,
  7612. "__editorExtras__": {},
  7613. "node": {
  7614. "__id__": 180
  7615. },
  7616. "_enabled": true,
  7617. "__prefab": null,
  7618. "_contentSize": {
  7619. "__type__": "cc.Size",
  7620. "width": 105,
  7621. "height": 120
  7622. },
  7623. "_anchorPoint": {
  7624. "__type__": "cc.Vec2",
  7625. "x": 0.5,
  7626. "y": 0.5
  7627. },
  7628. "_id": "3aRmoEqstBebt65lYlFWg6"
  7629. },
  7630. {
  7631. "__type__": "cc.Sprite",
  7632. "_name": "",
  7633. "_objFlags": 0,
  7634. "__editorExtras__": {},
  7635. "node": {
  7636. "__id__": 180
  7637. },
  7638. "_enabled": true,
  7639. "__prefab": null,
  7640. "_customMaterial": null,
  7641. "_srcBlendFactor": 2,
  7642. "_dstBlendFactor": 4,
  7643. "_color": {
  7644. "__type__": "cc.Color",
  7645. "r": 255,
  7646. "g": 255,
  7647. "b": 255,
  7648. "a": 255
  7649. },
  7650. "_spriteFrame": {
  7651. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  7652. "__expectedType__": "cc.SpriteFrame"
  7653. },
  7654. "_type": 0,
  7655. "_fillType": 0,
  7656. "_sizeMode": 0,
  7657. "_fillCenter": {
  7658. "__type__": "cc.Vec2",
  7659. "x": 0,
  7660. "y": 0
  7661. },
  7662. "_fillStart": 0,
  7663. "_fillRange": 0,
  7664. "_isTrimmedMode": true,
  7665. "_useGrayscale": false,
  7666. "_atlas": null,
  7667. "_id": "c8/H9Bb5xGIbyDW+Aar0kD"
  7668. },
  7669. {
  7670. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  7671. "_name": "",
  7672. "_objFlags": 0,
  7673. "__editorExtras__": {},
  7674. "node": {
  7675. "__id__": 180
  7676. },
  7677. "_enabled": true,
  7678. "__prefab": null,
  7679. "_id": "a4q+b7VO1PtIzMpdKBtpHo"
  7680. },
  7681. {
  7682. "__type__": "cc.Node",
  7683. "_name": "Card-001",
  7684. "_objFlags": 0,
  7685. "__editorExtras__": {},
  7686. "_parent": {
  7687. "__id__": 179
  7688. },
  7689. "_children": [
  7690. {
  7691. "__id__": 196
  7692. },
  7693. {
  7694. "__id__": 200
  7695. },
  7696. {
  7697. "__id__": 204
  7698. }
  7699. ],
  7700. "_active": true,
  7701. "_components": [
  7702. {
  7703. "__id__": 207
  7704. },
  7705. {
  7706. "__id__": 208
  7707. },
  7708. {
  7709. "__id__": 209
  7710. }
  7711. ],
  7712. "_prefab": null,
  7713. "_lpos": {
  7714. "__type__": "cc.Vec3",
  7715. "x": -172.5,
  7716. "y": 0,
  7717. "z": 0
  7718. },
  7719. "_lrot": {
  7720. "__type__": "cc.Quat",
  7721. "x": 0,
  7722. "y": 0,
  7723. "z": 0,
  7724. "w": 1
  7725. },
  7726. "_lscale": {
  7727. "__type__": "cc.Vec3",
  7728. "x": 1,
  7729. "y": 1,
  7730. "z": 1
  7731. },
  7732. "_mobility": 0,
  7733. "_layer": 33554432,
  7734. "_euler": {
  7735. "__type__": "cc.Vec3",
  7736. "x": 0,
  7737. "y": 0,
  7738. "z": 0
  7739. },
  7740. "_id": "9aXaKkoctGDq1VGU+2QuMY"
  7741. },
  7742. {
  7743. "__type__": "cc.Node",
  7744. "_name": "Lock",
  7745. "_objFlags": 0,
  7746. "__editorExtras__": {},
  7747. "_parent": {
  7748. "__id__": 195
  7749. },
  7750. "_children": [],
  7751. "_active": false,
  7752. "_components": [
  7753. {
  7754. "__id__": 197
  7755. },
  7756. {
  7757. "__id__": 198
  7758. },
  7759. {
  7760. "__id__": 199
  7761. }
  7762. ],
  7763. "_prefab": null,
  7764. "_lpos": {
  7765. "__type__": "cc.Vec3",
  7766. "x": 0,
  7767. "y": 0,
  7768. "z": 0
  7769. },
  7770. "_lrot": {
  7771. "__type__": "cc.Quat",
  7772. "x": 0,
  7773. "y": 0,
  7774. "z": 0,
  7775. "w": 1
  7776. },
  7777. "_lscale": {
  7778. "__type__": "cc.Vec3",
  7779. "x": 1,
  7780. "y": 1,
  7781. "z": 1
  7782. },
  7783. "_mobility": 0,
  7784. "_layer": 33554432,
  7785. "_euler": {
  7786. "__type__": "cc.Vec3",
  7787. "x": 0,
  7788. "y": 0,
  7789. "z": 0
  7790. },
  7791. "_id": "73bcRKe3RLNKbZr/oaxjN3"
  7792. },
  7793. {
  7794. "__type__": "cc.UITransform",
  7795. "_name": "",
  7796. "_objFlags": 0,
  7797. "__editorExtras__": {},
  7798. "node": {
  7799. "__id__": 196
  7800. },
  7801. "_enabled": true,
  7802. "__prefab": null,
  7803. "_contentSize": {
  7804. "__type__": "cc.Size",
  7805. "width": 80,
  7806. "height": 72
  7807. },
  7808. "_anchorPoint": {
  7809. "__type__": "cc.Vec2",
  7810. "x": 0.5,
  7811. "y": 0.5
  7812. },
  7813. "_id": "874wDDYLFDYLbzPmS3LeeL"
  7814. },
  7815. {
  7816. "__type__": "cc.Sprite",
  7817. "_name": "",
  7818. "_objFlags": 0,
  7819. "__editorExtras__": {},
  7820. "node": {
  7821. "__id__": 196
  7822. },
  7823. "_enabled": true,
  7824. "__prefab": null,
  7825. "_customMaterial": null,
  7826. "_srcBlendFactor": 2,
  7827. "_dstBlendFactor": 4,
  7828. "_color": {
  7829. "__type__": "cc.Color",
  7830. "r": 255,
  7831. "g": 255,
  7832. "b": 255,
  7833. "a": 255
  7834. },
  7835. "_spriteFrame": {
  7836. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941",
  7837. "__expectedType__": "cc.SpriteFrame"
  7838. },
  7839. "_type": 0,
  7840. "_fillType": 0,
  7841. "_sizeMode": 0,
  7842. "_fillCenter": {
  7843. "__type__": "cc.Vec2",
  7844. "x": 0,
  7845. "y": 0
  7846. },
  7847. "_fillStart": 0,
  7848. "_fillRange": 0,
  7849. "_isTrimmedMode": true,
  7850. "_useGrayscale": false,
  7851. "_atlas": null,
  7852. "_id": "c4Mg4aCgtCe6MiWxnDF8ap"
  7853. },
  7854. {
  7855. "__type__": "cc.Widget",
  7856. "_name": "",
  7857. "_objFlags": 0,
  7858. "__editorExtras__": {},
  7859. "node": {
  7860. "__id__": 196
  7861. },
  7862. "_enabled": true,
  7863. "__prefab": null,
  7864. "_alignFlags": 45,
  7865. "_target": null,
  7866. "_left": 12.5,
  7867. "_right": 12.5,
  7868. "_top": 24,
  7869. "_bottom": 24,
  7870. "_horizontalCenter": 0,
  7871. "_verticalCenter": 0,
  7872. "_isAbsLeft": true,
  7873. "_isAbsRight": true,
  7874. "_isAbsTop": true,
  7875. "_isAbsBottom": true,
  7876. "_isAbsHorizontalCenter": true,
  7877. "_isAbsVerticalCenter": true,
  7878. "_originalWidth": 80,
  7879. "_originalHeight": 72,
  7880. "_alignMode": 2,
  7881. "_lockFlags": 0,
  7882. "_id": "23yIjtKBxDpJr43L86BxXe"
  7883. },
  7884. {
  7885. "__type__": "cc.Node",
  7886. "_name": "Label",
  7887. "_objFlags": 0,
  7888. "__editorExtras__": {},
  7889. "_parent": {
  7890. "__id__": 195
  7891. },
  7892. "_children": [],
  7893. "_active": false,
  7894. "_components": [
  7895. {
  7896. "__id__": 201
  7897. },
  7898. {
  7899. "__id__": 202
  7900. },
  7901. {
  7902. "__id__": 203
  7903. }
  7904. ],
  7905. "_prefab": null,
  7906. "_lpos": {
  7907. "__type__": "cc.Vec3",
  7908. "x": 0,
  7909. "y": -45.357000000000006,
  7910. "z": 0
  7911. },
  7912. "_lrot": {
  7913. "__type__": "cc.Quat",
  7914. "x": 0,
  7915. "y": 0,
  7916. "z": 0,
  7917. "w": 1
  7918. },
  7919. "_lscale": {
  7920. "__type__": "cc.Vec3",
  7921. "x": 1,
  7922. "y": 1,
  7923. "z": 1
  7924. },
  7925. "_mobility": 0,
  7926. "_layer": 33554432,
  7927. "_euler": {
  7928. "__type__": "cc.Vec3",
  7929. "x": 0,
  7930. "y": 0,
  7931. "z": 0
  7932. },
  7933. "_id": "d2Muf3fsxCsqQZiok2m7CN"
  7934. },
  7935. {
  7936. "__type__": "cc.UITransform",
  7937. "_name": "",
  7938. "_objFlags": 0,
  7939. "__editorExtras__": {},
  7940. "node": {
  7941. "__id__": 200
  7942. },
  7943. "_enabled": true,
  7944. "__prefab": null,
  7945. "_contentSize": {
  7946. "__type__": "cc.Size",
  7947. "width": 96,
  7948. "height": 37.8
  7949. },
  7950. "_anchorPoint": {
  7951. "__type__": "cc.Vec2",
  7952. "x": 0.5,
  7953. "y": 0.5
  7954. },
  7955. "_id": "6ac3h6QdJA2r3R7eyvKyXa"
  7956. },
  7957. {
  7958. "__type__": "cc.Label",
  7959. "_name": "",
  7960. "_objFlags": 0,
  7961. "__editorExtras__": {},
  7962. "node": {
  7963. "__id__": 200
  7964. },
  7965. "_enabled": true,
  7966. "__prefab": null,
  7967. "_customMaterial": null,
  7968. "_srcBlendFactor": 2,
  7969. "_dstBlendFactor": 4,
  7970. "_color": {
  7971. "__type__": "cc.Color",
  7972. "r": 119,
  7973. "g": 255,
  7974. "b": 179,
  7975. "a": 255
  7976. },
  7977. "_string": "解锁卡槽",
  7978. "_horizontalAlign": 1,
  7979. "_verticalAlign": 1,
  7980. "_actualFontSize": 24,
  7981. "_fontSize": 24,
  7982. "_fontFamily": "Arial",
  7983. "_lineHeight": 30,
  7984. "_overflow": 0,
  7985. "_enableWrapText": true,
  7986. "_font": null,
  7987. "_isSystemFontUsed": true,
  7988. "_spacingX": 0,
  7989. "_isItalic": false,
  7990. "_isBold": false,
  7991. "_isUnderline": false,
  7992. "_underlineHeight": 2,
  7993. "_cacheMode": 0,
  7994. "_enableOutline": false,
  7995. "_outlineColor": {
  7996. "__type__": "cc.Color",
  7997. "r": 0,
  7998. "g": 0,
  7999. "b": 0,
  8000. "a": 255
  8001. },
  8002. "_outlineWidth": 2,
  8003. "_enableShadow": false,
  8004. "_shadowColor": {
  8005. "__type__": "cc.Color",
  8006. "r": 0,
  8007. "g": 0,
  8008. "b": 0,
  8009. "a": 255
  8010. },
  8011. "_shadowOffset": {
  8012. "__type__": "cc.Vec2",
  8013. "x": 2,
  8014. "y": 2
  8015. },
  8016. "_shadowBlur": 2,
  8017. "_id": "2eBfPUrKlAOZC3bjgvANXD"
  8018. },
  8019. {
  8020. "__type__": "cc.Widget",
  8021. "_name": "",
  8022. "_objFlags": 0,
  8023. "__editorExtras__": {},
  8024. "node": {
  8025. "__id__": 200
  8026. },
  8027. "_enabled": true,
  8028. "__prefab": null,
  8029. "_alignFlags": 4,
  8030. "_target": null,
  8031. "_left": 0,
  8032. "_right": 0,
  8033. "_top": 34.8,
  8034. "_bottom": -4.257,
  8035. "_horizontalCenter": 0,
  8036. "_verticalCenter": 0,
  8037. "_isAbsLeft": true,
  8038. "_isAbsRight": true,
  8039. "_isAbsTop": true,
  8040. "_isAbsBottom": true,
  8041. "_isAbsHorizontalCenter": true,
  8042. "_isAbsVerticalCenter": true,
  8043. "_originalWidth": 0,
  8044. "_originalHeight": 0,
  8045. "_alignMode": 2,
  8046. "_lockFlags": 0,
  8047. "_id": "98vTuuw5tGsZLWLh0HLNTf"
  8048. },
  8049. {
  8050. "__type__": "cc.Node",
  8051. "_name": "Sprite",
  8052. "_objFlags": 0,
  8053. "__editorExtras__": {},
  8054. "_parent": {
  8055. "__id__": 195
  8056. },
  8057. "_children": [],
  8058. "_active": true,
  8059. "_components": [
  8060. {
  8061. "__id__": 205
  8062. },
  8063. {
  8064. "__id__": 206
  8065. }
  8066. ],
  8067. "_prefab": null,
  8068. "_lpos": {
  8069. "__type__": "cc.Vec3",
  8070. "x": 0,
  8071. "y": 0,
  8072. "z": 0
  8073. },
  8074. "_lrot": {
  8075. "__type__": "cc.Quat",
  8076. "x": 0,
  8077. "y": 0,
  8078. "z": 0,
  8079. "w": 1
  8080. },
  8081. "_lscale": {
  8082. "__type__": "cc.Vec3",
  8083. "x": 1,
  8084. "y": 1,
  8085. "z": 1
  8086. },
  8087. "_mobility": 0,
  8088. "_layer": 33554432,
  8089. "_euler": {
  8090. "__type__": "cc.Vec3",
  8091. "x": 0,
  8092. "y": 0,
  8093. "z": 0
  8094. },
  8095. "_id": "8eb0AIEo1PmJ4VzO+HrvYK"
  8096. },
  8097. {
  8098. "__type__": "cc.UITransform",
  8099. "_name": "",
  8100. "_objFlags": 0,
  8101. "__editorExtras__": {},
  8102. "node": {
  8103. "__id__": 204
  8104. },
  8105. "_enabled": true,
  8106. "__prefab": null,
  8107. "_contentSize": {
  8108. "__type__": "cc.Size",
  8109. "width": 105,
  8110. "height": 120
  8111. },
  8112. "_anchorPoint": {
  8113. "__type__": "cc.Vec2",
  8114. "x": 0.5,
  8115. "y": 0.5
  8116. },
  8117. "_id": "72ZIdRl3tNr51CBAQCkA4a"
  8118. },
  8119. {
  8120. "__type__": "cc.Sprite",
  8121. "_name": "",
  8122. "_objFlags": 0,
  8123. "__editorExtras__": {},
  8124. "node": {
  8125. "__id__": 204
  8126. },
  8127. "_enabled": true,
  8128. "__prefab": null,
  8129. "_customMaterial": null,
  8130. "_srcBlendFactor": 2,
  8131. "_dstBlendFactor": 4,
  8132. "_color": {
  8133. "__type__": "cc.Color",
  8134. "r": 255,
  8135. "g": 255,
  8136. "b": 255,
  8137. "a": 255
  8138. },
  8139. "_spriteFrame": null,
  8140. "_type": 0,
  8141. "_fillType": 0,
  8142. "_sizeMode": 0,
  8143. "_fillCenter": {
  8144. "__type__": "cc.Vec2",
  8145. "x": 0,
  8146. "y": 0
  8147. },
  8148. "_fillStart": 0,
  8149. "_fillRange": 0,
  8150. "_isTrimmedMode": true,
  8151. "_useGrayscale": false,
  8152. "_atlas": null,
  8153. "_id": "18e50Lb2lKM64XEXRgzWxl"
  8154. },
  8155. {
  8156. "__type__": "cc.UITransform",
  8157. "_name": "",
  8158. "_objFlags": 0,
  8159. "__editorExtras__": {},
  8160. "node": {
  8161. "__id__": 195
  8162. },
  8163. "_enabled": true,
  8164. "__prefab": null,
  8165. "_contentSize": {
  8166. "__type__": "cc.Size",
  8167. "width": 105,
  8168. "height": 120
  8169. },
  8170. "_anchorPoint": {
  8171. "__type__": "cc.Vec2",
  8172. "x": 0.5,
  8173. "y": 0.5
  8174. },
  8175. "_id": "c0kdpw+IpBVr8C/WY0kmC9"
  8176. },
  8177. {
  8178. "__type__": "cc.Sprite",
  8179. "_name": "",
  8180. "_objFlags": 0,
  8181. "__editorExtras__": {},
  8182. "node": {
  8183. "__id__": 195
  8184. },
  8185. "_enabled": true,
  8186. "__prefab": null,
  8187. "_customMaterial": null,
  8188. "_srcBlendFactor": 2,
  8189. "_dstBlendFactor": 4,
  8190. "_color": {
  8191. "__type__": "cc.Color",
  8192. "r": 255,
  8193. "g": 255,
  8194. "b": 255,
  8195. "a": 255
  8196. },
  8197. "_spriteFrame": {
  8198. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  8199. "__expectedType__": "cc.SpriteFrame"
  8200. },
  8201. "_type": 0,
  8202. "_fillType": 0,
  8203. "_sizeMode": 0,
  8204. "_fillCenter": {
  8205. "__type__": "cc.Vec2",
  8206. "x": 0,
  8207. "y": 0
  8208. },
  8209. "_fillStart": 0,
  8210. "_fillRange": 0,
  8211. "_isTrimmedMode": true,
  8212. "_useGrayscale": false,
  8213. "_atlas": null,
  8214. "_id": "b3MlKHIFhDOIMzO7bddoQ2"
  8215. },
  8216. {
  8217. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  8218. "_name": "",
  8219. "_objFlags": 0,
  8220. "__editorExtras__": {},
  8221. "node": {
  8222. "__id__": 195
  8223. },
  8224. "_enabled": true,
  8225. "__prefab": null,
  8226. "_id": "faCLlvP4dKQqosHv1Bzqu7"
  8227. },
  8228. {
  8229. "__type__": "cc.Node",
  8230. "_name": "Card-002",
  8231. "_objFlags": 0,
  8232. "__editorExtras__": {},
  8233. "_parent": {
  8234. "__id__": 179
  8235. },
  8236. "_children": [
  8237. {
  8238. "__id__": 211
  8239. },
  8240. {
  8241. "__id__": 215
  8242. },
  8243. {
  8244. "__id__": 219
  8245. }
  8246. ],
  8247. "_active": true,
  8248. "_components": [
  8249. {
  8250. "__id__": 222
  8251. },
  8252. {
  8253. "__id__": 223
  8254. },
  8255. {
  8256. "__id__": 224
  8257. }
  8258. ],
  8259. "_prefab": null,
  8260. "_lpos": {
  8261. "__type__": "cc.Vec3",
  8262. "x": -57.5,
  8263. "y": 0,
  8264. "z": 0
  8265. },
  8266. "_lrot": {
  8267. "__type__": "cc.Quat",
  8268. "x": 0,
  8269. "y": 0,
  8270. "z": 0,
  8271. "w": 1
  8272. },
  8273. "_lscale": {
  8274. "__type__": "cc.Vec3",
  8275. "x": 1,
  8276. "y": 1,
  8277. "z": 1
  8278. },
  8279. "_mobility": 0,
  8280. "_layer": 33554432,
  8281. "_euler": {
  8282. "__type__": "cc.Vec3",
  8283. "x": 0,
  8284. "y": 0,
  8285. "z": 0
  8286. },
  8287. "_id": "f9noROSg1IDInHXrxhgiBZ"
  8288. },
  8289. {
  8290. "__type__": "cc.Node",
  8291. "_name": "Lock",
  8292. "_objFlags": 0,
  8293. "__editorExtras__": {},
  8294. "_parent": {
  8295. "__id__": 210
  8296. },
  8297. "_children": [],
  8298. "_active": false,
  8299. "_components": [
  8300. {
  8301. "__id__": 212
  8302. },
  8303. {
  8304. "__id__": 213
  8305. },
  8306. {
  8307. "__id__": 214
  8308. }
  8309. ],
  8310. "_prefab": null,
  8311. "_lpos": {
  8312. "__type__": "cc.Vec3",
  8313. "x": 0,
  8314. "y": 0,
  8315. "z": 0
  8316. },
  8317. "_lrot": {
  8318. "__type__": "cc.Quat",
  8319. "x": 0,
  8320. "y": 0,
  8321. "z": 0,
  8322. "w": 1
  8323. },
  8324. "_lscale": {
  8325. "__type__": "cc.Vec3",
  8326. "x": 1,
  8327. "y": 1,
  8328. "z": 1
  8329. },
  8330. "_mobility": 0,
  8331. "_layer": 33554432,
  8332. "_euler": {
  8333. "__type__": "cc.Vec3",
  8334. "x": 0,
  8335. "y": 0,
  8336. "z": 0
  8337. },
  8338. "_id": "89Rwi2R/FCqrmi3CB//1B8"
  8339. },
  8340. {
  8341. "__type__": "cc.UITransform",
  8342. "_name": "",
  8343. "_objFlags": 0,
  8344. "__editorExtras__": {},
  8345. "node": {
  8346. "__id__": 211
  8347. },
  8348. "_enabled": true,
  8349. "__prefab": null,
  8350. "_contentSize": {
  8351. "__type__": "cc.Size",
  8352. "width": 80,
  8353. "height": 72
  8354. },
  8355. "_anchorPoint": {
  8356. "__type__": "cc.Vec2",
  8357. "x": 0.5,
  8358. "y": 0.5
  8359. },
  8360. "_id": "c08FuCE1FE9Zk/+j8kwFcy"
  8361. },
  8362. {
  8363. "__type__": "cc.Sprite",
  8364. "_name": "",
  8365. "_objFlags": 0,
  8366. "__editorExtras__": {},
  8367. "node": {
  8368. "__id__": 211
  8369. },
  8370. "_enabled": true,
  8371. "__prefab": null,
  8372. "_customMaterial": null,
  8373. "_srcBlendFactor": 2,
  8374. "_dstBlendFactor": 4,
  8375. "_color": {
  8376. "__type__": "cc.Color",
  8377. "r": 255,
  8378. "g": 255,
  8379. "b": 255,
  8380. "a": 255
  8381. },
  8382. "_spriteFrame": {
  8383. "__uuid__": "57520716-48c8-4a19-8acf-41c9f8777fb0@f9941",
  8384. "__expectedType__": "cc.SpriteFrame"
  8385. },
  8386. "_type": 0,
  8387. "_fillType": 0,
  8388. "_sizeMode": 0,
  8389. "_fillCenter": {
  8390. "__type__": "cc.Vec2",
  8391. "x": 0,
  8392. "y": 0
  8393. },
  8394. "_fillStart": 0,
  8395. "_fillRange": 0,
  8396. "_isTrimmedMode": true,
  8397. "_useGrayscale": false,
  8398. "_atlas": null,
  8399. "_id": "0baAVE3fpKOoyLJpyuebwU"
  8400. },
  8401. {
  8402. "__type__": "cc.Widget",
  8403. "_name": "",
  8404. "_objFlags": 0,
  8405. "__editorExtras__": {},
  8406. "node": {
  8407. "__id__": 211
  8408. },
  8409. "_enabled": true,
  8410. "__prefab": null,
  8411. "_alignFlags": 45,
  8412. "_target": null,
  8413. "_left": 12.5,
  8414. "_right": 12.5,
  8415. "_top": 24,
  8416. "_bottom": 24,
  8417. "_horizontalCenter": 0,
  8418. "_verticalCenter": 0,
  8419. "_isAbsLeft": true,
  8420. "_isAbsRight": true,
  8421. "_isAbsTop": true,
  8422. "_isAbsBottom": true,
  8423. "_isAbsHorizontalCenter": true,
  8424. "_isAbsVerticalCenter": true,
  8425. "_originalWidth": 80,
  8426. "_originalHeight": 72,
  8427. "_alignMode": 2,
  8428. "_lockFlags": 0,
  8429. "_id": "adAPVcbTVMaLySgxDL8wvm"
  8430. },
  8431. {
  8432. "__type__": "cc.Node",
  8433. "_name": "Label",
  8434. "_objFlags": 0,
  8435. "__editorExtras__": {},
  8436. "_parent": {
  8437. "__id__": 210
  8438. },
  8439. "_children": [],
  8440. "_active": false,
  8441. "_components": [
  8442. {
  8443. "__id__": 216
  8444. },
  8445. {
  8446. "__id__": 217
  8447. },
  8448. {
  8449. "__id__": 218
  8450. }
  8451. ],
  8452. "_prefab": null,
  8453. "_lpos": {
  8454. "__type__": "cc.Vec3",
  8455. "x": 0,
  8456. "y": -45.357000000000006,
  8457. "z": 0
  8458. },
  8459. "_lrot": {
  8460. "__type__": "cc.Quat",
  8461. "x": 0,
  8462. "y": 0,
  8463. "z": 0,
  8464. "w": 1
  8465. },
  8466. "_lscale": {
  8467. "__type__": "cc.Vec3",
  8468. "x": 1,
  8469. "y": 1,
  8470. "z": 1
  8471. },
  8472. "_mobility": 0,
  8473. "_layer": 33554432,
  8474. "_euler": {
  8475. "__type__": "cc.Vec3",
  8476. "x": 0,
  8477. "y": 0,
  8478. "z": 0
  8479. },
  8480. "_id": "542Wb4jndPyq/SmCDPG5ZX"
  8481. },
  8482. {
  8483. "__type__": "cc.UITransform",
  8484. "_name": "",
  8485. "_objFlags": 0,
  8486. "__editorExtras__": {},
  8487. "node": {
  8488. "__id__": 215
  8489. },
  8490. "_enabled": true,
  8491. "__prefab": null,
  8492. "_contentSize": {
  8493. "__type__": "cc.Size",
  8494. "width": 96,
  8495. "height": 37.8
  8496. },
  8497. "_anchorPoint": {
  8498. "__type__": "cc.Vec2",
  8499. "x": 0.5,
  8500. "y": 0.5
  8501. },
  8502. "_id": "43EPivoh5EU7kcDu7Kq5/D"
  8503. },
  8504. {
  8505. "__type__": "cc.Label",
  8506. "_name": "",
  8507. "_objFlags": 0,
  8508. "__editorExtras__": {},
  8509. "node": {
  8510. "__id__": 215
  8511. },
  8512. "_enabled": true,
  8513. "__prefab": null,
  8514. "_customMaterial": null,
  8515. "_srcBlendFactor": 2,
  8516. "_dstBlendFactor": 4,
  8517. "_color": {
  8518. "__type__": "cc.Color",
  8519. "r": 119,
  8520. "g": 255,
  8521. "b": 179,
  8522. "a": 255
  8523. },
  8524. "_string": "解锁卡槽",
  8525. "_horizontalAlign": 1,
  8526. "_verticalAlign": 1,
  8527. "_actualFontSize": 24,
  8528. "_fontSize": 24,
  8529. "_fontFamily": "Arial",
  8530. "_lineHeight": 30,
  8531. "_overflow": 0,
  8532. "_enableWrapText": true,
  8533. "_font": null,
  8534. "_isSystemFontUsed": true,
  8535. "_spacingX": 0,
  8536. "_isItalic": false,
  8537. "_isBold": false,
  8538. "_isUnderline": false,
  8539. "_underlineHeight": 2,
  8540. "_cacheMode": 0,
  8541. "_enableOutline": false,
  8542. "_outlineColor": {
  8543. "__type__": "cc.Color",
  8544. "r": 0,
  8545. "g": 0,
  8546. "b": 0,
  8547. "a": 255
  8548. },
  8549. "_outlineWidth": 2,
  8550. "_enableShadow": false,
  8551. "_shadowColor": {
  8552. "__type__": "cc.Color",
  8553. "r": 0,
  8554. "g": 0,
  8555. "b": 0,
  8556. "a": 255
  8557. },
  8558. "_shadowOffset": {
  8559. "__type__": "cc.Vec2",
  8560. "x": 2,
  8561. "y": 2
  8562. },
  8563. "_shadowBlur": 2,
  8564. "_id": "e1uUR0Z4tJp6iw2Z8ItKqi"
  8565. },
  8566. {
  8567. "__type__": "cc.Widget",
  8568. "_name": "",
  8569. "_objFlags": 0,
  8570. "__editorExtras__": {},
  8571. "node": {
  8572. "__id__": 215
  8573. },
  8574. "_enabled": true,
  8575. "__prefab": null,
  8576. "_alignFlags": 4,
  8577. "_target": null,
  8578. "_left": 0,
  8579. "_right": 0,
  8580. "_top": 34.8,
  8581. "_bottom": -4.257,
  8582. "_horizontalCenter": 0,
  8583. "_verticalCenter": 0,
  8584. "_isAbsLeft": true,
  8585. "_isAbsRight": true,
  8586. "_isAbsTop": true,
  8587. "_isAbsBottom": true,
  8588. "_isAbsHorizontalCenter": true,
  8589. "_isAbsVerticalCenter": true,
  8590. "_originalWidth": 0,
  8591. "_originalHeight": 0,
  8592. "_alignMode": 2,
  8593. "_lockFlags": 0,
  8594. "_id": "daF0e7XhVKtaeGa+Jcp7ft"
  8595. },
  8596. {
  8597. "__type__": "cc.Node",
  8598. "_name": "Sprite",
  8599. "_objFlags": 0,
  8600. "__editorExtras__": {},
  8601. "_parent": {
  8602. "__id__": 210
  8603. },
  8604. "_children": [],
  8605. "_active": true,
  8606. "_components": [
  8607. {
  8608. "__id__": 220
  8609. },
  8610. {
  8611. "__id__": 221
  8612. }
  8613. ],
  8614. "_prefab": null,
  8615. "_lpos": {
  8616. "__type__": "cc.Vec3",
  8617. "x": 0,
  8618. "y": 0,
  8619. "z": 0
  8620. },
  8621. "_lrot": {
  8622. "__type__": "cc.Quat",
  8623. "x": 0,
  8624. "y": 0,
  8625. "z": 0,
  8626. "w": 1
  8627. },
  8628. "_lscale": {
  8629. "__type__": "cc.Vec3",
  8630. "x": 1,
  8631. "y": 1,
  8632. "z": 1
  8633. },
  8634. "_mobility": 0,
  8635. "_layer": 33554432,
  8636. "_euler": {
  8637. "__type__": "cc.Vec3",
  8638. "x": 0,
  8639. "y": 0,
  8640. "z": 0
  8641. },
  8642. "_id": "f8YvGal/tHAo5JVjXd0PiD"
  8643. },
  8644. {
  8645. "__type__": "cc.UITransform",
  8646. "_name": "",
  8647. "_objFlags": 0,
  8648. "__editorExtras__": {},
  8649. "node": {
  8650. "__id__": 219
  8651. },
  8652. "_enabled": true,
  8653. "__prefab": null,
  8654. "_contentSize": {
  8655. "__type__": "cc.Size",
  8656. "width": 105,
  8657. "height": 120
  8658. },
  8659. "_anchorPoint": {
  8660. "__type__": "cc.Vec2",
  8661. "x": 0.5,
  8662. "y": 0.5
  8663. },
  8664. "_id": "e0jIpos6ZEjareXHtILmO5"
  8665. },
  8666. {
  8667. "__type__": "cc.Sprite",
  8668. "_name": "",
  8669. "_objFlags": 0,
  8670. "__editorExtras__": {},
  8671. "node": {
  8672. "__id__": 219
  8673. },
  8674. "_enabled": true,
  8675. "__prefab": null,
  8676. "_customMaterial": null,
  8677. "_srcBlendFactor": 2,
  8678. "_dstBlendFactor": 4,
  8679. "_color": {
  8680. "__type__": "cc.Color",
  8681. "r": 255,
  8682. "g": 255,
  8683. "b": 255,
  8684. "a": 255
  8685. },
  8686. "_spriteFrame": null,
  8687. "_type": 0,
  8688. "_fillType": 0,
  8689. "_sizeMode": 0,
  8690. "_fillCenter": {
  8691. "__type__": "cc.Vec2",
  8692. "x": 0,
  8693. "y": 0
  8694. },
  8695. "_fillStart": 0,
  8696. "_fillRange": 0,
  8697. "_isTrimmedMode": true,
  8698. "_useGrayscale": false,
  8699. "_atlas": null,
  8700. "_id": "cdqC0s8YhKwojOtKLWRRLY"
  8701. },
  8702. {
  8703. "__type__": "cc.UITransform",
  8704. "_name": "",
  8705. "_objFlags": 0,
  8706. "__editorExtras__": {},
  8707. "node": {
  8708. "__id__": 210
  8709. },
  8710. "_enabled": true,
  8711. "__prefab": null,
  8712. "_contentSize": {
  8713. "__type__": "cc.Size",
  8714. "width": 105,
  8715. "height": 120
  8716. },
  8717. "_anchorPoint": {
  8718. "__type__": "cc.Vec2",
  8719. "x": 0.5,
  8720. "y": 0.5
  8721. },
  8722. "_id": "6cB/OQsrBBEqRBnFARr00V"
  8723. },
  8724. {
  8725. "__type__": "cc.Sprite",
  8726. "_name": "",
  8727. "_objFlags": 0,
  8728. "__editorExtras__": {},
  8729. "node": {
  8730. "__id__": 210
  8731. },
  8732. "_enabled": true,
  8733. "__prefab": null,
  8734. "_customMaterial": null,
  8735. "_srcBlendFactor": 2,
  8736. "_dstBlendFactor": 4,
  8737. "_color": {
  8738. "__type__": "cc.Color",
  8739. "r": 255,
  8740. "g": 255,
  8741. "b": 255,
  8742. "a": 255
  8743. },
  8744. "_spriteFrame": {
  8745. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  8746. "__expectedType__": "cc.SpriteFrame"
  8747. },
  8748. "_type": 0,
  8749. "_fillType": 0,
  8750. "_sizeMode": 0,
  8751. "_fillCenter": {
  8752. "__type__": "cc.Vec2",
  8753. "x": 0,
  8754. "y": 0
  8755. },
  8756. "_fillStart": 0,
  8757. "_fillRange": 0,
  8758. "_isTrimmedMode": true,
  8759. "_useGrayscale": false,
  8760. "_atlas": null,
  8761. "_id": "05TmdnzFJAOrZEkn4BR0Zf"
  8762. },
  8763. {
  8764. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  8765. "_name": "",
  8766. "_objFlags": 0,
  8767. "__editorExtras__": {},
  8768. "node": {
  8769. "__id__": 210
  8770. },
  8771. "_enabled": true,
  8772. "__prefab": null,
  8773. "_id": "16EnQK7iBJAqlqVeNTzuZT"
  8774. },
  8775. {
  8776. "__type__": "cc.Node",
  8777. "_name": "Card-003",
  8778. "_objFlags": 0,
  8779. "__editorExtras__": {},
  8780. "_parent": {
  8781. "__id__": 179
  8782. },
  8783. "_children": [
  8784. {
  8785. "__id__": 226
  8786. },
  8787. {
  8788. "__id__": 230
  8789. },
  8790. {
  8791. "__id__": 234
  8792. }
  8793. ],
  8794. "_active": true,
  8795. "_components": [
  8796. {
  8797. "__id__": 237
  8798. },
  8799. {
  8800. "__id__": 238
  8801. },
  8802. {
  8803. "__id__": 239
  8804. }
  8805. ],
  8806. "_prefab": null,
  8807. "_lpos": {
  8808. "__type__": "cc.Vec3",
  8809. "x": 57.5,
  8810. "y": 0,
  8811. "z": 0
  8812. },
  8813. "_lrot": {
  8814. "__type__": "cc.Quat",
  8815. "x": 0,
  8816. "y": 0,
  8817. "z": 0,
  8818. "w": 1
  8819. },
  8820. "_lscale": {
  8821. "__type__": "cc.Vec3",
  8822. "x": 1,
  8823. "y": 1,
  8824. "z": 1
  8825. },
  8826. "_mobility": 0,
  8827. "_layer": 33554432,
  8828. "_euler": {
  8829. "__type__": "cc.Vec3",
  8830. "x": 0,
  8831. "y": 0,
  8832. "z": 0
  8833. },
  8834. "_id": "bcJSOlaUZLYrRkcOKgNuyB"
  8835. },
  8836. {
  8837. "__type__": "cc.Node",
  8838. "_name": "Lock",
  8839. "_objFlags": 0,
  8840. "__editorExtras__": {},
  8841. "_parent": {
  8842. "__id__": 225
  8843. },
  8844. "_children": [],
  8845. "_active": true,
  8846. "_components": [
  8847. {
  8848. "__id__": 227
  8849. },
  8850. {
  8851. "__id__": 228
  8852. },
  8853. {
  8854. "__id__": 229
  8855. }
  8856. ],
  8857. "_prefab": null,
  8858. "_lpos": {
  8859. "__type__": "cc.Vec3",
  8860. "x": 0,
  8861. "y": 0,
  8862. "z": 0
  8863. },
  8864. "_lrot": {
  8865. "__type__": "cc.Quat",
  8866. "x": 0,
  8867. "y": 0,
  8868. "z": 0,
  8869. "w": 1
  8870. },
  8871. "_lscale": {
  8872. "__type__": "cc.Vec3",
  8873. "x": 1,
  8874. "y": 1,
  8875. "z": 1
  8876. },
  8877. "_mobility": 0,
  8878. "_layer": 33554432,
  8879. "_euler": {
  8880. "__type__": "cc.Vec3",
  8881. "x": 0,
  8882. "y": 0,
  8883. "z": 0
  8884. },
  8885. "_id": "67HE2GDUlMF709HeECWEfY"
  8886. },
  8887. {
  8888. "__type__": "cc.UITransform",
  8889. "_name": "",
  8890. "_objFlags": 0,
  8891. "__editorExtras__": {},
  8892. "node": {
  8893. "__id__": 226
  8894. },
  8895. "_enabled": true,
  8896. "__prefab": null,
  8897. "_contentSize": {
  8898. "__type__": "cc.Size",
  8899. "width": 68.8,
  8900. "height": 69.6
  8901. },
  8902. "_anchorPoint": {
  8903. "__type__": "cc.Vec2",
  8904. "x": 0.5,
  8905. "y": 0.5
  8906. },
  8907. "_id": "69utNaGBdJkKnnv+i1HN0n"
  8908. },
  8909. {
  8910. "__type__": "cc.Sprite",
  8911. "_name": "",
  8912. "_objFlags": 0,
  8913. "__editorExtras__": {},
  8914. "node": {
  8915. "__id__": 226
  8916. },
  8917. "_enabled": true,
  8918. "__prefab": null,
  8919. "_customMaterial": null,
  8920. "_srcBlendFactor": 2,
  8921. "_dstBlendFactor": 4,
  8922. "_color": {
  8923. "__type__": "cc.Color",
  8924. "r": 255,
  8925. "g": 255,
  8926. "b": 255,
  8927. "a": 255
  8928. },
  8929. "_spriteFrame": {
  8930. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b7709",
  8931. "__expectedType__": "cc.SpriteFrame"
  8932. },
  8933. "_type": 0,
  8934. "_fillType": 0,
  8935. "_sizeMode": 0,
  8936. "_fillCenter": {
  8937. "__type__": "cc.Vec2",
  8938. "x": 0,
  8939. "y": 0
  8940. },
  8941. "_fillStart": 0,
  8942. "_fillRange": 0,
  8943. "_isTrimmedMode": true,
  8944. "_useGrayscale": false,
  8945. "_atlas": null,
  8946. "_id": "0a0u1XavhPQIWd1eBUth+h"
  8947. },
  8948. {
  8949. "__type__": "cc.Widget",
  8950. "_name": "",
  8951. "_objFlags": 0,
  8952. "__editorExtras__": {},
  8953. "node": {
  8954. "__id__": 226
  8955. },
  8956. "_enabled": true,
  8957. "__prefab": null,
  8958. "_alignFlags": 45,
  8959. "_target": null,
  8960. "_left": 18.1,
  8961. "_right": 18.1,
  8962. "_top": 25.200000000000003,
  8963. "_bottom": 25.200000000000003,
  8964. "_horizontalCenter": 0,
  8965. "_verticalCenter": 0,
  8966. "_isAbsLeft": true,
  8967. "_isAbsRight": true,
  8968. "_isAbsTop": true,
  8969. "_isAbsBottom": true,
  8970. "_isAbsHorizontalCenter": true,
  8971. "_isAbsVerticalCenter": true,
  8972. "_originalWidth": 80,
  8973. "_originalHeight": 72,
  8974. "_alignMode": 2,
  8975. "_lockFlags": 0,
  8976. "_id": "c5f4NMOolPxK51HEuu3ZSS"
  8977. },
  8978. {
  8979. "__type__": "cc.Node",
  8980. "_name": "Label",
  8981. "_objFlags": 0,
  8982. "__editorExtras__": {},
  8983. "_parent": {
  8984. "__id__": 225
  8985. },
  8986. "_children": [],
  8987. "_active": true,
  8988. "_components": [
  8989. {
  8990. "__id__": 231
  8991. },
  8992. {
  8993. "__id__": 232
  8994. },
  8995. {
  8996. "__id__": 233
  8997. }
  8998. ],
  8999. "_prefab": null,
  9000. "_lpos": {
  9001. "__type__": "cc.Vec3",
  9002. "x": 0,
  9003. "y": -45.357000000000006,
  9004. "z": 0
  9005. },
  9006. "_lrot": {
  9007. "__type__": "cc.Quat",
  9008. "x": 0,
  9009. "y": 0,
  9010. "z": 0,
  9011. "w": 1
  9012. },
  9013. "_lscale": {
  9014. "__type__": "cc.Vec3",
  9015. "x": 1,
  9016. "y": 1,
  9017. "z": 1
  9018. },
  9019. "_mobility": 0,
  9020. "_layer": 33554432,
  9021. "_euler": {
  9022. "__type__": "cc.Vec3",
  9023. "x": 0,
  9024. "y": 0,
  9025. "z": 0
  9026. },
  9027. "_id": "403p3m4RFOBIz/O2Fs9onw"
  9028. },
  9029. {
  9030. "__type__": "cc.UITransform",
  9031. "_name": "",
  9032. "_objFlags": 0,
  9033. "__editorExtras__": {},
  9034. "node": {
  9035. "__id__": 230
  9036. },
  9037. "_enabled": true,
  9038. "__prefab": null,
  9039. "_contentSize": {
  9040. "__type__": "cc.Size",
  9041. "width": 96,
  9042. "height": 37.8
  9043. },
  9044. "_anchorPoint": {
  9045. "__type__": "cc.Vec2",
  9046. "x": 0.5,
  9047. "y": 0.5
  9048. },
  9049. "_id": "b1QpHPXVpAJZTHEHt3CLkz"
  9050. },
  9051. {
  9052. "__type__": "cc.Label",
  9053. "_name": "",
  9054. "_objFlags": 0,
  9055. "__editorExtras__": {},
  9056. "node": {
  9057. "__id__": 230
  9058. },
  9059. "_enabled": true,
  9060. "__prefab": null,
  9061. "_customMaterial": null,
  9062. "_srcBlendFactor": 2,
  9063. "_dstBlendFactor": 4,
  9064. "_color": {
  9065. "__type__": "cc.Color",
  9066. "r": 119,
  9067. "g": 255,
  9068. "b": 179,
  9069. "a": 255
  9070. },
  9071. "_string": "解锁卡槽",
  9072. "_horizontalAlign": 1,
  9073. "_verticalAlign": 1,
  9074. "_actualFontSize": 24,
  9075. "_fontSize": 24,
  9076. "_fontFamily": "Arial",
  9077. "_lineHeight": 30,
  9078. "_overflow": 0,
  9079. "_enableWrapText": true,
  9080. "_font": null,
  9081. "_isSystemFontUsed": true,
  9082. "_spacingX": 0,
  9083. "_isItalic": false,
  9084. "_isBold": false,
  9085. "_isUnderline": false,
  9086. "_underlineHeight": 2,
  9087. "_cacheMode": 0,
  9088. "_enableOutline": false,
  9089. "_outlineColor": {
  9090. "__type__": "cc.Color",
  9091. "r": 0,
  9092. "g": 0,
  9093. "b": 0,
  9094. "a": 255
  9095. },
  9096. "_outlineWidth": 2,
  9097. "_enableShadow": false,
  9098. "_shadowColor": {
  9099. "__type__": "cc.Color",
  9100. "r": 0,
  9101. "g": 0,
  9102. "b": 0,
  9103. "a": 255
  9104. },
  9105. "_shadowOffset": {
  9106. "__type__": "cc.Vec2",
  9107. "x": 2,
  9108. "y": 2
  9109. },
  9110. "_shadowBlur": 2,
  9111. "_id": "37jpB7/VpJKb51LukYvMCy"
  9112. },
  9113. {
  9114. "__type__": "cc.Widget",
  9115. "_name": "",
  9116. "_objFlags": 0,
  9117. "__editorExtras__": {},
  9118. "node": {
  9119. "__id__": 230
  9120. },
  9121. "_enabled": true,
  9122. "__prefab": null,
  9123. "_alignFlags": 4,
  9124. "_target": null,
  9125. "_left": 0,
  9126. "_right": 0,
  9127. "_top": 34.8,
  9128. "_bottom": -4.257,
  9129. "_horizontalCenter": 0,
  9130. "_verticalCenter": 0,
  9131. "_isAbsLeft": true,
  9132. "_isAbsRight": true,
  9133. "_isAbsTop": true,
  9134. "_isAbsBottom": true,
  9135. "_isAbsHorizontalCenter": true,
  9136. "_isAbsVerticalCenter": true,
  9137. "_originalWidth": 0,
  9138. "_originalHeight": 0,
  9139. "_alignMode": 2,
  9140. "_lockFlags": 0,
  9141. "_id": "37oIFvO+NDQIEJOjmXinZJ"
  9142. },
  9143. {
  9144. "__type__": "cc.Node",
  9145. "_name": "Sprite",
  9146. "_objFlags": 0,
  9147. "__editorExtras__": {},
  9148. "_parent": {
  9149. "__id__": 225
  9150. },
  9151. "_children": [],
  9152. "_active": true,
  9153. "_components": [
  9154. {
  9155. "__id__": 235
  9156. },
  9157. {
  9158. "__id__": 236
  9159. }
  9160. ],
  9161. "_prefab": null,
  9162. "_lpos": {
  9163. "__type__": "cc.Vec3",
  9164. "x": 0,
  9165. "y": 0,
  9166. "z": 0
  9167. },
  9168. "_lrot": {
  9169. "__type__": "cc.Quat",
  9170. "x": 0,
  9171. "y": 0,
  9172. "z": 0,
  9173. "w": 1
  9174. },
  9175. "_lscale": {
  9176. "__type__": "cc.Vec3",
  9177. "x": 1,
  9178. "y": 1,
  9179. "z": 1
  9180. },
  9181. "_mobility": 0,
  9182. "_layer": 33554432,
  9183. "_euler": {
  9184. "__type__": "cc.Vec3",
  9185. "x": 0,
  9186. "y": 0,
  9187. "z": 0
  9188. },
  9189. "_id": "4bEgjTUIhG3IFReeyYGM/e"
  9190. },
  9191. {
  9192. "__type__": "cc.UITransform",
  9193. "_name": "",
  9194. "_objFlags": 0,
  9195. "__editorExtras__": {},
  9196. "node": {
  9197. "__id__": 234
  9198. },
  9199. "_enabled": true,
  9200. "__prefab": null,
  9201. "_contentSize": {
  9202. "__type__": "cc.Size",
  9203. "width": 105,
  9204. "height": 120
  9205. },
  9206. "_anchorPoint": {
  9207. "__type__": "cc.Vec2",
  9208. "x": 0.5,
  9209. "y": 0.5
  9210. },
  9211. "_id": "abpxWPLZ1ESqB+z/dnrUDI"
  9212. },
  9213. {
  9214. "__type__": "cc.Sprite",
  9215. "_name": "",
  9216. "_objFlags": 0,
  9217. "__editorExtras__": {},
  9218. "node": {
  9219. "__id__": 234
  9220. },
  9221. "_enabled": true,
  9222. "__prefab": null,
  9223. "_customMaterial": null,
  9224. "_srcBlendFactor": 2,
  9225. "_dstBlendFactor": 4,
  9226. "_color": {
  9227. "__type__": "cc.Color",
  9228. "r": 255,
  9229. "g": 255,
  9230. "b": 255,
  9231. "a": 255
  9232. },
  9233. "_spriteFrame": null,
  9234. "_type": 0,
  9235. "_fillType": 0,
  9236. "_sizeMode": 0,
  9237. "_fillCenter": {
  9238. "__type__": "cc.Vec2",
  9239. "x": 0,
  9240. "y": 0
  9241. },
  9242. "_fillStart": 0,
  9243. "_fillRange": 0,
  9244. "_isTrimmedMode": true,
  9245. "_useGrayscale": false,
  9246. "_atlas": null,
  9247. "_id": "e8OxeHPhpMWrjgzGasO0pZ"
  9248. },
  9249. {
  9250. "__type__": "cc.UITransform",
  9251. "_name": "",
  9252. "_objFlags": 0,
  9253. "__editorExtras__": {},
  9254. "node": {
  9255. "__id__": 225
  9256. },
  9257. "_enabled": true,
  9258. "__prefab": null,
  9259. "_contentSize": {
  9260. "__type__": "cc.Size",
  9261. "width": 105,
  9262. "height": 120
  9263. },
  9264. "_anchorPoint": {
  9265. "__type__": "cc.Vec2",
  9266. "x": 0.5,
  9267. "y": 0.5
  9268. },
  9269. "_id": "3bDiNcb2pHP5pYsTbbxJPa"
  9270. },
  9271. {
  9272. "__type__": "cc.Sprite",
  9273. "_name": "",
  9274. "_objFlags": 0,
  9275. "__editorExtras__": {},
  9276. "node": {
  9277. "__id__": 225
  9278. },
  9279. "_enabled": true,
  9280. "__prefab": null,
  9281. "_customMaterial": null,
  9282. "_srcBlendFactor": 2,
  9283. "_dstBlendFactor": 4,
  9284. "_color": {
  9285. "__type__": "cc.Color",
  9286. "r": 255,
  9287. "g": 255,
  9288. "b": 255,
  9289. "a": 255
  9290. },
  9291. "_spriteFrame": {
  9292. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  9293. "__expectedType__": "cc.SpriteFrame"
  9294. },
  9295. "_type": 0,
  9296. "_fillType": 0,
  9297. "_sizeMode": 0,
  9298. "_fillCenter": {
  9299. "__type__": "cc.Vec2",
  9300. "x": 0,
  9301. "y": 0
  9302. },
  9303. "_fillStart": 0,
  9304. "_fillRange": 0,
  9305. "_isTrimmedMode": true,
  9306. "_useGrayscale": false,
  9307. "_atlas": null,
  9308. "_id": "003Ud64xxEsoaCdLGr1ZH5"
  9309. },
  9310. {
  9311. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  9312. "_name": "",
  9313. "_objFlags": 0,
  9314. "__editorExtras__": {},
  9315. "node": {
  9316. "__id__": 225
  9317. },
  9318. "_enabled": true,
  9319. "__prefab": null,
  9320. "_id": "4at7hpifhJr4CsZ+2h2UAz"
  9321. },
  9322. {
  9323. "__type__": "cc.Node",
  9324. "_name": "Card-004",
  9325. "_objFlags": 0,
  9326. "__editorExtras__": {},
  9327. "_parent": {
  9328. "__id__": 179
  9329. },
  9330. "_children": [
  9331. {
  9332. "__id__": 241
  9333. },
  9334. {
  9335. "__id__": 245
  9336. },
  9337. {
  9338. "__id__": 249
  9339. }
  9340. ],
  9341. "_active": true,
  9342. "_components": [
  9343. {
  9344. "__id__": 252
  9345. },
  9346. {
  9347. "__id__": 253
  9348. },
  9349. {
  9350. "__id__": 254
  9351. }
  9352. ],
  9353. "_prefab": null,
  9354. "_lpos": {
  9355. "__type__": "cc.Vec3",
  9356. "x": 172.5,
  9357. "y": 0,
  9358. "z": 0
  9359. },
  9360. "_lrot": {
  9361. "__type__": "cc.Quat",
  9362. "x": 0,
  9363. "y": 0,
  9364. "z": 0,
  9365. "w": 1
  9366. },
  9367. "_lscale": {
  9368. "__type__": "cc.Vec3",
  9369. "x": 1,
  9370. "y": 1,
  9371. "z": 1
  9372. },
  9373. "_mobility": 0,
  9374. "_layer": 33554432,
  9375. "_euler": {
  9376. "__type__": "cc.Vec3",
  9377. "x": 0,
  9378. "y": 0,
  9379. "z": 0
  9380. },
  9381. "_id": "4a6qdNUKtCdJ0CSwP9Fby3"
  9382. },
  9383. {
  9384. "__type__": "cc.Node",
  9385. "_name": "Lock",
  9386. "_objFlags": 0,
  9387. "__editorExtras__": {},
  9388. "_parent": {
  9389. "__id__": 240
  9390. },
  9391. "_children": [],
  9392. "_active": true,
  9393. "_components": [
  9394. {
  9395. "__id__": 242
  9396. },
  9397. {
  9398. "__id__": 243
  9399. },
  9400. {
  9401. "__id__": 244
  9402. }
  9403. ],
  9404. "_prefab": null,
  9405. "_lpos": {
  9406. "__type__": "cc.Vec3",
  9407. "x": 0,
  9408. "y": 0,
  9409. "z": 0
  9410. },
  9411. "_lrot": {
  9412. "__type__": "cc.Quat",
  9413. "x": 0,
  9414. "y": 0,
  9415. "z": 0,
  9416. "w": 1
  9417. },
  9418. "_lscale": {
  9419. "__type__": "cc.Vec3",
  9420. "x": 1,
  9421. "y": 1,
  9422. "z": 1
  9423. },
  9424. "_mobility": 0,
  9425. "_layer": 33554432,
  9426. "_euler": {
  9427. "__type__": "cc.Vec3",
  9428. "x": 0,
  9429. "y": 0,
  9430. "z": 0
  9431. },
  9432. "_id": "e8LErBEPxGQLZ0DgPYqt5x"
  9433. },
  9434. {
  9435. "__type__": "cc.UITransform",
  9436. "_name": "",
  9437. "_objFlags": 0,
  9438. "__editorExtras__": {},
  9439. "node": {
  9440. "__id__": 241
  9441. },
  9442. "_enabled": true,
  9443. "__prefab": null,
  9444. "_contentSize": {
  9445. "__type__": "cc.Size",
  9446. "width": 68.8,
  9447. "height": 69.6
  9448. },
  9449. "_anchorPoint": {
  9450. "__type__": "cc.Vec2",
  9451. "x": 0.5,
  9452. "y": 0.5
  9453. },
  9454. "_id": "c5efVV98NHgIDrvarjYSZY"
  9455. },
  9456. {
  9457. "__type__": "cc.Sprite",
  9458. "_name": "",
  9459. "_objFlags": 0,
  9460. "__editorExtras__": {},
  9461. "node": {
  9462. "__id__": 241
  9463. },
  9464. "_enabled": true,
  9465. "__prefab": null,
  9466. "_customMaterial": null,
  9467. "_srcBlendFactor": 2,
  9468. "_dstBlendFactor": 4,
  9469. "_color": {
  9470. "__type__": "cc.Color",
  9471. "r": 255,
  9472. "g": 255,
  9473. "b": 255,
  9474. "a": 255
  9475. },
  9476. "_spriteFrame": {
  9477. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b7709",
  9478. "__expectedType__": "cc.SpriteFrame"
  9479. },
  9480. "_type": 0,
  9481. "_fillType": 0,
  9482. "_sizeMode": 0,
  9483. "_fillCenter": {
  9484. "__type__": "cc.Vec2",
  9485. "x": 0,
  9486. "y": 0
  9487. },
  9488. "_fillStart": 0,
  9489. "_fillRange": 0,
  9490. "_isTrimmedMode": true,
  9491. "_useGrayscale": false,
  9492. "_atlas": null,
  9493. "_id": "121K0NsAxIG6Xz5WA0bu9l"
  9494. },
  9495. {
  9496. "__type__": "cc.Widget",
  9497. "_name": "",
  9498. "_objFlags": 0,
  9499. "__editorExtras__": {},
  9500. "node": {
  9501. "__id__": 241
  9502. },
  9503. "_enabled": true,
  9504. "__prefab": null,
  9505. "_alignFlags": 45,
  9506. "_target": null,
  9507. "_left": 18.1,
  9508. "_right": 18.1,
  9509. "_top": 25.200000000000003,
  9510. "_bottom": 25.200000000000003,
  9511. "_horizontalCenter": 0,
  9512. "_verticalCenter": 0,
  9513. "_isAbsLeft": true,
  9514. "_isAbsRight": true,
  9515. "_isAbsTop": true,
  9516. "_isAbsBottom": true,
  9517. "_isAbsHorizontalCenter": true,
  9518. "_isAbsVerticalCenter": true,
  9519. "_originalWidth": 80,
  9520. "_originalHeight": 72,
  9521. "_alignMode": 2,
  9522. "_lockFlags": 0,
  9523. "_id": "76C4oe1gtPkJF5CtvxfxmR"
  9524. },
  9525. {
  9526. "__type__": "cc.Node",
  9527. "_name": "Label",
  9528. "_objFlags": 0,
  9529. "__editorExtras__": {},
  9530. "_parent": {
  9531. "__id__": 240
  9532. },
  9533. "_children": [],
  9534. "_active": false,
  9535. "_components": [
  9536. {
  9537. "__id__": 246
  9538. },
  9539. {
  9540. "__id__": 247
  9541. },
  9542. {
  9543. "__id__": 248
  9544. }
  9545. ],
  9546. "_prefab": null,
  9547. "_lpos": {
  9548. "__type__": "cc.Vec3",
  9549. "x": 0,
  9550. "y": -45.357000000000006,
  9551. "z": 0
  9552. },
  9553. "_lrot": {
  9554. "__type__": "cc.Quat",
  9555. "x": 0,
  9556. "y": 0,
  9557. "z": 0,
  9558. "w": 1
  9559. },
  9560. "_lscale": {
  9561. "__type__": "cc.Vec3",
  9562. "x": 1,
  9563. "y": 1,
  9564. "z": 1
  9565. },
  9566. "_mobility": 0,
  9567. "_layer": 33554432,
  9568. "_euler": {
  9569. "__type__": "cc.Vec3",
  9570. "x": 0,
  9571. "y": 0,
  9572. "z": 0
  9573. },
  9574. "_id": "00mHNqmIBGlrl49Vz5zZKV"
  9575. },
  9576. {
  9577. "__type__": "cc.UITransform",
  9578. "_name": "",
  9579. "_objFlags": 0,
  9580. "__editorExtras__": {},
  9581. "node": {
  9582. "__id__": 245
  9583. },
  9584. "_enabled": true,
  9585. "__prefab": null,
  9586. "_contentSize": {
  9587. "__type__": "cc.Size",
  9588. "width": 96,
  9589. "height": 37.8
  9590. },
  9591. "_anchorPoint": {
  9592. "__type__": "cc.Vec2",
  9593. "x": 0.5,
  9594. "y": 0.5
  9595. },
  9596. "_id": "a6TDRhAwJOFpKGBm1Jkjwo"
  9597. },
  9598. {
  9599. "__type__": "cc.Label",
  9600. "_name": "",
  9601. "_objFlags": 0,
  9602. "__editorExtras__": {},
  9603. "node": {
  9604. "__id__": 245
  9605. },
  9606. "_enabled": true,
  9607. "__prefab": null,
  9608. "_customMaterial": null,
  9609. "_srcBlendFactor": 2,
  9610. "_dstBlendFactor": 4,
  9611. "_color": {
  9612. "__type__": "cc.Color",
  9613. "r": 119,
  9614. "g": 255,
  9615. "b": 179,
  9616. "a": 255
  9617. },
  9618. "_string": "解锁卡槽",
  9619. "_horizontalAlign": 1,
  9620. "_verticalAlign": 1,
  9621. "_actualFontSize": 24,
  9622. "_fontSize": 24,
  9623. "_fontFamily": "Arial",
  9624. "_lineHeight": 30,
  9625. "_overflow": 0,
  9626. "_enableWrapText": true,
  9627. "_font": null,
  9628. "_isSystemFontUsed": true,
  9629. "_spacingX": 0,
  9630. "_isItalic": false,
  9631. "_isBold": false,
  9632. "_isUnderline": false,
  9633. "_underlineHeight": 2,
  9634. "_cacheMode": 0,
  9635. "_enableOutline": false,
  9636. "_outlineColor": {
  9637. "__type__": "cc.Color",
  9638. "r": 0,
  9639. "g": 0,
  9640. "b": 0,
  9641. "a": 255
  9642. },
  9643. "_outlineWidth": 2,
  9644. "_enableShadow": false,
  9645. "_shadowColor": {
  9646. "__type__": "cc.Color",
  9647. "r": 0,
  9648. "g": 0,
  9649. "b": 0,
  9650. "a": 255
  9651. },
  9652. "_shadowOffset": {
  9653. "__type__": "cc.Vec2",
  9654. "x": 2,
  9655. "y": 2
  9656. },
  9657. "_shadowBlur": 2,
  9658. "_id": "a5XO5jVTdEzLi8IvCSgGzw"
  9659. },
  9660. {
  9661. "__type__": "cc.Widget",
  9662. "_name": "",
  9663. "_objFlags": 0,
  9664. "__editorExtras__": {},
  9665. "node": {
  9666. "__id__": 245
  9667. },
  9668. "_enabled": true,
  9669. "__prefab": null,
  9670. "_alignFlags": 4,
  9671. "_target": null,
  9672. "_left": 0,
  9673. "_right": 0,
  9674. "_top": 34.8,
  9675. "_bottom": -4.257,
  9676. "_horizontalCenter": 0,
  9677. "_verticalCenter": 0,
  9678. "_isAbsLeft": true,
  9679. "_isAbsRight": true,
  9680. "_isAbsTop": true,
  9681. "_isAbsBottom": true,
  9682. "_isAbsHorizontalCenter": true,
  9683. "_isAbsVerticalCenter": true,
  9684. "_originalWidth": 0,
  9685. "_originalHeight": 0,
  9686. "_alignMode": 2,
  9687. "_lockFlags": 0,
  9688. "_id": "04Iy5squNErbLkG/vkbv5A"
  9689. },
  9690. {
  9691. "__type__": "cc.Node",
  9692. "_name": "Sprite",
  9693. "_objFlags": 0,
  9694. "__editorExtras__": {},
  9695. "_parent": {
  9696. "__id__": 240
  9697. },
  9698. "_children": [],
  9699. "_active": true,
  9700. "_components": [
  9701. {
  9702. "__id__": 250
  9703. },
  9704. {
  9705. "__id__": 251
  9706. }
  9707. ],
  9708. "_prefab": null,
  9709. "_lpos": {
  9710. "__type__": "cc.Vec3",
  9711. "x": 0,
  9712. "y": 0,
  9713. "z": 0
  9714. },
  9715. "_lrot": {
  9716. "__type__": "cc.Quat",
  9717. "x": 0,
  9718. "y": 0,
  9719. "z": 0,
  9720. "w": 1
  9721. },
  9722. "_lscale": {
  9723. "__type__": "cc.Vec3",
  9724. "x": 1,
  9725. "y": 1,
  9726. "z": 1
  9727. },
  9728. "_mobility": 0,
  9729. "_layer": 33554432,
  9730. "_euler": {
  9731. "__type__": "cc.Vec3",
  9732. "x": 0,
  9733. "y": 0,
  9734. "z": 0
  9735. },
  9736. "_id": "45QppLB21IfZa/zW0/Zn6+"
  9737. },
  9738. {
  9739. "__type__": "cc.UITransform",
  9740. "_name": "",
  9741. "_objFlags": 0,
  9742. "__editorExtras__": {},
  9743. "node": {
  9744. "__id__": 249
  9745. },
  9746. "_enabled": true,
  9747. "__prefab": null,
  9748. "_contentSize": {
  9749. "__type__": "cc.Size",
  9750. "width": 105,
  9751. "height": 120
  9752. },
  9753. "_anchorPoint": {
  9754. "__type__": "cc.Vec2",
  9755. "x": 0.5,
  9756. "y": 0.5
  9757. },
  9758. "_id": "d5MAezdyZI+4Wrnxj9jWB3"
  9759. },
  9760. {
  9761. "__type__": "cc.Sprite",
  9762. "_name": "",
  9763. "_objFlags": 0,
  9764. "__editorExtras__": {},
  9765. "node": {
  9766. "__id__": 249
  9767. },
  9768. "_enabled": true,
  9769. "__prefab": null,
  9770. "_customMaterial": null,
  9771. "_srcBlendFactor": 2,
  9772. "_dstBlendFactor": 4,
  9773. "_color": {
  9774. "__type__": "cc.Color",
  9775. "r": 255,
  9776. "g": 255,
  9777. "b": 255,
  9778. "a": 255
  9779. },
  9780. "_spriteFrame": null,
  9781. "_type": 0,
  9782. "_fillType": 0,
  9783. "_sizeMode": 0,
  9784. "_fillCenter": {
  9785. "__type__": "cc.Vec2",
  9786. "x": 0,
  9787. "y": 0
  9788. },
  9789. "_fillStart": 0,
  9790. "_fillRange": 0,
  9791. "_isTrimmedMode": true,
  9792. "_useGrayscale": false,
  9793. "_atlas": null,
  9794. "_id": "e1QmXyjNNORqKCtA7iQIX4"
  9795. },
  9796. {
  9797. "__type__": "cc.UITransform",
  9798. "_name": "",
  9799. "_objFlags": 0,
  9800. "__editorExtras__": {},
  9801. "node": {
  9802. "__id__": 240
  9803. },
  9804. "_enabled": true,
  9805. "__prefab": null,
  9806. "_contentSize": {
  9807. "__type__": "cc.Size",
  9808. "width": 105,
  9809. "height": 120
  9810. },
  9811. "_anchorPoint": {
  9812. "__type__": "cc.Vec2",
  9813. "x": 0.5,
  9814. "y": 0.5
  9815. },
  9816. "_id": "abf6iL7lVBl7zisRX6Sar5"
  9817. },
  9818. {
  9819. "__type__": "cc.Sprite",
  9820. "_name": "",
  9821. "_objFlags": 0,
  9822. "__editorExtras__": {},
  9823. "node": {
  9824. "__id__": 240
  9825. },
  9826. "_enabled": true,
  9827. "__prefab": null,
  9828. "_customMaterial": null,
  9829. "_srcBlendFactor": 2,
  9830. "_dstBlendFactor": 4,
  9831. "_color": {
  9832. "__type__": "cc.Color",
  9833. "r": 255,
  9834. "g": 255,
  9835. "b": 255,
  9836. "a": 255
  9837. },
  9838. "_spriteFrame": {
  9839. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  9840. "__expectedType__": "cc.SpriteFrame"
  9841. },
  9842. "_type": 0,
  9843. "_fillType": 0,
  9844. "_sizeMode": 0,
  9845. "_fillCenter": {
  9846. "__type__": "cc.Vec2",
  9847. "x": 0,
  9848. "y": 0
  9849. },
  9850. "_fillStart": 0,
  9851. "_fillRange": 0,
  9852. "_isTrimmedMode": true,
  9853. "_useGrayscale": false,
  9854. "_atlas": null,
  9855. "_id": "96gpqx3hBFP6WyBGErOL7J"
  9856. },
  9857. {
  9858. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  9859. "_name": "",
  9860. "_objFlags": 0,
  9861. "__editorExtras__": {},
  9862. "node": {
  9863. "__id__": 240
  9864. },
  9865. "_enabled": true,
  9866. "__prefab": null,
  9867. "_id": "09L3nLzlBGKZEJPYlod9n7"
  9868. },
  9869. {
  9870. "__type__": "cc.Node",
  9871. "_name": "Card-005",
  9872. "_objFlags": 0,
  9873. "__editorExtras__": {},
  9874. "_parent": {
  9875. "__id__": 179
  9876. },
  9877. "_children": [
  9878. {
  9879. "__id__": 256
  9880. },
  9881. {
  9882. "__id__": 260
  9883. },
  9884. {
  9885. "__id__": 264
  9886. }
  9887. ],
  9888. "_active": true,
  9889. "_components": [
  9890. {
  9891. "__id__": 267
  9892. },
  9893. {
  9894. "__id__": 268
  9895. },
  9896. {
  9897. "__id__": 269
  9898. }
  9899. ],
  9900. "_prefab": null,
  9901. "_lpos": {
  9902. "__type__": "cc.Vec3",
  9903. "x": 287.5,
  9904. "y": 0,
  9905. "z": 0
  9906. },
  9907. "_lrot": {
  9908. "__type__": "cc.Quat",
  9909. "x": 0,
  9910. "y": 0,
  9911. "z": 0,
  9912. "w": 1
  9913. },
  9914. "_lscale": {
  9915. "__type__": "cc.Vec3",
  9916. "x": 1,
  9917. "y": 1,
  9918. "z": 1
  9919. },
  9920. "_mobility": 0,
  9921. "_layer": 33554432,
  9922. "_euler": {
  9923. "__type__": "cc.Vec3",
  9924. "x": 0,
  9925. "y": 0,
  9926. "z": 0
  9927. },
  9928. "_id": "b0VF6QqphFWo1N/u1+PXtI"
  9929. },
  9930. {
  9931. "__type__": "cc.Node",
  9932. "_name": "Lock",
  9933. "_objFlags": 0,
  9934. "__editorExtras__": {},
  9935. "_parent": {
  9936. "__id__": 255
  9937. },
  9938. "_children": [],
  9939. "_active": true,
  9940. "_components": [
  9941. {
  9942. "__id__": 257
  9943. },
  9944. {
  9945. "__id__": 258
  9946. },
  9947. {
  9948. "__id__": 259
  9949. }
  9950. ],
  9951. "_prefab": null,
  9952. "_lpos": {
  9953. "__type__": "cc.Vec3",
  9954. "x": 0,
  9955. "y": 0,
  9956. "z": 0
  9957. },
  9958. "_lrot": {
  9959. "__type__": "cc.Quat",
  9960. "x": 0,
  9961. "y": 0,
  9962. "z": 0,
  9963. "w": 1
  9964. },
  9965. "_lscale": {
  9966. "__type__": "cc.Vec3",
  9967. "x": 1,
  9968. "y": 1,
  9969. "z": 1
  9970. },
  9971. "_mobility": 0,
  9972. "_layer": 33554432,
  9973. "_euler": {
  9974. "__type__": "cc.Vec3",
  9975. "x": 0,
  9976. "y": 0,
  9977. "z": 0
  9978. },
  9979. "_id": "9duQZA8lVBbKRVl/JrsQfn"
  9980. },
  9981. {
  9982. "__type__": "cc.UITransform",
  9983. "_name": "",
  9984. "_objFlags": 0,
  9985. "__editorExtras__": {},
  9986. "node": {
  9987. "__id__": 256
  9988. },
  9989. "_enabled": true,
  9990. "__prefab": null,
  9991. "_contentSize": {
  9992. "__type__": "cc.Size",
  9993. "width": 68.8,
  9994. "height": 69.6
  9995. },
  9996. "_anchorPoint": {
  9997. "__type__": "cc.Vec2",
  9998. "x": 0.5,
  9999. "y": 0.5
  10000. },
  10001. "_id": "17/Y9VX9BNz7RmoxWzfB8a"
  10002. },
  10003. {
  10004. "__type__": "cc.Sprite",
  10005. "_name": "",
  10006. "_objFlags": 0,
  10007. "__editorExtras__": {},
  10008. "node": {
  10009. "__id__": 256
  10010. },
  10011. "_enabled": true,
  10012. "__prefab": null,
  10013. "_customMaterial": null,
  10014. "_srcBlendFactor": 2,
  10015. "_dstBlendFactor": 4,
  10016. "_color": {
  10017. "__type__": "cc.Color",
  10018. "r": 255,
  10019. "g": 255,
  10020. "b": 255,
  10021. "a": 255
  10022. },
  10023. "_spriteFrame": {
  10024. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@b7709",
  10025. "__expectedType__": "cc.SpriteFrame"
  10026. },
  10027. "_type": 0,
  10028. "_fillType": 0,
  10029. "_sizeMode": 0,
  10030. "_fillCenter": {
  10031. "__type__": "cc.Vec2",
  10032. "x": 0,
  10033. "y": 0
  10034. },
  10035. "_fillStart": 0,
  10036. "_fillRange": 0,
  10037. "_isTrimmedMode": true,
  10038. "_useGrayscale": false,
  10039. "_atlas": null,
  10040. "_id": "6ay/AS5VdJ4IC/m6wijcnc"
  10041. },
  10042. {
  10043. "__type__": "cc.Widget",
  10044. "_name": "",
  10045. "_objFlags": 0,
  10046. "__editorExtras__": {},
  10047. "node": {
  10048. "__id__": 256
  10049. },
  10050. "_enabled": true,
  10051. "__prefab": null,
  10052. "_alignFlags": 45,
  10053. "_target": null,
  10054. "_left": 18.1,
  10055. "_right": 18.1,
  10056. "_top": 25.200000000000003,
  10057. "_bottom": 25.200000000000003,
  10058. "_horizontalCenter": 0,
  10059. "_verticalCenter": 0,
  10060. "_isAbsLeft": true,
  10061. "_isAbsRight": true,
  10062. "_isAbsTop": true,
  10063. "_isAbsBottom": true,
  10064. "_isAbsHorizontalCenter": true,
  10065. "_isAbsVerticalCenter": true,
  10066. "_originalWidth": 80,
  10067. "_originalHeight": 72,
  10068. "_alignMode": 2,
  10069. "_lockFlags": 0,
  10070. "_id": "afqYJgCklNi4LSYYgM9DN8"
  10071. },
  10072. {
  10073. "__type__": "cc.Node",
  10074. "_name": "Label",
  10075. "_objFlags": 0,
  10076. "__editorExtras__": {},
  10077. "_parent": {
  10078. "__id__": 255
  10079. },
  10080. "_children": [],
  10081. "_active": false,
  10082. "_components": [
  10083. {
  10084. "__id__": 261
  10085. },
  10086. {
  10087. "__id__": 262
  10088. },
  10089. {
  10090. "__id__": 263
  10091. }
  10092. ],
  10093. "_prefab": null,
  10094. "_lpos": {
  10095. "__type__": "cc.Vec3",
  10096. "x": 0,
  10097. "y": -45.357000000000006,
  10098. "z": 0
  10099. },
  10100. "_lrot": {
  10101. "__type__": "cc.Quat",
  10102. "x": 0,
  10103. "y": 0,
  10104. "z": 0,
  10105. "w": 1
  10106. },
  10107. "_lscale": {
  10108. "__type__": "cc.Vec3",
  10109. "x": 1,
  10110. "y": 1,
  10111. "z": 1
  10112. },
  10113. "_mobility": 0,
  10114. "_layer": 33554432,
  10115. "_euler": {
  10116. "__type__": "cc.Vec3",
  10117. "x": 0,
  10118. "y": 0,
  10119. "z": 0
  10120. },
  10121. "_id": "7eFkdItltBo7rQzFtIJ5D1"
  10122. },
  10123. {
  10124. "__type__": "cc.UITransform",
  10125. "_name": "",
  10126. "_objFlags": 0,
  10127. "__editorExtras__": {},
  10128. "node": {
  10129. "__id__": 260
  10130. },
  10131. "_enabled": true,
  10132. "__prefab": null,
  10133. "_contentSize": {
  10134. "__type__": "cc.Size",
  10135. "width": 96,
  10136. "height": 37.8
  10137. },
  10138. "_anchorPoint": {
  10139. "__type__": "cc.Vec2",
  10140. "x": 0.5,
  10141. "y": 0.5
  10142. },
  10143. "_id": "21BGL3dH9ORaQms5+LpA9c"
  10144. },
  10145. {
  10146. "__type__": "cc.Label",
  10147. "_name": "",
  10148. "_objFlags": 0,
  10149. "__editorExtras__": {},
  10150. "node": {
  10151. "__id__": 260
  10152. },
  10153. "_enabled": true,
  10154. "__prefab": null,
  10155. "_customMaterial": null,
  10156. "_srcBlendFactor": 2,
  10157. "_dstBlendFactor": 4,
  10158. "_color": {
  10159. "__type__": "cc.Color",
  10160. "r": 119,
  10161. "g": 255,
  10162. "b": 179,
  10163. "a": 255
  10164. },
  10165. "_string": "解锁卡槽",
  10166. "_horizontalAlign": 1,
  10167. "_verticalAlign": 1,
  10168. "_actualFontSize": 24,
  10169. "_fontSize": 24,
  10170. "_fontFamily": "Arial",
  10171. "_lineHeight": 30,
  10172. "_overflow": 0,
  10173. "_enableWrapText": true,
  10174. "_font": null,
  10175. "_isSystemFontUsed": true,
  10176. "_spacingX": 0,
  10177. "_isItalic": false,
  10178. "_isBold": false,
  10179. "_isUnderline": false,
  10180. "_underlineHeight": 2,
  10181. "_cacheMode": 0,
  10182. "_enableOutline": false,
  10183. "_outlineColor": {
  10184. "__type__": "cc.Color",
  10185. "r": 0,
  10186. "g": 0,
  10187. "b": 0,
  10188. "a": 255
  10189. },
  10190. "_outlineWidth": 2,
  10191. "_enableShadow": false,
  10192. "_shadowColor": {
  10193. "__type__": "cc.Color",
  10194. "r": 0,
  10195. "g": 0,
  10196. "b": 0,
  10197. "a": 255
  10198. },
  10199. "_shadowOffset": {
  10200. "__type__": "cc.Vec2",
  10201. "x": 2,
  10202. "y": 2
  10203. },
  10204. "_shadowBlur": 2,
  10205. "_id": "27ZtIbgGJB05Qrhi64gEKw"
  10206. },
  10207. {
  10208. "__type__": "cc.Widget",
  10209. "_name": "",
  10210. "_objFlags": 0,
  10211. "__editorExtras__": {},
  10212. "node": {
  10213. "__id__": 260
  10214. },
  10215. "_enabled": true,
  10216. "__prefab": null,
  10217. "_alignFlags": 4,
  10218. "_target": null,
  10219. "_left": 0,
  10220. "_right": 0,
  10221. "_top": 34.8,
  10222. "_bottom": -4.257,
  10223. "_horizontalCenter": 0,
  10224. "_verticalCenter": 0,
  10225. "_isAbsLeft": true,
  10226. "_isAbsRight": true,
  10227. "_isAbsTop": true,
  10228. "_isAbsBottom": true,
  10229. "_isAbsHorizontalCenter": true,
  10230. "_isAbsVerticalCenter": true,
  10231. "_originalWidth": 0,
  10232. "_originalHeight": 0,
  10233. "_alignMode": 2,
  10234. "_lockFlags": 0,
  10235. "_id": "01F3D/3+1L+7Qbn84CCc/T"
  10236. },
  10237. {
  10238. "__type__": "cc.Node",
  10239. "_name": "Sprite",
  10240. "_objFlags": 0,
  10241. "__editorExtras__": {},
  10242. "_parent": {
  10243. "__id__": 255
  10244. },
  10245. "_children": [],
  10246. "_active": true,
  10247. "_components": [
  10248. {
  10249. "__id__": 265
  10250. },
  10251. {
  10252. "__id__": 266
  10253. }
  10254. ],
  10255. "_prefab": null,
  10256. "_lpos": {
  10257. "__type__": "cc.Vec3",
  10258. "x": 0,
  10259. "y": 0,
  10260. "z": 0
  10261. },
  10262. "_lrot": {
  10263. "__type__": "cc.Quat",
  10264. "x": 0,
  10265. "y": 0,
  10266. "z": 0,
  10267. "w": 1
  10268. },
  10269. "_lscale": {
  10270. "__type__": "cc.Vec3",
  10271. "x": 1,
  10272. "y": 1,
  10273. "z": 1
  10274. },
  10275. "_mobility": 0,
  10276. "_layer": 33554432,
  10277. "_euler": {
  10278. "__type__": "cc.Vec3",
  10279. "x": 0,
  10280. "y": 0,
  10281. "z": 0
  10282. },
  10283. "_id": "21oMJd2JVO84DFY1LkjVRx"
  10284. },
  10285. {
  10286. "__type__": "cc.UITransform",
  10287. "_name": "",
  10288. "_objFlags": 0,
  10289. "__editorExtras__": {},
  10290. "node": {
  10291. "__id__": 264
  10292. },
  10293. "_enabled": true,
  10294. "__prefab": null,
  10295. "_contentSize": {
  10296. "__type__": "cc.Size",
  10297. "width": 105,
  10298. "height": 120
  10299. },
  10300. "_anchorPoint": {
  10301. "__type__": "cc.Vec2",
  10302. "x": 0.5,
  10303. "y": 0.5
  10304. },
  10305. "_id": "9c09KmPBVLNJUYUiqS7+SA"
  10306. },
  10307. {
  10308. "__type__": "cc.Sprite",
  10309. "_name": "",
  10310. "_objFlags": 0,
  10311. "__editorExtras__": {},
  10312. "node": {
  10313. "__id__": 264
  10314. },
  10315. "_enabled": true,
  10316. "__prefab": null,
  10317. "_customMaterial": null,
  10318. "_srcBlendFactor": 2,
  10319. "_dstBlendFactor": 4,
  10320. "_color": {
  10321. "__type__": "cc.Color",
  10322. "r": 255,
  10323. "g": 255,
  10324. "b": 255,
  10325. "a": 255
  10326. },
  10327. "_spriteFrame": null,
  10328. "_type": 0,
  10329. "_fillType": 0,
  10330. "_sizeMode": 0,
  10331. "_fillCenter": {
  10332. "__type__": "cc.Vec2",
  10333. "x": 0,
  10334. "y": 0
  10335. },
  10336. "_fillStart": 0,
  10337. "_fillRange": 0,
  10338. "_isTrimmedMode": true,
  10339. "_useGrayscale": false,
  10340. "_atlas": null,
  10341. "_id": "d4yNkVqr9CYJIhJHSVk1UI"
  10342. },
  10343. {
  10344. "__type__": "cc.UITransform",
  10345. "_name": "",
  10346. "_objFlags": 0,
  10347. "__editorExtras__": {},
  10348. "node": {
  10349. "__id__": 255
  10350. },
  10351. "_enabled": true,
  10352. "__prefab": null,
  10353. "_contentSize": {
  10354. "__type__": "cc.Size",
  10355. "width": 105,
  10356. "height": 120
  10357. },
  10358. "_anchorPoint": {
  10359. "__type__": "cc.Vec2",
  10360. "x": 0.5,
  10361. "y": 0.5
  10362. },
  10363. "_id": "abBbMCUUVOUawoNL5V3J4c"
  10364. },
  10365. {
  10366. "__type__": "cc.Sprite",
  10367. "_name": "",
  10368. "_objFlags": 0,
  10369. "__editorExtras__": {},
  10370. "node": {
  10371. "__id__": 255
  10372. },
  10373. "_enabled": true,
  10374. "__prefab": null,
  10375. "_customMaterial": null,
  10376. "_srcBlendFactor": 2,
  10377. "_dstBlendFactor": 4,
  10378. "_color": {
  10379. "__type__": "cc.Color",
  10380. "r": 255,
  10381. "g": 255,
  10382. "b": 255,
  10383. "a": 255
  10384. },
  10385. "_spriteFrame": {
  10386. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  10387. "__expectedType__": "cc.SpriteFrame"
  10388. },
  10389. "_type": 0,
  10390. "_fillType": 0,
  10391. "_sizeMode": 0,
  10392. "_fillCenter": {
  10393. "__type__": "cc.Vec2",
  10394. "x": 0,
  10395. "y": 0
  10396. },
  10397. "_fillStart": 0,
  10398. "_fillRange": 0,
  10399. "_isTrimmedMode": true,
  10400. "_useGrayscale": false,
  10401. "_atlas": null,
  10402. "_id": "0dwEaR8/ZJNZ7KhGFDH/Xn"
  10403. },
  10404. {
  10405. "__type__": "b20fcvOq2tLbLkioCsV/mHt",
  10406. "_name": "",
  10407. "_objFlags": 0,
  10408. "__editorExtras__": {},
  10409. "node": {
  10410. "__id__": 255
  10411. },
  10412. "_enabled": true,
  10413. "__prefab": null,
  10414. "_id": "ecaDz8cYFJM6KgYsKtt+WW"
  10415. },
  10416. {
  10417. "__type__": "cc.UITransform",
  10418. "_name": "",
  10419. "_objFlags": 0,
  10420. "__editorExtras__": {},
  10421. "node": {
  10422. "__id__": 179
  10423. },
  10424. "_enabled": true,
  10425. "__prefab": null,
  10426. "_contentSize": {
  10427. "__type__": "cc.Size",
  10428. "width": 700,
  10429. "height": 150
  10430. },
  10431. "_anchorPoint": {
  10432. "__type__": "cc.Vec2",
  10433. "x": 0.5,
  10434. "y": 0.5
  10435. },
  10436. "_id": "ddkqt/0q9AVryxuVdwlTsZ"
  10437. },
  10438. {
  10439. "__type__": "cc.Sprite",
  10440. "_name": "",
  10441. "_objFlags": 0,
  10442. "__editorExtras__": {},
  10443. "node": {
  10444. "__id__": 179
  10445. },
  10446. "_enabled": true,
  10447. "__prefab": null,
  10448. "_customMaterial": null,
  10449. "_srcBlendFactor": 2,
  10450. "_dstBlendFactor": 4,
  10451. "_color": {
  10452. "__type__": "cc.Color",
  10453. "r": 255,
  10454. "g": 255,
  10455. "b": 255,
  10456. "a": 255
  10457. },
  10458. "_spriteFrame": {
  10459. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@19380",
  10460. "__expectedType__": "cc.SpriteFrame"
  10461. },
  10462. "_type": 0,
  10463. "_fillType": 0,
  10464. "_sizeMode": 0,
  10465. "_fillCenter": {
  10466. "__type__": "cc.Vec2",
  10467. "x": 0,
  10468. "y": 0
  10469. },
  10470. "_fillStart": 0,
  10471. "_fillRange": 0,
  10472. "_isTrimmedMode": true,
  10473. "_useGrayscale": false,
  10474. "_atlas": null,
  10475. "_id": "47FHRhWBFGnqQl7CoDxNcR"
  10476. },
  10477. {
  10478. "__type__": "cc.Widget",
  10479. "_name": "",
  10480. "_objFlags": 0,
  10481. "__editorExtras__": {},
  10482. "node": {
  10483. "__id__": 179
  10484. },
  10485. "_enabled": true,
  10486. "__prefab": null,
  10487. "_alignFlags": 37,
  10488. "_target": null,
  10489. "_left": 290,
  10490. "_right": 165,
  10491. "_top": 15,
  10492. "_bottom": 15,
  10493. "_horizontalCenter": 0,
  10494. "_verticalCenter": 0,
  10495. "_isAbsLeft": true,
  10496. "_isAbsRight": true,
  10497. "_isAbsTop": true,
  10498. "_isAbsBottom": true,
  10499. "_isAbsHorizontalCenter": true,
  10500. "_isAbsVerticalCenter": true,
  10501. "_originalWidth": 0,
  10502. "_originalHeight": 150,
  10503. "_alignMode": 2,
  10504. "_lockFlags": 0,
  10505. "_id": "7fE2499LhE2oURZqe3ITG0"
  10506. },
  10507. {
  10508. "__type__": "cc.Layout",
  10509. "_name": "",
  10510. "_objFlags": 0,
  10511. "__editorExtras__": {},
  10512. "node": {
  10513. "__id__": 179
  10514. },
  10515. "_enabled": true,
  10516. "__prefab": null,
  10517. "_resizeMode": 0,
  10518. "_layoutType": 1,
  10519. "_cellSize": {
  10520. "__type__": "cc.Size",
  10521. "width": 40,
  10522. "height": 40
  10523. },
  10524. "_startAxis": 0,
  10525. "_paddingLeft": 10,
  10526. "_paddingRight": 10,
  10527. "_paddingTop": 0,
  10528. "_paddingBottom": 0,
  10529. "_spacingX": 10,
  10530. "_spacingY": 0,
  10531. "_verticalDirection": 1,
  10532. "_horizontalDirection": 0,
  10533. "_constraint": 2,
  10534. "_constraintNum": 6,
  10535. "_affectedByScale": false,
  10536. "_isAlign": false,
  10537. "_id": "d0+3H07XlHoIA4TKNaSwHM"
  10538. },
  10539. {
  10540. "__type__": "0630eRYV9FMoIYWAIIeKBU+",
  10541. "_name": "",
  10542. "_objFlags": 0,
  10543. "__editorExtras__": {},
  10544. "node": {
  10545. "__id__": 179
  10546. },
  10547. "_enabled": true,
  10548. "__prefab": null,
  10549. "_id": "31/ppe5HVHp6b1OGppa9b8"
  10550. },
  10551. {
  10552. "__type__": "cc.Node",
  10553. "_name": "BtnNext",
  10554. "_objFlags": 0,
  10555. "__editorExtras__": {},
  10556. "_parent": {
  10557. "__id__": 150
  10558. },
  10559. "_children": [],
  10560. "_active": true,
  10561. "_components": [
  10562. {
  10563. "__id__": 276
  10564. },
  10565. {
  10566. "__id__": 277
  10567. },
  10568. {
  10569. "__id__": 278
  10570. },
  10571. {
  10572. "__id__": 279
  10573. }
  10574. ],
  10575. "_prefab": null,
  10576. "_lpos": {
  10577. "__type__": "cc.Vec3",
  10578. "x": 552,
  10579. "y": 0,
  10580. "z": 0
  10581. },
  10582. "_lrot": {
  10583. "__type__": "cc.Quat",
  10584. "x": 0,
  10585. "y": 0,
  10586. "z": 0,
  10587. "w": 1
  10588. },
  10589. "_lscale": {
  10590. "__type__": "cc.Vec3",
  10591. "x": 1,
  10592. "y": 1,
  10593. "z": 1
  10594. },
  10595. "_mobility": 0,
  10596. "_layer": 33554432,
  10597. "_euler": {
  10598. "__type__": "cc.Vec3",
  10599. "x": 0,
  10600. "y": 0,
  10601. "z": 0
  10602. },
  10603. "_id": "c5P9Y2KEVNCan3c/jbmP14"
  10604. },
  10605. {
  10606. "__type__": "cc.UITransform",
  10607. "_name": "",
  10608. "_objFlags": 0,
  10609. "__editorExtras__": {},
  10610. "node": {
  10611. "__id__": 275
  10612. },
  10613. "_enabled": true,
  10614. "__prefab": null,
  10615. "_contentSize": {
  10616. "__type__": "cc.Size",
  10617. "width": 120,
  10618. "height": 40.5
  10619. },
  10620. "_anchorPoint": {
  10621. "__type__": "cc.Vec2",
  10622. "x": 0.5,
  10623. "y": 0.5
  10624. },
  10625. "_id": "daQiZ0M+lDdYHSlNzMFltL"
  10626. },
  10627. {
  10628. "__type__": "cc.Sprite",
  10629. "_name": "",
  10630. "_objFlags": 0,
  10631. "__editorExtras__": {},
  10632. "node": {
  10633. "__id__": 275
  10634. },
  10635. "_enabled": true,
  10636. "__prefab": null,
  10637. "_customMaterial": null,
  10638. "_srcBlendFactor": 2,
  10639. "_dstBlendFactor": 4,
  10640. "_color": {
  10641. "__type__": "cc.Color",
  10642. "r": 255,
  10643. "g": 255,
  10644. "b": 255,
  10645. "a": 255
  10646. },
  10647. "_spriteFrame": {
  10648. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@796e1",
  10649. "__expectedType__": "cc.SpriteFrame"
  10650. },
  10651. "_type": 1,
  10652. "_fillType": 0,
  10653. "_sizeMode": 0,
  10654. "_fillCenter": {
  10655. "__type__": "cc.Vec2",
  10656. "x": 0,
  10657. "y": 0
  10658. },
  10659. "_fillStart": 0,
  10660. "_fillRange": 0,
  10661. "_isTrimmedMode": true,
  10662. "_useGrayscale": false,
  10663. "_atlas": null,
  10664. "_id": "4eAbfsHQdNuKEVYZ4JPDtl"
  10665. },
  10666. {
  10667. "__type__": "cc.Button",
  10668. "_name": "",
  10669. "_objFlags": 0,
  10670. "__editorExtras__": {},
  10671. "node": {
  10672. "__id__": 275
  10673. },
  10674. "_enabled": true,
  10675. "__prefab": null,
  10676. "clickEvents": [],
  10677. "_interactable": true,
  10678. "_transition": 3,
  10679. "_normalColor": {
  10680. "__type__": "cc.Color",
  10681. "r": 214,
  10682. "g": 214,
  10683. "b": 214,
  10684. "a": 255
  10685. },
  10686. "_hoverColor": {
  10687. "__type__": "cc.Color",
  10688. "r": 211,
  10689. "g": 211,
  10690. "b": 211,
  10691. "a": 255
  10692. },
  10693. "_pressedColor": {
  10694. "__type__": "cc.Color",
  10695. "r": 255,
  10696. "g": 255,
  10697. "b": 255,
  10698. "a": 255
  10699. },
  10700. "_disabledColor": {
  10701. "__type__": "cc.Color",
  10702. "r": 124,
  10703. "g": 124,
  10704. "b": 124,
  10705. "a": 255
  10706. },
  10707. "_normalSprite": null,
  10708. "_hoverSprite": null,
  10709. "_pressedSprite": null,
  10710. "_disabledSprite": null,
  10711. "_duration": 0.1,
  10712. "_zoomScale": 1.2,
  10713. "_target": {
  10714. "__id__": 275
  10715. },
  10716. "_id": "c99OFaHFpCH7WZUZDF/L+8"
  10717. },
  10718. {
  10719. "__type__": "cc.Widget",
  10720. "_name": "",
  10721. "_objFlags": 0,
  10722. "__editorExtras__": {},
  10723. "node": {
  10724. "__id__": 275
  10725. },
  10726. "_enabled": true,
  10727. "__prefab": null,
  10728. "_alignFlags": 32,
  10729. "_target": null,
  10730. "_left": 0,
  10731. "_right": 28,
  10732. "_top": 0,
  10733. "_bottom": 0,
  10734. "_horizontalCenter": 0,
  10735. "_verticalCenter": 0,
  10736. "_isAbsLeft": true,
  10737. "_isAbsRight": true,
  10738. "_isAbsTop": true,
  10739. "_isAbsBottom": true,
  10740. "_isAbsHorizontalCenter": true,
  10741. "_isAbsVerticalCenter": true,
  10742. "_originalWidth": 0,
  10743. "_originalHeight": 0,
  10744. "_alignMode": 2,
  10745. "_lockFlags": 0,
  10746. "_id": "f93d7P51ZKr40rQdxks0UK"
  10747. },
  10748. {
  10749. "__type__": "cc.Node",
  10750. "_name": "TouchMgr",
  10751. "_objFlags": 0,
  10752. "__editorExtras__": {},
  10753. "_parent": {
  10754. "__id__": 150
  10755. },
  10756. "_children": [],
  10757. "_active": true,
  10758. "_components": [
  10759. {
  10760. "__id__": 281
  10761. },
  10762. {
  10763. "__id__": 282
  10764. },
  10765. {
  10766. "__id__": 283
  10767. }
  10768. ],
  10769. "_prefab": null,
  10770. "_lpos": {
  10771. "__type__": "cc.Vec3",
  10772. "x": 125,
  10773. "y": 0,
  10774. "z": 0
  10775. },
  10776. "_lrot": {
  10777. "__type__": "cc.Quat",
  10778. "x": 0,
  10779. "y": 0,
  10780. "z": 0,
  10781. "w": 1
  10782. },
  10783. "_lscale": {
  10784. "__type__": "cc.Vec3",
  10785. "x": 1,
  10786. "y": 1,
  10787. "z": 1
  10788. },
  10789. "_mobility": 0,
  10790. "_layer": 33554432,
  10791. "_euler": {
  10792. "__type__": "cc.Vec3",
  10793. "x": 0,
  10794. "y": 0,
  10795. "z": 0
  10796. },
  10797. "_id": "06tJTECNBKtbg+j/X7fvzQ"
  10798. },
  10799. {
  10800. "__type__": "cc.UITransform",
  10801. "_name": "",
  10802. "_objFlags": 0,
  10803. "__editorExtras__": {},
  10804. "node": {
  10805. "__id__": 280
  10806. },
  10807. "_enabled": true,
  10808. "__prefab": null,
  10809. "_contentSize": {
  10810. "__type__": "cc.Size",
  10811. "width": 700,
  10812. "height": 180
  10813. },
  10814. "_anchorPoint": {
  10815. "__type__": "cc.Vec2",
  10816. "x": 0.5,
  10817. "y": 0.5
  10818. },
  10819. "_id": "daqcOwNYVP27U1wf+jSdg6"
  10820. },
  10821. {
  10822. "__type__": "cc.Widget",
  10823. "_name": "",
  10824. "_objFlags": 0,
  10825. "__editorExtras__": {},
  10826. "node": {
  10827. "__id__": 280
  10828. },
  10829. "_enabled": true,
  10830. "__prefab": null,
  10831. "_alignFlags": 13,
  10832. "_target": null,
  10833. "_left": 415,
  10834. "_right": 1180,
  10835. "_top": 0,
  10836. "_bottom": 0,
  10837. "_horizontalCenter": 0,
  10838. "_verticalCenter": 0,
  10839. "_isAbsLeft": true,
  10840. "_isAbsRight": true,
  10841. "_isAbsTop": true,
  10842. "_isAbsBottom": true,
  10843. "_isAbsHorizontalCenter": true,
  10844. "_isAbsVerticalCenter": true,
  10845. "_originalWidth": 100,
  10846. "_originalHeight": 177.017,
  10847. "_alignMode": 2,
  10848. "_lockFlags": 0,
  10849. "_id": "d1BAEm6GJMpKHI8Ho5Mrse"
  10850. },
  10851. {
  10852. "__type__": "d593cnOtxlN2onPzNIwsDkH",
  10853. "_name": "",
  10854. "_objFlags": 0,
  10855. "__editorExtras__": {},
  10856. "node": {
  10857. "__id__": 280
  10858. },
  10859. "_enabled": true,
  10860. "__prefab": null,
  10861. "_id": "0all4d7eNBRJ2BuLsLDoSk"
  10862. },
  10863. {
  10864. "__type__": "cc.UITransform",
  10865. "_name": "",
  10866. "_objFlags": 0,
  10867. "__editorExtras__": {},
  10868. "node": {
  10869. "__id__": 150
  10870. },
  10871. "_enabled": true,
  10872. "__prefab": null,
  10873. "_contentSize": {
  10874. "__type__": "cc.Size",
  10875. "width": 1280,
  10876. "height": 180
  10877. },
  10878. "_anchorPoint": {
  10879. "__type__": "cc.Vec2",
  10880. "x": 0.5,
  10881. "y": 0.5
  10882. },
  10883. "_id": "e18OD+gaVG4ZNqCtnvJh1A"
  10884. },
  10885. {
  10886. "__type__": "cc.Sprite",
  10887. "_name": "",
  10888. "_objFlags": 0,
  10889. "__editorExtras__": {},
  10890. "node": {
  10891. "__id__": 150
  10892. },
  10893. "_enabled": true,
  10894. "__prefab": null,
  10895. "_customMaterial": null,
  10896. "_srcBlendFactor": 2,
  10897. "_dstBlendFactor": 4,
  10898. "_color": {
  10899. "__type__": "cc.Color",
  10900. "r": 117,
  10901. "g": 113,
  10902. "b": 113,
  10903. "a": 255
  10904. },
  10905. "_spriteFrame": {
  10906. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@cd29a",
  10907. "__expectedType__": "cc.SpriteFrame"
  10908. },
  10909. "_type": 0,
  10910. "_fillType": 0,
  10911. "_sizeMode": 0,
  10912. "_fillCenter": {
  10913. "__type__": "cc.Vec2",
  10914. "x": 0,
  10915. "y": 0
  10916. },
  10917. "_fillStart": 0,
  10918. "_fillRange": 0,
  10919. "_isTrimmedMode": true,
  10920. "_useGrayscale": false,
  10921. "_atlas": null,
  10922. "_id": "e1X6TvE79AzIE6pIe6/ts7"
  10923. },
  10924. {
  10925. "__type__": "cc.Widget",
  10926. "_name": "",
  10927. "_objFlags": 0,
  10928. "__editorExtras__": {},
  10929. "node": {
  10930. "__id__": 150
  10931. },
  10932. "_enabled": true,
  10933. "__prefab": null,
  10934. "_alignFlags": 44,
  10935. "_target": null,
  10936. "_left": 0,
  10937. "_right": 0,
  10938. "_top": 0,
  10939. "_bottom": 0,
  10940. "_horizontalCenter": 0,
  10941. "_verticalCenter": 0,
  10942. "_isAbsLeft": true,
  10943. "_isAbsRight": true,
  10944. "_isAbsTop": true,
  10945. "_isAbsBottom": true,
  10946. "_isAbsHorizontalCenter": true,
  10947. "_isAbsVerticalCenter": true,
  10948. "_originalWidth": 1280,
  10949. "_originalHeight": 0,
  10950. "_alignMode": 2,
  10951. "_lockFlags": 0,
  10952. "_id": "69NATXW4BNL7nH+tSj1J1b"
  10953. },
  10954. {
  10955. "__type__": "c86457na9BNjrXQQUzGxgj1",
  10956. "_name": "",
  10957. "_objFlags": 0,
  10958. "__editorExtras__": {},
  10959. "node": {
  10960. "__id__": 150
  10961. },
  10962. "_enabled": true,
  10963. "__prefab": null,
  10964. "_id": "a3BIOfJ61Pn4Y1bRR3UKSZ"
  10965. },
  10966. {
  10967. "__type__": "cc.UITransform",
  10968. "_name": "",
  10969. "_objFlags": 0,
  10970. "__editorExtras__": {},
  10971. "node": {
  10972. "__id__": 97
  10973. },
  10974. "_enabled": true,
  10975. "__prefab": null,
  10976. "_contentSize": {
  10977. "__type__": "cc.Size",
  10978. "width": 1280,
  10979. "height": 720
  10980. },
  10981. "_anchorPoint": {
  10982. "__type__": "cc.Vec2",
  10983. "x": 0.5,
  10984. "y": 0.5
  10985. },
  10986. "_id": "4e6WhYSHNJVK8IQ3P77UUn"
  10987. },
  10988. {
  10989. "__type__": "cc.Widget",
  10990. "_name": "",
  10991. "_objFlags": 0,
  10992. "__editorExtras__": {},
  10993. "node": {
  10994. "__id__": 97
  10995. },
  10996. "_enabled": true,
  10997. "__prefab": null,
  10998. "_alignFlags": 45,
  10999. "_target": {
  11000. "__id__": 5
  11001. },
  11002. "_left": 0,
  11003. "_right": 0,
  11004. "_top": 0,
  11005. "_bottom": 0,
  11006. "_horizontalCenter": 0,
  11007. "_verticalCenter": 0,
  11008. "_isAbsLeft": true,
  11009. "_isAbsRight": true,
  11010. "_isAbsTop": true,
  11011. "_isAbsBottom": true,
  11012. "_isAbsHorizontalCenter": true,
  11013. "_isAbsVerticalCenter": true,
  11014. "_originalWidth": 100,
  11015. "_originalHeight": 100,
  11016. "_alignMode": 2,
  11017. "_lockFlags": 0,
  11018. "_id": "4cKqP5zRZMQIH1jaBeGYgE"
  11019. },
  11020. {
  11021. "__type__": "396408yA2VB1JTd4KlZ/lws",
  11022. "_name": "",
  11023. "_objFlags": 0,
  11024. "__editorExtras__": {},
  11025. "node": {
  11026. "__id__": 97
  11027. },
  11028. "_enabled": true,
  11029. "__prefab": null,
  11030. "_id": "cauJW4fFxMYbvm/ojqb8qy"
  11031. },
  11032. {
  11033. "__type__": "cc.Sprite",
  11034. "_name": "",
  11035. "_objFlags": 0,
  11036. "__editorExtras__": {},
  11037. "node": {
  11038. "__id__": 97
  11039. },
  11040. "_enabled": true,
  11041. "__prefab": null,
  11042. "_customMaterial": null,
  11043. "_srcBlendFactor": 2,
  11044. "_dstBlendFactor": 4,
  11045. "_color": {
  11046. "__type__": "cc.Color",
  11047. "r": 255,
  11048. "g": 255,
  11049. "b": 255,
  11050. "a": 255
  11051. },
  11052. "_spriteFrame": {
  11053. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@79756",
  11054. "__expectedType__": "cc.SpriteFrame"
  11055. },
  11056. "_type": 0,
  11057. "_fillType": 0,
  11058. "_sizeMode": 0,
  11059. "_fillCenter": {
  11060. "__type__": "cc.Vec2",
  11061. "x": 0,
  11062. "y": 0
  11063. },
  11064. "_fillStart": 0,
  11065. "_fillRange": 0,
  11066. "_isTrimmedMode": true,
  11067. "_useGrayscale": false,
  11068. "_atlas": null,
  11069. "_id": "c1LTjCAtpMlZuTF/mJKncq"
  11070. },
  11071. {
  11072. "__type__": "cc.Node",
  11073. "_name": "BattleScene_Top",
  11074. "_objFlags": 0,
  11075. "__editorExtras__": {},
  11076. "_parent": {
  11077. "__id__": 5
  11078. },
  11079. "_children": [
  11080. {
  11081. "__id__": 293
  11082. },
  11083. {
  11084. "__id__": 298
  11085. },
  11086. {
  11087. "__id__": 310
  11088. },
  11089. {
  11090. "__id__": 322
  11091. }
  11092. ],
  11093. "_active": true,
  11094. "_components": [
  11095. {
  11096. "__id__": 326
  11097. },
  11098. {
  11099. "__id__": 327
  11100. },
  11101. {
  11102. "__id__": 328
  11103. },
  11104. {
  11105. "__id__": 329
  11106. }
  11107. ],
  11108. "_prefab": null,
  11109. "_lpos": {
  11110. "__type__": "cc.Vec3",
  11111. "x": 0,
  11112. "y": 300,
  11113. "z": 0
  11114. },
  11115. "_lrot": {
  11116. "__type__": "cc.Quat",
  11117. "x": 0,
  11118. "y": 0,
  11119. "z": 0,
  11120. "w": 1
  11121. },
  11122. "_lscale": {
  11123. "__type__": "cc.Vec3",
  11124. "x": 1,
  11125. "y": 1,
  11126. "z": 1
  11127. },
  11128. "_mobility": 0,
  11129. "_layer": 33554432,
  11130. "_euler": {
  11131. "__type__": "cc.Vec3",
  11132. "x": 0,
  11133. "y": 0,
  11134. "z": 0
  11135. },
  11136. "_id": "98RbnCkPlCn4dXP1A5UIcO"
  11137. },
  11138. {
  11139. "__type__": "cc.Node",
  11140. "_name": "_btnReturn",
  11141. "_objFlags": 0,
  11142. "__editorExtras__": {},
  11143. "_parent": {
  11144. "__id__": 292
  11145. },
  11146. "_children": [],
  11147. "_active": true,
  11148. "_components": [
  11149. {
  11150. "__id__": 294
  11151. },
  11152. {
  11153. "__id__": 295
  11154. },
  11155. {
  11156. "__id__": 296
  11157. },
  11158. {
  11159. "__id__": 297
  11160. }
  11161. ],
  11162. "_prefab": null,
  11163. "_lpos": {
  11164. "__type__": "cc.Vec3",
  11165. "x": 540,
  11166. "y": 0,
  11167. "z": 0
  11168. },
  11169. "_lrot": {
  11170. "__type__": "cc.Quat",
  11171. "x": 0,
  11172. "y": 0,
  11173. "z": 0,
  11174. "w": 1
  11175. },
  11176. "_lscale": {
  11177. "__type__": "cc.Vec3",
  11178. "x": 1,
  11179. "y": 1,
  11180. "z": 1
  11181. },
  11182. "_mobility": 0,
  11183. "_layer": 33554432,
  11184. "_euler": {
  11185. "__type__": "cc.Vec3",
  11186. "x": 0,
  11187. "y": 0,
  11188. "z": 0
  11189. },
  11190. "_id": "293EMRs9VF7olt2j1KzxyF"
  11191. },
  11192. {
  11193. "__type__": "cc.UITransform",
  11194. "_name": "",
  11195. "_objFlags": 0,
  11196. "__editorExtras__": {},
  11197. "node": {
  11198. "__id__": 293
  11199. },
  11200. "_enabled": true,
  11201. "__prefab": null,
  11202. "_contentSize": {
  11203. "__type__": "cc.Size",
  11204. "width": 60,
  11205. "height": 60
  11206. },
  11207. "_anchorPoint": {
  11208. "__type__": "cc.Vec2",
  11209. "x": 0.5,
  11210. "y": 0.5
  11211. },
  11212. "_id": "85+6RLdoZIq7VKoxSVK59s"
  11213. },
  11214. {
  11215. "__type__": "cc.Sprite",
  11216. "_name": "",
  11217. "_objFlags": 0,
  11218. "__editorExtras__": {},
  11219. "node": {
  11220. "__id__": 293
  11221. },
  11222. "_enabled": true,
  11223. "__prefab": null,
  11224. "_customMaterial": null,
  11225. "_srcBlendFactor": 2,
  11226. "_dstBlendFactor": 4,
  11227. "_color": {
  11228. "__type__": "cc.Color",
  11229. "r": 255,
  11230. "g": 255,
  11231. "b": 255,
  11232. "a": 255
  11233. },
  11234. "_spriteFrame": {
  11235. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@09c2b",
  11236. "__expectedType__": "cc.SpriteFrame"
  11237. },
  11238. "_type": 1,
  11239. "_fillType": 0,
  11240. "_sizeMode": 0,
  11241. "_fillCenter": {
  11242. "__type__": "cc.Vec2",
  11243. "x": 0,
  11244. "y": 0
  11245. },
  11246. "_fillStart": 0,
  11247. "_fillRange": 0,
  11248. "_isTrimmedMode": true,
  11249. "_useGrayscale": false,
  11250. "_atlas": null,
  11251. "_id": "89JNg7JWpFnau/GheErNFN"
  11252. },
  11253. {
  11254. "__type__": "cc.Button",
  11255. "_name": "",
  11256. "_objFlags": 0,
  11257. "__editorExtras__": {},
  11258. "node": {
  11259. "__id__": 293
  11260. },
  11261. "_enabled": true,
  11262. "__prefab": null,
  11263. "clickEvents": [],
  11264. "_interactable": true,
  11265. "_transition": 2,
  11266. "_normalColor": {
  11267. "__type__": "cc.Color",
  11268. "r": 214,
  11269. "g": 214,
  11270. "b": 214,
  11271. "a": 255
  11272. },
  11273. "_hoverColor": {
  11274. "__type__": "cc.Color",
  11275. "r": 211,
  11276. "g": 211,
  11277. "b": 211,
  11278. "a": 255
  11279. },
  11280. "_pressedColor": {
  11281. "__type__": "cc.Color",
  11282. "r": 255,
  11283. "g": 255,
  11284. "b": 255,
  11285. "a": 255
  11286. },
  11287. "_disabledColor": {
  11288. "__type__": "cc.Color",
  11289. "r": 124,
  11290. "g": 124,
  11291. "b": 124,
  11292. "a": 255
  11293. },
  11294. "_normalSprite": {
  11295. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@09c2b",
  11296. "__expectedType__": "cc.SpriteFrame"
  11297. },
  11298. "_hoverSprite": null,
  11299. "_pressedSprite": {
  11300. "__uuid__": "c00b279f-801e-4e6d-a02e-0a9604678070@f4bf7",
  11301. "__expectedType__": "cc.SpriteFrame"
  11302. },
  11303. "_disabledSprite": null,
  11304. "_duration": 0.1,
  11305. "_zoomScale": 1.2,
  11306. "_target": {
  11307. "__id__": 293
  11308. },
  11309. "_id": "b58Mqv/khPI5WKIjtSMudF"
  11310. },
  11311. {
  11312. "__type__": "cc.Widget",
  11313. "_name": "",
  11314. "_objFlags": 0,
  11315. "__editorExtras__": {},
  11316. "node": {
  11317. "__id__": 293
  11318. },
  11319. "_enabled": true,
  11320. "__prefab": null,
  11321. "_alignFlags": 32,
  11322. "_target": null,
  11323. "_left": 0,
  11324. "_right": 70,
  11325. "_top": 0,
  11326. "_bottom": 0,
  11327. "_horizontalCenter": 0,
  11328. "_verticalCenter": 0,
  11329. "_isAbsLeft": true,
  11330. "_isAbsRight": true,
  11331. "_isAbsTop": true,
  11332. "_isAbsBottom": true,
  11333. "_isAbsHorizontalCenter": true,
  11334. "_isAbsVerticalCenter": true,
  11335. "_originalWidth": 0,
  11336. "_originalHeight": 0,
  11337. "_alignMode": 2,
  11338. "_lockFlags": 0,
  11339. "_id": "87U3xyoE1BlKjcU4JFeohC"
  11340. },
  11341. {
  11342. "__type__": "cc.Node",
  11343. "_name": "Gold",
  11344. "_objFlags": 0,
  11345. "__editorExtras__": {},
  11346. "_parent": {
  11347. "__id__": 292
  11348. },
  11349. "_children": [
  11350. {
  11351. "__id__": 299
  11352. },
  11353. {
  11354. "__id__": 303
  11355. }
  11356. ],
  11357. "_active": true,
  11358. "_components": [
  11359. {
  11360. "__id__": 307
  11361. },
  11362. {
  11363. "__id__": 308
  11364. },
  11365. {
  11366. "__id__": 309
  11367. }
  11368. ],
  11369. "_prefab": null,
  11370. "_lpos": {
  11371. "__type__": "cc.Vec3",
  11372. "x": 40,
  11373. "y": 0,
  11374. "z": 0
  11375. },
  11376. "_lrot": {
  11377. "__type__": "cc.Quat",
  11378. "x": 0,
  11379. "y": 0,
  11380. "z": 0,
  11381. "w": 1
  11382. },
  11383. "_lscale": {
  11384. "__type__": "cc.Vec3",
  11385. "x": 1,
  11386. "y": 1,
  11387. "z": 1
  11388. },
  11389. "_mobility": 0,
  11390. "_layer": 33554432,
  11391. "_euler": {
  11392. "__type__": "cc.Vec3",
  11393. "x": 0,
  11394. "y": 0,
  11395. "z": 0
  11396. },
  11397. "_id": "ac4HjOZ+dJFq/ytifE3rAo"
  11398. },
  11399. {
  11400. "__type__": "cc.Node",
  11401. "_name": "_gold",
  11402. "_objFlags": 0,
  11403. "__editorExtras__": {},
  11404. "_parent": {
  11405. "__id__": 298
  11406. },
  11407. "_children": [],
  11408. "_active": true,
  11409. "_components": [
  11410. {
  11411. "__id__": 300
  11412. },
  11413. {
  11414. "__id__": 301
  11415. },
  11416. {
  11417. "__id__": 302
  11418. }
  11419. ],
  11420. "_prefab": null,
  11421. "_lpos": {
  11422. "__type__": "cc.Vec3",
  11423. "x": 2.24609375,
  11424. "y": 0,
  11425. "z": 0
  11426. },
  11427. "_lrot": {
  11428. "__type__": "cc.Quat",
  11429. "x": 0,
  11430. "y": 0,
  11431. "z": 0,
  11432. "w": 1
  11433. },
  11434. "_lscale": {
  11435. "__type__": "cc.Vec3",
  11436. "x": 1,
  11437. "y": 1,
  11438. "z": 1
  11439. },
  11440. "_mobility": 0,
  11441. "_layer": 33554432,
  11442. "_euler": {
  11443. "__type__": "cc.Vec3",
  11444. "x": 0,
  11445. "y": 0,
  11446. "z": 0
  11447. },
  11448. "_id": "1end2mh39BhZv9CUdGm8jg"
  11449. },
  11450. {
  11451. "__type__": "cc.UITransform",
  11452. "_name": "",
  11453. "_objFlags": 0,
  11454. "__editorExtras__": {},
  11455. "node": {
  11456. "__id__": 299
  11457. },
  11458. "_enabled": true,
  11459. "__prefab": null,
  11460. "_contentSize": {
  11461. "__type__": "cc.Size",
  11462. "width": 44.4921875,
  11463. "height": 50.4
  11464. },
  11465. "_anchorPoint": {
  11466. "__type__": "cc.Vec2",
  11467. "x": 0.5,
  11468. "y": 0.5
  11469. },
  11470. "_id": "69NZ0VtGRGK7/MKzDch25P"
  11471. },
  11472. {
  11473. "__type__": "cc.Label",
  11474. "_name": "",
  11475. "_objFlags": 0,
  11476. "__editorExtras__": {},
  11477. "node": {
  11478. "__id__": 299
  11479. },
  11480. "_enabled": true,
  11481. "__prefab": null,
  11482. "_customMaterial": null,
  11483. "_srcBlendFactor": 2,
  11484. "_dstBlendFactor": 4,
  11485. "_color": {
  11486. "__type__": "cc.Color",
  11487. "r": 255,
  11488. "g": 255,
  11489. "b": 255,
  11490. "a": 255
  11491. },
  11492. "_string": "1000",
  11493. "_horizontalAlign": 1,
  11494. "_verticalAlign": 1,
  11495. "_actualFontSize": 20,
  11496. "_fontSize": 20,
  11497. "_fontFamily": "Arial",
  11498. "_lineHeight": 40,
  11499. "_overflow": 0,
  11500. "_enableWrapText": true,
  11501. "_font": null,
  11502. "_isSystemFontUsed": true,
  11503. "_spacingX": 0,
  11504. "_isItalic": false,
  11505. "_isBold": false,
  11506. "_isUnderline": false,
  11507. "_underlineHeight": 2,
  11508. "_cacheMode": 0,
  11509. "_enableOutline": false,
  11510. "_outlineColor": {
  11511. "__type__": "cc.Color",
  11512. "r": 0,
  11513. "g": 0,
  11514. "b": 0,
  11515. "a": 255
  11516. },
  11517. "_outlineWidth": 2,
  11518. "_enableShadow": false,
  11519. "_shadowColor": {
  11520. "__type__": "cc.Color",
  11521. "r": 0,
  11522. "g": 0,
  11523. "b": 0,
  11524. "a": 255
  11525. },
  11526. "_shadowOffset": {
  11527. "__type__": "cc.Vec2",
  11528. "x": 2,
  11529. "y": 2
  11530. },
  11531. "_shadowBlur": 2,
  11532. "_id": "8c/UI1bLVBK5ZrWCMrp+YR"
  11533. },
  11534. {
  11535. "__type__": "cc.Widget",
  11536. "_name": "",
  11537. "_objFlags": 0,
  11538. "__editorExtras__": {},
  11539. "node": {
  11540. "__id__": 299
  11541. },
  11542. "_enabled": true,
  11543. "__prefab": null,
  11544. "_alignFlags": 8,
  11545. "_target": null,
  11546. "_left": 80,
  11547. "_right": 0,
  11548. "_top": 0,
  11549. "_bottom": 0,
  11550. "_horizontalCenter": 0,
  11551. "_verticalCenter": 0,
  11552. "_isAbsLeft": true,
  11553. "_isAbsRight": true,
  11554. "_isAbsTop": true,
  11555. "_isAbsBottom": true,
  11556. "_isAbsHorizontalCenter": true,
  11557. "_isAbsVerticalCenter": true,
  11558. "_originalWidth": 0,
  11559. "_originalHeight": 0,
  11560. "_alignMode": 2,
  11561. "_lockFlags": 0,
  11562. "_id": "06Q9sqXg1MFLbvPt7IETbW"
  11563. },
  11564. {
  11565. "__type__": "cc.Node",
  11566. "_name": "Gold",
  11567. "_objFlags": 0,
  11568. "__editorExtras__": {},
  11569. "_parent": {
  11570. "__id__": 298
  11571. },
  11572. "_children": [],
  11573. "_active": true,
  11574. "_components": [
  11575. {
  11576. "__id__": 304
  11577. },
  11578. {
  11579. "__id__": 305
  11580. },
  11581. {
  11582. "__id__": 306
  11583. }
  11584. ],
  11585. "_prefab": null,
  11586. "_lpos": {
  11587. "__type__": "cc.Vec3",
  11588. "x": -84.5,
  11589. "y": 0,
  11590. "z": 0
  11591. },
  11592. "_lrot": {
  11593. "__type__": "cc.Quat",
  11594. "x": 0,
  11595. "y": 0,
  11596. "z": 0,
  11597. "w": 1
  11598. },
  11599. "_lscale": {
  11600. "__type__": "cc.Vec3",
  11601. "x": 1,
  11602. "y": 1,
  11603. "z": 1
  11604. },
  11605. "_mobility": 0,
  11606. "_layer": 33554432,
  11607. "_euler": {
  11608. "__type__": "cc.Vec3",
  11609. "x": 0,
  11610. "y": 0,
  11611. "z": 0
  11612. },
  11613. "_id": "36HDQ7HFlK8oTpTL8cpCqc"
  11614. },
  11615. {
  11616. "__type__": "cc.UITransform",
  11617. "_name": "",
  11618. "_objFlags": 0,
  11619. "__editorExtras__": {},
  11620. "node": {
  11621. "__id__": 303
  11622. },
  11623. "_enabled": true,
  11624. "__prefab": null,
  11625. "_contentSize": {
  11626. "__type__": "cc.Size",
  11627. "width": 63,
  11628. "height": 63
  11629. },
  11630. "_anchorPoint": {
  11631. "__type__": "cc.Vec2",
  11632. "x": 0.5,
  11633. "y": 0.5
  11634. },
  11635. "_id": "e38Y8Kgp5EZaeCufrGtPdM"
  11636. },
  11637. {
  11638. "__type__": "cc.Sprite",
  11639. "_name": "",
  11640. "_objFlags": 0,
  11641. "__editorExtras__": {},
  11642. "node": {
  11643. "__id__": 303
  11644. },
  11645. "_enabled": true,
  11646. "__prefab": null,
  11647. "_customMaterial": null,
  11648. "_srcBlendFactor": 2,
  11649. "_dstBlendFactor": 4,
  11650. "_color": {
  11651. "__type__": "cc.Color",
  11652. "r": 255,
  11653. "g": 255,
  11654. "b": 255,
  11655. "a": 255
  11656. },
  11657. "_spriteFrame": {
  11658. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@9bb7d",
  11659. "__expectedType__": "cc.SpriteFrame"
  11660. },
  11661. "_type": 0,
  11662. "_fillType": 0,
  11663. "_sizeMode": 1,
  11664. "_fillCenter": {
  11665. "__type__": "cc.Vec2",
  11666. "x": 0,
  11667. "y": 0
  11668. },
  11669. "_fillStart": 0,
  11670. "_fillRange": 0,
  11671. "_isTrimmedMode": true,
  11672. "_useGrayscale": false,
  11673. "_atlas": null,
  11674. "_id": "a6JXqgFZFCTpSuVox7V34o"
  11675. },
  11676. {
  11677. "__type__": "cc.Widget",
  11678. "_name": "",
  11679. "_objFlags": 0,
  11680. "__editorExtras__": {},
  11681. "node": {
  11682. "__id__": 303
  11683. },
  11684. "_enabled": true,
  11685. "__prefab": null,
  11686. "_alignFlags": 8,
  11687. "_target": null,
  11688. "_left": -16,
  11689. "_right": 0,
  11690. "_top": 0,
  11691. "_bottom": 0,
  11692. "_horizontalCenter": 0,
  11693. "_verticalCenter": 0,
  11694. "_isAbsLeft": true,
  11695. "_isAbsRight": true,
  11696. "_isAbsTop": true,
  11697. "_isAbsBottom": true,
  11698. "_isAbsHorizontalCenter": true,
  11699. "_isAbsVerticalCenter": true,
  11700. "_originalWidth": 0,
  11701. "_originalHeight": 0,
  11702. "_alignMode": 2,
  11703. "_lockFlags": 0,
  11704. "_id": "5fWaeMvxdFS5VWlKtE8p1h"
  11705. },
  11706. {
  11707. "__type__": "cc.UITransform",
  11708. "_name": "",
  11709. "_objFlags": 0,
  11710. "__editorExtras__": {},
  11711. "node": {
  11712. "__id__": 298
  11713. },
  11714. "_enabled": true,
  11715. "__prefab": null,
  11716. "_contentSize": {
  11717. "__type__": "cc.Size",
  11718. "width": 200,
  11719. "height": 52
  11720. },
  11721. "_anchorPoint": {
  11722. "__type__": "cc.Vec2",
  11723. "x": 0.5,
  11724. "y": 0.5
  11725. },
  11726. "_id": "a75cFwafVIy68ja7DW0Ne1"
  11727. },
  11728. {
  11729. "__type__": "cc.Sprite",
  11730. "_name": "",
  11731. "_objFlags": 0,
  11732. "__editorExtras__": {},
  11733. "node": {
  11734. "__id__": 298
  11735. },
  11736. "_enabled": true,
  11737. "__prefab": null,
  11738. "_customMaterial": null,
  11739. "_srcBlendFactor": 2,
  11740. "_dstBlendFactor": 4,
  11741. "_color": {
  11742. "__type__": "cc.Color",
  11743. "r": 255,
  11744. "g": 255,
  11745. "b": 255,
  11746. "a": 255
  11747. },
  11748. "_spriteFrame": {
  11749. "__uuid__": "9dd292b2-f288-4de4-9392-fa4784e3ddff@f9941",
  11750. "__expectedType__": "cc.SpriteFrame"
  11751. },
  11752. "_type": 0,
  11753. "_fillType": 0,
  11754. "_sizeMode": 0,
  11755. "_fillCenter": {
  11756. "__type__": "cc.Vec2",
  11757. "x": 0,
  11758. "y": 0
  11759. },
  11760. "_fillStart": 0,
  11761. "_fillRange": 0,
  11762. "_isTrimmedMode": true,
  11763. "_useGrayscale": false,
  11764. "_atlas": null,
  11765. "_id": "f3uWlFRsFC/pCIFkCrIoPH"
  11766. },
  11767. {
  11768. "__type__": "cc.Widget",
  11769. "_name": "",
  11770. "_objFlags": 0,
  11771. "__editorExtras__": {},
  11772. "node": {
  11773. "__id__": 298
  11774. },
  11775. "_enabled": true,
  11776. "__prefab": null,
  11777. "_alignFlags": 37,
  11778. "_target": null,
  11779. "_left": 620,
  11780. "_right": 500,
  11781. "_top": 34,
  11782. "_bottom": 34,
  11783. "_horizontalCenter": 0,
  11784. "_verticalCenter": 0,
  11785. "_isAbsLeft": true,
  11786. "_isAbsRight": true,
  11787. "_isAbsTop": true,
  11788. "_isAbsBottom": true,
  11789. "_isAbsHorizontalCenter": true,
  11790. "_isAbsVerticalCenter": true,
  11791. "_originalWidth": 40,
  11792. "_originalHeight": 36,
  11793. "_alignMode": 2,
  11794. "_lockFlags": 0,
  11795. "_id": "b5E9YwKflGG42AnO3DUzqN"
  11796. },
  11797. {
  11798. "__type__": "cc.Node",
  11799. "_name": "Diamond",
  11800. "_objFlags": 0,
  11801. "__editorExtras__": {},
  11802. "_parent": {
  11803. "__id__": 292
  11804. },
  11805. "_children": [
  11806. {
  11807. "__id__": 311
  11808. },
  11809. {
  11810. "__id__": 315
  11811. }
  11812. ],
  11813. "_active": true,
  11814. "_components": [
  11815. {
  11816. "__id__": 319
  11817. },
  11818. {
  11819. "__id__": 320
  11820. },
  11821. {
  11822. "__id__": 321
  11823. }
  11824. ],
  11825. "_prefab": null,
  11826. "_lpos": {
  11827. "__type__": "cc.Vec3",
  11828. "x": 277.459,
  11829. "y": 0,
  11830. "z": 0
  11831. },
  11832. "_lrot": {
  11833. "__type__": "cc.Quat",
  11834. "x": 0,
  11835. "y": 0,
  11836. "z": 0,
  11837. "w": 1
  11838. },
  11839. "_lscale": {
  11840. "__type__": "cc.Vec3",
  11841. "x": 1,
  11842. "y": 1,
  11843. "z": 1
  11844. },
  11845. "_mobility": 0,
  11846. "_layer": 33554432,
  11847. "_euler": {
  11848. "__type__": "cc.Vec3",
  11849. "x": 0,
  11850. "y": 0,
  11851. "z": 0
  11852. },
  11853. "_id": "a0YOT6gSlJMITNjB60/CYw"
  11854. },
  11855. {
  11856. "__type__": "cc.Node",
  11857. "_name": "_diamond",
  11858. "_objFlags": 0,
  11859. "__editorExtras__": {},
  11860. "_parent": {
  11861. "__id__": 310
  11862. },
  11863. "_children": [],
  11864. "_active": true,
  11865. "_components": [
  11866. {
  11867. "__id__": 312
  11868. },
  11869. {
  11870. "__id__": 313
  11871. },
  11872. {
  11873. "__id__": 314
  11874. }
  11875. ],
  11876. "_prefab": null,
  11877. "_lpos": {
  11878. "__type__": "cc.Vec3",
  11879. "x": -13.3154296875,
  11880. "y": 0,
  11881. "z": 0
  11882. },
  11883. "_lrot": {
  11884. "__type__": "cc.Quat",
  11885. "x": 0,
  11886. "y": 0,
  11887. "z": 0,
  11888. "w": 1
  11889. },
  11890. "_lscale": {
  11891. "__type__": "cc.Vec3",
  11892. "x": 1,
  11893. "y": 1,
  11894. "z": 1
  11895. },
  11896. "_mobility": 0,
  11897. "_layer": 33554432,
  11898. "_euler": {
  11899. "__type__": "cc.Vec3",
  11900. "x": 0,
  11901. "y": 0,
  11902. "z": 0
  11903. },
  11904. "_id": "9fwZPQvBhLrJT6rJwZovjV"
  11905. },
  11906. {
  11907. "__type__": "cc.UITransform",
  11908. "_name": "",
  11909. "_objFlags": 0,
  11910. "__editorExtras__": {},
  11911. "node": {
  11912. "__id__": 311
  11913. },
  11914. "_enabled": true,
  11915. "__prefab": null,
  11916. "_contentSize": {
  11917. "__type__": "cc.Size",
  11918. "width": 33.369140625,
  11919. "height": 50.4
  11920. },
  11921. "_anchorPoint": {
  11922. "__type__": "cc.Vec2",
  11923. "x": 0.5,
  11924. "y": 0.5
  11925. },
  11926. "_id": "44gNLqUsRAAagdN/2qVp+O"
  11927. },
  11928. {
  11929. "__type__": "cc.Label",
  11930. "_name": "",
  11931. "_objFlags": 0,
  11932. "__editorExtras__": {},
  11933. "node": {
  11934. "__id__": 311
  11935. },
  11936. "_enabled": true,
  11937. "__prefab": null,
  11938. "_customMaterial": null,
  11939. "_srcBlendFactor": 2,
  11940. "_dstBlendFactor": 4,
  11941. "_color": {
  11942. "__type__": "cc.Color",
  11943. "r": 255,
  11944. "g": 255,
  11945. "b": 255,
  11946. "a": 255
  11947. },
  11948. "_string": "200",
  11949. "_horizontalAlign": 1,
  11950. "_verticalAlign": 1,
  11951. "_actualFontSize": 20,
  11952. "_fontSize": 20,
  11953. "_fontFamily": "Arial",
  11954. "_lineHeight": 40,
  11955. "_overflow": 0,
  11956. "_enableWrapText": true,
  11957. "_font": null,
  11958. "_isSystemFontUsed": true,
  11959. "_spacingX": 0,
  11960. "_isItalic": false,
  11961. "_isBold": false,
  11962. "_isUnderline": false,
  11963. "_underlineHeight": 2,
  11964. "_cacheMode": 0,
  11965. "_enableOutline": false,
  11966. "_outlineColor": {
  11967. "__type__": "cc.Color",
  11968. "r": 0,
  11969. "g": 0,
  11970. "b": 0,
  11971. "a": 255
  11972. },
  11973. "_outlineWidth": 2,
  11974. "_enableShadow": false,
  11975. "_shadowColor": {
  11976. "__type__": "cc.Color",
  11977. "r": 0,
  11978. "g": 0,
  11979. "b": 0,
  11980. "a": 255
  11981. },
  11982. "_shadowOffset": {
  11983. "__type__": "cc.Vec2",
  11984. "x": 2,
  11985. "y": 2
  11986. },
  11987. "_shadowBlur": 2,
  11988. "_id": "4f8C1K+atOkpO5jWArOr5g"
  11989. },
  11990. {
  11991. "__type__": "cc.Widget",
  11992. "_name": "",
  11993. "_objFlags": 0,
  11994. "__editorExtras__": {},
  11995. "node": {
  11996. "__id__": 311
  11997. },
  11998. "_enabled": true,
  11999. "__prefab": null,
  12000. "_alignFlags": 8,
  12001. "_target": null,
  12002. "_left": 70,
  12003. "_right": 0,
  12004. "_top": 0,
  12005. "_bottom": 0,
  12006. "_horizontalCenter": 0,
  12007. "_verticalCenter": 0,
  12008. "_isAbsLeft": true,
  12009. "_isAbsRight": true,
  12010. "_isAbsTop": true,
  12011. "_isAbsBottom": true,
  12012. "_isAbsHorizontalCenter": true,
  12013. "_isAbsVerticalCenter": true,
  12014. "_originalWidth": 0,
  12015. "_originalHeight": 0,
  12016. "_alignMode": 2,
  12017. "_lockFlags": 0,
  12018. "_id": "dbOxRuDWJFRq4IBikTMV8g"
  12019. },
  12020. {
  12021. "__type__": "cc.Node",
  12022. "_name": "Diamond",
  12023. "_objFlags": 0,
  12024. "__editorExtras__": {},
  12025. "_parent": {
  12026. "__id__": 310
  12027. },
  12028. "_children": [],
  12029. "_active": true,
  12030. "_components": [
  12031. {
  12032. "__id__": 316
  12033. },
  12034. {
  12035. "__id__": 317
  12036. },
  12037. {
  12038. "__id__": 318
  12039. }
  12040. ],
  12041. "_prefab": null,
  12042. "_lpos": {
  12043. "__type__": "cc.Vec3",
  12044. "x": -85,
  12045. "y": 0,
  12046. "z": 0
  12047. },
  12048. "_lrot": {
  12049. "__type__": "cc.Quat",
  12050. "x": 0,
  12051. "y": 0,
  12052. "z": 0,
  12053. "w": 1
  12054. },
  12055. "_lscale": {
  12056. "__type__": "cc.Vec3",
  12057. "x": 1,
  12058. "y": 1,
  12059. "z": 1
  12060. },
  12061. "_mobility": 0,
  12062. "_layer": 33554432,
  12063. "_euler": {
  12064. "__type__": "cc.Vec3",
  12065. "x": 0,
  12066. "y": 0,
  12067. "z": 0
  12068. },
  12069. "_id": "a8uZW/k+xEBq4+zVwa0uOL"
  12070. },
  12071. {
  12072. "__type__": "cc.UITransform",
  12073. "_name": "",
  12074. "_objFlags": 0,
  12075. "__editorExtras__": {},
  12076. "node": {
  12077. "__id__": 315
  12078. },
  12079. "_enabled": true,
  12080. "__prefab": null,
  12081. "_contentSize": {
  12082. "__type__": "cc.Size",
  12083. "width": 62,
  12084. "height": 85
  12085. },
  12086. "_anchorPoint": {
  12087. "__type__": "cc.Vec2",
  12088. "x": 0.5,
  12089. "y": 0.5
  12090. },
  12091. "_id": "640VPIgzROYa98srvj9kVM"
  12092. },
  12093. {
  12094. "__type__": "cc.Sprite",
  12095. "_name": "",
  12096. "_objFlags": 0,
  12097. "__editorExtras__": {},
  12098. "node": {
  12099. "__id__": 315
  12100. },
  12101. "_enabled": true,
  12102. "__prefab": null,
  12103. "_customMaterial": null,
  12104. "_srcBlendFactor": 2,
  12105. "_dstBlendFactor": 4,
  12106. "_color": {
  12107. "__type__": "cc.Color",
  12108. "r": 255,
  12109. "g": 255,
  12110. "b": 255,
  12111. "a": 255
  12112. },
  12113. "_spriteFrame": {
  12114. "__uuid__": "1440ddfa-68c4-4328-bf37-600cd18f4812@81a79",
  12115. "__expectedType__": "cc.SpriteFrame"
  12116. },
  12117. "_type": 0,
  12118. "_fillType": 0,
  12119. "_sizeMode": 1,
  12120. "_fillCenter": {
  12121. "__type__": "cc.Vec2",
  12122. "x": 0,
  12123. "y": 0
  12124. },
  12125. "_fillStart": 0,
  12126. "_fillRange": 0,
  12127. "_isTrimmedMode": true,
  12128. "_useGrayscale": false,
  12129. "_atlas": null,
  12130. "_id": "a9amap96lPfayRRNZ57jD3"
  12131. },
  12132. {
  12133. "__type__": "cc.Widget",
  12134. "_name": "",
  12135. "_objFlags": 0,
  12136. "__editorExtras__": {},
  12137. "node": {
  12138. "__id__": 315
  12139. },
  12140. "_enabled": true,
  12141. "__prefab": null,
  12142. "_alignFlags": 8,
  12143. "_target": null,
  12144. "_left": -16,
  12145. "_right": 0,
  12146. "_top": 0,
  12147. "_bottom": 0,
  12148. "_horizontalCenter": 0,
  12149. "_verticalCenter": 0,
  12150. "_isAbsLeft": true,
  12151. "_isAbsRight": true,
  12152. "_isAbsTop": true,
  12153. "_isAbsBottom": true,
  12154. "_isAbsHorizontalCenter": true,
  12155. "_isAbsVerticalCenter": true,
  12156. "_originalWidth": 0,
  12157. "_originalHeight": 0,
  12158. "_alignMode": 2,
  12159. "_lockFlags": 0,
  12160. "_id": "dcIYm5RZxD+aSuBxGiAZq7"
  12161. },
  12162. {
  12163. "__type__": "cc.UITransform",
  12164. "_name": "",
  12165. "_objFlags": 0,
  12166. "__editorExtras__": {},
  12167. "node": {
  12168. "__id__": 310
  12169. },
  12170. "_enabled": true,
  12171. "__prefab": null,
  12172. "_contentSize": {
  12173. "__type__": "cc.Size",
  12174. "width": 200,
  12175. "height": 52
  12176. },
  12177. "_anchorPoint": {
  12178. "__type__": "cc.Vec2",
  12179. "x": 0.5,
  12180. "y": 0.5
  12181. },
  12182. "_id": "01ODoPlLRBU4OIsS9fp62o"
  12183. },
  12184. {
  12185. "__type__": "cc.Sprite",
  12186. "_name": "",
  12187. "_objFlags": 0,
  12188. "__editorExtras__": {},
  12189. "node": {
  12190. "__id__": 310
  12191. },
  12192. "_enabled": true,
  12193. "__prefab": null,
  12194. "_customMaterial": null,
  12195. "_srcBlendFactor": 2,
  12196. "_dstBlendFactor": 4,
  12197. "_color": {
  12198. "__type__": "cc.Color",
  12199. "r": 255,
  12200. "g": 255,
  12201. "b": 255,
  12202. "a": 255
  12203. },
  12204. "_spriteFrame": {
  12205. "__uuid__": "9dd292b2-f288-4de4-9392-fa4784e3ddff@f9941",
  12206. "__expectedType__": "cc.SpriteFrame"
  12207. },
  12208. "_type": 0,
  12209. "_fillType": 0,
  12210. "_sizeMode": 0,
  12211. "_fillCenter": {
  12212. "__type__": "cc.Vec2",
  12213. "x": 0,
  12214. "y": 0
  12215. },
  12216. "_fillStart": 0,
  12217. "_fillRange": 0,
  12218. "_isTrimmedMode": true,
  12219. "_useGrayscale": false,
  12220. "_atlas": null,
  12221. "_id": "64uwq+qkRCC49Pqg2ayDtm"
  12222. },
  12223. {
  12224. "__type__": "cc.Widget",
  12225. "_name": "",
  12226. "_objFlags": 0,
  12227. "__editorExtras__": {},
  12228. "node": {
  12229. "__id__": 310
  12230. },
  12231. "_enabled": true,
  12232. "__prefab": null,
  12233. "_alignFlags": 37,
  12234. "_target": null,
  12235. "_left": 620,
  12236. "_right": 262.541,
  12237. "_top": 34,
  12238. "_bottom": 34,
  12239. "_horizontalCenter": 0,
  12240. "_verticalCenter": 0,
  12241. "_isAbsLeft": true,
  12242. "_isAbsRight": true,
  12243. "_isAbsTop": true,
  12244. "_isAbsBottom": true,
  12245. "_isAbsHorizontalCenter": true,
  12246. "_isAbsVerticalCenter": true,
  12247. "_originalWidth": 40,
  12248. "_originalHeight": 36,
  12249. "_alignMode": 2,
  12250. "_lockFlags": 0,
  12251. "_id": "77o1VArflF5adNoCjwDw6V"
  12252. },
  12253. {
  12254. "__type__": "cc.Node",
  12255. "_name": "_battleMode",
  12256. "_objFlags": 0,
  12257. "__editorExtras__": {},
  12258. "_parent": {
  12259. "__id__": 292
  12260. },
  12261. "_children": [],
  12262. "_active": true,
  12263. "_components": [
  12264. {
  12265. "__id__": 323
  12266. },
  12267. {
  12268. "__id__": 324
  12269. },
  12270. {
  12271. "__id__": 325
  12272. }
  12273. ],
  12274. "_prefab": null,
  12275. "_lpos": {
  12276. "__type__": "cc.Vec3",
  12277. "x": -360,
  12278. "y": 0,
  12279. "z": 0
  12280. },
  12281. "_lrot": {
  12282. "__type__": "cc.Quat",
  12283. "x": 0,
  12284. "y": 0,
  12285. "z": 0,
  12286. "w": 1
  12287. },
  12288. "_lscale": {
  12289. "__type__": "cc.Vec3",
  12290. "x": 1,
  12291. "y": 1,
  12292. "z": 1
  12293. },
  12294. "_mobility": 0,
  12295. "_layer": 33554432,
  12296. "_euler": {
  12297. "__type__": "cc.Vec3",
  12298. "x": 0,
  12299. "y": 0,
  12300. "z": 0
  12301. },
  12302. "_id": "d14qjt3ztNmbd/x27qtoJp"
  12303. },
  12304. {
  12305. "__type__": "cc.UITransform",
  12306. "_name": "",
  12307. "_objFlags": 0,
  12308. "__editorExtras__": {},
  12309. "node": {
  12310. "__id__": 322
  12311. },
  12312. "_enabled": true,
  12313. "__prefab": null,
  12314. "_contentSize": {
  12315. "__type__": "cc.Size",
  12316. "width": 202,
  12317. "height": 65
  12318. },
  12319. "_anchorPoint": {
  12320. "__type__": "cc.Vec2",
  12321. "x": 0.5,
  12322. "y": 0.5
  12323. },
  12324. "_id": "f0aB2hf9xNA7g/PA+9jrWW"
  12325. },
  12326. {
  12327. "__type__": "cc.Label",
  12328. "_name": "",
  12329. "_objFlags": 0,
  12330. "__editorExtras__": {},
  12331. "node": {
  12332. "__id__": 322
  12333. },
  12334. "_enabled": true,
  12335. "__prefab": null,
  12336. "_customMaterial": null,
  12337. "_srcBlendFactor": 2,
  12338. "_dstBlendFactor": 4,
  12339. "_color": {
  12340. "__type__": "cc.Color",
  12341. "r": 236,
  12342. "g": 58,
  12343. "b": 58,
  12344. "a": 255
  12345. },
  12346. "_string": "战斗模式",
  12347. "_horizontalAlign": 1,
  12348. "_verticalAlign": 1,
  12349. "_actualFontSize": 50,
  12350. "_fontSize": 50,
  12351. "_fontFamily": "Arial",
  12352. "_lineHeight": 50,
  12353. "_overflow": 0,
  12354. "_enableWrapText": true,
  12355. "_font": null,
  12356. "_isSystemFontUsed": true,
  12357. "_spacingX": 0,
  12358. "_isItalic": false,
  12359. "_isBold": false,
  12360. "_isUnderline": false,
  12361. "_underlineHeight": 2,
  12362. "_cacheMode": 0,
  12363. "_enableOutline": true,
  12364. "_outlineColor": {
  12365. "__type__": "cc.Color",
  12366. "r": 247,
  12367. "g": 140,
  12368. "b": 140,
  12369. "a": 255
  12370. },
  12371. "_outlineWidth": 1,
  12372. "_enableShadow": false,
  12373. "_shadowColor": {
  12374. "__type__": "cc.Color",
  12375. "r": 0,
  12376. "g": 0,
  12377. "b": 0,
  12378. "a": 255
  12379. },
  12380. "_shadowOffset": {
  12381. "__type__": "cc.Vec2",
  12382. "x": 2,
  12383. "y": 2
  12384. },
  12385. "_shadowBlur": 2,
  12386. "_id": "e3Rh/5GLFPRJb1I0TQ52g3"
  12387. },
  12388. {
  12389. "__type__": "cc.Widget",
  12390. "_name": "",
  12391. "_objFlags": 0,
  12392. "__editorExtras__": {},
  12393. "node": {
  12394. "__id__": 322
  12395. },
  12396. "_enabled": true,
  12397. "__prefab": null,
  12398. "_alignFlags": 8,
  12399. "_target": null,
  12400. "_left": 179,
  12401. "_right": 0,
  12402. "_top": 0,
  12403. "_bottom": 0,
  12404. "_horizontalCenter": 0,
  12405. "_verticalCenter": 0,
  12406. "_isAbsLeft": true,
  12407. "_isAbsRight": true,
  12408. "_isAbsTop": true,
  12409. "_isAbsBottom": true,
  12410. "_isAbsHorizontalCenter": true,
  12411. "_isAbsVerticalCenter": true,
  12412. "_originalWidth": 0,
  12413. "_originalHeight": 0,
  12414. "_alignMode": 2,
  12415. "_lockFlags": 0,
  12416. "_id": "d0pJVtRCdKpZpeG2Wp3tJd"
  12417. },
  12418. {
  12419. "__type__": "cc.UITransform",
  12420. "_name": "",
  12421. "_objFlags": 0,
  12422. "__editorExtras__": {},
  12423. "node": {
  12424. "__id__": 292
  12425. },
  12426. "_enabled": true,
  12427. "__prefab": null,
  12428. "_contentSize": {
  12429. "__type__": "cc.Size",
  12430. "width": 1280,
  12431. "height": 120
  12432. },
  12433. "_anchorPoint": {
  12434. "__type__": "cc.Vec2",
  12435. "x": 0.5,
  12436. "y": 0.5
  12437. },
  12438. "_id": "e8XVfzC5dH5IV21dMIBg/U"
  12439. },
  12440. {
  12441. "__type__": "cc.Sprite",
  12442. "_name": "",
  12443. "_objFlags": 0,
  12444. "__editorExtras__": {},
  12445. "node": {
  12446. "__id__": 292
  12447. },
  12448. "_enabled": true,
  12449. "__prefab": null,
  12450. "_customMaterial": null,
  12451. "_srcBlendFactor": 2,
  12452. "_dstBlendFactor": 4,
  12453. "_color": {
  12454. "__type__": "cc.Color",
  12455. "r": 117,
  12456. "g": 113,
  12457. "b": 113,
  12458. "a": 255
  12459. },
  12460. "_spriteFrame": {
  12461. "__uuid__": "1ec19ffb-822e-46c7-814a-dc668a04afe9@cd29a",
  12462. "__expectedType__": "cc.SpriteFrame"
  12463. },
  12464. "_type": 0,
  12465. "_fillType": 0,
  12466. "_sizeMode": 0,
  12467. "_fillCenter": {
  12468. "__type__": "cc.Vec2",
  12469. "x": 0,
  12470. "y": 0
  12471. },
  12472. "_fillStart": 0,
  12473. "_fillRange": 0,
  12474. "_isTrimmedMode": true,
  12475. "_useGrayscale": false,
  12476. "_atlas": null,
  12477. "_id": "69YTqMsdVP1qtI0XnjVuRy"
  12478. },
  12479. {
  12480. "__type__": "282f67D5HpMKJznvZ8CCmiD",
  12481. "_name": "",
  12482. "_objFlags": 0,
  12483. "__editorExtras__": {},
  12484. "node": {
  12485. "__id__": 292
  12486. },
  12487. "_enabled": true,
  12488. "__prefab": null,
  12489. "_id": "23PpNzOFlFDKiYMO/IR0i2"
  12490. },
  12491. {
  12492. "__type__": "cc.Widget",
  12493. "_name": "",
  12494. "_objFlags": 0,
  12495. "__editorExtras__": {},
  12496. "node": {
  12497. "__id__": 292
  12498. },
  12499. "_enabled": true,
  12500. "__prefab": null,
  12501. "_alignFlags": 41,
  12502. "_target": {
  12503. "__id__": 5
  12504. },
  12505. "_left": 0,
  12506. "_right": 0,
  12507. "_top": 0,
  12508. "_bottom": 600,
  12509. "_horizontalCenter": 0,
  12510. "_verticalCenter": 0,
  12511. "_isAbsLeft": true,
  12512. "_isAbsRight": true,
  12513. "_isAbsTop": true,
  12514. "_isAbsBottom": true,
  12515. "_isAbsHorizontalCenter": true,
  12516. "_isAbsVerticalCenter": true,
  12517. "_originalWidth": 1280,
  12518. "_originalHeight": 120,
  12519. "_alignMode": 2,
  12520. "_lockFlags": 0,
  12521. "_id": "c6kfKT9kRNcqL4e/lIbTVB"
  12522. },
  12523. {
  12524. "__type__": "cc.UITransform",
  12525. "_name": "",
  12526. "_objFlags": 0,
  12527. "__editorExtras__": {},
  12528. "node": {
  12529. "__id__": 5
  12530. },
  12531. "_enabled": true,
  12532. "__prefab": null,
  12533. "_contentSize": {
  12534. "__type__": "cc.Size",
  12535. "width": 1280,
  12536. "height": 720
  12537. },
  12538. "_anchorPoint": {
  12539. "__type__": "cc.Vec2",
  12540. "x": 0.5,
  12541. "y": 0.5
  12542. },
  12543. "_id": "23UXDiTnZI0pJsgr2r7LI7"
  12544. },
  12545. {
  12546. "__type__": "cc.Widget",
  12547. "_name": "",
  12548. "_objFlags": 0,
  12549. "__editorExtras__": {},
  12550. "node": {
  12551. "__id__": 5
  12552. },
  12553. "_enabled": true,
  12554. "__prefab": null,
  12555. "_alignFlags": 12,
  12556. "_target": {
  12557. "__id__": 2
  12558. },
  12559. "_left": 0,
  12560. "_right": 590,
  12561. "_top": 310,
  12562. "_bottom": 0,
  12563. "_horizontalCenter": 0,
  12564. "_verticalCenter": 0,
  12565. "_isAbsLeft": true,
  12566. "_isAbsRight": true,
  12567. "_isAbsTop": true,
  12568. "_isAbsBottom": true,
  12569. "_isAbsHorizontalCenter": true,
  12570. "_isAbsVerticalCenter": true,
  12571. "_originalWidth": 100,
  12572. "_originalHeight": 100,
  12573. "_alignMode": 2,
  12574. "_lockFlags": 0,
  12575. "_id": "e4KthIZu5HCrsF3x8F8bbV"
  12576. },
  12577. {
  12578. "__type__": "85935JrKhdBO5p/ZG5uEy7O",
  12579. "_name": "",
  12580. "_objFlags": 0,
  12581. "__editorExtras__": {},
  12582. "node": {
  12583. "__id__": 5
  12584. },
  12585. "_enabled": true,
  12586. "__prefab": null,
  12587. "_id": "1dcpWBeKNITJiLr2F3sil6"
  12588. },
  12589. {
  12590. "__type__": "cc.Node",
  12591. "_name": "UIRoot",
  12592. "_objFlags": 0,
  12593. "__editorExtras__": {},
  12594. "_parent": {
  12595. "__id__": 2
  12596. },
  12597. "_children": [
  12598. {
  12599. "__id__": 334
  12600. },
  12601. {
  12602. "__id__": 337
  12603. },
  12604. {
  12605. "__id__": 340
  12606. }
  12607. ],
  12608. "_active": true,
  12609. "_components": [
  12610. {
  12611. "__id__": 343
  12612. },
  12613. {
  12614. "__id__": 344
  12615. }
  12616. ],
  12617. "_prefab": null,
  12618. "_lpos": {
  12619. "__type__": "cc.Vec3",
  12620. "x": 0,
  12621. "y": 0,
  12622. "z": 0
  12623. },
  12624. "_lrot": {
  12625. "__type__": "cc.Quat",
  12626. "x": 0,
  12627. "y": 0,
  12628. "z": 0,
  12629. "w": 1
  12630. },
  12631. "_lscale": {
  12632. "__type__": "cc.Vec3",
  12633. "x": 1,
  12634. "y": 1,
  12635. "z": 1
  12636. },
  12637. "_mobility": 0,
  12638. "_layer": 33554432,
  12639. "_euler": {
  12640. "__type__": "cc.Vec3",
  12641. "x": 0,
  12642. "y": 0,
  12643. "z": 0
  12644. },
  12645. "_id": "7d6oNX3xVO0rXs1kWSThv7"
  12646. },
  12647. {
  12648. "__type__": "cc.Node",
  12649. "_name": "Page",
  12650. "_objFlags": 0,
  12651. "__editorExtras__": {},
  12652. "_parent": {
  12653. "__id__": 333
  12654. },
  12655. "_children": [],
  12656. "_active": true,
  12657. "_components": [
  12658. {
  12659. "__id__": 335
  12660. },
  12661. {
  12662. "__id__": 336
  12663. }
  12664. ],
  12665. "_prefab": null,
  12666. "_lpos": {
  12667. "__type__": "cc.Vec3",
  12668. "x": 0,
  12669. "y": 0,
  12670. "z": 0
  12671. },
  12672. "_lrot": {
  12673. "__type__": "cc.Quat",
  12674. "x": 0,
  12675. "y": 0,
  12676. "z": 0,
  12677. "w": 1
  12678. },
  12679. "_lscale": {
  12680. "__type__": "cc.Vec3",
  12681. "x": 1,
  12682. "y": 1,
  12683. "z": 1
  12684. },
  12685. "_mobility": 0,
  12686. "_layer": 33554432,
  12687. "_euler": {
  12688. "__type__": "cc.Vec3",
  12689. "x": 0,
  12690. "y": 0,
  12691. "z": 0
  12692. },
  12693. "_id": "8dAabxAdtISbQZSXf3e/U4"
  12694. },
  12695. {
  12696. "__type__": "cc.UITransform",
  12697. "_name": "",
  12698. "_objFlags": 0,
  12699. "__editorExtras__": {},
  12700. "node": {
  12701. "__id__": 334
  12702. },
  12703. "_enabled": true,
  12704. "__prefab": null,
  12705. "_contentSize": {
  12706. "__type__": "cc.Size",
  12707. "width": 1280,
  12708. "height": 720
  12709. },
  12710. "_anchorPoint": {
  12711. "__type__": "cc.Vec2",
  12712. "x": 0.5,
  12713. "y": 0.5
  12714. },
  12715. "_id": "dbhq6HWe1KzZ+rO1G224V2"
  12716. },
  12717. {
  12718. "__type__": "cc.Widget",
  12719. "_name": "",
  12720. "_objFlags": 0,
  12721. "__editorExtras__": {},
  12722. "node": {
  12723. "__id__": 334
  12724. },
  12725. "_enabled": true,
  12726. "__prefab": null,
  12727. "_alignFlags": 45,
  12728. "_target": null,
  12729. "_left": 0,
  12730. "_right": 0,
  12731. "_top": 0,
  12732. "_bottom": 0,
  12733. "_horizontalCenter": 0,
  12734. "_verticalCenter": 0,
  12735. "_isAbsLeft": true,
  12736. "_isAbsRight": true,
  12737. "_isAbsTop": true,
  12738. "_isAbsBottom": true,
  12739. "_isAbsHorizontalCenter": true,
  12740. "_isAbsVerticalCenter": true,
  12741. "_originalWidth": 100,
  12742. "_originalHeight": 100,
  12743. "_alignMode": 2,
  12744. "_lockFlags": 0,
  12745. "_id": "67KDXdMFxCb50JUjMuwktU"
  12746. },
  12747. {
  12748. "__type__": "cc.Node",
  12749. "_name": "Widget",
  12750. "_objFlags": 0,
  12751. "__editorExtras__": {},
  12752. "_parent": {
  12753. "__id__": 333
  12754. },
  12755. "_children": [],
  12756. "_active": true,
  12757. "_components": [
  12758. {
  12759. "__id__": 338
  12760. },
  12761. {
  12762. "__id__": 339
  12763. }
  12764. ],
  12765. "_prefab": null,
  12766. "_lpos": {
  12767. "__type__": "cc.Vec3",
  12768. "x": 0,
  12769. "y": 0,
  12770. "z": 0
  12771. },
  12772. "_lrot": {
  12773. "__type__": "cc.Quat",
  12774. "x": 0,
  12775. "y": 0,
  12776. "z": 0,
  12777. "w": 1
  12778. },
  12779. "_lscale": {
  12780. "__type__": "cc.Vec3",
  12781. "x": 1,
  12782. "y": 1,
  12783. "z": 1
  12784. },
  12785. "_mobility": 0,
  12786. "_layer": 33554432,
  12787. "_euler": {
  12788. "__type__": "cc.Vec3",
  12789. "x": 0,
  12790. "y": 0,
  12791. "z": 0
  12792. },
  12793. "_id": "a4U78aFLJEYp5fiRjYGLHY"
  12794. },
  12795. {
  12796. "__type__": "cc.UITransform",
  12797. "_name": "",
  12798. "_objFlags": 0,
  12799. "__editorExtras__": {},
  12800. "node": {
  12801. "__id__": 337
  12802. },
  12803. "_enabled": true,
  12804. "__prefab": null,
  12805. "_contentSize": {
  12806. "__type__": "cc.Size",
  12807. "width": 1280,
  12808. "height": 720
  12809. },
  12810. "_anchorPoint": {
  12811. "__type__": "cc.Vec2",
  12812. "x": 0.5,
  12813. "y": 0.5
  12814. },
  12815. "_id": "40NR6Rli1E0KBvKXf52fSF"
  12816. },
  12817. {
  12818. "__type__": "cc.Widget",
  12819. "_name": "",
  12820. "_objFlags": 0,
  12821. "__editorExtras__": {},
  12822. "node": {
  12823. "__id__": 337
  12824. },
  12825. "_enabled": true,
  12826. "__prefab": null,
  12827. "_alignFlags": 45,
  12828. "_target": null,
  12829. "_left": 0,
  12830. "_right": 0,
  12831. "_top": 0,
  12832. "_bottom": 0,
  12833. "_horizontalCenter": 0,
  12834. "_verticalCenter": 0,
  12835. "_isAbsLeft": true,
  12836. "_isAbsRight": true,
  12837. "_isAbsTop": true,
  12838. "_isAbsBottom": true,
  12839. "_isAbsHorizontalCenter": true,
  12840. "_isAbsVerticalCenter": true,
  12841. "_originalWidth": 100,
  12842. "_originalHeight": 100,
  12843. "_alignMode": 2,
  12844. "_lockFlags": 0,
  12845. "_id": "91DsLENFJNwK19mae6qN0j"
  12846. },
  12847. {
  12848. "__type__": "cc.Node",
  12849. "_name": "PopWin",
  12850. "_objFlags": 0,
  12851. "__editorExtras__": {},
  12852. "_parent": {
  12853. "__id__": 333
  12854. },
  12855. "_children": [],
  12856. "_active": true,
  12857. "_components": [
  12858. {
  12859. "__id__": 341
  12860. },
  12861. {
  12862. "__id__": 342
  12863. }
  12864. ],
  12865. "_prefab": null,
  12866. "_lpos": {
  12867. "__type__": "cc.Vec3",
  12868. "x": -2.8880000000000337,
  12869. "y": 0,
  12870. "z": 0
  12871. },
  12872. "_lrot": {
  12873. "__type__": "cc.Quat",
  12874. "x": 0,
  12875. "y": 0,
  12876. "z": 0,
  12877. "w": 1
  12878. },
  12879. "_lscale": {
  12880. "__type__": "cc.Vec3",
  12881. "x": 1,
  12882. "y": 1,
  12883. "z": 1
  12884. },
  12885. "_mobility": 0,
  12886. "_layer": 33554432,
  12887. "_euler": {
  12888. "__type__": "cc.Vec3",
  12889. "x": 0,
  12890. "y": 0,
  12891. "z": 0
  12892. },
  12893. "_id": "181d2UWcNMIYlJkAJG8ZeL"
  12894. },
  12895. {
  12896. "__type__": "cc.UITransform",
  12897. "_name": "",
  12898. "_objFlags": 0,
  12899. "__editorExtras__": {},
  12900. "node": {
  12901. "__id__": 340
  12902. },
  12903. "_enabled": true,
  12904. "__prefab": null,
  12905. "_contentSize": {
  12906. "__type__": "cc.Size",
  12907. "width": 1280,
  12908. "height": 720
  12909. },
  12910. "_anchorPoint": {
  12911. "__type__": "cc.Vec2",
  12912. "x": 0.5,
  12913. "y": 0.5
  12914. },
  12915. "_id": "ccGiow+ChNa7YMuumXgNzY"
  12916. },
  12917. {
  12918. "__type__": "cc.Widget",
  12919. "_name": "",
  12920. "_objFlags": 0,
  12921. "__editorExtras__": {},
  12922. "node": {
  12923. "__id__": 340
  12924. },
  12925. "_enabled": true,
  12926. "__prefab": null,
  12927. "_alignFlags": 45,
  12928. "_target": null,
  12929. "_left": -2.888,
  12930. "_right": 2.888,
  12931. "_top": 0,
  12932. "_bottom": 0,
  12933. "_horizontalCenter": 0,
  12934. "_verticalCenter": 0,
  12935. "_isAbsLeft": true,
  12936. "_isAbsRight": true,
  12937. "_isAbsTop": true,
  12938. "_isAbsBottom": true,
  12939. "_isAbsHorizontalCenter": true,
  12940. "_isAbsVerticalCenter": true,
  12941. "_originalWidth": 100,
  12942. "_originalHeight": 100,
  12943. "_alignMode": 2,
  12944. "_lockFlags": 0,
  12945. "_id": "4bLPp6sxNNyLtdE5fcWt+d"
  12946. },
  12947. {
  12948. "__type__": "cc.UITransform",
  12949. "_name": "",
  12950. "_objFlags": 0,
  12951. "__editorExtras__": {},
  12952. "node": {
  12953. "__id__": 333
  12954. },
  12955. "_enabled": true,
  12956. "__prefab": null,
  12957. "_contentSize": {
  12958. "__type__": "cc.Size",
  12959. "width": 1280,
  12960. "height": 720
  12961. },
  12962. "_anchorPoint": {
  12963. "__type__": "cc.Vec2",
  12964. "x": 0.5,
  12965. "y": 0.5
  12966. },
  12967. "_id": "d5ilyx1hFKIL+knOleWonu"
  12968. },
  12969. {
  12970. "__type__": "cc.Widget",
  12971. "_name": "",
  12972. "_objFlags": 0,
  12973. "__editorExtras__": {},
  12974. "node": {
  12975. "__id__": 333
  12976. },
  12977. "_enabled": true,
  12978. "__prefab": null,
  12979. "_alignFlags": 45,
  12980. "_target": {
  12981. "__id__": 2
  12982. },
  12983. "_left": 0,
  12984. "_right": 0,
  12985. "_top": 0,
  12986. "_bottom": 0,
  12987. "_horizontalCenter": 0,
  12988. "_verticalCenter": 0,
  12989. "_isAbsLeft": true,
  12990. "_isAbsRight": true,
  12991. "_isAbsTop": true,
  12992. "_isAbsBottom": true,
  12993. "_isAbsHorizontalCenter": true,
  12994. "_isAbsVerticalCenter": true,
  12995. "_originalWidth": 100,
  12996. "_originalHeight": 100,
  12997. "_alignMode": 2,
  12998. "_lockFlags": 0,
  12999. "_id": "d47nc2dq1KcqImyMR2FvbP"
  13000. },
  13001. {
  13002. "__type__": "cc.UITransform",
  13003. "_name": "",
  13004. "_objFlags": 0,
  13005. "__editorExtras__": {},
  13006. "node": {
  13007. "__id__": 2
  13008. },
  13009. "_enabled": true,
  13010. "__prefab": null,
  13011. "_contentSize": {
  13012. "__type__": "cc.Size",
  13013. "width": 1280,
  13014. "height": 720
  13015. },
  13016. "_anchorPoint": {
  13017. "__type__": "cc.Vec2",
  13018. "x": 0.5,
  13019. "y": 0.5
  13020. },
  13021. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  13022. },
  13023. {
  13024. "__type__": "cc.Canvas",
  13025. "_name": "",
  13026. "_objFlags": 0,
  13027. "__editorExtras__": {},
  13028. "node": {
  13029. "__id__": 2
  13030. },
  13031. "_enabled": true,
  13032. "__prefab": null,
  13033. "_cameraComponent": {
  13034. "__id__": 4
  13035. },
  13036. "_alignCanvasWithScreen": true,
  13037. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  13038. },
  13039. {
  13040. "__type__": "cc.Widget",
  13041. "_name": "",
  13042. "_objFlags": 0,
  13043. "__editorExtras__": {},
  13044. "node": {
  13045. "__id__": 2
  13046. },
  13047. "_enabled": true,
  13048. "__prefab": null,
  13049. "_alignFlags": 45,
  13050. "_target": {
  13051. "__id__": 1
  13052. },
  13053. "_left": 0,
  13054. "_right": 0,
  13055. "_top": 5.684341886080802e-14,
  13056. "_bottom": 5.684341886080802e-14,
  13057. "_horizontalCenter": 0,
  13058. "_verticalCenter": 0,
  13059. "_isAbsLeft": true,
  13060. "_isAbsRight": true,
  13061. "_isAbsTop": true,
  13062. "_isAbsBottom": true,
  13063. "_isAbsHorizontalCenter": true,
  13064. "_isAbsVerticalCenter": true,
  13065. "_originalWidth": 0,
  13066. "_originalHeight": 0,
  13067. "_alignMode": 2,
  13068. "_lockFlags": 0,
  13069. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  13070. },
  13071. {
  13072. "__type__": "010ac7u73pHUqXGhX3uxjfh",
  13073. "_name": "",
  13074. "_objFlags": 0,
  13075. "__editorExtras__": {},
  13076. "node": {
  13077. "__id__": 2
  13078. },
  13079. "_enabled": true,
  13080. "__prefab": null,
  13081. "_id": "c5iZQmWqNGKKJl4bHf/bIu"
  13082. },
  13083. {
  13084. "__type__": "cc.PrefabInfo",
  13085. "root": null,
  13086. "asset": null,
  13087. "fileId": "099ece80-6a52-4fc1-8f49-dcd0345183d0",
  13088. "instance": null,
  13089. "targetOverrides": [
  13090. {
  13091. "__id__": 350
  13092. },
  13093. {
  13094. "__id__": 353
  13095. },
  13096. {
  13097. "__id__": 356
  13098. },
  13099. {
  13100. "__id__": 359
  13101. },
  13102. {
  13103. "__id__": 362
  13104. },
  13105. {
  13106. "__id__": 365
  13107. }
  13108. ]
  13109. },
  13110. {
  13111. "__type__": "cc.TargetOverrideInfo",
  13112. "source": {
  13113. "__id__": 18
  13114. },
  13115. "sourceInfo": {
  13116. "__id__": 351
  13117. },
  13118. "propertyPath": [
  13119. "_target"
  13120. ],
  13121. "target": {
  13122. "__id__": 18
  13123. },
  13124. "targetInfo": {
  13125. "__id__": 352
  13126. }
  13127. },
  13128. {
  13129. "__type__": "cc.TargetInfo",
  13130. "localID": [
  13131. "cbHAR4hGtAc7HaQ9Pbqy0C"
  13132. ]
  13133. },
  13134. {
  13135. "__type__": "cc.TargetInfo",
  13136. "localID": [
  13137. "fd09Tvo65IYrsoE8zvGdL6"
  13138. ]
  13139. },
  13140. {
  13141. "__type__": "cc.TargetOverrideInfo",
  13142. "source": {
  13143. "__id__": 18
  13144. },
  13145. "sourceInfo": {
  13146. "__id__": 354
  13147. },
  13148. "propertyPath": [
  13149. "_target"
  13150. ],
  13151. "target": {
  13152. "__id__": 18
  13153. },
  13154. "targetInfo": {
  13155. "__id__": 355
  13156. }
  13157. },
  13158. {
  13159. "__type__": "cc.TargetInfo",
  13160. "localID": [
  13161. "63zd3HD/FMd5DRCbWZCKl/"
  13162. ]
  13163. },
  13164. {
  13165. "__type__": "cc.TargetInfo",
  13166. "localID": [
  13167. "efuGIb08lIqJLXj+DF7omK"
  13168. ]
  13169. },
  13170. {
  13171. "__type__": "cc.TargetOverrideInfo",
  13172. "source": {
  13173. "__id__": 51
  13174. },
  13175. "sourceInfo": {
  13176. "__id__": 357
  13177. },
  13178. "propertyPath": [
  13179. "_target"
  13180. ],
  13181. "target": {
  13182. "__id__": 51
  13183. },
  13184. "targetInfo": {
  13185. "__id__": 358
  13186. }
  13187. },
  13188. {
  13189. "__type__": "cc.TargetInfo",
  13190. "localID": [
  13191. "5aL9e1QDtH2LnX+a+E3b2C"
  13192. ]
  13193. },
  13194. {
  13195. "__type__": "cc.TargetInfo",
  13196. "localID": [
  13197. "97fKfEqANJ8I3HOQsMxzaZ"
  13198. ]
  13199. },
  13200. {
  13201. "__type__": "cc.TargetOverrideInfo",
  13202. "source": {
  13203. "__id__": 51
  13204. },
  13205. "sourceInfo": {
  13206. "__id__": 360
  13207. },
  13208. "propertyPath": [
  13209. "_target"
  13210. ],
  13211. "target": {
  13212. "__id__": 51
  13213. },
  13214. "targetInfo": {
  13215. "__id__": 361
  13216. }
  13217. },
  13218. {
  13219. "__type__": "cc.TargetInfo",
  13220. "localID": [
  13221. "86oQpomOpPG6TLpNH5hipL"
  13222. ]
  13223. },
  13224. {
  13225. "__type__": "cc.TargetInfo",
  13226. "localID": [
  13227. "c9Ze9LWgRCyJ20Mo6qnoVf"
  13228. ]
  13229. },
  13230. {
  13231. "__type__": "cc.TargetOverrideInfo",
  13232. "source": {
  13233. "__id__": 51
  13234. },
  13235. "sourceInfo": {
  13236. "__id__": 363
  13237. },
  13238. "propertyPath": [
  13239. "_target"
  13240. ],
  13241. "target": {
  13242. "__id__": 51
  13243. },
  13244. "targetInfo": {
  13245. "__id__": 364
  13246. }
  13247. },
  13248. {
  13249. "__type__": "cc.TargetInfo",
  13250. "localID": [
  13251. "48GqkPVnZK1reGm6oRN8EF"
  13252. ]
  13253. },
  13254. {
  13255. "__type__": "cc.TargetInfo",
  13256. "localID": [
  13257. "4b3t7YEQtC26yVDkSXWHvD"
  13258. ]
  13259. },
  13260. {
  13261. "__type__": "cc.TargetOverrideInfo",
  13262. "source": {
  13263. "__id__": 51
  13264. },
  13265. "sourceInfo": {
  13266. "__id__": 366
  13267. },
  13268. "propertyPath": [
  13269. "_target"
  13270. ],
  13271. "target": {
  13272. "__id__": 51
  13273. },
  13274. "targetInfo": {
  13275. "__id__": 367
  13276. }
  13277. },
  13278. {
  13279. "__type__": "cc.TargetInfo",
  13280. "localID": [
  13281. "2fVHJHTKJKZLcz8o56kzq1"
  13282. ]
  13283. },
  13284. {
  13285. "__type__": "cc.TargetInfo",
  13286. "localID": [
  13287. "0eM5MhQ0pJ56gBbzz0s+J7"
  13288. ]
  13289. },
  13290. {
  13291. "__type__": "cc.SceneGlobals",
  13292. "ambient": {
  13293. "__id__": 369
  13294. },
  13295. "shadows": {
  13296. "__id__": 370
  13297. },
  13298. "_skybox": {
  13299. "__id__": 371
  13300. },
  13301. "fog": {
  13302. "__id__": 372
  13303. },
  13304. "octree": {
  13305. "__id__": 373
  13306. },
  13307. "skin": {
  13308. "__id__": 374
  13309. },
  13310. "lightProbeInfo": {
  13311. "__id__": 375
  13312. },
  13313. "postSettings": {
  13314. "__id__": 376
  13315. },
  13316. "bakedWithStationaryMainLight": false,
  13317. "bakedWithHighpLightmap": false
  13318. },
  13319. {
  13320. "__type__": "cc.AmbientInfo",
  13321. "_skyColorHDR": {
  13322. "__type__": "cc.Vec4",
  13323. "x": 0,
  13324. "y": 0,
  13325. "z": 0,
  13326. "w": 0.520833125
  13327. },
  13328. "_skyColor": {
  13329. "__type__": "cc.Vec4",
  13330. "x": 0,
  13331. "y": 0,
  13332. "z": 0,
  13333. "w": 0.520833125
  13334. },
  13335. "_skyIllumHDR": 20000,
  13336. "_skyIllum": 20000,
  13337. "_groundAlbedoHDR": {
  13338. "__type__": "cc.Vec4",
  13339. "x": 0,
  13340. "y": 0,
  13341. "z": 0,
  13342. "w": 0
  13343. },
  13344. "_groundAlbedo": {
  13345. "__type__": "cc.Vec4",
  13346. "x": 0,
  13347. "y": 0,
  13348. "z": 0,
  13349. "w": 0
  13350. },
  13351. "_skyColorLDR": {
  13352. "__type__": "cc.Vec4",
  13353. "x": 0.2,
  13354. "y": 0.5,
  13355. "z": 0.8,
  13356. "w": 1
  13357. },
  13358. "_skyIllumLDR": 20000,
  13359. "_groundAlbedoLDR": {
  13360. "__type__": "cc.Vec4",
  13361. "x": 0.2,
  13362. "y": 0.2,
  13363. "z": 0.2,
  13364. "w": 1
  13365. }
  13366. },
  13367. {
  13368. "__type__": "cc.ShadowsInfo",
  13369. "_enabled": false,
  13370. "_type": 0,
  13371. "_normal": {
  13372. "__type__": "cc.Vec3",
  13373. "x": 0,
  13374. "y": 1,
  13375. "z": 0
  13376. },
  13377. "_distance": 0,
  13378. "_planeBias": 1,
  13379. "_shadowColor": {
  13380. "__type__": "cc.Color",
  13381. "r": 76,
  13382. "g": 76,
  13383. "b": 76,
  13384. "a": 255
  13385. },
  13386. "_maxReceived": 4,
  13387. "_size": {
  13388. "__type__": "cc.Vec2",
  13389. "x": 512,
  13390. "y": 512
  13391. }
  13392. },
  13393. {
  13394. "__type__": "cc.SkyboxInfo",
  13395. "_envLightingType": 0,
  13396. "_envmapHDR": null,
  13397. "_envmap": null,
  13398. "_envmapLDR": null,
  13399. "_diffuseMapHDR": null,
  13400. "_diffuseMapLDR": null,
  13401. "_enabled": false,
  13402. "_useHDR": true,
  13403. "_editableMaterial": null,
  13404. "_reflectionHDR": null,
  13405. "_reflectionLDR": null,
  13406. "_rotationAngle": 0
  13407. },
  13408. {
  13409. "__type__": "cc.FogInfo",
  13410. "_type": 0,
  13411. "_fogColor": {
  13412. "__type__": "cc.Color",
  13413. "r": 200,
  13414. "g": 200,
  13415. "b": 200,
  13416. "a": 255
  13417. },
  13418. "_enabled": false,
  13419. "_fogDensity": 0.3,
  13420. "_fogStart": 0.5,
  13421. "_fogEnd": 300,
  13422. "_fogAtten": 5,
  13423. "_fogTop": 1.5,
  13424. "_fogRange": 1.2,
  13425. "_accurate": false
  13426. },
  13427. {
  13428. "__type__": "cc.OctreeInfo",
  13429. "_enabled": false,
  13430. "_minPos": {
  13431. "__type__": "cc.Vec3",
  13432. "x": -1024,
  13433. "y": -1024,
  13434. "z": -1024
  13435. },
  13436. "_maxPos": {
  13437. "__type__": "cc.Vec3",
  13438. "x": 1024,
  13439. "y": 1024,
  13440. "z": 1024
  13441. },
  13442. "_depth": 8
  13443. },
  13444. {
  13445. "__type__": "cc.SkinInfo",
  13446. "_enabled": false,
  13447. "_blurRadius": 0.01,
  13448. "_sssIntensity": 3
  13449. },
  13450. {
  13451. "__type__": "cc.LightProbeInfo",
  13452. "_giScale": 1,
  13453. "_giSamples": 1024,
  13454. "_bounces": 2,
  13455. "_reduceRinging": 0,
  13456. "_showProbe": true,
  13457. "_showWireframe": true,
  13458. "_showConvex": false,
  13459. "_data": null,
  13460. "_lightProbeSphereVolume": 1
  13461. },
  13462. {
  13463. "__type__": "cc.PostSettingsInfo",
  13464. "_toneMappingType": 0
  13465. }
  13466. ]