game.scene 109 KB

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