game.scene 100 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584
  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__": 178
  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__": 179
  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__": 173
  75. },
  76. {
  77. "__id__": 176
  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__": 142
  182. },
  183. "scoreLabel2": {
  184. "__id__": 147
  185. },
  186. "timeLabel2": {
  187. "__id__": 156
  188. },
  189. "levelLabel2": {
  190. "__id__": 165
  191. },
  192. "gameEndTip": {
  193. "__id__": 90
  194. },
  195. "GameMain": {
  196. "__id__": 81
  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__": 90
  213. },
  214. {
  215. "__id__": 130
  216. },
  217. {
  218. "__id__": 142
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 171
  225. },
  226. {
  227. "__id__": 172
  228. },
  229. {
  230. "__id__": 5
  231. }
  232. ],
  233. "_prefab": null,
  234. "_lpos": {
  235. "__type__": "cc.Vec3",
  236. "x": 0,
  237. "y": -1,
  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. "__id__": 32
  942. }
  943. ],
  944. "_active": true,
  945. "_components": [
  946. {
  947. "__id__": 88
  948. },
  949. {
  950. "__id__": 89
  951. }
  952. ],
  953. "_prefab": null,
  954. "_lpos": {
  955. "__type__": "cc.Vec3",
  956. "x": 0,
  957. "y": 0,
  958. "z": 0
  959. },
  960. "_lrot": {
  961. "__type__": "cc.Quat",
  962. "x": 0,
  963. "y": 0,
  964. "z": 0,
  965. "w": 1
  966. },
  967. "_lscale": {
  968. "__type__": "cc.Vec3",
  969. "x": 1,
  970. "y": 1,
  971. "z": 1
  972. },
  973. "_mobility": 0,
  974. "_layer": 33554432,
  975. "_euler": {
  976. "__type__": "cc.Vec3",
  977. "x": 0,
  978. "y": 0,
  979. "z": 0
  980. },
  981. "_id": "f2FXLyK6xODqM9j6JFtAfH"
  982. },
  983. {
  984. "__type__": "cc.Node",
  985. "_name": "noFullRoot",
  986. "_objFlags": 0,
  987. "_parent": {
  988. "__id__": 28
  989. },
  990. "_children": [],
  991. "_active": true,
  992. "_components": [
  993. {
  994. "__id__": 30
  995. },
  996. {
  997. "__id__": 31
  998. }
  999. ],
  1000. "_prefab": null,
  1001. "_lpos": {
  1002. "__type__": "cc.Vec3",
  1003. "x": 0,
  1004. "y": -0.36331360946745406,
  1005. "z": 0
  1006. },
  1007. "_lrot": {
  1008. "__type__": "cc.Quat",
  1009. "x": 0,
  1010. "y": 0,
  1011. "z": 0,
  1012. "w": 1
  1013. },
  1014. "_lscale": {
  1015. "__type__": "cc.Vec3",
  1016. "x": 1,
  1017. "y": 1,
  1018. "z": 1
  1019. },
  1020. "_mobility": 0,
  1021. "_layer": 33554432,
  1022. "_euler": {
  1023. "__type__": "cc.Vec3",
  1024. "x": 0,
  1025. "y": 0,
  1026. "z": 0
  1027. },
  1028. "_id": "82s8Vo3qhGILyXkb7O5ILB"
  1029. },
  1030. {
  1031. "__type__": "cc.UITransform",
  1032. "_name": "",
  1033. "_objFlags": 0,
  1034. "node": {
  1035. "__id__": 29
  1036. },
  1037. "_enabled": true,
  1038. "__prefab": null,
  1039. "_contentSize": {
  1040. "__type__": "cc.Size",
  1041. "width": 1532,
  1042. "height": 1132.0355029585799
  1043. },
  1044. "_anchorPoint": {
  1045. "__type__": "cc.Vec2",
  1046. "x": 0.5,
  1047. "y": 0.5
  1048. },
  1049. "_id": "e8n+MNmoJG6oOicNCnDpXH"
  1050. },
  1051. {
  1052. "__type__": "cc.Sprite",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 29
  1057. },
  1058. "_enabled": false,
  1059. "__prefab": null,
  1060. "_customMaterial": null,
  1061. "_srcBlendFactor": 2,
  1062. "_dstBlendFactor": 4,
  1063. "_color": {
  1064. "__type__": "cc.Color",
  1065. "r": 255,
  1066. "g": 255,
  1067. "b": 255,
  1068. "a": 255
  1069. },
  1070. "_spriteFrame": {
  1071. "__uuid__": "f0267907-d435-45e2-9ee9-59a42207a60e@f9941",
  1072. "__expectedType__": "cc.SpriteFrame"
  1073. },
  1074. "_type": 0,
  1075. "_fillType": 0,
  1076. "_sizeMode": 0,
  1077. "_fillCenter": {
  1078. "__type__": "cc.Vec2",
  1079. "x": 0,
  1080. "y": 0
  1081. },
  1082. "_fillStart": 0,
  1083. "_fillRange": 0,
  1084. "_isTrimmedMode": true,
  1085. "_useGrayscale": false,
  1086. "_atlas": null,
  1087. "_id": "9dLWmv/YBOWZ6RlENRFeeB"
  1088. },
  1089. {
  1090. "__type__": "cc.Node",
  1091. "_name": "Game",
  1092. "_objFlags": 0,
  1093. "_parent": {
  1094. "__id__": 28
  1095. },
  1096. "_children": [
  1097. {
  1098. "__id__": 33
  1099. }
  1100. ],
  1101. "_active": true,
  1102. "_components": [
  1103. {
  1104. "__id__": 85
  1105. },
  1106. {
  1107. "__id__": 86
  1108. },
  1109. {
  1110. "__id__": 87
  1111. }
  1112. ],
  1113. "_prefab": null,
  1114. "_lpos": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": 0,
  1118. "z": 0
  1119. },
  1120. "_lrot": {
  1121. "__type__": "cc.Quat",
  1122. "x": 0,
  1123. "y": 0,
  1124. "z": 0,
  1125. "w": 1
  1126. },
  1127. "_lscale": {
  1128. "__type__": "cc.Vec3",
  1129. "x": 1,
  1130. "y": 1,
  1131. "z": -0.442
  1132. },
  1133. "_mobility": 0,
  1134. "_layer": 33554432,
  1135. "_euler": {
  1136. "__type__": "cc.Vec3",
  1137. "x": 0,
  1138. "y": 0,
  1139. "z": 0
  1140. },
  1141. "_id": "5bG8f/QC9FJ6xJvEz7SzxC"
  1142. },
  1143. {
  1144. "__type__": "cc.Node",
  1145. "_name": "GameBg",
  1146. "_objFlags": 0,
  1147. "_parent": {
  1148. "__id__": 32
  1149. },
  1150. "_children": [
  1151. {
  1152. "__id__": 34
  1153. }
  1154. ],
  1155. "_active": true,
  1156. "_components": [
  1157. {
  1158. "__id__": 82
  1159. },
  1160. {
  1161. "__id__": 83
  1162. },
  1163. {
  1164. "__id__": 84
  1165. }
  1166. ],
  1167. "_prefab": null,
  1168. "_lpos": {
  1169. "__type__": "cc.Vec3",
  1170. "x": 0,
  1171. "y": 0,
  1172. "z": 0
  1173. },
  1174. "_lrot": {
  1175. "__type__": "cc.Quat",
  1176. "x": 0,
  1177. "y": 0,
  1178. "z": 0,
  1179. "w": 1
  1180. },
  1181. "_lscale": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 1,
  1184. "y": 1,
  1185. "z": 1
  1186. },
  1187. "_mobility": 0,
  1188. "_layer": 33554432,
  1189. "_euler": {
  1190. "__type__": "cc.Vec3",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0
  1194. },
  1195. "_id": "52hO988fRBiodPLougtdHh"
  1196. },
  1197. {
  1198. "__type__": "cc.Node",
  1199. "_name": "GameMain",
  1200. "_objFlags": 0,
  1201. "_parent": {
  1202. "__id__": 33
  1203. },
  1204. "_children": [
  1205. {
  1206. "__id__": 35
  1207. },
  1208. {
  1209. "__id__": 38
  1210. },
  1211. {
  1212. "__id__": 41
  1213. },
  1214. {
  1215. "__id__": 44
  1216. },
  1217. {
  1218. "__id__": 47
  1219. },
  1220. {
  1221. "__id__": 49
  1222. },
  1223. {
  1224. "__id__": 57
  1225. },
  1226. {
  1227. "__id__": 66
  1228. },
  1229. {
  1230. "__id__": 77
  1231. }
  1232. ],
  1233. "_active": true,
  1234. "_components": [
  1235. {
  1236. "__id__": 80
  1237. },
  1238. {
  1239. "__id__": 81
  1240. }
  1241. ],
  1242. "_prefab": null,
  1243. "_lpos": {
  1244. "__type__": "cc.Vec3",
  1245. "x": -2.2737367544323206e-13,
  1246. "y": -14.425190194421134,
  1247. "z": 0
  1248. },
  1249. "_lrot": {
  1250. "__type__": "cc.Quat",
  1251. "x": 0,
  1252. "y": 0,
  1253. "z": 0,
  1254. "w": 1
  1255. },
  1256. "_lscale": {
  1257. "__type__": "cc.Vec3",
  1258. "x": 1,
  1259. "y": 1,
  1260. "z": 1
  1261. },
  1262. "_mobility": 0,
  1263. "_layer": 33554432,
  1264. "_euler": {
  1265. "__type__": "cc.Vec3",
  1266. "x": 0,
  1267. "y": 0,
  1268. "z": 0
  1269. },
  1270. "_id": "13Es3zIFJPQ5oca2oNdCa3"
  1271. },
  1272. {
  1273. "__type__": "cc.Node",
  1274. "_name": "Path1",
  1275. "_objFlags": 0,
  1276. "_parent": {
  1277. "__id__": 34
  1278. },
  1279. "_children": [],
  1280. "_active": true,
  1281. "_components": [
  1282. {
  1283. "__id__": 36
  1284. },
  1285. {
  1286. "__id__": 37
  1287. }
  1288. ],
  1289. "_prefab": null,
  1290. "_lpos": {
  1291. "__type__": "cc.Vec3",
  1292. "x": -620.964,
  1293. "y": 0,
  1294. "z": 0
  1295. },
  1296. "_lrot": {
  1297. "__type__": "cc.Quat",
  1298. "x": 0,
  1299. "y": 0,
  1300. "z": 0,
  1301. "w": 1
  1302. },
  1303. "_lscale": {
  1304. "__type__": "cc.Vec3",
  1305. "x": 1,
  1306. "y": 1,
  1307. "z": 1
  1308. },
  1309. "_mobility": 0,
  1310. "_layer": 33554432,
  1311. "_euler": {
  1312. "__type__": "cc.Vec3",
  1313. "x": 0,
  1314. "y": 0,
  1315. "z": 0
  1316. },
  1317. "_id": "61GaFfRaBJvqYfL74biYrB"
  1318. },
  1319. {
  1320. "__type__": "cc.UITransform",
  1321. "_name": "",
  1322. "_objFlags": 0,
  1323. "node": {
  1324. "__id__": 35
  1325. },
  1326. "_enabled": true,
  1327. "__prefab": null,
  1328. "_contentSize": {
  1329. "__type__": "cc.Size",
  1330. "width": 100,
  1331. "height": 100
  1332. },
  1333. "_anchorPoint": {
  1334. "__type__": "cc.Vec2",
  1335. "x": 0.5,
  1336. "y": 0.5
  1337. },
  1338. "_id": "31vHvfQ0RM2onv83ILxa4S"
  1339. },
  1340. {
  1341. "__type__": "8291eO1F09O8rnTSivojhL+",
  1342. "_name": "",
  1343. "_objFlags": 0,
  1344. "node": {
  1345. "__id__": 35
  1346. },
  1347. "_enabled": true,
  1348. "__prefab": null,
  1349. "itemPrefab": {
  1350. "__uuid__": "a849116e-90a8-4244-9139-9a6f450826fb",
  1351. "__expectedType__": "cc.Prefab"
  1352. },
  1353. "_id": "55TPIPieVEEJqXlRK1n16m"
  1354. },
  1355. {
  1356. "__type__": "cc.Node",
  1357. "_name": "Path2",
  1358. "_objFlags": 0,
  1359. "_parent": {
  1360. "__id__": 34
  1361. },
  1362. "_children": [],
  1363. "_active": true,
  1364. "_components": [
  1365. {
  1366. "__id__": 39
  1367. },
  1368. {
  1369. "__id__": 40
  1370. }
  1371. ],
  1372. "_prefab": null,
  1373. "_lpos": {
  1374. "__type__": "cc.Vec3",
  1375. "x": -620.964,
  1376. "y": 0,
  1377. "z": 0
  1378. },
  1379. "_lrot": {
  1380. "__type__": "cc.Quat",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0,
  1384. "w": 1
  1385. },
  1386. "_lscale": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 1,
  1389. "y": 1,
  1390. "z": 1
  1391. },
  1392. "_mobility": 0,
  1393. "_layer": 33554432,
  1394. "_euler": {
  1395. "__type__": "cc.Vec3",
  1396. "x": 0,
  1397. "y": 0,
  1398. "z": 0
  1399. },
  1400. "_id": "32EB5B2l9LnrgvLvdEgXJ+"
  1401. },
  1402. {
  1403. "__type__": "cc.UITransform",
  1404. "_name": "",
  1405. "_objFlags": 0,
  1406. "node": {
  1407. "__id__": 38
  1408. },
  1409. "_enabled": true,
  1410. "__prefab": null,
  1411. "_contentSize": {
  1412. "__type__": "cc.Size",
  1413. "width": 100,
  1414. "height": 100
  1415. },
  1416. "_anchorPoint": {
  1417. "__type__": "cc.Vec2",
  1418. "x": 0.5,
  1419. "y": 0.5
  1420. },
  1421. "_id": "aao8cGf21DSatd6CE9skRx"
  1422. },
  1423. {
  1424. "__type__": "8291eO1F09O8rnTSivojhL+",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 38
  1429. },
  1430. "_enabled": true,
  1431. "__prefab": null,
  1432. "itemPrefab": {
  1433. "__uuid__": "a849116e-90a8-4244-9139-9a6f450826fb",
  1434. "__expectedType__": "cc.Prefab"
  1435. },
  1436. "_id": "18QQ+6m/BOkavn52GiDqXG"
  1437. },
  1438. {
  1439. "__type__": "cc.Node",
  1440. "_name": "Path3",
  1441. "_objFlags": 0,
  1442. "_parent": {
  1443. "__id__": 34
  1444. },
  1445. "_children": [],
  1446. "_active": true,
  1447. "_components": [
  1448. {
  1449. "__id__": 42
  1450. },
  1451. {
  1452. "__id__": 43
  1453. }
  1454. ],
  1455. "_prefab": null,
  1456. "_lpos": {
  1457. "__type__": "cc.Vec3",
  1458. "x": -620.964,
  1459. "y": 0,
  1460. "z": 0
  1461. },
  1462. "_lrot": {
  1463. "__type__": "cc.Quat",
  1464. "x": 0,
  1465. "y": 0,
  1466. "z": 0,
  1467. "w": 1
  1468. },
  1469. "_lscale": {
  1470. "__type__": "cc.Vec3",
  1471. "x": 1,
  1472. "y": 1,
  1473. "z": 1
  1474. },
  1475. "_mobility": 0,
  1476. "_layer": 33554432,
  1477. "_euler": {
  1478. "__type__": "cc.Vec3",
  1479. "x": 0,
  1480. "y": 0,
  1481. "z": 0
  1482. },
  1483. "_id": "05uXjgl5xKsY2kTi2HHFd8"
  1484. },
  1485. {
  1486. "__type__": "cc.UITransform",
  1487. "_name": "",
  1488. "_objFlags": 0,
  1489. "node": {
  1490. "__id__": 41
  1491. },
  1492. "_enabled": true,
  1493. "__prefab": null,
  1494. "_contentSize": {
  1495. "__type__": "cc.Size",
  1496. "width": 100,
  1497. "height": 100
  1498. },
  1499. "_anchorPoint": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0.5,
  1502. "y": 0.5
  1503. },
  1504. "_id": "b0gYBSBqxJOr+mgKEWLsX8"
  1505. },
  1506. {
  1507. "__type__": "8291eO1F09O8rnTSivojhL+",
  1508. "_name": "",
  1509. "_objFlags": 0,
  1510. "node": {
  1511. "__id__": 41
  1512. },
  1513. "_enabled": true,
  1514. "__prefab": null,
  1515. "itemPrefab": {
  1516. "__uuid__": "a849116e-90a8-4244-9139-9a6f450826fb",
  1517. "__expectedType__": "cc.Prefab"
  1518. },
  1519. "_id": "8dEf3YtIJGW4b6eYr+ZOcO"
  1520. },
  1521. {
  1522. "__type__": "cc.Node",
  1523. "_name": "Path4",
  1524. "_objFlags": 0,
  1525. "_parent": {
  1526. "__id__": 34
  1527. },
  1528. "_children": [],
  1529. "_active": true,
  1530. "_components": [
  1531. {
  1532. "__id__": 45
  1533. },
  1534. {
  1535. "__id__": 46
  1536. }
  1537. ],
  1538. "_prefab": null,
  1539. "_lpos": {
  1540. "__type__": "cc.Vec3",
  1541. "x": -620.964,
  1542. "y": 0,
  1543. "z": 0
  1544. },
  1545. "_lrot": {
  1546. "__type__": "cc.Quat",
  1547. "x": 0,
  1548. "y": 0,
  1549. "z": 0,
  1550. "w": 1
  1551. },
  1552. "_lscale": {
  1553. "__type__": "cc.Vec3",
  1554. "x": 1,
  1555. "y": 1,
  1556. "z": 1
  1557. },
  1558. "_mobility": 0,
  1559. "_layer": 33554432,
  1560. "_euler": {
  1561. "__type__": "cc.Vec3",
  1562. "x": 0,
  1563. "y": 0,
  1564. "z": 0
  1565. },
  1566. "_id": "55c6KgXNpGsK8Yb25WwlEe"
  1567. },
  1568. {
  1569. "__type__": "cc.UITransform",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "node": {
  1573. "__id__": 44
  1574. },
  1575. "_enabled": true,
  1576. "__prefab": null,
  1577. "_contentSize": {
  1578. "__type__": "cc.Size",
  1579. "width": 100,
  1580. "height": 100
  1581. },
  1582. "_anchorPoint": {
  1583. "__type__": "cc.Vec2",
  1584. "x": 0.5,
  1585. "y": 0.5
  1586. },
  1587. "_id": "d8D1Cw+MNNvqXaLKTx38o1"
  1588. },
  1589. {
  1590. "__type__": "8291eO1F09O8rnTSivojhL+",
  1591. "_name": "",
  1592. "_objFlags": 0,
  1593. "node": {
  1594. "__id__": 44
  1595. },
  1596. "_enabled": true,
  1597. "__prefab": null,
  1598. "itemPrefab": {
  1599. "__uuid__": "a849116e-90a8-4244-9139-9a6f450826fb",
  1600. "__expectedType__": "cc.Prefab"
  1601. },
  1602. "_id": "7arUZru4JJ8ZnDAsRfVkyE"
  1603. },
  1604. {
  1605. "__type__": "cc.Node",
  1606. "_name": "Bullet",
  1607. "_objFlags": 0,
  1608. "_parent": {
  1609. "__id__": 34
  1610. },
  1611. "_children": [],
  1612. "_active": true,
  1613. "_components": [
  1614. {
  1615. "__id__": 48
  1616. }
  1617. ],
  1618. "_prefab": null,
  1619. "_lpos": {
  1620. "__type__": "cc.Vec3",
  1621. "x": 0,
  1622. "y": 0,
  1623. "z": 0
  1624. },
  1625. "_lrot": {
  1626. "__type__": "cc.Quat",
  1627. "x": 0,
  1628. "y": 0,
  1629. "z": 0,
  1630. "w": 1
  1631. },
  1632. "_lscale": {
  1633. "__type__": "cc.Vec3",
  1634. "x": 1,
  1635. "y": 1,
  1636. "z": 1
  1637. },
  1638. "_mobility": 0,
  1639. "_layer": 33554432,
  1640. "_euler": {
  1641. "__type__": "cc.Vec3",
  1642. "x": 0,
  1643. "y": 0,
  1644. "z": 0
  1645. },
  1646. "_id": "7fgtcMHM9Hx6qCJc+Ksy28"
  1647. },
  1648. {
  1649. "__type__": "cc.UITransform",
  1650. "_name": "",
  1651. "_objFlags": 0,
  1652. "node": {
  1653. "__id__": 47
  1654. },
  1655. "_enabled": true,
  1656. "__prefab": null,
  1657. "_contentSize": {
  1658. "__type__": "cc.Size",
  1659. "width": 100,
  1660. "height": 100
  1661. },
  1662. "_anchorPoint": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0.5,
  1665. "y": 0.5
  1666. },
  1667. "_id": "175OXNMVNGZIPlQ/j6+o4X"
  1668. },
  1669. {
  1670. "__type__": "cc.Node",
  1671. "_name": "Hero",
  1672. "_objFlags": 0,
  1673. "_parent": {
  1674. "__id__": 34
  1675. },
  1676. "_children": [
  1677. {
  1678. "__id__": 50
  1679. },
  1680. {
  1681. "__id__": 53
  1682. }
  1683. ],
  1684. "_active": true,
  1685. "_components": [
  1686. {
  1687. "__id__": 56
  1688. }
  1689. ],
  1690. "_prefab": null,
  1691. "_lpos": {
  1692. "__type__": "cc.Vec3",
  1693. "x": 2.2737367544323206e-13,
  1694. "y": -490.86080980557904,
  1695. "z": 0
  1696. },
  1697. "_lrot": {
  1698. "__type__": "cc.Quat",
  1699. "x": 0,
  1700. "y": 0,
  1701. "z": 0,
  1702. "w": 1
  1703. },
  1704. "_lscale": {
  1705. "__type__": "cc.Vec3",
  1706. "x": 1.0000000000000002,
  1707. "y": 1.0000000000000002,
  1708. "z": 1
  1709. },
  1710. "_mobility": 0,
  1711. "_layer": 33554432,
  1712. "_euler": {
  1713. "__type__": "cc.Vec3",
  1714. "x": 0,
  1715. "y": 0,
  1716. "z": 0
  1717. },
  1718. "_id": "0bEv/ZfjdNda/gKjWfTX3b"
  1719. },
  1720. {
  1721. "__type__": "cc.Node",
  1722. "_name": "Sprite",
  1723. "_objFlags": 0,
  1724. "_parent": {
  1725. "__id__": 49
  1726. },
  1727. "_children": [],
  1728. "_active": true,
  1729. "_components": [
  1730. {
  1731. "__id__": 51
  1732. },
  1733. {
  1734. "__id__": 52
  1735. }
  1736. ],
  1737. "_prefab": null,
  1738. "_lpos": {
  1739. "__type__": "cc.Vec3",
  1740. "x": 0,
  1741. "y": 0,
  1742. "z": 0
  1743. },
  1744. "_lrot": {
  1745. "__type__": "cc.Quat",
  1746. "x": 0,
  1747. "y": 0,
  1748. "z": 0,
  1749. "w": 1
  1750. },
  1751. "_lscale": {
  1752. "__type__": "cc.Vec3",
  1753. "x": 1,
  1754. "y": 1,
  1755. "z": 1
  1756. },
  1757. "_mobility": 0,
  1758. "_layer": 33554432,
  1759. "_euler": {
  1760. "__type__": "cc.Vec3",
  1761. "x": 0,
  1762. "y": 0,
  1763. "z": 0
  1764. },
  1765. "_id": "40V2Jvk0RKMbhai6nVlx2q"
  1766. },
  1767. {
  1768. "__type__": "cc.UITransform",
  1769. "_name": "",
  1770. "_objFlags": 0,
  1771. "node": {
  1772. "__id__": 50
  1773. },
  1774. "_enabled": true,
  1775. "__prefab": null,
  1776. "_contentSize": {
  1777. "__type__": "cc.Size",
  1778. "width": 229,
  1779. "height": 243
  1780. },
  1781. "_anchorPoint": {
  1782. "__type__": "cc.Vec2",
  1783. "x": 0.5,
  1784. "y": 0.5
  1785. },
  1786. "_id": "47FmDZe2tF47PSAEb2OXpn"
  1787. },
  1788. {
  1789. "__type__": "cc.Sprite",
  1790. "_name": "",
  1791. "_objFlags": 0,
  1792. "node": {
  1793. "__id__": 50
  1794. },
  1795. "_enabled": true,
  1796. "__prefab": null,
  1797. "_customMaterial": null,
  1798. "_srcBlendFactor": 2,
  1799. "_dstBlendFactor": 4,
  1800. "_color": {
  1801. "__type__": "cc.Color",
  1802. "r": 255,
  1803. "g": 255,
  1804. "b": 255,
  1805. "a": 255
  1806. },
  1807. "_spriteFrame": {
  1808. "__uuid__": "ef596c9b-5ebd-43b7-b057-01a16ce8944b@f9941",
  1809. "__expectedType__": "cc.SpriteFrame"
  1810. },
  1811. "_type": 0,
  1812. "_fillType": 0,
  1813. "_sizeMode": 1,
  1814. "_fillCenter": {
  1815. "__type__": "cc.Vec2",
  1816. "x": 0,
  1817. "y": 0
  1818. },
  1819. "_fillStart": 0,
  1820. "_fillRange": 0,
  1821. "_isTrimmedMode": true,
  1822. "_useGrayscale": false,
  1823. "_atlas": null,
  1824. "_id": "f8o/O+A25NYp/u6lYQQEeG"
  1825. },
  1826. {
  1827. "__type__": "cc.Node",
  1828. "_name": "Label",
  1829. "_objFlags": 0,
  1830. "_parent": {
  1831. "__id__": 49
  1832. },
  1833. "_children": [],
  1834. "_active": true,
  1835. "_components": [
  1836. {
  1837. "__id__": 54
  1838. },
  1839. {
  1840. "__id__": 55
  1841. }
  1842. ],
  1843. "_prefab": null,
  1844. "_lpos": {
  1845. "__type__": "cc.Vec3",
  1846. "x": -5.531,
  1847. "y": -7.377,
  1848. "z": 0
  1849. },
  1850. "_lrot": {
  1851. "__type__": "cc.Quat",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0,
  1855. "w": 1
  1856. },
  1857. "_lscale": {
  1858. "__type__": "cc.Vec3",
  1859. "x": 1,
  1860. "y": 1,
  1861. "z": 1
  1862. },
  1863. "_mobility": 0,
  1864. "_layer": 33554432,
  1865. "_euler": {
  1866. "__type__": "cc.Vec3",
  1867. "x": 0,
  1868. "y": 0,
  1869. "z": 0
  1870. },
  1871. "_id": "22lb30j2lFR40VNnRLXvbu"
  1872. },
  1873. {
  1874. "__type__": "cc.UITransform",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "node": {
  1878. "__id__": 53
  1879. },
  1880. "_enabled": true,
  1881. "__prefab": null,
  1882. "_contentSize": {
  1883. "__type__": "cc.Size",
  1884. "width": 66.74,
  1885. "height": 75.6
  1886. },
  1887. "_anchorPoint": {
  1888. "__type__": "cc.Vec2",
  1889. "x": 0.5,
  1890. "y": 0.5
  1891. },
  1892. "_id": "63GHYevpNCC7miyxy8l0vA"
  1893. },
  1894. {
  1895. "__type__": "cc.Label",
  1896. "_name": "",
  1897. "_objFlags": 0,
  1898. "node": {
  1899. "__id__": 53
  1900. },
  1901. "_enabled": true,
  1902. "__prefab": null,
  1903. "_customMaterial": null,
  1904. "_srcBlendFactor": 2,
  1905. "_dstBlendFactor": 4,
  1906. "_color": {
  1907. "__type__": "cc.Color",
  1908. "r": 255,
  1909. "g": 255,
  1910. "b": 255,
  1911. "a": 255
  1912. },
  1913. "_string": "56",
  1914. "_horizontalAlign": 1,
  1915. "_verticalAlign": 1,
  1916. "_actualFontSize": 60,
  1917. "_fontSize": 60,
  1918. "_fontFamily": "Arial",
  1919. "_lineHeight": 60,
  1920. "_overflow": 0,
  1921. "_enableWrapText": true,
  1922. "_font": null,
  1923. "_isSystemFontUsed": true,
  1924. "_spacingX": 0,
  1925. "_isItalic": false,
  1926. "_isBold": true,
  1927. "_isUnderline": false,
  1928. "_underlineHeight": 2,
  1929. "_cacheMode": 0,
  1930. "_id": "4enXl6J/NACIBsm0JdZTAa"
  1931. },
  1932. {
  1933. "__type__": "cc.UITransform",
  1934. "_name": "",
  1935. "_objFlags": 0,
  1936. "node": {
  1937. "__id__": 49
  1938. },
  1939. "_enabled": true,
  1940. "__prefab": null,
  1941. "_contentSize": {
  1942. "__type__": "cc.Size",
  1943. "width": 100,
  1944. "height": 100
  1945. },
  1946. "_anchorPoint": {
  1947. "__type__": "cc.Vec2",
  1948. "x": 0.5,
  1949. "y": 0.5
  1950. },
  1951. "_id": "d1YcC0JpNOIaCtutTL9no2"
  1952. },
  1953. {
  1954. "__type__": "cc.Node",
  1955. "_objFlags": 0,
  1956. "_parent": {
  1957. "__id__": 34
  1958. },
  1959. "_prefab": {
  1960. "__id__": 58
  1961. },
  1962. "__editorExtras__": {}
  1963. },
  1964. {
  1965. "__type__": "cc.PrefabInfo",
  1966. "root": {
  1967. "__id__": 57
  1968. },
  1969. "asset": {
  1970. "__uuid__": "40326745-6774-45ed-90f1-be185927a7c7",
  1971. "__expectedType__": "cc.Prefab"
  1972. },
  1973. "fileId": "a1ZapB+H1PQ5vUmPWHwU55",
  1974. "instance": {
  1975. "__id__": 59
  1976. },
  1977. "targetOverrides": null,
  1978. "nestedPrefabInstanceRoots": null
  1979. },
  1980. {
  1981. "__type__": "cc.PrefabInstance",
  1982. "fileId": "a90vI3aixDBI9BhyzarQlz",
  1983. "prefabRootNode": null,
  1984. "mountedChildren": [],
  1985. "mountedComponents": [],
  1986. "propertyOverrides": [
  1987. {
  1988. "__id__": 60
  1989. },
  1990. {
  1991. "__id__": 62
  1992. },
  1993. {
  1994. "__id__": 63
  1995. },
  1996. {
  1997. "__id__": 64
  1998. },
  1999. {
  2000. "__id__": 65
  2001. }
  2002. ],
  2003. "removedComponents": []
  2004. },
  2005. {
  2006. "__type__": "CCPropertyOverrideInfo",
  2007. "targetInfo": {
  2008. "__id__": 61
  2009. },
  2010. "propertyPath": [
  2011. "_name"
  2012. ],
  2013. "value": "Bullet"
  2014. },
  2015. {
  2016. "__type__": "cc.TargetInfo",
  2017. "localID": [
  2018. "a1ZapB+H1PQ5vUmPWHwU55"
  2019. ]
  2020. },
  2021. {
  2022. "__type__": "CCPropertyOverrideInfo",
  2023. "targetInfo": {
  2024. "__id__": 61
  2025. },
  2026. "propertyPath": [
  2027. "_lpos"
  2028. ],
  2029. "value": {
  2030. "__type__": "cc.Vec3",
  2031. "x": 0,
  2032. "y": 0,
  2033. "z": 0
  2034. }
  2035. },
  2036. {
  2037. "__type__": "CCPropertyOverrideInfo",
  2038. "targetInfo": {
  2039. "__id__": 61
  2040. },
  2041. "propertyPath": [
  2042. "_lrot"
  2043. ],
  2044. "value": {
  2045. "__type__": "cc.Quat",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0,
  2049. "w": 1
  2050. }
  2051. },
  2052. {
  2053. "__type__": "CCPropertyOverrideInfo",
  2054. "targetInfo": {
  2055. "__id__": 61
  2056. },
  2057. "propertyPath": [
  2058. "_euler"
  2059. ],
  2060. "value": {
  2061. "__type__": "cc.Vec3",
  2062. "x": 0,
  2063. "y": 0,
  2064. "z": 0
  2065. }
  2066. },
  2067. {
  2068. "__type__": "CCPropertyOverrideInfo",
  2069. "targetInfo": {
  2070. "__id__": 61
  2071. },
  2072. "propertyPath": [
  2073. "_active"
  2074. ],
  2075. "value": false
  2076. },
  2077. {
  2078. "__type__": "cc.Node",
  2079. "_objFlags": 0,
  2080. "_parent": {
  2081. "__id__": 34
  2082. },
  2083. "_prefab": {
  2084. "__id__": 67
  2085. },
  2086. "__editorExtras__": {}
  2087. },
  2088. {
  2089. "__type__": "cc.PrefabInfo",
  2090. "root": {
  2091. "__id__": 66
  2092. },
  2093. "asset": {
  2094. "__uuid__": "a849116e-90a8-4244-9139-9a6f450826fb",
  2095. "__expectedType__": "cc.Prefab"
  2096. },
  2097. "fileId": "423f4uw0lArIhB7spPK/V7",
  2098. "instance": {
  2099. "__id__": 68
  2100. },
  2101. "targetOverrides": null,
  2102. "nestedPrefabInstanceRoots": null
  2103. },
  2104. {
  2105. "__type__": "cc.PrefabInstance",
  2106. "fileId": "62kxybGKdBEZsAOKlQeQGv",
  2107. "prefabRootNode": null,
  2108. "mountedChildren": [],
  2109. "mountedComponents": [],
  2110. "propertyOverrides": [
  2111. {
  2112. "__id__": 69
  2113. },
  2114. {
  2115. "__id__": 71
  2116. },
  2117. {
  2118. "__id__": 72
  2119. },
  2120. {
  2121. "__id__": 73
  2122. },
  2123. {
  2124. "__id__": 74
  2125. },
  2126. {
  2127. "__id__": 75
  2128. }
  2129. ],
  2130. "removedComponents": []
  2131. },
  2132. {
  2133. "__type__": "CCPropertyOverrideInfo",
  2134. "targetInfo": {
  2135. "__id__": 70
  2136. },
  2137. "propertyPath": [
  2138. "_name"
  2139. ],
  2140. "value": "Item"
  2141. },
  2142. {
  2143. "__type__": "cc.TargetInfo",
  2144. "localID": [
  2145. "423f4uw0lArIhB7spPK/V7"
  2146. ]
  2147. },
  2148. {
  2149. "__type__": "CCPropertyOverrideInfo",
  2150. "targetInfo": {
  2151. "__id__": 70
  2152. },
  2153. "propertyPath": [
  2154. "_lpos"
  2155. ],
  2156. "value": {
  2157. "__type__": "cc.Vec3",
  2158. "x": 0,
  2159. "y": 0,
  2160. "z": 0
  2161. }
  2162. },
  2163. {
  2164. "__type__": "CCPropertyOverrideInfo",
  2165. "targetInfo": {
  2166. "__id__": 70
  2167. },
  2168. "propertyPath": [
  2169. "_lrot"
  2170. ],
  2171. "value": {
  2172. "__type__": "cc.Quat",
  2173. "x": 0,
  2174. "y": 0,
  2175. "z": 0,
  2176. "w": 1
  2177. }
  2178. },
  2179. {
  2180. "__type__": "CCPropertyOverrideInfo",
  2181. "targetInfo": {
  2182. "__id__": 70
  2183. },
  2184. "propertyPath": [
  2185. "_euler"
  2186. ],
  2187. "value": {
  2188. "__type__": "cc.Vec3",
  2189. "x": 0,
  2190. "y": 0,
  2191. "z": 0
  2192. }
  2193. },
  2194. {
  2195. "__type__": "CCPropertyOverrideInfo",
  2196. "targetInfo": {
  2197. "__id__": 70
  2198. },
  2199. "propertyPath": [
  2200. "_active"
  2201. ],
  2202. "value": false
  2203. },
  2204. {
  2205. "__type__": "CCPropertyOverrideInfo",
  2206. "targetInfo": {
  2207. "__id__": 76
  2208. },
  2209. "propertyPath": [
  2210. "_active"
  2211. ],
  2212. "value": true
  2213. },
  2214. {
  2215. "__type__": "cc.TargetInfo",
  2216. "localID": [
  2217. "84p/atj/tI3pRHH/5WL76V"
  2218. ]
  2219. },
  2220. {
  2221. "__type__": "cc.Node",
  2222. "_name": "SpriteSplash",
  2223. "_objFlags": 0,
  2224. "_parent": {
  2225. "__id__": 34
  2226. },
  2227. "_children": [],
  2228. "_active": true,
  2229. "_components": [
  2230. {
  2231. "__id__": 78
  2232. },
  2233. {
  2234. "__id__": 79
  2235. }
  2236. ],
  2237. "_prefab": null,
  2238. "_lpos": {
  2239. "__type__": "cc.Vec3",
  2240. "x": 0,
  2241. "y": -300,
  2242. "z": 0
  2243. },
  2244. "_lrot": {
  2245. "__type__": "cc.Quat",
  2246. "x": 0,
  2247. "y": 0,
  2248. "z": 0,
  2249. "w": 1
  2250. },
  2251. "_lscale": {
  2252. "__type__": "cc.Vec3",
  2253. "x": 1,
  2254. "y": 1,
  2255. "z": 1
  2256. },
  2257. "_mobility": 0,
  2258. "_layer": 33554432,
  2259. "_euler": {
  2260. "__type__": "cc.Vec3",
  2261. "x": 0,
  2262. "y": 0,
  2263. "z": 0
  2264. },
  2265. "_id": "4fJe9foeRCFaQ9ind8ek+H"
  2266. },
  2267. {
  2268. "__type__": "cc.UITransform",
  2269. "_name": "",
  2270. "_objFlags": 0,
  2271. "node": {
  2272. "__id__": 77
  2273. },
  2274. "_enabled": true,
  2275. "__prefab": null,
  2276. "_contentSize": {
  2277. "__type__": "cc.Size",
  2278. "width": 2500,
  2279. "height": 20
  2280. },
  2281. "_anchorPoint": {
  2282. "__type__": "cc.Vec2",
  2283. "x": 0.5,
  2284. "y": 0.5
  2285. },
  2286. "_id": "82C97YIW5HS5mvsZv3gCy4"
  2287. },
  2288. {
  2289. "__type__": "cc.Sprite",
  2290. "_name": "",
  2291. "_objFlags": 0,
  2292. "node": {
  2293. "__id__": 77
  2294. },
  2295. "_enabled": true,
  2296. "__prefab": null,
  2297. "_customMaterial": null,
  2298. "_srcBlendFactor": 2,
  2299. "_dstBlendFactor": 4,
  2300. "_color": {
  2301. "__type__": "cc.Color",
  2302. "r": 255,
  2303. "g": 0,
  2304. "b": 0,
  2305. "a": 255
  2306. },
  2307. "_spriteFrame": {
  2308. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  2309. "__expectedType__": "cc.SpriteFrame"
  2310. },
  2311. "_type": 0,
  2312. "_fillType": 0,
  2313. "_sizeMode": 0,
  2314. "_fillCenter": {
  2315. "__type__": "cc.Vec2",
  2316. "x": 0,
  2317. "y": 0
  2318. },
  2319. "_fillStart": 0,
  2320. "_fillRange": 0,
  2321. "_isTrimmedMode": true,
  2322. "_useGrayscale": false,
  2323. "_atlas": null,
  2324. "_id": "42Wq3EaC1FrZmpLeGE/0Vk"
  2325. },
  2326. {
  2327. "__type__": "cc.UITransform",
  2328. "_name": "",
  2329. "_objFlags": 0,
  2330. "node": {
  2331. "__id__": 34
  2332. },
  2333. "_enabled": true,
  2334. "__prefab": null,
  2335. "_contentSize": {
  2336. "__type__": "cc.Size",
  2337. "width": 2000,
  2338. "height": 1397
  2339. },
  2340. "_anchorPoint": {
  2341. "__type__": "cc.Vec2",
  2342. "x": 0.5,
  2343. "y": 0.5
  2344. },
  2345. "_id": "47cm4zhOVOWLTN0KjPZ2AP"
  2346. },
  2347. {
  2348. "__type__": "bd5a10IebZALozd4PTC922s",
  2349. "_name": "",
  2350. "_objFlags": 0,
  2351. "node": {
  2352. "__id__": 34
  2353. },
  2354. "_enabled": true,
  2355. "__prefab": null,
  2356. "bulletPrefab": {
  2357. "__uuid__": "40326745-6774-45ed-90f1-be185927a7c7",
  2358. "__expectedType__": "cc.Prefab"
  2359. },
  2360. "_id": "34u5zCfI9DE7VRnAdfX11S"
  2361. },
  2362. {
  2363. "__type__": "cc.UITransform",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "node": {
  2367. "__id__": 33
  2368. },
  2369. "_enabled": true,
  2370. "__prefab": null,
  2371. "_contentSize": {
  2372. "__type__": "cc.Size",
  2373. "width": 2000,
  2374. "height": 2036
  2375. },
  2376. "_anchorPoint": {
  2377. "__type__": "cc.Vec2",
  2378. "x": 0.5,
  2379. "y": 0.5
  2380. },
  2381. "_id": "71S6gvp4pLt5q8H5Iso76v"
  2382. },
  2383. {
  2384. "__type__": "cc.Sprite",
  2385. "_name": "",
  2386. "_objFlags": 0,
  2387. "node": {
  2388. "__id__": 33
  2389. },
  2390. "_enabled": false,
  2391. "__prefab": null,
  2392. "_customMaterial": null,
  2393. "_srcBlendFactor": 2,
  2394. "_dstBlendFactor": 4,
  2395. "_color": {
  2396. "__type__": "cc.Color",
  2397. "r": 255,
  2398. "g": 255,
  2399. "b": 255,
  2400. "a": 255
  2401. },
  2402. "_spriteFrame": {
  2403. "__uuid__": "da4f44c9-3edc-401c-89cd-3344b87a0a76@f9941",
  2404. "__expectedType__": "cc.SpriteFrame"
  2405. },
  2406. "_type": 0,
  2407. "_fillType": 0,
  2408. "_sizeMode": 0,
  2409. "_fillCenter": {
  2410. "__type__": "cc.Vec2",
  2411. "x": 0,
  2412. "y": 0
  2413. },
  2414. "_fillStart": 0,
  2415. "_fillRange": 0,
  2416. "_isTrimmedMode": true,
  2417. "_useGrayscale": false,
  2418. "_atlas": null,
  2419. "_id": "04GOZKOQJPDpD/mXW1gLOd"
  2420. },
  2421. {
  2422. "__type__": "cc.Widget",
  2423. "_name": "",
  2424. "_objFlags": 0,
  2425. "node": {
  2426. "__id__": 33
  2427. },
  2428. "_enabled": true,
  2429. "__prefab": null,
  2430. "_alignFlags": 45,
  2431. "_target": null,
  2432. "_left": 0,
  2433. "_right": 0,
  2434. "_top": -319.5,
  2435. "_bottom": -319.5,
  2436. "_horizontalCenter": 0,
  2437. "_verticalCenter": 0,
  2438. "_isAbsLeft": true,
  2439. "_isAbsRight": true,
  2440. "_isAbsTop": true,
  2441. "_isAbsBottom": true,
  2442. "_isAbsHorizontalCenter": true,
  2443. "_isAbsVerticalCenter": true,
  2444. "_originalWidth": 40,
  2445. "_originalHeight": 36,
  2446. "_alignMode": 2,
  2447. "_lockFlags": 0,
  2448. "_id": "74ChrXdk1DQJntaVX+sWg9"
  2449. },
  2450. {
  2451. "__type__": "cc.UITransform",
  2452. "_name": "",
  2453. "_objFlags": 0,
  2454. "node": {
  2455. "__id__": 32
  2456. },
  2457. "_enabled": true,
  2458. "__prefab": null,
  2459. "_contentSize": {
  2460. "__type__": "cc.Size",
  2461. "width": 2000,
  2462. "height": 1397
  2463. },
  2464. "_anchorPoint": {
  2465. "__type__": "cc.Vec2",
  2466. "x": 0.5,
  2467. "y": 0.5
  2468. },
  2469. "_id": "b6dpqfeGtPZKl2feyj0l48"
  2470. },
  2471. {
  2472. "__type__": "cc.Mask",
  2473. "_name": "",
  2474. "_objFlags": 0,
  2475. "node": {
  2476. "__id__": 32
  2477. },
  2478. "_enabled": true,
  2479. "__prefab": null,
  2480. "_type": 0,
  2481. "_inverted": false,
  2482. "_segments": 64,
  2483. "_alphaThreshold": 0.1,
  2484. "_id": "96O96xUe5GEZ4NPvgfyU0f"
  2485. },
  2486. {
  2487. "__type__": "cc.Graphics",
  2488. "_name": "",
  2489. "_objFlags": 0,
  2490. "node": {
  2491. "__id__": 32
  2492. },
  2493. "_enabled": true,
  2494. "__prefab": null,
  2495. "_customMaterial": null,
  2496. "_srcBlendFactor": 2,
  2497. "_dstBlendFactor": 4,
  2498. "_color": {
  2499. "__type__": "cc.Color",
  2500. "r": 255,
  2501. "g": 255,
  2502. "b": 255,
  2503. "a": 255
  2504. },
  2505. "_lineWidth": 1,
  2506. "_strokeColor": {
  2507. "__type__": "cc.Color",
  2508. "r": 0,
  2509. "g": 0,
  2510. "b": 0,
  2511. "a": 255
  2512. },
  2513. "_lineJoin": 2,
  2514. "_lineCap": 0,
  2515. "_fillColor": {
  2516. "__type__": "cc.Color",
  2517. "r": 255,
  2518. "g": 255,
  2519. "b": 255,
  2520. "a": 0
  2521. },
  2522. "_miterLimit": 10,
  2523. "_id": "50k+r1bC5HIq2kD2LGhXnG"
  2524. },
  2525. {
  2526. "__type__": "cc.UITransform",
  2527. "_name": "",
  2528. "_objFlags": 0,
  2529. "node": {
  2530. "__id__": 28
  2531. },
  2532. "_enabled": true,
  2533. "__prefab": null,
  2534. "_contentSize": {
  2535. "__type__": "cc.Size",
  2536. "width": 2000,
  2537. "height": 1397
  2538. },
  2539. "_anchorPoint": {
  2540. "__type__": "cc.Vec2",
  2541. "x": 0.5,
  2542. "y": 0.5
  2543. },
  2544. "_id": "2cVVHjDb1OK5Urf580PS6M"
  2545. },
  2546. {
  2547. "__type__": "cc.Widget",
  2548. "_name": "",
  2549. "_objFlags": 0,
  2550. "node": {
  2551. "__id__": 28
  2552. },
  2553. "_enabled": true,
  2554. "__prefab": null,
  2555. "_alignFlags": 45,
  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": 1532,
  2570. "_originalHeight": 1336,
  2571. "_alignMode": 2,
  2572. "_lockFlags": 0,
  2573. "_id": "9aFbAReTlG26QQjumwVtfz"
  2574. },
  2575. {
  2576. "__type__": "cc.Node",
  2577. "_name": "GameEndTip",
  2578. "_objFlags": 0,
  2579. "_parent": {
  2580. "__id__": 6
  2581. },
  2582. "_children": [
  2583. {
  2584. "__id__": 91
  2585. },
  2586. {
  2587. "__id__": 95
  2588. },
  2589. {
  2590. "__id__": 98
  2591. },
  2592. {
  2593. "__id__": 101
  2594. },
  2595. {
  2596. "__id__": 109
  2597. },
  2598. {
  2599. "__id__": 117
  2600. },
  2601. {
  2602. "__id__": 120
  2603. },
  2604. {
  2605. "__id__": 123
  2606. }
  2607. ],
  2608. "_active": false,
  2609. "_components": [
  2610. {
  2611. "__id__": 126
  2612. },
  2613. {
  2614. "__id__": 127
  2615. },
  2616. {
  2617. "__id__": 128
  2618. },
  2619. {
  2620. "__id__": 129
  2621. }
  2622. ],
  2623. "_prefab": null,
  2624. "_lpos": {
  2625. "__type__": "cc.Vec3",
  2626. "x": 0,
  2627. "y": 0,
  2628. "z": 0
  2629. },
  2630. "_lrot": {
  2631. "__type__": "cc.Quat",
  2632. "x": 0,
  2633. "y": 0,
  2634. "z": 0,
  2635. "w": 1
  2636. },
  2637. "_lscale": {
  2638. "__type__": "cc.Vec3",
  2639. "x": 0.976,
  2640. "y": 0.976,
  2641. "z": 0.976
  2642. },
  2643. "_mobility": 0,
  2644. "_layer": 33554432,
  2645. "_euler": {
  2646. "__type__": "cc.Vec3",
  2647. "x": 0,
  2648. "y": 0,
  2649. "z": 0
  2650. },
  2651. "_id": "93JjkViVVAV7PtAJqtBMLi"
  2652. },
  2653. {
  2654. "__type__": "cc.Node",
  2655. "_name": "bg",
  2656. "_objFlags": 0,
  2657. "_parent": {
  2658. "__id__": 90
  2659. },
  2660. "_children": [],
  2661. "_active": true,
  2662. "_components": [
  2663. {
  2664. "__id__": 92
  2665. },
  2666. {
  2667. "__id__": 93
  2668. },
  2669. {
  2670. "__id__": 94
  2671. }
  2672. ],
  2673. "_prefab": null,
  2674. "_lpos": {
  2675. "__type__": "cc.Vec3",
  2676. "x": 0,
  2677. "y": 0,
  2678. "z": 0
  2679. },
  2680. "_lrot": {
  2681. "__type__": "cc.Quat",
  2682. "x": 0,
  2683. "y": 0,
  2684. "z": 0,
  2685. "w": 1
  2686. },
  2687. "_lscale": {
  2688. "__type__": "cc.Vec3",
  2689. "x": 1,
  2690. "y": 1,
  2691. "z": 1
  2692. },
  2693. "_mobility": 0,
  2694. "_layer": 33554432,
  2695. "_euler": {
  2696. "__type__": "cc.Vec3",
  2697. "x": 0,
  2698. "y": 0,
  2699. "z": 0
  2700. },
  2701. "_id": "31XHDuimdJEI1t+6/L7yHe"
  2702. },
  2703. {
  2704. "__type__": "cc.UITransform",
  2705. "_name": "",
  2706. "_objFlags": 0,
  2707. "node": {
  2708. "__id__": 91
  2709. },
  2710. "_enabled": true,
  2711. "__prefab": null,
  2712. "_contentSize": {
  2713. "__type__": "cc.Size",
  2714. "width": 2461.8,
  2715. "height": 1733.3
  2716. },
  2717. "_anchorPoint": {
  2718. "__type__": "cc.Vec2",
  2719. "x": 0.5,
  2720. "y": 0.5
  2721. },
  2722. "_id": "acNFpC5ydPZKWEsOyMPdXO"
  2723. },
  2724. {
  2725. "__type__": "cc.Sprite",
  2726. "_name": "",
  2727. "_objFlags": 0,
  2728. "node": {
  2729. "__id__": 91
  2730. },
  2731. "_enabled": true,
  2732. "__prefab": null,
  2733. "_customMaterial": null,
  2734. "_srcBlendFactor": 2,
  2735. "_dstBlendFactor": 4,
  2736. "_color": {
  2737. "__type__": "cc.Color",
  2738. "r": 3,
  2739. "g": 0,
  2740. "b": 0,
  2741. "a": 176
  2742. },
  2743. "_spriteFrame": {
  2744. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  2745. "__expectedType__": "cc.SpriteFrame"
  2746. },
  2747. "_type": 1,
  2748. "_fillType": 0,
  2749. "_sizeMode": 0,
  2750. "_fillCenter": {
  2751. "__type__": "cc.Vec2",
  2752. "x": 0,
  2753. "y": 0
  2754. },
  2755. "_fillStart": 0,
  2756. "_fillRange": 0,
  2757. "_isTrimmedMode": true,
  2758. "_useGrayscale": false,
  2759. "_atlas": null,
  2760. "_id": "77V4tKsVJEX7s2w4moSgIh"
  2761. },
  2762. {
  2763. "__type__": "cc.BlockInputEvents",
  2764. "_name": "",
  2765. "_objFlags": 0,
  2766. "node": {
  2767. "__id__": 91
  2768. },
  2769. "_enabled": true,
  2770. "__prefab": null,
  2771. "_id": "96mc2BGyFA77T4zTAlZavg"
  2772. },
  2773. {
  2774. "__type__": "cc.Node",
  2775. "_name": "Sprite",
  2776. "_objFlags": 0,
  2777. "_parent": {
  2778. "__id__": 90
  2779. },
  2780. "_children": [],
  2781. "_active": true,
  2782. "_components": [
  2783. {
  2784. "__id__": 96
  2785. },
  2786. {
  2787. "__id__": 97
  2788. }
  2789. ],
  2790. "_prefab": null,
  2791. "_lpos": {
  2792. "__type__": "cc.Vec3",
  2793. "x": 0,
  2794. "y": -18.761,
  2795. "z": 0
  2796. },
  2797. "_lrot": {
  2798. "__type__": "cc.Quat",
  2799. "x": 0,
  2800. "y": 0,
  2801. "z": 0,
  2802. "w": 1
  2803. },
  2804. "_lscale": {
  2805. "__type__": "cc.Vec3",
  2806. "x": 1,
  2807. "y": 1,
  2808. "z": 1
  2809. },
  2810. "_mobility": 0,
  2811. "_layer": 33554432,
  2812. "_euler": {
  2813. "__type__": "cc.Vec3",
  2814. "x": 0,
  2815. "y": 0,
  2816. "z": 0
  2817. },
  2818. "_id": "9fs+apmJpJroKm3/UD+5uF"
  2819. },
  2820. {
  2821. "__type__": "cc.UITransform",
  2822. "_name": "",
  2823. "_objFlags": 0,
  2824. "node": {
  2825. "__id__": 95
  2826. },
  2827. "_enabled": true,
  2828. "__prefab": null,
  2829. "_contentSize": {
  2830. "__type__": "cc.Size",
  2831. "width": 1311,
  2832. "height": 806
  2833. },
  2834. "_anchorPoint": {
  2835. "__type__": "cc.Vec2",
  2836. "x": 0.5,
  2837. "y": 0.5
  2838. },
  2839. "_id": "6frXPnxxJArJzX27dh8uck"
  2840. },
  2841. {
  2842. "__type__": "cc.Sprite",
  2843. "_name": "",
  2844. "_objFlags": 0,
  2845. "node": {
  2846. "__id__": 95
  2847. },
  2848. "_enabled": true,
  2849. "__prefab": null,
  2850. "_customMaterial": null,
  2851. "_srcBlendFactor": 2,
  2852. "_dstBlendFactor": 4,
  2853. "_color": {
  2854. "__type__": "cc.Color",
  2855. "r": 255,
  2856. "g": 255,
  2857. "b": 255,
  2858. "a": 255
  2859. },
  2860. "_spriteFrame": {
  2861. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  2862. "__expectedType__": "cc.SpriteFrame"
  2863. },
  2864. "_type": 0,
  2865. "_fillType": 0,
  2866. "_sizeMode": 1,
  2867. "_fillCenter": {
  2868. "__type__": "cc.Vec2",
  2869. "x": 0,
  2870. "y": 0
  2871. },
  2872. "_fillStart": 0,
  2873. "_fillRange": 0,
  2874. "_isTrimmedMode": true,
  2875. "_useGrayscale": false,
  2876. "_atlas": null,
  2877. "_id": "42+SJdTHJHfaszGgbXO9S7"
  2878. },
  2879. {
  2880. "__type__": "cc.Node",
  2881. "_name": "Label",
  2882. "_objFlags": 0,
  2883. "_parent": {
  2884. "__id__": 90
  2885. },
  2886. "_children": [],
  2887. "_active": true,
  2888. "_components": [
  2889. {
  2890. "__id__": 99
  2891. },
  2892. {
  2893. "__id__": 100
  2894. }
  2895. ],
  2896. "_prefab": null,
  2897. "_lpos": {
  2898. "__type__": "cc.Vec3",
  2899. "x": -27.538,
  2900. "y": 127.951,
  2901. "z": 0
  2902. },
  2903. "_lrot": {
  2904. "__type__": "cc.Quat",
  2905. "x": 0,
  2906. "y": 0,
  2907. "z": 0,
  2908. "w": 1
  2909. },
  2910. "_lscale": {
  2911. "__type__": "cc.Vec3",
  2912. "x": 1,
  2913. "y": 1,
  2914. "z": 1
  2915. },
  2916. "_mobility": 0,
  2917. "_layer": 33554432,
  2918. "_euler": {
  2919. "__type__": "cc.Vec3",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0
  2923. },
  2924. "_id": "683vYYXVNMG4zDSZ2ZL/2x"
  2925. },
  2926. {
  2927. "__type__": "cc.UITransform",
  2928. "_name": "",
  2929. "_objFlags": 0,
  2930. "node": {
  2931. "__id__": 98
  2932. },
  2933. "_enabled": true,
  2934. "__prefab": null,
  2935. "_contentSize": {
  2936. "__type__": "cc.Size",
  2937. "width": 560.454,
  2938. "height": 214.07999999999998
  2939. },
  2940. "_anchorPoint": {
  2941. "__type__": "cc.Vec2",
  2942. "x": 0.5,
  2943. "y": 0.5
  2944. },
  2945. "_id": "4bvdCXN2BJy4+tYUB808Ck"
  2946. },
  2947. {
  2948. "__type__": "cc.Label",
  2949. "_name": "",
  2950. "_objFlags": 0,
  2951. "node": {
  2952. "__id__": 98
  2953. },
  2954. "_enabled": true,
  2955. "__prefab": null,
  2956. "_customMaterial": null,
  2957. "_srcBlendFactor": 2,
  2958. "_dstBlendFactor": 4,
  2959. "_color": {
  2960. "__type__": "cc.Color",
  2961. "r": 169,
  2962. "g": 79,
  2963. "b": 9,
  2964. "a": 255
  2965. },
  2966. "_string": "当前关卡:第1关",
  2967. "_horizontalAlign": 1,
  2968. "_verticalAlign": 1,
  2969. "_actualFontSize": 65,
  2970. "_fontSize": 65,
  2971. "_fontFamily": "Arial",
  2972. "_lineHeight": 100,
  2973. "_overflow": 1,
  2974. "_enableWrapText": true,
  2975. "_font": null,
  2976. "_isSystemFontUsed": true,
  2977. "_spacingX": 0,
  2978. "_isItalic": false,
  2979. "_isBold": true,
  2980. "_isUnderline": false,
  2981. "_underlineHeight": 2,
  2982. "_cacheMode": 0,
  2983. "_id": "f9AYjkkhBO3LqvM/euMVoh"
  2984. },
  2985. {
  2986. "__type__": "cc.Node",
  2987. "_name": "BackHome",
  2988. "_objFlags": 0,
  2989. "_parent": {
  2990. "__id__": 90
  2991. },
  2992. "_children": [
  2993. {
  2994. "__id__": 102
  2995. }
  2996. ],
  2997. "_active": true,
  2998. "_components": [
  2999. {
  3000. "__id__": 105
  3001. },
  3002. {
  3003. "__id__": 106
  3004. },
  3005. {
  3006. "__id__": 107
  3007. }
  3008. ],
  3009. "_prefab": null,
  3010. "_lpos": {
  3011. "__type__": "cc.Vec3",
  3012. "x": -291.21,
  3013. "y": -267.351,
  3014. "z": 0
  3015. },
  3016. "_lrot": {
  3017. "__type__": "cc.Quat",
  3018. "x": 0,
  3019. "y": 0,
  3020. "z": 0,
  3021. "w": 1
  3022. },
  3023. "_lscale": {
  3024. "__type__": "cc.Vec3",
  3025. "x": 1,
  3026. "y": 1,
  3027. "z": 1
  3028. },
  3029. "_mobility": 0,
  3030. "_layer": 33554432,
  3031. "_euler": {
  3032. "__type__": "cc.Vec3",
  3033. "x": 0,
  3034. "y": 0,
  3035. "z": 0
  3036. },
  3037. "_id": "adrsQJwhpLvKCA0edRC9ep"
  3038. },
  3039. {
  3040. "__type__": "cc.Node",
  3041. "_name": "Label",
  3042. "_objFlags": 512,
  3043. "_parent": {
  3044. "__id__": 101
  3045. },
  3046. "_children": [],
  3047. "_active": true,
  3048. "_components": [
  3049. {
  3050. "__id__": 103
  3051. },
  3052. {
  3053. "__id__": 104
  3054. }
  3055. ],
  3056. "_prefab": null,
  3057. "_lpos": {
  3058. "__type__": "cc.Vec3",
  3059. "x": 1.5368852459016438,
  3060. "y": 6.147540983606557,
  3061. "z": 0
  3062. },
  3063. "_lrot": {
  3064. "__type__": "cc.Quat",
  3065. "x": 0,
  3066. "y": 0,
  3067. "z": 0,
  3068. "w": 1
  3069. },
  3070. "_lscale": {
  3071. "__type__": "cc.Vec3",
  3072. "x": 1,
  3073. "y": 1,
  3074. "z": 1
  3075. },
  3076. "_mobility": 0,
  3077. "_layer": 33554432,
  3078. "_euler": {
  3079. "__type__": "cc.Vec3",
  3080. "x": 0,
  3081. "y": 0,
  3082. "z": 0
  3083. },
  3084. "_id": "3fEW57U69K040Vzc1siZdR"
  3085. },
  3086. {
  3087. "__type__": "cc.UITransform",
  3088. "_name": "",
  3089. "_objFlags": 0,
  3090. "node": {
  3091. "__id__": 102
  3092. },
  3093. "_enabled": true,
  3094. "__prefab": null,
  3095. "_contentSize": {
  3096. "__type__": "cc.Size",
  3097. "width": 312.09016393442624,
  3098. "height": 70.73770491803279
  3099. },
  3100. "_anchorPoint": {
  3101. "__type__": "cc.Vec2",
  3102. "x": 0.5,
  3103. "y": 0.5
  3104. },
  3105. "_id": "35RGH0cq1In4hdFQ96Zn3b"
  3106. },
  3107. {
  3108. "__type__": "cc.Label",
  3109. "_name": "",
  3110. "_objFlags": 0,
  3111. "node": {
  3112. "__id__": 102
  3113. },
  3114. "_enabled": true,
  3115. "__prefab": null,
  3116. "_customMaterial": null,
  3117. "_srcBlendFactor": 2,
  3118. "_dstBlendFactor": 4,
  3119. "_color": {
  3120. "__type__": "cc.Color",
  3121. "r": 255,
  3122. "g": 255,
  3123. "b": 255,
  3124. "a": 255
  3125. },
  3126. "_string": "返回首页",
  3127. "_horizontalAlign": 1,
  3128. "_verticalAlign": 1,
  3129. "_actualFontSize": 55,
  3130. "_fontSize": 55,
  3131. "_fontFamily": "Arial",
  3132. "_lineHeight": 70,
  3133. "_overflow": 1,
  3134. "_enableWrapText": false,
  3135. "_font": null,
  3136. "_isSystemFontUsed": true,
  3137. "_spacingX": 0,
  3138. "_isItalic": false,
  3139. "_isBold": false,
  3140. "_isUnderline": false,
  3141. "_underlineHeight": 2,
  3142. "_cacheMode": 0,
  3143. "_id": "feqqaW3iJPF7vftQ39pQEC"
  3144. },
  3145. {
  3146. "__type__": "cc.UITransform",
  3147. "_name": "",
  3148. "_objFlags": 0,
  3149. "node": {
  3150. "__id__": 101
  3151. },
  3152. "_enabled": true,
  3153. "__prefab": null,
  3154. "_contentSize": {
  3155. "__type__": "cc.Size",
  3156. "width": 411,
  3157. "height": 144
  3158. },
  3159. "_anchorPoint": {
  3160. "__type__": "cc.Vec2",
  3161. "x": 0.5,
  3162. "y": 0.5
  3163. },
  3164. "_id": "0d3afojiRHfIoSM5LDTv3k"
  3165. },
  3166. {
  3167. "__type__": "cc.Sprite",
  3168. "_name": "",
  3169. "_objFlags": 0,
  3170. "node": {
  3171. "__id__": 101
  3172. },
  3173. "_enabled": true,
  3174. "__prefab": null,
  3175. "_customMaterial": null,
  3176. "_srcBlendFactor": 2,
  3177. "_dstBlendFactor": 4,
  3178. "_color": {
  3179. "__type__": "cc.Color",
  3180. "r": 255,
  3181. "g": 255,
  3182. "b": 255,
  3183. "a": 255
  3184. },
  3185. "_spriteFrame": {
  3186. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3187. "__expectedType__": "cc.SpriteFrame"
  3188. },
  3189. "_type": 1,
  3190. "_fillType": 0,
  3191. "_sizeMode": 0,
  3192. "_fillCenter": {
  3193. "__type__": "cc.Vec2",
  3194. "x": 0,
  3195. "y": 0
  3196. },
  3197. "_fillStart": 0,
  3198. "_fillRange": 0,
  3199. "_isTrimmedMode": true,
  3200. "_useGrayscale": false,
  3201. "_atlas": null,
  3202. "_id": "b5ibidQGZOda4qgn015afs"
  3203. },
  3204. {
  3205. "__type__": "cc.Button",
  3206. "_name": "",
  3207. "_objFlags": 0,
  3208. "node": {
  3209. "__id__": 101
  3210. },
  3211. "_enabled": true,
  3212. "__prefab": null,
  3213. "clickEvents": [
  3214. {
  3215. "__id__": 108
  3216. }
  3217. ],
  3218. "_interactable": true,
  3219. "_transition": 2,
  3220. "_normalColor": {
  3221. "__type__": "cc.Color",
  3222. "r": 214,
  3223. "g": 214,
  3224. "b": 214,
  3225. "a": 255
  3226. },
  3227. "_hoverColor": {
  3228. "__type__": "cc.Color",
  3229. "r": 211,
  3230. "g": 211,
  3231. "b": 211,
  3232. "a": 255
  3233. },
  3234. "_pressedColor": {
  3235. "__type__": "cc.Color",
  3236. "r": 255,
  3237. "g": 255,
  3238. "b": 255,
  3239. "a": 255
  3240. },
  3241. "_disabledColor": {
  3242. "__type__": "cc.Color",
  3243. "r": 124,
  3244. "g": 124,
  3245. "b": 124,
  3246. "a": 255
  3247. },
  3248. "_normalSprite": {
  3249. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3250. "__expectedType__": "cc.SpriteFrame"
  3251. },
  3252. "_hoverSprite": {
  3253. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3254. "__expectedType__": "cc.SpriteFrame"
  3255. },
  3256. "_pressedSprite": {
  3257. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3258. "__expectedType__": "cc.SpriteFrame"
  3259. },
  3260. "_disabledSprite": {
  3261. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  3262. "__expectedType__": "cc.SpriteFrame"
  3263. },
  3264. "_duration": 0.1,
  3265. "_zoomScale": 1.2,
  3266. "_target": {
  3267. "__id__": 101
  3268. },
  3269. "_id": "2ewEGO+npD5Yi774ZON+O8"
  3270. },
  3271. {
  3272. "__type__": "cc.ClickEvent",
  3273. "target": {
  3274. "__id__": 90
  3275. },
  3276. "component": "",
  3277. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  3278. "handler": "backHomeBtn",
  3279. "customEventData": ""
  3280. },
  3281. {
  3282. "__type__": "cc.Node",
  3283. "_name": "EnterGameBtn",
  3284. "_objFlags": 0,
  3285. "_parent": {
  3286. "__id__": 90
  3287. },
  3288. "_children": [
  3289. {
  3290. "__id__": 110
  3291. }
  3292. ],
  3293. "_active": true,
  3294. "_components": [
  3295. {
  3296. "__id__": 113
  3297. },
  3298. {
  3299. "__id__": 114
  3300. },
  3301. {
  3302. "__id__": 115
  3303. }
  3304. ],
  3305. "_prefab": null,
  3306. "_lpos": {
  3307. "__type__": "cc.Vec3",
  3308. "x": 274.528,
  3309. "y": -267.351,
  3310. "z": 0
  3311. },
  3312. "_lrot": {
  3313. "__type__": "cc.Quat",
  3314. "x": 0,
  3315. "y": 0,
  3316. "z": 0,
  3317. "w": 1
  3318. },
  3319. "_lscale": {
  3320. "__type__": "cc.Vec3",
  3321. "x": 1,
  3322. "y": 1,
  3323. "z": 1
  3324. },
  3325. "_mobility": 0,
  3326. "_layer": 33554432,
  3327. "_euler": {
  3328. "__type__": "cc.Vec3",
  3329. "x": 0,
  3330. "y": 0,
  3331. "z": 0
  3332. },
  3333. "_id": "d96f/sKyhH8pWYrtD2NvpM"
  3334. },
  3335. {
  3336. "__type__": "cc.Node",
  3337. "_name": "Label",
  3338. "_objFlags": 512,
  3339. "_parent": {
  3340. "__id__": 109
  3341. },
  3342. "_children": [],
  3343. "_active": true,
  3344. "_components": [
  3345. {
  3346. "__id__": 111
  3347. },
  3348. {
  3349. "__id__": 112
  3350. }
  3351. ],
  3352. "_prefab": null,
  3353. "_lpos": {
  3354. "__type__": "cc.Vec3",
  3355. "x": 1.5368852459016438,
  3356. "y": 6.147540983606557,
  3357. "z": 0
  3358. },
  3359. "_lrot": {
  3360. "__type__": "cc.Quat",
  3361. "x": 0,
  3362. "y": 0,
  3363. "z": 0,
  3364. "w": 1
  3365. },
  3366. "_lscale": {
  3367. "__type__": "cc.Vec3",
  3368. "x": 1,
  3369. "y": 1,
  3370. "z": 1
  3371. },
  3372. "_mobility": 0,
  3373. "_layer": 33554432,
  3374. "_euler": {
  3375. "__type__": "cc.Vec3",
  3376. "x": 0,
  3377. "y": 0,
  3378. "z": 0
  3379. },
  3380. "_id": "1foVSXWopEjbWb7Y58M752"
  3381. },
  3382. {
  3383. "__type__": "cc.UITransform",
  3384. "_name": "",
  3385. "_objFlags": 0,
  3386. "node": {
  3387. "__id__": 110
  3388. },
  3389. "_enabled": true,
  3390. "__prefab": null,
  3391. "_contentSize": {
  3392. "__type__": "cc.Size",
  3393. "width": 312.09016393442624,
  3394. "height": 70.73770491803279
  3395. },
  3396. "_anchorPoint": {
  3397. "__type__": "cc.Vec2",
  3398. "x": 0.5,
  3399. "y": 0.5
  3400. },
  3401. "_id": "bbGJuCyZNC/Z6g8wMi8fTg"
  3402. },
  3403. {
  3404. "__type__": "cc.Label",
  3405. "_name": "",
  3406. "_objFlags": 0,
  3407. "node": {
  3408. "__id__": 110
  3409. },
  3410. "_enabled": true,
  3411. "__prefab": null,
  3412. "_customMaterial": null,
  3413. "_srcBlendFactor": 2,
  3414. "_dstBlendFactor": 4,
  3415. "_color": {
  3416. "__type__": "cc.Color",
  3417. "r": 255,
  3418. "g": 255,
  3419. "b": 255,
  3420. "a": 255
  3421. },
  3422. "_string": "下一关",
  3423. "_horizontalAlign": 1,
  3424. "_verticalAlign": 1,
  3425. "_actualFontSize": 55,
  3426. "_fontSize": 55,
  3427. "_fontFamily": "Arial",
  3428. "_lineHeight": 70,
  3429. "_overflow": 1,
  3430. "_enableWrapText": false,
  3431. "_font": null,
  3432. "_isSystemFontUsed": true,
  3433. "_spacingX": 0,
  3434. "_isItalic": false,
  3435. "_isBold": false,
  3436. "_isUnderline": false,
  3437. "_underlineHeight": 2,
  3438. "_cacheMode": 0,
  3439. "_id": "66MvUFQAZAgoxN7VIo9CQx"
  3440. },
  3441. {
  3442. "__type__": "cc.UITransform",
  3443. "_name": "",
  3444. "_objFlags": 0,
  3445. "node": {
  3446. "__id__": 109
  3447. },
  3448. "_enabled": true,
  3449. "__prefab": null,
  3450. "_contentSize": {
  3451. "__type__": "cc.Size",
  3452. "width": 411,
  3453. "height": 144
  3454. },
  3455. "_anchorPoint": {
  3456. "__type__": "cc.Vec2",
  3457. "x": 0.5,
  3458. "y": 0.5
  3459. },
  3460. "_id": "3e6wJfzD1G+LRjhvK36HjE"
  3461. },
  3462. {
  3463. "__type__": "cc.Sprite",
  3464. "_name": "",
  3465. "_objFlags": 0,
  3466. "node": {
  3467. "__id__": 109
  3468. },
  3469. "_enabled": true,
  3470. "__prefab": null,
  3471. "_customMaterial": null,
  3472. "_srcBlendFactor": 2,
  3473. "_dstBlendFactor": 4,
  3474. "_color": {
  3475. "__type__": "cc.Color",
  3476. "r": 255,
  3477. "g": 255,
  3478. "b": 255,
  3479. "a": 255
  3480. },
  3481. "_spriteFrame": {
  3482. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3483. "__expectedType__": "cc.SpriteFrame"
  3484. },
  3485. "_type": 1,
  3486. "_fillType": 0,
  3487. "_sizeMode": 0,
  3488. "_fillCenter": {
  3489. "__type__": "cc.Vec2",
  3490. "x": 0,
  3491. "y": 0
  3492. },
  3493. "_fillStart": 0,
  3494. "_fillRange": 0,
  3495. "_isTrimmedMode": true,
  3496. "_useGrayscale": false,
  3497. "_atlas": null,
  3498. "_id": "49stwRG7xGy6/NfKKXONkv"
  3499. },
  3500. {
  3501. "__type__": "cc.Button",
  3502. "_name": "",
  3503. "_objFlags": 0,
  3504. "node": {
  3505. "__id__": 109
  3506. },
  3507. "_enabled": true,
  3508. "__prefab": null,
  3509. "clickEvents": [
  3510. {
  3511. "__id__": 116
  3512. }
  3513. ],
  3514. "_interactable": true,
  3515. "_transition": 2,
  3516. "_normalColor": {
  3517. "__type__": "cc.Color",
  3518. "r": 214,
  3519. "g": 214,
  3520. "b": 214,
  3521. "a": 255
  3522. },
  3523. "_hoverColor": {
  3524. "__type__": "cc.Color",
  3525. "r": 211,
  3526. "g": 211,
  3527. "b": 211,
  3528. "a": 255
  3529. },
  3530. "_pressedColor": {
  3531. "__type__": "cc.Color",
  3532. "r": 255,
  3533. "g": 255,
  3534. "b": 255,
  3535. "a": 255
  3536. },
  3537. "_disabledColor": {
  3538. "__type__": "cc.Color",
  3539. "r": 124,
  3540. "g": 124,
  3541. "b": 124,
  3542. "a": 255
  3543. },
  3544. "_normalSprite": {
  3545. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3546. "__expectedType__": "cc.SpriteFrame"
  3547. },
  3548. "_hoverSprite": {
  3549. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3550. "__expectedType__": "cc.SpriteFrame"
  3551. },
  3552. "_pressedSprite": {
  3553. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3554. "__expectedType__": "cc.SpriteFrame"
  3555. },
  3556. "_disabledSprite": {
  3557. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  3558. "__expectedType__": "cc.SpriteFrame"
  3559. },
  3560. "_duration": 0.1,
  3561. "_zoomScale": 1.2,
  3562. "_target": {
  3563. "__id__": 109
  3564. },
  3565. "_id": "47RANVaJlKX53eA7d96CEb"
  3566. },
  3567. {
  3568. "__type__": "cc.ClickEvent",
  3569. "target": {
  3570. "__id__": 90
  3571. },
  3572. "component": "",
  3573. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  3574. "handler": "levelBtn",
  3575. "customEventData": ""
  3576. },
  3577. {
  3578. "__type__": "cc.Node",
  3579. "_name": "curLevelScore",
  3580. "_objFlags": 0,
  3581. "_parent": {
  3582. "__id__": 90
  3583. },
  3584. "_children": [],
  3585. "_active": true,
  3586. "_components": [
  3587. {
  3588. "__id__": 118
  3589. },
  3590. {
  3591. "__id__": 119
  3592. }
  3593. ],
  3594. "_prefab": null,
  3595. "_lpos": {
  3596. "__type__": "cc.Vec3",
  3597. "x": 360.28,
  3598. "y": -41.767,
  3599. "z": 0
  3600. },
  3601. "_lrot": {
  3602. "__type__": "cc.Quat",
  3603. "x": 0,
  3604. "y": 0,
  3605. "z": 0,
  3606. "w": 1
  3607. },
  3608. "_lscale": {
  3609. "__type__": "cc.Vec3",
  3610. "x": 1,
  3611. "y": 1,
  3612. "z": 1
  3613. },
  3614. "_mobility": 0,
  3615. "_layer": 33554432,
  3616. "_euler": {
  3617. "__type__": "cc.Vec3",
  3618. "x": 0,
  3619. "y": 0,
  3620. "z": 0
  3621. },
  3622. "_id": "c2t2qam5FJSa7f+VRY4xwL"
  3623. },
  3624. {
  3625. "__type__": "cc.UITransform",
  3626. "_name": "",
  3627. "_objFlags": 0,
  3628. "node": {
  3629. "__id__": 117
  3630. },
  3631. "_enabled": true,
  3632. "__prefab": null,
  3633. "_contentSize": {
  3634. "__type__": "cc.Size",
  3635. "width": 560.454,
  3636. "height": 214.07999999999998
  3637. },
  3638. "_anchorPoint": {
  3639. "__type__": "cc.Vec2",
  3640. "x": 0.5,
  3641. "y": 0.5
  3642. },
  3643. "_id": "54iE2ohRhF4ovuxzUVzZli"
  3644. },
  3645. {
  3646. "__type__": "cc.Label",
  3647. "_name": "",
  3648. "_objFlags": 0,
  3649. "node": {
  3650. "__id__": 117
  3651. },
  3652. "_enabled": true,
  3653. "__prefab": null,
  3654. "_customMaterial": null,
  3655. "_srcBlendFactor": 2,
  3656. "_dstBlendFactor": 4,
  3657. "_color": {
  3658. "__type__": "cc.Color",
  3659. "r": 169,
  3660. "g": 79,
  3661. "b": 9,
  3662. "a": 255
  3663. },
  3664. "_string": "本关得分:1",
  3665. "_horizontalAlign": 0,
  3666. "_verticalAlign": 1,
  3667. "_actualFontSize": 60,
  3668. "_fontSize": 60,
  3669. "_fontFamily": "Arial",
  3670. "_lineHeight": 100,
  3671. "_overflow": 1,
  3672. "_enableWrapText": true,
  3673. "_font": null,
  3674. "_isSystemFontUsed": true,
  3675. "_spacingX": 0,
  3676. "_isItalic": false,
  3677. "_isBold": true,
  3678. "_isUnderline": false,
  3679. "_underlineHeight": 2,
  3680. "_cacheMode": 0,
  3681. "_id": "d1pwclNt1CxLkmmf34GWOc"
  3682. },
  3683. {
  3684. "__type__": "cc.Node",
  3685. "_name": "TotalScore",
  3686. "_objFlags": 0,
  3687. "_parent": {
  3688. "__id__": 90
  3689. },
  3690. "_children": [],
  3691. "_active": true,
  3692. "_components": [
  3693. {
  3694. "__id__": 121
  3695. },
  3696. {
  3697. "__id__": 122
  3698. }
  3699. ],
  3700. "_prefab": null,
  3701. "_lpos": {
  3702. "__type__": "cc.Vec3",
  3703. "x": -186.859,
  3704. "y": -41.767,
  3705. "z": 0
  3706. },
  3707. "_lrot": {
  3708. "__type__": "cc.Quat",
  3709. "x": 0,
  3710. "y": 0,
  3711. "z": 0,
  3712. "w": 1
  3713. },
  3714. "_lscale": {
  3715. "__type__": "cc.Vec3",
  3716. "x": 1,
  3717. "y": 1,
  3718. "z": 1
  3719. },
  3720. "_mobility": 0,
  3721. "_layer": 33554432,
  3722. "_euler": {
  3723. "__type__": "cc.Vec3",
  3724. "x": 0,
  3725. "y": 0,
  3726. "z": 0
  3727. },
  3728. "_id": "56X7kQMiFNj5CA75HojXOp"
  3729. },
  3730. {
  3731. "__type__": "cc.UITransform",
  3732. "_name": "",
  3733. "_objFlags": 0,
  3734. "node": {
  3735. "__id__": 120
  3736. },
  3737. "_enabled": true,
  3738. "__prefab": null,
  3739. "_contentSize": {
  3740. "__type__": "cc.Size",
  3741. "width": 560.454,
  3742. "height": 214.07999999999998
  3743. },
  3744. "_anchorPoint": {
  3745. "__type__": "cc.Vec2",
  3746. "x": 0.5,
  3747. "y": 0.5
  3748. },
  3749. "_id": "91F5VNHjNIgqN03rfwh4Xc"
  3750. },
  3751. {
  3752. "__type__": "cc.Label",
  3753. "_name": "",
  3754. "_objFlags": 0,
  3755. "node": {
  3756. "__id__": 120
  3757. },
  3758. "_enabled": true,
  3759. "__prefab": null,
  3760. "_customMaterial": null,
  3761. "_srcBlendFactor": 2,
  3762. "_dstBlendFactor": 4,
  3763. "_color": {
  3764. "__type__": "cc.Color",
  3765. "r": 169,
  3766. "g": 79,
  3767. "b": 9,
  3768. "a": 255
  3769. },
  3770. "_string": "总得分:",
  3771. "_horizontalAlign": 0,
  3772. "_verticalAlign": 1,
  3773. "_actualFontSize": 60,
  3774. "_fontSize": 60,
  3775. "_fontFamily": "Arial",
  3776. "_lineHeight": 100,
  3777. "_overflow": 1,
  3778. "_enableWrapText": true,
  3779. "_font": null,
  3780. "_isSystemFontUsed": true,
  3781. "_spacingX": 0,
  3782. "_isItalic": false,
  3783. "_isBold": true,
  3784. "_isUnderline": false,
  3785. "_underlineHeight": 2,
  3786. "_cacheMode": 0,
  3787. "_id": "a8y+G4xQpEz7aAHiOFYm5L"
  3788. },
  3789. {
  3790. "__type__": "cc.Node",
  3791. "_name": "resultIcon",
  3792. "_objFlags": 0,
  3793. "_parent": {
  3794. "__id__": 90
  3795. },
  3796. "_children": [],
  3797. "_active": true,
  3798. "_components": [
  3799. {
  3800. "__id__": 124
  3801. },
  3802. {
  3803. "__id__": 125
  3804. }
  3805. ],
  3806. "_prefab": null,
  3807. "_lpos": {
  3808. "__type__": "cc.Vec3",
  3809. "x": 0,
  3810. "y": 350.842,
  3811. "z": 0
  3812. },
  3813. "_lrot": {
  3814. "__type__": "cc.Quat",
  3815. "x": 0,
  3816. "y": 0,
  3817. "z": 0,
  3818. "w": 1
  3819. },
  3820. "_lscale": {
  3821. "__type__": "cc.Vec3",
  3822. "x": 1,
  3823. "y": 1,
  3824. "z": 1
  3825. },
  3826. "_mobility": 0,
  3827. "_layer": 33554432,
  3828. "_euler": {
  3829. "__type__": "cc.Vec3",
  3830. "x": 0,
  3831. "y": 0,
  3832. "z": 0
  3833. },
  3834. "_id": "3bMre/6AhI84Sm9BsZ6isN"
  3835. },
  3836. {
  3837. "__type__": "cc.UITransform",
  3838. "_name": "",
  3839. "_objFlags": 0,
  3840. "node": {
  3841. "__id__": 123
  3842. },
  3843. "_enabled": true,
  3844. "__prefab": null,
  3845. "_contentSize": {
  3846. "__type__": "cc.Size",
  3847. "width": 276,
  3848. "height": 276
  3849. },
  3850. "_anchorPoint": {
  3851. "__type__": "cc.Vec2",
  3852. "x": 0.5,
  3853. "y": 0.5
  3854. },
  3855. "_id": "48m3xY/NRLfYMgrO6vypef"
  3856. },
  3857. {
  3858. "__type__": "cc.Sprite",
  3859. "_name": "",
  3860. "_objFlags": 0,
  3861. "node": {
  3862. "__id__": 123
  3863. },
  3864. "_enabled": true,
  3865. "__prefab": null,
  3866. "_customMaterial": null,
  3867. "_srcBlendFactor": 2,
  3868. "_dstBlendFactor": 4,
  3869. "_color": {
  3870. "__type__": "cc.Color",
  3871. "r": 255,
  3872. "g": 255,
  3873. "b": 255,
  3874. "a": 255
  3875. },
  3876. "_spriteFrame": {
  3877. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  3878. "__expectedType__": "cc.SpriteFrame"
  3879. },
  3880. "_type": 0,
  3881. "_fillType": 0,
  3882. "_sizeMode": 1,
  3883. "_fillCenter": {
  3884. "__type__": "cc.Vec2",
  3885. "x": 0,
  3886. "y": 0
  3887. },
  3888. "_fillStart": 0,
  3889. "_fillRange": 0,
  3890. "_isTrimmedMode": true,
  3891. "_useGrayscale": false,
  3892. "_atlas": null,
  3893. "_id": "c99zq9dbVI9LheJj/7p9g9"
  3894. },
  3895. {
  3896. "__type__": "cc.UITransform",
  3897. "_name": "",
  3898. "_objFlags": 0,
  3899. "node": {
  3900. "__id__": 90
  3901. },
  3902. "_enabled": true,
  3903. "__prefab": null,
  3904. "_contentSize": {
  3905. "__type__": "cc.Size",
  3906. "width": 1311,
  3907. "height": 806
  3908. },
  3909. "_anchorPoint": {
  3910. "__type__": "cc.Vec2",
  3911. "x": 0.5,
  3912. "y": 0.5
  3913. },
  3914. "_id": "e2M9hKVbJOpLEfbwyRzof+"
  3915. },
  3916. {
  3917. "__type__": "cc.Sprite",
  3918. "_name": "",
  3919. "_objFlags": 0,
  3920. "node": {
  3921. "__id__": 90
  3922. },
  3923. "_enabled": false,
  3924. "__prefab": null,
  3925. "_customMaterial": null,
  3926. "_srcBlendFactor": 2,
  3927. "_dstBlendFactor": 4,
  3928. "_color": {
  3929. "__type__": "cc.Color",
  3930. "r": 255,
  3931. "g": 255,
  3932. "b": 255,
  3933. "a": 255
  3934. },
  3935. "_spriteFrame": {
  3936. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  3937. "__expectedType__": "cc.SpriteFrame"
  3938. },
  3939. "_type": 1,
  3940. "_fillType": 0,
  3941. "_sizeMode": 0,
  3942. "_fillCenter": {
  3943. "__type__": "cc.Vec2",
  3944. "x": 0,
  3945. "y": 0
  3946. },
  3947. "_fillStart": 0,
  3948. "_fillRange": 0,
  3949. "_isTrimmedMode": true,
  3950. "_useGrayscale": false,
  3951. "_atlas": null,
  3952. "_id": "ebtJxL2z5Ko5BssboLF8rv"
  3953. },
  3954. {
  3955. "__type__": "95501FTS+FP8aW52qXh/kCV",
  3956. "_name": "",
  3957. "_objFlags": 0,
  3958. "node": {
  3959. "__id__": 90
  3960. },
  3961. "_enabled": true,
  3962. "__prefab": null,
  3963. "successBg": {
  3964. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  3965. "__expectedType__": "cc.SpriteFrame"
  3966. },
  3967. "failBg": {
  3968. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  3969. "__expectedType__": "cc.SpriteFrame"
  3970. },
  3971. "curLevelLabel": {
  3972. "__id__": 100
  3973. },
  3974. "curScoreLabel": {
  3975. "__id__": 119
  3976. },
  3977. "totalScoreLabel": {
  3978. "__id__": 122
  3979. },
  3980. "btnLabel": {
  3981. "__id__": 112
  3982. },
  3983. "reusltIcon": {
  3984. "__id__": 123
  3985. },
  3986. "_id": "50PulxgL1JQqf0g2NOZtHI"
  3987. },
  3988. {
  3989. "__type__": "cc.BlockInputEvents",
  3990. "_name": "",
  3991. "_objFlags": 0,
  3992. "node": {
  3993. "__id__": 90
  3994. },
  3995. "_enabled": true,
  3996. "__prefab": null,
  3997. "_id": "5aS/Nz0NxM6q+Rzl7lrbJs"
  3998. },
  3999. {
  4000. "__type__": "cc.Node",
  4001. "_objFlags": 512,
  4002. "_parent": {
  4003. "__id__": 6
  4004. },
  4005. "_prefab": {
  4006. "__id__": 131
  4007. },
  4008. "__editorExtras__": {}
  4009. },
  4010. {
  4011. "__type__": "cc.PrefabInfo",
  4012. "root": {
  4013. "__id__": 130
  4014. },
  4015. "asset": {
  4016. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  4017. "__expectedType__": "cc.Prefab"
  4018. },
  4019. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  4020. "instance": {
  4021. "__id__": 132
  4022. },
  4023. "targetOverrides": null,
  4024. "nestedPrefabInstanceRoots": null
  4025. },
  4026. {
  4027. "__type__": "cc.PrefabInstance",
  4028. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  4029. "prefabRootNode": null,
  4030. "mountedChildren": [],
  4031. "mountedComponents": [
  4032. {
  4033. "__id__": 133
  4034. }
  4035. ],
  4036. "propertyOverrides": [
  4037. {
  4038. "__id__": 136
  4039. },
  4040. {
  4041. "__id__": 138
  4042. },
  4043. {
  4044. "__id__": 139
  4045. },
  4046. {
  4047. "__id__": 140
  4048. },
  4049. {
  4050. "__id__": 141
  4051. }
  4052. ],
  4053. "removedComponents": []
  4054. },
  4055. {
  4056. "__type__": "cc.MountedComponentsInfo",
  4057. "targetInfo": {
  4058. "__id__": 134
  4059. },
  4060. "components": [
  4061. {
  4062. "__id__": 135
  4063. }
  4064. ]
  4065. },
  4066. {
  4067. "__type__": "cc.TargetInfo",
  4068. "localID": [
  4069. "f5VirVdr1A/q1iUlQGtO+X"
  4070. ]
  4071. },
  4072. {
  4073. "__type__": "cc.BlockInputEvents",
  4074. "_name": "",
  4075. "_objFlags": 0,
  4076. "__editorExtras__": {
  4077. "mountedRoot": {
  4078. "__id__": 130
  4079. }
  4080. },
  4081. "node": {
  4082. "__id__": 130
  4083. },
  4084. "_enabled": true,
  4085. "__prefab": null,
  4086. "_id": "07r8anbvNG/6BWBGGtLhOU"
  4087. },
  4088. {
  4089. "__type__": "CCPropertyOverrideInfo",
  4090. "targetInfo": {
  4091. "__id__": 137
  4092. },
  4093. "propertyPath": [
  4094. "_name"
  4095. ],
  4096. "value": "PlayAEndTip"
  4097. },
  4098. {
  4099. "__type__": "cc.TargetInfo",
  4100. "localID": [
  4101. "f5VirVdr1A/q1iUlQGtO+X"
  4102. ]
  4103. },
  4104. {
  4105. "__type__": "CCPropertyOverrideInfo",
  4106. "targetInfo": {
  4107. "__id__": 137
  4108. },
  4109. "propertyPath": [
  4110. "_lpos"
  4111. ],
  4112. "value": {
  4113. "__type__": "cc.Vec3",
  4114. "x": 0,
  4115. "y": 0,
  4116. "z": 0
  4117. }
  4118. },
  4119. {
  4120. "__type__": "CCPropertyOverrideInfo",
  4121. "targetInfo": {
  4122. "__id__": 137
  4123. },
  4124. "propertyPath": [
  4125. "_lrot"
  4126. ],
  4127. "value": {
  4128. "__type__": "cc.Quat",
  4129. "x": 0,
  4130. "y": 0,
  4131. "z": 0,
  4132. "w": 1
  4133. }
  4134. },
  4135. {
  4136. "__type__": "CCPropertyOverrideInfo",
  4137. "targetInfo": {
  4138. "__id__": 137
  4139. },
  4140. "propertyPath": [
  4141. "_euler"
  4142. ],
  4143. "value": {
  4144. "__type__": "cc.Vec3",
  4145. "x": 0,
  4146. "y": 0,
  4147. "z": 0
  4148. }
  4149. },
  4150. {
  4151. "__type__": "CCPropertyOverrideInfo",
  4152. "targetInfo": {
  4153. "__id__": 137
  4154. },
  4155. "propertyPath": [
  4156. "_active"
  4157. ],
  4158. "value": false
  4159. },
  4160. {
  4161. "__type__": "cc.Node",
  4162. "_name": "Full",
  4163. "_objFlags": 0,
  4164. "_parent": {
  4165. "__id__": 6
  4166. },
  4167. "_children": [
  4168. {
  4169. "__id__": 143
  4170. },
  4171. {
  4172. "__id__": 152
  4173. },
  4174. {
  4175. "__id__": 161
  4176. }
  4177. ],
  4178. "_active": true,
  4179. "_components": [
  4180. {
  4181. "__id__": 170
  4182. }
  4183. ],
  4184. "_prefab": null,
  4185. "_lpos": {
  4186. "__type__": "cc.Vec3",
  4187. "x": 264.523,
  4188. "y": 0,
  4189. "z": 0
  4190. },
  4191. "_lrot": {
  4192. "__type__": "cc.Quat",
  4193. "x": 0,
  4194. "y": 0,
  4195. "z": 0,
  4196. "w": 1
  4197. },
  4198. "_lscale": {
  4199. "__type__": "cc.Vec3",
  4200. "x": 1,
  4201. "y": 1,
  4202. "z": 1
  4203. },
  4204. "_mobility": 0,
  4205. "_layer": 33554432,
  4206. "_euler": {
  4207. "__type__": "cc.Vec3",
  4208. "x": 0,
  4209. "y": 0,
  4210. "z": 0
  4211. },
  4212. "_id": "66bcmRoDVJr7mAO/zWrM6a"
  4213. },
  4214. {
  4215. "__type__": "cc.Node",
  4216. "_name": "GetScoreBg-001",
  4217. "_objFlags": 0,
  4218. "_parent": {
  4219. "__id__": 142
  4220. },
  4221. "_children": [
  4222. {
  4223. "__id__": 144
  4224. }
  4225. ],
  4226. "_active": true,
  4227. "_components": [
  4228. {
  4229. "__id__": 150
  4230. },
  4231. {
  4232. "__id__": 151
  4233. }
  4234. ],
  4235. "_prefab": null,
  4236. "_lpos": {
  4237. "__type__": "cc.Vec3",
  4238. "x": -626.6950295857988,
  4239. "y": 584.791,
  4240. "z": 0
  4241. },
  4242. "_lrot": {
  4243. "__type__": "cc.Quat",
  4244. "x": 0,
  4245. "y": 0,
  4246. "z": 0,
  4247. "w": 1
  4248. },
  4249. "_lscale": {
  4250. "__type__": "cc.Vec3",
  4251. "x": 1,
  4252. "y": 1,
  4253. "z": 1
  4254. },
  4255. "_mobility": 0,
  4256. "_layer": 33554432,
  4257. "_euler": {
  4258. "__type__": "cc.Vec3",
  4259. "x": 0,
  4260. "y": 0,
  4261. "z": 0
  4262. },
  4263. "_id": "7aBXCm+khLUqjKxwb+R/m7"
  4264. },
  4265. {
  4266. "__type__": "cc.Node",
  4267. "_name": "GetScore",
  4268. "_objFlags": 0,
  4269. "_parent": {
  4270. "__id__": 143
  4271. },
  4272. "_children": [
  4273. {
  4274. "__id__": 145
  4275. }
  4276. ],
  4277. "_active": true,
  4278. "_components": [
  4279. {
  4280. "__id__": 148
  4281. },
  4282. {
  4283. "__id__": 149
  4284. }
  4285. ],
  4286. "_prefab": null,
  4287. "_lpos": {
  4288. "__type__": "cc.Vec3",
  4289. "x": -100.368,
  4290. "y": 0.904,
  4291. "z": 0
  4292. },
  4293. "_lrot": {
  4294. "__type__": "cc.Quat",
  4295. "x": 0,
  4296. "y": 0,
  4297. "z": 0,
  4298. "w": 1
  4299. },
  4300. "_lscale": {
  4301. "__type__": "cc.Vec3",
  4302. "x": 1,
  4303. "y": 1,
  4304. "z": 1
  4305. },
  4306. "_mobility": 0,
  4307. "_layer": 33554432,
  4308. "_euler": {
  4309. "__type__": "cc.Vec3",
  4310. "x": 0,
  4311. "y": 0,
  4312. "z": 0
  4313. },
  4314. "_id": "2dlFpBou9N4qEx8zh/au+0"
  4315. },
  4316. {
  4317. "__type__": "cc.Node",
  4318. "_name": "Score",
  4319. "_objFlags": 0,
  4320. "_parent": {
  4321. "__id__": 144
  4322. },
  4323. "_children": [],
  4324. "_active": true,
  4325. "_components": [
  4326. {
  4327. "__id__": 146
  4328. },
  4329. {
  4330. "__id__": 147
  4331. }
  4332. ],
  4333. "_prefab": null,
  4334. "_lpos": {
  4335. "__type__": "cc.Vec3",
  4336. "x": 139.812,
  4337. "y": 0.043,
  4338. "z": 0
  4339. },
  4340. "_lrot": {
  4341. "__type__": "cc.Quat",
  4342. "x": 0,
  4343. "y": 0,
  4344. "z": 0,
  4345. "w": 1
  4346. },
  4347. "_lscale": {
  4348. "__type__": "cc.Vec3",
  4349. "x": 1,
  4350. "y": 1,
  4351. "z": 1
  4352. },
  4353. "_mobility": 0,
  4354. "_layer": 33554432,
  4355. "_euler": {
  4356. "__type__": "cc.Vec3",
  4357. "x": 0,
  4358. "y": 0,
  4359. "z": 0
  4360. },
  4361. "_id": "44dEVnyUdGJ4oVkWzLyKm0"
  4362. },
  4363. {
  4364. "__type__": "cc.UITransform",
  4365. "_name": "",
  4366. "_objFlags": 0,
  4367. "node": {
  4368. "__id__": 145
  4369. },
  4370. "_enabled": true,
  4371. "__prefab": null,
  4372. "_contentSize": {
  4373. "__type__": "cc.Size",
  4374. "width": 139.04,
  4375. "height": 50.4
  4376. },
  4377. "_anchorPoint": {
  4378. "__type__": "cc.Vec2",
  4379. "x": 0.5,
  4380. "y": 0.5
  4381. },
  4382. "_id": "aeatAHONRFdq/5YremdGg5"
  4383. },
  4384. {
  4385. "__type__": "cc.Label",
  4386. "_name": "",
  4387. "_objFlags": 0,
  4388. "node": {
  4389. "__id__": 145
  4390. },
  4391. "_enabled": true,
  4392. "__prefab": null,
  4393. "_customMaterial": null,
  4394. "_srcBlendFactor": 2,
  4395. "_dstBlendFactor": 4,
  4396. "_color": {
  4397. "__type__": "cc.Color",
  4398. "r": 255,
  4399. "g": 255,
  4400. "b": 255,
  4401. "a": 255
  4402. },
  4403. "_string": "0",
  4404. "_horizontalAlign": 0,
  4405. "_verticalAlign": 1,
  4406. "_actualFontSize": 50,
  4407. "_fontSize": 50,
  4408. "_fontFamily": "Arial",
  4409. "_lineHeight": 40,
  4410. "_overflow": 1,
  4411. "_enableWrapText": true,
  4412. "_font": null,
  4413. "_isSystemFontUsed": true,
  4414. "_spacingX": 0,
  4415. "_isItalic": false,
  4416. "_isBold": false,
  4417. "_isUnderline": false,
  4418. "_underlineHeight": 2,
  4419. "_cacheMode": 0,
  4420. "_id": "95xTzz/ptP9bi+VwziUVOX"
  4421. },
  4422. {
  4423. "__type__": "cc.UITransform",
  4424. "_name": "",
  4425. "_objFlags": 0,
  4426. "node": {
  4427. "__id__": 144
  4428. },
  4429. "_enabled": true,
  4430. "__prefab": null,
  4431. "_contentSize": {
  4432. "__type__": "cc.Size",
  4433. "width": 100,
  4434. "height": 88.2
  4435. },
  4436. "_anchorPoint": {
  4437. "__type__": "cc.Vec2",
  4438. "x": 0.5,
  4439. "y": 0.5
  4440. },
  4441. "_id": "c7XkN7nSxP7qcj/G58zTJq"
  4442. },
  4443. {
  4444. "__type__": "cc.Label",
  4445. "_name": "",
  4446. "_objFlags": 0,
  4447. "node": {
  4448. "__id__": 144
  4449. },
  4450. "_enabled": true,
  4451. "__prefab": null,
  4452. "_customMaterial": null,
  4453. "_srcBlendFactor": 2,
  4454. "_dstBlendFactor": 4,
  4455. "_color": {
  4456. "__type__": "cc.Color",
  4457. "r": 255,
  4458. "g": 255,
  4459. "b": 255,
  4460. "a": 255
  4461. },
  4462. "_string": "得分",
  4463. "_horizontalAlign": 1,
  4464. "_verticalAlign": 1,
  4465. "_actualFontSize": 50,
  4466. "_fontSize": 50,
  4467. "_fontFamily": "Arial",
  4468. "_lineHeight": 70,
  4469. "_overflow": 0,
  4470. "_enableWrapText": true,
  4471. "_font": null,
  4472. "_isSystemFontUsed": true,
  4473. "_spacingX": 0,
  4474. "_isItalic": false,
  4475. "_isBold": false,
  4476. "_isUnderline": false,
  4477. "_underlineHeight": 2,
  4478. "_cacheMode": 0,
  4479. "_id": "936102nIBEb6lfaFTWnF76"
  4480. },
  4481. {
  4482. "__type__": "cc.UITransform",
  4483. "_name": "",
  4484. "_objFlags": 0,
  4485. "node": {
  4486. "__id__": 143
  4487. },
  4488. "_enabled": true,
  4489. "__prefab": null,
  4490. "_contentSize": {
  4491. "__type__": "cc.Size",
  4492. "width": 339.88994082840236,
  4493. "height": 110
  4494. },
  4495. "_anchorPoint": {
  4496. "__type__": "cc.Vec2",
  4497. "x": 0.5,
  4498. "y": 0.5
  4499. },
  4500. "_id": "c1I0u8AgtKVYew7N+QBLGy"
  4501. },
  4502. {
  4503. "__type__": "cc.Sprite",
  4504. "_name": "",
  4505. "_objFlags": 0,
  4506. "node": {
  4507. "__id__": 143
  4508. },
  4509. "_enabled": true,
  4510. "__prefab": null,
  4511. "_customMaterial": null,
  4512. "_srcBlendFactor": 2,
  4513. "_dstBlendFactor": 4,
  4514. "_color": {
  4515. "__type__": "cc.Color",
  4516. "r": 255,
  4517. "g": 255,
  4518. "b": 255,
  4519. "a": 255
  4520. },
  4521. "_spriteFrame": {
  4522. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  4523. "__expectedType__": "cc.SpriteFrame"
  4524. },
  4525. "_type": 0,
  4526. "_fillType": 0,
  4527. "_sizeMode": 0,
  4528. "_fillCenter": {
  4529. "__type__": "cc.Vec2",
  4530. "x": 0,
  4531. "y": 0
  4532. },
  4533. "_fillStart": 0,
  4534. "_fillRange": 0,
  4535. "_isTrimmedMode": true,
  4536. "_useGrayscale": false,
  4537. "_atlas": null,
  4538. "_id": "103k0ntThJELcV3+IfPrvW"
  4539. },
  4540. {
  4541. "__type__": "cc.Node",
  4542. "_name": "TimeBg-001",
  4543. "_objFlags": 0,
  4544. "_parent": {
  4545. "__id__": 142
  4546. },
  4547. "_children": [
  4548. {
  4549. "__id__": 153
  4550. }
  4551. ],
  4552. "_active": true,
  4553. "_components": [
  4554. {
  4555. "__id__": 159
  4556. },
  4557. {
  4558. "__id__": 160
  4559. }
  4560. ],
  4561. "_prefab": null,
  4562. "_lpos": {
  4563. "__type__": "cc.Vec3",
  4564. "x": -245.961,
  4565. "y": 584.791,
  4566. "z": 0
  4567. },
  4568. "_lrot": {
  4569. "__type__": "cc.Quat",
  4570. "x": 0,
  4571. "y": 0,
  4572. "z": 0,
  4573. "w": 1
  4574. },
  4575. "_lscale": {
  4576. "__type__": "cc.Vec3",
  4577. "x": 1,
  4578. "y": 1,
  4579. "z": 1
  4580. },
  4581. "_mobility": 0,
  4582. "_layer": 33554432,
  4583. "_euler": {
  4584. "__type__": "cc.Vec3",
  4585. "x": 0,
  4586. "y": 0,
  4587. "z": 0
  4588. },
  4589. "_id": "72E4endaFA9ZzhffwONnhR"
  4590. },
  4591. {
  4592. "__type__": "cc.Node",
  4593. "_name": "GameTime",
  4594. "_objFlags": 0,
  4595. "_parent": {
  4596. "__id__": 152
  4597. },
  4598. "_children": [
  4599. {
  4600. "__id__": 154
  4601. }
  4602. ],
  4603. "_active": true,
  4604. "_components": [
  4605. {
  4606. "__id__": 157
  4607. },
  4608. {
  4609. "__id__": 158
  4610. }
  4611. ],
  4612. "_prefab": null,
  4613. "_lpos": {
  4614. "__type__": "cc.Vec3",
  4615. "x": 5.195,
  4616. "y": 60.444,
  4617. "z": 0
  4618. },
  4619. "_lrot": {
  4620. "__type__": "cc.Quat",
  4621. "x": 0,
  4622. "y": 0,
  4623. "z": 0,
  4624. "w": 1
  4625. },
  4626. "_lscale": {
  4627. "__type__": "cc.Vec3",
  4628. "x": 1,
  4629. "y": 1,
  4630. "z": 1
  4631. },
  4632. "_mobility": 0,
  4633. "_layer": 33554432,
  4634. "_euler": {
  4635. "__type__": "cc.Vec3",
  4636. "x": 0,
  4637. "y": 0,
  4638. "z": 0
  4639. },
  4640. "_id": "e6x0Gc+TlDGIZXI33TEJb6"
  4641. },
  4642. {
  4643. "__type__": "cc.Node",
  4644. "_name": "TimeLabel",
  4645. "_objFlags": 0,
  4646. "_parent": {
  4647. "__id__": 153
  4648. },
  4649. "_children": [],
  4650. "_active": true,
  4651. "_components": [
  4652. {
  4653. "__id__": 155
  4654. },
  4655. {
  4656. "__id__": 156
  4657. }
  4658. ],
  4659. "_prefab": null,
  4660. "_lpos": {
  4661. "__type__": "cc.Vec3",
  4662. "x": 1.505,
  4663. "y": -57.186,
  4664. "z": 0
  4665. },
  4666. "_lrot": {
  4667. "__type__": "cc.Quat",
  4668. "x": 0,
  4669. "y": 0,
  4670. "z": 0,
  4671. "w": 1
  4672. },
  4673. "_lscale": {
  4674. "__type__": "cc.Vec3",
  4675. "x": 1,
  4676. "y": 1,
  4677. "z": 1
  4678. },
  4679. "_mobility": 0,
  4680. "_layer": 33554432,
  4681. "_euler": {
  4682. "__type__": "cc.Vec3",
  4683. "x": 0,
  4684. "y": 0,
  4685. "z": 0
  4686. },
  4687. "_id": "62RcJSw15H6JpsHUHKtNaH"
  4688. },
  4689. {
  4690. "__type__": "cc.UITransform",
  4691. "_name": "",
  4692. "_objFlags": 0,
  4693. "node": {
  4694. "__id__": 154
  4695. },
  4696. "_enabled": true,
  4697. "__prefab": null,
  4698. "_contentSize": {
  4699. "__type__": "cc.Size",
  4700. "width": 170,
  4701. "height": 50.4
  4702. },
  4703. "_anchorPoint": {
  4704. "__type__": "cc.Vec2",
  4705. "x": 0.5,
  4706. "y": 0.5
  4707. },
  4708. "_id": "7cZarCy31EtKl7ASpygJEo"
  4709. },
  4710. {
  4711. "__type__": "cc.Label",
  4712. "_name": "",
  4713. "_objFlags": 0,
  4714. "node": {
  4715. "__id__": 154
  4716. },
  4717. "_enabled": true,
  4718. "__prefab": null,
  4719. "_customMaterial": null,
  4720. "_srcBlendFactor": 2,
  4721. "_dstBlendFactor": 4,
  4722. "_color": {
  4723. "__type__": "cc.Color",
  4724. "r": 255,
  4725. "g": 255,
  4726. "b": 255,
  4727. "a": 255
  4728. },
  4729. "_string": "2:00",
  4730. "_horizontalAlign": 1,
  4731. "_verticalAlign": 1,
  4732. "_actualFontSize": 55,
  4733. "_fontSize": 55,
  4734. "_fontFamily": "Arial",
  4735. "_lineHeight": 60,
  4736. "_overflow": 1,
  4737. "_enableWrapText": true,
  4738. "_font": null,
  4739. "_isSystemFontUsed": true,
  4740. "_spacingX": 0,
  4741. "_isItalic": false,
  4742. "_isBold": false,
  4743. "_isUnderline": false,
  4744. "_underlineHeight": 2,
  4745. "_cacheMode": 0,
  4746. "_id": "dcVz2Ao/lCG60RTah3WKwS"
  4747. },
  4748. {
  4749. "__type__": "cc.UITransform",
  4750. "_name": "",
  4751. "_objFlags": 0,
  4752. "node": {
  4753. "__id__": 153
  4754. },
  4755. "_enabled": true,
  4756. "__prefab": null,
  4757. "_contentSize": {
  4758. "__type__": "cc.Size",
  4759. "width": 170,
  4760. "height": 50.4
  4761. },
  4762. "_anchorPoint": {
  4763. "__type__": "cc.Vec2",
  4764. "x": 0.5,
  4765. "y": 0.5
  4766. },
  4767. "_id": "d3XSdYtyBCjr130tilMp31"
  4768. },
  4769. {
  4770. "__type__": "cc.Label",
  4771. "_name": "",
  4772. "_objFlags": 0,
  4773. "node": {
  4774. "__id__": 153
  4775. },
  4776. "_enabled": false,
  4777. "__prefab": null,
  4778. "_customMaterial": null,
  4779. "_srcBlendFactor": 2,
  4780. "_dstBlendFactor": 4,
  4781. "_color": {
  4782. "__type__": "cc.Color",
  4783. "r": 169,
  4784. "g": 74,
  4785. "b": 9,
  4786. "a": 255
  4787. },
  4788. "_string": "时间",
  4789. "_horizontalAlign": 1,
  4790. "_verticalAlign": 1,
  4791. "_actualFontSize": 50,
  4792. "_fontSize": 50,
  4793. "_fontFamily": "Arial",
  4794. "_lineHeight": 60,
  4795. "_overflow": 1,
  4796. "_enableWrapText": true,
  4797. "_font": null,
  4798. "_isSystemFontUsed": true,
  4799. "_spacingX": 0,
  4800. "_isItalic": false,
  4801. "_isBold": true,
  4802. "_isUnderline": false,
  4803. "_underlineHeight": 2,
  4804. "_cacheMode": 0,
  4805. "_id": "f2akcURRFEcq0N0Nl8yDJr"
  4806. },
  4807. {
  4808. "__type__": "cc.UITransform",
  4809. "_name": "",
  4810. "_objFlags": 0,
  4811. "node": {
  4812. "__id__": 152
  4813. },
  4814. "_enabled": true,
  4815. "__prefab": null,
  4816. "_contentSize": {
  4817. "__type__": "cc.Size",
  4818. "width": 271.13372781065095,
  4819. "height": 110
  4820. },
  4821. "_anchorPoint": {
  4822. "__type__": "cc.Vec2",
  4823. "x": 0.5,
  4824. "y": 0.5
  4825. },
  4826. "_id": "c3lf7M7k9KmZ+nSNUWgAWg"
  4827. },
  4828. {
  4829. "__type__": "cc.Sprite",
  4830. "_name": "",
  4831. "_objFlags": 0,
  4832. "node": {
  4833. "__id__": 152
  4834. },
  4835. "_enabled": true,
  4836. "__prefab": null,
  4837. "_customMaterial": null,
  4838. "_srcBlendFactor": 2,
  4839. "_dstBlendFactor": 4,
  4840. "_color": {
  4841. "__type__": "cc.Color",
  4842. "r": 255,
  4843. "g": 255,
  4844. "b": 255,
  4845. "a": 255
  4846. },
  4847. "_spriteFrame": {
  4848. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  4849. "__expectedType__": "cc.SpriteFrame"
  4850. },
  4851. "_type": 0,
  4852. "_fillType": 0,
  4853. "_sizeMode": 0,
  4854. "_fillCenter": {
  4855. "__type__": "cc.Vec2",
  4856. "x": 0,
  4857. "y": 0
  4858. },
  4859. "_fillStart": 0,
  4860. "_fillRange": 0,
  4861. "_isTrimmedMode": true,
  4862. "_useGrayscale": false,
  4863. "_atlas": null,
  4864. "_id": "00So5QoPJNbqg38R3GIz53"
  4865. },
  4866. {
  4867. "__type__": "cc.Node",
  4868. "_name": "LevelBg-001",
  4869. "_objFlags": 0,
  4870. "_parent": {
  4871. "__id__": 142
  4872. },
  4873. "_children": [
  4874. {
  4875. "__id__": 162
  4876. }
  4877. ],
  4878. "_active": true,
  4879. "_components": [
  4880. {
  4881. "__id__": 168
  4882. },
  4883. {
  4884. "__id__": 169
  4885. }
  4886. ],
  4887. "_prefab": null,
  4888. "_lpos": {
  4889. "__type__": "cc.Vec3",
  4890. "x": 103.843,
  4891. "y": 584.691,
  4892. "z": 0
  4893. },
  4894. "_lrot": {
  4895. "__type__": "cc.Quat",
  4896. "x": 0,
  4897. "y": 0,
  4898. "z": 0,
  4899. "w": 1
  4900. },
  4901. "_lscale": {
  4902. "__type__": "cc.Vec3",
  4903. "x": 1,
  4904. "y": 1,
  4905. "z": 1
  4906. },
  4907. "_mobility": 0,
  4908. "_layer": 33554432,
  4909. "_euler": {
  4910. "__type__": "cc.Vec3",
  4911. "x": 0,
  4912. "y": 0,
  4913. "z": 0
  4914. },
  4915. "_id": "76NmQjlTVIjYB7iIXcw271"
  4916. },
  4917. {
  4918. "__type__": "cc.Node",
  4919. "_name": "level",
  4920. "_objFlags": 0,
  4921. "_parent": {
  4922. "__id__": 161
  4923. },
  4924. "_children": [
  4925. {
  4926. "__id__": 163
  4927. }
  4928. ],
  4929. "_active": true,
  4930. "_components": [
  4931. {
  4932. "__id__": 166
  4933. },
  4934. {
  4935. "__id__": 167
  4936. }
  4937. ],
  4938. "_prefab": null,
  4939. "_lpos": {
  4940. "__type__": "cc.Vec3",
  4941. "x": -31.36299999999983,
  4942. "y": -2.5679999999999836,
  4943. "z": 0
  4944. },
  4945. "_lrot": {
  4946. "__type__": "cc.Quat",
  4947. "x": 0,
  4948. "y": 0,
  4949. "z": 0,
  4950. "w": 1
  4951. },
  4952. "_lscale": {
  4953. "__type__": "cc.Vec3",
  4954. "x": 1,
  4955. "y": 1,
  4956. "z": 1
  4957. },
  4958. "_mobility": 0,
  4959. "_layer": 33554432,
  4960. "_euler": {
  4961. "__type__": "cc.Vec3",
  4962. "x": 0,
  4963. "y": 0,
  4964. "z": 0
  4965. },
  4966. "_id": "eaH/7VoTNMX6EQSZY5GHiA"
  4967. },
  4968. {
  4969. "__type__": "cc.Node",
  4970. "_name": "levlLabel",
  4971. "_objFlags": 0,
  4972. "_parent": {
  4973. "__id__": 162
  4974. },
  4975. "_children": [],
  4976. "_active": true,
  4977. "_components": [
  4978. {
  4979. "__id__": 164
  4980. },
  4981. {
  4982. "__id__": 165
  4983. }
  4984. ],
  4985. "_prefab": null,
  4986. "_lpos": {
  4987. "__type__": "cc.Vec3",
  4988. "x": 29.897499999999997,
  4989. "y": 0,
  4990. "z": 0
  4991. },
  4992. "_lrot": {
  4993. "__type__": "cc.Quat",
  4994. "x": 0,
  4995. "y": 0,
  4996. "z": 0,
  4997. "w": 1
  4998. },
  4999. "_lscale": {
  5000. "__type__": "cc.Vec3",
  5001. "x": 1,
  5002. "y": 1,
  5003. "z": 1
  5004. },
  5005. "_mobility": 0,
  5006. "_layer": 33554432,
  5007. "_euler": {
  5008. "__type__": "cc.Vec3",
  5009. "x": 0,
  5010. "y": 0,
  5011. "z": 0
  5012. },
  5013. "_id": "b7kyQaqnFPtoUwJ/CfFPdI"
  5014. },
  5015. {
  5016. "__type__": "cc.UITransform",
  5017. "_name": "",
  5018. "_objFlags": 0,
  5019. "node": {
  5020. "__id__": 163
  5021. },
  5022. "_enabled": true,
  5023. "__prefab": null,
  5024. "_contentSize": {
  5025. "__type__": "cc.Size",
  5026. "width": 264.409,
  5027. "height": 50.4
  5028. },
  5029. "_anchorPoint": {
  5030. "__type__": "cc.Vec2",
  5031. "x": 0.5,
  5032. "y": 0.5
  5033. },
  5034. "_id": "0aujCo8/pPgZo35FlpMbkz"
  5035. },
  5036. {
  5037. "__type__": "cc.Label",
  5038. "_name": "",
  5039. "_objFlags": 0,
  5040. "node": {
  5041. "__id__": 163
  5042. },
  5043. "_enabled": true,
  5044. "__prefab": null,
  5045. "_customMaterial": null,
  5046. "_srcBlendFactor": 2,
  5047. "_dstBlendFactor": 4,
  5048. "_color": {
  5049. "__type__": "cc.Color",
  5050. "r": 255,
  5051. "g": 255,
  5052. "b": 255,
  5053. "a": 255
  5054. },
  5055. "_string": "第1关",
  5056. "_horizontalAlign": 1,
  5057. "_verticalAlign": 1,
  5058. "_actualFontSize": 55,
  5059. "_fontSize": 55,
  5060. "_fontFamily": "Arial",
  5061. "_lineHeight": 60,
  5062. "_overflow": 1,
  5063. "_enableWrapText": true,
  5064. "_font": null,
  5065. "_isSystemFontUsed": true,
  5066. "_spacingX": 0,
  5067. "_isItalic": false,
  5068. "_isBold": false,
  5069. "_isUnderline": false,
  5070. "_underlineHeight": 2,
  5071. "_cacheMode": 0,
  5072. "_id": "f2HCMp0+VB9bgTrUQGTaQN"
  5073. },
  5074. {
  5075. "__type__": "cc.UITransform",
  5076. "_name": "",
  5077. "_objFlags": 0,
  5078. "node": {
  5079. "__id__": 162
  5080. },
  5081. "_enabled": true,
  5082. "__prefab": null,
  5083. "_contentSize": {
  5084. "__type__": "cc.Size",
  5085. "width": 170,
  5086. "height": 50.4
  5087. },
  5088. "_anchorPoint": {
  5089. "__type__": "cc.Vec2",
  5090. "x": 0.5,
  5091. "y": 0.5
  5092. },
  5093. "_id": "749njg1oZE7KXTB5Awl4KI"
  5094. },
  5095. {
  5096. "__type__": "cc.Label",
  5097. "_name": "",
  5098. "_objFlags": 0,
  5099. "node": {
  5100. "__id__": 162
  5101. },
  5102. "_enabled": true,
  5103. "__prefab": null,
  5104. "_customMaterial": null,
  5105. "_srcBlendFactor": 2,
  5106. "_dstBlendFactor": 4,
  5107. "_color": {
  5108. "__type__": "cc.Color",
  5109. "r": 169,
  5110. "g": 74,
  5111. "b": 9,
  5112. "a": 255
  5113. },
  5114. "_string": "",
  5115. "_horizontalAlign": 1,
  5116. "_verticalAlign": 1,
  5117. "_actualFontSize": 50,
  5118. "_fontSize": 50,
  5119. "_fontFamily": "Arial",
  5120. "_lineHeight": 60,
  5121. "_overflow": 1,
  5122. "_enableWrapText": true,
  5123. "_font": null,
  5124. "_isSystemFontUsed": true,
  5125. "_spacingX": 0,
  5126. "_isItalic": false,
  5127. "_isBold": false,
  5128. "_isUnderline": false,
  5129. "_underlineHeight": 2,
  5130. "_cacheMode": 0,
  5131. "_id": "a7O87PTw9LOrHXoGKYQXEs"
  5132. },
  5133. {
  5134. "__type__": "cc.UITransform",
  5135. "_name": "",
  5136. "_objFlags": 0,
  5137. "node": {
  5138. "__id__": 161
  5139. },
  5140. "_enabled": true,
  5141. "__prefab": null,
  5142. "_contentSize": {
  5143. "__type__": "cc.Size",
  5144. "width": 308.7455621301775,
  5145. "height": 110
  5146. },
  5147. "_anchorPoint": {
  5148. "__type__": "cc.Vec2",
  5149. "x": 0.5,
  5150. "y": 0.5
  5151. },
  5152. "_id": "59hMJgSaJCu6QjN2y6Wkiu"
  5153. },
  5154. {
  5155. "__type__": "cc.Sprite",
  5156. "_name": "",
  5157. "_objFlags": 0,
  5158. "node": {
  5159. "__id__": 161
  5160. },
  5161. "_enabled": true,
  5162. "__prefab": null,
  5163. "_customMaterial": null,
  5164. "_srcBlendFactor": 2,
  5165. "_dstBlendFactor": 4,
  5166. "_color": {
  5167. "__type__": "cc.Color",
  5168. "r": 255,
  5169. "g": 255,
  5170. "b": 255,
  5171. "a": 255
  5172. },
  5173. "_spriteFrame": {
  5174. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  5175. "__expectedType__": "cc.SpriteFrame"
  5176. },
  5177. "_type": 0,
  5178. "_fillType": 0,
  5179. "_sizeMode": 0,
  5180. "_fillCenter": {
  5181. "__type__": "cc.Vec2",
  5182. "x": 0,
  5183. "y": 0
  5184. },
  5185. "_fillStart": 0,
  5186. "_fillRange": 0,
  5187. "_isTrimmedMode": true,
  5188. "_useGrayscale": false,
  5189. "_atlas": null,
  5190. "_id": "86rVTpbNlC77rQsFx4OBJl"
  5191. },
  5192. {
  5193. "__type__": "cc.UITransform",
  5194. "_name": "",
  5195. "_objFlags": 0,
  5196. "node": {
  5197. "__id__": 142
  5198. },
  5199. "_enabled": true,
  5200. "__prefab": null,
  5201. "_contentSize": {
  5202. "__type__": "cc.Size",
  5203. "width": 100,
  5204. "height": 100
  5205. },
  5206. "_anchorPoint": {
  5207. "__type__": "cc.Vec2",
  5208. "x": 0.5,
  5209. "y": 0.5
  5210. },
  5211. "_id": "83x9pd7hlLH7vvDTBc5FsC"
  5212. },
  5213. {
  5214. "__type__": "cc.UITransform",
  5215. "_name": "",
  5216. "_objFlags": 0,
  5217. "node": {
  5218. "__id__": 6
  5219. },
  5220. "_enabled": true,
  5221. "__prefab": null,
  5222. "_contentSize": {
  5223. "__type__": "cc.Size",
  5224. "width": 2000,
  5225. "height": 1397
  5226. },
  5227. "_anchorPoint": {
  5228. "__type__": "cc.Vec2",
  5229. "x": 0.5,
  5230. "y": 0.5
  5231. },
  5232. "_id": "6991+O4+ZKkruBhDfLTiNc"
  5233. },
  5234. {
  5235. "__type__": "cc.Sprite",
  5236. "_name": "",
  5237. "_objFlags": 0,
  5238. "node": {
  5239. "__id__": 6
  5240. },
  5241. "_enabled": false,
  5242. "__prefab": null,
  5243. "_customMaterial": null,
  5244. "_srcBlendFactor": 2,
  5245. "_dstBlendFactor": 4,
  5246. "_color": {
  5247. "__type__": "cc.Color",
  5248. "r": 255,
  5249. "g": 255,
  5250. "b": 255,
  5251. "a": 255
  5252. },
  5253. "_spriteFrame": {
  5254. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  5255. "__expectedType__": "cc.SpriteFrame"
  5256. },
  5257. "_type": 0,
  5258. "_fillType": 0,
  5259. "_sizeMode": 0,
  5260. "_fillCenter": {
  5261. "__type__": "cc.Vec2",
  5262. "x": 0,
  5263. "y": 0
  5264. },
  5265. "_fillStart": 0,
  5266. "_fillRange": 0,
  5267. "_isTrimmedMode": true,
  5268. "_useGrayscale": false,
  5269. "_atlas": null,
  5270. "_id": "2dSpfW0JpErJgEIBvDB/oC"
  5271. },
  5272. {
  5273. "__type__": "cc.Node",
  5274. "_name": "AudioManager",
  5275. "_objFlags": 0,
  5276. "_parent": {
  5277. "__id__": 2
  5278. },
  5279. "_children": [],
  5280. "_active": true,
  5281. "_components": [
  5282. {
  5283. "__id__": 174
  5284. },
  5285. {
  5286. "__id__": 175
  5287. }
  5288. ],
  5289. "_prefab": null,
  5290. "_lpos": {
  5291. "__type__": "cc.Vec3",
  5292. "x": 0,
  5293. "y": 0,
  5294. "z": 0
  5295. },
  5296. "_lrot": {
  5297. "__type__": "cc.Quat",
  5298. "x": 0,
  5299. "y": 0,
  5300. "z": 0,
  5301. "w": 1
  5302. },
  5303. "_lscale": {
  5304. "__type__": "cc.Vec3",
  5305. "x": 1,
  5306. "y": 1,
  5307. "z": 1
  5308. },
  5309. "_mobility": 0,
  5310. "_layer": 1073741824,
  5311. "_euler": {
  5312. "__type__": "cc.Vec3",
  5313. "x": 0,
  5314. "y": 0,
  5315. "z": 0
  5316. },
  5317. "_id": "60FjbG8qtFfZ539qEMd+1/"
  5318. },
  5319. {
  5320. "__type__": "cc.AudioSource",
  5321. "_name": "",
  5322. "_objFlags": 0,
  5323. "node": {
  5324. "__id__": 173
  5325. },
  5326. "_enabled": true,
  5327. "__prefab": null,
  5328. "_clip": {
  5329. "__uuid__": "fa328517-f2b2-4385-ac73-177c99ed964c",
  5330. "__expectedType__": "cc.AudioClip"
  5331. },
  5332. "_loop": true,
  5333. "_playOnAwake": false,
  5334. "_volume": 1,
  5335. "_id": "eeGhp23mxGxpqwDPT1CJun"
  5336. },
  5337. {
  5338. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  5339. "_name": "",
  5340. "_objFlags": 0,
  5341. "node": {
  5342. "__id__": 173
  5343. },
  5344. "_enabled": true,
  5345. "__prefab": null,
  5346. "_id": "49WPaAsadKsKoMmKQLQhN1"
  5347. },
  5348. {
  5349. "__type__": "cc.Node",
  5350. "_name": "LevelManager",
  5351. "_objFlags": 0,
  5352. "_parent": {
  5353. "__id__": 2
  5354. },
  5355. "_children": [],
  5356. "_active": true,
  5357. "_components": [
  5358. {
  5359. "__id__": 177
  5360. }
  5361. ],
  5362. "_prefab": null,
  5363. "_lpos": {
  5364. "__type__": "cc.Vec3",
  5365. "x": 0,
  5366. "y": 0,
  5367. "z": 0
  5368. },
  5369. "_lrot": {
  5370. "__type__": "cc.Quat",
  5371. "x": 0,
  5372. "y": 0,
  5373. "z": 0,
  5374. "w": 1
  5375. },
  5376. "_lscale": {
  5377. "__type__": "cc.Vec3",
  5378. "x": 1,
  5379. "y": 1,
  5380. "z": 1
  5381. },
  5382. "_mobility": 0,
  5383. "_layer": 1073741824,
  5384. "_euler": {
  5385. "__type__": "cc.Vec3",
  5386. "x": 0,
  5387. "y": 0,
  5388. "z": 0
  5389. },
  5390. "_id": "ae7Hx27zVByrbunwO5wAeH"
  5391. },
  5392. {
  5393. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  5394. "_name": "",
  5395. "_objFlags": 0,
  5396. "node": {
  5397. "__id__": 176
  5398. },
  5399. "_enabled": true,
  5400. "__prefab": null,
  5401. "levelDataJson": {
  5402. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  5403. "__expectedType__": "cc.JsonAsset"
  5404. },
  5405. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  5406. },
  5407. {
  5408. "__type__": "cc.PrefabInfo",
  5409. "root": null,
  5410. "asset": null,
  5411. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  5412. "instance": null,
  5413. "targetOverrides": null,
  5414. "nestedPrefabInstanceRoots": [
  5415. {
  5416. "__id__": 57
  5417. },
  5418. {
  5419. "__id__": 66
  5420. },
  5421. {
  5422. "__id__": 130
  5423. }
  5424. ]
  5425. },
  5426. {
  5427. "__type__": "cc.SceneGlobals",
  5428. "ambient": {
  5429. "__id__": 180
  5430. },
  5431. "shadows": {
  5432. "__id__": 181
  5433. },
  5434. "_skybox": {
  5435. "__id__": 182
  5436. },
  5437. "fog": {
  5438. "__id__": 183
  5439. },
  5440. "octree": {
  5441. "__id__": 184
  5442. },
  5443. "lightProbeInfo": {
  5444. "__id__": 185
  5445. },
  5446. "bakedWithStationaryMainLight": false,
  5447. "bakedWithHighpLightmap": false
  5448. },
  5449. {
  5450. "__type__": "cc.AmbientInfo",
  5451. "_skyColorHDR": {
  5452. "__type__": "cc.Vec4",
  5453. "x": 0,
  5454. "y": 0,
  5455. "z": 0,
  5456. "w": 0.520833125
  5457. },
  5458. "_skyColor": {
  5459. "__type__": "cc.Vec4",
  5460. "x": 0,
  5461. "y": 0,
  5462. "z": 0,
  5463. "w": 0.520833125
  5464. },
  5465. "_skyIllumHDR": 20000,
  5466. "_skyIllum": 20000,
  5467. "_groundAlbedoHDR": {
  5468. "__type__": "cc.Vec4",
  5469. "x": 0,
  5470. "y": 0,
  5471. "z": 0,
  5472. "w": 0
  5473. },
  5474. "_groundAlbedo": {
  5475. "__type__": "cc.Vec4",
  5476. "x": 0,
  5477. "y": 0,
  5478. "z": 0,
  5479. "w": 0
  5480. },
  5481. "_skyColorLDR": {
  5482. "__type__": "cc.Vec4",
  5483. "x": 0.2,
  5484. "y": 0.5,
  5485. "z": 0.8,
  5486. "w": 1
  5487. },
  5488. "_skyIllumLDR": 20000,
  5489. "_groundAlbedoLDR": {
  5490. "__type__": "cc.Vec4",
  5491. "x": 0.2,
  5492. "y": 0.2,
  5493. "z": 0.2,
  5494. "w": 1
  5495. }
  5496. },
  5497. {
  5498. "__type__": "cc.ShadowsInfo",
  5499. "_enabled": false,
  5500. "_type": 0,
  5501. "_normal": {
  5502. "__type__": "cc.Vec3",
  5503. "x": 0,
  5504. "y": 1,
  5505. "z": 0
  5506. },
  5507. "_distance": 0,
  5508. "_shadowColor": {
  5509. "__type__": "cc.Color",
  5510. "r": 76,
  5511. "g": 76,
  5512. "b": 76,
  5513. "a": 255
  5514. },
  5515. "_maxReceived": 4,
  5516. "_size": {
  5517. "__type__": "cc.Vec2",
  5518. "x": 512,
  5519. "y": 512
  5520. }
  5521. },
  5522. {
  5523. "__type__": "cc.SkyboxInfo",
  5524. "_envLightingType": 0,
  5525. "_envmapHDR": null,
  5526. "_envmap": null,
  5527. "_envmapLDR": null,
  5528. "_diffuseMapHDR": null,
  5529. "_diffuseMapLDR": null,
  5530. "_enabled": false,
  5531. "_useHDR": true,
  5532. "_editableMaterial": null,
  5533. "_reflectionHDR": null,
  5534. "_reflectionLDR": null,
  5535. "_rotationAngle": 0
  5536. },
  5537. {
  5538. "__type__": "cc.FogInfo",
  5539. "_type": 0,
  5540. "_fogColor": {
  5541. "__type__": "cc.Color",
  5542. "r": 200,
  5543. "g": 200,
  5544. "b": 200,
  5545. "a": 255
  5546. },
  5547. "_enabled": false,
  5548. "_fogDensity": 0.3,
  5549. "_fogStart": 0.5,
  5550. "_fogEnd": 300,
  5551. "_fogAtten": 5,
  5552. "_fogTop": 1.5,
  5553. "_fogRange": 1.2,
  5554. "_accurate": false
  5555. },
  5556. {
  5557. "__type__": "cc.OctreeInfo",
  5558. "_enabled": false,
  5559. "_minPos": {
  5560. "__type__": "cc.Vec3",
  5561. "x": -1024,
  5562. "y": -1024,
  5563. "z": -1024
  5564. },
  5565. "_maxPos": {
  5566. "__type__": "cc.Vec3",
  5567. "x": 1024,
  5568. "y": 1024,
  5569. "z": 1024
  5570. },
  5571. "_depth": 8
  5572. },
  5573. {
  5574. "__type__": "cc.LightProbeInfo",
  5575. "_giScale": 1,
  5576. "_giSamples": 1024,
  5577. "_bounces": 2,
  5578. "_reduceRinging": 0,
  5579. "_showProbe": true,
  5580. "_showWireframe": true,
  5581. "_showConvex": false,
  5582. "_data": null
  5583. }
  5584. ]