game.scene 118 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "game",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_name": "game",
  14. "_objFlags": 0,
  15. "_parent": null,
  16. "_children": [
  17. {
  18. "__id__": 2
  19. },
  20. {
  21. "__id__": 7
  22. }
  23. ],
  24. "_active": true,
  25. "_components": [],
  26. "_prefab": {
  27. "__id__": 190
  28. },
  29. "_lpos": {
  30. "__type__": "cc.Vec3",
  31. "x": 0,
  32. "y": 0,
  33. "z": 0
  34. },
  35. "_lrot": {
  36. "__type__": "cc.Quat",
  37. "x": 0,
  38. "y": 0,
  39. "z": 0,
  40. "w": 1
  41. },
  42. "_lscale": {
  43. "__type__": "cc.Vec3",
  44. "x": 1,
  45. "y": 1,
  46. "z": 1
  47. },
  48. "_mobility": 0,
  49. "_layer": 1073741824,
  50. "_euler": {
  51. "__type__": "cc.Vec3",
  52. "x": 0,
  53. "y": 0,
  54. "z": 0
  55. },
  56. "autoReleaseAssets": false,
  57. "_globals": {
  58. "__id__": 191
  59. },
  60. "_id": "73da9bd2-56ac-47e6-a014-bbc4c2350007"
  61. },
  62. {
  63. "__type__": "cc.Node",
  64. "_name": "Manager",
  65. "_objFlags": 0,
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 185
  75. },
  76. {
  77. "__id__": 188
  78. }
  79. ],
  80. "_active": true,
  81. "_components": [],
  82. "_prefab": null,
  83. "_lpos": {
  84. "__type__": "cc.Vec3",
  85. "x": 0,
  86. "y": 0,
  87. "z": 0
  88. },
  89. "_lrot": {
  90. "__type__": "cc.Quat",
  91. "x": 0,
  92. "y": 0,
  93. "z": 0,
  94. "w": 1
  95. },
  96. "_lscale": {
  97. "__type__": "cc.Vec3",
  98. "x": 1,
  99. "y": 1,
  100. "z": 1
  101. },
  102. "_mobility": 0,
  103. "_layer": 1073741824,
  104. "_euler": {
  105. "__type__": "cc.Vec3",
  106. "x": 0,
  107. "y": 0,
  108. "z": 0
  109. },
  110. "_id": "74KcTb5n9FUrAaCdD5JaBY"
  111. },
  112. {
  113. "__type__": "cc.Node",
  114. "_name": "GameManager",
  115. "_objFlags": 0,
  116. "_parent": {
  117. "__id__": 2
  118. },
  119. "_children": [],
  120. "_active": true,
  121. "_components": [
  122. {
  123. "__id__": 4
  124. }
  125. ],
  126. "_prefab": null,
  127. "_lpos": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_lrot": {
  134. "__type__": "cc.Quat",
  135. "x": 0,
  136. "y": 0,
  137. "z": 0,
  138. "w": 1
  139. },
  140. "_lscale": {
  141. "__type__": "cc.Vec3",
  142. "x": 1,
  143. "y": 1,
  144. "z": 1
  145. },
  146. "_mobility": 0,
  147. "_layer": 1073741824,
  148. "_euler": {
  149. "__type__": "cc.Vec3",
  150. "x": 0,
  151. "y": 0,
  152. "z": 0
  153. },
  154. "_id": "8cAyJzNAZHJbkH4XEbOI37"
  155. },
  156. {
  157. "__type__": "608ccBwdPhH27YwkGx6eB4W",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "node": {
  161. "__id__": 3
  162. },
  163. "_enabled": true,
  164. "__prefab": null,
  165. "uiManager": {
  166. "__id__": 5
  167. },
  168. "IsDevelop": false,
  169. "_id": "eaee6n+WZIjL6CnUDoGtS2"
  170. },
  171. {
  172. "__type__": "00928M5DoFC+JGefNfQ7Xvc",
  173. "_name": "",
  174. "_objFlags": 0,
  175. "node": {
  176. "__id__": 6
  177. },
  178. "_enabled": true,
  179. "__prefab": null,
  180. "fullRoot": {
  181. "__id__": 154
  182. },
  183. "scoreLabel2": {
  184. "__id__": 159
  185. },
  186. "timeLabel2": {
  187. "__id__": 168
  188. },
  189. "levelLabel2": {
  190. "__id__": 177
  191. },
  192. "gameEndTip": {
  193. "__id__": 102
  194. },
  195. "GameMain": {
  196. "__id__": 16
  197. },
  198. "_id": "70XLo86IdHrI5/VwBEXHwY"
  199. },
  200. {
  201. "__type__": "cc.Node",
  202. "_name": "GameMainPanel",
  203. "_objFlags": 0,
  204. "_parent": {
  205. "__id__": 7
  206. },
  207. "_children": [
  208. {
  209. "__id__": 14
  210. },
  211. {
  212. "__id__": 102
  213. },
  214. {
  215. "__id__": 142
  216. },
  217. {
  218. "__id__": 154
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 183
  225. },
  226. {
  227. "__id__": 184
  228. },
  229. {
  230. "__id__": 5
  231. }
  232. ],
  233. "_prefab": null,
  234. "_lpos": {
  235. "__type__": "cc.Vec3",
  236. "x": 0,
  237. "y": 0,
  238. "z": 0
  239. },
  240. "_lrot": {
  241. "__type__": "cc.Quat",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0,
  245. "w": 1
  246. },
  247. "_lscale": {
  248. "__type__": "cc.Vec3",
  249. "x": 0.845,
  250. "y": 0.845,
  251. "z": 1
  252. },
  253. "_mobility": 0,
  254. "_layer": 33554432,
  255. "_euler": {
  256. "__type__": "cc.Vec3",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0
  260. },
  261. "_id": "1bez9Ign9FoKv1lpVS5Rjb"
  262. },
  263. {
  264. "__type__": "cc.Node",
  265. "_name": "Canvas",
  266. "_objFlags": 0,
  267. "_parent": {
  268. "__id__": 1
  269. },
  270. "_children": [
  271. {
  272. "__id__": 8
  273. },
  274. {
  275. "__id__": 6
  276. }
  277. ],
  278. "_active": true,
  279. "_components": [
  280. {
  281. "__id__": 10
  282. },
  283. {
  284. "__id__": 11
  285. },
  286. {
  287. "__id__": 12
  288. },
  289. {
  290. "__id__": 13
  291. }
  292. ],
  293. "_prefab": null,
  294. "_lpos": {
  295. "__type__": "cc.Vec3",
  296. "x": 1000,
  297. "y": 599.9999999999998,
  298. "z": 0
  299. },
  300. "_lrot": {
  301. "__type__": "cc.Quat",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0,
  305. "w": 1
  306. },
  307. "_lscale": {
  308. "__type__": "cc.Vec3",
  309. "x": 1,
  310. "y": 1,
  311. "z": 1
  312. },
  313. "_mobility": 0,
  314. "_layer": 33554432,
  315. "_euler": {
  316. "__type__": "cc.Vec3",
  317. "x": 0,
  318. "y": 0,
  319. "z": 0
  320. },
  321. "_id": "beI88Z2HpFELqR4T5EMHpg"
  322. },
  323. {
  324. "__type__": "cc.Node",
  325. "_name": "Camera",
  326. "_objFlags": 0,
  327. "_parent": {
  328. "__id__": 7
  329. },
  330. "_children": [],
  331. "_active": true,
  332. "_components": [
  333. {
  334. "__id__": 9
  335. }
  336. ],
  337. "_prefab": null,
  338. "_lpos": {
  339. "__type__": "cc.Vec3",
  340. "x": 0,
  341. "y": 0,
  342. "z": 1000
  343. },
  344. "_lrot": {
  345. "__type__": "cc.Quat",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0,
  349. "w": 1
  350. },
  351. "_lscale": {
  352. "__type__": "cc.Vec3",
  353. "x": 1,
  354. "y": 1,
  355. "z": 1
  356. },
  357. "_mobility": 0,
  358. "_layer": 1073741824,
  359. "_euler": {
  360. "__type__": "cc.Vec3",
  361. "x": 0,
  362. "y": 0,
  363. "z": 0
  364. },
  365. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  366. },
  367. {
  368. "__type__": "cc.Camera",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 8
  373. },
  374. "_enabled": true,
  375. "__prefab": null,
  376. "_projection": 0,
  377. "_priority": 1073741824,
  378. "_fov": 45,
  379. "_fovAxis": 0,
  380. "_orthoHeight": 639.2811296534018,
  381. "_near": 0,
  382. "_far": 2000,
  383. "_color": {
  384. "__type__": "cc.Color",
  385. "r": 0,
  386. "g": 0,
  387. "b": 0,
  388. "a": 255
  389. },
  390. "_depth": 1,
  391. "_stencil": 0,
  392. "_clearFlags": 6,
  393. "_rect": {
  394. "__type__": "cc.Rect",
  395. "x": 0,
  396. "y": 0,
  397. "width": 1,
  398. "height": 1
  399. },
  400. "_aperture": 19,
  401. "_shutter": 7,
  402. "_iso": 0,
  403. "_screenScale": 1,
  404. "_visibility": 41943040,
  405. "_targetTexture": null,
  406. "_cameraType": -1,
  407. "_trackingType": 0,
  408. "_id": "63WIch3o5BEYRlXzTT0oWc"
  409. },
  410. {
  411. "__type__": "cc.UITransform",
  412. "_name": "",
  413. "_objFlags": 0,
  414. "node": {
  415. "__id__": 7
  416. },
  417. "_enabled": true,
  418. "__prefab": null,
  419. "_contentSize": {
  420. "__type__": "cc.Size",
  421. "width": 2000,
  422. "height": 1200
  423. },
  424. "_anchorPoint": {
  425. "__type__": "cc.Vec2",
  426. "x": 0.5,
  427. "y": 0.5
  428. },
  429. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  430. },
  431. {
  432. "__type__": "cc.Canvas",
  433. "_name": "",
  434. "_objFlags": 0,
  435. "node": {
  436. "__id__": 7
  437. },
  438. "_enabled": true,
  439. "__prefab": null,
  440. "_cameraComponent": {
  441. "__id__": 9
  442. },
  443. "_alignCanvasWithScreen": true,
  444. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  445. },
  446. {
  447. "__type__": "cc.Widget",
  448. "_name": "",
  449. "_objFlags": 0,
  450. "node": {
  451. "__id__": 7
  452. },
  453. "_enabled": true,
  454. "__prefab": null,
  455. "_alignFlags": 45,
  456. "_target": null,
  457. "_left": -5.684341886080802e-14,
  458. "_right": -5.684341886080802e-14,
  459. "_top": 1.7053025658242404e-13,
  460. "_bottom": -2.8421709430404007e-13,
  461. "_horizontalCenter": 0,
  462. "_verticalCenter": 0,
  463. "_isAbsLeft": true,
  464. "_isAbsRight": true,
  465. "_isAbsTop": true,
  466. "_isAbsBottom": true,
  467. "_isAbsHorizontalCenter": true,
  468. "_isAbsVerticalCenter": true,
  469. "_originalWidth": 0,
  470. "_originalHeight": 0,
  471. "_alignMode": 2,
  472. "_lockFlags": 0,
  473. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  474. },
  475. {
  476. "__type__": "cc.AudioSource",
  477. "_name": "",
  478. "_objFlags": 0,
  479. "node": {
  480. "__id__": 7
  481. },
  482. "_enabled": true,
  483. "__prefab": null,
  484. "_clip": null,
  485. "_loop": false,
  486. "_playOnAwake": true,
  487. "_volume": 1,
  488. "_id": "94YYj+uIpDSqBYRX/Jt7HQ"
  489. },
  490. {
  491. "__type__": "cc.Node",
  492. "_name": "GameRoot",
  493. "_objFlags": 0,
  494. "_parent": {
  495. "__id__": 6
  496. },
  497. "_children": [
  498. {
  499. "__id__": 15
  500. }
  501. ],
  502. "_active": true,
  503. "_components": [
  504. {
  505. "__id__": 100
  506. },
  507. {
  508. "__id__": 101
  509. }
  510. ],
  511. "_prefab": null,
  512. "_lpos": {
  513. "__type__": "cc.Vec3",
  514. "x": 0,
  515. "y": 0,
  516. "z": 0
  517. },
  518. "_lrot": {
  519. "__type__": "cc.Quat",
  520. "x": 0,
  521. "y": 0,
  522. "z": 0,
  523. "w": 1
  524. },
  525. "_lscale": {
  526. "__type__": "cc.Vec3",
  527. "x": 1,
  528. "y": 1,
  529. "z": 1
  530. },
  531. "_mobility": 0,
  532. "_layer": 33554432,
  533. "_euler": {
  534. "__type__": "cc.Vec3",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0
  538. },
  539. "_id": "f2FXLyK6xODqM9j6JFtAfH"
  540. },
  541. {
  542. "__type__": "cc.Node",
  543. "_name": "GameMask",
  544. "_objFlags": 0,
  545. "_parent": {
  546. "__id__": 14
  547. },
  548. "_children": [
  549. {
  550. "__id__": 16
  551. }
  552. ],
  553. "_active": true,
  554. "_components": [
  555. {
  556. "__id__": 97
  557. },
  558. {
  559. "__id__": 98
  560. },
  561. {
  562. "__id__": 99
  563. }
  564. ],
  565. "_prefab": null,
  566. "_lpos": {
  567. "__type__": "cc.Vec3",
  568. "x": 0,
  569. "y": 0,
  570. "z": 0
  571. },
  572. "_lrot": {
  573. "__type__": "cc.Quat",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0,
  577. "w": 1
  578. },
  579. "_lscale": {
  580. "__type__": "cc.Vec3",
  581. "x": 1,
  582. "y": 1,
  583. "z": 1
  584. },
  585. "_mobility": 0,
  586. "_layer": 33554432,
  587. "_euler": {
  588. "__type__": "cc.Vec3",
  589. "x": 0,
  590. "y": 0,
  591. "z": 0
  592. },
  593. "_id": "44/0d3Z7JMwZJiB2DpX1lc"
  594. },
  595. {
  596. "__type__": "cc.Node",
  597. "_name": "GameBg",
  598. "_objFlags": 0,
  599. "_parent": {
  600. "__id__": 15
  601. },
  602. "_children": [
  603. {
  604. "__id__": 17
  605. },
  606. {
  607. "__id__": 22
  608. },
  609. {
  610. "__id__": 33
  611. },
  612. {
  613. "__id__": 44
  614. },
  615. {
  616. "__id__": 55
  617. },
  618. {
  619. "__id__": 66
  620. },
  621. {
  622. "__id__": 77
  623. },
  624. {
  625. "__id__": 88
  626. },
  627. {
  628. "__id__": 91
  629. }
  630. ],
  631. "_active": true,
  632. "_components": [
  633. {
  634. "__id__": 94
  635. },
  636. {
  637. "__id__": 95
  638. },
  639. {
  640. "__id__": 96
  641. }
  642. ],
  643. "_prefab": null,
  644. "_lpos": {
  645. "__type__": "cc.Vec3",
  646. "x": -0.5704142011838655,
  647. "y": 0,
  648. "z": 0
  649. },
  650. "_lrot": {
  651. "__type__": "cc.Quat",
  652. "x": 0,
  653. "y": 0,
  654. "z": 0,
  655. "w": 1
  656. },
  657. "_lscale": {
  658. "__type__": "cc.Vec3",
  659. "x": 1.25,
  660. "y": 1.25,
  661. "z": 1.25
  662. },
  663. "_mobility": 0,
  664. "_layer": 33554432,
  665. "_euler": {
  666. "__type__": "cc.Vec3",
  667. "x": 0,
  668. "y": 0,
  669. "z": 0
  670. },
  671. "_id": "fbMYAXZSRBv4SEn9jUGqRO"
  672. },
  673. {
  674. "__type__": "cc.Node",
  675. "_name": "people",
  676. "_objFlags": 0,
  677. "_parent": {
  678. "__id__": 16
  679. },
  680. "_children": [],
  681. "_active": true,
  682. "_components": [
  683. {
  684. "__id__": 18
  685. },
  686. {
  687. "__id__": 19
  688. },
  689. {
  690. "__id__": 20
  691. }
  692. ],
  693. "_prefab": null,
  694. "_lpos": {
  695. "__type__": "cc.Vec3",
  696. "x": -556.028,
  697. "y": -339.445,
  698. "z": 0
  699. },
  700. "_lrot": {
  701. "__type__": "cc.Quat",
  702. "x": 0,
  703. "y": 0,
  704. "z": 0,
  705. "w": 1
  706. },
  707. "_lscale": {
  708. "__type__": "cc.Vec3",
  709. "x": 1,
  710. "y": 1,
  711. "z": 1
  712. },
  713. "_mobility": 0,
  714. "_layer": 33554432,
  715. "_euler": {
  716. "__type__": "cc.Vec3",
  717. "x": 0,
  718. "y": 0,
  719. "z": 0
  720. },
  721. "_id": "df6KZYSAVC66+r9VqM2zG5"
  722. },
  723. {
  724. "__type__": "cc.UITransform",
  725. "_name": "",
  726. "_objFlags": 0,
  727. "node": {
  728. "__id__": 17
  729. },
  730. "_enabled": true,
  731. "__prefab": null,
  732. "_contentSize": {
  733. "__type__": "cc.Size",
  734. "width": 206,
  735. "height": 541
  736. },
  737. "_anchorPoint": {
  738. "__type__": "cc.Vec2",
  739. "x": 0.5,
  740. "y": 0.5
  741. },
  742. "_id": "afEBD+KuhLK6b2IC98mQq/"
  743. },
  744. {
  745. "__type__": "cc.Sprite",
  746. "_name": "",
  747. "_objFlags": 0,
  748. "node": {
  749. "__id__": 17
  750. },
  751. "_enabled": true,
  752. "__prefab": null,
  753. "_customMaterial": null,
  754. "_srcBlendFactor": 2,
  755. "_dstBlendFactor": 4,
  756. "_color": {
  757. "__type__": "cc.Color",
  758. "r": 255,
  759. "g": 255,
  760. "b": 255,
  761. "a": 255
  762. },
  763. "_spriteFrame": {
  764. "__uuid__": "21fa14e8-c802-4000-a14a-c020539fae3d@f9941",
  765. "__expectedType__": "cc.SpriteFrame"
  766. },
  767. "_type": 0,
  768. "_fillType": 0,
  769. "_sizeMode": 1,
  770. "_fillCenter": {
  771. "__type__": "cc.Vec2",
  772. "x": 0,
  773. "y": 0
  774. },
  775. "_fillStart": 0,
  776. "_fillRange": 0,
  777. "_isTrimmedMode": true,
  778. "_useGrayscale": false,
  779. "_atlas": null,
  780. "_id": "beOf8j6+FAw7rk6cZSB8HN"
  781. },
  782. {
  783. "__type__": "cc.Button",
  784. "_name": "",
  785. "_objFlags": 0,
  786. "node": {
  787. "__id__": 17
  788. },
  789. "_enabled": false,
  790. "__prefab": null,
  791. "clickEvents": [
  792. {
  793. "__id__": 21
  794. }
  795. ],
  796. "_interactable": true,
  797. "_transition": 0,
  798. "_normalColor": {
  799. "__type__": "cc.Color",
  800. "r": 255,
  801. "g": 255,
  802. "b": 255,
  803. "a": 255
  804. },
  805. "_hoverColor": {
  806. "__type__": "cc.Color",
  807. "r": 211,
  808. "g": 211,
  809. "b": 211,
  810. "a": 255
  811. },
  812. "_pressedColor": {
  813. "__type__": "cc.Color",
  814. "r": 255,
  815. "g": 255,
  816. "b": 255,
  817. "a": 255
  818. },
  819. "_disabledColor": {
  820. "__type__": "cc.Color",
  821. "r": 124,
  822. "g": 124,
  823. "b": 124,
  824. "a": 255
  825. },
  826. "_normalSprite": {
  827. "__uuid__": "21fa14e8-c802-4000-a14a-c020539fae3d@f9941",
  828. "__expectedType__": "cc.SpriteFrame"
  829. },
  830. "_hoverSprite": null,
  831. "_pressedSprite": null,
  832. "_disabledSprite": null,
  833. "_duration": 0.1,
  834. "_zoomScale": 1.2,
  835. "_target": null,
  836. "_id": "5fVGak379G6ImiTL2XYCj/"
  837. },
  838. {
  839. "__type__": "cc.ClickEvent",
  840. "target": {
  841. "__id__": 16
  842. },
  843. "component": "",
  844. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  845. "handler": "clickStart",
  846. "customEventData": ""
  847. },
  848. {
  849. "__type__": "cc.Node",
  850. "_name": "tower1",
  851. "_objFlags": 0,
  852. "_parent": {
  853. "__id__": 16
  854. },
  855. "_children": [
  856. {
  857. "__id__": 23
  858. },
  859. {
  860. "__id__": 26
  861. }
  862. ],
  863. "_active": true,
  864. "_components": [
  865. {
  866. "__id__": 29
  867. },
  868. {
  869. "__id__": 30
  870. },
  871. {
  872. "__id__": 31
  873. }
  874. ],
  875. "_prefab": null,
  876. "_lpos": {
  877. "__type__": "cc.Vec3",
  878. "x": -169.499,
  879. "y": 7.876,
  880. "z": 0
  881. },
  882. "_lrot": {
  883. "__type__": "cc.Quat",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0,
  887. "w": 1
  888. },
  889. "_lscale": {
  890. "__type__": "cc.Vec3",
  891. "x": 1,
  892. "y": 1,
  893. "z": 1
  894. },
  895. "_mobility": 0,
  896. "_layer": 33554432,
  897. "_euler": {
  898. "__type__": "cc.Vec3",
  899. "x": 0,
  900. "y": 0,
  901. "z": 0
  902. },
  903. "_id": "a8Zxeyi9tMwatxg+hy4T2t"
  904. },
  905. {
  906. "__type__": "cc.Node",
  907. "_name": "dong",
  908. "_objFlags": 0,
  909. "_parent": {
  910. "__id__": 22
  911. },
  912. "_children": [],
  913. "_active": false,
  914. "_components": [
  915. {
  916. "__id__": 24
  917. },
  918. {
  919. "__id__": 25
  920. }
  921. ],
  922. "_prefab": null,
  923. "_lpos": {
  924. "__type__": "cc.Vec3",
  925. "x": 40.00099999999975,
  926. "y": -49.12999999999988,
  927. "z": 0
  928. },
  929. "_lrot": {
  930. "__type__": "cc.Quat",
  931. "x": 0,
  932. "y": 0,
  933. "z": 0,
  934. "w": 1
  935. },
  936. "_lscale": {
  937. "__type__": "cc.Vec3",
  938. "x": 1,
  939. "y": 1,
  940. "z": 1
  941. },
  942. "_mobility": 0,
  943. "_layer": 33554432,
  944. "_euler": {
  945. "__type__": "cc.Vec3",
  946. "x": 0,
  947. "y": 0,
  948. "z": 0
  949. },
  950. "_id": "71mEan3w1BxIe0IbxLRyOl"
  951. },
  952. {
  953. "__type__": "cc.UITransform",
  954. "_name": "",
  955. "_objFlags": 0,
  956. "node": {
  957. "__id__": 23
  958. },
  959. "_enabled": true,
  960. "__prefab": null,
  961. "_contentSize": {
  962. "__type__": "cc.Size",
  963. "width": 201,
  964. "height": 166
  965. },
  966. "_anchorPoint": {
  967. "__type__": "cc.Vec2",
  968. "x": 0.5,
  969. "y": 0.5
  970. },
  971. "_id": "074Xank35IAJAcqSsgtIFv"
  972. },
  973. {
  974. "__type__": "cc.Sprite",
  975. "_name": "",
  976. "_objFlags": 0,
  977. "node": {
  978. "__id__": 23
  979. },
  980. "_enabled": true,
  981. "__prefab": null,
  982. "_customMaterial": null,
  983. "_srcBlendFactor": 2,
  984. "_dstBlendFactor": 4,
  985. "_color": {
  986. "__type__": "cc.Color",
  987. "r": 255,
  988. "g": 255,
  989. "b": 255,
  990. "a": 255
  991. },
  992. "_spriteFrame": {
  993. "__uuid__": "fbc3faa1-5e14-4782-9952-7b8d90328d69@f9941",
  994. "__expectedType__": "cc.SpriteFrame"
  995. },
  996. "_type": 0,
  997. "_fillType": 0,
  998. "_sizeMode": 1,
  999. "_fillCenter": {
  1000. "__type__": "cc.Vec2",
  1001. "x": 0,
  1002. "y": 0
  1003. },
  1004. "_fillStart": 0,
  1005. "_fillRange": 0,
  1006. "_isTrimmedMode": true,
  1007. "_useGrayscale": false,
  1008. "_atlas": null,
  1009. "_id": "85zoOxeJNASYprmqS3lvA/"
  1010. },
  1011. {
  1012. "__type__": "cc.Node",
  1013. "_name": "reward",
  1014. "_objFlags": 0,
  1015. "_parent": {
  1016. "__id__": 22
  1017. },
  1018. "_children": [],
  1019. "_active": true,
  1020. "_components": [
  1021. {
  1022. "__id__": 27
  1023. },
  1024. {
  1025. "__id__": 28
  1026. }
  1027. ],
  1028. "_prefab": null,
  1029. "_lpos": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 33.67499999999973,
  1032. "y": -50.15100000000007,
  1033. "z": 0
  1034. },
  1035. "_lrot": {
  1036. "__type__": "cc.Quat",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0,
  1040. "w": 1
  1041. },
  1042. "_lscale": {
  1043. "__type__": "cc.Vec3",
  1044. "x": 1,
  1045. "y": 1,
  1046. "z": 1
  1047. },
  1048. "_mobility": 0,
  1049. "_layer": 33554432,
  1050. "_euler": {
  1051. "__type__": "cc.Vec3",
  1052. "x": 0,
  1053. "y": 0,
  1054. "z": 0
  1055. },
  1056. "_id": "1a2DQIPThL0p+KbOhiN4qn"
  1057. },
  1058. {
  1059. "__type__": "cc.UITransform",
  1060. "_name": "",
  1061. "_objFlags": 0,
  1062. "node": {
  1063. "__id__": 26
  1064. },
  1065. "_enabled": true,
  1066. "__prefab": null,
  1067. "_contentSize": {
  1068. "__type__": "cc.Size",
  1069. "width": 143,
  1070. "height": 132
  1071. },
  1072. "_anchorPoint": {
  1073. "__type__": "cc.Vec2",
  1074. "x": 0.5,
  1075. "y": 0.5
  1076. },
  1077. "_id": "562oQWIkpGZLUDTnUFFFu6"
  1078. },
  1079. {
  1080. "__type__": "cc.Sprite",
  1081. "_name": "",
  1082. "_objFlags": 0,
  1083. "node": {
  1084. "__id__": 26
  1085. },
  1086. "_enabled": true,
  1087. "__prefab": null,
  1088. "_customMaterial": null,
  1089. "_srcBlendFactor": 2,
  1090. "_dstBlendFactor": 4,
  1091. "_color": {
  1092. "__type__": "cc.Color",
  1093. "r": 255,
  1094. "g": 255,
  1095. "b": 255,
  1096. "a": 255
  1097. },
  1098. "_spriteFrame": {
  1099. "__uuid__": "3fd42351-ae7c-4988-bdd6-bb0b29e5019d@f9941",
  1100. "__expectedType__": "cc.SpriteFrame"
  1101. },
  1102. "_type": 0,
  1103. "_fillType": 0,
  1104. "_sizeMode": 1,
  1105. "_fillCenter": {
  1106. "__type__": "cc.Vec2",
  1107. "x": 0,
  1108. "y": 0
  1109. },
  1110. "_fillStart": 0,
  1111. "_fillRange": 0,
  1112. "_isTrimmedMode": true,
  1113. "_useGrayscale": false,
  1114. "_atlas": null,
  1115. "_id": "c3XT8kkXpOaqJqPAFFYIGd"
  1116. },
  1117. {
  1118. "__type__": "cc.UITransform",
  1119. "_name": "",
  1120. "_objFlags": 0,
  1121. "node": {
  1122. "__id__": 22
  1123. },
  1124. "_enabled": true,
  1125. "__prefab": null,
  1126. "_contentSize": {
  1127. "__type__": "cc.Size",
  1128. "width": 463,
  1129. "height": 324
  1130. },
  1131. "_anchorPoint": {
  1132. "__type__": "cc.Vec2",
  1133. "x": 0.5,
  1134. "y": 0.5
  1135. },
  1136. "_id": "1fh/fKPfdCL53X/L9vmnHn"
  1137. },
  1138. {
  1139. "__type__": "cc.Sprite",
  1140. "_name": "",
  1141. "_objFlags": 0,
  1142. "node": {
  1143. "__id__": 22
  1144. },
  1145. "_enabled": true,
  1146. "__prefab": null,
  1147. "_customMaterial": null,
  1148. "_srcBlendFactor": 2,
  1149. "_dstBlendFactor": 4,
  1150. "_color": {
  1151. "__type__": "cc.Color",
  1152. "r": 255,
  1153. "g": 255,
  1154. "b": 255,
  1155. "a": 255
  1156. },
  1157. "_spriteFrame": {
  1158. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  1159. "__expectedType__": "cc.SpriteFrame"
  1160. },
  1161. "_type": 0,
  1162. "_fillType": 0,
  1163. "_sizeMode": 1,
  1164. "_fillCenter": {
  1165. "__type__": "cc.Vec2",
  1166. "x": 0,
  1167. "y": 0
  1168. },
  1169. "_fillStart": 0,
  1170. "_fillRange": 0,
  1171. "_isTrimmedMode": true,
  1172. "_useGrayscale": false,
  1173. "_atlas": null,
  1174. "_id": "bc9MzbStZPPJoasyIS00U6"
  1175. },
  1176. {
  1177. "__type__": "cc.Button",
  1178. "_name": "",
  1179. "_objFlags": 0,
  1180. "node": {
  1181. "__id__": 22
  1182. },
  1183. "_enabled": true,
  1184. "__prefab": null,
  1185. "clickEvents": [
  1186. {
  1187. "__id__": 32
  1188. }
  1189. ],
  1190. "_interactable": true,
  1191. "_transition": 0,
  1192. "_normalColor": {
  1193. "__type__": "cc.Color",
  1194. "r": 255,
  1195. "g": 255,
  1196. "b": 255,
  1197. "a": 255
  1198. },
  1199. "_hoverColor": {
  1200. "__type__": "cc.Color",
  1201. "r": 211,
  1202. "g": 211,
  1203. "b": 211,
  1204. "a": 255
  1205. },
  1206. "_pressedColor": {
  1207. "__type__": "cc.Color",
  1208. "r": 255,
  1209. "g": 255,
  1210. "b": 255,
  1211. "a": 255
  1212. },
  1213. "_disabledColor": {
  1214. "__type__": "cc.Color",
  1215. "r": 124,
  1216. "g": 124,
  1217. "b": 124,
  1218. "a": 255
  1219. },
  1220. "_normalSprite": {
  1221. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  1222. "__expectedType__": "cc.SpriteFrame"
  1223. },
  1224. "_hoverSprite": null,
  1225. "_pressedSprite": null,
  1226. "_disabledSprite": null,
  1227. "_duration": 0.1,
  1228. "_zoomScale": 1.2,
  1229. "_target": null,
  1230. "_id": "fbkgtJoPNK8YNogeuKb2p7"
  1231. },
  1232. {
  1233. "__type__": "cc.ClickEvent",
  1234. "target": {
  1235. "__id__": 16
  1236. },
  1237. "component": "",
  1238. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  1239. "handler": "clickNode",
  1240. "customEventData": "0"
  1241. },
  1242. {
  1243. "__type__": "cc.Node",
  1244. "_name": "tower2",
  1245. "_objFlags": 0,
  1246. "_parent": {
  1247. "__id__": 16
  1248. },
  1249. "_children": [
  1250. {
  1251. "__id__": 34
  1252. },
  1253. {
  1254. "__id__": 37
  1255. }
  1256. ],
  1257. "_active": true,
  1258. "_components": [
  1259. {
  1260. "__id__": 40
  1261. },
  1262. {
  1263. "__id__": 41
  1264. },
  1265. {
  1266. "__id__": 42
  1267. }
  1268. ],
  1269. "_prefab": null,
  1270. "_lpos": {
  1271. "__type__": "cc.Vec3",
  1272. "x": 294,
  1273. "y": 7.876,
  1274. "z": 0
  1275. },
  1276. "_lrot": {
  1277. "__type__": "cc.Quat",
  1278. "x": 0,
  1279. "y": 0,
  1280. "z": 0,
  1281. "w": 1
  1282. },
  1283. "_lscale": {
  1284. "__type__": "cc.Vec3",
  1285. "x": 1,
  1286. "y": 1,
  1287. "z": 1
  1288. },
  1289. "_mobility": 0,
  1290. "_layer": 33554432,
  1291. "_euler": {
  1292. "__type__": "cc.Vec3",
  1293. "x": 0,
  1294. "y": 0,
  1295. "z": 0
  1296. },
  1297. "_id": "ffx+NvXrRLEZw5nxk7HYFT"
  1298. },
  1299. {
  1300. "__type__": "cc.Node",
  1301. "_name": "dong",
  1302. "_objFlags": 0,
  1303. "_parent": {
  1304. "__id__": 33
  1305. },
  1306. "_children": [],
  1307. "_active": false,
  1308. "_components": [
  1309. {
  1310. "__id__": 35
  1311. },
  1312. {
  1313. "__id__": 36
  1314. }
  1315. ],
  1316. "_prefab": null,
  1317. "_lpos": {
  1318. "__type__": "cc.Vec3",
  1319. "x": 40.00099999999975,
  1320. "y": -49.12999999999988,
  1321. "z": 0
  1322. },
  1323. "_lrot": {
  1324. "__type__": "cc.Quat",
  1325. "x": 0,
  1326. "y": 0,
  1327. "z": 0,
  1328. "w": 1
  1329. },
  1330. "_lscale": {
  1331. "__type__": "cc.Vec3",
  1332. "x": 1,
  1333. "y": 1,
  1334. "z": 1
  1335. },
  1336. "_mobility": 0,
  1337. "_layer": 33554432,
  1338. "_euler": {
  1339. "__type__": "cc.Vec3",
  1340. "x": 0,
  1341. "y": 0,
  1342. "z": 0
  1343. },
  1344. "_id": "d2AJNeA0ZOI6FZFX4BM+Aq"
  1345. },
  1346. {
  1347. "__type__": "cc.UITransform",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 34
  1352. },
  1353. "_enabled": true,
  1354. "__prefab": null,
  1355. "_contentSize": {
  1356. "__type__": "cc.Size",
  1357. "width": 201,
  1358. "height": 166
  1359. },
  1360. "_anchorPoint": {
  1361. "__type__": "cc.Vec2",
  1362. "x": 0.5,
  1363. "y": 0.5
  1364. },
  1365. "_id": "4bqd22JR5M8ZVFJDib9buK"
  1366. },
  1367. {
  1368. "__type__": "cc.Sprite",
  1369. "_name": "",
  1370. "_objFlags": 0,
  1371. "node": {
  1372. "__id__": 34
  1373. },
  1374. "_enabled": true,
  1375. "__prefab": null,
  1376. "_customMaterial": null,
  1377. "_srcBlendFactor": 2,
  1378. "_dstBlendFactor": 4,
  1379. "_color": {
  1380. "__type__": "cc.Color",
  1381. "r": 255,
  1382. "g": 255,
  1383. "b": 255,
  1384. "a": 255
  1385. },
  1386. "_spriteFrame": {
  1387. "__uuid__": "fbc3faa1-5e14-4782-9952-7b8d90328d69@f9941",
  1388. "__expectedType__": "cc.SpriteFrame"
  1389. },
  1390. "_type": 0,
  1391. "_fillType": 0,
  1392. "_sizeMode": 1,
  1393. "_fillCenter": {
  1394. "__type__": "cc.Vec2",
  1395. "x": 0,
  1396. "y": 0
  1397. },
  1398. "_fillStart": 0,
  1399. "_fillRange": 0,
  1400. "_isTrimmedMode": true,
  1401. "_useGrayscale": false,
  1402. "_atlas": null,
  1403. "_id": "c7EOoAlGpH0ImH1Ipa24LK"
  1404. },
  1405. {
  1406. "__type__": "cc.Node",
  1407. "_name": "reward",
  1408. "_objFlags": 0,
  1409. "_parent": {
  1410. "__id__": 33
  1411. },
  1412. "_children": [],
  1413. "_active": true,
  1414. "_components": [
  1415. {
  1416. "__id__": 38
  1417. },
  1418. {
  1419. "__id__": 39
  1420. }
  1421. ],
  1422. "_prefab": null,
  1423. "_lpos": {
  1424. "__type__": "cc.Vec3",
  1425. "x": 33.6749999999995,
  1426. "y": -50.15100000000007,
  1427. "z": 0
  1428. },
  1429. "_lrot": {
  1430. "__type__": "cc.Quat",
  1431. "x": 0,
  1432. "y": 0,
  1433. "z": 0,
  1434. "w": 1
  1435. },
  1436. "_lscale": {
  1437. "__type__": "cc.Vec3",
  1438. "x": 1,
  1439. "y": 1,
  1440. "z": 1
  1441. },
  1442. "_mobility": 0,
  1443. "_layer": 33554432,
  1444. "_euler": {
  1445. "__type__": "cc.Vec3",
  1446. "x": 0,
  1447. "y": 0,
  1448. "z": 0
  1449. },
  1450. "_id": "d1k3Vc8ldD+r/0vNJqmxst"
  1451. },
  1452. {
  1453. "__type__": "cc.UITransform",
  1454. "_name": "",
  1455. "_objFlags": 0,
  1456. "node": {
  1457. "__id__": 37
  1458. },
  1459. "_enabled": true,
  1460. "__prefab": null,
  1461. "_contentSize": {
  1462. "__type__": "cc.Size",
  1463. "width": 143,
  1464. "height": 132
  1465. },
  1466. "_anchorPoint": {
  1467. "__type__": "cc.Vec2",
  1468. "x": 0.5,
  1469. "y": 0.5
  1470. },
  1471. "_id": "01FyOPQctMMJq4J/DwKSbZ"
  1472. },
  1473. {
  1474. "__type__": "cc.Sprite",
  1475. "_name": "",
  1476. "_objFlags": 0,
  1477. "node": {
  1478. "__id__": 37
  1479. },
  1480. "_enabled": true,
  1481. "__prefab": null,
  1482. "_customMaterial": null,
  1483. "_srcBlendFactor": 2,
  1484. "_dstBlendFactor": 4,
  1485. "_color": {
  1486. "__type__": "cc.Color",
  1487. "r": 255,
  1488. "g": 255,
  1489. "b": 255,
  1490. "a": 255
  1491. },
  1492. "_spriteFrame": {
  1493. "__uuid__": "3fd42351-ae7c-4988-bdd6-bb0b29e5019d@f9941",
  1494. "__expectedType__": "cc.SpriteFrame"
  1495. },
  1496. "_type": 0,
  1497. "_fillType": 0,
  1498. "_sizeMode": 1,
  1499. "_fillCenter": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0,
  1502. "y": 0
  1503. },
  1504. "_fillStart": 0,
  1505. "_fillRange": 0,
  1506. "_isTrimmedMode": true,
  1507. "_useGrayscale": false,
  1508. "_atlas": null,
  1509. "_id": "f7eRw6sMhPlpQt2IpUkijt"
  1510. },
  1511. {
  1512. "__type__": "cc.UITransform",
  1513. "_name": "",
  1514. "_objFlags": 0,
  1515. "node": {
  1516. "__id__": 33
  1517. },
  1518. "_enabled": true,
  1519. "__prefab": null,
  1520. "_contentSize": {
  1521. "__type__": "cc.Size",
  1522. "width": 463,
  1523. "height": 324
  1524. },
  1525. "_anchorPoint": {
  1526. "__type__": "cc.Vec2",
  1527. "x": 0.5,
  1528. "y": 0.5
  1529. },
  1530. "_id": "84gP6+SzBEzJ6n9IRwEzoE"
  1531. },
  1532. {
  1533. "__type__": "cc.Sprite",
  1534. "_name": "",
  1535. "_objFlags": 0,
  1536. "node": {
  1537. "__id__": 33
  1538. },
  1539. "_enabled": true,
  1540. "__prefab": null,
  1541. "_customMaterial": null,
  1542. "_srcBlendFactor": 2,
  1543. "_dstBlendFactor": 4,
  1544. "_color": {
  1545. "__type__": "cc.Color",
  1546. "r": 255,
  1547. "g": 255,
  1548. "b": 255,
  1549. "a": 255
  1550. },
  1551. "_spriteFrame": {
  1552. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  1553. "__expectedType__": "cc.SpriteFrame"
  1554. },
  1555. "_type": 0,
  1556. "_fillType": 0,
  1557. "_sizeMode": 1,
  1558. "_fillCenter": {
  1559. "__type__": "cc.Vec2",
  1560. "x": 0,
  1561. "y": 0
  1562. },
  1563. "_fillStart": 0,
  1564. "_fillRange": 0,
  1565. "_isTrimmedMode": true,
  1566. "_useGrayscale": false,
  1567. "_atlas": null,
  1568. "_id": "8fGrMLc1BAhIT6ipRLY3St"
  1569. },
  1570. {
  1571. "__type__": "cc.Button",
  1572. "_name": "",
  1573. "_objFlags": 0,
  1574. "node": {
  1575. "__id__": 33
  1576. },
  1577. "_enabled": true,
  1578. "__prefab": null,
  1579. "clickEvents": [
  1580. {
  1581. "__id__": 43
  1582. }
  1583. ],
  1584. "_interactable": true,
  1585. "_transition": 0,
  1586. "_normalColor": {
  1587. "__type__": "cc.Color",
  1588. "r": 255,
  1589. "g": 255,
  1590. "b": 255,
  1591. "a": 255
  1592. },
  1593. "_hoverColor": {
  1594. "__type__": "cc.Color",
  1595. "r": 211,
  1596. "g": 211,
  1597. "b": 211,
  1598. "a": 255
  1599. },
  1600. "_pressedColor": {
  1601. "__type__": "cc.Color",
  1602. "r": 255,
  1603. "g": 255,
  1604. "b": 255,
  1605. "a": 255
  1606. },
  1607. "_disabledColor": {
  1608. "__type__": "cc.Color",
  1609. "r": 124,
  1610. "g": 124,
  1611. "b": 124,
  1612. "a": 255
  1613. },
  1614. "_normalSprite": {
  1615. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  1616. "__expectedType__": "cc.SpriteFrame"
  1617. },
  1618. "_hoverSprite": null,
  1619. "_pressedSprite": null,
  1620. "_disabledSprite": null,
  1621. "_duration": 0.1,
  1622. "_zoomScale": 1.2,
  1623. "_target": null,
  1624. "_id": "6dJK5LbSZPvrJ9ozJwGcEu"
  1625. },
  1626. {
  1627. "__type__": "cc.ClickEvent",
  1628. "target": {
  1629. "__id__": 16
  1630. },
  1631. "component": "",
  1632. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  1633. "handler": "clickNode",
  1634. "customEventData": "1"
  1635. },
  1636. {
  1637. "__type__": "cc.Node",
  1638. "_name": "tower3",
  1639. "_objFlags": 0,
  1640. "_parent": {
  1641. "__id__": 16
  1642. },
  1643. "_children": [
  1644. {
  1645. "__id__": 45
  1646. },
  1647. {
  1648. "__id__": 48
  1649. }
  1650. ],
  1651. "_active": true,
  1652. "_components": [
  1653. {
  1654. "__id__": 51
  1655. },
  1656. {
  1657. "__id__": 52
  1658. },
  1659. {
  1660. "__id__": 53
  1661. }
  1662. ],
  1663. "_prefab": null,
  1664. "_lpos": {
  1665. "__type__": "cc.Vec3",
  1666. "x": -133.499,
  1667. "y": -351.624,
  1668. "z": 0
  1669. },
  1670. "_lrot": {
  1671. "__type__": "cc.Quat",
  1672. "x": 0,
  1673. "y": 0,
  1674. "z": 0,
  1675. "w": 1
  1676. },
  1677. "_lscale": {
  1678. "__type__": "cc.Vec3",
  1679. "x": 1,
  1680. "y": 1,
  1681. "z": 1
  1682. },
  1683. "_mobility": 0,
  1684. "_layer": 33554432,
  1685. "_euler": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 0,
  1688. "y": 0,
  1689. "z": 0
  1690. },
  1691. "_id": "9068holNxBSYjGJZXYmRFm"
  1692. },
  1693. {
  1694. "__type__": "cc.Node",
  1695. "_name": "dong",
  1696. "_objFlags": 0,
  1697. "_parent": {
  1698. "__id__": 44
  1699. },
  1700. "_children": [],
  1701. "_active": false,
  1702. "_components": [
  1703. {
  1704. "__id__": 46
  1705. },
  1706. {
  1707. "__id__": 47
  1708. }
  1709. ],
  1710. "_prefab": null,
  1711. "_lpos": {
  1712. "__type__": "cc.Vec3",
  1713. "x": 40.00099999999975,
  1714. "y": -49.12999999999988,
  1715. "z": 0
  1716. },
  1717. "_lrot": {
  1718. "__type__": "cc.Quat",
  1719. "x": 0,
  1720. "y": 0,
  1721. "z": 0,
  1722. "w": 1
  1723. },
  1724. "_lscale": {
  1725. "__type__": "cc.Vec3",
  1726. "x": 1,
  1727. "y": 1,
  1728. "z": 1
  1729. },
  1730. "_mobility": 0,
  1731. "_layer": 33554432,
  1732. "_euler": {
  1733. "__type__": "cc.Vec3",
  1734. "x": 0,
  1735. "y": 0,
  1736. "z": 0
  1737. },
  1738. "_id": "5fV08LRHJOeK1GjeM1rZw4"
  1739. },
  1740. {
  1741. "__type__": "cc.UITransform",
  1742. "_name": "",
  1743. "_objFlags": 0,
  1744. "node": {
  1745. "__id__": 45
  1746. },
  1747. "_enabled": true,
  1748. "__prefab": null,
  1749. "_contentSize": {
  1750. "__type__": "cc.Size",
  1751. "width": 201,
  1752. "height": 166
  1753. },
  1754. "_anchorPoint": {
  1755. "__type__": "cc.Vec2",
  1756. "x": 0.5,
  1757. "y": 0.5
  1758. },
  1759. "_id": "09N13wxhFPXJbK6TenCGEk"
  1760. },
  1761. {
  1762. "__type__": "cc.Sprite",
  1763. "_name": "",
  1764. "_objFlags": 0,
  1765. "node": {
  1766. "__id__": 45
  1767. },
  1768. "_enabled": true,
  1769. "__prefab": null,
  1770. "_customMaterial": null,
  1771. "_srcBlendFactor": 2,
  1772. "_dstBlendFactor": 4,
  1773. "_color": {
  1774. "__type__": "cc.Color",
  1775. "r": 255,
  1776. "g": 255,
  1777. "b": 255,
  1778. "a": 255
  1779. },
  1780. "_spriteFrame": {
  1781. "__uuid__": "fbc3faa1-5e14-4782-9952-7b8d90328d69@f9941",
  1782. "__expectedType__": "cc.SpriteFrame"
  1783. },
  1784. "_type": 0,
  1785. "_fillType": 0,
  1786. "_sizeMode": 1,
  1787. "_fillCenter": {
  1788. "__type__": "cc.Vec2",
  1789. "x": 0,
  1790. "y": 0
  1791. },
  1792. "_fillStart": 0,
  1793. "_fillRange": 0,
  1794. "_isTrimmedMode": true,
  1795. "_useGrayscale": false,
  1796. "_atlas": null,
  1797. "_id": "d5zaVr6vJIEqCKaPy89kpt"
  1798. },
  1799. {
  1800. "__type__": "cc.Node",
  1801. "_name": "reward",
  1802. "_objFlags": 0,
  1803. "_parent": {
  1804. "__id__": 44
  1805. },
  1806. "_children": [],
  1807. "_active": true,
  1808. "_components": [
  1809. {
  1810. "__id__": 49
  1811. },
  1812. {
  1813. "__id__": 50
  1814. }
  1815. ],
  1816. "_prefab": null,
  1817. "_lpos": {
  1818. "__type__": "cc.Vec3",
  1819. "x": 33.67499999999973,
  1820. "y": -50.15100000000007,
  1821. "z": 0
  1822. },
  1823. "_lrot": {
  1824. "__type__": "cc.Quat",
  1825. "x": 0,
  1826. "y": 0,
  1827. "z": 0,
  1828. "w": 1
  1829. },
  1830. "_lscale": {
  1831. "__type__": "cc.Vec3",
  1832. "x": 1,
  1833. "y": 1,
  1834. "z": 1
  1835. },
  1836. "_mobility": 0,
  1837. "_layer": 33554432,
  1838. "_euler": {
  1839. "__type__": "cc.Vec3",
  1840. "x": 0,
  1841. "y": 0,
  1842. "z": 0
  1843. },
  1844. "_id": "805NCuBdZDm5XVXRtAbrbQ"
  1845. },
  1846. {
  1847. "__type__": "cc.UITransform",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "node": {
  1851. "__id__": 48
  1852. },
  1853. "_enabled": true,
  1854. "__prefab": null,
  1855. "_contentSize": {
  1856. "__type__": "cc.Size",
  1857. "width": 143,
  1858. "height": 132
  1859. },
  1860. "_anchorPoint": {
  1861. "__type__": "cc.Vec2",
  1862. "x": 0.5,
  1863. "y": 0.5
  1864. },
  1865. "_id": "b5VAct2f9MyqYxcMzZrExn"
  1866. },
  1867. {
  1868. "__type__": "cc.Sprite",
  1869. "_name": "",
  1870. "_objFlags": 0,
  1871. "node": {
  1872. "__id__": 48
  1873. },
  1874. "_enabled": true,
  1875. "__prefab": null,
  1876. "_customMaterial": null,
  1877. "_srcBlendFactor": 2,
  1878. "_dstBlendFactor": 4,
  1879. "_color": {
  1880. "__type__": "cc.Color",
  1881. "r": 255,
  1882. "g": 255,
  1883. "b": 255,
  1884. "a": 255
  1885. },
  1886. "_spriteFrame": {
  1887. "__uuid__": "3fd42351-ae7c-4988-bdd6-bb0b29e5019d@f9941",
  1888. "__expectedType__": "cc.SpriteFrame"
  1889. },
  1890. "_type": 0,
  1891. "_fillType": 0,
  1892. "_sizeMode": 1,
  1893. "_fillCenter": {
  1894. "__type__": "cc.Vec2",
  1895. "x": 0,
  1896. "y": 0
  1897. },
  1898. "_fillStart": 0,
  1899. "_fillRange": 0,
  1900. "_isTrimmedMode": true,
  1901. "_useGrayscale": false,
  1902. "_atlas": null,
  1903. "_id": "e3w5Uh0rFBUa3V4dbXmUnS"
  1904. },
  1905. {
  1906. "__type__": "cc.UITransform",
  1907. "_name": "",
  1908. "_objFlags": 0,
  1909. "node": {
  1910. "__id__": 44
  1911. },
  1912. "_enabled": true,
  1913. "__prefab": null,
  1914. "_contentSize": {
  1915. "__type__": "cc.Size",
  1916. "width": 463,
  1917. "height": 324
  1918. },
  1919. "_anchorPoint": {
  1920. "__type__": "cc.Vec2",
  1921. "x": 0.5,
  1922. "y": 0.5
  1923. },
  1924. "_id": "4dPIysCWpFdZvDXssDNyia"
  1925. },
  1926. {
  1927. "__type__": "cc.Sprite",
  1928. "_name": "",
  1929. "_objFlags": 0,
  1930. "node": {
  1931. "__id__": 44
  1932. },
  1933. "_enabled": true,
  1934. "__prefab": null,
  1935. "_customMaterial": null,
  1936. "_srcBlendFactor": 2,
  1937. "_dstBlendFactor": 4,
  1938. "_color": {
  1939. "__type__": "cc.Color",
  1940. "r": 255,
  1941. "g": 255,
  1942. "b": 255,
  1943. "a": 255
  1944. },
  1945. "_spriteFrame": {
  1946. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  1947. "__expectedType__": "cc.SpriteFrame"
  1948. },
  1949. "_type": 0,
  1950. "_fillType": 0,
  1951. "_sizeMode": 1,
  1952. "_fillCenter": {
  1953. "__type__": "cc.Vec2",
  1954. "x": 0,
  1955. "y": 0
  1956. },
  1957. "_fillStart": 0,
  1958. "_fillRange": 0,
  1959. "_isTrimmedMode": true,
  1960. "_useGrayscale": false,
  1961. "_atlas": null,
  1962. "_id": "e87Rp9lWJAA7uoP/vy8FGg"
  1963. },
  1964. {
  1965. "__type__": "cc.Button",
  1966. "_name": "",
  1967. "_objFlags": 0,
  1968. "node": {
  1969. "__id__": 44
  1970. },
  1971. "_enabled": true,
  1972. "__prefab": null,
  1973. "clickEvents": [
  1974. {
  1975. "__id__": 54
  1976. }
  1977. ],
  1978. "_interactable": true,
  1979. "_transition": 0,
  1980. "_normalColor": {
  1981. "__type__": "cc.Color",
  1982. "r": 255,
  1983. "g": 255,
  1984. "b": 255,
  1985. "a": 255
  1986. },
  1987. "_hoverColor": {
  1988. "__type__": "cc.Color",
  1989. "r": 211,
  1990. "g": 211,
  1991. "b": 211,
  1992. "a": 255
  1993. },
  1994. "_pressedColor": {
  1995. "__type__": "cc.Color",
  1996. "r": 255,
  1997. "g": 255,
  1998. "b": 255,
  1999. "a": 255
  2000. },
  2001. "_disabledColor": {
  2002. "__type__": "cc.Color",
  2003. "r": 124,
  2004. "g": 124,
  2005. "b": 124,
  2006. "a": 255
  2007. },
  2008. "_normalSprite": {
  2009. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  2010. "__expectedType__": "cc.SpriteFrame"
  2011. },
  2012. "_hoverSprite": null,
  2013. "_pressedSprite": null,
  2014. "_disabledSprite": null,
  2015. "_duration": 0.1,
  2016. "_zoomScale": 1.2,
  2017. "_target": null,
  2018. "_id": "414fJcZbBDx5mtHfM707Eq"
  2019. },
  2020. {
  2021. "__type__": "cc.ClickEvent",
  2022. "target": {
  2023. "__id__": 16
  2024. },
  2025. "component": "",
  2026. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  2027. "handler": "clickNode",
  2028. "customEventData": "2"
  2029. },
  2030. {
  2031. "__type__": "cc.Node",
  2032. "_name": "tower4",
  2033. "_objFlags": 0,
  2034. "_parent": {
  2035. "__id__": 16
  2036. },
  2037. "_children": [
  2038. {
  2039. "__id__": 56
  2040. },
  2041. {
  2042. "__id__": 59
  2043. }
  2044. ],
  2045. "_active": true,
  2046. "_components": [
  2047. {
  2048. "__id__": 62
  2049. },
  2050. {
  2051. "__id__": 63
  2052. },
  2053. {
  2054. "__id__": 64
  2055. }
  2056. ],
  2057. "_prefab": null,
  2058. "_lpos": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 330,
  2061. "y": -351.624,
  2062. "z": 0
  2063. },
  2064. "_lrot": {
  2065. "__type__": "cc.Quat",
  2066. "x": 0,
  2067. "y": 0,
  2068. "z": 0,
  2069. "w": 1
  2070. },
  2071. "_lscale": {
  2072. "__type__": "cc.Vec3",
  2073. "x": 1,
  2074. "y": 1,
  2075. "z": 1
  2076. },
  2077. "_mobility": 0,
  2078. "_layer": 33554432,
  2079. "_euler": {
  2080. "__type__": "cc.Vec3",
  2081. "x": 0,
  2082. "y": 0,
  2083. "z": 0
  2084. },
  2085. "_id": "f8M4qan35JQZZGjoOVKEfi"
  2086. },
  2087. {
  2088. "__type__": "cc.Node",
  2089. "_name": "dong",
  2090. "_objFlags": 0,
  2091. "_parent": {
  2092. "__id__": 55
  2093. },
  2094. "_children": [],
  2095. "_active": false,
  2096. "_components": [
  2097. {
  2098. "__id__": 57
  2099. },
  2100. {
  2101. "__id__": 58
  2102. }
  2103. ],
  2104. "_prefab": null,
  2105. "_lpos": {
  2106. "__type__": "cc.Vec3",
  2107. "x": 40.00099999999975,
  2108. "y": -49.12999999999988,
  2109. "z": 0
  2110. },
  2111. "_lrot": {
  2112. "__type__": "cc.Quat",
  2113. "x": 0,
  2114. "y": 0,
  2115. "z": 0,
  2116. "w": 1
  2117. },
  2118. "_lscale": {
  2119. "__type__": "cc.Vec3",
  2120. "x": 1,
  2121. "y": 1,
  2122. "z": 1
  2123. },
  2124. "_mobility": 0,
  2125. "_layer": 33554432,
  2126. "_euler": {
  2127. "__type__": "cc.Vec3",
  2128. "x": 0,
  2129. "y": 0,
  2130. "z": 0
  2131. },
  2132. "_id": "92GJQgGYRN/6WQhQwSiTsg"
  2133. },
  2134. {
  2135. "__type__": "cc.UITransform",
  2136. "_name": "",
  2137. "_objFlags": 0,
  2138. "node": {
  2139. "__id__": 56
  2140. },
  2141. "_enabled": true,
  2142. "__prefab": null,
  2143. "_contentSize": {
  2144. "__type__": "cc.Size",
  2145. "width": 201,
  2146. "height": 166
  2147. },
  2148. "_anchorPoint": {
  2149. "__type__": "cc.Vec2",
  2150. "x": 0.5,
  2151. "y": 0.5
  2152. },
  2153. "_id": "357k+Nxo5NWIDFiW1I2dgW"
  2154. },
  2155. {
  2156. "__type__": "cc.Sprite",
  2157. "_name": "",
  2158. "_objFlags": 0,
  2159. "node": {
  2160. "__id__": 56
  2161. },
  2162. "_enabled": true,
  2163. "__prefab": null,
  2164. "_customMaterial": null,
  2165. "_srcBlendFactor": 2,
  2166. "_dstBlendFactor": 4,
  2167. "_color": {
  2168. "__type__": "cc.Color",
  2169. "r": 255,
  2170. "g": 255,
  2171. "b": 255,
  2172. "a": 255
  2173. },
  2174. "_spriteFrame": {
  2175. "__uuid__": "fbc3faa1-5e14-4782-9952-7b8d90328d69@f9941",
  2176. "__expectedType__": "cc.SpriteFrame"
  2177. },
  2178. "_type": 0,
  2179. "_fillType": 0,
  2180. "_sizeMode": 1,
  2181. "_fillCenter": {
  2182. "__type__": "cc.Vec2",
  2183. "x": 0,
  2184. "y": 0
  2185. },
  2186. "_fillStart": 0,
  2187. "_fillRange": 0,
  2188. "_isTrimmedMode": true,
  2189. "_useGrayscale": false,
  2190. "_atlas": null,
  2191. "_id": "0bTQHRDzNNUI5nM+kKFhdr"
  2192. },
  2193. {
  2194. "__type__": "cc.Node",
  2195. "_name": "reward",
  2196. "_objFlags": 0,
  2197. "_parent": {
  2198. "__id__": 55
  2199. },
  2200. "_children": [],
  2201. "_active": true,
  2202. "_components": [
  2203. {
  2204. "__id__": 60
  2205. },
  2206. {
  2207. "__id__": 61
  2208. }
  2209. ],
  2210. "_prefab": null,
  2211. "_lpos": {
  2212. "__type__": "cc.Vec3",
  2213. "x": 33.67499999999973,
  2214. "y": -50.15100000000007,
  2215. "z": 0
  2216. },
  2217. "_lrot": {
  2218. "__type__": "cc.Quat",
  2219. "x": 0,
  2220. "y": 0,
  2221. "z": 0,
  2222. "w": 1
  2223. },
  2224. "_lscale": {
  2225. "__type__": "cc.Vec3",
  2226. "x": 1,
  2227. "y": 1,
  2228. "z": 1
  2229. },
  2230. "_mobility": 0,
  2231. "_layer": 33554432,
  2232. "_euler": {
  2233. "__type__": "cc.Vec3",
  2234. "x": 0,
  2235. "y": 0,
  2236. "z": 0
  2237. },
  2238. "_id": "81ZddvnJVB7ZnqeJJy1qxf"
  2239. },
  2240. {
  2241. "__type__": "cc.UITransform",
  2242. "_name": "",
  2243. "_objFlags": 0,
  2244. "node": {
  2245. "__id__": 59
  2246. },
  2247. "_enabled": true,
  2248. "__prefab": null,
  2249. "_contentSize": {
  2250. "__type__": "cc.Size",
  2251. "width": 143,
  2252. "height": 132
  2253. },
  2254. "_anchorPoint": {
  2255. "__type__": "cc.Vec2",
  2256. "x": 0.5,
  2257. "y": 0.5
  2258. },
  2259. "_id": "a5nMOoSuxBYJHlTt50OZeu"
  2260. },
  2261. {
  2262. "__type__": "cc.Sprite",
  2263. "_name": "",
  2264. "_objFlags": 0,
  2265. "node": {
  2266. "__id__": 59
  2267. },
  2268. "_enabled": true,
  2269. "__prefab": null,
  2270. "_customMaterial": null,
  2271. "_srcBlendFactor": 2,
  2272. "_dstBlendFactor": 4,
  2273. "_color": {
  2274. "__type__": "cc.Color",
  2275. "r": 255,
  2276. "g": 255,
  2277. "b": 255,
  2278. "a": 255
  2279. },
  2280. "_spriteFrame": {
  2281. "__uuid__": "3fd42351-ae7c-4988-bdd6-bb0b29e5019d@f9941",
  2282. "__expectedType__": "cc.SpriteFrame"
  2283. },
  2284. "_type": 0,
  2285. "_fillType": 0,
  2286. "_sizeMode": 1,
  2287. "_fillCenter": {
  2288. "__type__": "cc.Vec2",
  2289. "x": 0,
  2290. "y": 0
  2291. },
  2292. "_fillStart": 0,
  2293. "_fillRange": 0,
  2294. "_isTrimmedMode": true,
  2295. "_useGrayscale": false,
  2296. "_atlas": null,
  2297. "_id": "79E1WgmzJEbKXIw00UNdIP"
  2298. },
  2299. {
  2300. "__type__": "cc.UITransform",
  2301. "_name": "",
  2302. "_objFlags": 0,
  2303. "node": {
  2304. "__id__": 55
  2305. },
  2306. "_enabled": true,
  2307. "__prefab": null,
  2308. "_contentSize": {
  2309. "__type__": "cc.Size",
  2310. "width": 463,
  2311. "height": 324
  2312. },
  2313. "_anchorPoint": {
  2314. "__type__": "cc.Vec2",
  2315. "x": 0.5,
  2316. "y": 0.5
  2317. },
  2318. "_id": "1fxi2JqglFkLgxmirkR0Wn"
  2319. },
  2320. {
  2321. "__type__": "cc.Sprite",
  2322. "_name": "",
  2323. "_objFlags": 0,
  2324. "node": {
  2325. "__id__": 55
  2326. },
  2327. "_enabled": true,
  2328. "__prefab": null,
  2329. "_customMaterial": null,
  2330. "_srcBlendFactor": 2,
  2331. "_dstBlendFactor": 4,
  2332. "_color": {
  2333. "__type__": "cc.Color",
  2334. "r": 255,
  2335. "g": 255,
  2336. "b": 255,
  2337. "a": 255
  2338. },
  2339. "_spriteFrame": {
  2340. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  2341. "__expectedType__": "cc.SpriteFrame"
  2342. },
  2343. "_type": 0,
  2344. "_fillType": 0,
  2345. "_sizeMode": 1,
  2346. "_fillCenter": {
  2347. "__type__": "cc.Vec2",
  2348. "x": 0,
  2349. "y": 0
  2350. },
  2351. "_fillStart": 0,
  2352. "_fillRange": 0,
  2353. "_isTrimmedMode": true,
  2354. "_useGrayscale": false,
  2355. "_atlas": null,
  2356. "_id": "a7//Ur7PBAm6spj45ftMS0"
  2357. },
  2358. {
  2359. "__type__": "cc.Button",
  2360. "_name": "",
  2361. "_objFlags": 0,
  2362. "node": {
  2363. "__id__": 55
  2364. },
  2365. "_enabled": true,
  2366. "__prefab": null,
  2367. "clickEvents": [
  2368. {
  2369. "__id__": 65
  2370. }
  2371. ],
  2372. "_interactable": true,
  2373. "_transition": 0,
  2374. "_normalColor": {
  2375. "__type__": "cc.Color",
  2376. "r": 255,
  2377. "g": 255,
  2378. "b": 255,
  2379. "a": 255
  2380. },
  2381. "_hoverColor": {
  2382. "__type__": "cc.Color",
  2383. "r": 211,
  2384. "g": 211,
  2385. "b": 211,
  2386. "a": 255
  2387. },
  2388. "_pressedColor": {
  2389. "__type__": "cc.Color",
  2390. "r": 255,
  2391. "g": 255,
  2392. "b": 255,
  2393. "a": 255
  2394. },
  2395. "_disabledColor": {
  2396. "__type__": "cc.Color",
  2397. "r": 124,
  2398. "g": 124,
  2399. "b": 124,
  2400. "a": 255
  2401. },
  2402. "_normalSprite": {
  2403. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  2404. "__expectedType__": "cc.SpriteFrame"
  2405. },
  2406. "_hoverSprite": null,
  2407. "_pressedSprite": null,
  2408. "_disabledSprite": null,
  2409. "_duration": 0.1,
  2410. "_zoomScale": 1.2,
  2411. "_target": {
  2412. "__id__": 55
  2413. },
  2414. "_id": "9d/Gj8UFJA+qNZiWYgP7TU"
  2415. },
  2416. {
  2417. "__type__": "cc.ClickEvent",
  2418. "target": {
  2419. "__id__": 16
  2420. },
  2421. "component": "",
  2422. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  2423. "handler": "clickNode",
  2424. "customEventData": "3"
  2425. },
  2426. {
  2427. "__type__": "cc.Node",
  2428. "_name": "tower5",
  2429. "_objFlags": 0,
  2430. "_parent": {
  2431. "__id__": 16
  2432. },
  2433. "_children": [
  2434. {
  2435. "__id__": 67
  2436. },
  2437. {
  2438. "__id__": 70
  2439. }
  2440. ],
  2441. "_active": false,
  2442. "_components": [
  2443. {
  2444. "__id__": 73
  2445. },
  2446. {
  2447. "__id__": 74
  2448. },
  2449. {
  2450. "__id__": 75
  2451. }
  2452. ],
  2453. "_prefab": null,
  2454. "_lpos": {
  2455. "__type__": "cc.Vec3",
  2456. "x": -174.348,
  2457. "y": 373.456,
  2458. "z": 0
  2459. },
  2460. "_lrot": {
  2461. "__type__": "cc.Quat",
  2462. "x": 0,
  2463. "y": 0,
  2464. "z": 0,
  2465. "w": 1
  2466. },
  2467. "_lscale": {
  2468. "__type__": "cc.Vec3",
  2469. "x": 1,
  2470. "y": 1,
  2471. "z": 1
  2472. },
  2473. "_mobility": 0,
  2474. "_layer": 33554432,
  2475. "_euler": {
  2476. "__type__": "cc.Vec3",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0
  2480. },
  2481. "_id": "53LyuItPxGa7patTReZ7UT"
  2482. },
  2483. {
  2484. "__type__": "cc.Node",
  2485. "_name": "dong",
  2486. "_objFlags": 0,
  2487. "_parent": {
  2488. "__id__": 66
  2489. },
  2490. "_children": [],
  2491. "_active": false,
  2492. "_components": [
  2493. {
  2494. "__id__": 68
  2495. },
  2496. {
  2497. "__id__": 69
  2498. }
  2499. ],
  2500. "_prefab": null,
  2501. "_lpos": {
  2502. "__type__": "cc.Vec3",
  2503. "x": 40.00099999999975,
  2504. "y": -49.12999999999988,
  2505. "z": 0
  2506. },
  2507. "_lrot": {
  2508. "__type__": "cc.Quat",
  2509. "x": 0,
  2510. "y": 0,
  2511. "z": 0,
  2512. "w": 1
  2513. },
  2514. "_lscale": {
  2515. "__type__": "cc.Vec3",
  2516. "x": 1,
  2517. "y": 1,
  2518. "z": 1
  2519. },
  2520. "_mobility": 0,
  2521. "_layer": 33554432,
  2522. "_euler": {
  2523. "__type__": "cc.Vec3",
  2524. "x": 0,
  2525. "y": 0,
  2526. "z": 0
  2527. },
  2528. "_id": "99dqkQzldKY7kYFMrvd8Z4"
  2529. },
  2530. {
  2531. "__type__": "cc.UITransform",
  2532. "_name": "",
  2533. "_objFlags": 0,
  2534. "node": {
  2535. "__id__": 67
  2536. },
  2537. "_enabled": true,
  2538. "__prefab": null,
  2539. "_contentSize": {
  2540. "__type__": "cc.Size",
  2541. "width": 201,
  2542. "height": 166
  2543. },
  2544. "_anchorPoint": {
  2545. "__type__": "cc.Vec2",
  2546. "x": 0.5,
  2547. "y": 0.5
  2548. },
  2549. "_id": "763xZ1GeFF4KQU4FTywxUQ"
  2550. },
  2551. {
  2552. "__type__": "cc.Sprite",
  2553. "_name": "",
  2554. "_objFlags": 0,
  2555. "node": {
  2556. "__id__": 67
  2557. },
  2558. "_enabled": true,
  2559. "__prefab": null,
  2560. "_customMaterial": null,
  2561. "_srcBlendFactor": 2,
  2562. "_dstBlendFactor": 4,
  2563. "_color": {
  2564. "__type__": "cc.Color",
  2565. "r": 255,
  2566. "g": 255,
  2567. "b": 255,
  2568. "a": 255
  2569. },
  2570. "_spriteFrame": {
  2571. "__uuid__": "fbc3faa1-5e14-4782-9952-7b8d90328d69@f9941",
  2572. "__expectedType__": "cc.SpriteFrame"
  2573. },
  2574. "_type": 0,
  2575. "_fillType": 0,
  2576. "_sizeMode": 1,
  2577. "_fillCenter": {
  2578. "__type__": "cc.Vec2",
  2579. "x": 0,
  2580. "y": 0
  2581. },
  2582. "_fillStart": 0,
  2583. "_fillRange": 0,
  2584. "_isTrimmedMode": true,
  2585. "_useGrayscale": false,
  2586. "_atlas": null,
  2587. "_id": "35kE7P64pKoqaJkQCaQ6xO"
  2588. },
  2589. {
  2590. "__type__": "cc.Node",
  2591. "_name": "reward",
  2592. "_objFlags": 0,
  2593. "_parent": {
  2594. "__id__": 66
  2595. },
  2596. "_children": [],
  2597. "_active": true,
  2598. "_components": [
  2599. {
  2600. "__id__": 71
  2601. },
  2602. {
  2603. "__id__": 72
  2604. }
  2605. ],
  2606. "_prefab": null,
  2607. "_lpos": {
  2608. "__type__": "cc.Vec3",
  2609. "x": 33.67499999999973,
  2610. "y": -50.15100000000007,
  2611. "z": 0
  2612. },
  2613. "_lrot": {
  2614. "__type__": "cc.Quat",
  2615. "x": 0,
  2616. "y": 0,
  2617. "z": 0,
  2618. "w": 1
  2619. },
  2620. "_lscale": {
  2621. "__type__": "cc.Vec3",
  2622. "x": 1,
  2623. "y": 1,
  2624. "z": 1
  2625. },
  2626. "_mobility": 0,
  2627. "_layer": 33554432,
  2628. "_euler": {
  2629. "__type__": "cc.Vec3",
  2630. "x": 0,
  2631. "y": 0,
  2632. "z": 0
  2633. },
  2634. "_id": "9d+cYnRplPYbiN4IzHVJMm"
  2635. },
  2636. {
  2637. "__type__": "cc.UITransform",
  2638. "_name": "",
  2639. "_objFlags": 0,
  2640. "node": {
  2641. "__id__": 70
  2642. },
  2643. "_enabled": true,
  2644. "__prefab": null,
  2645. "_contentSize": {
  2646. "__type__": "cc.Size",
  2647. "width": 143,
  2648. "height": 132
  2649. },
  2650. "_anchorPoint": {
  2651. "__type__": "cc.Vec2",
  2652. "x": 0.5,
  2653. "y": 0.5
  2654. },
  2655. "_id": "95httavf9MWKuiUIO28Ul3"
  2656. },
  2657. {
  2658. "__type__": "cc.Sprite",
  2659. "_name": "",
  2660. "_objFlags": 0,
  2661. "node": {
  2662. "__id__": 70
  2663. },
  2664. "_enabled": true,
  2665. "__prefab": null,
  2666. "_customMaterial": null,
  2667. "_srcBlendFactor": 2,
  2668. "_dstBlendFactor": 4,
  2669. "_color": {
  2670. "__type__": "cc.Color",
  2671. "r": 255,
  2672. "g": 255,
  2673. "b": 255,
  2674. "a": 255
  2675. },
  2676. "_spriteFrame": {
  2677. "__uuid__": "3fd42351-ae7c-4988-bdd6-bb0b29e5019d@f9941",
  2678. "__expectedType__": "cc.SpriteFrame"
  2679. },
  2680. "_type": 0,
  2681. "_fillType": 0,
  2682. "_sizeMode": 1,
  2683. "_fillCenter": {
  2684. "__type__": "cc.Vec2",
  2685. "x": 0,
  2686. "y": 0
  2687. },
  2688. "_fillStart": 0,
  2689. "_fillRange": 0,
  2690. "_isTrimmedMode": true,
  2691. "_useGrayscale": false,
  2692. "_atlas": null,
  2693. "_id": "b5glV/OcdBt6U6co2bHtUE"
  2694. },
  2695. {
  2696. "__type__": "cc.UITransform",
  2697. "_name": "",
  2698. "_objFlags": 0,
  2699. "node": {
  2700. "__id__": 66
  2701. },
  2702. "_enabled": true,
  2703. "__prefab": null,
  2704. "_contentSize": {
  2705. "__type__": "cc.Size",
  2706. "width": 463,
  2707. "height": 324
  2708. },
  2709. "_anchorPoint": {
  2710. "__type__": "cc.Vec2",
  2711. "x": 0.5,
  2712. "y": 0.5
  2713. },
  2714. "_id": "3eZ4+L5VJHyq3BXvYyVXBR"
  2715. },
  2716. {
  2717. "__type__": "cc.Sprite",
  2718. "_name": "",
  2719. "_objFlags": 0,
  2720. "node": {
  2721. "__id__": 66
  2722. },
  2723. "_enabled": true,
  2724. "__prefab": null,
  2725. "_customMaterial": null,
  2726. "_srcBlendFactor": 2,
  2727. "_dstBlendFactor": 4,
  2728. "_color": {
  2729. "__type__": "cc.Color",
  2730. "r": 255,
  2731. "g": 255,
  2732. "b": 255,
  2733. "a": 255
  2734. },
  2735. "_spriteFrame": {
  2736. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  2737. "__expectedType__": "cc.SpriteFrame"
  2738. },
  2739. "_type": 0,
  2740. "_fillType": 0,
  2741. "_sizeMode": 1,
  2742. "_fillCenter": {
  2743. "__type__": "cc.Vec2",
  2744. "x": 0,
  2745. "y": 0
  2746. },
  2747. "_fillStart": 0,
  2748. "_fillRange": 0,
  2749. "_isTrimmedMode": true,
  2750. "_useGrayscale": false,
  2751. "_atlas": null,
  2752. "_id": "e1naGd3nFExZF0R4/u6xxi"
  2753. },
  2754. {
  2755. "__type__": "cc.Button",
  2756. "_name": "",
  2757. "_objFlags": 0,
  2758. "node": {
  2759. "__id__": 66
  2760. },
  2761. "_enabled": true,
  2762. "__prefab": null,
  2763. "clickEvents": [
  2764. {
  2765. "__id__": 76
  2766. }
  2767. ],
  2768. "_interactable": true,
  2769. "_transition": 0,
  2770. "_normalColor": {
  2771. "__type__": "cc.Color",
  2772. "r": 255,
  2773. "g": 255,
  2774. "b": 255,
  2775. "a": 255
  2776. },
  2777. "_hoverColor": {
  2778. "__type__": "cc.Color",
  2779. "r": 211,
  2780. "g": 211,
  2781. "b": 211,
  2782. "a": 255
  2783. },
  2784. "_pressedColor": {
  2785. "__type__": "cc.Color",
  2786. "r": 255,
  2787. "g": 255,
  2788. "b": 255,
  2789. "a": 255
  2790. },
  2791. "_disabledColor": {
  2792. "__type__": "cc.Color",
  2793. "r": 124,
  2794. "g": 124,
  2795. "b": 124,
  2796. "a": 255
  2797. },
  2798. "_normalSprite": {
  2799. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  2800. "__expectedType__": "cc.SpriteFrame"
  2801. },
  2802. "_hoverSprite": null,
  2803. "_pressedSprite": null,
  2804. "_disabledSprite": null,
  2805. "_duration": 0.1,
  2806. "_zoomScale": 1.2,
  2807. "_target": null,
  2808. "_id": "f2esrNQZNHm65S83thgQGU"
  2809. },
  2810. {
  2811. "__type__": "cc.ClickEvent",
  2812. "target": {
  2813. "__id__": 16
  2814. },
  2815. "component": "",
  2816. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  2817. "handler": "clickNode",
  2818. "customEventData": "4"
  2819. },
  2820. {
  2821. "__type__": "cc.Node",
  2822. "_name": "tower6",
  2823. "_objFlags": 0,
  2824. "_parent": {
  2825. "__id__": 16
  2826. },
  2827. "_children": [
  2828. {
  2829. "__id__": 78
  2830. },
  2831. {
  2832. "__id__": 81
  2833. }
  2834. ],
  2835. "_active": false,
  2836. "_components": [
  2837. {
  2838. "__id__": 84
  2839. },
  2840. {
  2841. "__id__": 85
  2842. },
  2843. {
  2844. "__id__": 86
  2845. }
  2846. ],
  2847. "_prefab": null,
  2848. "_lpos": {
  2849. "__type__": "cc.Vec3",
  2850. "x": 289.15,
  2851. "y": 373.456,
  2852. "z": 0
  2853. },
  2854. "_lrot": {
  2855. "__type__": "cc.Quat",
  2856. "x": 0,
  2857. "y": 0,
  2858. "z": 0,
  2859. "w": 1
  2860. },
  2861. "_lscale": {
  2862. "__type__": "cc.Vec3",
  2863. "x": 1,
  2864. "y": 1,
  2865. "z": 1
  2866. },
  2867. "_mobility": 0,
  2868. "_layer": 33554432,
  2869. "_euler": {
  2870. "__type__": "cc.Vec3",
  2871. "x": 0,
  2872. "y": 0,
  2873. "z": 0
  2874. },
  2875. "_id": "c94IDrX3NJ2a7D5UCG6mvj"
  2876. },
  2877. {
  2878. "__type__": "cc.Node",
  2879. "_name": "dong",
  2880. "_objFlags": 0,
  2881. "_parent": {
  2882. "__id__": 77
  2883. },
  2884. "_children": [],
  2885. "_active": false,
  2886. "_components": [
  2887. {
  2888. "__id__": 79
  2889. },
  2890. {
  2891. "__id__": 80
  2892. }
  2893. ],
  2894. "_prefab": null,
  2895. "_lpos": {
  2896. "__type__": "cc.Vec3",
  2897. "x": 40.00099999999975,
  2898. "y": -49.12999999999988,
  2899. "z": 0
  2900. },
  2901. "_lrot": {
  2902. "__type__": "cc.Quat",
  2903. "x": 0,
  2904. "y": 0,
  2905. "z": 0,
  2906. "w": 1
  2907. },
  2908. "_lscale": {
  2909. "__type__": "cc.Vec3",
  2910. "x": 1,
  2911. "y": 1,
  2912. "z": 1
  2913. },
  2914. "_mobility": 0,
  2915. "_layer": 33554432,
  2916. "_euler": {
  2917. "__type__": "cc.Vec3",
  2918. "x": 0,
  2919. "y": 0,
  2920. "z": 0
  2921. },
  2922. "_id": "87yc/ctWZJU68XTXaRKf3G"
  2923. },
  2924. {
  2925. "__type__": "cc.UITransform",
  2926. "_name": "",
  2927. "_objFlags": 0,
  2928. "node": {
  2929. "__id__": 78
  2930. },
  2931. "_enabled": true,
  2932. "__prefab": null,
  2933. "_contentSize": {
  2934. "__type__": "cc.Size",
  2935. "width": 201,
  2936. "height": 166
  2937. },
  2938. "_anchorPoint": {
  2939. "__type__": "cc.Vec2",
  2940. "x": 0.5,
  2941. "y": 0.5
  2942. },
  2943. "_id": "fexmb/KvNJuI6Qp9KGO8Dy"
  2944. },
  2945. {
  2946. "__type__": "cc.Sprite",
  2947. "_name": "",
  2948. "_objFlags": 0,
  2949. "node": {
  2950. "__id__": 78
  2951. },
  2952. "_enabled": true,
  2953. "__prefab": null,
  2954. "_customMaterial": null,
  2955. "_srcBlendFactor": 2,
  2956. "_dstBlendFactor": 4,
  2957. "_color": {
  2958. "__type__": "cc.Color",
  2959. "r": 255,
  2960. "g": 255,
  2961. "b": 255,
  2962. "a": 255
  2963. },
  2964. "_spriteFrame": {
  2965. "__uuid__": "fbc3faa1-5e14-4782-9952-7b8d90328d69@f9941",
  2966. "__expectedType__": "cc.SpriteFrame"
  2967. },
  2968. "_type": 0,
  2969. "_fillType": 0,
  2970. "_sizeMode": 1,
  2971. "_fillCenter": {
  2972. "__type__": "cc.Vec2",
  2973. "x": 0,
  2974. "y": 0
  2975. },
  2976. "_fillStart": 0,
  2977. "_fillRange": 0,
  2978. "_isTrimmedMode": true,
  2979. "_useGrayscale": false,
  2980. "_atlas": null,
  2981. "_id": "f38G00JdNPoJnWLOTm1kQi"
  2982. },
  2983. {
  2984. "__type__": "cc.Node",
  2985. "_name": "reward",
  2986. "_objFlags": 0,
  2987. "_parent": {
  2988. "__id__": 77
  2989. },
  2990. "_children": [],
  2991. "_active": true,
  2992. "_components": [
  2993. {
  2994. "__id__": 82
  2995. },
  2996. {
  2997. "__id__": 83
  2998. }
  2999. ],
  3000. "_prefab": null,
  3001. "_lpos": {
  3002. "__type__": "cc.Vec3",
  3003. "x": 33.6749999999995,
  3004. "y": -50.15100000000007,
  3005. "z": 0
  3006. },
  3007. "_lrot": {
  3008. "__type__": "cc.Quat",
  3009. "x": 0,
  3010. "y": 0,
  3011. "z": 0,
  3012. "w": 1
  3013. },
  3014. "_lscale": {
  3015. "__type__": "cc.Vec3",
  3016. "x": 1,
  3017. "y": 1,
  3018. "z": 1
  3019. },
  3020. "_mobility": 0,
  3021. "_layer": 33554432,
  3022. "_euler": {
  3023. "__type__": "cc.Vec3",
  3024. "x": 0,
  3025. "y": 0,
  3026. "z": 0
  3027. },
  3028. "_id": "7aj5EZJvdM84i44jnZXlwi"
  3029. },
  3030. {
  3031. "__type__": "cc.UITransform",
  3032. "_name": "",
  3033. "_objFlags": 0,
  3034. "node": {
  3035. "__id__": 81
  3036. },
  3037. "_enabled": true,
  3038. "__prefab": null,
  3039. "_contentSize": {
  3040. "__type__": "cc.Size",
  3041. "width": 143,
  3042. "height": 132
  3043. },
  3044. "_anchorPoint": {
  3045. "__type__": "cc.Vec2",
  3046. "x": 0.5,
  3047. "y": 0.5
  3048. },
  3049. "_id": "7bO3WU65VPu6ZeYXYr+f6R"
  3050. },
  3051. {
  3052. "__type__": "cc.Sprite",
  3053. "_name": "",
  3054. "_objFlags": 0,
  3055. "node": {
  3056. "__id__": 81
  3057. },
  3058. "_enabled": true,
  3059. "__prefab": null,
  3060. "_customMaterial": null,
  3061. "_srcBlendFactor": 2,
  3062. "_dstBlendFactor": 4,
  3063. "_color": {
  3064. "__type__": "cc.Color",
  3065. "r": 255,
  3066. "g": 255,
  3067. "b": 255,
  3068. "a": 255
  3069. },
  3070. "_spriteFrame": {
  3071. "__uuid__": "3fd42351-ae7c-4988-bdd6-bb0b29e5019d@f9941",
  3072. "__expectedType__": "cc.SpriteFrame"
  3073. },
  3074. "_type": 0,
  3075. "_fillType": 0,
  3076. "_sizeMode": 1,
  3077. "_fillCenter": {
  3078. "__type__": "cc.Vec2",
  3079. "x": 0,
  3080. "y": 0
  3081. },
  3082. "_fillStart": 0,
  3083. "_fillRange": 0,
  3084. "_isTrimmedMode": true,
  3085. "_useGrayscale": false,
  3086. "_atlas": null,
  3087. "_id": "d60AZ5IOxM6oznwbLmMWHy"
  3088. },
  3089. {
  3090. "__type__": "cc.UITransform",
  3091. "_name": "",
  3092. "_objFlags": 0,
  3093. "node": {
  3094. "__id__": 77
  3095. },
  3096. "_enabled": true,
  3097. "__prefab": null,
  3098. "_contentSize": {
  3099. "__type__": "cc.Size",
  3100. "width": 463,
  3101. "height": 324
  3102. },
  3103. "_anchorPoint": {
  3104. "__type__": "cc.Vec2",
  3105. "x": 0.5,
  3106. "y": 0.5
  3107. },
  3108. "_id": "88dUloRpRJCoAA4E3JcIO3"
  3109. },
  3110. {
  3111. "__type__": "cc.Sprite",
  3112. "_name": "",
  3113. "_objFlags": 0,
  3114. "node": {
  3115. "__id__": 77
  3116. },
  3117. "_enabled": true,
  3118. "__prefab": null,
  3119. "_customMaterial": null,
  3120. "_srcBlendFactor": 2,
  3121. "_dstBlendFactor": 4,
  3122. "_color": {
  3123. "__type__": "cc.Color",
  3124. "r": 255,
  3125. "g": 255,
  3126. "b": 255,
  3127. "a": 255
  3128. },
  3129. "_spriteFrame": {
  3130. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  3131. "__expectedType__": "cc.SpriteFrame"
  3132. },
  3133. "_type": 0,
  3134. "_fillType": 0,
  3135. "_sizeMode": 1,
  3136. "_fillCenter": {
  3137. "__type__": "cc.Vec2",
  3138. "x": 0,
  3139. "y": 0
  3140. },
  3141. "_fillStart": 0,
  3142. "_fillRange": 0,
  3143. "_isTrimmedMode": true,
  3144. "_useGrayscale": false,
  3145. "_atlas": null,
  3146. "_id": "0bTsGPA9NKibiic04ZG+nc"
  3147. },
  3148. {
  3149. "__type__": "cc.Button",
  3150. "_name": "",
  3151. "_objFlags": 0,
  3152. "node": {
  3153. "__id__": 77
  3154. },
  3155. "_enabled": true,
  3156. "__prefab": null,
  3157. "clickEvents": [
  3158. {
  3159. "__id__": 87
  3160. }
  3161. ],
  3162. "_interactable": true,
  3163. "_transition": 0,
  3164. "_normalColor": {
  3165. "__type__": "cc.Color",
  3166. "r": 255,
  3167. "g": 255,
  3168. "b": 255,
  3169. "a": 255
  3170. },
  3171. "_hoverColor": {
  3172. "__type__": "cc.Color",
  3173. "r": 211,
  3174. "g": 211,
  3175. "b": 211,
  3176. "a": 255
  3177. },
  3178. "_pressedColor": {
  3179. "__type__": "cc.Color",
  3180. "r": 255,
  3181. "g": 255,
  3182. "b": 255,
  3183. "a": 255
  3184. },
  3185. "_disabledColor": {
  3186. "__type__": "cc.Color",
  3187. "r": 124,
  3188. "g": 124,
  3189. "b": 124,
  3190. "a": 255
  3191. },
  3192. "_normalSprite": {
  3193. "__uuid__": "1c193995-a0ec-442f-acbd-eb32b1808e46@f9941",
  3194. "__expectedType__": "cc.SpriteFrame"
  3195. },
  3196. "_hoverSprite": null,
  3197. "_pressedSprite": null,
  3198. "_disabledSprite": null,
  3199. "_duration": 0.1,
  3200. "_zoomScale": 1.2,
  3201. "_target": {
  3202. "__id__": 77
  3203. },
  3204. "_id": "fbjxXB/29MlbFZn+rjla4M"
  3205. },
  3206. {
  3207. "__type__": "cc.ClickEvent",
  3208. "target": {
  3209. "__id__": 16
  3210. },
  3211. "component": "",
  3212. "_componentId": "8e8cbBfTcxPepsxjaLiAmtu",
  3213. "handler": "clickNode",
  3214. "customEventData": "5"
  3215. },
  3216. {
  3217. "__type__": "cc.Node",
  3218. "_name": "actionNode",
  3219. "_objFlags": 0,
  3220. "_parent": {
  3221. "__id__": 16
  3222. },
  3223. "_children": [],
  3224. "_active": false,
  3225. "_components": [
  3226. {
  3227. "__id__": 89
  3228. },
  3229. {
  3230. "__id__": 90
  3231. }
  3232. ],
  3233. "_prefab": null,
  3234. "_lpos": {
  3235. "__type__": "cc.Vec3",
  3236. "x": 480,
  3237. "y": 212.5,
  3238. "z": 0
  3239. },
  3240. "_lrot": {
  3241. "__type__": "cc.Quat",
  3242. "x": 0,
  3243. "y": 0,
  3244. "z": 0,
  3245. "w": 1
  3246. },
  3247. "_lscale": {
  3248. "__type__": "cc.Vec3",
  3249. "x": 1,
  3250. "y": 1,
  3251. "z": 1
  3252. },
  3253. "_mobility": 0,
  3254. "_layer": 33554432,
  3255. "_euler": {
  3256. "__type__": "cc.Vec3",
  3257. "x": 0,
  3258. "y": 0,
  3259. "z": 0
  3260. },
  3261. "_id": "1fVQ+IKQlAZq3jjRdiD3F9"
  3262. },
  3263. {
  3264. "__type__": "cc.UITransform",
  3265. "_name": "",
  3266. "_objFlags": 0,
  3267. "node": {
  3268. "__id__": 88
  3269. },
  3270. "_enabled": true,
  3271. "__prefab": null,
  3272. "_contentSize": {
  3273. "__type__": "cc.Size",
  3274. "width": 208,
  3275. "height": 269
  3276. },
  3277. "_anchorPoint": {
  3278. "__type__": "cc.Vec2",
  3279. "x": 0.5,
  3280. "y": 0.5
  3281. },
  3282. "_id": "eaOtPDuqtLKreWizp7wSLG"
  3283. },
  3284. {
  3285. "__type__": "cc.Sprite",
  3286. "_name": "",
  3287. "_objFlags": 0,
  3288. "node": {
  3289. "__id__": 88
  3290. },
  3291. "_enabled": true,
  3292. "__prefab": null,
  3293. "_customMaterial": null,
  3294. "_srcBlendFactor": 2,
  3295. "_dstBlendFactor": 4,
  3296. "_color": {
  3297. "__type__": "cc.Color",
  3298. "r": 255,
  3299. "g": 255,
  3300. "b": 255,
  3301. "a": 255
  3302. },
  3303. "_spriteFrame": {
  3304. "__uuid__": "25781556-214c-4a43-98a7-dd3aba8e87f3@f9941",
  3305. "__expectedType__": "cc.SpriteFrame"
  3306. },
  3307. "_type": 0,
  3308. "_fillType": 0,
  3309. "_sizeMode": 1,
  3310. "_fillCenter": {
  3311. "__type__": "cc.Vec2",
  3312. "x": 0,
  3313. "y": 0
  3314. },
  3315. "_fillStart": 0,
  3316. "_fillRange": 0,
  3317. "_isTrimmedMode": true,
  3318. "_useGrayscale": false,
  3319. "_atlas": null,
  3320. "_id": "9fItwNTvBNsbGMI8YWIejz"
  3321. },
  3322. {
  3323. "__type__": "cc.Node",
  3324. "_name": "maskNode",
  3325. "_objFlags": 0,
  3326. "_parent": {
  3327. "__id__": 16
  3328. },
  3329. "_children": [],
  3330. "_active": true,
  3331. "_components": [
  3332. {
  3333. "__id__": 92
  3334. },
  3335. {
  3336. "__id__": 93
  3337. }
  3338. ],
  3339. "_prefab": null,
  3340. "_lpos": {
  3341. "__type__": "cc.Vec3",
  3342. "x": 115.98579881656805,
  3343. "y": 0,
  3344. "z": 0
  3345. },
  3346. "_lrot": {
  3347. "__type__": "cc.Quat",
  3348. "x": 0,
  3349. "y": 0,
  3350. "z": 0,
  3351. "w": 1
  3352. },
  3353. "_lscale": {
  3354. "__type__": "cc.Vec3",
  3355. "x": 1,
  3356. "y": 1,
  3357. "z": 1
  3358. },
  3359. "_mobility": 0,
  3360. "_layer": 33554432,
  3361. "_euler": {
  3362. "__type__": "cc.Vec3",
  3363. "x": 0,
  3364. "y": 0,
  3365. "z": 0
  3366. },
  3367. "_id": "29mEOfTC1IFqvW5fyNcWeA"
  3368. },
  3369. {
  3370. "__type__": "cc.UITransform",
  3371. "_name": "",
  3372. "_objFlags": 0,
  3373. "node": {
  3374. "__id__": 91
  3375. },
  3376. "_enabled": true,
  3377. "__prefab": null,
  3378. "_contentSize": {
  3379. "__type__": "cc.Size",
  3380. "width": 1138.028402366864,
  3381. "height": 1134
  3382. },
  3383. "_anchorPoint": {
  3384. "__type__": "cc.Vec2",
  3385. "x": 0.5,
  3386. "y": 0.5
  3387. },
  3388. "_id": "8aQF5JxpFAOJRS+UCkWXr6"
  3389. },
  3390. {
  3391. "__type__": "cc.BlockInputEvents",
  3392. "_name": "",
  3393. "_objFlags": 0,
  3394. "node": {
  3395. "__id__": 91
  3396. },
  3397. "_enabled": true,
  3398. "__prefab": null,
  3399. "_id": "8bmMifiUBPXpPG8Q5nmAJl"
  3400. },
  3401. {
  3402. "__type__": "cc.UITransform",
  3403. "_name": "",
  3404. "_objFlags": 0,
  3405. "node": {
  3406. "__id__": 16
  3407. },
  3408. "_enabled": true,
  3409. "__prefab": null,
  3410. "_contentSize": {
  3411. "__type__": "cc.Size",
  3412. "width": 1895.1957396449704,
  3413. "height": 1134
  3414. },
  3415. "_anchorPoint": {
  3416. "__type__": "cc.Vec2",
  3417. "x": 0.5,
  3418. "y": 0.5
  3419. },
  3420. "_id": "fbxfx2IEBGaJ02CIkvcD3f"
  3421. },
  3422. {
  3423. "__type__": "cc.Sprite",
  3424. "_name": "",
  3425. "_objFlags": 0,
  3426. "node": {
  3427. "__id__": 16
  3428. },
  3429. "_enabled": false,
  3430. "__prefab": null,
  3431. "_customMaterial": null,
  3432. "_srcBlendFactor": 2,
  3433. "_dstBlendFactor": 4,
  3434. "_color": {
  3435. "__type__": "cc.Color",
  3436. "r": 255,
  3437. "g": 255,
  3438. "b": 255,
  3439. "a": 255
  3440. },
  3441. "_spriteFrame": {
  3442. "__uuid__": "b4014cff-97e7-4bf6-ad27-8e08cc9c2c63@f9941",
  3443. "__expectedType__": "cc.SpriteFrame"
  3444. },
  3445. "_type": 0,
  3446. "_fillType": 0,
  3447. "_sizeMode": 0,
  3448. "_fillCenter": {
  3449. "__type__": "cc.Vec2",
  3450. "x": 0,
  3451. "y": 0
  3452. },
  3453. "_fillStart": 0,
  3454. "_fillRange": 0,
  3455. "_isTrimmedMode": true,
  3456. "_useGrayscale": false,
  3457. "_atlas": null,
  3458. "_id": "1ePJExlbRNDoBWJ0wK3reQ"
  3459. },
  3460. {
  3461. "__type__": "8e8cbBfTcxPepsxjaLiAmtu",
  3462. "_name": "",
  3463. "_objFlags": 0,
  3464. "node": {
  3465. "__id__": 16
  3466. },
  3467. "_enabled": true,
  3468. "__prefab": null,
  3469. "TowerList": [
  3470. {
  3471. "__id__": 22
  3472. },
  3473. {
  3474. "__id__": 33
  3475. },
  3476. {
  3477. "__id__": 44
  3478. },
  3479. {
  3480. "__id__": 55
  3481. },
  3482. {
  3483. "__id__": 66
  3484. },
  3485. {
  3486. "__id__": 77
  3487. }
  3488. ],
  3489. "actionNode": {
  3490. "__id__": 88
  3491. },
  3492. "maskNode": {
  3493. "__id__": 91
  3494. },
  3495. "_id": "eb9p+O58FLWJCusA+fwd7f"
  3496. },
  3497. {
  3498. "__type__": "cc.UITransform",
  3499. "_name": "",
  3500. "_objFlags": 0,
  3501. "node": {
  3502. "__id__": 15
  3503. },
  3504. "_enabled": true,
  3505. "__prefab": null,
  3506. "_contentSize": {
  3507. "__type__": "cc.Size",
  3508. "width": 2388,
  3509. "height": 1431
  3510. },
  3511. "_anchorPoint": {
  3512. "__type__": "cc.Vec2",
  3513. "x": 0.5,
  3514. "y": 0.5
  3515. },
  3516. "_id": "a4pA9lnhVBM6Yy9vRFW474"
  3517. },
  3518. {
  3519. "__type__": "cc.Mask",
  3520. "_name": "",
  3521. "_objFlags": 0,
  3522. "node": {
  3523. "__id__": 15
  3524. },
  3525. "_enabled": true,
  3526. "__prefab": null,
  3527. "_type": 0,
  3528. "_inverted": false,
  3529. "_segments": 64,
  3530. "_alphaThreshold": 0.1,
  3531. "_id": "4f21nYdI1AprMaZ0UIAu44"
  3532. },
  3533. {
  3534. "__type__": "cc.Graphics",
  3535. "_name": "",
  3536. "_objFlags": 0,
  3537. "node": {
  3538. "__id__": 15
  3539. },
  3540. "_enabled": true,
  3541. "__prefab": null,
  3542. "_customMaterial": null,
  3543. "_srcBlendFactor": 2,
  3544. "_dstBlendFactor": 4,
  3545. "_color": {
  3546. "__type__": "cc.Color",
  3547. "r": 255,
  3548. "g": 255,
  3549. "b": 255,
  3550. "a": 255
  3551. },
  3552. "_lineWidth": 1,
  3553. "_strokeColor": {
  3554. "__type__": "cc.Color",
  3555. "r": 0,
  3556. "g": 0,
  3557. "b": 0,
  3558. "a": 255
  3559. },
  3560. "_lineJoin": 2,
  3561. "_lineCap": 0,
  3562. "_fillColor": {
  3563. "__type__": "cc.Color",
  3564. "r": 255,
  3565. "g": 255,
  3566. "b": 255,
  3567. "a": 0
  3568. },
  3569. "_miterLimit": 10,
  3570. "_id": "65oMu5ehlA5J/n/t1q1kUm"
  3571. },
  3572. {
  3573. "__type__": "cc.UITransform",
  3574. "_name": "",
  3575. "_objFlags": 0,
  3576. "node": {
  3577. "__id__": 14
  3578. },
  3579. "_enabled": true,
  3580. "__prefab": null,
  3581. "_contentSize": {
  3582. "__type__": "cc.Size",
  3583. "width": 2388,
  3584. "height": 1431
  3585. },
  3586. "_anchorPoint": {
  3587. "__type__": "cc.Vec2",
  3588. "x": 0.5,
  3589. "y": 0.5
  3590. },
  3591. "_id": "2cVVHjDb1OK5Urf580PS6M"
  3592. },
  3593. {
  3594. "__type__": "cc.Widget",
  3595. "_name": "",
  3596. "_objFlags": 0,
  3597. "node": {
  3598. "__id__": 14
  3599. },
  3600. "_enabled": true,
  3601. "__prefab": null,
  3602. "_alignFlags": 45,
  3603. "_target": null,
  3604. "_left": 0,
  3605. "_right": 0,
  3606. "_top": 0,
  3607. "_bottom": 0,
  3608. "_horizontalCenter": 0,
  3609. "_verticalCenter": 0,
  3610. "_isAbsLeft": true,
  3611. "_isAbsRight": true,
  3612. "_isAbsTop": true,
  3613. "_isAbsBottom": true,
  3614. "_isAbsHorizontalCenter": true,
  3615. "_isAbsVerticalCenter": true,
  3616. "_originalWidth": 1532,
  3617. "_originalHeight": 1336,
  3618. "_alignMode": 2,
  3619. "_lockFlags": 0,
  3620. "_id": "9aFbAReTlG26QQjumwVtfz"
  3621. },
  3622. {
  3623. "__type__": "cc.Node",
  3624. "_name": "GameEndTip",
  3625. "_objFlags": 0,
  3626. "_parent": {
  3627. "__id__": 6
  3628. },
  3629. "_children": [
  3630. {
  3631. "__id__": 103
  3632. },
  3633. {
  3634. "__id__": 107
  3635. },
  3636. {
  3637. "__id__": 110
  3638. },
  3639. {
  3640. "__id__": 113
  3641. },
  3642. {
  3643. "__id__": 121
  3644. },
  3645. {
  3646. "__id__": 129
  3647. },
  3648. {
  3649. "__id__": 132
  3650. },
  3651. {
  3652. "__id__": 135
  3653. }
  3654. ],
  3655. "_active": false,
  3656. "_components": [
  3657. {
  3658. "__id__": 138
  3659. },
  3660. {
  3661. "__id__": 139
  3662. },
  3663. {
  3664. "__id__": 140
  3665. },
  3666. {
  3667. "__id__": 141
  3668. }
  3669. ],
  3670. "_prefab": null,
  3671. "_lpos": {
  3672. "__type__": "cc.Vec3",
  3673. "x": 0,
  3674. "y": 0,
  3675. "z": 0
  3676. },
  3677. "_lrot": {
  3678. "__type__": "cc.Quat",
  3679. "x": 0,
  3680. "y": 0,
  3681. "z": 0,
  3682. "w": 1
  3683. },
  3684. "_lscale": {
  3685. "__type__": "cc.Vec3",
  3686. "x": 0.976,
  3687. "y": 0.976,
  3688. "z": 0.976
  3689. },
  3690. "_mobility": 0,
  3691. "_layer": 33554432,
  3692. "_euler": {
  3693. "__type__": "cc.Vec3",
  3694. "x": 0,
  3695. "y": 0,
  3696. "z": 0
  3697. },
  3698. "_id": "93JjkViVVAV7PtAJqtBMLi"
  3699. },
  3700. {
  3701. "__type__": "cc.Node",
  3702. "_name": "bg",
  3703. "_objFlags": 0,
  3704. "_parent": {
  3705. "__id__": 102
  3706. },
  3707. "_children": [],
  3708. "_active": true,
  3709. "_components": [
  3710. {
  3711. "__id__": 104
  3712. },
  3713. {
  3714. "__id__": 105
  3715. },
  3716. {
  3717. "__id__": 106
  3718. }
  3719. ],
  3720. "_prefab": null,
  3721. "_lpos": {
  3722. "__type__": "cc.Vec3",
  3723. "x": 0,
  3724. "y": 0,
  3725. "z": 0
  3726. },
  3727. "_lrot": {
  3728. "__type__": "cc.Quat",
  3729. "x": 0,
  3730. "y": 0,
  3731. "z": 0,
  3732. "w": 1
  3733. },
  3734. "_lscale": {
  3735. "__type__": "cc.Vec3",
  3736. "x": 1,
  3737. "y": 1,
  3738. "z": 1
  3739. },
  3740. "_mobility": 0,
  3741. "_layer": 33554432,
  3742. "_euler": {
  3743. "__type__": "cc.Vec3",
  3744. "x": 0,
  3745. "y": 0,
  3746. "z": 0
  3747. },
  3748. "_id": "31XHDuimdJEI1t+6/L7yHe"
  3749. },
  3750. {
  3751. "__type__": "cc.UITransform",
  3752. "_name": "",
  3753. "_objFlags": 0,
  3754. "node": {
  3755. "__id__": 103
  3756. },
  3757. "_enabled": true,
  3758. "__prefab": null,
  3759. "_contentSize": {
  3760. "__type__": "cc.Size",
  3761. "width": 2461.8,
  3762. "height": 1733.3
  3763. },
  3764. "_anchorPoint": {
  3765. "__type__": "cc.Vec2",
  3766. "x": 0.5,
  3767. "y": 0.5
  3768. },
  3769. "_id": "acNFpC5ydPZKWEsOyMPdXO"
  3770. },
  3771. {
  3772. "__type__": "cc.Sprite",
  3773. "_name": "",
  3774. "_objFlags": 0,
  3775. "node": {
  3776. "__id__": 103
  3777. },
  3778. "_enabled": true,
  3779. "__prefab": null,
  3780. "_customMaterial": null,
  3781. "_srcBlendFactor": 2,
  3782. "_dstBlendFactor": 4,
  3783. "_color": {
  3784. "__type__": "cc.Color",
  3785. "r": 3,
  3786. "g": 0,
  3787. "b": 0,
  3788. "a": 176
  3789. },
  3790. "_spriteFrame": {
  3791. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  3792. "__expectedType__": "cc.SpriteFrame"
  3793. },
  3794. "_type": 1,
  3795. "_fillType": 0,
  3796. "_sizeMode": 0,
  3797. "_fillCenter": {
  3798. "__type__": "cc.Vec2",
  3799. "x": 0,
  3800. "y": 0
  3801. },
  3802. "_fillStart": 0,
  3803. "_fillRange": 0,
  3804. "_isTrimmedMode": true,
  3805. "_useGrayscale": false,
  3806. "_atlas": null,
  3807. "_id": "77V4tKsVJEX7s2w4moSgIh"
  3808. },
  3809. {
  3810. "__type__": "cc.BlockInputEvents",
  3811. "_name": "",
  3812. "_objFlags": 0,
  3813. "node": {
  3814. "__id__": 103
  3815. },
  3816. "_enabled": true,
  3817. "__prefab": null,
  3818. "_id": "96mc2BGyFA77T4zTAlZavg"
  3819. },
  3820. {
  3821. "__type__": "cc.Node",
  3822. "_name": "Sprite",
  3823. "_objFlags": 0,
  3824. "_parent": {
  3825. "__id__": 102
  3826. },
  3827. "_children": [],
  3828. "_active": true,
  3829. "_components": [
  3830. {
  3831. "__id__": 108
  3832. },
  3833. {
  3834. "__id__": 109
  3835. }
  3836. ],
  3837. "_prefab": null,
  3838. "_lpos": {
  3839. "__type__": "cc.Vec3",
  3840. "x": 0,
  3841. "y": -18.761,
  3842. "z": 0
  3843. },
  3844. "_lrot": {
  3845. "__type__": "cc.Quat",
  3846. "x": 0,
  3847. "y": 0,
  3848. "z": 0,
  3849. "w": 1
  3850. },
  3851. "_lscale": {
  3852. "__type__": "cc.Vec3",
  3853. "x": 1,
  3854. "y": 1,
  3855. "z": 1
  3856. },
  3857. "_mobility": 0,
  3858. "_layer": 33554432,
  3859. "_euler": {
  3860. "__type__": "cc.Vec3",
  3861. "x": 0,
  3862. "y": 0,
  3863. "z": 0
  3864. },
  3865. "_id": "9fs+apmJpJroKm3/UD+5uF"
  3866. },
  3867. {
  3868. "__type__": "cc.UITransform",
  3869. "_name": "",
  3870. "_objFlags": 0,
  3871. "node": {
  3872. "__id__": 107
  3873. },
  3874. "_enabled": true,
  3875. "__prefab": null,
  3876. "_contentSize": {
  3877. "__type__": "cc.Size",
  3878. "width": 1311,
  3879. "height": 806
  3880. },
  3881. "_anchorPoint": {
  3882. "__type__": "cc.Vec2",
  3883. "x": 0.5,
  3884. "y": 0.5
  3885. },
  3886. "_id": "6frXPnxxJArJzX27dh8uck"
  3887. },
  3888. {
  3889. "__type__": "cc.Sprite",
  3890. "_name": "",
  3891. "_objFlags": 0,
  3892. "node": {
  3893. "__id__": 107
  3894. },
  3895. "_enabled": true,
  3896. "__prefab": null,
  3897. "_customMaterial": null,
  3898. "_srcBlendFactor": 2,
  3899. "_dstBlendFactor": 4,
  3900. "_color": {
  3901. "__type__": "cc.Color",
  3902. "r": 255,
  3903. "g": 255,
  3904. "b": 255,
  3905. "a": 255
  3906. },
  3907. "_spriteFrame": {
  3908. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  3909. "__expectedType__": "cc.SpriteFrame"
  3910. },
  3911. "_type": 0,
  3912. "_fillType": 0,
  3913. "_sizeMode": 1,
  3914. "_fillCenter": {
  3915. "__type__": "cc.Vec2",
  3916. "x": 0,
  3917. "y": 0
  3918. },
  3919. "_fillStart": 0,
  3920. "_fillRange": 0,
  3921. "_isTrimmedMode": true,
  3922. "_useGrayscale": false,
  3923. "_atlas": null,
  3924. "_id": "42+SJdTHJHfaszGgbXO9S7"
  3925. },
  3926. {
  3927. "__type__": "cc.Node",
  3928. "_name": "Label",
  3929. "_objFlags": 0,
  3930. "_parent": {
  3931. "__id__": 102
  3932. },
  3933. "_children": [],
  3934. "_active": true,
  3935. "_components": [
  3936. {
  3937. "__id__": 111
  3938. },
  3939. {
  3940. "__id__": 112
  3941. }
  3942. ],
  3943. "_prefab": null,
  3944. "_lpos": {
  3945. "__type__": "cc.Vec3",
  3946. "x": -27.538,
  3947. "y": 127.951,
  3948. "z": 0
  3949. },
  3950. "_lrot": {
  3951. "__type__": "cc.Quat",
  3952. "x": 0,
  3953. "y": 0,
  3954. "z": 0,
  3955. "w": 1
  3956. },
  3957. "_lscale": {
  3958. "__type__": "cc.Vec3",
  3959. "x": 1,
  3960. "y": 1,
  3961. "z": 1
  3962. },
  3963. "_mobility": 0,
  3964. "_layer": 33554432,
  3965. "_euler": {
  3966. "__type__": "cc.Vec3",
  3967. "x": 0,
  3968. "y": 0,
  3969. "z": 0
  3970. },
  3971. "_id": "683vYYXVNMG4zDSZ2ZL/2x"
  3972. },
  3973. {
  3974. "__type__": "cc.UITransform",
  3975. "_name": "",
  3976. "_objFlags": 0,
  3977. "node": {
  3978. "__id__": 110
  3979. },
  3980. "_enabled": true,
  3981. "__prefab": null,
  3982. "_contentSize": {
  3983. "__type__": "cc.Size",
  3984. "width": 560.454,
  3985. "height": 214.07999999999998
  3986. },
  3987. "_anchorPoint": {
  3988. "__type__": "cc.Vec2",
  3989. "x": 0.5,
  3990. "y": 0.5
  3991. },
  3992. "_id": "4bvdCXN2BJy4+tYUB808Ck"
  3993. },
  3994. {
  3995. "__type__": "cc.Label",
  3996. "_name": "",
  3997. "_objFlags": 0,
  3998. "node": {
  3999. "__id__": 110
  4000. },
  4001. "_enabled": true,
  4002. "__prefab": null,
  4003. "_customMaterial": null,
  4004. "_srcBlendFactor": 2,
  4005. "_dstBlendFactor": 4,
  4006. "_color": {
  4007. "__type__": "cc.Color",
  4008. "r": 169,
  4009. "g": 79,
  4010. "b": 9,
  4011. "a": 255
  4012. },
  4013. "_string": "当前关卡:第1关",
  4014. "_horizontalAlign": 1,
  4015. "_verticalAlign": 1,
  4016. "_actualFontSize": 65,
  4017. "_fontSize": 65,
  4018. "_fontFamily": "Arial",
  4019. "_lineHeight": 100,
  4020. "_overflow": 1,
  4021. "_enableWrapText": true,
  4022. "_font": null,
  4023. "_isSystemFontUsed": true,
  4024. "_spacingX": 0,
  4025. "_isItalic": false,
  4026. "_isBold": true,
  4027. "_isUnderline": false,
  4028. "_underlineHeight": 2,
  4029. "_cacheMode": 0,
  4030. "_id": "f9AYjkkhBO3LqvM/euMVoh"
  4031. },
  4032. {
  4033. "__type__": "cc.Node",
  4034. "_name": "BackHome",
  4035. "_objFlags": 0,
  4036. "_parent": {
  4037. "__id__": 102
  4038. },
  4039. "_children": [
  4040. {
  4041. "__id__": 114
  4042. }
  4043. ],
  4044. "_active": true,
  4045. "_components": [
  4046. {
  4047. "__id__": 117
  4048. },
  4049. {
  4050. "__id__": 118
  4051. },
  4052. {
  4053. "__id__": 119
  4054. }
  4055. ],
  4056. "_prefab": null,
  4057. "_lpos": {
  4058. "__type__": "cc.Vec3",
  4059. "x": -291.21,
  4060. "y": -267.351,
  4061. "z": 0
  4062. },
  4063. "_lrot": {
  4064. "__type__": "cc.Quat",
  4065. "x": 0,
  4066. "y": 0,
  4067. "z": 0,
  4068. "w": 1
  4069. },
  4070. "_lscale": {
  4071. "__type__": "cc.Vec3",
  4072. "x": 1,
  4073. "y": 1,
  4074. "z": 1
  4075. },
  4076. "_mobility": 0,
  4077. "_layer": 33554432,
  4078. "_euler": {
  4079. "__type__": "cc.Vec3",
  4080. "x": 0,
  4081. "y": 0,
  4082. "z": 0
  4083. },
  4084. "_id": "adrsQJwhpLvKCA0edRC9ep"
  4085. },
  4086. {
  4087. "__type__": "cc.Node",
  4088. "_name": "Label",
  4089. "_objFlags": 512,
  4090. "_parent": {
  4091. "__id__": 113
  4092. },
  4093. "_children": [],
  4094. "_active": true,
  4095. "_components": [
  4096. {
  4097. "__id__": 115
  4098. },
  4099. {
  4100. "__id__": 116
  4101. }
  4102. ],
  4103. "_prefab": null,
  4104. "_lpos": {
  4105. "__type__": "cc.Vec3",
  4106. "x": 1.5368852459016438,
  4107. "y": 6.147540983606557,
  4108. "z": 0
  4109. },
  4110. "_lrot": {
  4111. "__type__": "cc.Quat",
  4112. "x": 0,
  4113. "y": 0,
  4114. "z": 0,
  4115. "w": 1
  4116. },
  4117. "_lscale": {
  4118. "__type__": "cc.Vec3",
  4119. "x": 1,
  4120. "y": 1,
  4121. "z": 1
  4122. },
  4123. "_mobility": 0,
  4124. "_layer": 33554432,
  4125. "_euler": {
  4126. "__type__": "cc.Vec3",
  4127. "x": 0,
  4128. "y": 0,
  4129. "z": 0
  4130. },
  4131. "_id": "3fEW57U69K040Vzc1siZdR"
  4132. },
  4133. {
  4134. "__type__": "cc.UITransform",
  4135. "_name": "",
  4136. "_objFlags": 0,
  4137. "node": {
  4138. "__id__": 114
  4139. },
  4140. "_enabled": true,
  4141. "__prefab": null,
  4142. "_contentSize": {
  4143. "__type__": "cc.Size",
  4144. "width": 312.09016393442624,
  4145. "height": 70.73770491803279
  4146. },
  4147. "_anchorPoint": {
  4148. "__type__": "cc.Vec2",
  4149. "x": 0.5,
  4150. "y": 0.5
  4151. },
  4152. "_id": "35RGH0cq1In4hdFQ96Zn3b"
  4153. },
  4154. {
  4155. "__type__": "cc.Label",
  4156. "_name": "",
  4157. "_objFlags": 0,
  4158. "node": {
  4159. "__id__": 114
  4160. },
  4161. "_enabled": true,
  4162. "__prefab": null,
  4163. "_customMaterial": null,
  4164. "_srcBlendFactor": 2,
  4165. "_dstBlendFactor": 4,
  4166. "_color": {
  4167. "__type__": "cc.Color",
  4168. "r": 255,
  4169. "g": 255,
  4170. "b": 255,
  4171. "a": 255
  4172. },
  4173. "_string": "返回首页",
  4174. "_horizontalAlign": 1,
  4175. "_verticalAlign": 1,
  4176. "_actualFontSize": 55,
  4177. "_fontSize": 55,
  4178. "_fontFamily": "Arial",
  4179. "_lineHeight": 70,
  4180. "_overflow": 1,
  4181. "_enableWrapText": false,
  4182. "_font": null,
  4183. "_isSystemFontUsed": true,
  4184. "_spacingX": 0,
  4185. "_isItalic": false,
  4186. "_isBold": false,
  4187. "_isUnderline": false,
  4188. "_underlineHeight": 2,
  4189. "_cacheMode": 0,
  4190. "_id": "feqqaW3iJPF7vftQ39pQEC"
  4191. },
  4192. {
  4193. "__type__": "cc.UITransform",
  4194. "_name": "",
  4195. "_objFlags": 0,
  4196. "node": {
  4197. "__id__": 113
  4198. },
  4199. "_enabled": true,
  4200. "__prefab": null,
  4201. "_contentSize": {
  4202. "__type__": "cc.Size",
  4203. "width": 411,
  4204. "height": 144
  4205. },
  4206. "_anchorPoint": {
  4207. "__type__": "cc.Vec2",
  4208. "x": 0.5,
  4209. "y": 0.5
  4210. },
  4211. "_id": "0d3afojiRHfIoSM5LDTv3k"
  4212. },
  4213. {
  4214. "__type__": "cc.Sprite",
  4215. "_name": "",
  4216. "_objFlags": 0,
  4217. "node": {
  4218. "__id__": 113
  4219. },
  4220. "_enabled": true,
  4221. "__prefab": null,
  4222. "_customMaterial": null,
  4223. "_srcBlendFactor": 2,
  4224. "_dstBlendFactor": 4,
  4225. "_color": {
  4226. "__type__": "cc.Color",
  4227. "r": 255,
  4228. "g": 255,
  4229. "b": 255,
  4230. "a": 255
  4231. },
  4232. "_spriteFrame": {
  4233. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4234. "__expectedType__": "cc.SpriteFrame"
  4235. },
  4236. "_type": 1,
  4237. "_fillType": 0,
  4238. "_sizeMode": 0,
  4239. "_fillCenter": {
  4240. "__type__": "cc.Vec2",
  4241. "x": 0,
  4242. "y": 0
  4243. },
  4244. "_fillStart": 0,
  4245. "_fillRange": 0,
  4246. "_isTrimmedMode": true,
  4247. "_useGrayscale": false,
  4248. "_atlas": null,
  4249. "_id": "b5ibidQGZOda4qgn015afs"
  4250. },
  4251. {
  4252. "__type__": "cc.Button",
  4253. "_name": "",
  4254. "_objFlags": 0,
  4255. "node": {
  4256. "__id__": 113
  4257. },
  4258. "_enabled": true,
  4259. "__prefab": null,
  4260. "clickEvents": [
  4261. {
  4262. "__id__": 120
  4263. }
  4264. ],
  4265. "_interactable": true,
  4266. "_transition": 2,
  4267. "_normalColor": {
  4268. "__type__": "cc.Color",
  4269. "r": 214,
  4270. "g": 214,
  4271. "b": 214,
  4272. "a": 255
  4273. },
  4274. "_hoverColor": {
  4275. "__type__": "cc.Color",
  4276. "r": 211,
  4277. "g": 211,
  4278. "b": 211,
  4279. "a": 255
  4280. },
  4281. "_pressedColor": {
  4282. "__type__": "cc.Color",
  4283. "r": 255,
  4284. "g": 255,
  4285. "b": 255,
  4286. "a": 255
  4287. },
  4288. "_disabledColor": {
  4289. "__type__": "cc.Color",
  4290. "r": 124,
  4291. "g": 124,
  4292. "b": 124,
  4293. "a": 255
  4294. },
  4295. "_normalSprite": {
  4296. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4297. "__expectedType__": "cc.SpriteFrame"
  4298. },
  4299. "_hoverSprite": {
  4300. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4301. "__expectedType__": "cc.SpriteFrame"
  4302. },
  4303. "_pressedSprite": {
  4304. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4305. "__expectedType__": "cc.SpriteFrame"
  4306. },
  4307. "_disabledSprite": {
  4308. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4309. "__expectedType__": "cc.SpriteFrame"
  4310. },
  4311. "_duration": 0.1,
  4312. "_zoomScale": 1.2,
  4313. "_target": {
  4314. "__id__": 113
  4315. },
  4316. "_id": "2ewEGO+npD5Yi774ZON+O8"
  4317. },
  4318. {
  4319. "__type__": "cc.ClickEvent",
  4320. "target": {
  4321. "__id__": 102
  4322. },
  4323. "component": "",
  4324. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  4325. "handler": "backHomeBtn",
  4326. "customEventData": ""
  4327. },
  4328. {
  4329. "__type__": "cc.Node",
  4330. "_name": "EnterGameBtn",
  4331. "_objFlags": 0,
  4332. "_parent": {
  4333. "__id__": 102
  4334. },
  4335. "_children": [
  4336. {
  4337. "__id__": 122
  4338. }
  4339. ],
  4340. "_active": true,
  4341. "_components": [
  4342. {
  4343. "__id__": 125
  4344. },
  4345. {
  4346. "__id__": 126
  4347. },
  4348. {
  4349. "__id__": 127
  4350. }
  4351. ],
  4352. "_prefab": null,
  4353. "_lpos": {
  4354. "__type__": "cc.Vec3",
  4355. "x": 274.528,
  4356. "y": -267.351,
  4357. "z": 0
  4358. },
  4359. "_lrot": {
  4360. "__type__": "cc.Quat",
  4361. "x": 0,
  4362. "y": 0,
  4363. "z": 0,
  4364. "w": 1
  4365. },
  4366. "_lscale": {
  4367. "__type__": "cc.Vec3",
  4368. "x": 1,
  4369. "y": 1,
  4370. "z": 1
  4371. },
  4372. "_mobility": 0,
  4373. "_layer": 33554432,
  4374. "_euler": {
  4375. "__type__": "cc.Vec3",
  4376. "x": 0,
  4377. "y": 0,
  4378. "z": 0
  4379. },
  4380. "_id": "d96f/sKyhH8pWYrtD2NvpM"
  4381. },
  4382. {
  4383. "__type__": "cc.Node",
  4384. "_name": "Label",
  4385. "_objFlags": 512,
  4386. "_parent": {
  4387. "__id__": 121
  4388. },
  4389. "_children": [],
  4390. "_active": true,
  4391. "_components": [
  4392. {
  4393. "__id__": 123
  4394. },
  4395. {
  4396. "__id__": 124
  4397. }
  4398. ],
  4399. "_prefab": null,
  4400. "_lpos": {
  4401. "__type__": "cc.Vec3",
  4402. "x": 1.5368852459016438,
  4403. "y": 6.147540983606557,
  4404. "z": 0
  4405. },
  4406. "_lrot": {
  4407. "__type__": "cc.Quat",
  4408. "x": 0,
  4409. "y": 0,
  4410. "z": 0,
  4411. "w": 1
  4412. },
  4413. "_lscale": {
  4414. "__type__": "cc.Vec3",
  4415. "x": 1,
  4416. "y": 1,
  4417. "z": 1
  4418. },
  4419. "_mobility": 0,
  4420. "_layer": 33554432,
  4421. "_euler": {
  4422. "__type__": "cc.Vec3",
  4423. "x": 0,
  4424. "y": 0,
  4425. "z": 0
  4426. },
  4427. "_id": "1foVSXWopEjbWb7Y58M752"
  4428. },
  4429. {
  4430. "__type__": "cc.UITransform",
  4431. "_name": "",
  4432. "_objFlags": 0,
  4433. "node": {
  4434. "__id__": 122
  4435. },
  4436. "_enabled": true,
  4437. "__prefab": null,
  4438. "_contentSize": {
  4439. "__type__": "cc.Size",
  4440. "width": 312.09016393442624,
  4441. "height": 70.73770491803279
  4442. },
  4443. "_anchorPoint": {
  4444. "__type__": "cc.Vec2",
  4445. "x": 0.5,
  4446. "y": 0.5
  4447. },
  4448. "_id": "bbGJuCyZNC/Z6g8wMi8fTg"
  4449. },
  4450. {
  4451. "__type__": "cc.Label",
  4452. "_name": "",
  4453. "_objFlags": 0,
  4454. "node": {
  4455. "__id__": 122
  4456. },
  4457. "_enabled": true,
  4458. "__prefab": null,
  4459. "_customMaterial": null,
  4460. "_srcBlendFactor": 2,
  4461. "_dstBlendFactor": 4,
  4462. "_color": {
  4463. "__type__": "cc.Color",
  4464. "r": 255,
  4465. "g": 255,
  4466. "b": 255,
  4467. "a": 255
  4468. },
  4469. "_string": "下一关",
  4470. "_horizontalAlign": 1,
  4471. "_verticalAlign": 1,
  4472. "_actualFontSize": 55,
  4473. "_fontSize": 55,
  4474. "_fontFamily": "Arial",
  4475. "_lineHeight": 70,
  4476. "_overflow": 1,
  4477. "_enableWrapText": false,
  4478. "_font": null,
  4479. "_isSystemFontUsed": true,
  4480. "_spacingX": 0,
  4481. "_isItalic": false,
  4482. "_isBold": false,
  4483. "_isUnderline": false,
  4484. "_underlineHeight": 2,
  4485. "_cacheMode": 0,
  4486. "_id": "66MvUFQAZAgoxN7VIo9CQx"
  4487. },
  4488. {
  4489. "__type__": "cc.UITransform",
  4490. "_name": "",
  4491. "_objFlags": 0,
  4492. "node": {
  4493. "__id__": 121
  4494. },
  4495. "_enabled": true,
  4496. "__prefab": null,
  4497. "_contentSize": {
  4498. "__type__": "cc.Size",
  4499. "width": 411,
  4500. "height": 144
  4501. },
  4502. "_anchorPoint": {
  4503. "__type__": "cc.Vec2",
  4504. "x": 0.5,
  4505. "y": 0.5
  4506. },
  4507. "_id": "3e6wJfzD1G+LRjhvK36HjE"
  4508. },
  4509. {
  4510. "__type__": "cc.Sprite",
  4511. "_name": "",
  4512. "_objFlags": 0,
  4513. "node": {
  4514. "__id__": 121
  4515. },
  4516. "_enabled": true,
  4517. "__prefab": null,
  4518. "_customMaterial": null,
  4519. "_srcBlendFactor": 2,
  4520. "_dstBlendFactor": 4,
  4521. "_color": {
  4522. "__type__": "cc.Color",
  4523. "r": 255,
  4524. "g": 255,
  4525. "b": 255,
  4526. "a": 255
  4527. },
  4528. "_spriteFrame": {
  4529. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4530. "__expectedType__": "cc.SpriteFrame"
  4531. },
  4532. "_type": 1,
  4533. "_fillType": 0,
  4534. "_sizeMode": 0,
  4535. "_fillCenter": {
  4536. "__type__": "cc.Vec2",
  4537. "x": 0,
  4538. "y": 0
  4539. },
  4540. "_fillStart": 0,
  4541. "_fillRange": 0,
  4542. "_isTrimmedMode": true,
  4543. "_useGrayscale": false,
  4544. "_atlas": null,
  4545. "_id": "49stwRG7xGy6/NfKKXONkv"
  4546. },
  4547. {
  4548. "__type__": "cc.Button",
  4549. "_name": "",
  4550. "_objFlags": 0,
  4551. "node": {
  4552. "__id__": 121
  4553. },
  4554. "_enabled": true,
  4555. "__prefab": null,
  4556. "clickEvents": [
  4557. {
  4558. "__id__": 128
  4559. }
  4560. ],
  4561. "_interactable": true,
  4562. "_transition": 2,
  4563. "_normalColor": {
  4564. "__type__": "cc.Color",
  4565. "r": 214,
  4566. "g": 214,
  4567. "b": 214,
  4568. "a": 255
  4569. },
  4570. "_hoverColor": {
  4571. "__type__": "cc.Color",
  4572. "r": 211,
  4573. "g": 211,
  4574. "b": 211,
  4575. "a": 255
  4576. },
  4577. "_pressedColor": {
  4578. "__type__": "cc.Color",
  4579. "r": 255,
  4580. "g": 255,
  4581. "b": 255,
  4582. "a": 255
  4583. },
  4584. "_disabledColor": {
  4585. "__type__": "cc.Color",
  4586. "r": 124,
  4587. "g": 124,
  4588. "b": 124,
  4589. "a": 255
  4590. },
  4591. "_normalSprite": {
  4592. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4593. "__expectedType__": "cc.SpriteFrame"
  4594. },
  4595. "_hoverSprite": {
  4596. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4597. "__expectedType__": "cc.SpriteFrame"
  4598. },
  4599. "_pressedSprite": {
  4600. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4601. "__expectedType__": "cc.SpriteFrame"
  4602. },
  4603. "_disabledSprite": {
  4604. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4605. "__expectedType__": "cc.SpriteFrame"
  4606. },
  4607. "_duration": 0.1,
  4608. "_zoomScale": 1.2,
  4609. "_target": {
  4610. "__id__": 121
  4611. },
  4612. "_id": "47RANVaJlKX53eA7d96CEb"
  4613. },
  4614. {
  4615. "__type__": "cc.ClickEvent",
  4616. "target": {
  4617. "__id__": 102
  4618. },
  4619. "component": "",
  4620. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  4621. "handler": "levelBtn",
  4622. "customEventData": ""
  4623. },
  4624. {
  4625. "__type__": "cc.Node",
  4626. "_name": "curLevelScore",
  4627. "_objFlags": 0,
  4628. "_parent": {
  4629. "__id__": 102
  4630. },
  4631. "_children": [],
  4632. "_active": true,
  4633. "_components": [
  4634. {
  4635. "__id__": 130
  4636. },
  4637. {
  4638. "__id__": 131
  4639. }
  4640. ],
  4641. "_prefab": null,
  4642. "_lpos": {
  4643. "__type__": "cc.Vec3",
  4644. "x": 360.28,
  4645. "y": -41.767,
  4646. "z": 0
  4647. },
  4648. "_lrot": {
  4649. "__type__": "cc.Quat",
  4650. "x": 0,
  4651. "y": 0,
  4652. "z": 0,
  4653. "w": 1
  4654. },
  4655. "_lscale": {
  4656. "__type__": "cc.Vec3",
  4657. "x": 1,
  4658. "y": 1,
  4659. "z": 1
  4660. },
  4661. "_mobility": 0,
  4662. "_layer": 33554432,
  4663. "_euler": {
  4664. "__type__": "cc.Vec3",
  4665. "x": 0,
  4666. "y": 0,
  4667. "z": 0
  4668. },
  4669. "_id": "c2t2qam5FJSa7f+VRY4xwL"
  4670. },
  4671. {
  4672. "__type__": "cc.UITransform",
  4673. "_name": "",
  4674. "_objFlags": 0,
  4675. "node": {
  4676. "__id__": 129
  4677. },
  4678. "_enabled": true,
  4679. "__prefab": null,
  4680. "_contentSize": {
  4681. "__type__": "cc.Size",
  4682. "width": 560.454,
  4683. "height": 214.07999999999998
  4684. },
  4685. "_anchorPoint": {
  4686. "__type__": "cc.Vec2",
  4687. "x": 0.5,
  4688. "y": 0.5
  4689. },
  4690. "_id": "54iE2ohRhF4ovuxzUVzZli"
  4691. },
  4692. {
  4693. "__type__": "cc.Label",
  4694. "_name": "",
  4695. "_objFlags": 0,
  4696. "node": {
  4697. "__id__": 129
  4698. },
  4699. "_enabled": true,
  4700. "__prefab": null,
  4701. "_customMaterial": null,
  4702. "_srcBlendFactor": 2,
  4703. "_dstBlendFactor": 4,
  4704. "_color": {
  4705. "__type__": "cc.Color",
  4706. "r": 169,
  4707. "g": 79,
  4708. "b": 9,
  4709. "a": 255
  4710. },
  4711. "_string": "本关得分:1",
  4712. "_horizontalAlign": 0,
  4713. "_verticalAlign": 1,
  4714. "_actualFontSize": 60,
  4715. "_fontSize": 60,
  4716. "_fontFamily": "Arial",
  4717. "_lineHeight": 100,
  4718. "_overflow": 1,
  4719. "_enableWrapText": true,
  4720. "_font": null,
  4721. "_isSystemFontUsed": true,
  4722. "_spacingX": 0,
  4723. "_isItalic": false,
  4724. "_isBold": true,
  4725. "_isUnderline": false,
  4726. "_underlineHeight": 2,
  4727. "_cacheMode": 0,
  4728. "_id": "d1pwclNt1CxLkmmf34GWOc"
  4729. },
  4730. {
  4731. "__type__": "cc.Node",
  4732. "_name": "TotalScore",
  4733. "_objFlags": 0,
  4734. "_parent": {
  4735. "__id__": 102
  4736. },
  4737. "_children": [],
  4738. "_active": true,
  4739. "_components": [
  4740. {
  4741. "__id__": 133
  4742. },
  4743. {
  4744. "__id__": 134
  4745. }
  4746. ],
  4747. "_prefab": null,
  4748. "_lpos": {
  4749. "__type__": "cc.Vec3",
  4750. "x": -186.859,
  4751. "y": -41.767,
  4752. "z": 0
  4753. },
  4754. "_lrot": {
  4755. "__type__": "cc.Quat",
  4756. "x": 0,
  4757. "y": 0,
  4758. "z": 0,
  4759. "w": 1
  4760. },
  4761. "_lscale": {
  4762. "__type__": "cc.Vec3",
  4763. "x": 1,
  4764. "y": 1,
  4765. "z": 1
  4766. },
  4767. "_mobility": 0,
  4768. "_layer": 33554432,
  4769. "_euler": {
  4770. "__type__": "cc.Vec3",
  4771. "x": 0,
  4772. "y": 0,
  4773. "z": 0
  4774. },
  4775. "_id": "56X7kQMiFNj5CA75HojXOp"
  4776. },
  4777. {
  4778. "__type__": "cc.UITransform",
  4779. "_name": "",
  4780. "_objFlags": 0,
  4781. "node": {
  4782. "__id__": 132
  4783. },
  4784. "_enabled": true,
  4785. "__prefab": null,
  4786. "_contentSize": {
  4787. "__type__": "cc.Size",
  4788. "width": 560.454,
  4789. "height": 214.07999999999998
  4790. },
  4791. "_anchorPoint": {
  4792. "__type__": "cc.Vec2",
  4793. "x": 0.5,
  4794. "y": 0.5
  4795. },
  4796. "_id": "91F5VNHjNIgqN03rfwh4Xc"
  4797. },
  4798. {
  4799. "__type__": "cc.Label",
  4800. "_name": "",
  4801. "_objFlags": 0,
  4802. "node": {
  4803. "__id__": 132
  4804. },
  4805. "_enabled": true,
  4806. "__prefab": null,
  4807. "_customMaterial": null,
  4808. "_srcBlendFactor": 2,
  4809. "_dstBlendFactor": 4,
  4810. "_color": {
  4811. "__type__": "cc.Color",
  4812. "r": 169,
  4813. "g": 79,
  4814. "b": 9,
  4815. "a": 255
  4816. },
  4817. "_string": "总得分:",
  4818. "_horizontalAlign": 0,
  4819. "_verticalAlign": 1,
  4820. "_actualFontSize": 60,
  4821. "_fontSize": 60,
  4822. "_fontFamily": "Arial",
  4823. "_lineHeight": 100,
  4824. "_overflow": 1,
  4825. "_enableWrapText": true,
  4826. "_font": null,
  4827. "_isSystemFontUsed": true,
  4828. "_spacingX": 0,
  4829. "_isItalic": false,
  4830. "_isBold": true,
  4831. "_isUnderline": false,
  4832. "_underlineHeight": 2,
  4833. "_cacheMode": 0,
  4834. "_id": "a8y+G4xQpEz7aAHiOFYm5L"
  4835. },
  4836. {
  4837. "__type__": "cc.Node",
  4838. "_name": "resultIcon",
  4839. "_objFlags": 0,
  4840. "_parent": {
  4841. "__id__": 102
  4842. },
  4843. "_children": [],
  4844. "_active": true,
  4845. "_components": [
  4846. {
  4847. "__id__": 136
  4848. },
  4849. {
  4850. "__id__": 137
  4851. }
  4852. ],
  4853. "_prefab": null,
  4854. "_lpos": {
  4855. "__type__": "cc.Vec3",
  4856. "x": 0,
  4857. "y": 350.842,
  4858. "z": 0
  4859. },
  4860. "_lrot": {
  4861. "__type__": "cc.Quat",
  4862. "x": 0,
  4863. "y": 0,
  4864. "z": 0,
  4865. "w": 1
  4866. },
  4867. "_lscale": {
  4868. "__type__": "cc.Vec3",
  4869. "x": 1,
  4870. "y": 1,
  4871. "z": 1
  4872. },
  4873. "_mobility": 0,
  4874. "_layer": 33554432,
  4875. "_euler": {
  4876. "__type__": "cc.Vec3",
  4877. "x": 0,
  4878. "y": 0,
  4879. "z": 0
  4880. },
  4881. "_id": "3bMre/6AhI84Sm9BsZ6isN"
  4882. },
  4883. {
  4884. "__type__": "cc.UITransform",
  4885. "_name": "",
  4886. "_objFlags": 0,
  4887. "node": {
  4888. "__id__": 135
  4889. },
  4890. "_enabled": true,
  4891. "__prefab": null,
  4892. "_contentSize": {
  4893. "__type__": "cc.Size",
  4894. "width": 276,
  4895. "height": 276
  4896. },
  4897. "_anchorPoint": {
  4898. "__type__": "cc.Vec2",
  4899. "x": 0.5,
  4900. "y": 0.5
  4901. },
  4902. "_id": "48m3xY/NRLfYMgrO6vypef"
  4903. },
  4904. {
  4905. "__type__": "cc.Sprite",
  4906. "_name": "",
  4907. "_objFlags": 0,
  4908. "node": {
  4909. "__id__": 135
  4910. },
  4911. "_enabled": true,
  4912. "__prefab": null,
  4913. "_customMaterial": null,
  4914. "_srcBlendFactor": 2,
  4915. "_dstBlendFactor": 4,
  4916. "_color": {
  4917. "__type__": "cc.Color",
  4918. "r": 255,
  4919. "g": 255,
  4920. "b": 255,
  4921. "a": 255
  4922. },
  4923. "_spriteFrame": {
  4924. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  4925. "__expectedType__": "cc.SpriteFrame"
  4926. },
  4927. "_type": 0,
  4928. "_fillType": 0,
  4929. "_sizeMode": 1,
  4930. "_fillCenter": {
  4931. "__type__": "cc.Vec2",
  4932. "x": 0,
  4933. "y": 0
  4934. },
  4935. "_fillStart": 0,
  4936. "_fillRange": 0,
  4937. "_isTrimmedMode": true,
  4938. "_useGrayscale": false,
  4939. "_atlas": null,
  4940. "_id": "c99zq9dbVI9LheJj/7p9g9"
  4941. },
  4942. {
  4943. "__type__": "cc.UITransform",
  4944. "_name": "",
  4945. "_objFlags": 0,
  4946. "node": {
  4947. "__id__": 102
  4948. },
  4949. "_enabled": true,
  4950. "__prefab": null,
  4951. "_contentSize": {
  4952. "__type__": "cc.Size",
  4953. "width": 1311,
  4954. "height": 806
  4955. },
  4956. "_anchorPoint": {
  4957. "__type__": "cc.Vec2",
  4958. "x": 0.5,
  4959. "y": 0.5
  4960. },
  4961. "_id": "e2M9hKVbJOpLEfbwyRzof+"
  4962. },
  4963. {
  4964. "__type__": "cc.Sprite",
  4965. "_name": "",
  4966. "_objFlags": 0,
  4967. "node": {
  4968. "__id__": 102
  4969. },
  4970. "_enabled": false,
  4971. "__prefab": null,
  4972. "_customMaterial": null,
  4973. "_srcBlendFactor": 2,
  4974. "_dstBlendFactor": 4,
  4975. "_color": {
  4976. "__type__": "cc.Color",
  4977. "r": 255,
  4978. "g": 255,
  4979. "b": 255,
  4980. "a": 255
  4981. },
  4982. "_spriteFrame": {
  4983. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  4984. "__expectedType__": "cc.SpriteFrame"
  4985. },
  4986. "_type": 1,
  4987. "_fillType": 0,
  4988. "_sizeMode": 0,
  4989. "_fillCenter": {
  4990. "__type__": "cc.Vec2",
  4991. "x": 0,
  4992. "y": 0
  4993. },
  4994. "_fillStart": 0,
  4995. "_fillRange": 0,
  4996. "_isTrimmedMode": true,
  4997. "_useGrayscale": false,
  4998. "_atlas": null,
  4999. "_id": "ebtJxL2z5Ko5BssboLF8rv"
  5000. },
  5001. {
  5002. "__type__": "95501FTS+FP8aW52qXh/kCV",
  5003. "_name": "",
  5004. "_objFlags": 0,
  5005. "node": {
  5006. "__id__": 102
  5007. },
  5008. "_enabled": true,
  5009. "__prefab": null,
  5010. "successBg": {
  5011. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  5012. "__expectedType__": "cc.SpriteFrame"
  5013. },
  5014. "failBg": {
  5015. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  5016. "__expectedType__": "cc.SpriteFrame"
  5017. },
  5018. "curLevelLabel": {
  5019. "__id__": 112
  5020. },
  5021. "curScoreLabel": {
  5022. "__id__": 131
  5023. },
  5024. "totalScoreLabel": {
  5025. "__id__": 134
  5026. },
  5027. "btnLabel": {
  5028. "__id__": 124
  5029. },
  5030. "reusltIcon": {
  5031. "__id__": 135
  5032. },
  5033. "_id": "50PulxgL1JQqf0g2NOZtHI"
  5034. },
  5035. {
  5036. "__type__": "cc.BlockInputEvents",
  5037. "_name": "",
  5038. "_objFlags": 0,
  5039. "node": {
  5040. "__id__": 102
  5041. },
  5042. "_enabled": true,
  5043. "__prefab": null,
  5044. "_id": "5aS/Nz0NxM6q+Rzl7lrbJs"
  5045. },
  5046. {
  5047. "__type__": "cc.Node",
  5048. "_objFlags": 512,
  5049. "_parent": {
  5050. "__id__": 6
  5051. },
  5052. "_prefab": {
  5053. "__id__": 143
  5054. },
  5055. "__editorExtras__": {}
  5056. },
  5057. {
  5058. "__type__": "cc.PrefabInfo",
  5059. "root": {
  5060. "__id__": 142
  5061. },
  5062. "asset": {
  5063. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  5064. "__expectedType__": "cc.Prefab"
  5065. },
  5066. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  5067. "instance": {
  5068. "__id__": 144
  5069. },
  5070. "targetOverrides": null,
  5071. "nestedPrefabInstanceRoots": null
  5072. },
  5073. {
  5074. "__type__": "cc.PrefabInstance",
  5075. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  5076. "prefabRootNode": null,
  5077. "mountedChildren": [],
  5078. "mountedComponents": [
  5079. {
  5080. "__id__": 145
  5081. }
  5082. ],
  5083. "propertyOverrides": [
  5084. {
  5085. "__id__": 148
  5086. },
  5087. {
  5088. "__id__": 150
  5089. },
  5090. {
  5091. "__id__": 151
  5092. },
  5093. {
  5094. "__id__": 152
  5095. },
  5096. {
  5097. "__id__": 153
  5098. }
  5099. ],
  5100. "removedComponents": []
  5101. },
  5102. {
  5103. "__type__": "cc.MountedComponentsInfo",
  5104. "targetInfo": {
  5105. "__id__": 146
  5106. },
  5107. "components": [
  5108. {
  5109. "__id__": 147
  5110. }
  5111. ]
  5112. },
  5113. {
  5114. "__type__": "cc.TargetInfo",
  5115. "localID": [
  5116. "f5VirVdr1A/q1iUlQGtO+X"
  5117. ]
  5118. },
  5119. {
  5120. "__type__": "cc.BlockInputEvents",
  5121. "_name": "",
  5122. "_objFlags": 0,
  5123. "__editorExtras__": {
  5124. "mountedRoot": {
  5125. "__id__": 142
  5126. }
  5127. },
  5128. "node": {
  5129. "__id__": 142
  5130. },
  5131. "_enabled": true,
  5132. "__prefab": null,
  5133. "_id": "07r8anbvNG/6BWBGGtLhOU"
  5134. },
  5135. {
  5136. "__type__": "CCPropertyOverrideInfo",
  5137. "targetInfo": {
  5138. "__id__": 149
  5139. },
  5140. "propertyPath": [
  5141. "_name"
  5142. ],
  5143. "value": "PlayAEndTip"
  5144. },
  5145. {
  5146. "__type__": "cc.TargetInfo",
  5147. "localID": [
  5148. "f5VirVdr1A/q1iUlQGtO+X"
  5149. ]
  5150. },
  5151. {
  5152. "__type__": "CCPropertyOverrideInfo",
  5153. "targetInfo": {
  5154. "__id__": 149
  5155. },
  5156. "propertyPath": [
  5157. "_lpos"
  5158. ],
  5159. "value": {
  5160. "__type__": "cc.Vec3",
  5161. "x": 0,
  5162. "y": 0,
  5163. "z": 0
  5164. }
  5165. },
  5166. {
  5167. "__type__": "CCPropertyOverrideInfo",
  5168. "targetInfo": {
  5169. "__id__": 149
  5170. },
  5171. "propertyPath": [
  5172. "_lrot"
  5173. ],
  5174. "value": {
  5175. "__type__": "cc.Quat",
  5176. "x": 0,
  5177. "y": 0,
  5178. "z": 0,
  5179. "w": 1
  5180. }
  5181. },
  5182. {
  5183. "__type__": "CCPropertyOverrideInfo",
  5184. "targetInfo": {
  5185. "__id__": 149
  5186. },
  5187. "propertyPath": [
  5188. "_euler"
  5189. ],
  5190. "value": {
  5191. "__type__": "cc.Vec3",
  5192. "x": 0,
  5193. "y": 0,
  5194. "z": 0
  5195. }
  5196. },
  5197. {
  5198. "__type__": "CCPropertyOverrideInfo",
  5199. "targetInfo": {
  5200. "__id__": 149
  5201. },
  5202. "propertyPath": [
  5203. "_active"
  5204. ],
  5205. "value": false
  5206. },
  5207. {
  5208. "__type__": "cc.Node",
  5209. "_name": "Full",
  5210. "_objFlags": 0,
  5211. "_parent": {
  5212. "__id__": 6
  5213. },
  5214. "_children": [
  5215. {
  5216. "__id__": 155
  5217. },
  5218. {
  5219. "__id__": 164
  5220. },
  5221. {
  5222. "__id__": 173
  5223. }
  5224. ],
  5225. "_active": true,
  5226. "_components": [
  5227. {
  5228. "__id__": 182
  5229. }
  5230. ],
  5231. "_prefab": null,
  5232. "_lpos": {
  5233. "__type__": "cc.Vec3",
  5234. "x": 260.654,
  5235. "y": 33.04,
  5236. "z": 0
  5237. },
  5238. "_lrot": {
  5239. "__type__": "cc.Quat",
  5240. "x": 0,
  5241. "y": 0,
  5242. "z": 0,
  5243. "w": 1
  5244. },
  5245. "_lscale": {
  5246. "__type__": "cc.Vec3",
  5247. "x": 1,
  5248. "y": 1,
  5249. "z": 1
  5250. },
  5251. "_mobility": 0,
  5252. "_layer": 33554432,
  5253. "_euler": {
  5254. "__type__": "cc.Vec3",
  5255. "x": 0,
  5256. "y": 0,
  5257. "z": 0
  5258. },
  5259. "_id": "66bcmRoDVJr7mAO/zWrM6a"
  5260. },
  5261. {
  5262. "__type__": "cc.Node",
  5263. "_name": "GetScoreBg-001",
  5264. "_objFlags": 0,
  5265. "_parent": {
  5266. "__id__": 154
  5267. },
  5268. "_children": [
  5269. {
  5270. "__id__": 156
  5271. }
  5272. ],
  5273. "_active": true,
  5274. "_components": [
  5275. {
  5276. "__id__": 162
  5277. },
  5278. {
  5279. "__id__": 163
  5280. }
  5281. ],
  5282. "_prefab": null,
  5283. "_lpos": {
  5284. "__type__": "cc.Vec3",
  5285. "x": -626.6950295857988,
  5286. "y": 584.791,
  5287. "z": 0
  5288. },
  5289. "_lrot": {
  5290. "__type__": "cc.Quat",
  5291. "x": 0,
  5292. "y": 0,
  5293. "z": 0,
  5294. "w": 1
  5295. },
  5296. "_lscale": {
  5297. "__type__": "cc.Vec3",
  5298. "x": 1,
  5299. "y": 1,
  5300. "z": 1
  5301. },
  5302. "_mobility": 0,
  5303. "_layer": 33554432,
  5304. "_euler": {
  5305. "__type__": "cc.Vec3",
  5306. "x": 0,
  5307. "y": 0,
  5308. "z": 0
  5309. },
  5310. "_id": "7aBXCm+khLUqjKxwb+R/m7"
  5311. },
  5312. {
  5313. "__type__": "cc.Node",
  5314. "_name": "GetScore",
  5315. "_objFlags": 0,
  5316. "_parent": {
  5317. "__id__": 155
  5318. },
  5319. "_children": [
  5320. {
  5321. "__id__": 157
  5322. }
  5323. ],
  5324. "_active": true,
  5325. "_components": [
  5326. {
  5327. "__id__": 160
  5328. },
  5329. {
  5330. "__id__": 161
  5331. }
  5332. ],
  5333. "_prefab": null,
  5334. "_lpos": {
  5335. "__type__": "cc.Vec3",
  5336. "x": -100.368,
  5337. "y": 0.904,
  5338. "z": 0
  5339. },
  5340. "_lrot": {
  5341. "__type__": "cc.Quat",
  5342. "x": 0,
  5343. "y": 0,
  5344. "z": 0,
  5345. "w": 1
  5346. },
  5347. "_lscale": {
  5348. "__type__": "cc.Vec3",
  5349. "x": 1,
  5350. "y": 1,
  5351. "z": 1
  5352. },
  5353. "_mobility": 0,
  5354. "_layer": 33554432,
  5355. "_euler": {
  5356. "__type__": "cc.Vec3",
  5357. "x": 0,
  5358. "y": 0,
  5359. "z": 0
  5360. },
  5361. "_id": "2dlFpBou9N4qEx8zh/au+0"
  5362. },
  5363. {
  5364. "__type__": "cc.Node",
  5365. "_name": "Score",
  5366. "_objFlags": 0,
  5367. "_parent": {
  5368. "__id__": 156
  5369. },
  5370. "_children": [],
  5371. "_active": true,
  5372. "_components": [
  5373. {
  5374. "__id__": 158
  5375. },
  5376. {
  5377. "__id__": 159
  5378. }
  5379. ],
  5380. "_prefab": null,
  5381. "_lpos": {
  5382. "__type__": "cc.Vec3",
  5383. "x": 139.812,
  5384. "y": 0.043,
  5385. "z": 0
  5386. },
  5387. "_lrot": {
  5388. "__type__": "cc.Quat",
  5389. "x": 0,
  5390. "y": 0,
  5391. "z": 0,
  5392. "w": 1
  5393. },
  5394. "_lscale": {
  5395. "__type__": "cc.Vec3",
  5396. "x": 1,
  5397. "y": 1,
  5398. "z": 1
  5399. },
  5400. "_mobility": 0,
  5401. "_layer": 33554432,
  5402. "_euler": {
  5403. "__type__": "cc.Vec3",
  5404. "x": 0,
  5405. "y": 0,
  5406. "z": 0
  5407. },
  5408. "_id": "44dEVnyUdGJ4oVkWzLyKm0"
  5409. },
  5410. {
  5411. "__type__": "cc.UITransform",
  5412. "_name": "",
  5413. "_objFlags": 0,
  5414. "node": {
  5415. "__id__": 157
  5416. },
  5417. "_enabled": true,
  5418. "__prefab": null,
  5419. "_contentSize": {
  5420. "__type__": "cc.Size",
  5421. "width": 139.04,
  5422. "height": 50.4
  5423. },
  5424. "_anchorPoint": {
  5425. "__type__": "cc.Vec2",
  5426. "x": 0.5,
  5427. "y": 0.5
  5428. },
  5429. "_id": "aeatAHONRFdq/5YremdGg5"
  5430. },
  5431. {
  5432. "__type__": "cc.Label",
  5433. "_name": "",
  5434. "_objFlags": 0,
  5435. "node": {
  5436. "__id__": 157
  5437. },
  5438. "_enabled": true,
  5439. "__prefab": null,
  5440. "_customMaterial": null,
  5441. "_srcBlendFactor": 2,
  5442. "_dstBlendFactor": 4,
  5443. "_color": {
  5444. "__type__": "cc.Color",
  5445. "r": 255,
  5446. "g": 255,
  5447. "b": 255,
  5448. "a": 255
  5449. },
  5450. "_string": "0",
  5451. "_horizontalAlign": 0,
  5452. "_verticalAlign": 1,
  5453. "_actualFontSize": 50,
  5454. "_fontSize": 50,
  5455. "_fontFamily": "Arial",
  5456. "_lineHeight": 40,
  5457. "_overflow": 1,
  5458. "_enableWrapText": true,
  5459. "_font": null,
  5460. "_isSystemFontUsed": true,
  5461. "_spacingX": 0,
  5462. "_isItalic": false,
  5463. "_isBold": false,
  5464. "_isUnderline": false,
  5465. "_underlineHeight": 2,
  5466. "_cacheMode": 0,
  5467. "_id": "95xTzz/ptP9bi+VwziUVOX"
  5468. },
  5469. {
  5470. "__type__": "cc.UITransform",
  5471. "_name": "",
  5472. "_objFlags": 0,
  5473. "node": {
  5474. "__id__": 156
  5475. },
  5476. "_enabled": true,
  5477. "__prefab": null,
  5478. "_contentSize": {
  5479. "__type__": "cc.Size",
  5480. "width": 100,
  5481. "height": 88.2
  5482. },
  5483. "_anchorPoint": {
  5484. "__type__": "cc.Vec2",
  5485. "x": 0.5,
  5486. "y": 0.5
  5487. },
  5488. "_id": "c7XkN7nSxP7qcj/G58zTJq"
  5489. },
  5490. {
  5491. "__type__": "cc.Label",
  5492. "_name": "",
  5493. "_objFlags": 0,
  5494. "node": {
  5495. "__id__": 156
  5496. },
  5497. "_enabled": true,
  5498. "__prefab": null,
  5499. "_customMaterial": null,
  5500. "_srcBlendFactor": 2,
  5501. "_dstBlendFactor": 4,
  5502. "_color": {
  5503. "__type__": "cc.Color",
  5504. "r": 255,
  5505. "g": 255,
  5506. "b": 255,
  5507. "a": 255
  5508. },
  5509. "_string": "得分",
  5510. "_horizontalAlign": 1,
  5511. "_verticalAlign": 1,
  5512. "_actualFontSize": 50,
  5513. "_fontSize": 50,
  5514. "_fontFamily": "Arial",
  5515. "_lineHeight": 70,
  5516. "_overflow": 0,
  5517. "_enableWrapText": true,
  5518. "_font": null,
  5519. "_isSystemFontUsed": true,
  5520. "_spacingX": 0,
  5521. "_isItalic": false,
  5522. "_isBold": false,
  5523. "_isUnderline": false,
  5524. "_underlineHeight": 2,
  5525. "_cacheMode": 0,
  5526. "_id": "936102nIBEb6lfaFTWnF76"
  5527. },
  5528. {
  5529. "__type__": "cc.UITransform",
  5530. "_name": "",
  5531. "_objFlags": 0,
  5532. "node": {
  5533. "__id__": 155
  5534. },
  5535. "_enabled": true,
  5536. "__prefab": null,
  5537. "_contentSize": {
  5538. "__type__": "cc.Size",
  5539. "width": 339.88994082840236,
  5540. "height": 110
  5541. },
  5542. "_anchorPoint": {
  5543. "__type__": "cc.Vec2",
  5544. "x": 0.5,
  5545. "y": 0.5
  5546. },
  5547. "_id": "c1I0u8AgtKVYew7N+QBLGy"
  5548. },
  5549. {
  5550. "__type__": "cc.Sprite",
  5551. "_name": "",
  5552. "_objFlags": 0,
  5553. "node": {
  5554. "__id__": 155
  5555. },
  5556. "_enabled": true,
  5557. "__prefab": null,
  5558. "_customMaterial": null,
  5559. "_srcBlendFactor": 2,
  5560. "_dstBlendFactor": 4,
  5561. "_color": {
  5562. "__type__": "cc.Color",
  5563. "r": 255,
  5564. "g": 255,
  5565. "b": 255,
  5566. "a": 255
  5567. },
  5568. "_spriteFrame": {
  5569. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  5570. "__expectedType__": "cc.SpriteFrame"
  5571. },
  5572. "_type": 0,
  5573. "_fillType": 0,
  5574. "_sizeMode": 0,
  5575. "_fillCenter": {
  5576. "__type__": "cc.Vec2",
  5577. "x": 0,
  5578. "y": 0
  5579. },
  5580. "_fillStart": 0,
  5581. "_fillRange": 0,
  5582. "_isTrimmedMode": true,
  5583. "_useGrayscale": false,
  5584. "_atlas": null,
  5585. "_id": "103k0ntThJELcV3+IfPrvW"
  5586. },
  5587. {
  5588. "__type__": "cc.Node",
  5589. "_name": "TimeBg-001",
  5590. "_objFlags": 0,
  5591. "_parent": {
  5592. "__id__": 154
  5593. },
  5594. "_children": [
  5595. {
  5596. "__id__": 165
  5597. }
  5598. ],
  5599. "_active": true,
  5600. "_components": [
  5601. {
  5602. "__id__": 171
  5603. },
  5604. {
  5605. "__id__": 172
  5606. }
  5607. ],
  5608. "_prefab": null,
  5609. "_lpos": {
  5610. "__type__": "cc.Vec3",
  5611. "x": -245.961,
  5612. "y": 584.791,
  5613. "z": 0
  5614. },
  5615. "_lrot": {
  5616. "__type__": "cc.Quat",
  5617. "x": 0,
  5618. "y": 0,
  5619. "z": 0,
  5620. "w": 1
  5621. },
  5622. "_lscale": {
  5623. "__type__": "cc.Vec3",
  5624. "x": 1,
  5625. "y": 1,
  5626. "z": 1
  5627. },
  5628. "_mobility": 0,
  5629. "_layer": 33554432,
  5630. "_euler": {
  5631. "__type__": "cc.Vec3",
  5632. "x": 0,
  5633. "y": 0,
  5634. "z": 0
  5635. },
  5636. "_id": "72E4endaFA9ZzhffwONnhR"
  5637. },
  5638. {
  5639. "__type__": "cc.Node",
  5640. "_name": "GameTime",
  5641. "_objFlags": 0,
  5642. "_parent": {
  5643. "__id__": 164
  5644. },
  5645. "_children": [
  5646. {
  5647. "__id__": 166
  5648. }
  5649. ],
  5650. "_active": true,
  5651. "_components": [
  5652. {
  5653. "__id__": 169
  5654. },
  5655. {
  5656. "__id__": 170
  5657. }
  5658. ],
  5659. "_prefab": null,
  5660. "_lpos": {
  5661. "__type__": "cc.Vec3",
  5662. "x": 5.195,
  5663. "y": 60.444,
  5664. "z": 0
  5665. },
  5666. "_lrot": {
  5667. "__type__": "cc.Quat",
  5668. "x": 0,
  5669. "y": 0,
  5670. "z": 0,
  5671. "w": 1
  5672. },
  5673. "_lscale": {
  5674. "__type__": "cc.Vec3",
  5675. "x": 1,
  5676. "y": 1,
  5677. "z": 1
  5678. },
  5679. "_mobility": 0,
  5680. "_layer": 33554432,
  5681. "_euler": {
  5682. "__type__": "cc.Vec3",
  5683. "x": 0,
  5684. "y": 0,
  5685. "z": 0
  5686. },
  5687. "_id": "e6x0Gc+TlDGIZXI33TEJb6"
  5688. },
  5689. {
  5690. "__type__": "cc.Node",
  5691. "_name": "TimeLabel",
  5692. "_objFlags": 0,
  5693. "_parent": {
  5694. "__id__": 165
  5695. },
  5696. "_children": [],
  5697. "_active": true,
  5698. "_components": [
  5699. {
  5700. "__id__": 167
  5701. },
  5702. {
  5703. "__id__": 168
  5704. }
  5705. ],
  5706. "_prefab": null,
  5707. "_lpos": {
  5708. "__type__": "cc.Vec3",
  5709. "x": 1.505,
  5710. "y": -57.186,
  5711. "z": 0
  5712. },
  5713. "_lrot": {
  5714. "__type__": "cc.Quat",
  5715. "x": 0,
  5716. "y": 0,
  5717. "z": 0,
  5718. "w": 1
  5719. },
  5720. "_lscale": {
  5721. "__type__": "cc.Vec3",
  5722. "x": 1,
  5723. "y": 1,
  5724. "z": 1
  5725. },
  5726. "_mobility": 0,
  5727. "_layer": 33554432,
  5728. "_euler": {
  5729. "__type__": "cc.Vec3",
  5730. "x": 0,
  5731. "y": 0,
  5732. "z": 0
  5733. },
  5734. "_id": "62RcJSw15H6JpsHUHKtNaH"
  5735. },
  5736. {
  5737. "__type__": "cc.UITransform",
  5738. "_name": "",
  5739. "_objFlags": 0,
  5740. "node": {
  5741. "__id__": 166
  5742. },
  5743. "_enabled": true,
  5744. "__prefab": null,
  5745. "_contentSize": {
  5746. "__type__": "cc.Size",
  5747. "width": 170,
  5748. "height": 50.4
  5749. },
  5750. "_anchorPoint": {
  5751. "__type__": "cc.Vec2",
  5752. "x": 0.5,
  5753. "y": 0.5
  5754. },
  5755. "_id": "7cZarCy31EtKl7ASpygJEo"
  5756. },
  5757. {
  5758. "__type__": "cc.Label",
  5759. "_name": "",
  5760. "_objFlags": 0,
  5761. "node": {
  5762. "__id__": 166
  5763. },
  5764. "_enabled": true,
  5765. "__prefab": null,
  5766. "_customMaterial": null,
  5767. "_srcBlendFactor": 2,
  5768. "_dstBlendFactor": 4,
  5769. "_color": {
  5770. "__type__": "cc.Color",
  5771. "r": 255,
  5772. "g": 255,
  5773. "b": 255,
  5774. "a": 255
  5775. },
  5776. "_string": "2:00",
  5777. "_horizontalAlign": 1,
  5778. "_verticalAlign": 1,
  5779. "_actualFontSize": 55,
  5780. "_fontSize": 55,
  5781. "_fontFamily": "Arial",
  5782. "_lineHeight": 60,
  5783. "_overflow": 1,
  5784. "_enableWrapText": true,
  5785. "_font": null,
  5786. "_isSystemFontUsed": true,
  5787. "_spacingX": 0,
  5788. "_isItalic": false,
  5789. "_isBold": false,
  5790. "_isUnderline": false,
  5791. "_underlineHeight": 2,
  5792. "_cacheMode": 0,
  5793. "_id": "dcVz2Ao/lCG60RTah3WKwS"
  5794. },
  5795. {
  5796. "__type__": "cc.UITransform",
  5797. "_name": "",
  5798. "_objFlags": 0,
  5799. "node": {
  5800. "__id__": 165
  5801. },
  5802. "_enabled": true,
  5803. "__prefab": null,
  5804. "_contentSize": {
  5805. "__type__": "cc.Size",
  5806. "width": 170,
  5807. "height": 50.4
  5808. },
  5809. "_anchorPoint": {
  5810. "__type__": "cc.Vec2",
  5811. "x": 0.5,
  5812. "y": 0.5
  5813. },
  5814. "_id": "d3XSdYtyBCjr130tilMp31"
  5815. },
  5816. {
  5817. "__type__": "cc.Label",
  5818. "_name": "",
  5819. "_objFlags": 0,
  5820. "node": {
  5821. "__id__": 165
  5822. },
  5823. "_enabled": false,
  5824. "__prefab": null,
  5825. "_customMaterial": null,
  5826. "_srcBlendFactor": 2,
  5827. "_dstBlendFactor": 4,
  5828. "_color": {
  5829. "__type__": "cc.Color",
  5830. "r": 169,
  5831. "g": 74,
  5832. "b": 9,
  5833. "a": 255
  5834. },
  5835. "_string": "时间",
  5836. "_horizontalAlign": 1,
  5837. "_verticalAlign": 1,
  5838. "_actualFontSize": 50,
  5839. "_fontSize": 50,
  5840. "_fontFamily": "Arial",
  5841. "_lineHeight": 60,
  5842. "_overflow": 1,
  5843. "_enableWrapText": true,
  5844. "_font": null,
  5845. "_isSystemFontUsed": true,
  5846. "_spacingX": 0,
  5847. "_isItalic": false,
  5848. "_isBold": true,
  5849. "_isUnderline": false,
  5850. "_underlineHeight": 2,
  5851. "_cacheMode": 0,
  5852. "_id": "f2akcURRFEcq0N0Nl8yDJr"
  5853. },
  5854. {
  5855. "__type__": "cc.UITransform",
  5856. "_name": "",
  5857. "_objFlags": 0,
  5858. "node": {
  5859. "__id__": 164
  5860. },
  5861. "_enabled": true,
  5862. "__prefab": null,
  5863. "_contentSize": {
  5864. "__type__": "cc.Size",
  5865. "width": 271.13372781065095,
  5866. "height": 110
  5867. },
  5868. "_anchorPoint": {
  5869. "__type__": "cc.Vec2",
  5870. "x": 0.5,
  5871. "y": 0.5
  5872. },
  5873. "_id": "c3lf7M7k9KmZ+nSNUWgAWg"
  5874. },
  5875. {
  5876. "__type__": "cc.Sprite",
  5877. "_name": "",
  5878. "_objFlags": 0,
  5879. "node": {
  5880. "__id__": 164
  5881. },
  5882. "_enabled": true,
  5883. "__prefab": null,
  5884. "_customMaterial": null,
  5885. "_srcBlendFactor": 2,
  5886. "_dstBlendFactor": 4,
  5887. "_color": {
  5888. "__type__": "cc.Color",
  5889. "r": 255,
  5890. "g": 255,
  5891. "b": 255,
  5892. "a": 255
  5893. },
  5894. "_spriteFrame": {
  5895. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  5896. "__expectedType__": "cc.SpriteFrame"
  5897. },
  5898. "_type": 0,
  5899. "_fillType": 0,
  5900. "_sizeMode": 0,
  5901. "_fillCenter": {
  5902. "__type__": "cc.Vec2",
  5903. "x": 0,
  5904. "y": 0
  5905. },
  5906. "_fillStart": 0,
  5907. "_fillRange": 0,
  5908. "_isTrimmedMode": true,
  5909. "_useGrayscale": false,
  5910. "_atlas": null,
  5911. "_id": "00So5QoPJNbqg38R3GIz53"
  5912. },
  5913. {
  5914. "__type__": "cc.Node",
  5915. "_name": "LevelBg-001",
  5916. "_objFlags": 0,
  5917. "_parent": {
  5918. "__id__": 154
  5919. },
  5920. "_children": [
  5921. {
  5922. "__id__": 174
  5923. }
  5924. ],
  5925. "_active": true,
  5926. "_components": [
  5927. {
  5928. "__id__": 180
  5929. },
  5930. {
  5931. "__id__": 181
  5932. }
  5933. ],
  5934. "_prefab": null,
  5935. "_lpos": {
  5936. "__type__": "cc.Vec3",
  5937. "x": 103.843,
  5938. "y": 584.691,
  5939. "z": 0
  5940. },
  5941. "_lrot": {
  5942. "__type__": "cc.Quat",
  5943. "x": 0,
  5944. "y": 0,
  5945. "z": 0,
  5946. "w": 1
  5947. },
  5948. "_lscale": {
  5949. "__type__": "cc.Vec3",
  5950. "x": 1,
  5951. "y": 1,
  5952. "z": 1
  5953. },
  5954. "_mobility": 0,
  5955. "_layer": 33554432,
  5956. "_euler": {
  5957. "__type__": "cc.Vec3",
  5958. "x": 0,
  5959. "y": 0,
  5960. "z": 0
  5961. },
  5962. "_id": "76NmQjlTVIjYB7iIXcw271"
  5963. },
  5964. {
  5965. "__type__": "cc.Node",
  5966. "_name": "level",
  5967. "_objFlags": 0,
  5968. "_parent": {
  5969. "__id__": 173
  5970. },
  5971. "_children": [
  5972. {
  5973. "__id__": 175
  5974. }
  5975. ],
  5976. "_active": true,
  5977. "_components": [
  5978. {
  5979. "__id__": 178
  5980. },
  5981. {
  5982. "__id__": 179
  5983. }
  5984. ],
  5985. "_prefab": null,
  5986. "_lpos": {
  5987. "__type__": "cc.Vec3",
  5988. "x": -31.36299999999983,
  5989. "y": -2.5679999999999836,
  5990. "z": 0
  5991. },
  5992. "_lrot": {
  5993. "__type__": "cc.Quat",
  5994. "x": 0,
  5995. "y": 0,
  5996. "z": 0,
  5997. "w": 1
  5998. },
  5999. "_lscale": {
  6000. "__type__": "cc.Vec3",
  6001. "x": 1,
  6002. "y": 1,
  6003. "z": 1
  6004. },
  6005. "_mobility": 0,
  6006. "_layer": 33554432,
  6007. "_euler": {
  6008. "__type__": "cc.Vec3",
  6009. "x": 0,
  6010. "y": 0,
  6011. "z": 0
  6012. },
  6013. "_id": "eaH/7VoTNMX6EQSZY5GHiA"
  6014. },
  6015. {
  6016. "__type__": "cc.Node",
  6017. "_name": "levlLabel",
  6018. "_objFlags": 0,
  6019. "_parent": {
  6020. "__id__": 174
  6021. },
  6022. "_children": [],
  6023. "_active": true,
  6024. "_components": [
  6025. {
  6026. "__id__": 176
  6027. },
  6028. {
  6029. "__id__": 177
  6030. }
  6031. ],
  6032. "_prefab": null,
  6033. "_lpos": {
  6034. "__type__": "cc.Vec3",
  6035. "x": 29.897499999999997,
  6036. "y": 0,
  6037. "z": 0
  6038. },
  6039. "_lrot": {
  6040. "__type__": "cc.Quat",
  6041. "x": 0,
  6042. "y": 0,
  6043. "z": 0,
  6044. "w": 1
  6045. },
  6046. "_lscale": {
  6047. "__type__": "cc.Vec3",
  6048. "x": 1,
  6049. "y": 1,
  6050. "z": 1
  6051. },
  6052. "_mobility": 0,
  6053. "_layer": 33554432,
  6054. "_euler": {
  6055. "__type__": "cc.Vec3",
  6056. "x": 0,
  6057. "y": 0,
  6058. "z": 0
  6059. },
  6060. "_id": "b7kyQaqnFPtoUwJ/CfFPdI"
  6061. },
  6062. {
  6063. "__type__": "cc.UITransform",
  6064. "_name": "",
  6065. "_objFlags": 0,
  6066. "node": {
  6067. "__id__": 175
  6068. },
  6069. "_enabled": true,
  6070. "__prefab": null,
  6071. "_contentSize": {
  6072. "__type__": "cc.Size",
  6073. "width": 264.409,
  6074. "height": 50.4
  6075. },
  6076. "_anchorPoint": {
  6077. "__type__": "cc.Vec2",
  6078. "x": 0.5,
  6079. "y": 0.5
  6080. },
  6081. "_id": "0aujCo8/pPgZo35FlpMbkz"
  6082. },
  6083. {
  6084. "__type__": "cc.Label",
  6085. "_name": "",
  6086. "_objFlags": 0,
  6087. "node": {
  6088. "__id__": 175
  6089. },
  6090. "_enabled": true,
  6091. "__prefab": null,
  6092. "_customMaterial": null,
  6093. "_srcBlendFactor": 2,
  6094. "_dstBlendFactor": 4,
  6095. "_color": {
  6096. "__type__": "cc.Color",
  6097. "r": 255,
  6098. "g": 255,
  6099. "b": 255,
  6100. "a": 255
  6101. },
  6102. "_string": "第1关",
  6103. "_horizontalAlign": 1,
  6104. "_verticalAlign": 1,
  6105. "_actualFontSize": 55,
  6106. "_fontSize": 55,
  6107. "_fontFamily": "Arial",
  6108. "_lineHeight": 60,
  6109. "_overflow": 1,
  6110. "_enableWrapText": true,
  6111. "_font": null,
  6112. "_isSystemFontUsed": true,
  6113. "_spacingX": 0,
  6114. "_isItalic": false,
  6115. "_isBold": false,
  6116. "_isUnderline": false,
  6117. "_underlineHeight": 2,
  6118. "_cacheMode": 0,
  6119. "_id": "f2HCMp0+VB9bgTrUQGTaQN"
  6120. },
  6121. {
  6122. "__type__": "cc.UITransform",
  6123. "_name": "",
  6124. "_objFlags": 0,
  6125. "node": {
  6126. "__id__": 174
  6127. },
  6128. "_enabled": true,
  6129. "__prefab": null,
  6130. "_contentSize": {
  6131. "__type__": "cc.Size",
  6132. "width": 170,
  6133. "height": 50.4
  6134. },
  6135. "_anchorPoint": {
  6136. "__type__": "cc.Vec2",
  6137. "x": 0.5,
  6138. "y": 0.5
  6139. },
  6140. "_id": "749njg1oZE7KXTB5Awl4KI"
  6141. },
  6142. {
  6143. "__type__": "cc.Label",
  6144. "_name": "",
  6145. "_objFlags": 0,
  6146. "node": {
  6147. "__id__": 174
  6148. },
  6149. "_enabled": true,
  6150. "__prefab": null,
  6151. "_customMaterial": null,
  6152. "_srcBlendFactor": 2,
  6153. "_dstBlendFactor": 4,
  6154. "_color": {
  6155. "__type__": "cc.Color",
  6156. "r": 169,
  6157. "g": 74,
  6158. "b": 9,
  6159. "a": 255
  6160. },
  6161. "_string": "",
  6162. "_horizontalAlign": 1,
  6163. "_verticalAlign": 1,
  6164. "_actualFontSize": 50,
  6165. "_fontSize": 50,
  6166. "_fontFamily": "Arial",
  6167. "_lineHeight": 60,
  6168. "_overflow": 1,
  6169. "_enableWrapText": true,
  6170. "_font": null,
  6171. "_isSystemFontUsed": true,
  6172. "_spacingX": 0,
  6173. "_isItalic": false,
  6174. "_isBold": false,
  6175. "_isUnderline": false,
  6176. "_underlineHeight": 2,
  6177. "_cacheMode": 0,
  6178. "_id": "a7O87PTw9LOrHXoGKYQXEs"
  6179. },
  6180. {
  6181. "__type__": "cc.UITransform",
  6182. "_name": "",
  6183. "_objFlags": 0,
  6184. "node": {
  6185. "__id__": 173
  6186. },
  6187. "_enabled": true,
  6188. "__prefab": null,
  6189. "_contentSize": {
  6190. "__type__": "cc.Size",
  6191. "width": 308.7455621301775,
  6192. "height": 110
  6193. },
  6194. "_anchorPoint": {
  6195. "__type__": "cc.Vec2",
  6196. "x": 0.5,
  6197. "y": 0.5
  6198. },
  6199. "_id": "59hMJgSaJCu6QjN2y6Wkiu"
  6200. },
  6201. {
  6202. "__type__": "cc.Sprite",
  6203. "_name": "",
  6204. "_objFlags": 0,
  6205. "node": {
  6206. "__id__": 173
  6207. },
  6208. "_enabled": true,
  6209. "__prefab": null,
  6210. "_customMaterial": null,
  6211. "_srcBlendFactor": 2,
  6212. "_dstBlendFactor": 4,
  6213. "_color": {
  6214. "__type__": "cc.Color",
  6215. "r": 255,
  6216. "g": 255,
  6217. "b": 255,
  6218. "a": 255
  6219. },
  6220. "_spriteFrame": {
  6221. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  6222. "__expectedType__": "cc.SpriteFrame"
  6223. },
  6224. "_type": 0,
  6225. "_fillType": 0,
  6226. "_sizeMode": 0,
  6227. "_fillCenter": {
  6228. "__type__": "cc.Vec2",
  6229. "x": 0,
  6230. "y": 0
  6231. },
  6232. "_fillStart": 0,
  6233. "_fillRange": 0,
  6234. "_isTrimmedMode": true,
  6235. "_useGrayscale": false,
  6236. "_atlas": null,
  6237. "_id": "86rVTpbNlC77rQsFx4OBJl"
  6238. },
  6239. {
  6240. "__type__": "cc.UITransform",
  6241. "_name": "",
  6242. "_objFlags": 0,
  6243. "node": {
  6244. "__id__": 154
  6245. },
  6246. "_enabled": true,
  6247. "__prefab": null,
  6248. "_contentSize": {
  6249. "__type__": "cc.Size",
  6250. "width": 100,
  6251. "height": 100
  6252. },
  6253. "_anchorPoint": {
  6254. "__type__": "cc.Vec2",
  6255. "x": 0.5,
  6256. "y": 0.5
  6257. },
  6258. "_id": "83x9pd7hlLH7vvDTBc5FsC"
  6259. },
  6260. {
  6261. "__type__": "cc.UITransform",
  6262. "_name": "",
  6263. "_objFlags": 0,
  6264. "node": {
  6265. "__id__": 6
  6266. },
  6267. "_enabled": true,
  6268. "__prefab": null,
  6269. "_contentSize": {
  6270. "__type__": "cc.Size",
  6271. "width": 2388,
  6272. "height": 1431
  6273. },
  6274. "_anchorPoint": {
  6275. "__type__": "cc.Vec2",
  6276. "x": 0.5,
  6277. "y": 0.5
  6278. },
  6279. "_id": "6991+O4+ZKkruBhDfLTiNc"
  6280. },
  6281. {
  6282. "__type__": "cc.Sprite",
  6283. "_name": "",
  6284. "_objFlags": 0,
  6285. "node": {
  6286. "__id__": 6
  6287. },
  6288. "_enabled": false,
  6289. "__prefab": null,
  6290. "_customMaterial": null,
  6291. "_srcBlendFactor": 2,
  6292. "_dstBlendFactor": 4,
  6293. "_color": {
  6294. "__type__": "cc.Color",
  6295. "r": 255,
  6296. "g": 255,
  6297. "b": 255,
  6298. "a": 255
  6299. },
  6300. "_spriteFrame": {
  6301. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  6302. "__expectedType__": "cc.SpriteFrame"
  6303. },
  6304. "_type": 0,
  6305. "_fillType": 0,
  6306. "_sizeMode": 0,
  6307. "_fillCenter": {
  6308. "__type__": "cc.Vec2",
  6309. "x": 0,
  6310. "y": 0
  6311. },
  6312. "_fillStart": 0,
  6313. "_fillRange": 0,
  6314. "_isTrimmedMode": true,
  6315. "_useGrayscale": false,
  6316. "_atlas": null,
  6317. "_id": "2dSpfW0JpErJgEIBvDB/oC"
  6318. },
  6319. {
  6320. "__type__": "cc.Node",
  6321. "_name": "AudioManager",
  6322. "_objFlags": 0,
  6323. "_parent": {
  6324. "__id__": 2
  6325. },
  6326. "_children": [],
  6327. "_active": true,
  6328. "_components": [
  6329. {
  6330. "__id__": 186
  6331. },
  6332. {
  6333. "__id__": 187
  6334. }
  6335. ],
  6336. "_prefab": null,
  6337. "_lpos": {
  6338. "__type__": "cc.Vec3",
  6339. "x": 0,
  6340. "y": 0,
  6341. "z": 0
  6342. },
  6343. "_lrot": {
  6344. "__type__": "cc.Quat",
  6345. "x": 0,
  6346. "y": 0,
  6347. "z": 0,
  6348. "w": 1
  6349. },
  6350. "_lscale": {
  6351. "__type__": "cc.Vec3",
  6352. "x": 1,
  6353. "y": 1,
  6354. "z": 1
  6355. },
  6356. "_mobility": 0,
  6357. "_layer": 1073741824,
  6358. "_euler": {
  6359. "__type__": "cc.Vec3",
  6360. "x": 0,
  6361. "y": 0,
  6362. "z": 0
  6363. },
  6364. "_id": "60FjbG8qtFfZ539qEMd+1/"
  6365. },
  6366. {
  6367. "__type__": "cc.AudioSource",
  6368. "_name": "",
  6369. "_objFlags": 0,
  6370. "node": {
  6371. "__id__": 185
  6372. },
  6373. "_enabled": true,
  6374. "__prefab": null,
  6375. "_clip": {
  6376. "__uuid__": "fa328517-f2b2-4385-ac73-177c99ed964c",
  6377. "__expectedType__": "cc.AudioClip"
  6378. },
  6379. "_loop": true,
  6380. "_playOnAwake": false,
  6381. "_volume": 1,
  6382. "_id": "eeGhp23mxGxpqwDPT1CJun"
  6383. },
  6384. {
  6385. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  6386. "_name": "",
  6387. "_objFlags": 0,
  6388. "node": {
  6389. "__id__": 185
  6390. },
  6391. "_enabled": true,
  6392. "__prefab": null,
  6393. "_id": "49WPaAsadKsKoMmKQLQhN1"
  6394. },
  6395. {
  6396. "__type__": "cc.Node",
  6397. "_name": "LevelManager",
  6398. "_objFlags": 0,
  6399. "_parent": {
  6400. "__id__": 2
  6401. },
  6402. "_children": [],
  6403. "_active": true,
  6404. "_components": [
  6405. {
  6406. "__id__": 189
  6407. }
  6408. ],
  6409. "_prefab": null,
  6410. "_lpos": {
  6411. "__type__": "cc.Vec3",
  6412. "x": 0,
  6413. "y": 0,
  6414. "z": 0
  6415. },
  6416. "_lrot": {
  6417. "__type__": "cc.Quat",
  6418. "x": 0,
  6419. "y": 0,
  6420. "z": 0,
  6421. "w": 1
  6422. },
  6423. "_lscale": {
  6424. "__type__": "cc.Vec3",
  6425. "x": 1,
  6426. "y": 1,
  6427. "z": 1
  6428. },
  6429. "_mobility": 0,
  6430. "_layer": 1073741824,
  6431. "_euler": {
  6432. "__type__": "cc.Vec3",
  6433. "x": 0,
  6434. "y": 0,
  6435. "z": 0
  6436. },
  6437. "_id": "ae7Hx27zVByrbunwO5wAeH"
  6438. },
  6439. {
  6440. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  6441. "_name": "",
  6442. "_objFlags": 0,
  6443. "node": {
  6444. "__id__": 188
  6445. },
  6446. "_enabled": true,
  6447. "__prefab": null,
  6448. "levelDataJson": {
  6449. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  6450. "__expectedType__": "cc.JsonAsset"
  6451. },
  6452. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  6453. },
  6454. {
  6455. "__type__": "cc.PrefabInfo",
  6456. "root": null,
  6457. "asset": null,
  6458. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  6459. "instance": null,
  6460. "targetOverrides": null,
  6461. "nestedPrefabInstanceRoots": [
  6462. {
  6463. "__id__": 142
  6464. }
  6465. ]
  6466. },
  6467. {
  6468. "__type__": "cc.SceneGlobals",
  6469. "ambient": {
  6470. "__id__": 192
  6471. },
  6472. "shadows": {
  6473. "__id__": 193
  6474. },
  6475. "_skybox": {
  6476. "__id__": 194
  6477. },
  6478. "fog": {
  6479. "__id__": 195
  6480. },
  6481. "octree": {
  6482. "__id__": 196
  6483. },
  6484. "lightProbeInfo": {
  6485. "__id__": 197
  6486. },
  6487. "bakedWithStationaryMainLight": false,
  6488. "bakedWithHighpLightmap": false
  6489. },
  6490. {
  6491. "__type__": "cc.AmbientInfo",
  6492. "_skyColorHDR": {
  6493. "__type__": "cc.Vec4",
  6494. "x": 0,
  6495. "y": 0,
  6496. "z": 0,
  6497. "w": 0.520833125
  6498. },
  6499. "_skyColor": {
  6500. "__type__": "cc.Vec4",
  6501. "x": 0,
  6502. "y": 0,
  6503. "z": 0,
  6504. "w": 0.520833125
  6505. },
  6506. "_skyIllumHDR": 20000,
  6507. "_skyIllum": 20000,
  6508. "_groundAlbedoHDR": {
  6509. "__type__": "cc.Vec4",
  6510. "x": 0,
  6511. "y": 0,
  6512. "z": 0,
  6513. "w": 0
  6514. },
  6515. "_groundAlbedo": {
  6516. "__type__": "cc.Vec4",
  6517. "x": 0,
  6518. "y": 0,
  6519. "z": 0,
  6520. "w": 0
  6521. },
  6522. "_skyColorLDR": {
  6523. "__type__": "cc.Vec4",
  6524. "x": 0.2,
  6525. "y": 0.5,
  6526. "z": 0.8,
  6527. "w": 1
  6528. },
  6529. "_skyIllumLDR": 20000,
  6530. "_groundAlbedoLDR": {
  6531. "__type__": "cc.Vec4",
  6532. "x": 0.2,
  6533. "y": 0.2,
  6534. "z": 0.2,
  6535. "w": 1
  6536. }
  6537. },
  6538. {
  6539. "__type__": "cc.ShadowsInfo",
  6540. "_enabled": false,
  6541. "_type": 0,
  6542. "_normal": {
  6543. "__type__": "cc.Vec3",
  6544. "x": 0,
  6545. "y": 1,
  6546. "z": 0
  6547. },
  6548. "_distance": 0,
  6549. "_shadowColor": {
  6550. "__type__": "cc.Color",
  6551. "r": 76,
  6552. "g": 76,
  6553. "b": 76,
  6554. "a": 255
  6555. },
  6556. "_maxReceived": 4,
  6557. "_size": {
  6558. "__type__": "cc.Vec2",
  6559. "x": 512,
  6560. "y": 512
  6561. }
  6562. },
  6563. {
  6564. "__type__": "cc.SkyboxInfo",
  6565. "_envLightingType": 0,
  6566. "_envmapHDR": null,
  6567. "_envmap": null,
  6568. "_envmapLDR": null,
  6569. "_diffuseMapHDR": null,
  6570. "_diffuseMapLDR": null,
  6571. "_enabled": false,
  6572. "_useHDR": true,
  6573. "_editableMaterial": null,
  6574. "_reflectionHDR": null,
  6575. "_reflectionLDR": null,
  6576. "_rotationAngle": 0
  6577. },
  6578. {
  6579. "__type__": "cc.FogInfo",
  6580. "_type": 0,
  6581. "_fogColor": {
  6582. "__type__": "cc.Color",
  6583. "r": 200,
  6584. "g": 200,
  6585. "b": 200,
  6586. "a": 255
  6587. },
  6588. "_enabled": false,
  6589. "_fogDensity": 0.3,
  6590. "_fogStart": 0.5,
  6591. "_fogEnd": 300,
  6592. "_fogAtten": 5,
  6593. "_fogTop": 1.5,
  6594. "_fogRange": 1.2,
  6595. "_accurate": false
  6596. },
  6597. {
  6598. "__type__": "cc.OctreeInfo",
  6599. "_enabled": false,
  6600. "_minPos": {
  6601. "__type__": "cc.Vec3",
  6602. "x": -1024,
  6603. "y": -1024,
  6604. "z": -1024
  6605. },
  6606. "_maxPos": {
  6607. "__type__": "cc.Vec3",
  6608. "x": 1024,
  6609. "y": 1024,
  6610. "z": 1024
  6611. },
  6612. "_depth": 8
  6613. },
  6614. {
  6615. "__type__": "cc.LightProbeInfo",
  6616. "_giScale": 1,
  6617. "_giSamples": 1024,
  6618. "_bounces": 2,
  6619. "_reduceRinging": 0,
  6620. "_showProbe": true,
  6621. "_showWireframe": true,
  6622. "_showConvex": false,
  6623. "_data": null
  6624. }
  6625. ]