game.scene 109 KB

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