game.scene 139 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843
  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__": 224
  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__": 225
  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__": 219
  75. },
  76. {
  77. "__id__": 222
  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__": 188
  182. },
  183. "scoreLabel2": {
  184. "__id__": 193
  185. },
  186. "timeLabel2": {
  187. "__id__": 202
  188. },
  189. "levelLabel2": {
  190. "__id__": 211
  191. },
  192. "gameEndTip": {
  193. "__id__": 135
  194. },
  195. "GameMain": {
  196. "__id__": 129
  197. },
  198. "_id": "fbtCxOF7VN55/hPoAEeLg6"
  199. },
  200. {
  201. "__type__": "cc.Node",
  202. "_name": "GameMainPanel",
  203. "_objFlags": 0,
  204. "__editorExtras__": {},
  205. "_parent": {
  206. "__id__": 7
  207. },
  208. "_children": [
  209. {
  210. "__id__": 14
  211. },
  212. {
  213. "__id__": 135
  214. },
  215. {
  216. "__id__": 175
  217. },
  218. {
  219. "__id__": 188
  220. }
  221. ],
  222. "_active": true,
  223. "_components": [
  224. {
  225. "__id__": 217
  226. },
  227. {
  228. "__id__": 218
  229. },
  230. {
  231. "__id__": 5
  232. }
  233. ],
  234. "_prefab": null,
  235. "_lpos": {
  236. "__type__": "cc.Vec3",
  237. "x": 0,
  238. "y": 0,
  239. "z": 0
  240. },
  241. "_lrot": {
  242. "__type__": "cc.Quat",
  243. "x": 0,
  244. "y": 0,
  245. "z": 0,
  246. "w": 1
  247. },
  248. "_lscale": {
  249. "__type__": "cc.Vec3",
  250. "x": 1,
  251. "y": 1,
  252. "z": 1
  253. },
  254. "_mobility": 0,
  255. "_layer": 33554432,
  256. "_euler": {
  257. "__type__": "cc.Vec3",
  258. "x": 0,
  259. "y": 0,
  260. "z": 0
  261. },
  262. "_id": "70rM6lEsNFPLn9wNcUqfLP"
  263. },
  264. {
  265. "__type__": "cc.Node",
  266. "_name": "Canvas",
  267. "_objFlags": 0,
  268. "_parent": {
  269. "__id__": 1
  270. },
  271. "_children": [
  272. {
  273. "__id__": 8
  274. },
  275. {
  276. "__id__": 6
  277. }
  278. ],
  279. "_active": true,
  280. "_components": [
  281. {
  282. "__id__": 10
  283. },
  284. {
  285. "__id__": 11
  286. },
  287. {
  288. "__id__": 12
  289. },
  290. {
  291. "__id__": 13
  292. }
  293. ],
  294. "_prefab": null,
  295. "_lpos": {
  296. "__type__": "cc.Vec3",
  297. "x": 1194,
  298. "y": 834,
  299. "z": 0
  300. },
  301. "_lrot": {
  302. "__type__": "cc.Quat",
  303. "x": 0,
  304. "y": 0,
  305. "z": 0,
  306. "w": 1
  307. },
  308. "_lscale": {
  309. "__type__": "cc.Vec3",
  310. "x": 1,
  311. "y": 1,
  312. "z": 1
  313. },
  314. "_mobility": 0,
  315. "_layer": 33554432,
  316. "_euler": {
  317. "__type__": "cc.Vec3",
  318. "x": 0,
  319. "y": 0,
  320. "z": 0
  321. },
  322. "_id": "beI88Z2HpFELqR4T5EMHpg"
  323. },
  324. {
  325. "__type__": "cc.Node",
  326. "_name": "Camera",
  327. "_objFlags": 0,
  328. "_parent": {
  329. "__id__": 7
  330. },
  331. "_children": [],
  332. "_active": true,
  333. "_components": [
  334. {
  335. "__id__": 9
  336. }
  337. ],
  338. "_prefab": null,
  339. "_lpos": {
  340. "__type__": "cc.Vec3",
  341. "x": 0,
  342. "y": 0,
  343. "z": 1000
  344. },
  345. "_lrot": {
  346. "__type__": "cc.Quat",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0,
  350. "w": 1
  351. },
  352. "_lscale": {
  353. "__type__": "cc.Vec3",
  354. "x": 1,
  355. "y": 1,
  356. "z": 1
  357. },
  358. "_mobility": 0,
  359. "_layer": 1073741824,
  360. "_euler": {
  361. "__type__": "cc.Vec3",
  362. "x": 0,
  363. "y": 0,
  364. "z": 0
  365. },
  366. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  367. },
  368. {
  369. "__type__": "cc.Camera",
  370. "_name": "",
  371. "_objFlags": 0,
  372. "node": {
  373. "__id__": 8
  374. },
  375. "_enabled": true,
  376. "__prefab": null,
  377. "_projection": 0,
  378. "_priority": 1073741824,
  379. "_fov": 45,
  380. "_fovAxis": 0,
  381. "_orthoHeight": 834,
  382. "_near": 0,
  383. "_far": 2000,
  384. "_color": {
  385. "__type__": "cc.Color",
  386. "r": 0,
  387. "g": 0,
  388. "b": 0,
  389. "a": 255
  390. },
  391. "_depth": 1,
  392. "_stencil": 0,
  393. "_clearFlags": 6,
  394. "_rect": {
  395. "__type__": "cc.Rect",
  396. "x": 0,
  397. "y": 0,
  398. "width": 1,
  399. "height": 1
  400. },
  401. "_aperture": 19,
  402. "_shutter": 7,
  403. "_iso": 0,
  404. "_screenScale": 1,
  405. "_visibility": 41943040,
  406. "_targetTexture": null,
  407. "_cameraType": -1,
  408. "_trackingType": 0,
  409. "_id": "63WIch3o5BEYRlXzTT0oWc"
  410. },
  411. {
  412. "__type__": "cc.UITransform",
  413. "_name": "",
  414. "_objFlags": 0,
  415. "node": {
  416. "__id__": 7
  417. },
  418. "_enabled": true,
  419. "__prefab": null,
  420. "_contentSize": {
  421. "__type__": "cc.Size",
  422. "width": 2388,
  423. "height": 1668
  424. },
  425. "_anchorPoint": {
  426. "__type__": "cc.Vec2",
  427. "x": 0.5,
  428. "y": 0.5
  429. },
  430. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  431. },
  432. {
  433. "__type__": "cc.Canvas",
  434. "_name": "",
  435. "_objFlags": 0,
  436. "node": {
  437. "__id__": 7
  438. },
  439. "_enabled": true,
  440. "__prefab": null,
  441. "_cameraComponent": {
  442. "__id__": 9
  443. },
  444. "_alignCanvasWithScreen": true,
  445. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  446. },
  447. {
  448. "__type__": "cc.Widget",
  449. "_name": "",
  450. "_objFlags": 0,
  451. "node": {
  452. "__id__": 7
  453. },
  454. "_enabled": false,
  455. "__prefab": null,
  456. "_alignFlags": 45,
  457. "_target": null,
  458. "_left": -5.684341886080802e-14,
  459. "_right": -5.684341886080802e-14,
  460. "_top": -1.7053025658242404e-13,
  461. "_bottom": -1.7053025658242404e-13,
  462. "_horizontalCenter": 0,
  463. "_verticalCenter": 0,
  464. "_isAbsLeft": true,
  465. "_isAbsRight": true,
  466. "_isAbsTop": true,
  467. "_isAbsBottom": true,
  468. "_isAbsHorizontalCenter": true,
  469. "_isAbsVerticalCenter": true,
  470. "_originalWidth": 0,
  471. "_originalHeight": 0,
  472. "_alignMode": 2,
  473. "_lockFlags": 0,
  474. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  475. },
  476. {
  477. "__type__": "cc.AudioSource",
  478. "_name": "",
  479. "_objFlags": 0,
  480. "node": {
  481. "__id__": 7
  482. },
  483. "_enabled": true,
  484. "__prefab": null,
  485. "_clip": null,
  486. "_loop": false,
  487. "_playOnAwake": true,
  488. "_volume": 1,
  489. "_id": "94YYj+uIpDSqBYRX/Jt7HQ"
  490. },
  491. {
  492. "__type__": "cc.Node",
  493. "_name": "GameRoot",
  494. "_objFlags": 0,
  495. "_parent": {
  496. "__id__": 6
  497. },
  498. "_children": [
  499. {
  500. "__id__": 15
  501. }
  502. ],
  503. "_active": true,
  504. "_components": [
  505. {
  506. "__id__": 133
  507. },
  508. {
  509. "__id__": 134
  510. }
  511. ],
  512. "_prefab": null,
  513. "_lpos": {
  514. "__type__": "cc.Vec3",
  515. "x": 0,
  516. "y": 0,
  517. "z": 0
  518. },
  519. "_lrot": {
  520. "__type__": "cc.Quat",
  521. "x": 0,
  522. "y": 0,
  523. "z": 0,
  524. "w": 1
  525. },
  526. "_lscale": {
  527. "__type__": "cc.Vec3",
  528. "x": 1,
  529. "y": 1,
  530. "z": 1
  531. },
  532. "_mobility": 0,
  533. "_layer": 33554432,
  534. "_euler": {
  535. "__type__": "cc.Vec3",
  536. "x": 0,
  537. "y": 0,
  538. "z": 0
  539. },
  540. "_id": "68Au0l/ABKO7MiNAOJyAyN"
  541. },
  542. {
  543. "__type__": "cc.Node",
  544. "_name": "Game",
  545. "_objFlags": 0,
  546. "_parent": {
  547. "__id__": 14
  548. },
  549. "_children": [
  550. {
  551. "__id__": 16
  552. }
  553. ],
  554. "_active": true,
  555. "_components": [
  556. {
  557. "__id__": 130
  558. },
  559. {
  560. "__id__": 131
  561. },
  562. {
  563. "__id__": 132
  564. }
  565. ],
  566. "_prefab": null,
  567. "_lpos": {
  568. "__type__": "cc.Vec3",
  569. "x": 0,
  570. "y": 0,
  571. "z": 0
  572. },
  573. "_lrot": {
  574. "__type__": "cc.Quat",
  575. "x": 0,
  576. "y": 0,
  577. "z": 0,
  578. "w": 1
  579. },
  580. "_lscale": {
  581. "__type__": "cc.Vec3",
  582. "x": 1,
  583. "y": 1,
  584. "z": -0.442
  585. },
  586. "_mobility": 0,
  587. "_layer": 33554432,
  588. "_euler": {
  589. "__type__": "cc.Vec3",
  590. "x": 0,
  591. "y": 0,
  592. "z": 0
  593. },
  594. "_id": "64KKbKEDRDtoHE0yoYxf9y"
  595. },
  596. {
  597. "__type__": "cc.Node",
  598. "_name": "GameBg",
  599. "_objFlags": 0,
  600. "__editorExtras__": {},
  601. "_parent": {
  602. "__id__": 15
  603. },
  604. "_children": [
  605. {
  606. "__id__": 17
  607. },
  608. {
  609. "__id__": 22
  610. },
  611. {
  612. "__id__": 25
  613. },
  614. {
  615. "__id__": 28
  616. },
  617. {
  618. "__id__": 31
  619. },
  620. {
  621. "__id__": 34
  622. },
  623. {
  624. "__id__": 37
  625. },
  626. {
  627. "__id__": 40
  628. },
  629. {
  630. "__id__": 43
  631. },
  632. {
  633. "__id__": 66
  634. },
  635. {
  636. "__id__": 92
  637. }
  638. ],
  639. "_active": true,
  640. "_components": [
  641. {
  642. "__id__": 126
  643. },
  644. {
  645. "__id__": 127
  646. },
  647. {
  648. "__id__": 128
  649. },
  650. {
  651. "__id__": 129
  652. }
  653. ],
  654. "_prefab": null,
  655. "_lpos": {
  656. "__type__": "cc.Vec3",
  657. "x": 0,
  658. "y": 0,
  659. "z": 0
  660. },
  661. "_lrot": {
  662. "__type__": "cc.Quat",
  663. "x": 0,
  664. "y": 0,
  665. "z": 0,
  666. "w": 1
  667. },
  668. "_lscale": {
  669. "__type__": "cc.Vec3",
  670. "x": 1,
  671. "y": 1,
  672. "z": 1
  673. },
  674. "_mobility": 0,
  675. "_layer": 33554432,
  676. "_euler": {
  677. "__type__": "cc.Vec3",
  678. "x": 0,
  679. "y": 0,
  680. "z": 0
  681. },
  682. "_id": "50JSNlC1RBWI6nxyi6SoCB"
  683. },
  684. {
  685. "__type__": "cc.Node",
  686. "_name": "HammerRoot",
  687. "_objFlags": 0,
  688. "_parent": {
  689. "__id__": 16
  690. },
  691. "_children": [
  692. {
  693. "__id__": 18
  694. }
  695. ],
  696. "_active": false,
  697. "_components": [
  698. {
  699. "__id__": 21
  700. }
  701. ],
  702. "_prefab": null,
  703. "_lpos": {
  704. "__type__": "cc.Vec3",
  705. "x": 0,
  706. "y": 0,
  707. "z": 0
  708. },
  709. "_lrot": {
  710. "__type__": "cc.Quat",
  711. "x": 0,
  712. "y": 0,
  713. "z": 0,
  714. "w": 1
  715. },
  716. "_lscale": {
  717. "__type__": "cc.Vec3",
  718. "x": 1,
  719. "y": 1,
  720. "z": 1
  721. },
  722. "_mobility": 0,
  723. "_layer": 33554432,
  724. "_euler": {
  725. "__type__": "cc.Vec3",
  726. "x": 0,
  727. "y": 0,
  728. "z": 0
  729. },
  730. "_id": "8542Q0WwFN7L+UMJ2B4HQq"
  731. },
  732. {
  733. "__type__": "cc.Node",
  734. "_name": "Hammer",
  735. "_objFlags": 0,
  736. "_parent": {
  737. "__id__": 17
  738. },
  739. "_children": [],
  740. "_active": true,
  741. "_components": [
  742. {
  743. "__id__": 19
  744. },
  745. {
  746. "__id__": 20
  747. }
  748. ],
  749. "_prefab": null,
  750. "_lpos": {
  751. "__type__": "cc.Vec3",
  752. "x": 59.885,
  753. "y": 55.278,
  754. "z": 0
  755. },
  756. "_lrot": {
  757. "__type__": "cc.Quat",
  758. "x": 0,
  759. "y": 0,
  760. "z": 0,
  761. "w": 1
  762. },
  763. "_lscale": {
  764. "__type__": "cc.Vec3",
  765. "x": 1.5,
  766. "y": 1.5,
  767. "z": 1
  768. },
  769. "_mobility": 0,
  770. "_layer": 33554432,
  771. "_euler": {
  772. "__type__": "cc.Vec3",
  773. "x": 0,
  774. "y": 0,
  775. "z": 0
  776. },
  777. "_id": "dc8v4DecRDbLCy67h3zY0L"
  778. },
  779. {
  780. "__type__": "cc.UITransform",
  781. "_name": "",
  782. "_objFlags": 0,
  783. "node": {
  784. "__id__": 18
  785. },
  786. "_enabled": true,
  787. "__prefab": null,
  788. "_contentSize": {
  789. "__type__": "cc.Size",
  790. "width": 255,
  791. "height": 172
  792. },
  793. "_anchorPoint": {
  794. "__type__": "cc.Vec2",
  795. "x": 0.5,
  796. "y": 0.5
  797. },
  798. "_id": "94W0E/zadBj5KdMoDS09is"
  799. },
  800. {
  801. "__type__": "cc.Sprite",
  802. "_name": "",
  803. "_objFlags": 0,
  804. "node": {
  805. "__id__": 18
  806. },
  807. "_enabled": true,
  808. "__prefab": null,
  809. "_customMaterial": null,
  810. "_srcBlendFactor": 2,
  811. "_dstBlendFactor": 4,
  812. "_color": {
  813. "__type__": "cc.Color",
  814. "r": 255,
  815. "g": 255,
  816. "b": 255,
  817. "a": 255
  818. },
  819. "_spriteFrame": {
  820. "__uuid__": "6d2b5691-53e7-477a-825d-7344ca857682@f9941",
  821. "__expectedType__": "cc.SpriteFrame"
  822. },
  823. "_type": 0,
  824. "_fillType": 0,
  825. "_sizeMode": 0,
  826. "_fillCenter": {
  827. "__type__": "cc.Vec2",
  828. "x": 0,
  829. "y": 0
  830. },
  831. "_fillStart": 0,
  832. "_fillRange": 0,
  833. "_isTrimmedMode": true,
  834. "_useGrayscale": false,
  835. "_atlas": null,
  836. "_id": "1c/zwDNZBAhosnOpqQjqby"
  837. },
  838. {
  839. "__type__": "cc.UITransform",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "node": {
  843. "__id__": 17
  844. },
  845. "_enabled": true,
  846. "__prefab": null,
  847. "_contentSize": {
  848. "__type__": "cc.Size",
  849. "width": 100,
  850. "height": 100
  851. },
  852. "_anchorPoint": {
  853. "__type__": "cc.Vec2",
  854. "x": 0.5,
  855. "y": 0.5
  856. },
  857. "_id": "b73MPeGTZOyK08NZ+S6hNu"
  858. },
  859. {
  860. "__type__": "cc.Node",
  861. "_name": "women",
  862. "_objFlags": 0,
  863. "_parent": {
  864. "__id__": 16
  865. },
  866. "_children": [],
  867. "_active": true,
  868. "_components": [
  869. {
  870. "__id__": 23
  871. },
  872. {
  873. "__id__": 24
  874. }
  875. ],
  876. "_prefab": null,
  877. "_lpos": {
  878. "__type__": "cc.Vec3",
  879. "x": -531.492,
  880. "y": -351.778,
  881. "z": 0
  882. },
  883. "_lrot": {
  884. "__type__": "cc.Quat",
  885. "x": 0,
  886. "y": 0,
  887. "z": 0,
  888. "w": 1
  889. },
  890. "_lscale": {
  891. "__type__": "cc.Vec3",
  892. "x": 1,
  893. "y": 1,
  894. "z": 1
  895. },
  896. "_mobility": 0,
  897. "_layer": 33554432,
  898. "_euler": {
  899. "__type__": "cc.Vec3",
  900. "x": 0,
  901. "y": 0,
  902. "z": 0
  903. },
  904. "_id": "0cy5iWL8xFup0OYid5q8F2"
  905. },
  906. {
  907. "__type__": "cc.UITransform",
  908. "_name": "",
  909. "_objFlags": 0,
  910. "node": {
  911. "__id__": 22
  912. },
  913. "_enabled": true,
  914. "__prefab": null,
  915. "_contentSize": {
  916. "__type__": "cc.Size",
  917. "width": 315,
  918. "height": 509
  919. },
  920. "_anchorPoint": {
  921. "__type__": "cc.Vec2",
  922. "x": 0.5,
  923. "y": 0.5
  924. },
  925. "_id": "93bHeO399HUoRc6x4CLEIk"
  926. },
  927. {
  928. "__type__": "cc.Sprite",
  929. "_name": "",
  930. "_objFlags": 0,
  931. "node": {
  932. "__id__": 22
  933. },
  934. "_enabled": true,
  935. "__prefab": null,
  936. "_customMaterial": null,
  937. "_srcBlendFactor": 2,
  938. "_dstBlendFactor": 4,
  939. "_color": {
  940. "__type__": "cc.Color",
  941. "r": 255,
  942. "g": 255,
  943. "b": 255,
  944. "a": 255
  945. },
  946. "_spriteFrame": {
  947. "__uuid__": "61e89a0f-8565-43c9-85a1-62cfd97d7b6c@f9941",
  948. "__expectedType__": "cc.SpriteFrame"
  949. },
  950. "_type": 0,
  951. "_fillType": 0,
  952. "_sizeMode": 0,
  953. "_fillCenter": {
  954. "__type__": "cc.Vec2",
  955. "x": 0,
  956. "y": 0
  957. },
  958. "_fillStart": 0,
  959. "_fillRange": 0,
  960. "_isTrimmedMode": true,
  961. "_useGrayscale": false,
  962. "_atlas": null,
  963. "_id": "9dNcUmuSdIg6+YavPebIqg"
  964. },
  965. {
  966. "__type__": "cc.Node",
  967. "_name": "pao",
  968. "_objFlags": 0,
  969. "_parent": {
  970. "__id__": 16
  971. },
  972. "_children": [],
  973. "_active": true,
  974. "_components": [
  975. {
  976. "__id__": 26
  977. },
  978. {
  979. "__id__": 27
  980. }
  981. ],
  982. "_prefab": null,
  983. "_lpos": {
  984. "__type__": "cc.Vec3",
  985. "x": -286.776,
  986. "y": 248.54,
  987. "z": 0
  988. },
  989. "_lrot": {
  990. "__type__": "cc.Quat",
  991. "x": 0,
  992. "y": 0,
  993. "z": 0,
  994. "w": 1
  995. },
  996. "_lscale": {
  997. "__type__": "cc.Vec3",
  998. "x": 1,
  999. "y": 1,
  1000. "z": 1
  1001. },
  1002. "_mobility": 0,
  1003. "_layer": 33554432,
  1004. "_euler": {
  1005. "__type__": "cc.Vec3",
  1006. "x": 0,
  1007. "y": 0,
  1008. "z": 0
  1009. },
  1010. "_id": "b76f86IOBKYZvhlDQ41uEL"
  1011. },
  1012. {
  1013. "__type__": "cc.UITransform",
  1014. "_name": "",
  1015. "_objFlags": 0,
  1016. "node": {
  1017. "__id__": 25
  1018. },
  1019. "_enabled": true,
  1020. "__prefab": null,
  1021. "_contentSize": {
  1022. "__type__": "cc.Size",
  1023. "width": 55,
  1024. "height": 58
  1025. },
  1026. "_anchorPoint": {
  1027. "__type__": "cc.Vec2",
  1028. "x": 0.5,
  1029. "y": 0.5
  1030. },
  1031. "_id": "a4QX3hO3ZAToMMFPQkBlrw"
  1032. },
  1033. {
  1034. "__type__": "cc.Sprite",
  1035. "_name": "",
  1036. "_objFlags": 0,
  1037. "node": {
  1038. "__id__": 25
  1039. },
  1040. "_enabled": true,
  1041. "__prefab": null,
  1042. "_customMaterial": null,
  1043. "_srcBlendFactor": 2,
  1044. "_dstBlendFactor": 4,
  1045. "_color": {
  1046. "__type__": "cc.Color",
  1047. "r": 255,
  1048. "g": 255,
  1049. "b": 255,
  1050. "a": 255
  1051. },
  1052. "_spriteFrame": {
  1053. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1054. "__expectedType__": "cc.SpriteFrame"
  1055. },
  1056. "_type": 0,
  1057. "_fillType": 0,
  1058. "_sizeMode": 0,
  1059. "_fillCenter": {
  1060. "__type__": "cc.Vec2",
  1061. "x": 0,
  1062. "y": 0
  1063. },
  1064. "_fillStart": 0,
  1065. "_fillRange": 0,
  1066. "_isTrimmedMode": true,
  1067. "_useGrayscale": false,
  1068. "_atlas": null,
  1069. "_id": "39ZW4BLHJHXa1VvQcR40x8"
  1070. },
  1071. {
  1072. "__type__": "cc.Node",
  1073. "_name": "pao-001",
  1074. "_objFlags": 0,
  1075. "_parent": {
  1076. "__id__": 16
  1077. },
  1078. "_children": [],
  1079. "_active": true,
  1080. "_components": [
  1081. {
  1082. "__id__": 29
  1083. },
  1084. {
  1085. "__id__": 30
  1086. }
  1087. ],
  1088. "_prefab": null,
  1089. "_lpos": {
  1090. "__type__": "cc.Vec3",
  1091. "x": -61.179,
  1092. "y": 214.127,
  1093. "z": 0
  1094. },
  1095. "_lrot": {
  1096. "__type__": "cc.Quat",
  1097. "x": 0,
  1098. "y": 0,
  1099. "z": 0,
  1100. "w": 1
  1101. },
  1102. "_lscale": {
  1103. "__type__": "cc.Vec3",
  1104. "x": 1,
  1105. "y": 1,
  1106. "z": 1
  1107. },
  1108. "_mobility": 0,
  1109. "_layer": 33554432,
  1110. "_euler": {
  1111. "__type__": "cc.Vec3",
  1112. "x": 0,
  1113. "y": 0,
  1114. "z": 0
  1115. },
  1116. "_id": "ddgYXnfk9BzZMzzbIM+QYW"
  1117. },
  1118. {
  1119. "__type__": "cc.UITransform",
  1120. "_name": "",
  1121. "_objFlags": 0,
  1122. "node": {
  1123. "__id__": 28
  1124. },
  1125. "_enabled": true,
  1126. "__prefab": null,
  1127. "_contentSize": {
  1128. "__type__": "cc.Size",
  1129. "width": 55,
  1130. "height": 58
  1131. },
  1132. "_anchorPoint": {
  1133. "__type__": "cc.Vec2",
  1134. "x": 0.5,
  1135. "y": 0.5
  1136. },
  1137. "_id": "b58rKuDedPKaJsPG/a1Twi"
  1138. },
  1139. {
  1140. "__type__": "cc.Sprite",
  1141. "_name": "",
  1142. "_objFlags": 0,
  1143. "node": {
  1144. "__id__": 28
  1145. },
  1146. "_enabled": true,
  1147. "__prefab": null,
  1148. "_customMaterial": null,
  1149. "_srcBlendFactor": 2,
  1150. "_dstBlendFactor": 4,
  1151. "_color": {
  1152. "__type__": "cc.Color",
  1153. "r": 255,
  1154. "g": 255,
  1155. "b": 255,
  1156. "a": 255
  1157. },
  1158. "_spriteFrame": {
  1159. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1160. "__expectedType__": "cc.SpriteFrame"
  1161. },
  1162. "_type": 0,
  1163. "_fillType": 0,
  1164. "_sizeMode": 0,
  1165. "_fillCenter": {
  1166. "__type__": "cc.Vec2",
  1167. "x": 0,
  1168. "y": 0
  1169. },
  1170. "_fillStart": 0,
  1171. "_fillRange": 0,
  1172. "_isTrimmedMode": true,
  1173. "_useGrayscale": false,
  1174. "_atlas": null,
  1175. "_id": "b1hx15wmdIUKB9uKZDvQtt"
  1176. },
  1177. {
  1178. "__type__": "cc.Node",
  1179. "_name": "pao-002",
  1180. "_objFlags": 0,
  1181. "_parent": {
  1182. "__id__": 16
  1183. },
  1184. "_children": [],
  1185. "_active": true,
  1186. "_components": [
  1187. {
  1188. "__id__": 32
  1189. },
  1190. {
  1191. "__id__": 33
  1192. }
  1193. ],
  1194. "_prefab": null,
  1195. "_lpos": {
  1196. "__type__": "cc.Vec3",
  1197. "x": -240.892,
  1198. "y": -15.294,
  1199. "z": 0
  1200. },
  1201. "_lrot": {
  1202. "__type__": "cc.Quat",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0,
  1206. "w": 1
  1207. },
  1208. "_lscale": {
  1209. "__type__": "cc.Vec3",
  1210. "x": 1,
  1211. "y": 1,
  1212. "z": 1
  1213. },
  1214. "_mobility": 0,
  1215. "_layer": 33554432,
  1216. "_euler": {
  1217. "__type__": "cc.Vec3",
  1218. "x": 0,
  1219. "y": 0,
  1220. "z": 0
  1221. },
  1222. "_id": "0fs7XH4kVKDKb4Uz8NAZ6t"
  1223. },
  1224. {
  1225. "__type__": "cc.UITransform",
  1226. "_name": "",
  1227. "_objFlags": 0,
  1228. "node": {
  1229. "__id__": 31
  1230. },
  1231. "_enabled": true,
  1232. "__prefab": null,
  1233. "_contentSize": {
  1234. "__type__": "cc.Size",
  1235. "width": 55,
  1236. "height": 58
  1237. },
  1238. "_anchorPoint": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0.5,
  1241. "y": 0.5
  1242. },
  1243. "_id": "31e83Fs99I5qw92w0NTcl9"
  1244. },
  1245. {
  1246. "__type__": "cc.Sprite",
  1247. "_name": "",
  1248. "_objFlags": 0,
  1249. "node": {
  1250. "__id__": 31
  1251. },
  1252. "_enabled": true,
  1253. "__prefab": null,
  1254. "_customMaterial": null,
  1255. "_srcBlendFactor": 2,
  1256. "_dstBlendFactor": 4,
  1257. "_color": {
  1258. "__type__": "cc.Color",
  1259. "r": 255,
  1260. "g": 255,
  1261. "b": 255,
  1262. "a": 255
  1263. },
  1264. "_spriteFrame": {
  1265. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1266. "__expectedType__": "cc.SpriteFrame"
  1267. },
  1268. "_type": 0,
  1269. "_fillType": 0,
  1270. "_sizeMode": 0,
  1271. "_fillCenter": {
  1272. "__type__": "cc.Vec2",
  1273. "x": 0,
  1274. "y": 0
  1275. },
  1276. "_fillStart": 0,
  1277. "_fillRange": 0,
  1278. "_isTrimmedMode": true,
  1279. "_useGrayscale": false,
  1280. "_atlas": null,
  1281. "_id": "2dU/EJNKdIUL3+fdcZh4jV"
  1282. },
  1283. {
  1284. "__type__": "cc.Node",
  1285. "_name": "pao-003",
  1286. "_objFlags": 0,
  1287. "_parent": {
  1288. "__id__": 16
  1289. },
  1290. "_children": [],
  1291. "_active": true,
  1292. "_components": [
  1293. {
  1294. "__id__": 35
  1295. },
  1296. {
  1297. "__id__": 36
  1298. }
  1299. ],
  1300. "_prefab": null,
  1301. "_lpos": {
  1302. "__type__": "cc.Vec3",
  1303. "x": 252.363,
  1304. "y": 240.893,
  1305. "z": 0
  1306. },
  1307. "_lrot": {
  1308. "__type__": "cc.Quat",
  1309. "x": 0,
  1310. "y": 0,
  1311. "z": 0,
  1312. "w": 1
  1313. },
  1314. "_lscale": {
  1315. "__type__": "cc.Vec3",
  1316. "x": 1,
  1317. "y": 1,
  1318. "z": 1
  1319. },
  1320. "_mobility": 0,
  1321. "_layer": 33554432,
  1322. "_euler": {
  1323. "__type__": "cc.Vec3",
  1324. "x": 0,
  1325. "y": 0,
  1326. "z": 0
  1327. },
  1328. "_id": "d0CKJUQDpLRJFSvJUkC6NR"
  1329. },
  1330. {
  1331. "__type__": "cc.UITransform",
  1332. "_name": "",
  1333. "_objFlags": 0,
  1334. "node": {
  1335. "__id__": 34
  1336. },
  1337. "_enabled": true,
  1338. "__prefab": null,
  1339. "_contentSize": {
  1340. "__type__": "cc.Size",
  1341. "width": 55,
  1342. "height": 58
  1343. },
  1344. "_anchorPoint": {
  1345. "__type__": "cc.Vec2",
  1346. "x": 0.5,
  1347. "y": 0.5
  1348. },
  1349. "_id": "7begub6/pIErjif5lEXnrJ"
  1350. },
  1351. {
  1352. "__type__": "cc.Sprite",
  1353. "_name": "",
  1354. "_objFlags": 0,
  1355. "node": {
  1356. "__id__": 34
  1357. },
  1358. "_enabled": true,
  1359. "__prefab": null,
  1360. "_customMaterial": null,
  1361. "_srcBlendFactor": 2,
  1362. "_dstBlendFactor": 4,
  1363. "_color": {
  1364. "__type__": "cc.Color",
  1365. "r": 255,
  1366. "g": 255,
  1367. "b": 255,
  1368. "a": 255
  1369. },
  1370. "_spriteFrame": {
  1371. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1372. "__expectedType__": "cc.SpriteFrame"
  1373. },
  1374. "_type": 0,
  1375. "_fillType": 0,
  1376. "_sizeMode": 0,
  1377. "_fillCenter": {
  1378. "__type__": "cc.Vec2",
  1379. "x": 0,
  1380. "y": 0
  1381. },
  1382. "_fillStart": 0,
  1383. "_fillRange": 0,
  1384. "_isTrimmedMode": true,
  1385. "_useGrayscale": false,
  1386. "_atlas": null,
  1387. "_id": "cecQcD3l1P3oF0Da4bEkFT"
  1388. },
  1389. {
  1390. "__type__": "cc.Node",
  1391. "_name": "pao-004",
  1392. "_objFlags": 0,
  1393. "_parent": {
  1394. "__id__": 16
  1395. },
  1396. "_children": [],
  1397. "_active": true,
  1398. "_components": [
  1399. {
  1400. "__id__": 38
  1401. },
  1402. {
  1403. "__id__": 39
  1404. }
  1405. ],
  1406. "_prefab": null,
  1407. "_lpos": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 84.121,
  1410. "y": -26.765,
  1411. "z": 0
  1412. },
  1413. "_lrot": {
  1414. "__type__": "cc.Quat",
  1415. "x": 0,
  1416. "y": 0,
  1417. "z": 0,
  1418. "w": 1
  1419. },
  1420. "_lscale": {
  1421. "__type__": "cc.Vec3",
  1422. "x": 1,
  1423. "y": 1,
  1424. "z": 1
  1425. },
  1426. "_mobility": 0,
  1427. "_layer": 33554432,
  1428. "_euler": {
  1429. "__type__": "cc.Vec3",
  1430. "x": 0,
  1431. "y": 0,
  1432. "z": 0
  1433. },
  1434. "_id": "3akTFpOQJANpDN9Ervc2l7"
  1435. },
  1436. {
  1437. "__type__": "cc.UITransform",
  1438. "_name": "",
  1439. "_objFlags": 0,
  1440. "node": {
  1441. "__id__": 37
  1442. },
  1443. "_enabled": true,
  1444. "__prefab": null,
  1445. "_contentSize": {
  1446. "__type__": "cc.Size",
  1447. "width": 55,
  1448. "height": 58
  1449. },
  1450. "_anchorPoint": {
  1451. "__type__": "cc.Vec2",
  1452. "x": 0.5,
  1453. "y": 0.5
  1454. },
  1455. "_id": "b7RrCc9C9KZYWA7bjfF050"
  1456. },
  1457. {
  1458. "__type__": "cc.Sprite",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "node": {
  1462. "__id__": 37
  1463. },
  1464. "_enabled": true,
  1465. "__prefab": null,
  1466. "_customMaterial": null,
  1467. "_srcBlendFactor": 2,
  1468. "_dstBlendFactor": 4,
  1469. "_color": {
  1470. "__type__": "cc.Color",
  1471. "r": 255,
  1472. "g": 255,
  1473. "b": 255,
  1474. "a": 255
  1475. },
  1476. "_spriteFrame": {
  1477. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1478. "__expectedType__": "cc.SpriteFrame"
  1479. },
  1480. "_type": 0,
  1481. "_fillType": 0,
  1482. "_sizeMode": 0,
  1483. "_fillCenter": {
  1484. "__type__": "cc.Vec2",
  1485. "x": 0,
  1486. "y": 0
  1487. },
  1488. "_fillStart": 0,
  1489. "_fillRange": 0,
  1490. "_isTrimmedMode": true,
  1491. "_useGrayscale": false,
  1492. "_atlas": null,
  1493. "_id": "22fe4nuIZLSJ7SheeFlc/B"
  1494. },
  1495. {
  1496. "__type__": "cc.Node",
  1497. "_name": "pao-005",
  1498. "_objFlags": 0,
  1499. "_parent": {
  1500. "__id__": 16
  1501. },
  1502. "_children": [],
  1503. "_active": true,
  1504. "_components": [
  1505. {
  1506. "__id__": 41
  1507. },
  1508. {
  1509. "__id__": 42
  1510. }
  1511. ],
  1512. "_prefab": null,
  1513. "_lpos": {
  1514. "__type__": "cc.Vec3",
  1515. "x": 401.487,
  1516. "y": -49.707,
  1517. "z": 0
  1518. },
  1519. "_lrot": {
  1520. "__type__": "cc.Quat",
  1521. "x": 0,
  1522. "y": 0,
  1523. "z": 0,
  1524. "w": 1
  1525. },
  1526. "_lscale": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 1,
  1529. "y": 1,
  1530. "z": 1
  1531. },
  1532. "_mobility": 0,
  1533. "_layer": 33554432,
  1534. "_euler": {
  1535. "__type__": "cc.Vec3",
  1536. "x": 0,
  1537. "y": 0,
  1538. "z": 0
  1539. },
  1540. "_id": "55vVA7maNDrqQH7nuUHVx3"
  1541. },
  1542. {
  1543. "__type__": "cc.UITransform",
  1544. "_name": "",
  1545. "_objFlags": 0,
  1546. "node": {
  1547. "__id__": 40
  1548. },
  1549. "_enabled": true,
  1550. "__prefab": null,
  1551. "_contentSize": {
  1552. "__type__": "cc.Size",
  1553. "width": 55,
  1554. "height": 58
  1555. },
  1556. "_anchorPoint": {
  1557. "__type__": "cc.Vec2",
  1558. "x": 0.5,
  1559. "y": 0.5
  1560. },
  1561. "_id": "62excZLNpBgLzitGul2tuc"
  1562. },
  1563. {
  1564. "__type__": "cc.Sprite",
  1565. "_name": "",
  1566. "_objFlags": 0,
  1567. "node": {
  1568. "__id__": 40
  1569. },
  1570. "_enabled": true,
  1571. "__prefab": null,
  1572. "_customMaterial": null,
  1573. "_srcBlendFactor": 2,
  1574. "_dstBlendFactor": 4,
  1575. "_color": {
  1576. "__type__": "cc.Color",
  1577. "r": 255,
  1578. "g": 255,
  1579. "b": 255,
  1580. "a": 255
  1581. },
  1582. "_spriteFrame": {
  1583. "__uuid__": "2a8bf9ca-5a53-41b4-9cef-fa99ca741019@f9941",
  1584. "__expectedType__": "cc.SpriteFrame"
  1585. },
  1586. "_type": 0,
  1587. "_fillType": 0,
  1588. "_sizeMode": 0,
  1589. "_fillCenter": {
  1590. "__type__": "cc.Vec2",
  1591. "x": 0,
  1592. "y": 0
  1593. },
  1594. "_fillStart": 0,
  1595. "_fillRange": 0,
  1596. "_isTrimmedMode": true,
  1597. "_useGrayscale": false,
  1598. "_atlas": null,
  1599. "_id": "fdaQtoJEtJ5ZbcJ487Qs7H"
  1600. },
  1601. {
  1602. "__type__": "cc.Node",
  1603. "_name": "fishNode",
  1604. "_objFlags": 0,
  1605. "_parent": {
  1606. "__id__": 16
  1607. },
  1608. "_children": [
  1609. {
  1610. "__id__": 44
  1611. },
  1612. {
  1613. "__id__": 47
  1614. },
  1615. {
  1616. "__id__": 50
  1617. },
  1618. {
  1619. "__id__": 53
  1620. },
  1621. {
  1622. "__id__": 56
  1623. },
  1624. {
  1625. "__id__": 59
  1626. },
  1627. {
  1628. "__id__": 62
  1629. }
  1630. ],
  1631. "_active": true,
  1632. "_components": [
  1633. {
  1634. "__id__": 65
  1635. }
  1636. ],
  1637. "_prefab": null,
  1638. "_lpos": {
  1639. "__type__": "cc.Vec3",
  1640. "x": 1066,
  1641. "y": 0,
  1642. "z": 0
  1643. },
  1644. "_lrot": {
  1645. "__type__": "cc.Quat",
  1646. "x": 0,
  1647. "y": 0,
  1648. "z": 0,
  1649. "w": 1
  1650. },
  1651. "_lscale": {
  1652. "__type__": "cc.Vec3",
  1653. "x": 1,
  1654. "y": 1,
  1655. "z": 1
  1656. },
  1657. "_mobility": 0,
  1658. "_layer": 33554432,
  1659. "_euler": {
  1660. "__type__": "cc.Vec3",
  1661. "x": 0,
  1662. "y": 0,
  1663. "z": 0
  1664. },
  1665. "_id": "18xoBbDY9P3owISUGc/yg5"
  1666. },
  1667. {
  1668. "__type__": "cc.Node",
  1669. "_name": "fish",
  1670. "_objFlags": 0,
  1671. "_parent": {
  1672. "__id__": 43
  1673. },
  1674. "_children": [],
  1675. "_active": true,
  1676. "_components": [
  1677. {
  1678. "__id__": 45
  1679. },
  1680. {
  1681. "__id__": 46
  1682. }
  1683. ],
  1684. "_prefab": null,
  1685. "_lpos": {
  1686. "__type__": "cc.Vec3",
  1687. "x": -152.948,
  1688. "y": 152.947,
  1689. "z": 0
  1690. },
  1691. "_lrot": {
  1692. "__type__": "cc.Quat",
  1693. "x": 0,
  1694. "y": 0,
  1695. "z": 0,
  1696. "w": 1
  1697. },
  1698. "_lscale": {
  1699. "__type__": "cc.Vec3",
  1700. "x": 1,
  1701. "y": 1,
  1702. "z": 1
  1703. },
  1704. "_mobility": 0,
  1705. "_layer": 33554432,
  1706. "_euler": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 0,
  1709. "y": 0,
  1710. "z": 0
  1711. },
  1712. "_id": "e8WfQntkZGJ6+J6UQY7H1V"
  1713. },
  1714. {
  1715. "__type__": "cc.UITransform",
  1716. "_name": "",
  1717. "_objFlags": 0,
  1718. "node": {
  1719. "__id__": 44
  1720. },
  1721. "_enabled": true,
  1722. "__prefab": null,
  1723. "_contentSize": {
  1724. "__type__": "cc.Size",
  1725. "width": 242,
  1726. "height": 194
  1727. },
  1728. "_anchorPoint": {
  1729. "__type__": "cc.Vec2",
  1730. "x": 0.5,
  1731. "y": 0.5
  1732. },
  1733. "_id": "d9WlgminRJO48YZ9+uYEXP"
  1734. },
  1735. {
  1736. "__type__": "cc.Sprite",
  1737. "_name": "",
  1738. "_objFlags": 0,
  1739. "node": {
  1740. "__id__": 44
  1741. },
  1742. "_enabled": true,
  1743. "__prefab": null,
  1744. "_customMaterial": null,
  1745. "_srcBlendFactor": 2,
  1746. "_dstBlendFactor": 4,
  1747. "_color": {
  1748. "__type__": "cc.Color",
  1749. "r": 255,
  1750. "g": 255,
  1751. "b": 255,
  1752. "a": 255
  1753. },
  1754. "_spriteFrame": {
  1755. "__uuid__": "d309e3da-b829-478d-9286-cfa03a2c0e7b@f9941",
  1756. "__expectedType__": "cc.SpriteFrame"
  1757. },
  1758. "_type": 0,
  1759. "_fillType": 0,
  1760. "_sizeMode": 0,
  1761. "_fillCenter": {
  1762. "__type__": "cc.Vec2",
  1763. "x": 0,
  1764. "y": 0
  1765. },
  1766. "_fillStart": 0,
  1767. "_fillRange": 0,
  1768. "_isTrimmedMode": true,
  1769. "_useGrayscale": false,
  1770. "_atlas": null,
  1771. "_id": "127xFPhK5BcJIJ0GmanNjt"
  1772. },
  1773. {
  1774. "__type__": "cc.Node",
  1775. "_name": "fish-001",
  1776. "_objFlags": 0,
  1777. "_parent": {
  1778. "__id__": 43
  1779. },
  1780. "_children": [],
  1781. "_active": true,
  1782. "_components": [
  1783. {
  1784. "__id__": 48
  1785. },
  1786. {
  1787. "__id__": 49
  1788. }
  1789. ],
  1790. "_prefab": null,
  1791. "_lpos": {
  1792. "__type__": "cc.Vec3",
  1793. "x": 7.648,
  1794. "y": 435.899,
  1795. "z": 0
  1796. },
  1797. "_lrot": {
  1798. "__type__": "cc.Quat",
  1799. "x": 0,
  1800. "y": 0,
  1801. "z": 0,
  1802. "w": 1
  1803. },
  1804. "_lscale": {
  1805. "__type__": "cc.Vec3",
  1806. "x": 1,
  1807. "y": 1,
  1808. "z": 1
  1809. },
  1810. "_mobility": 0,
  1811. "_layer": 33554432,
  1812. "_euler": {
  1813. "__type__": "cc.Vec3",
  1814. "x": 0,
  1815. "y": 0,
  1816. "z": 0
  1817. },
  1818. "_id": "cfcLWttmBJRonnXIa3SKV9"
  1819. },
  1820. {
  1821. "__type__": "cc.UITransform",
  1822. "_name": "",
  1823. "_objFlags": 0,
  1824. "node": {
  1825. "__id__": 47
  1826. },
  1827. "_enabled": true,
  1828. "__prefab": null,
  1829. "_contentSize": {
  1830. "__type__": "cc.Size",
  1831. "width": 237,
  1832. "height": 163
  1833. },
  1834. "_anchorPoint": {
  1835. "__type__": "cc.Vec2",
  1836. "x": 0.5,
  1837. "y": 0.5
  1838. },
  1839. "_id": "c04Jj8jEhIMJFO+USMKzCO"
  1840. },
  1841. {
  1842. "__type__": "cc.Sprite",
  1843. "_name": "",
  1844. "_objFlags": 0,
  1845. "node": {
  1846. "__id__": 47
  1847. },
  1848. "_enabled": true,
  1849. "__prefab": null,
  1850. "_customMaterial": null,
  1851. "_srcBlendFactor": 2,
  1852. "_dstBlendFactor": 4,
  1853. "_color": {
  1854. "__type__": "cc.Color",
  1855. "r": 255,
  1856. "g": 255,
  1857. "b": 255,
  1858. "a": 255
  1859. },
  1860. "_spriteFrame": {
  1861. "__uuid__": "5e85a591-67df-4f39-b9b8-78b8ffc9d25c@f9941",
  1862. "__expectedType__": "cc.SpriteFrame"
  1863. },
  1864. "_type": 0,
  1865. "_fillType": 0,
  1866. "_sizeMode": 0,
  1867. "_fillCenter": {
  1868. "__type__": "cc.Vec2",
  1869. "x": 0,
  1870. "y": 0
  1871. },
  1872. "_fillStart": 0,
  1873. "_fillRange": 0,
  1874. "_isTrimmedMode": true,
  1875. "_useGrayscale": false,
  1876. "_atlas": null,
  1877. "_id": "67Ec4QGQ9D8r8xZfCWr7GH"
  1878. },
  1879. {
  1880. "__type__": "cc.Node",
  1881. "_name": "fish-002",
  1882. "_objFlags": 0,
  1883. "_parent": {
  1884. "__id__": 43
  1885. },
  1886. "_children": [],
  1887. "_active": true,
  1888. "_components": [
  1889. {
  1890. "__id__": 51
  1891. },
  1892. {
  1893. "__id__": 52
  1894. }
  1895. ],
  1896. "_prefab": null,
  1897. "_lpos": {
  1898. "__type__": "cc.Vec3",
  1899. "x": 7.648,
  1900. "y": -175.889,
  1901. "z": 0
  1902. },
  1903. "_lrot": {
  1904. "__type__": "cc.Quat",
  1905. "x": 0,
  1906. "y": 0,
  1907. "z": 0,
  1908. "w": 1
  1909. },
  1910. "_lscale": {
  1911. "__type__": "cc.Vec3",
  1912. "x": 1,
  1913. "y": 1,
  1914. "z": 1
  1915. },
  1916. "_mobility": 0,
  1917. "_layer": 33554432,
  1918. "_euler": {
  1919. "__type__": "cc.Vec3",
  1920. "x": 0,
  1921. "y": 0,
  1922. "z": 0
  1923. },
  1924. "_id": "fb/pkcX5pMHYuGSmcMFO5u"
  1925. },
  1926. {
  1927. "__type__": "cc.UITransform",
  1928. "_name": "",
  1929. "_objFlags": 0,
  1930. "node": {
  1931. "__id__": 50
  1932. },
  1933. "_enabled": true,
  1934. "__prefab": null,
  1935. "_contentSize": {
  1936. "__type__": "cc.Size",
  1937. "width": 245,
  1938. "height": 277
  1939. },
  1940. "_anchorPoint": {
  1941. "__type__": "cc.Vec2",
  1942. "x": 0.5,
  1943. "y": 0.5
  1944. },
  1945. "_id": "70SKqaAgVOaa6m1wh79U94"
  1946. },
  1947. {
  1948. "__type__": "cc.Sprite",
  1949. "_name": "",
  1950. "_objFlags": 0,
  1951. "node": {
  1952. "__id__": 50
  1953. },
  1954. "_enabled": true,
  1955. "__prefab": null,
  1956. "_customMaterial": null,
  1957. "_srcBlendFactor": 2,
  1958. "_dstBlendFactor": 4,
  1959. "_color": {
  1960. "__type__": "cc.Color",
  1961. "r": 255,
  1962. "g": 255,
  1963. "b": 255,
  1964. "a": 255
  1965. },
  1966. "_spriteFrame": {
  1967. "__uuid__": "8651921e-2e78-427c-8a2c-819dbc9b395f@f9941",
  1968. "__expectedType__": "cc.SpriteFrame"
  1969. },
  1970. "_type": 0,
  1971. "_fillType": 0,
  1972. "_sizeMode": 0,
  1973. "_fillCenter": {
  1974. "__type__": "cc.Vec2",
  1975. "x": 0,
  1976. "y": 0
  1977. },
  1978. "_fillStart": 0,
  1979. "_fillRange": 0,
  1980. "_isTrimmedMode": true,
  1981. "_useGrayscale": false,
  1982. "_atlas": null,
  1983. "_id": "40lF0/x2BCWa79uUpwSNv2"
  1984. },
  1985. {
  1986. "__type__": "cc.Node",
  1987. "_name": "fish-003",
  1988. "_objFlags": 0,
  1989. "_parent": {
  1990. "__id__": 43
  1991. },
  1992. "_children": [],
  1993. "_active": true,
  1994. "_components": [
  1995. {
  1996. "__id__": 54
  1997. },
  1998. {
  1999. "__id__": 55
  2000. }
  2001. ],
  2002. "_prefab": null,
  2003. "_lpos": {
  2004. "__type__": "cc.Vec3",
  2005. "x": 332.661,
  2006. "y": 210.303,
  2007. "z": 0
  2008. },
  2009. "_lrot": {
  2010. "__type__": "cc.Quat",
  2011. "x": 0,
  2012. "y": 0,
  2013. "z": 0,
  2014. "w": 1
  2015. },
  2016. "_lscale": {
  2017. "__type__": "cc.Vec3",
  2018. "x": 1,
  2019. "y": 1,
  2020. "z": 1
  2021. },
  2022. "_mobility": 0,
  2023. "_layer": 33554432,
  2024. "_euler": {
  2025. "__type__": "cc.Vec3",
  2026. "x": 0,
  2027. "y": 0,
  2028. "z": 0
  2029. },
  2030. "_id": "3etTtBst9IYoHJLED4tUyd"
  2031. },
  2032. {
  2033. "__type__": "cc.UITransform",
  2034. "_name": "",
  2035. "_objFlags": 0,
  2036. "node": {
  2037. "__id__": 53
  2038. },
  2039. "_enabled": true,
  2040. "__prefab": null,
  2041. "_contentSize": {
  2042. "__type__": "cc.Size",
  2043. "width": 237,
  2044. "height": 163
  2045. },
  2046. "_anchorPoint": {
  2047. "__type__": "cc.Vec2",
  2048. "x": 0.5,
  2049. "y": 0.5
  2050. },
  2051. "_id": "ecF34Y/glBLaVGI69X5KPQ"
  2052. },
  2053. {
  2054. "__type__": "cc.Sprite",
  2055. "_name": "",
  2056. "_objFlags": 0,
  2057. "node": {
  2058. "__id__": 53
  2059. },
  2060. "_enabled": true,
  2061. "__prefab": null,
  2062. "_customMaterial": null,
  2063. "_srcBlendFactor": 2,
  2064. "_dstBlendFactor": 4,
  2065. "_color": {
  2066. "__type__": "cc.Color",
  2067. "r": 255,
  2068. "g": 255,
  2069. "b": 255,
  2070. "a": 255
  2071. },
  2072. "_spriteFrame": {
  2073. "__uuid__": "5e85a591-67df-4f39-b9b8-78b8ffc9d25c@f9941",
  2074. "__expectedType__": "cc.SpriteFrame"
  2075. },
  2076. "_type": 0,
  2077. "_fillType": 0,
  2078. "_sizeMode": 0,
  2079. "_fillCenter": {
  2080. "__type__": "cc.Vec2",
  2081. "x": 0,
  2082. "y": 0
  2083. },
  2084. "_fillStart": 0,
  2085. "_fillRange": 0,
  2086. "_isTrimmedMode": true,
  2087. "_useGrayscale": false,
  2088. "_atlas": null,
  2089. "_id": "06drNYGRNJOLVCh9b84naE"
  2090. },
  2091. {
  2092. "__type__": "cc.Node",
  2093. "_name": "fish-004",
  2094. "_objFlags": 0,
  2095. "_parent": {
  2096. "__id__": 43
  2097. },
  2098. "_children": [],
  2099. "_active": true,
  2100. "_components": [
  2101. {
  2102. "__id__": 57
  2103. },
  2104. {
  2105. "__id__": 58
  2106. }
  2107. ],
  2108. "_prefab": null,
  2109. "_lpos": {
  2110. "__type__": "cc.Vec3",
  2111. "x": 688.264,
  2112. "y": -30.589,
  2113. "z": 0
  2114. },
  2115. "_lrot": {
  2116. "__type__": "cc.Quat",
  2117. "x": 0,
  2118. "y": 0,
  2119. "z": 0,
  2120. "w": 1
  2121. },
  2122. "_lscale": {
  2123. "__type__": "cc.Vec3",
  2124. "x": 1,
  2125. "y": 1,
  2126. "z": 1
  2127. },
  2128. "_mobility": 0,
  2129. "_layer": 33554432,
  2130. "_euler": {
  2131. "__type__": "cc.Vec3",
  2132. "x": 0,
  2133. "y": 0,
  2134. "z": 0
  2135. },
  2136. "_id": "5czpEq8BRNZK7By8fqRQgC"
  2137. },
  2138. {
  2139. "__type__": "cc.UITransform",
  2140. "_name": "",
  2141. "_objFlags": 0,
  2142. "node": {
  2143. "__id__": 56
  2144. },
  2145. "_enabled": true,
  2146. "__prefab": null,
  2147. "_contentSize": {
  2148. "__type__": "cc.Size",
  2149. "width": 254,
  2150. "height": 119
  2151. },
  2152. "_anchorPoint": {
  2153. "__type__": "cc.Vec2",
  2154. "x": 0.5,
  2155. "y": 0.5
  2156. },
  2157. "_id": "74X9rRii9Fk4gA0Mh6gCJA"
  2158. },
  2159. {
  2160. "__type__": "cc.Sprite",
  2161. "_name": "",
  2162. "_objFlags": 0,
  2163. "node": {
  2164. "__id__": 56
  2165. },
  2166. "_enabled": true,
  2167. "__prefab": null,
  2168. "_customMaterial": null,
  2169. "_srcBlendFactor": 2,
  2170. "_dstBlendFactor": 4,
  2171. "_color": {
  2172. "__type__": "cc.Color",
  2173. "r": 255,
  2174. "g": 255,
  2175. "b": 255,
  2176. "a": 255
  2177. },
  2178. "_spriteFrame": {
  2179. "__uuid__": "a29862b1-9a17-4a49-a34f-0007e87e5a96@f9941",
  2180. "__expectedType__": "cc.SpriteFrame"
  2181. },
  2182. "_type": 0,
  2183. "_fillType": 0,
  2184. "_sizeMode": 0,
  2185. "_fillCenter": {
  2186. "__type__": "cc.Vec2",
  2187. "x": 0,
  2188. "y": 0
  2189. },
  2190. "_fillStart": 0,
  2191. "_fillRange": 0,
  2192. "_isTrimmedMode": true,
  2193. "_useGrayscale": false,
  2194. "_atlas": null,
  2195. "_id": "df49DO1ABJx636rdXfCPmg"
  2196. },
  2197. {
  2198. "__type__": "cc.Node",
  2199. "_name": "fish-005",
  2200. "_objFlags": 0,
  2201. "_parent": {
  2202. "__id__": 43
  2203. },
  2204. "_children": [],
  2205. "_active": true,
  2206. "_components": [
  2207. {
  2208. "__id__": 60
  2209. },
  2210. {
  2211. "__id__": 61
  2212. }
  2213. ],
  2214. "_prefab": null,
  2215. "_lpos": {
  2216. "__type__": "cc.Vec3",
  2217. "x": 344.133,
  2218. "y": -172.065,
  2219. "z": 0
  2220. },
  2221. "_lrot": {
  2222. "__type__": "cc.Quat",
  2223. "x": 0,
  2224. "y": 0,
  2225. "z": 0,
  2226. "w": 1
  2227. },
  2228. "_lscale": {
  2229. "__type__": "cc.Vec3",
  2230. "x": 1,
  2231. "y": 1,
  2232. "z": 1
  2233. },
  2234. "_mobility": 0,
  2235. "_layer": 33554432,
  2236. "_euler": {
  2237. "__type__": "cc.Vec3",
  2238. "x": 0,
  2239. "y": 0,
  2240. "z": 0
  2241. },
  2242. "_id": "2b6UnhRAVHY4N5Q1Sg8QP9"
  2243. },
  2244. {
  2245. "__type__": "cc.UITransform",
  2246. "_name": "",
  2247. "_objFlags": 0,
  2248. "node": {
  2249. "__id__": 59
  2250. },
  2251. "_enabled": true,
  2252. "__prefab": null,
  2253. "_contentSize": {
  2254. "__type__": "cc.Size",
  2255. "width": 242,
  2256. "height": 194
  2257. },
  2258. "_anchorPoint": {
  2259. "__type__": "cc.Vec2",
  2260. "x": 0.5,
  2261. "y": 0.5
  2262. },
  2263. "_id": "7cwfETQfNJYJPK6rRSI9mQ"
  2264. },
  2265. {
  2266. "__type__": "cc.Sprite",
  2267. "_name": "",
  2268. "_objFlags": 0,
  2269. "node": {
  2270. "__id__": 59
  2271. },
  2272. "_enabled": true,
  2273. "__prefab": null,
  2274. "_customMaterial": null,
  2275. "_srcBlendFactor": 2,
  2276. "_dstBlendFactor": 4,
  2277. "_color": {
  2278. "__type__": "cc.Color",
  2279. "r": 255,
  2280. "g": 255,
  2281. "b": 255,
  2282. "a": 255
  2283. },
  2284. "_spriteFrame": {
  2285. "__uuid__": "d309e3da-b829-478d-9286-cfa03a2c0e7b@f9941",
  2286. "__expectedType__": "cc.SpriteFrame"
  2287. },
  2288. "_type": 0,
  2289. "_fillType": 0,
  2290. "_sizeMode": 0,
  2291. "_fillCenter": {
  2292. "__type__": "cc.Vec2",
  2293. "x": 0,
  2294. "y": 0
  2295. },
  2296. "_fillStart": 0,
  2297. "_fillRange": 0,
  2298. "_isTrimmedMode": true,
  2299. "_useGrayscale": false,
  2300. "_atlas": null,
  2301. "_id": "6aqIWKWTlNFqAdousuIBgw"
  2302. },
  2303. {
  2304. "__type__": "cc.Node",
  2305. "_name": "fish-006",
  2306. "_objFlags": 0,
  2307. "_parent": {
  2308. "__id__": 43
  2309. },
  2310. "_children": [],
  2311. "_active": true,
  2312. "_components": [
  2313. {
  2314. "__id__": 63
  2315. },
  2316. {
  2317. "__id__": 64
  2318. }
  2319. ],
  2320. "_prefab": null,
  2321. "_lpos": {
  2322. "__type__": "cc.Vec3",
  2323. "x": 600.319,
  2324. "y": 409.135,
  2325. "z": 0
  2326. },
  2327. "_lrot": {
  2328. "__type__": "cc.Quat",
  2329. "x": 0,
  2330. "y": 0,
  2331. "z": 0,
  2332. "w": 1
  2333. },
  2334. "_lscale": {
  2335. "__type__": "cc.Vec3",
  2336. "x": 1,
  2337. "y": 1,
  2338. "z": 1
  2339. },
  2340. "_mobility": 0,
  2341. "_layer": 33554432,
  2342. "_euler": {
  2343. "__type__": "cc.Vec3",
  2344. "x": 0,
  2345. "y": 0,
  2346. "z": 0
  2347. },
  2348. "_id": "c8M2nI8dxGubQRiln2Ii8U"
  2349. },
  2350. {
  2351. "__type__": "cc.UITransform",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 62
  2356. },
  2357. "_enabled": true,
  2358. "__prefab": null,
  2359. "_contentSize": {
  2360. "__type__": "cc.Size",
  2361. "width": 229,
  2362. "height": 154
  2363. },
  2364. "_anchorPoint": {
  2365. "__type__": "cc.Vec2",
  2366. "x": 0.5,
  2367. "y": 0.5
  2368. },
  2369. "_id": "8cCPii20dFXrkyI6bhz+xU"
  2370. },
  2371. {
  2372. "__type__": "cc.Sprite",
  2373. "_name": "",
  2374. "_objFlags": 0,
  2375. "node": {
  2376. "__id__": 62
  2377. },
  2378. "_enabled": true,
  2379. "__prefab": null,
  2380. "_customMaterial": null,
  2381. "_srcBlendFactor": 2,
  2382. "_dstBlendFactor": 4,
  2383. "_color": {
  2384. "__type__": "cc.Color",
  2385. "r": 255,
  2386. "g": 255,
  2387. "b": 255,
  2388. "a": 255
  2389. },
  2390. "_spriteFrame": {
  2391. "__uuid__": "6e7271d0-e4ff-4645-a370-ba7a6d0f3abb@f9941",
  2392. "__expectedType__": "cc.SpriteFrame"
  2393. },
  2394. "_type": 0,
  2395. "_fillType": 0,
  2396. "_sizeMode": 0,
  2397. "_fillCenter": {
  2398. "__type__": "cc.Vec2",
  2399. "x": 0,
  2400. "y": 0
  2401. },
  2402. "_fillStart": 0,
  2403. "_fillRange": 0,
  2404. "_isTrimmedMode": true,
  2405. "_useGrayscale": false,
  2406. "_atlas": null,
  2407. "_id": "5edFsjJKJERb6xObSQuRrb"
  2408. },
  2409. {
  2410. "__type__": "cc.UITransform",
  2411. "_name": "",
  2412. "_objFlags": 0,
  2413. "node": {
  2414. "__id__": 43
  2415. },
  2416. "_enabled": true,
  2417. "__prefab": null,
  2418. "_contentSize": {
  2419. "__type__": "cc.Size",
  2420. "width": 100,
  2421. "height": 100
  2422. },
  2423. "_anchorPoint": {
  2424. "__type__": "cc.Vec2",
  2425. "x": 0.5,
  2426. "y": 0.5
  2427. },
  2428. "_id": "31Gg27Y9xMAJ036q1GhMwj"
  2429. },
  2430. {
  2431. "__type__": "cc.Node",
  2432. "_name": "resultNode",
  2433. "_objFlags": 0,
  2434. "_parent": {
  2435. "__id__": 16
  2436. },
  2437. "_children": [
  2438. {
  2439. "__id__": 67
  2440. },
  2441. {
  2442. "__id__": 75
  2443. },
  2444. {
  2445. "__id__": 83
  2446. }
  2447. ],
  2448. "_active": false,
  2449. "_components": [
  2450. {
  2451. "__id__": 91
  2452. }
  2453. ],
  2454. "_prefab": null,
  2455. "_lpos": {
  2456. "__type__": "cc.Vec3",
  2457. "x": 0,
  2458. "y": 0,
  2459. "z": 0
  2460. },
  2461. "_lrot": {
  2462. "__type__": "cc.Quat",
  2463. "x": 0,
  2464. "y": 0,
  2465. "z": 0,
  2466. "w": 1
  2467. },
  2468. "_lscale": {
  2469. "__type__": "cc.Vec3",
  2470. "x": 1,
  2471. "y": 1,
  2472. "z": 1
  2473. },
  2474. "_mobility": 0,
  2475. "_layer": 33554432,
  2476. "_euler": {
  2477. "__type__": "cc.Vec3",
  2478. "x": 0,
  2479. "y": 0,
  2480. "z": 0
  2481. },
  2482. "_id": "b8khDiKu1G+pPfSmmDir7C"
  2483. },
  2484. {
  2485. "__type__": "cc.Node",
  2486. "_name": "Button",
  2487. "_objFlags": 0,
  2488. "_parent": {
  2489. "__id__": 66
  2490. },
  2491. "_children": [
  2492. {
  2493. "__id__": 68
  2494. }
  2495. ],
  2496. "_active": true,
  2497. "_components": [
  2498. {
  2499. "__id__": 71
  2500. },
  2501. {
  2502. "__id__": 72
  2503. },
  2504. {
  2505. "__id__": 73
  2506. }
  2507. ],
  2508. "_prefab": null,
  2509. "_lpos": {
  2510. "__type__": "cc.Vec3",
  2511. "x": -157.789,
  2512. "y": -489.146,
  2513. "z": 0
  2514. },
  2515. "_lrot": {
  2516. "__type__": "cc.Quat",
  2517. "x": 0,
  2518. "y": 0,
  2519. "z": 0,
  2520. "w": 1
  2521. },
  2522. "_lscale": {
  2523. "__type__": "cc.Vec3",
  2524. "x": 1,
  2525. "y": 1,
  2526. "z": 1
  2527. },
  2528. "_mobility": 0,
  2529. "_layer": 33554432,
  2530. "_euler": {
  2531. "__type__": "cc.Vec3",
  2532. "x": 0,
  2533. "y": 0,
  2534. "z": 0
  2535. },
  2536. "_id": "bcdjSI0aJC8YCBXhPHNnMH"
  2537. },
  2538. {
  2539. "__type__": "cc.Node",
  2540. "_name": "Label",
  2541. "_objFlags": 0,
  2542. "_parent": {
  2543. "__id__": 67
  2544. },
  2545. "_children": [],
  2546. "_active": true,
  2547. "_components": [
  2548. {
  2549. "__id__": 69
  2550. },
  2551. {
  2552. "__id__": 70
  2553. }
  2554. ],
  2555. "_prefab": null,
  2556. "_lpos": {
  2557. "__type__": "cc.Vec3",
  2558. "x": 3.9445000000000014,
  2559. "y": -3.9444999999999997,
  2560. "z": 0
  2561. },
  2562. "_lrot": {
  2563. "__type__": "cc.Quat",
  2564. "x": 0,
  2565. "y": 0,
  2566. "z": 0,
  2567. "w": 1
  2568. },
  2569. "_lscale": {
  2570. "__type__": "cc.Vec3",
  2571. "x": 1,
  2572. "y": 1,
  2573. "z": 1
  2574. },
  2575. "_mobility": 0,
  2576. "_layer": 33554432,
  2577. "_euler": {
  2578. "__type__": "cc.Vec3",
  2579. "x": 0,
  2580. "y": 0,
  2581. "z": 0
  2582. },
  2583. "_id": "47hf5/X2ZKgbFeW7C1GrXv"
  2584. },
  2585. {
  2586. "__type__": "cc.UITransform",
  2587. "_name": "",
  2588. "_objFlags": 0,
  2589. "node": {
  2590. "__id__": 68
  2591. },
  2592. "_enabled": true,
  2593. "__prefab": null,
  2594. "_contentSize": {
  2595. "__type__": "cc.Size",
  2596. "width": 223.601,
  2597. "height": 89.967
  2598. },
  2599. "_anchorPoint": {
  2600. "__type__": "cc.Vec2",
  2601. "x": 0.5,
  2602. "y": 0.5
  2603. },
  2604. "_id": "5519vHNURIJo0p6u/uLt4r"
  2605. },
  2606. {
  2607. "__type__": "cc.Label",
  2608. "_name": "",
  2609. "_objFlags": 0,
  2610. "node": {
  2611. "__id__": 68
  2612. },
  2613. "_enabled": true,
  2614. "__prefab": null,
  2615. "_customMaterial": null,
  2616. "_srcBlendFactor": 2,
  2617. "_dstBlendFactor": 4,
  2618. "_color": {
  2619. "__type__": "cc.Color",
  2620. "r": 0,
  2621. "g": 0,
  2622. "b": 0,
  2623. "a": 255
  2624. },
  2625. "_string": "111",
  2626. "_horizontalAlign": 1,
  2627. "_verticalAlign": 1,
  2628. "_actualFontSize": 60,
  2629. "_fontSize": 60,
  2630. "_fontFamily": "Arial",
  2631. "_lineHeight": 40,
  2632. "_overflow": 1,
  2633. "_enableWrapText": false,
  2634. "_font": null,
  2635. "_isSystemFontUsed": true,
  2636. "_spacingX": 0,
  2637. "_isItalic": false,
  2638. "_isBold": false,
  2639. "_isUnderline": false,
  2640. "_underlineHeight": 2,
  2641. "_cacheMode": 0,
  2642. "_id": "39kJQFTSFPkroQSRDZ28Ag"
  2643. },
  2644. {
  2645. "__type__": "cc.UITransform",
  2646. "_name": "",
  2647. "_objFlags": 0,
  2648. "node": {
  2649. "__id__": 67
  2650. },
  2651. "_enabled": true,
  2652. "__prefab": null,
  2653. "_contentSize": {
  2654. "__type__": "cc.Size",
  2655. "width": 312,
  2656. "height": 136
  2657. },
  2658. "_anchorPoint": {
  2659. "__type__": "cc.Vec2",
  2660. "x": 0.5,
  2661. "y": 0.5
  2662. },
  2663. "_id": "28SVqum1FLIoQL4mFF5uxK"
  2664. },
  2665. {
  2666. "__type__": "cc.Sprite",
  2667. "_name": "",
  2668. "_objFlags": 0,
  2669. "node": {
  2670. "__id__": 67
  2671. },
  2672. "_enabled": true,
  2673. "__prefab": null,
  2674. "_customMaterial": null,
  2675. "_srcBlendFactor": 2,
  2676. "_dstBlendFactor": 4,
  2677. "_color": {
  2678. "__type__": "cc.Color",
  2679. "r": 255,
  2680. "g": 255,
  2681. "b": 255,
  2682. "a": 255
  2683. },
  2684. "_spriteFrame": {
  2685. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  2686. "__expectedType__": "cc.SpriteFrame"
  2687. },
  2688. "_type": 1,
  2689. "_fillType": 0,
  2690. "_sizeMode": 2,
  2691. "_fillCenter": {
  2692. "__type__": "cc.Vec2",
  2693. "x": 0,
  2694. "y": 0
  2695. },
  2696. "_fillStart": 0,
  2697. "_fillRange": 0,
  2698. "_isTrimmedMode": true,
  2699. "_useGrayscale": false,
  2700. "_atlas": null,
  2701. "_id": "77rfCg8Z9NQJ12antpQYmk"
  2702. },
  2703. {
  2704. "__type__": "cc.Button",
  2705. "_name": "",
  2706. "_objFlags": 0,
  2707. "node": {
  2708. "__id__": 67
  2709. },
  2710. "_enabled": true,
  2711. "__prefab": null,
  2712. "clickEvents": [
  2713. {
  2714. "__id__": 74
  2715. }
  2716. ],
  2717. "_interactable": true,
  2718. "_transition": 3,
  2719. "_normalColor": {
  2720. "__type__": "cc.Color",
  2721. "r": 214,
  2722. "g": 214,
  2723. "b": 214,
  2724. "a": 255
  2725. },
  2726. "_hoverColor": {
  2727. "__type__": "cc.Color",
  2728. "r": 211,
  2729. "g": 211,
  2730. "b": 211,
  2731. "a": 255
  2732. },
  2733. "_pressedColor": {
  2734. "__type__": "cc.Color",
  2735. "r": 255,
  2736. "g": 255,
  2737. "b": 255,
  2738. "a": 255
  2739. },
  2740. "_disabledColor": {
  2741. "__type__": "cc.Color",
  2742. "r": 124,
  2743. "g": 124,
  2744. "b": 124,
  2745. "a": 255
  2746. },
  2747. "_normalSprite": {
  2748. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  2749. "__expectedType__": "cc.SpriteFrame"
  2750. },
  2751. "_hoverSprite": null,
  2752. "_pressedSprite": null,
  2753. "_disabledSprite": null,
  2754. "_duration": 0.1,
  2755. "_zoomScale": 1.2,
  2756. "_target": {
  2757. "__id__": 67
  2758. },
  2759. "_id": "3apaOYjMxPgaT9ZzbX3gNy"
  2760. },
  2761. {
  2762. "__type__": "cc.ClickEvent",
  2763. "target": {
  2764. "__id__": 16
  2765. },
  2766. "component": "",
  2767. "_componentId": "70c94/HGKxOwqca6JUm540e",
  2768. "handler": "OnResultClick",
  2769. "customEventData": "0"
  2770. },
  2771. {
  2772. "__type__": "cc.Node",
  2773. "_name": "Button-001",
  2774. "_objFlags": 0,
  2775. "_parent": {
  2776. "__id__": 66
  2777. },
  2778. "_children": [
  2779. {
  2780. "__id__": 76
  2781. }
  2782. ],
  2783. "_active": true,
  2784. "_components": [
  2785. {
  2786. "__id__": 79
  2787. },
  2788. {
  2789. "__id__": 80
  2790. },
  2791. {
  2792. "__id__": 81
  2793. }
  2794. ],
  2795. "_prefab": null,
  2796. "_lpos": {
  2797. "__type__": "cc.Vec3",
  2798. "x": 202.496,
  2799. "y": -489.146,
  2800. "z": 0
  2801. },
  2802. "_lrot": {
  2803. "__type__": "cc.Quat",
  2804. "x": 0,
  2805. "y": 0,
  2806. "z": 0,
  2807. "w": 1
  2808. },
  2809. "_lscale": {
  2810. "__type__": "cc.Vec3",
  2811. "x": 1,
  2812. "y": 1,
  2813. "z": 1
  2814. },
  2815. "_mobility": 0,
  2816. "_layer": 33554432,
  2817. "_euler": {
  2818. "__type__": "cc.Vec3",
  2819. "x": 0,
  2820. "y": 0,
  2821. "z": 0
  2822. },
  2823. "_id": "6bDgjItitPcaz38/VguIzD"
  2824. },
  2825. {
  2826. "__type__": "cc.Node",
  2827. "_name": "Label",
  2828. "_objFlags": 0,
  2829. "_parent": {
  2830. "__id__": 75
  2831. },
  2832. "_children": [],
  2833. "_active": true,
  2834. "_components": [
  2835. {
  2836. "__id__": 77
  2837. },
  2838. {
  2839. "__id__": 78
  2840. }
  2841. ],
  2842. "_prefab": null,
  2843. "_lpos": {
  2844. "__type__": "cc.Vec3",
  2845. "x": 3.9445000000000014,
  2846. "y": -3.9444999999999997,
  2847. "z": 0
  2848. },
  2849. "_lrot": {
  2850. "__type__": "cc.Quat",
  2851. "x": 0,
  2852. "y": 0,
  2853. "z": 0,
  2854. "w": 1
  2855. },
  2856. "_lscale": {
  2857. "__type__": "cc.Vec3",
  2858. "x": 1,
  2859. "y": 1,
  2860. "z": 1
  2861. },
  2862. "_mobility": 0,
  2863. "_layer": 33554432,
  2864. "_euler": {
  2865. "__type__": "cc.Vec3",
  2866. "x": 0,
  2867. "y": 0,
  2868. "z": 0
  2869. },
  2870. "_id": "78r032P9ZCB413HQlajFhd"
  2871. },
  2872. {
  2873. "__type__": "cc.UITransform",
  2874. "_name": "",
  2875. "_objFlags": 0,
  2876. "node": {
  2877. "__id__": 76
  2878. },
  2879. "_enabled": true,
  2880. "__prefab": null,
  2881. "_contentSize": {
  2882. "__type__": "cc.Size",
  2883. "width": 223.601,
  2884. "height": 89.967
  2885. },
  2886. "_anchorPoint": {
  2887. "__type__": "cc.Vec2",
  2888. "x": 0.5,
  2889. "y": 0.5
  2890. },
  2891. "_id": "54+GEdj9JFaJt+NX+Jwsig"
  2892. },
  2893. {
  2894. "__type__": "cc.Label",
  2895. "_name": "",
  2896. "_objFlags": 0,
  2897. "node": {
  2898. "__id__": 76
  2899. },
  2900. "_enabled": true,
  2901. "__prefab": null,
  2902. "_customMaterial": null,
  2903. "_srcBlendFactor": 2,
  2904. "_dstBlendFactor": 4,
  2905. "_color": {
  2906. "__type__": "cc.Color",
  2907. "r": 0,
  2908. "g": 0,
  2909. "b": 0,
  2910. "a": 255
  2911. },
  2912. "_string": "111",
  2913. "_horizontalAlign": 1,
  2914. "_verticalAlign": 1,
  2915. "_actualFontSize": 60,
  2916. "_fontSize": 60,
  2917. "_fontFamily": "Arial",
  2918. "_lineHeight": 40,
  2919. "_overflow": 1,
  2920. "_enableWrapText": false,
  2921. "_font": null,
  2922. "_isSystemFontUsed": true,
  2923. "_spacingX": 0,
  2924. "_isItalic": false,
  2925. "_isBold": false,
  2926. "_isUnderline": false,
  2927. "_underlineHeight": 2,
  2928. "_cacheMode": 0,
  2929. "_id": "48aRSkObZEq7N3cjUoYO87"
  2930. },
  2931. {
  2932. "__type__": "cc.UITransform",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "node": {
  2936. "__id__": 75
  2937. },
  2938. "_enabled": true,
  2939. "__prefab": null,
  2940. "_contentSize": {
  2941. "__type__": "cc.Size",
  2942. "width": 312,
  2943. "height": 136
  2944. },
  2945. "_anchorPoint": {
  2946. "__type__": "cc.Vec2",
  2947. "x": 0.5,
  2948. "y": 0.5
  2949. },
  2950. "_id": "e0ZUBppvFJcbv4Wj2KuMA3"
  2951. },
  2952. {
  2953. "__type__": "cc.Sprite",
  2954. "_name": "",
  2955. "_objFlags": 0,
  2956. "node": {
  2957. "__id__": 75
  2958. },
  2959. "_enabled": true,
  2960. "__prefab": null,
  2961. "_customMaterial": null,
  2962. "_srcBlendFactor": 2,
  2963. "_dstBlendFactor": 4,
  2964. "_color": {
  2965. "__type__": "cc.Color",
  2966. "r": 255,
  2967. "g": 255,
  2968. "b": 255,
  2969. "a": 255
  2970. },
  2971. "_spriteFrame": {
  2972. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  2973. "__expectedType__": "cc.SpriteFrame"
  2974. },
  2975. "_type": 1,
  2976. "_fillType": 0,
  2977. "_sizeMode": 2,
  2978. "_fillCenter": {
  2979. "__type__": "cc.Vec2",
  2980. "x": 0,
  2981. "y": 0
  2982. },
  2983. "_fillStart": 0,
  2984. "_fillRange": 0,
  2985. "_isTrimmedMode": true,
  2986. "_useGrayscale": false,
  2987. "_atlas": null,
  2988. "_id": "3e0jKovJlBTJsca7r9W548"
  2989. },
  2990. {
  2991. "__type__": "cc.Button",
  2992. "_name": "",
  2993. "_objFlags": 0,
  2994. "node": {
  2995. "__id__": 75
  2996. },
  2997. "_enabled": true,
  2998. "__prefab": null,
  2999. "clickEvents": [
  3000. {
  3001. "__id__": 82
  3002. }
  3003. ],
  3004. "_interactable": true,
  3005. "_transition": 3,
  3006. "_normalColor": {
  3007. "__type__": "cc.Color",
  3008. "r": 214,
  3009. "g": 214,
  3010. "b": 214,
  3011. "a": 255
  3012. },
  3013. "_hoverColor": {
  3014. "__type__": "cc.Color",
  3015. "r": 211,
  3016. "g": 211,
  3017. "b": 211,
  3018. "a": 255
  3019. },
  3020. "_pressedColor": {
  3021. "__type__": "cc.Color",
  3022. "r": 255,
  3023. "g": 255,
  3024. "b": 255,
  3025. "a": 255
  3026. },
  3027. "_disabledColor": {
  3028. "__type__": "cc.Color",
  3029. "r": 124,
  3030. "g": 124,
  3031. "b": 124,
  3032. "a": 255
  3033. },
  3034. "_normalSprite": {
  3035. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  3036. "__expectedType__": "cc.SpriteFrame"
  3037. },
  3038. "_hoverSprite": null,
  3039. "_pressedSprite": null,
  3040. "_disabledSprite": null,
  3041. "_duration": 0.1,
  3042. "_zoomScale": 1.2,
  3043. "_target": {
  3044. "__id__": 75
  3045. },
  3046. "_id": "94o++I8cpBL5LLnttWdsQW"
  3047. },
  3048. {
  3049. "__type__": "cc.ClickEvent",
  3050. "target": {
  3051. "__id__": 16
  3052. },
  3053. "component": "",
  3054. "_componentId": "70c94/HGKxOwqca6JUm540e",
  3055. "handler": "OnResultClick",
  3056. "customEventData": "1"
  3057. },
  3058. {
  3059. "__type__": "cc.Node",
  3060. "_name": "Button-002",
  3061. "_objFlags": 0,
  3062. "_parent": {
  3063. "__id__": 66
  3064. },
  3065. "_children": [
  3066. {
  3067. "__id__": 84
  3068. }
  3069. ],
  3070. "_active": true,
  3071. "_components": [
  3072. {
  3073. "__id__": 87
  3074. },
  3075. {
  3076. "__id__": 88
  3077. },
  3078. {
  3079. "__id__": 89
  3080. }
  3081. ],
  3082. "_prefab": null,
  3083. "_lpos": {
  3084. "__type__": "cc.Vec3",
  3085. "x": 536.483,
  3086. "y": -489.146,
  3087. "z": 0
  3088. },
  3089. "_lrot": {
  3090. "__type__": "cc.Quat",
  3091. "x": 0,
  3092. "y": 0,
  3093. "z": 0,
  3094. "w": 1
  3095. },
  3096. "_lscale": {
  3097. "__type__": "cc.Vec3",
  3098. "x": 1,
  3099. "y": 1,
  3100. "z": 1
  3101. },
  3102. "_mobility": 0,
  3103. "_layer": 33554432,
  3104. "_euler": {
  3105. "__type__": "cc.Vec3",
  3106. "x": 0,
  3107. "y": 0,
  3108. "z": 0
  3109. },
  3110. "_id": "feibnd3ElJQ7YRTBaurktg"
  3111. },
  3112. {
  3113. "__type__": "cc.Node",
  3114. "_name": "Label",
  3115. "_objFlags": 0,
  3116. "_parent": {
  3117. "__id__": 83
  3118. },
  3119. "_children": [],
  3120. "_active": true,
  3121. "_components": [
  3122. {
  3123. "__id__": 85
  3124. },
  3125. {
  3126. "__id__": 86
  3127. }
  3128. ],
  3129. "_prefab": null,
  3130. "_lpos": {
  3131. "__type__": "cc.Vec3",
  3132. "x": 3.9445000000000014,
  3133. "y": -3.9444999999999997,
  3134. "z": 0
  3135. },
  3136. "_lrot": {
  3137. "__type__": "cc.Quat",
  3138. "x": 0,
  3139. "y": 0,
  3140. "z": 0,
  3141. "w": 1
  3142. },
  3143. "_lscale": {
  3144. "__type__": "cc.Vec3",
  3145. "x": 1,
  3146. "y": 1,
  3147. "z": 1
  3148. },
  3149. "_mobility": 0,
  3150. "_layer": 33554432,
  3151. "_euler": {
  3152. "__type__": "cc.Vec3",
  3153. "x": 0,
  3154. "y": 0,
  3155. "z": 0
  3156. },
  3157. "_id": "4967smNcNKB44YX+kIJkBf"
  3158. },
  3159. {
  3160. "__type__": "cc.UITransform",
  3161. "_name": "",
  3162. "_objFlags": 0,
  3163. "node": {
  3164. "__id__": 84
  3165. },
  3166. "_enabled": true,
  3167. "__prefab": null,
  3168. "_contentSize": {
  3169. "__type__": "cc.Size",
  3170. "width": 223.601,
  3171. "height": 89.967
  3172. },
  3173. "_anchorPoint": {
  3174. "__type__": "cc.Vec2",
  3175. "x": 0.5,
  3176. "y": 0.5
  3177. },
  3178. "_id": "0d45JNYkdLNYqmaZJXQ2+c"
  3179. },
  3180. {
  3181. "__type__": "cc.Label",
  3182. "_name": "",
  3183. "_objFlags": 0,
  3184. "node": {
  3185. "__id__": 84
  3186. },
  3187. "_enabled": true,
  3188. "__prefab": null,
  3189. "_customMaterial": null,
  3190. "_srcBlendFactor": 2,
  3191. "_dstBlendFactor": 4,
  3192. "_color": {
  3193. "__type__": "cc.Color",
  3194. "r": 0,
  3195. "g": 0,
  3196. "b": 0,
  3197. "a": 255
  3198. },
  3199. "_string": "111",
  3200. "_horizontalAlign": 1,
  3201. "_verticalAlign": 1,
  3202. "_actualFontSize": 60,
  3203. "_fontSize": 60,
  3204. "_fontFamily": "Arial",
  3205. "_lineHeight": 40,
  3206. "_overflow": 1,
  3207. "_enableWrapText": false,
  3208. "_font": null,
  3209. "_isSystemFontUsed": true,
  3210. "_spacingX": 0,
  3211. "_isItalic": false,
  3212. "_isBold": false,
  3213. "_isUnderline": false,
  3214. "_underlineHeight": 2,
  3215. "_cacheMode": 0,
  3216. "_id": "84Eka5fD5MuLXIWmIEUYn9"
  3217. },
  3218. {
  3219. "__type__": "cc.UITransform",
  3220. "_name": "",
  3221. "_objFlags": 0,
  3222. "node": {
  3223. "__id__": 83
  3224. },
  3225. "_enabled": true,
  3226. "__prefab": null,
  3227. "_contentSize": {
  3228. "__type__": "cc.Size",
  3229. "width": 312,
  3230. "height": 136
  3231. },
  3232. "_anchorPoint": {
  3233. "__type__": "cc.Vec2",
  3234. "x": 0.5,
  3235. "y": 0.5
  3236. },
  3237. "_id": "5dPgleiLxLT6guzYpOXxhR"
  3238. },
  3239. {
  3240. "__type__": "cc.Sprite",
  3241. "_name": "",
  3242. "_objFlags": 0,
  3243. "node": {
  3244. "__id__": 83
  3245. },
  3246. "_enabled": true,
  3247. "__prefab": null,
  3248. "_customMaterial": null,
  3249. "_srcBlendFactor": 2,
  3250. "_dstBlendFactor": 4,
  3251. "_color": {
  3252. "__type__": "cc.Color",
  3253. "r": 255,
  3254. "g": 255,
  3255. "b": 255,
  3256. "a": 255
  3257. },
  3258. "_spriteFrame": {
  3259. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  3260. "__expectedType__": "cc.SpriteFrame"
  3261. },
  3262. "_type": 1,
  3263. "_fillType": 0,
  3264. "_sizeMode": 2,
  3265. "_fillCenter": {
  3266. "__type__": "cc.Vec2",
  3267. "x": 0,
  3268. "y": 0
  3269. },
  3270. "_fillStart": 0,
  3271. "_fillRange": 0,
  3272. "_isTrimmedMode": true,
  3273. "_useGrayscale": false,
  3274. "_atlas": null,
  3275. "_id": "26TkjW95VEvpGMWnD//A6U"
  3276. },
  3277. {
  3278. "__type__": "cc.Button",
  3279. "_name": "",
  3280. "_objFlags": 0,
  3281. "node": {
  3282. "__id__": 83
  3283. },
  3284. "_enabled": true,
  3285. "__prefab": null,
  3286. "clickEvents": [
  3287. {
  3288. "__id__": 90
  3289. }
  3290. ],
  3291. "_interactable": true,
  3292. "_transition": 3,
  3293. "_normalColor": {
  3294. "__type__": "cc.Color",
  3295. "r": 214,
  3296. "g": 214,
  3297. "b": 214,
  3298. "a": 255
  3299. },
  3300. "_hoverColor": {
  3301. "__type__": "cc.Color",
  3302. "r": 211,
  3303. "g": 211,
  3304. "b": 211,
  3305. "a": 255
  3306. },
  3307. "_pressedColor": {
  3308. "__type__": "cc.Color",
  3309. "r": 255,
  3310. "g": 255,
  3311. "b": 255,
  3312. "a": 255
  3313. },
  3314. "_disabledColor": {
  3315. "__type__": "cc.Color",
  3316. "r": 124,
  3317. "g": 124,
  3318. "b": 124,
  3319. "a": 255
  3320. },
  3321. "_normalSprite": {
  3322. "__uuid__": "4f65d819-d5b4-4416-a7a7-cd327effd315@f9941",
  3323. "__expectedType__": "cc.SpriteFrame"
  3324. },
  3325. "_hoverSprite": null,
  3326. "_pressedSprite": null,
  3327. "_disabledSprite": null,
  3328. "_duration": 0.1,
  3329. "_zoomScale": 1.2,
  3330. "_target": {
  3331. "__id__": 83
  3332. },
  3333. "_id": "38Eqo+EOVDAp3wdgKBoiPs"
  3334. },
  3335. {
  3336. "__type__": "cc.ClickEvent",
  3337. "target": {
  3338. "__id__": 16
  3339. },
  3340. "component": "",
  3341. "_componentId": "70c94/HGKxOwqca6JUm540e",
  3342. "handler": "OnResultClick",
  3343. "customEventData": "2"
  3344. },
  3345. {
  3346. "__type__": "cc.UITransform",
  3347. "_name": "",
  3348. "_objFlags": 0,
  3349. "node": {
  3350. "__id__": 66
  3351. },
  3352. "_enabled": true,
  3353. "__prefab": null,
  3354. "_contentSize": {
  3355. "__type__": "cc.Size",
  3356. "width": 100,
  3357. "height": 100
  3358. },
  3359. "_anchorPoint": {
  3360. "__type__": "cc.Vec2",
  3361. "x": 0.5,
  3362. "y": 0.5
  3363. },
  3364. "_id": "cd2t2IS1lEE7zQBQ7nZVNp"
  3365. },
  3366. {
  3367. "__type__": "cc.Node",
  3368. "_name": "nextNode",
  3369. "_objFlags": 0,
  3370. "_parent": {
  3371. "__id__": 16
  3372. },
  3373. "_children": [
  3374. {
  3375. "__id__": 93
  3376. },
  3377. {
  3378. "__id__": 96
  3379. },
  3380. {
  3381. "__id__": 99
  3382. },
  3383. {
  3384. "__id__": 102
  3385. },
  3386. {
  3387. "__id__": 105
  3388. },
  3389. {
  3390. "__id__": 108
  3391. },
  3392. {
  3393. "__id__": 111
  3394. },
  3395. {
  3396. "__id__": 117
  3397. }
  3398. ],
  3399. "_active": false,
  3400. "_components": [
  3401. {
  3402. "__id__": 125
  3403. }
  3404. ],
  3405. "_prefab": null,
  3406. "_lpos": {
  3407. "__type__": "cc.Vec3",
  3408. "x": 0,
  3409. "y": 0,
  3410. "z": 0
  3411. },
  3412. "_lrot": {
  3413. "__type__": "cc.Quat",
  3414. "x": 0,
  3415. "y": 0,
  3416. "z": 0,
  3417. "w": 1
  3418. },
  3419. "_lscale": {
  3420. "__type__": "cc.Vec3",
  3421. "x": 1,
  3422. "y": 1,
  3423. "z": 1
  3424. },
  3425. "_mobility": 0,
  3426. "_layer": 33554432,
  3427. "_euler": {
  3428. "__type__": "cc.Vec3",
  3429. "x": 0,
  3430. "y": 0,
  3431. "z": 0
  3432. },
  3433. "_id": "86eAoFDuVEVa6WLZRIEGfD"
  3434. },
  3435. {
  3436. "__type__": "cc.Node",
  3437. "_name": "endTipBG",
  3438. "_objFlags": 0,
  3439. "_parent": {
  3440. "__id__": 92
  3441. },
  3442. "_children": [],
  3443. "_active": true,
  3444. "_components": [
  3445. {
  3446. "__id__": 94
  3447. },
  3448. {
  3449. "__id__": 95
  3450. }
  3451. ],
  3452. "_prefab": null,
  3453. "_lpos": {
  3454. "__type__": "cc.Vec3",
  3455. "x": 0,
  3456. "y": 0,
  3457. "z": 0
  3458. },
  3459. "_lrot": {
  3460. "__type__": "cc.Quat",
  3461. "x": 0,
  3462. "y": 0,
  3463. "z": 0,
  3464. "w": 1
  3465. },
  3466. "_lscale": {
  3467. "__type__": "cc.Vec3",
  3468. "x": 1,
  3469. "y": 1,
  3470. "z": 1
  3471. },
  3472. "_mobility": 0,
  3473. "_layer": 33554432,
  3474. "_euler": {
  3475. "__type__": "cc.Vec3",
  3476. "x": 0,
  3477. "y": 0,
  3478. "z": 0
  3479. },
  3480. "_id": "b6iOnCDjxD+p1vnTXs4OoZ"
  3481. },
  3482. {
  3483. "__type__": "cc.UITransform",
  3484. "_name": "",
  3485. "_objFlags": 0,
  3486. "node": {
  3487. "__id__": 93
  3488. },
  3489. "_enabled": true,
  3490. "__prefab": null,
  3491. "_contentSize": {
  3492. "__type__": "cc.Size",
  3493. "width": 1311,
  3494. "height": 806
  3495. },
  3496. "_anchorPoint": {
  3497. "__type__": "cc.Vec2",
  3498. "x": 0.5,
  3499. "y": 0.5
  3500. },
  3501. "_id": "08gmLxDqVHk56wjWCDVouI"
  3502. },
  3503. {
  3504. "__type__": "cc.Sprite",
  3505. "_name": "",
  3506. "_objFlags": 0,
  3507. "node": {
  3508. "__id__": 93
  3509. },
  3510. "_enabled": true,
  3511. "__prefab": null,
  3512. "_customMaterial": null,
  3513. "_srcBlendFactor": 2,
  3514. "_dstBlendFactor": 4,
  3515. "_color": {
  3516. "__type__": "cc.Color",
  3517. "r": 255,
  3518. "g": 255,
  3519. "b": 255,
  3520. "a": 255
  3521. },
  3522. "_spriteFrame": {
  3523. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  3524. "__expectedType__": "cc.SpriteFrame"
  3525. },
  3526. "_type": 0,
  3527. "_fillType": 0,
  3528. "_sizeMode": 1,
  3529. "_fillCenter": {
  3530. "__type__": "cc.Vec2",
  3531. "x": 0,
  3532. "y": 0
  3533. },
  3534. "_fillStart": 0,
  3535. "_fillRange": 0,
  3536. "_isTrimmedMode": true,
  3537. "_useGrayscale": false,
  3538. "_atlas": null,
  3539. "_id": "f6+81nU5hFu5bcj1LpBaAf"
  3540. },
  3541. {
  3542. "__type__": "cc.Node",
  3543. "_name": "end01",
  3544. "_objFlags": 0,
  3545. "_parent": {
  3546. "__id__": 92
  3547. },
  3548. "_children": [],
  3549. "_active": true,
  3550. "_components": [
  3551. {
  3552. "__id__": 97
  3553. },
  3554. {
  3555. "__id__": 98
  3556. }
  3557. ],
  3558. "_prefab": null,
  3559. "_lpos": {
  3560. "__type__": "cc.Vec3",
  3561. "x": 0,
  3562. "y": 374.423,
  3563. "z": 0
  3564. },
  3565. "_lrot": {
  3566. "__type__": "cc.Quat",
  3567. "x": 0,
  3568. "y": 0,
  3569. "z": 0,
  3570. "w": 1
  3571. },
  3572. "_lscale": {
  3573. "__type__": "cc.Vec3",
  3574. "x": 1,
  3575. "y": 1,
  3576. "z": 1
  3577. },
  3578. "_mobility": 0,
  3579. "_layer": 33554432,
  3580. "_euler": {
  3581. "__type__": "cc.Vec3",
  3582. "x": 0,
  3583. "y": 0,
  3584. "z": 0
  3585. },
  3586. "_id": "e12MD3zfFEy6nRpRrqZ2ZU"
  3587. },
  3588. {
  3589. "__type__": "cc.UITransform",
  3590. "_name": "",
  3591. "_objFlags": 0,
  3592. "node": {
  3593. "__id__": 96
  3594. },
  3595. "_enabled": true,
  3596. "__prefab": null,
  3597. "_contentSize": {
  3598. "__type__": "cc.Size",
  3599. "width": 276,
  3600. "height": 276
  3601. },
  3602. "_anchorPoint": {
  3603. "__type__": "cc.Vec2",
  3604. "x": 0.5,
  3605. "y": 0.5
  3606. },
  3607. "_id": "29LAilPmNCtJf4nGxCyehn"
  3608. },
  3609. {
  3610. "__type__": "cc.Sprite",
  3611. "_name": "",
  3612. "_objFlags": 0,
  3613. "node": {
  3614. "__id__": 96
  3615. },
  3616. "_enabled": true,
  3617. "__prefab": null,
  3618. "_customMaterial": null,
  3619. "_srcBlendFactor": 2,
  3620. "_dstBlendFactor": 4,
  3621. "_color": {
  3622. "__type__": "cc.Color",
  3623. "r": 255,
  3624. "g": 255,
  3625. "b": 255,
  3626. "a": 255
  3627. },
  3628. "_spriteFrame": {
  3629. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  3630. "__expectedType__": "cc.SpriteFrame"
  3631. },
  3632. "_type": 0,
  3633. "_fillType": 0,
  3634. "_sizeMode": 1,
  3635. "_fillCenter": {
  3636. "__type__": "cc.Vec2",
  3637. "x": 0,
  3638. "y": 0
  3639. },
  3640. "_fillStart": 0,
  3641. "_fillRange": 0,
  3642. "_isTrimmedMode": true,
  3643. "_useGrayscale": false,
  3644. "_atlas": null,
  3645. "_id": "bd+/LBasRNnLj7+ynIgI7X"
  3646. },
  3647. {
  3648. "__type__": "cc.Node",
  3649. "_name": "end02",
  3650. "_objFlags": 0,
  3651. "_parent": {
  3652. "__id__": 92
  3653. },
  3654. "_children": [],
  3655. "_active": true,
  3656. "_components": [
  3657. {
  3658. "__id__": 100
  3659. },
  3660. {
  3661. "__id__": 101
  3662. }
  3663. ],
  3664. "_prefab": null,
  3665. "_lpos": {
  3666. "__type__": "cc.Vec3",
  3667. "x": 0,
  3668. "y": 374.423,
  3669. "z": 0
  3670. },
  3671. "_lrot": {
  3672. "__type__": "cc.Quat",
  3673. "x": 0,
  3674. "y": 0,
  3675. "z": 0,
  3676. "w": 1
  3677. },
  3678. "_lscale": {
  3679. "__type__": "cc.Vec3",
  3680. "x": 1,
  3681. "y": 1,
  3682. "z": 1
  3683. },
  3684. "_mobility": 0,
  3685. "_layer": 33554432,
  3686. "_euler": {
  3687. "__type__": "cc.Vec3",
  3688. "x": 0,
  3689. "y": 0,
  3690. "z": 0
  3691. },
  3692. "_id": "d3EHHuIhdJbIwGoAPWkaOt"
  3693. },
  3694. {
  3695. "__type__": "cc.UITransform",
  3696. "_name": "",
  3697. "_objFlags": 0,
  3698. "node": {
  3699. "__id__": 99
  3700. },
  3701. "_enabled": true,
  3702. "__prefab": null,
  3703. "_contentSize": {
  3704. "__type__": "cc.Size",
  3705. "width": 276,
  3706. "height": 276
  3707. },
  3708. "_anchorPoint": {
  3709. "__type__": "cc.Vec2",
  3710. "x": 0.5,
  3711. "y": 0.5
  3712. },
  3713. "_id": "5ahhUaW7lCIJBzOhMr6v4a"
  3714. },
  3715. {
  3716. "__type__": "cc.Sprite",
  3717. "_name": "",
  3718. "_objFlags": 0,
  3719. "node": {
  3720. "__id__": 99
  3721. },
  3722. "_enabled": true,
  3723. "__prefab": null,
  3724. "_customMaterial": null,
  3725. "_srcBlendFactor": 2,
  3726. "_dstBlendFactor": 4,
  3727. "_color": {
  3728. "__type__": "cc.Color",
  3729. "r": 255,
  3730. "g": 255,
  3731. "b": 255,
  3732. "a": 255
  3733. },
  3734. "_spriteFrame": {
  3735. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  3736. "__expectedType__": "cc.SpriteFrame"
  3737. },
  3738. "_type": 0,
  3739. "_fillType": 0,
  3740. "_sizeMode": 1,
  3741. "_fillCenter": {
  3742. "__type__": "cc.Vec2",
  3743. "x": 0,
  3744. "y": 0
  3745. },
  3746. "_fillStart": 0,
  3747. "_fillRange": 0,
  3748. "_isTrimmedMode": true,
  3749. "_useGrayscale": false,
  3750. "_atlas": null,
  3751. "_id": "120v4o4jpPEq4IN+OxcZpo"
  3752. },
  3753. {
  3754. "__type__": "cc.Node",
  3755. "_name": "title",
  3756. "_objFlags": 0,
  3757. "_parent": {
  3758. "__id__": 92
  3759. },
  3760. "_children": [],
  3761. "_active": true,
  3762. "_components": [
  3763. {
  3764. "__id__": 103
  3765. },
  3766. {
  3767. "__id__": 104
  3768. }
  3769. ],
  3770. "_prefab": null,
  3771. "_lpos": {
  3772. "__type__": "cc.Vec3",
  3773. "x": 0,
  3774. "y": 150.161,
  3775. "z": 0
  3776. },
  3777. "_lrot": {
  3778. "__type__": "cc.Quat",
  3779. "x": 0,
  3780. "y": 0,
  3781. "z": 0,
  3782. "w": 1
  3783. },
  3784. "_lscale": {
  3785. "__type__": "cc.Vec3",
  3786. "x": 1,
  3787. "y": 1,
  3788. "z": 1
  3789. },
  3790. "_mobility": 0,
  3791. "_layer": 33554432,
  3792. "_euler": {
  3793. "__type__": "cc.Vec3",
  3794. "x": 0,
  3795. "y": 0,
  3796. "z": 0
  3797. },
  3798. "_id": "75gMiCDfFACotihYb4zEc6"
  3799. },
  3800. {
  3801. "__type__": "cc.UITransform",
  3802. "_name": "",
  3803. "_objFlags": 0,
  3804. "node": {
  3805. "__id__": 102
  3806. },
  3807. "_enabled": true,
  3808. "__prefab": null,
  3809. "_contentSize": {
  3810. "__type__": "cc.Size",
  3811. "width": 480,
  3812. "height": 75.6
  3813. },
  3814. "_anchorPoint": {
  3815. "__type__": "cc.Vec2",
  3816. "x": 0.5,
  3817. "y": 0.5
  3818. },
  3819. "_id": "e6wlkcNOBGBoctvAHiU1Bq"
  3820. },
  3821. {
  3822. "__type__": "cc.Label",
  3823. "_name": "",
  3824. "_objFlags": 0,
  3825. "node": {
  3826. "__id__": 102
  3827. },
  3828. "_enabled": true,
  3829. "__prefab": null,
  3830. "_customMaterial": null,
  3831. "_srcBlendFactor": 2,
  3832. "_dstBlendFactor": 4,
  3833. "_color": {
  3834. "__type__": "cc.Color",
  3835. "r": 169,
  3836. "g": 79,
  3837. "b": 9,
  3838. "a": 255
  3839. },
  3840. "_string": "当前关卡:第几关",
  3841. "_horizontalAlign": 1,
  3842. "_verticalAlign": 1,
  3843. "_actualFontSize": 60,
  3844. "_fontSize": 60,
  3845. "_fontFamily": "Arial",
  3846. "_lineHeight": 60,
  3847. "_overflow": 0,
  3848. "_enableWrapText": true,
  3849. "_font": null,
  3850. "_isSystemFontUsed": true,
  3851. "_spacingX": 0,
  3852. "_isItalic": false,
  3853. "_isBold": true,
  3854. "_isUnderline": false,
  3855. "_underlineHeight": 2,
  3856. "_cacheMode": 0,
  3857. "_id": "66prmzTfRIW5r4HyV+87Z3"
  3858. },
  3859. {
  3860. "__type__": "cc.Node",
  3861. "_name": "totlg",
  3862. "_objFlags": 0,
  3863. "_parent": {
  3864. "__id__": 92
  3865. },
  3866. "_children": [],
  3867. "_active": true,
  3868. "_components": [
  3869. {
  3870. "__id__": 106
  3871. },
  3872. {
  3873. "__id__": 107
  3874. }
  3875. ],
  3876. "_prefab": null,
  3877. "_lpos": {
  3878. "__type__": "cc.Vec3",
  3879. "x": -311.43,
  3880. "y": -38.978,
  3881. "z": 0
  3882. },
  3883. "_lrot": {
  3884. "__type__": "cc.Quat",
  3885. "x": 0,
  3886. "y": 0,
  3887. "z": 0,
  3888. "w": 1
  3889. },
  3890. "_lscale": {
  3891. "__type__": "cc.Vec3",
  3892. "x": 1,
  3893. "y": 1,
  3894. "z": 1
  3895. },
  3896. "_mobility": 0,
  3897. "_layer": 33554432,
  3898. "_euler": {
  3899. "__type__": "cc.Vec3",
  3900. "x": 0,
  3901. "y": 0,
  3902. "z": 0
  3903. },
  3904. "_id": "297IRCEiZJkZbG7qqg9g+Q"
  3905. },
  3906. {
  3907. "__type__": "cc.UITransform",
  3908. "_name": "",
  3909. "_objFlags": 0,
  3910. "node": {
  3911. "__id__": 105
  3912. },
  3913. "_enabled": true,
  3914. "__prefab": null,
  3915. "_contentSize": {
  3916. "__type__": "cc.Size",
  3917. "width": 306.74,
  3918. "height": 75.6
  3919. },
  3920. "_anchorPoint": {
  3921. "__type__": "cc.Vec2",
  3922. "x": 0.5,
  3923. "y": 0.5
  3924. },
  3925. "_id": "85ygkR561B8ad14MWkByHp"
  3926. },
  3927. {
  3928. "__type__": "cc.Label",
  3929. "_name": "",
  3930. "_objFlags": 0,
  3931. "node": {
  3932. "__id__": 105
  3933. },
  3934. "_enabled": true,
  3935. "__prefab": null,
  3936. "_customMaterial": null,
  3937. "_srcBlendFactor": 2,
  3938. "_dstBlendFactor": 4,
  3939. "_color": {
  3940. "__type__": "cc.Color",
  3941. "r": 169,
  3942. "g": 79,
  3943. "b": 9,
  3944. "a": 255
  3945. },
  3946. "_string": "总得分:20",
  3947. "_horizontalAlign": 1,
  3948. "_verticalAlign": 1,
  3949. "_actualFontSize": 60,
  3950. "_fontSize": 60,
  3951. "_fontFamily": "Arial",
  3952. "_lineHeight": 60,
  3953. "_overflow": 0,
  3954. "_enableWrapText": true,
  3955. "_font": null,
  3956. "_isSystemFontUsed": true,
  3957. "_spacingX": 0,
  3958. "_isItalic": false,
  3959. "_isBold": true,
  3960. "_isUnderline": false,
  3961. "_underlineHeight": 2,
  3962. "_cacheMode": 0,
  3963. "_id": "68suiRHd1Gs7ZJXudZTLNH"
  3964. },
  3965. {
  3966. "__type__": "cc.Node",
  3967. "_name": "dang",
  3968. "_objFlags": 0,
  3969. "_parent": {
  3970. "__id__": 92
  3971. },
  3972. "_children": [],
  3973. "_active": true,
  3974. "_components": [
  3975. {
  3976. "__id__": 109
  3977. },
  3978. {
  3979. "__id__": 110
  3980. }
  3981. ],
  3982. "_prefab": null,
  3983. "_lpos": {
  3984. "__type__": "cc.Vec3",
  3985. "x": 326.992,
  3986. "y": -38.978,
  3987. "z": 0
  3988. },
  3989. "_lrot": {
  3990. "__type__": "cc.Quat",
  3991. "x": 0,
  3992. "y": 0,
  3993. "z": 0,
  3994. "w": 1
  3995. },
  3996. "_lscale": {
  3997. "__type__": "cc.Vec3",
  3998. "x": 1,
  3999. "y": 1,
  4000. "z": 1
  4001. },
  4002. "_mobility": 0,
  4003. "_layer": 33554432,
  4004. "_euler": {
  4005. "__type__": "cc.Vec3",
  4006. "x": 0,
  4007. "y": 0,
  4008. "z": 0
  4009. },
  4010. "_id": "b8/fu8cRRG3YCh+ebJX1DH"
  4011. },
  4012. {
  4013. "__type__": "cc.UITransform",
  4014. "_name": "",
  4015. "_objFlags": 0,
  4016. "node": {
  4017. "__id__": 108
  4018. },
  4019. "_enabled": true,
  4020. "__prefab": null,
  4021. "_contentSize": {
  4022. "__type__": "cc.Size",
  4023. "width": 306.74,
  4024. "height": 75.6
  4025. },
  4026. "_anchorPoint": {
  4027. "__type__": "cc.Vec2",
  4028. "x": 0.5,
  4029. "y": 0.5
  4030. },
  4031. "_id": "9aPfmPO39Bo576PtGABN8L"
  4032. },
  4033. {
  4034. "__type__": "cc.Label",
  4035. "_name": "",
  4036. "_objFlags": 0,
  4037. "node": {
  4038. "__id__": 108
  4039. },
  4040. "_enabled": true,
  4041. "__prefab": null,
  4042. "_customMaterial": null,
  4043. "_srcBlendFactor": 2,
  4044. "_dstBlendFactor": 4,
  4045. "_color": {
  4046. "__type__": "cc.Color",
  4047. "r": 169,
  4048. "g": 79,
  4049. "b": 9,
  4050. "a": 255
  4051. },
  4052. "_string": "总得分:20",
  4053. "_horizontalAlign": 1,
  4054. "_verticalAlign": 1,
  4055. "_actualFontSize": 60,
  4056. "_fontSize": 60,
  4057. "_fontFamily": "Arial",
  4058. "_lineHeight": 60,
  4059. "_overflow": 0,
  4060. "_enableWrapText": true,
  4061. "_font": null,
  4062. "_isSystemFontUsed": true,
  4063. "_spacingX": 0,
  4064. "_isItalic": false,
  4065. "_isBold": true,
  4066. "_isUnderline": false,
  4067. "_underlineHeight": 2,
  4068. "_cacheMode": 0,
  4069. "_id": "ae2bMLpqJLyrtmaBI6YEhi"
  4070. },
  4071. {
  4072. "__type__": "cc.Node",
  4073. "_name": "cnaleBg",
  4074. "_objFlags": 0,
  4075. "_parent": {
  4076. "__id__": 92
  4077. },
  4078. "_children": [
  4079. {
  4080. "__id__": 112
  4081. }
  4082. ],
  4083. "_active": true,
  4084. "_components": [
  4085. {
  4086. "__id__": 115
  4087. },
  4088. {
  4089. "__id__": 116
  4090. }
  4091. ],
  4092. "_prefab": null,
  4093. "_lpos": {
  4094. "__type__": "cc.Vec3",
  4095. "x": -311.43,
  4096. "y": -198.875,
  4097. "z": 0
  4098. },
  4099. "_lrot": {
  4100. "__type__": "cc.Quat",
  4101. "x": 0,
  4102. "y": 0,
  4103. "z": 0,
  4104. "w": 1
  4105. },
  4106. "_lscale": {
  4107. "__type__": "cc.Vec3",
  4108. "x": 1,
  4109. "y": 1,
  4110. "z": 1
  4111. },
  4112. "_mobility": 0,
  4113. "_layer": 33554432,
  4114. "_euler": {
  4115. "__type__": "cc.Vec3",
  4116. "x": 0,
  4117. "y": 0,
  4118. "z": 0
  4119. },
  4120. "_id": "70YNI4fgBKcYisgYoGT1uz"
  4121. },
  4122. {
  4123. "__type__": "cc.Node",
  4124. "_name": "totlg-001",
  4125. "_objFlags": 0,
  4126. "_parent": {
  4127. "__id__": 111
  4128. },
  4129. "_children": [],
  4130. "_active": true,
  4131. "_components": [
  4132. {
  4133. "__id__": 113
  4134. },
  4135. {
  4136. "__id__": 114
  4137. }
  4138. ],
  4139. "_prefab": null,
  4140. "_lpos": {
  4141. "__type__": "cc.Vec3",
  4142. "x": 0,
  4143. "y": 0,
  4144. "z": 0
  4145. },
  4146. "_lrot": {
  4147. "__type__": "cc.Quat",
  4148. "x": 0,
  4149. "y": 0,
  4150. "z": 0,
  4151. "w": 1
  4152. },
  4153. "_lscale": {
  4154. "__type__": "cc.Vec3",
  4155. "x": 1,
  4156. "y": 1,
  4157. "z": 1
  4158. },
  4159. "_mobility": 0,
  4160. "_layer": 33554432,
  4161. "_euler": {
  4162. "__type__": "cc.Vec3",
  4163. "x": 0,
  4164. "y": 0,
  4165. "z": 0
  4166. },
  4167. "_id": "21K955SvhN1LHH8UaU6/pr"
  4168. },
  4169. {
  4170. "__type__": "cc.UITransform",
  4171. "_name": "",
  4172. "_objFlags": 0,
  4173. "node": {
  4174. "__id__": 112
  4175. },
  4176. "_enabled": true,
  4177. "__prefab": null,
  4178. "_contentSize": {
  4179. "__type__": "cc.Size",
  4180. "width": 160,
  4181. "height": 75.6
  4182. },
  4183. "_anchorPoint": {
  4184. "__type__": "cc.Vec2",
  4185. "x": 0.5,
  4186. "y": 0.5
  4187. },
  4188. "_id": "fdPTU81dJJnI5EiHMVJ2rS"
  4189. },
  4190. {
  4191. "__type__": "cc.Label",
  4192. "_name": "",
  4193. "_objFlags": 0,
  4194. "node": {
  4195. "__id__": 112
  4196. },
  4197. "_enabled": true,
  4198. "__prefab": null,
  4199. "_customMaterial": null,
  4200. "_srcBlendFactor": 2,
  4201. "_dstBlendFactor": 4,
  4202. "_color": {
  4203. "__type__": "cc.Color",
  4204. "r": 255,
  4205. "g": 255,
  4206. "b": 255,
  4207. "a": 255
  4208. },
  4209. "_string": "返回首页",
  4210. "_horizontalAlign": 1,
  4211. "_verticalAlign": 1,
  4212. "_actualFontSize": 40,
  4213. "_fontSize": 40,
  4214. "_fontFamily": "Arial",
  4215. "_lineHeight": 60,
  4216. "_overflow": 0,
  4217. "_enableWrapText": true,
  4218. "_font": null,
  4219. "_isSystemFontUsed": true,
  4220. "_spacingX": 0,
  4221. "_isItalic": false,
  4222. "_isBold": false,
  4223. "_isUnderline": false,
  4224. "_underlineHeight": 2,
  4225. "_cacheMode": 0,
  4226. "_id": "9b5kabTiJAnaWm01QtK0OO"
  4227. },
  4228. {
  4229. "__type__": "cc.UITransform",
  4230. "_name": "",
  4231. "_objFlags": 0,
  4232. "node": {
  4233. "__id__": 111
  4234. },
  4235. "_enabled": true,
  4236. "__prefab": null,
  4237. "_contentSize": {
  4238. "__type__": "cc.Size",
  4239. "width": 410,
  4240. "height": 150
  4241. },
  4242. "_anchorPoint": {
  4243. "__type__": "cc.Vec2",
  4244. "x": 0.5,
  4245. "y": 0.5
  4246. },
  4247. "_id": "e6dBc0itJN/YPx7i710wc9"
  4248. },
  4249. {
  4250. "__type__": "cc.Sprite",
  4251. "_name": "",
  4252. "_objFlags": 0,
  4253. "node": {
  4254. "__id__": 111
  4255. },
  4256. "_enabled": true,
  4257. "__prefab": null,
  4258. "_customMaterial": null,
  4259. "_srcBlendFactor": 2,
  4260. "_dstBlendFactor": 4,
  4261. "_color": {
  4262. "__type__": "cc.Color",
  4263. "r": 255,
  4264. "g": 255,
  4265. "b": 255,
  4266. "a": 255
  4267. },
  4268. "_spriteFrame": {
  4269. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  4270. "__expectedType__": "cc.SpriteFrame"
  4271. },
  4272. "_type": 1,
  4273. "_fillType": 0,
  4274. "_sizeMode": 0,
  4275. "_fillCenter": {
  4276. "__type__": "cc.Vec2",
  4277. "x": 0,
  4278. "y": 0
  4279. },
  4280. "_fillStart": 0,
  4281. "_fillRange": 0,
  4282. "_isTrimmedMode": true,
  4283. "_useGrayscale": false,
  4284. "_atlas": null,
  4285. "_id": "8f18m+9NBKVIXmsTS/YIDj"
  4286. },
  4287. {
  4288. "__type__": "cc.Node",
  4289. "_name": "btnbg",
  4290. "_objFlags": 0,
  4291. "_parent": {
  4292. "__id__": 92
  4293. },
  4294. "_children": [
  4295. {
  4296. "__id__": 118
  4297. }
  4298. ],
  4299. "_active": true,
  4300. "_components": [
  4301. {
  4302. "__id__": 121
  4303. },
  4304. {
  4305. "__id__": 122
  4306. },
  4307. {
  4308. "__id__": 123
  4309. }
  4310. ],
  4311. "_prefab": null,
  4312. "_lpos": {
  4313. "__type__": "cc.Vec3",
  4314. "x": 326.992,
  4315. "y": -198.875,
  4316. "z": 0
  4317. },
  4318. "_lrot": {
  4319. "__type__": "cc.Quat",
  4320. "x": 0,
  4321. "y": 0,
  4322. "z": 0,
  4323. "w": 1
  4324. },
  4325. "_lscale": {
  4326. "__type__": "cc.Vec3",
  4327. "x": 1,
  4328. "y": 1,
  4329. "z": 1
  4330. },
  4331. "_mobility": 0,
  4332. "_layer": 33554432,
  4333. "_euler": {
  4334. "__type__": "cc.Vec3",
  4335. "x": 0,
  4336. "y": 0,
  4337. "z": 0
  4338. },
  4339. "_id": "e038FAvYFD/5SSOQeCbJYR"
  4340. },
  4341. {
  4342. "__type__": "cc.Node",
  4343. "_name": "btnstr",
  4344. "_objFlags": 0,
  4345. "_parent": {
  4346. "__id__": 117
  4347. },
  4348. "_children": [],
  4349. "_active": true,
  4350. "_components": [
  4351. {
  4352. "__id__": 119
  4353. },
  4354. {
  4355. "__id__": 120
  4356. }
  4357. ],
  4358. "_prefab": null,
  4359. "_lpos": {
  4360. "__type__": "cc.Vec3",
  4361. "x": 0,
  4362. "y": 0,
  4363. "z": 0
  4364. },
  4365. "_lrot": {
  4366. "__type__": "cc.Quat",
  4367. "x": 0,
  4368. "y": 0,
  4369. "z": 0,
  4370. "w": 1
  4371. },
  4372. "_lscale": {
  4373. "__type__": "cc.Vec3",
  4374. "x": 1,
  4375. "y": 1,
  4376. "z": 1
  4377. },
  4378. "_mobility": 0,
  4379. "_layer": 33554432,
  4380. "_euler": {
  4381. "__type__": "cc.Vec3",
  4382. "x": 0,
  4383. "y": 0,
  4384. "z": 0
  4385. },
  4386. "_id": "95hSkHt8pCFLGJQwl8L8Gw"
  4387. },
  4388. {
  4389. "__type__": "cc.UITransform",
  4390. "_name": "",
  4391. "_objFlags": 0,
  4392. "node": {
  4393. "__id__": 118
  4394. },
  4395. "_enabled": true,
  4396. "__prefab": null,
  4397. "_contentSize": {
  4398. "__type__": "cc.Size",
  4399. "width": 160,
  4400. "height": 75.6
  4401. },
  4402. "_anchorPoint": {
  4403. "__type__": "cc.Vec2",
  4404. "x": 0.5,
  4405. "y": 0.5
  4406. },
  4407. "_id": "4c5n4yvjNJ0pR/RLRXB2ct"
  4408. },
  4409. {
  4410. "__type__": "cc.Label",
  4411. "_name": "",
  4412. "_objFlags": 0,
  4413. "node": {
  4414. "__id__": 118
  4415. },
  4416. "_enabled": true,
  4417. "__prefab": null,
  4418. "_customMaterial": null,
  4419. "_srcBlendFactor": 2,
  4420. "_dstBlendFactor": 4,
  4421. "_color": {
  4422. "__type__": "cc.Color",
  4423. "r": 255,
  4424. "g": 255,
  4425. "b": 255,
  4426. "a": 255
  4427. },
  4428. "_string": "返回首页",
  4429. "_horizontalAlign": 1,
  4430. "_verticalAlign": 1,
  4431. "_actualFontSize": 40,
  4432. "_fontSize": 40,
  4433. "_fontFamily": "Arial",
  4434. "_lineHeight": 60,
  4435. "_overflow": 0,
  4436. "_enableWrapText": true,
  4437. "_font": null,
  4438. "_isSystemFontUsed": true,
  4439. "_spacingX": 0,
  4440. "_isItalic": false,
  4441. "_isBold": false,
  4442. "_isUnderline": false,
  4443. "_underlineHeight": 2,
  4444. "_cacheMode": 0,
  4445. "_id": "b1kneTXUNG0bcxcVja9jey"
  4446. },
  4447. {
  4448. "__type__": "cc.UITransform",
  4449. "_name": "",
  4450. "_objFlags": 0,
  4451. "node": {
  4452. "__id__": 117
  4453. },
  4454. "_enabled": true,
  4455. "__prefab": null,
  4456. "_contentSize": {
  4457. "__type__": "cc.Size",
  4458. "width": 410,
  4459. "height": 150
  4460. },
  4461. "_anchorPoint": {
  4462. "__type__": "cc.Vec2",
  4463. "x": 0.5,
  4464. "y": 0.5
  4465. },
  4466. "_id": "2dheoo9ZJL3LOOoa198/Am"
  4467. },
  4468. {
  4469. "__type__": "cc.Sprite",
  4470. "_name": "",
  4471. "_objFlags": 0,
  4472. "node": {
  4473. "__id__": 117
  4474. },
  4475. "_enabled": true,
  4476. "__prefab": null,
  4477. "_customMaterial": null,
  4478. "_srcBlendFactor": 2,
  4479. "_dstBlendFactor": 4,
  4480. "_color": {
  4481. "__type__": "cc.Color",
  4482. "r": 255,
  4483. "g": 255,
  4484. "b": 255,
  4485. "a": 255
  4486. },
  4487. "_spriteFrame": {
  4488. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4489. "__expectedType__": "cc.SpriteFrame"
  4490. },
  4491. "_type": 1,
  4492. "_fillType": 0,
  4493. "_sizeMode": 0,
  4494. "_fillCenter": {
  4495. "__type__": "cc.Vec2",
  4496. "x": 0,
  4497. "y": 0
  4498. },
  4499. "_fillStart": 0,
  4500. "_fillRange": 0,
  4501. "_isTrimmedMode": true,
  4502. "_useGrayscale": false,
  4503. "_atlas": null,
  4504. "_id": "e53JzQrzJFaaAglJPUjDla"
  4505. },
  4506. {
  4507. "__type__": "cc.Button",
  4508. "_name": "",
  4509. "_objFlags": 0,
  4510. "node": {
  4511. "__id__": 117
  4512. },
  4513. "_enabled": true,
  4514. "__prefab": null,
  4515. "clickEvents": [
  4516. {
  4517. "__id__": 124
  4518. }
  4519. ],
  4520. "_interactable": true,
  4521. "_transition": 3,
  4522. "_normalColor": {
  4523. "__type__": "cc.Color",
  4524. "r": 255,
  4525. "g": 255,
  4526. "b": 255,
  4527. "a": 255
  4528. },
  4529. "_hoverColor": {
  4530. "__type__": "cc.Color",
  4531. "r": 211,
  4532. "g": 211,
  4533. "b": 211,
  4534. "a": 255
  4535. },
  4536. "_pressedColor": {
  4537. "__type__": "cc.Color",
  4538. "r": 255,
  4539. "g": 255,
  4540. "b": 255,
  4541. "a": 255
  4542. },
  4543. "_disabledColor": {
  4544. "__type__": "cc.Color",
  4545. "r": 124,
  4546. "g": 124,
  4547. "b": 124,
  4548. "a": 255
  4549. },
  4550. "_normalSprite": {
  4551. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  4552. "__expectedType__": "cc.SpriteFrame"
  4553. },
  4554. "_hoverSprite": null,
  4555. "_pressedSprite": null,
  4556. "_disabledSprite": null,
  4557. "_duration": 0.1,
  4558. "_zoomScale": 1.2,
  4559. "_target": null,
  4560. "_id": "e3BKrNfRVGDIHfvhO7Yv2b"
  4561. },
  4562. {
  4563. "__type__": "cc.ClickEvent",
  4564. "target": {
  4565. "__id__": 16
  4566. },
  4567. "component": "",
  4568. "_componentId": "70c94/HGKxOwqca6JUm540e",
  4569. "handler": "click_next",
  4570. "customEventData": ""
  4571. },
  4572. {
  4573. "__type__": "cc.UITransform",
  4574. "_name": "",
  4575. "_objFlags": 0,
  4576. "node": {
  4577. "__id__": 92
  4578. },
  4579. "_enabled": true,
  4580. "__prefab": null,
  4581. "_contentSize": {
  4582. "__type__": "cc.Size",
  4583. "width": 100,
  4584. "height": 100
  4585. },
  4586. "_anchorPoint": {
  4587. "__type__": "cc.Vec2",
  4588. "x": 0.5,
  4589. "y": 0.5
  4590. },
  4591. "_id": "09vLtqQUxHrqqxaaBtZoFz"
  4592. },
  4593. {
  4594. "__type__": "cc.UITransform",
  4595. "_name": "",
  4596. "_objFlags": 0,
  4597. "node": {
  4598. "__id__": 16
  4599. },
  4600. "_enabled": true,
  4601. "__prefab": null,
  4602. "_contentSize": {
  4603. "__type__": "cc.Size",
  4604. "width": 1408,
  4605. "height": 1220
  4606. },
  4607. "_anchorPoint": {
  4608. "__type__": "cc.Vec2",
  4609. "x": 0.5,
  4610. "y": 0.5
  4611. },
  4612. "_id": "06uc/DmylBw7MX+y9t6po4"
  4613. },
  4614. {
  4615. "__type__": "cc.Sprite",
  4616. "_name": "",
  4617. "_objFlags": 0,
  4618. "node": {
  4619. "__id__": 16
  4620. },
  4621. "_enabled": false,
  4622. "__prefab": null,
  4623. "_customMaterial": null,
  4624. "_srcBlendFactor": 2,
  4625. "_dstBlendFactor": 4,
  4626. "_color": {
  4627. "__type__": "cc.Color",
  4628. "r": 255,
  4629. "g": 255,
  4630. "b": 255,
  4631. "a": 255
  4632. },
  4633. "_spriteFrame": {
  4634. "__uuid__": "91aee3af-9bc1-4ad4-8ee2-e379cc830af7@f9941",
  4635. "__expectedType__": "cc.SpriteFrame"
  4636. },
  4637. "_type": 0,
  4638. "_fillType": 0,
  4639. "_sizeMode": 0,
  4640. "_fillCenter": {
  4641. "__type__": "cc.Vec2",
  4642. "x": 0,
  4643. "y": 0
  4644. },
  4645. "_fillStart": 0,
  4646. "_fillRange": 0,
  4647. "_isTrimmedMode": true,
  4648. "_useGrayscale": false,
  4649. "_atlas": null,
  4650. "_id": "53wNl9pLlJfLR77aIV4wpd"
  4651. },
  4652. {
  4653. "__type__": "cc.AudioSource",
  4654. "_name": "",
  4655. "_objFlags": 0,
  4656. "node": {
  4657. "__id__": 16
  4658. },
  4659. "_enabled": false,
  4660. "__prefab": null,
  4661. "_clip": {
  4662. "__uuid__": "ad658f7c-81ae-4787-a8f2-ca18f6d581f8",
  4663. "__expectedType__": "cc.AudioClip"
  4664. },
  4665. "_loop": true,
  4666. "_playOnAwake": true,
  4667. "_volume": 1,
  4668. "_id": "36lkzZhC5IBJX9XIKI9Gd4"
  4669. },
  4670. {
  4671. "__type__": "70c94/HGKxOwqca6JUm540e",
  4672. "_name": "",
  4673. "_objFlags": 0,
  4674. "node": {
  4675. "__id__": 16
  4676. },
  4677. "_enabled": true,
  4678. "__prefab": null,
  4679. "fishNode": {
  4680. "__id__": 43
  4681. },
  4682. "resultNode": {
  4683. "__id__": 66
  4684. },
  4685. "nextNode": {
  4686. "__id__": 92
  4687. },
  4688. "nextEffect": {
  4689. "__uuid__": "c7209c41-cb81-4d05-922f-8726d9a98870",
  4690. "__expectedType__": "cc.AudioClip"
  4691. },
  4692. "chooseTrue": {
  4693. "__uuid__": "dd8518e0-d995-48fc-8f37-d1931b962a56",
  4694. "__expectedType__": "cc.AudioClip"
  4695. },
  4696. "chooseFalse": {
  4697. "__uuid__": "991e9a7f-da9e-440a-bb19-e51ba954282d",
  4698. "__expectedType__": "cc.AudioClip"
  4699. },
  4700. "gameWin": {
  4701. "__uuid__": "28667b66-b8ca-462a-b876-a2374be54c57",
  4702. "__expectedType__": "cc.AudioClip"
  4703. },
  4704. "gameAudio": {
  4705. "__id__": 128
  4706. },
  4707. "_id": "ec6MYOv8BIE7Dx/T8+TiXx"
  4708. },
  4709. {
  4710. "__type__": "cc.UITransform",
  4711. "_name": "",
  4712. "_objFlags": 0,
  4713. "node": {
  4714. "__id__": 15
  4715. },
  4716. "_enabled": true,
  4717. "__prefab": null,
  4718. "_contentSize": {
  4719. "__type__": "cc.Size",
  4720. "width": 2000,
  4721. "height": 1397
  4722. },
  4723. "_anchorPoint": {
  4724. "__type__": "cc.Vec2",
  4725. "x": 0.5,
  4726. "y": 0.5
  4727. },
  4728. "_id": "79m22YLJNMN49zaJzPY6Sx"
  4729. },
  4730. {
  4731. "__type__": "cc.Mask",
  4732. "_name": "",
  4733. "_objFlags": 0,
  4734. "node": {
  4735. "__id__": 15
  4736. },
  4737. "_enabled": true,
  4738. "__prefab": null,
  4739. "_type": 0,
  4740. "_inverted": false,
  4741. "_segments": 64,
  4742. "_alphaThreshold": 0.1,
  4743. "_id": "eboaPbA95Dsa+z1sLu0MZN"
  4744. },
  4745. {
  4746. "__type__": "cc.Graphics",
  4747. "_name": "",
  4748. "_objFlags": 0,
  4749. "node": {
  4750. "__id__": 15
  4751. },
  4752. "_enabled": true,
  4753. "__prefab": null,
  4754. "_customMaterial": null,
  4755. "_srcBlendFactor": 2,
  4756. "_dstBlendFactor": 4,
  4757. "_color": {
  4758. "__type__": "cc.Color",
  4759. "r": 255,
  4760. "g": 255,
  4761. "b": 255,
  4762. "a": 255
  4763. },
  4764. "_lineWidth": 1,
  4765. "_strokeColor": {
  4766. "__type__": "cc.Color",
  4767. "r": 0,
  4768. "g": 0,
  4769. "b": 0,
  4770. "a": 255
  4771. },
  4772. "_lineJoin": 2,
  4773. "_lineCap": 0,
  4774. "_fillColor": {
  4775. "__type__": "cc.Color",
  4776. "r": 255,
  4777. "g": 255,
  4778. "b": 255,
  4779. "a": 0
  4780. },
  4781. "_miterLimit": 10,
  4782. "_id": "b9KtRpOQVN3KKqKHumCLoh"
  4783. },
  4784. {
  4785. "__type__": "cc.UITransform",
  4786. "_name": "",
  4787. "_objFlags": 0,
  4788. "node": {
  4789. "__id__": 14
  4790. },
  4791. "_enabled": true,
  4792. "__prefab": null,
  4793. "_contentSize": {
  4794. "__type__": "cc.Size",
  4795. "width": 2000,
  4796. "height": 1397
  4797. },
  4798. "_anchorPoint": {
  4799. "__type__": "cc.Vec2",
  4800. "x": 0.5,
  4801. "y": 0.5
  4802. },
  4803. "_id": "b3dEUUTq9PZpPXKstUvlc+"
  4804. },
  4805. {
  4806. "__type__": "cc.Widget",
  4807. "_name": "",
  4808. "_objFlags": 0,
  4809. "node": {
  4810. "__id__": 14
  4811. },
  4812. "_enabled": true,
  4813. "__prefab": null,
  4814. "_alignFlags": 45,
  4815. "_target": null,
  4816. "_left": 0,
  4817. "_right": 0,
  4818. "_top": 0,
  4819. "_bottom": 0,
  4820. "_horizontalCenter": 0,
  4821. "_verticalCenter": 0,
  4822. "_isAbsLeft": true,
  4823. "_isAbsRight": true,
  4824. "_isAbsTop": true,
  4825. "_isAbsBottom": true,
  4826. "_isAbsHorizontalCenter": true,
  4827. "_isAbsVerticalCenter": true,
  4828. "_originalWidth": 1532,
  4829. "_originalHeight": 1336,
  4830. "_alignMode": 2,
  4831. "_lockFlags": 0,
  4832. "_id": "5dgrSv7X1BOLNmoqXxRrdb"
  4833. },
  4834. {
  4835. "__type__": "cc.Node",
  4836. "_name": "GameEndTip",
  4837. "_objFlags": 0,
  4838. "_parent": {
  4839. "__id__": 6
  4840. },
  4841. "_children": [
  4842. {
  4843. "__id__": 136
  4844. },
  4845. {
  4846. "__id__": 140
  4847. },
  4848. {
  4849. "__id__": 143
  4850. },
  4851. {
  4852. "__id__": 146
  4853. },
  4854. {
  4855. "__id__": 154
  4856. },
  4857. {
  4858. "__id__": 162
  4859. },
  4860. {
  4861. "__id__": 165
  4862. },
  4863. {
  4864. "__id__": 168
  4865. }
  4866. ],
  4867. "_active": false,
  4868. "_components": [
  4869. {
  4870. "__id__": 171
  4871. },
  4872. {
  4873. "__id__": 172
  4874. },
  4875. {
  4876. "__id__": 173
  4877. },
  4878. {
  4879. "__id__": 174
  4880. }
  4881. ],
  4882. "_prefab": null,
  4883. "_lpos": {
  4884. "__type__": "cc.Vec3",
  4885. "x": 0,
  4886. "y": 0,
  4887. "z": 0
  4888. },
  4889. "_lrot": {
  4890. "__type__": "cc.Quat",
  4891. "x": 0,
  4892. "y": 0,
  4893. "z": 0,
  4894. "w": 1
  4895. },
  4896. "_lscale": {
  4897. "__type__": "cc.Vec3",
  4898. "x": 0.976,
  4899. "y": 0.976,
  4900. "z": 0.976
  4901. },
  4902. "_mobility": 0,
  4903. "_layer": 33554432,
  4904. "_euler": {
  4905. "__type__": "cc.Vec3",
  4906. "x": 0,
  4907. "y": 0,
  4908. "z": 0
  4909. },
  4910. "_id": "ccVdpbDZxMSJFEoccFVQHO"
  4911. },
  4912. {
  4913. "__type__": "cc.Node",
  4914. "_name": "bg",
  4915. "_objFlags": 0,
  4916. "_parent": {
  4917. "__id__": 135
  4918. },
  4919. "_children": [],
  4920. "_active": true,
  4921. "_components": [
  4922. {
  4923. "__id__": 137
  4924. },
  4925. {
  4926. "__id__": 138
  4927. },
  4928. {
  4929. "__id__": 139
  4930. }
  4931. ],
  4932. "_prefab": null,
  4933. "_lpos": {
  4934. "__type__": "cc.Vec3",
  4935. "x": 0,
  4936. "y": 0,
  4937. "z": 0
  4938. },
  4939. "_lrot": {
  4940. "__type__": "cc.Quat",
  4941. "x": 0,
  4942. "y": 0,
  4943. "z": 0,
  4944. "w": 1
  4945. },
  4946. "_lscale": {
  4947. "__type__": "cc.Vec3",
  4948. "x": 1,
  4949. "y": 1,
  4950. "z": 1
  4951. },
  4952. "_mobility": 0,
  4953. "_layer": 33554432,
  4954. "_euler": {
  4955. "__type__": "cc.Vec3",
  4956. "x": 0,
  4957. "y": 0,
  4958. "z": 0
  4959. },
  4960. "_id": "314RY/yAxAw4xNBxz+YyNm"
  4961. },
  4962. {
  4963. "__type__": "cc.UITransform",
  4964. "_name": "",
  4965. "_objFlags": 0,
  4966. "node": {
  4967. "__id__": 136
  4968. },
  4969. "_enabled": true,
  4970. "__prefab": null,
  4971. "_contentSize": {
  4972. "__type__": "cc.Size",
  4973. "width": 2461.8,
  4974. "height": 1733.3
  4975. },
  4976. "_anchorPoint": {
  4977. "__type__": "cc.Vec2",
  4978. "x": 0.5,
  4979. "y": 0.5
  4980. },
  4981. "_id": "92aR4OFnpFybd1WNyreuTw"
  4982. },
  4983. {
  4984. "__type__": "cc.Sprite",
  4985. "_name": "",
  4986. "_objFlags": 0,
  4987. "node": {
  4988. "__id__": 136
  4989. },
  4990. "_enabled": true,
  4991. "__prefab": null,
  4992. "_customMaterial": null,
  4993. "_srcBlendFactor": 2,
  4994. "_dstBlendFactor": 4,
  4995. "_color": {
  4996. "__type__": "cc.Color",
  4997. "r": 3,
  4998. "g": 0,
  4999. "b": 0,
  5000. "a": 176
  5001. },
  5002. "_spriteFrame": {
  5003. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  5004. "__expectedType__": "cc.SpriteFrame"
  5005. },
  5006. "_type": 1,
  5007. "_fillType": 0,
  5008. "_sizeMode": 0,
  5009. "_fillCenter": {
  5010. "__type__": "cc.Vec2",
  5011. "x": 0,
  5012. "y": 0
  5013. },
  5014. "_fillStart": 0,
  5015. "_fillRange": 0,
  5016. "_isTrimmedMode": true,
  5017. "_useGrayscale": false,
  5018. "_atlas": null,
  5019. "_id": "5aEpaDRN1N6pnXUm5yjHPb"
  5020. },
  5021. {
  5022. "__type__": "cc.BlockInputEvents",
  5023. "_name": "",
  5024. "_objFlags": 0,
  5025. "node": {
  5026. "__id__": 136
  5027. },
  5028. "_enabled": true,
  5029. "__prefab": null,
  5030. "_id": "d4Z+I3/QRBKY+beu430PSQ"
  5031. },
  5032. {
  5033. "__type__": "cc.Node",
  5034. "_name": "Sprite",
  5035. "_objFlags": 0,
  5036. "_parent": {
  5037. "__id__": 135
  5038. },
  5039. "_children": [],
  5040. "_active": true,
  5041. "_components": [
  5042. {
  5043. "__id__": 141
  5044. },
  5045. {
  5046. "__id__": 142
  5047. }
  5048. ],
  5049. "_prefab": null,
  5050. "_lpos": {
  5051. "__type__": "cc.Vec3",
  5052. "x": 0,
  5053. "y": -18.761,
  5054. "z": 0
  5055. },
  5056. "_lrot": {
  5057. "__type__": "cc.Quat",
  5058. "x": 0,
  5059. "y": 0,
  5060. "z": 0,
  5061. "w": 1
  5062. },
  5063. "_lscale": {
  5064. "__type__": "cc.Vec3",
  5065. "x": 1,
  5066. "y": 1,
  5067. "z": 1
  5068. },
  5069. "_mobility": 0,
  5070. "_layer": 33554432,
  5071. "_euler": {
  5072. "__type__": "cc.Vec3",
  5073. "x": 0,
  5074. "y": 0,
  5075. "z": 0
  5076. },
  5077. "_id": "feJJn/gUdARJaxfqSWrcU4"
  5078. },
  5079. {
  5080. "__type__": "cc.UITransform",
  5081. "_name": "",
  5082. "_objFlags": 0,
  5083. "node": {
  5084. "__id__": 140
  5085. },
  5086. "_enabled": true,
  5087. "__prefab": null,
  5088. "_contentSize": {
  5089. "__type__": "cc.Size",
  5090. "width": 1311,
  5091. "height": 806
  5092. },
  5093. "_anchorPoint": {
  5094. "__type__": "cc.Vec2",
  5095. "x": 0.5,
  5096. "y": 0.5
  5097. },
  5098. "_id": "fd1jnlEcxCT64lksI/KW8k"
  5099. },
  5100. {
  5101. "__type__": "cc.Sprite",
  5102. "_name": "",
  5103. "_objFlags": 0,
  5104. "node": {
  5105. "__id__": 140
  5106. },
  5107. "_enabled": true,
  5108. "__prefab": null,
  5109. "_customMaterial": null,
  5110. "_srcBlendFactor": 2,
  5111. "_dstBlendFactor": 4,
  5112. "_color": {
  5113. "__type__": "cc.Color",
  5114. "r": 255,
  5115. "g": 255,
  5116. "b": 255,
  5117. "a": 255
  5118. },
  5119. "_spriteFrame": {
  5120. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  5121. "__expectedType__": "cc.SpriteFrame"
  5122. },
  5123. "_type": 0,
  5124. "_fillType": 0,
  5125. "_sizeMode": 1,
  5126. "_fillCenter": {
  5127. "__type__": "cc.Vec2",
  5128. "x": 0,
  5129. "y": 0
  5130. },
  5131. "_fillStart": 0,
  5132. "_fillRange": 0,
  5133. "_isTrimmedMode": true,
  5134. "_useGrayscale": false,
  5135. "_atlas": null,
  5136. "_id": "f0Vz55iWtDD7VHbf2ZAHgw"
  5137. },
  5138. {
  5139. "__type__": "cc.Node",
  5140. "_name": "Label",
  5141. "_objFlags": 0,
  5142. "_parent": {
  5143. "__id__": 135
  5144. },
  5145. "_children": [],
  5146. "_active": true,
  5147. "_components": [
  5148. {
  5149. "__id__": 144
  5150. },
  5151. {
  5152. "__id__": 145
  5153. }
  5154. ],
  5155. "_prefab": null,
  5156. "_lpos": {
  5157. "__type__": "cc.Vec3",
  5158. "x": -27.538,
  5159. "y": 127.951,
  5160. "z": 0
  5161. },
  5162. "_lrot": {
  5163. "__type__": "cc.Quat",
  5164. "x": 0,
  5165. "y": 0,
  5166. "z": 0,
  5167. "w": 1
  5168. },
  5169. "_lscale": {
  5170. "__type__": "cc.Vec3",
  5171. "x": 1,
  5172. "y": 1,
  5173. "z": 1
  5174. },
  5175. "_mobility": 0,
  5176. "_layer": 33554432,
  5177. "_euler": {
  5178. "__type__": "cc.Vec3",
  5179. "x": 0,
  5180. "y": 0,
  5181. "z": 0
  5182. },
  5183. "_id": "7ak+Me/p1HyLURnaFdW0vU"
  5184. },
  5185. {
  5186. "__type__": "cc.UITransform",
  5187. "_name": "",
  5188. "_objFlags": 0,
  5189. "node": {
  5190. "__id__": 143
  5191. },
  5192. "_enabled": true,
  5193. "__prefab": null,
  5194. "_contentSize": {
  5195. "__type__": "cc.Size",
  5196. "width": 560.454,
  5197. "height": 214.07999999999998
  5198. },
  5199. "_anchorPoint": {
  5200. "__type__": "cc.Vec2",
  5201. "x": 0.5,
  5202. "y": 0.5
  5203. },
  5204. "_id": "dfOUKmfphHLb4LAGJZPuQJ"
  5205. },
  5206. {
  5207. "__type__": "cc.Label",
  5208. "_name": "",
  5209. "_objFlags": 0,
  5210. "node": {
  5211. "__id__": 143
  5212. },
  5213. "_enabled": true,
  5214. "__prefab": null,
  5215. "_customMaterial": null,
  5216. "_srcBlendFactor": 2,
  5217. "_dstBlendFactor": 4,
  5218. "_color": {
  5219. "__type__": "cc.Color",
  5220. "r": 169,
  5221. "g": 79,
  5222. "b": 9,
  5223. "a": 255
  5224. },
  5225. "_string": "当前关卡:第1关",
  5226. "_horizontalAlign": 1,
  5227. "_verticalAlign": 1,
  5228. "_actualFontSize": 65,
  5229. "_fontSize": 65,
  5230. "_fontFamily": "Arial",
  5231. "_lineHeight": 100,
  5232. "_overflow": 1,
  5233. "_enableWrapText": true,
  5234. "_font": null,
  5235. "_isSystemFontUsed": true,
  5236. "_spacingX": 0,
  5237. "_isItalic": false,
  5238. "_isBold": true,
  5239. "_isUnderline": false,
  5240. "_underlineHeight": 2,
  5241. "_cacheMode": 0,
  5242. "_id": "02BZxcFqVIXLprJ9Ib9sOh"
  5243. },
  5244. {
  5245. "__type__": "cc.Node",
  5246. "_name": "BackHome",
  5247. "_objFlags": 0,
  5248. "_parent": {
  5249. "__id__": 135
  5250. },
  5251. "_children": [
  5252. {
  5253. "__id__": 147
  5254. }
  5255. ],
  5256. "_active": true,
  5257. "_components": [
  5258. {
  5259. "__id__": 150
  5260. },
  5261. {
  5262. "__id__": 151
  5263. },
  5264. {
  5265. "__id__": 152
  5266. }
  5267. ],
  5268. "_prefab": null,
  5269. "_lpos": {
  5270. "__type__": "cc.Vec3",
  5271. "x": -291.21,
  5272. "y": -267.351,
  5273. "z": 0
  5274. },
  5275. "_lrot": {
  5276. "__type__": "cc.Quat",
  5277. "x": 0,
  5278. "y": 0,
  5279. "z": 0,
  5280. "w": 1
  5281. },
  5282. "_lscale": {
  5283. "__type__": "cc.Vec3",
  5284. "x": 1,
  5285. "y": 1,
  5286. "z": 1
  5287. },
  5288. "_mobility": 0,
  5289. "_layer": 33554432,
  5290. "_euler": {
  5291. "__type__": "cc.Vec3",
  5292. "x": 0,
  5293. "y": 0,
  5294. "z": 0
  5295. },
  5296. "_id": "40pTk+LPFDH6BTBWIZSewN"
  5297. },
  5298. {
  5299. "__type__": "cc.Node",
  5300. "_name": "Label",
  5301. "_objFlags": 512,
  5302. "_parent": {
  5303. "__id__": 146
  5304. },
  5305. "_children": [],
  5306. "_active": true,
  5307. "_components": [
  5308. {
  5309. "__id__": 148
  5310. },
  5311. {
  5312. "__id__": 149
  5313. }
  5314. ],
  5315. "_prefab": null,
  5316. "_lpos": {
  5317. "__type__": "cc.Vec3",
  5318. "x": 1.5368852459016438,
  5319. "y": 6.147540983606557,
  5320. "z": 0
  5321. },
  5322. "_lrot": {
  5323. "__type__": "cc.Quat",
  5324. "x": 0,
  5325. "y": 0,
  5326. "z": 0,
  5327. "w": 1
  5328. },
  5329. "_lscale": {
  5330. "__type__": "cc.Vec3",
  5331. "x": 1,
  5332. "y": 1,
  5333. "z": 1
  5334. },
  5335. "_mobility": 0,
  5336. "_layer": 33554432,
  5337. "_euler": {
  5338. "__type__": "cc.Vec3",
  5339. "x": 0,
  5340. "y": 0,
  5341. "z": 0
  5342. },
  5343. "_id": "dcf8PrZsZLLZqOx/1qEzhj"
  5344. },
  5345. {
  5346. "__type__": "cc.UITransform",
  5347. "_name": "",
  5348. "_objFlags": 0,
  5349. "node": {
  5350. "__id__": 147
  5351. },
  5352. "_enabled": true,
  5353. "__prefab": null,
  5354. "_contentSize": {
  5355. "__type__": "cc.Size",
  5356. "width": 312.09016393442624,
  5357. "height": 70.73770491803279
  5358. },
  5359. "_anchorPoint": {
  5360. "__type__": "cc.Vec2",
  5361. "x": 0.5,
  5362. "y": 0.5
  5363. },
  5364. "_id": "67bnjxg6dKML4Thboe5RGb"
  5365. },
  5366. {
  5367. "__type__": "cc.Label",
  5368. "_name": "",
  5369. "_objFlags": 0,
  5370. "node": {
  5371. "__id__": 147
  5372. },
  5373. "_enabled": true,
  5374. "__prefab": null,
  5375. "_customMaterial": null,
  5376. "_srcBlendFactor": 2,
  5377. "_dstBlendFactor": 4,
  5378. "_color": {
  5379. "__type__": "cc.Color",
  5380. "r": 255,
  5381. "g": 255,
  5382. "b": 255,
  5383. "a": 255
  5384. },
  5385. "_string": "返回首页",
  5386. "_horizontalAlign": 1,
  5387. "_verticalAlign": 1,
  5388. "_actualFontSize": 55,
  5389. "_fontSize": 55,
  5390. "_fontFamily": "Arial",
  5391. "_lineHeight": 70,
  5392. "_overflow": 1,
  5393. "_enableWrapText": false,
  5394. "_font": null,
  5395. "_isSystemFontUsed": true,
  5396. "_spacingX": 0,
  5397. "_isItalic": false,
  5398. "_isBold": false,
  5399. "_isUnderline": false,
  5400. "_underlineHeight": 2,
  5401. "_cacheMode": 0,
  5402. "_id": "86AVPGZdJHl5rwXEUerqTX"
  5403. },
  5404. {
  5405. "__type__": "cc.UITransform",
  5406. "_name": "",
  5407. "_objFlags": 0,
  5408. "node": {
  5409. "__id__": 146
  5410. },
  5411. "_enabled": true,
  5412. "__prefab": null,
  5413. "_contentSize": {
  5414. "__type__": "cc.Size",
  5415. "width": 411,
  5416. "height": 144
  5417. },
  5418. "_anchorPoint": {
  5419. "__type__": "cc.Vec2",
  5420. "x": 0.5,
  5421. "y": 0.5
  5422. },
  5423. "_id": "5fvSQUMDNCp6al9kXKPwEt"
  5424. },
  5425. {
  5426. "__type__": "cc.Sprite",
  5427. "_name": "",
  5428. "_objFlags": 0,
  5429. "node": {
  5430. "__id__": 146
  5431. },
  5432. "_enabled": true,
  5433. "__prefab": null,
  5434. "_customMaterial": null,
  5435. "_srcBlendFactor": 2,
  5436. "_dstBlendFactor": 4,
  5437. "_color": {
  5438. "__type__": "cc.Color",
  5439. "r": 255,
  5440. "g": 255,
  5441. "b": 255,
  5442. "a": 255
  5443. },
  5444. "_spriteFrame": {
  5445. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5446. "__expectedType__": "cc.SpriteFrame"
  5447. },
  5448. "_type": 1,
  5449. "_fillType": 0,
  5450. "_sizeMode": 0,
  5451. "_fillCenter": {
  5452. "__type__": "cc.Vec2",
  5453. "x": 0,
  5454. "y": 0
  5455. },
  5456. "_fillStart": 0,
  5457. "_fillRange": 0,
  5458. "_isTrimmedMode": true,
  5459. "_useGrayscale": false,
  5460. "_atlas": null,
  5461. "_id": "39YZR6BMFCGJM/GVyyvUhu"
  5462. },
  5463. {
  5464. "__type__": "cc.Button",
  5465. "_name": "",
  5466. "_objFlags": 0,
  5467. "node": {
  5468. "__id__": 146
  5469. },
  5470. "_enabled": true,
  5471. "__prefab": null,
  5472. "clickEvents": [
  5473. {
  5474. "__id__": 153
  5475. }
  5476. ],
  5477. "_interactable": true,
  5478. "_transition": 2,
  5479. "_normalColor": {
  5480. "__type__": "cc.Color",
  5481. "r": 214,
  5482. "g": 214,
  5483. "b": 214,
  5484. "a": 255
  5485. },
  5486. "_hoverColor": {
  5487. "__type__": "cc.Color",
  5488. "r": 211,
  5489. "g": 211,
  5490. "b": 211,
  5491. "a": 255
  5492. },
  5493. "_pressedColor": {
  5494. "__type__": "cc.Color",
  5495. "r": 255,
  5496. "g": 255,
  5497. "b": 255,
  5498. "a": 255
  5499. },
  5500. "_disabledColor": {
  5501. "__type__": "cc.Color",
  5502. "r": 124,
  5503. "g": 124,
  5504. "b": 124,
  5505. "a": 255
  5506. },
  5507. "_normalSprite": {
  5508. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5509. "__expectedType__": "cc.SpriteFrame"
  5510. },
  5511. "_hoverSprite": {
  5512. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5513. "__expectedType__": "cc.SpriteFrame"
  5514. },
  5515. "_pressedSprite": {
  5516. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5517. "__expectedType__": "cc.SpriteFrame"
  5518. },
  5519. "_disabledSprite": {
  5520. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  5521. "__expectedType__": "cc.SpriteFrame"
  5522. },
  5523. "_duration": 0.1,
  5524. "_zoomScale": 1.2,
  5525. "_target": {
  5526. "__id__": 146
  5527. },
  5528. "_id": "21XCP1xr5EzLlcML0x6VMd"
  5529. },
  5530. {
  5531. "__type__": "cc.ClickEvent",
  5532. "target": {
  5533. "__id__": 135
  5534. },
  5535. "component": "",
  5536. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  5537. "handler": "backHomeBtn",
  5538. "customEventData": ""
  5539. },
  5540. {
  5541. "__type__": "cc.Node",
  5542. "_name": "EnterGameBtn",
  5543. "_objFlags": 0,
  5544. "_parent": {
  5545. "__id__": 135
  5546. },
  5547. "_children": [
  5548. {
  5549. "__id__": 155
  5550. }
  5551. ],
  5552. "_active": true,
  5553. "_components": [
  5554. {
  5555. "__id__": 158
  5556. },
  5557. {
  5558. "__id__": 159
  5559. },
  5560. {
  5561. "__id__": 160
  5562. }
  5563. ],
  5564. "_prefab": null,
  5565. "_lpos": {
  5566. "__type__": "cc.Vec3",
  5567. "x": 274.528,
  5568. "y": -267.351,
  5569. "z": 0
  5570. },
  5571. "_lrot": {
  5572. "__type__": "cc.Quat",
  5573. "x": 0,
  5574. "y": 0,
  5575. "z": 0,
  5576. "w": 1
  5577. },
  5578. "_lscale": {
  5579. "__type__": "cc.Vec3",
  5580. "x": 1,
  5581. "y": 1,
  5582. "z": 1
  5583. },
  5584. "_mobility": 0,
  5585. "_layer": 33554432,
  5586. "_euler": {
  5587. "__type__": "cc.Vec3",
  5588. "x": 0,
  5589. "y": 0,
  5590. "z": 0
  5591. },
  5592. "_id": "c4v2Qa101BWI6tGDsWMzJF"
  5593. },
  5594. {
  5595. "__type__": "cc.Node",
  5596. "_name": "Label",
  5597. "_objFlags": 512,
  5598. "_parent": {
  5599. "__id__": 154
  5600. },
  5601. "_children": [],
  5602. "_active": true,
  5603. "_components": [
  5604. {
  5605. "__id__": 156
  5606. },
  5607. {
  5608. "__id__": 157
  5609. }
  5610. ],
  5611. "_prefab": null,
  5612. "_lpos": {
  5613. "__type__": "cc.Vec3",
  5614. "x": 1.5368852459016438,
  5615. "y": 6.147540983606557,
  5616. "z": 0
  5617. },
  5618. "_lrot": {
  5619. "__type__": "cc.Quat",
  5620. "x": 0,
  5621. "y": 0,
  5622. "z": 0,
  5623. "w": 1
  5624. },
  5625. "_lscale": {
  5626. "__type__": "cc.Vec3",
  5627. "x": 1,
  5628. "y": 1,
  5629. "z": 1
  5630. },
  5631. "_mobility": 0,
  5632. "_layer": 33554432,
  5633. "_euler": {
  5634. "__type__": "cc.Vec3",
  5635. "x": 0,
  5636. "y": 0,
  5637. "z": 0
  5638. },
  5639. "_id": "5fVGD3WgBB2aEHqSDuE3Fa"
  5640. },
  5641. {
  5642. "__type__": "cc.UITransform",
  5643. "_name": "",
  5644. "_objFlags": 0,
  5645. "node": {
  5646. "__id__": 155
  5647. },
  5648. "_enabled": true,
  5649. "__prefab": null,
  5650. "_contentSize": {
  5651. "__type__": "cc.Size",
  5652. "width": 312.09016393442624,
  5653. "height": 70.73770491803279
  5654. },
  5655. "_anchorPoint": {
  5656. "__type__": "cc.Vec2",
  5657. "x": 0.5,
  5658. "y": 0.5
  5659. },
  5660. "_id": "e6Z6CYjXdHDrkZyssOT8yJ"
  5661. },
  5662. {
  5663. "__type__": "cc.Label",
  5664. "_name": "",
  5665. "_objFlags": 0,
  5666. "node": {
  5667. "__id__": 155
  5668. },
  5669. "_enabled": true,
  5670. "__prefab": null,
  5671. "_customMaterial": null,
  5672. "_srcBlendFactor": 2,
  5673. "_dstBlendFactor": 4,
  5674. "_color": {
  5675. "__type__": "cc.Color",
  5676. "r": 255,
  5677. "g": 255,
  5678. "b": 255,
  5679. "a": 255
  5680. },
  5681. "_string": "下一关",
  5682. "_horizontalAlign": 1,
  5683. "_verticalAlign": 1,
  5684. "_actualFontSize": 55,
  5685. "_fontSize": 55,
  5686. "_fontFamily": "Arial",
  5687. "_lineHeight": 70,
  5688. "_overflow": 1,
  5689. "_enableWrapText": false,
  5690. "_font": null,
  5691. "_isSystemFontUsed": true,
  5692. "_spacingX": 0,
  5693. "_isItalic": false,
  5694. "_isBold": false,
  5695. "_isUnderline": false,
  5696. "_underlineHeight": 2,
  5697. "_cacheMode": 0,
  5698. "_id": "efEy7z4v1AW5ryp6+lKHYy"
  5699. },
  5700. {
  5701. "__type__": "cc.UITransform",
  5702. "_name": "",
  5703. "_objFlags": 0,
  5704. "node": {
  5705. "__id__": 154
  5706. },
  5707. "_enabled": true,
  5708. "__prefab": null,
  5709. "_contentSize": {
  5710. "__type__": "cc.Size",
  5711. "width": 411,
  5712. "height": 144
  5713. },
  5714. "_anchorPoint": {
  5715. "__type__": "cc.Vec2",
  5716. "x": 0.5,
  5717. "y": 0.5
  5718. },
  5719. "_id": "d6mO4LZRhKQJmqXemk6x4d"
  5720. },
  5721. {
  5722. "__type__": "cc.Sprite",
  5723. "_name": "",
  5724. "_objFlags": 0,
  5725. "node": {
  5726. "__id__": 154
  5727. },
  5728. "_enabled": true,
  5729. "__prefab": null,
  5730. "_customMaterial": null,
  5731. "_srcBlendFactor": 2,
  5732. "_dstBlendFactor": 4,
  5733. "_color": {
  5734. "__type__": "cc.Color",
  5735. "r": 255,
  5736. "g": 255,
  5737. "b": 255,
  5738. "a": 255
  5739. },
  5740. "_spriteFrame": {
  5741. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5742. "__expectedType__": "cc.SpriteFrame"
  5743. },
  5744. "_type": 1,
  5745. "_fillType": 0,
  5746. "_sizeMode": 0,
  5747. "_fillCenter": {
  5748. "__type__": "cc.Vec2",
  5749. "x": 0,
  5750. "y": 0
  5751. },
  5752. "_fillStart": 0,
  5753. "_fillRange": 0,
  5754. "_isTrimmedMode": true,
  5755. "_useGrayscale": false,
  5756. "_atlas": null,
  5757. "_id": "4a8xPgfXdJYZ32RyegL89F"
  5758. },
  5759. {
  5760. "__type__": "cc.Button",
  5761. "_name": "",
  5762. "_objFlags": 0,
  5763. "node": {
  5764. "__id__": 154
  5765. },
  5766. "_enabled": true,
  5767. "__prefab": null,
  5768. "clickEvents": [
  5769. {
  5770. "__id__": 161
  5771. }
  5772. ],
  5773. "_interactable": true,
  5774. "_transition": 2,
  5775. "_normalColor": {
  5776. "__type__": "cc.Color",
  5777. "r": 214,
  5778. "g": 214,
  5779. "b": 214,
  5780. "a": 255
  5781. },
  5782. "_hoverColor": {
  5783. "__type__": "cc.Color",
  5784. "r": 211,
  5785. "g": 211,
  5786. "b": 211,
  5787. "a": 255
  5788. },
  5789. "_pressedColor": {
  5790. "__type__": "cc.Color",
  5791. "r": 255,
  5792. "g": 255,
  5793. "b": 255,
  5794. "a": 255
  5795. },
  5796. "_disabledColor": {
  5797. "__type__": "cc.Color",
  5798. "r": 124,
  5799. "g": 124,
  5800. "b": 124,
  5801. "a": 255
  5802. },
  5803. "_normalSprite": {
  5804. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5805. "__expectedType__": "cc.SpriteFrame"
  5806. },
  5807. "_hoverSprite": {
  5808. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5809. "__expectedType__": "cc.SpriteFrame"
  5810. },
  5811. "_pressedSprite": {
  5812. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5813. "__expectedType__": "cc.SpriteFrame"
  5814. },
  5815. "_disabledSprite": {
  5816. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  5817. "__expectedType__": "cc.SpriteFrame"
  5818. },
  5819. "_duration": 0.1,
  5820. "_zoomScale": 1.2,
  5821. "_target": {
  5822. "__id__": 154
  5823. },
  5824. "_id": "316yjU9EJByo9HI5050ePg"
  5825. },
  5826. {
  5827. "__type__": "cc.ClickEvent",
  5828. "target": {
  5829. "__id__": 135
  5830. },
  5831. "component": "",
  5832. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  5833. "handler": "levelBtn",
  5834. "customEventData": ""
  5835. },
  5836. {
  5837. "__type__": "cc.Node",
  5838. "_name": "curLevelScore",
  5839. "_objFlags": 0,
  5840. "_parent": {
  5841. "__id__": 135
  5842. },
  5843. "_children": [],
  5844. "_active": true,
  5845. "_components": [
  5846. {
  5847. "__id__": 163
  5848. },
  5849. {
  5850. "__id__": 164
  5851. }
  5852. ],
  5853. "_prefab": null,
  5854. "_lpos": {
  5855. "__type__": "cc.Vec3",
  5856. "x": 360.28,
  5857. "y": -41.767,
  5858. "z": 0
  5859. },
  5860. "_lrot": {
  5861. "__type__": "cc.Quat",
  5862. "x": 0,
  5863. "y": 0,
  5864. "z": 0,
  5865. "w": 1
  5866. },
  5867. "_lscale": {
  5868. "__type__": "cc.Vec3",
  5869. "x": 1,
  5870. "y": 1,
  5871. "z": 1
  5872. },
  5873. "_mobility": 0,
  5874. "_layer": 33554432,
  5875. "_euler": {
  5876. "__type__": "cc.Vec3",
  5877. "x": 0,
  5878. "y": 0,
  5879. "z": 0
  5880. },
  5881. "_id": "30IKnBGZ1H5IAMCvwsDnLx"
  5882. },
  5883. {
  5884. "__type__": "cc.UITransform",
  5885. "_name": "",
  5886. "_objFlags": 0,
  5887. "node": {
  5888. "__id__": 162
  5889. },
  5890. "_enabled": true,
  5891. "__prefab": null,
  5892. "_contentSize": {
  5893. "__type__": "cc.Size",
  5894. "width": 560.454,
  5895. "height": 214.07999999999998
  5896. },
  5897. "_anchorPoint": {
  5898. "__type__": "cc.Vec2",
  5899. "x": 0.5,
  5900. "y": 0.5
  5901. },
  5902. "_id": "b9ftYwsWhH2oBIJtk5KyQM"
  5903. },
  5904. {
  5905. "__type__": "cc.Label",
  5906. "_name": "",
  5907. "_objFlags": 0,
  5908. "node": {
  5909. "__id__": 162
  5910. },
  5911. "_enabled": true,
  5912. "__prefab": null,
  5913. "_customMaterial": null,
  5914. "_srcBlendFactor": 2,
  5915. "_dstBlendFactor": 4,
  5916. "_color": {
  5917. "__type__": "cc.Color",
  5918. "r": 169,
  5919. "g": 79,
  5920. "b": 9,
  5921. "a": 255
  5922. },
  5923. "_string": "本关得分:1",
  5924. "_horizontalAlign": 0,
  5925. "_verticalAlign": 1,
  5926. "_actualFontSize": 60,
  5927. "_fontSize": 60,
  5928. "_fontFamily": "Arial",
  5929. "_lineHeight": 100,
  5930. "_overflow": 1,
  5931. "_enableWrapText": true,
  5932. "_font": null,
  5933. "_isSystemFontUsed": true,
  5934. "_spacingX": 0,
  5935. "_isItalic": false,
  5936. "_isBold": true,
  5937. "_isUnderline": false,
  5938. "_underlineHeight": 2,
  5939. "_cacheMode": 0,
  5940. "_id": "f48BLr3uZJWJUtb57rrGm9"
  5941. },
  5942. {
  5943. "__type__": "cc.Node",
  5944. "_name": "TotalScore",
  5945. "_objFlags": 0,
  5946. "_parent": {
  5947. "__id__": 135
  5948. },
  5949. "_children": [],
  5950. "_active": true,
  5951. "_components": [
  5952. {
  5953. "__id__": 166
  5954. },
  5955. {
  5956. "__id__": 167
  5957. }
  5958. ],
  5959. "_prefab": null,
  5960. "_lpos": {
  5961. "__type__": "cc.Vec3",
  5962. "x": -186.859,
  5963. "y": -41.767,
  5964. "z": 0
  5965. },
  5966. "_lrot": {
  5967. "__type__": "cc.Quat",
  5968. "x": 0,
  5969. "y": 0,
  5970. "z": 0,
  5971. "w": 1
  5972. },
  5973. "_lscale": {
  5974. "__type__": "cc.Vec3",
  5975. "x": 1,
  5976. "y": 1,
  5977. "z": 1
  5978. },
  5979. "_mobility": 0,
  5980. "_layer": 33554432,
  5981. "_euler": {
  5982. "__type__": "cc.Vec3",
  5983. "x": 0,
  5984. "y": 0,
  5985. "z": 0
  5986. },
  5987. "_id": "8eEMLeM9lA/r3Lvtw1+GJH"
  5988. },
  5989. {
  5990. "__type__": "cc.UITransform",
  5991. "_name": "",
  5992. "_objFlags": 0,
  5993. "node": {
  5994. "__id__": 165
  5995. },
  5996. "_enabled": true,
  5997. "__prefab": null,
  5998. "_contentSize": {
  5999. "__type__": "cc.Size",
  6000. "width": 560.454,
  6001. "height": 214.07999999999998
  6002. },
  6003. "_anchorPoint": {
  6004. "__type__": "cc.Vec2",
  6005. "x": 0.5,
  6006. "y": 0.5
  6007. },
  6008. "_id": "fddU8+g+5Oc71kzSAQ9Gnw"
  6009. },
  6010. {
  6011. "__type__": "cc.Label",
  6012. "_name": "",
  6013. "_objFlags": 0,
  6014. "node": {
  6015. "__id__": 165
  6016. },
  6017. "_enabled": true,
  6018. "__prefab": null,
  6019. "_customMaterial": null,
  6020. "_srcBlendFactor": 2,
  6021. "_dstBlendFactor": 4,
  6022. "_color": {
  6023. "__type__": "cc.Color",
  6024. "r": 169,
  6025. "g": 79,
  6026. "b": 9,
  6027. "a": 255
  6028. },
  6029. "_string": "总得分:",
  6030. "_horizontalAlign": 0,
  6031. "_verticalAlign": 1,
  6032. "_actualFontSize": 60,
  6033. "_fontSize": 60,
  6034. "_fontFamily": "Arial",
  6035. "_lineHeight": 100,
  6036. "_overflow": 1,
  6037. "_enableWrapText": true,
  6038. "_font": null,
  6039. "_isSystemFontUsed": true,
  6040. "_spacingX": 0,
  6041. "_isItalic": false,
  6042. "_isBold": true,
  6043. "_isUnderline": false,
  6044. "_underlineHeight": 2,
  6045. "_cacheMode": 0,
  6046. "_id": "daj3zhY7xLRr374der4FUr"
  6047. },
  6048. {
  6049. "__type__": "cc.Node",
  6050. "_name": "resultIcon",
  6051. "_objFlags": 0,
  6052. "_parent": {
  6053. "__id__": 135
  6054. },
  6055. "_children": [],
  6056. "_active": true,
  6057. "_components": [
  6058. {
  6059. "__id__": 169
  6060. },
  6061. {
  6062. "__id__": 170
  6063. }
  6064. ],
  6065. "_prefab": null,
  6066. "_lpos": {
  6067. "__type__": "cc.Vec3",
  6068. "x": 0,
  6069. "y": 350.842,
  6070. "z": 0
  6071. },
  6072. "_lrot": {
  6073. "__type__": "cc.Quat",
  6074. "x": 0,
  6075. "y": 0,
  6076. "z": 0,
  6077. "w": 1
  6078. },
  6079. "_lscale": {
  6080. "__type__": "cc.Vec3",
  6081. "x": 1,
  6082. "y": 1,
  6083. "z": 1
  6084. },
  6085. "_mobility": 0,
  6086. "_layer": 33554432,
  6087. "_euler": {
  6088. "__type__": "cc.Vec3",
  6089. "x": 0,
  6090. "y": 0,
  6091. "z": 0
  6092. },
  6093. "_id": "ablaRIey1AdKR/PdKBGdva"
  6094. },
  6095. {
  6096. "__type__": "cc.UITransform",
  6097. "_name": "",
  6098. "_objFlags": 0,
  6099. "node": {
  6100. "__id__": 168
  6101. },
  6102. "_enabled": true,
  6103. "__prefab": null,
  6104. "_contentSize": {
  6105. "__type__": "cc.Size",
  6106. "width": 276,
  6107. "height": 276
  6108. },
  6109. "_anchorPoint": {
  6110. "__type__": "cc.Vec2",
  6111. "x": 0.5,
  6112. "y": 0.5
  6113. },
  6114. "_id": "4fUoVujcdNlK+MD7RshRMb"
  6115. },
  6116. {
  6117. "__type__": "cc.Sprite",
  6118. "_name": "",
  6119. "_objFlags": 0,
  6120. "node": {
  6121. "__id__": 168
  6122. },
  6123. "_enabled": true,
  6124. "__prefab": null,
  6125. "_customMaterial": null,
  6126. "_srcBlendFactor": 2,
  6127. "_dstBlendFactor": 4,
  6128. "_color": {
  6129. "__type__": "cc.Color",
  6130. "r": 255,
  6131. "g": 255,
  6132. "b": 255,
  6133. "a": 255
  6134. },
  6135. "_spriteFrame": {
  6136. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  6137. "__expectedType__": "cc.SpriteFrame"
  6138. },
  6139. "_type": 0,
  6140. "_fillType": 0,
  6141. "_sizeMode": 1,
  6142. "_fillCenter": {
  6143. "__type__": "cc.Vec2",
  6144. "x": 0,
  6145. "y": 0
  6146. },
  6147. "_fillStart": 0,
  6148. "_fillRange": 0,
  6149. "_isTrimmedMode": true,
  6150. "_useGrayscale": false,
  6151. "_atlas": null,
  6152. "_id": "cf68D5mlVJTaZAxv92Ru9l"
  6153. },
  6154. {
  6155. "__type__": "cc.UITransform",
  6156. "_name": "",
  6157. "_objFlags": 0,
  6158. "node": {
  6159. "__id__": 135
  6160. },
  6161. "_enabled": true,
  6162. "__prefab": null,
  6163. "_contentSize": {
  6164. "__type__": "cc.Size",
  6165. "width": 1311,
  6166. "height": 806
  6167. },
  6168. "_anchorPoint": {
  6169. "__type__": "cc.Vec2",
  6170. "x": 0.5,
  6171. "y": 0.5
  6172. },
  6173. "_id": "e1oJ9r1jxA5pPo0XuNly0p"
  6174. },
  6175. {
  6176. "__type__": "cc.Sprite",
  6177. "_name": "",
  6178. "_objFlags": 0,
  6179. "node": {
  6180. "__id__": 135
  6181. },
  6182. "_enabled": false,
  6183. "__prefab": null,
  6184. "_customMaterial": null,
  6185. "_srcBlendFactor": 2,
  6186. "_dstBlendFactor": 4,
  6187. "_color": {
  6188. "__type__": "cc.Color",
  6189. "r": 255,
  6190. "g": 255,
  6191. "b": 255,
  6192. "a": 255
  6193. },
  6194. "_spriteFrame": {
  6195. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  6196. "__expectedType__": "cc.SpriteFrame"
  6197. },
  6198. "_type": 1,
  6199. "_fillType": 0,
  6200. "_sizeMode": 0,
  6201. "_fillCenter": {
  6202. "__type__": "cc.Vec2",
  6203. "x": 0,
  6204. "y": 0
  6205. },
  6206. "_fillStart": 0,
  6207. "_fillRange": 0,
  6208. "_isTrimmedMode": true,
  6209. "_useGrayscale": false,
  6210. "_atlas": null,
  6211. "_id": "66TmtC821B04UJpU6dEFte"
  6212. },
  6213. {
  6214. "__type__": "95501FTS+FP8aW52qXh/kCV",
  6215. "_name": "",
  6216. "_objFlags": 0,
  6217. "node": {
  6218. "__id__": 135
  6219. },
  6220. "_enabled": true,
  6221. "__prefab": null,
  6222. "successBg": {
  6223. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  6224. "__expectedType__": "cc.SpriteFrame"
  6225. },
  6226. "failBg": {
  6227. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  6228. "__expectedType__": "cc.SpriteFrame"
  6229. },
  6230. "curLevelLabel": {
  6231. "__id__": 145
  6232. },
  6233. "curScoreLabel": {
  6234. "__id__": 164
  6235. },
  6236. "totalScoreLabel": {
  6237. "__id__": 167
  6238. },
  6239. "btnLabel": {
  6240. "__id__": 157
  6241. },
  6242. "reusltIcon": {
  6243. "__id__": 168
  6244. },
  6245. "_id": "bfuho8AsFN+phvO6+CUkol"
  6246. },
  6247. {
  6248. "__type__": "cc.BlockInputEvents",
  6249. "_name": "",
  6250. "_objFlags": 0,
  6251. "node": {
  6252. "__id__": 135
  6253. },
  6254. "_enabled": true,
  6255. "__prefab": null,
  6256. "_id": "c9xfJ+PJ1FC5D3PgOx0tyK"
  6257. },
  6258. {
  6259. "__type__": "cc.Node",
  6260. "_objFlags": 512,
  6261. "_parent": {
  6262. "__id__": 6
  6263. },
  6264. "_prefab": {
  6265. "__id__": 176
  6266. },
  6267. "__editorExtras__": {}
  6268. },
  6269. {
  6270. "__type__": "cc.PrefabInfo",
  6271. "root": {
  6272. "__id__": 175
  6273. },
  6274. "asset": {
  6275. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  6276. "__expectedType__": "cc.Prefab"
  6277. },
  6278. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  6279. "instance": {
  6280. "__id__": 177
  6281. },
  6282. "targetOverrides": null,
  6283. "nestedPrefabInstanceRoots": null
  6284. },
  6285. {
  6286. "__type__": "cc.PrefabInstance",
  6287. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  6288. "prefabRootNode": null,
  6289. "mountedChildren": [],
  6290. "mountedComponents": [
  6291. {
  6292. "__id__": 178
  6293. }
  6294. ],
  6295. "propertyOverrides": [
  6296. {
  6297. "__id__": 182
  6298. },
  6299. {
  6300. "__id__": 184
  6301. },
  6302. {
  6303. "__id__": 185
  6304. },
  6305. {
  6306. "__id__": 186
  6307. },
  6308. {
  6309. "__id__": 187
  6310. }
  6311. ],
  6312. "removedComponents": []
  6313. },
  6314. {
  6315. "__type__": "cc.MountedComponentsInfo",
  6316. "targetInfo": {
  6317. "__id__": 179
  6318. },
  6319. "components": [
  6320. {
  6321. "__id__": 180
  6322. }
  6323. ]
  6324. },
  6325. {
  6326. "__type__": "cc.TargetInfo",
  6327. "localID": [
  6328. "f5VirVdr1A/q1iUlQGtO+X"
  6329. ]
  6330. },
  6331. {
  6332. "__type__": "cc.BlockInputEvents",
  6333. "_name": "",
  6334. "_objFlags": 0,
  6335. "__editorExtras__": {
  6336. "mountedRoot": {
  6337. "__id__": 175
  6338. }
  6339. },
  6340. "node": {
  6341. "__id__": 175
  6342. },
  6343. "_enabled": true,
  6344. "__prefab": {
  6345. "__id__": 181
  6346. },
  6347. "_id": "9fn6AIHdtHQrrJ6DRn6j3I"
  6348. },
  6349. {
  6350. "__type__": "cc.CompPrefabInfo",
  6351. "fileId": "83iCAxVqtFY6RZ27CWBOBc"
  6352. },
  6353. {
  6354. "__type__": "CCPropertyOverrideInfo",
  6355. "targetInfo": {
  6356. "__id__": 183
  6357. },
  6358. "propertyPath": [
  6359. "_name"
  6360. ],
  6361. "value": "PlayAEndTip"
  6362. },
  6363. {
  6364. "__type__": "cc.TargetInfo",
  6365. "localID": [
  6366. "f5VirVdr1A/q1iUlQGtO+X"
  6367. ]
  6368. },
  6369. {
  6370. "__type__": "CCPropertyOverrideInfo",
  6371. "targetInfo": {
  6372. "__id__": 183
  6373. },
  6374. "propertyPath": [
  6375. "_lpos"
  6376. ],
  6377. "value": {
  6378. "__type__": "cc.Vec3",
  6379. "x": 0,
  6380. "y": 0,
  6381. "z": 0
  6382. }
  6383. },
  6384. {
  6385. "__type__": "CCPropertyOverrideInfo",
  6386. "targetInfo": {
  6387. "__id__": 183
  6388. },
  6389. "propertyPath": [
  6390. "_lrot"
  6391. ],
  6392. "value": {
  6393. "__type__": "cc.Quat",
  6394. "x": 0,
  6395. "y": 0,
  6396. "z": 0,
  6397. "w": 1
  6398. }
  6399. },
  6400. {
  6401. "__type__": "CCPropertyOverrideInfo",
  6402. "targetInfo": {
  6403. "__id__": 183
  6404. },
  6405. "propertyPath": [
  6406. "_euler"
  6407. ],
  6408. "value": {
  6409. "__type__": "cc.Vec3",
  6410. "x": 0,
  6411. "y": 0,
  6412. "z": 0
  6413. }
  6414. },
  6415. {
  6416. "__type__": "CCPropertyOverrideInfo",
  6417. "targetInfo": {
  6418. "__id__": 183
  6419. },
  6420. "propertyPath": [
  6421. "_active"
  6422. ],
  6423. "value": false
  6424. },
  6425. {
  6426. "__type__": "cc.Node",
  6427. "_name": "Full",
  6428. "_objFlags": 0,
  6429. "_parent": {
  6430. "__id__": 6
  6431. },
  6432. "_children": [
  6433. {
  6434. "__id__": 189
  6435. },
  6436. {
  6437. "__id__": 198
  6438. },
  6439. {
  6440. "__id__": 207
  6441. }
  6442. ],
  6443. "_active": true,
  6444. "_components": [
  6445. {
  6446. "__id__": 216
  6447. }
  6448. ],
  6449. "_prefab": null,
  6450. "_lpos": {
  6451. "__type__": "cc.Vec3",
  6452. "x": 0,
  6453. "y": 142.021,
  6454. "z": 0
  6455. },
  6456. "_lrot": {
  6457. "__type__": "cc.Quat",
  6458. "x": 0,
  6459. "y": 0,
  6460. "z": 0,
  6461. "w": 1
  6462. },
  6463. "_lscale": {
  6464. "__type__": "cc.Vec3",
  6465. "x": 1,
  6466. "y": 1,
  6467. "z": 1
  6468. },
  6469. "_mobility": 0,
  6470. "_layer": 33554432,
  6471. "_euler": {
  6472. "__type__": "cc.Vec3",
  6473. "x": 0,
  6474. "y": 0,
  6475. "z": 0
  6476. },
  6477. "_id": "c9oXqH6spPnrZHhsepphVW"
  6478. },
  6479. {
  6480. "__type__": "cc.Node",
  6481. "_name": "GetScoreBg-001",
  6482. "_objFlags": 0,
  6483. "_parent": {
  6484. "__id__": 188
  6485. },
  6486. "_children": [
  6487. {
  6488. "__id__": 190
  6489. }
  6490. ],
  6491. "_active": true,
  6492. "_components": [
  6493. {
  6494. "__id__": 196
  6495. },
  6496. {
  6497. "__id__": 197
  6498. }
  6499. ],
  6500. "_prefab": null,
  6501. "_lpos": {
  6502. "__type__": "cc.Vec3",
  6503. "x": -389.109,
  6504. "y": 584.791,
  6505. "z": 0
  6506. },
  6507. "_lrot": {
  6508. "__type__": "cc.Quat",
  6509. "x": 0,
  6510. "y": 0,
  6511. "z": 0,
  6512. "w": 1
  6513. },
  6514. "_lscale": {
  6515. "__type__": "cc.Vec3",
  6516. "x": 1,
  6517. "y": 1,
  6518. "z": 1
  6519. },
  6520. "_mobility": 0,
  6521. "_layer": 33554432,
  6522. "_euler": {
  6523. "__type__": "cc.Vec3",
  6524. "x": 0,
  6525. "y": 0,
  6526. "z": 0
  6527. },
  6528. "_id": "57dA6v6zZGx6I2RzlfGCDs"
  6529. },
  6530. {
  6531. "__type__": "cc.Node",
  6532. "_name": "GetScore",
  6533. "_objFlags": 0,
  6534. "_parent": {
  6535. "__id__": 189
  6536. },
  6537. "_children": [
  6538. {
  6539. "__id__": 191
  6540. }
  6541. ],
  6542. "_active": true,
  6543. "_components": [
  6544. {
  6545. "__id__": 194
  6546. },
  6547. {
  6548. "__id__": 195
  6549. }
  6550. ],
  6551. "_prefab": null,
  6552. "_lpos": {
  6553. "__type__": "cc.Vec3",
  6554. "x": -100.368,
  6555. "y": 0.904,
  6556. "z": 0
  6557. },
  6558. "_lrot": {
  6559. "__type__": "cc.Quat",
  6560. "x": 0,
  6561. "y": 0,
  6562. "z": 0,
  6563. "w": 1
  6564. },
  6565. "_lscale": {
  6566. "__type__": "cc.Vec3",
  6567. "x": 1,
  6568. "y": 1,
  6569. "z": 1
  6570. },
  6571. "_mobility": 0,
  6572. "_layer": 33554432,
  6573. "_euler": {
  6574. "__type__": "cc.Vec3",
  6575. "x": 0,
  6576. "y": 0,
  6577. "z": 0
  6578. },
  6579. "_id": "21F4VcmGBGQbY9XKly+3OM"
  6580. },
  6581. {
  6582. "__type__": "cc.Node",
  6583. "_name": "Score",
  6584. "_objFlags": 0,
  6585. "_parent": {
  6586. "__id__": 190
  6587. },
  6588. "_children": [],
  6589. "_active": true,
  6590. "_components": [
  6591. {
  6592. "__id__": 192
  6593. },
  6594. {
  6595. "__id__": 193
  6596. }
  6597. ],
  6598. "_prefab": null,
  6599. "_lpos": {
  6600. "__type__": "cc.Vec3",
  6601. "x": 139.812,
  6602. "y": 0.043,
  6603. "z": 0
  6604. },
  6605. "_lrot": {
  6606. "__type__": "cc.Quat",
  6607. "x": 0,
  6608. "y": 0,
  6609. "z": 0,
  6610. "w": 1
  6611. },
  6612. "_lscale": {
  6613. "__type__": "cc.Vec3",
  6614. "x": 1,
  6615. "y": 1,
  6616. "z": 1
  6617. },
  6618. "_mobility": 0,
  6619. "_layer": 33554432,
  6620. "_euler": {
  6621. "__type__": "cc.Vec3",
  6622. "x": 0,
  6623. "y": 0,
  6624. "z": 0
  6625. },
  6626. "_id": "c3ARBmAv5HF58yzk1NhTRc"
  6627. },
  6628. {
  6629. "__type__": "cc.UITransform",
  6630. "_name": "",
  6631. "_objFlags": 0,
  6632. "node": {
  6633. "__id__": 191
  6634. },
  6635. "_enabled": true,
  6636. "__prefab": null,
  6637. "_contentSize": {
  6638. "__type__": "cc.Size",
  6639. "width": 139.04,
  6640. "height": 50.4
  6641. },
  6642. "_anchorPoint": {
  6643. "__type__": "cc.Vec2",
  6644. "x": 0.5,
  6645. "y": 0.5
  6646. },
  6647. "_id": "8eUPCccj5PL5BdyOrj8BF2"
  6648. },
  6649. {
  6650. "__type__": "cc.Label",
  6651. "_name": "",
  6652. "_objFlags": 0,
  6653. "node": {
  6654. "__id__": 191
  6655. },
  6656. "_enabled": true,
  6657. "__prefab": null,
  6658. "_customMaterial": null,
  6659. "_srcBlendFactor": 2,
  6660. "_dstBlendFactor": 4,
  6661. "_color": {
  6662. "__type__": "cc.Color",
  6663. "r": 255,
  6664. "g": 255,
  6665. "b": 255,
  6666. "a": 255
  6667. },
  6668. "_string": "0",
  6669. "_horizontalAlign": 0,
  6670. "_verticalAlign": 1,
  6671. "_actualFontSize": 50,
  6672. "_fontSize": 50,
  6673. "_fontFamily": "Arial",
  6674. "_lineHeight": 40,
  6675. "_overflow": 1,
  6676. "_enableWrapText": true,
  6677. "_font": null,
  6678. "_isSystemFontUsed": true,
  6679. "_spacingX": 0,
  6680. "_isItalic": false,
  6681. "_isBold": false,
  6682. "_isUnderline": false,
  6683. "_underlineHeight": 2,
  6684. "_cacheMode": 0,
  6685. "_id": "5edrStalNMRqgKwuH7WWvs"
  6686. },
  6687. {
  6688. "__type__": "cc.UITransform",
  6689. "_name": "",
  6690. "_objFlags": 0,
  6691. "node": {
  6692. "__id__": 190
  6693. },
  6694. "_enabled": true,
  6695. "__prefab": null,
  6696. "_contentSize": {
  6697. "__type__": "cc.Size",
  6698. "width": 100,
  6699. "height": 88.2
  6700. },
  6701. "_anchorPoint": {
  6702. "__type__": "cc.Vec2",
  6703. "x": 0.5,
  6704. "y": 0.5
  6705. },
  6706. "_id": "e2nmng0SNOWY3ETG8JlKK1"
  6707. },
  6708. {
  6709. "__type__": "cc.Label",
  6710. "_name": "",
  6711. "_objFlags": 0,
  6712. "node": {
  6713. "__id__": 190
  6714. },
  6715. "_enabled": true,
  6716. "__prefab": null,
  6717. "_customMaterial": null,
  6718. "_srcBlendFactor": 2,
  6719. "_dstBlendFactor": 4,
  6720. "_color": {
  6721. "__type__": "cc.Color",
  6722. "r": 255,
  6723. "g": 255,
  6724. "b": 255,
  6725. "a": 255
  6726. },
  6727. "_string": "得分",
  6728. "_horizontalAlign": 1,
  6729. "_verticalAlign": 1,
  6730. "_actualFontSize": 50,
  6731. "_fontSize": 50,
  6732. "_fontFamily": "Arial",
  6733. "_lineHeight": 70,
  6734. "_overflow": 0,
  6735. "_enableWrapText": true,
  6736. "_font": null,
  6737. "_isSystemFontUsed": true,
  6738. "_spacingX": 0,
  6739. "_isItalic": false,
  6740. "_isBold": false,
  6741. "_isUnderline": false,
  6742. "_underlineHeight": 2,
  6743. "_cacheMode": 0,
  6744. "_id": "c6eknloNVM27cYYWfzyzFV"
  6745. },
  6746. {
  6747. "__type__": "cc.UITransform",
  6748. "_name": "",
  6749. "_objFlags": 0,
  6750. "node": {
  6751. "__id__": 189
  6752. },
  6753. "_enabled": true,
  6754. "__prefab": null,
  6755. "_contentSize": {
  6756. "__type__": "cc.Size",
  6757. "width": 339.88994082840236,
  6758. "height": 110
  6759. },
  6760. "_anchorPoint": {
  6761. "__type__": "cc.Vec2",
  6762. "x": 0.5,
  6763. "y": 0.5
  6764. },
  6765. "_id": "1aHCgiIxNHYr8lTmamz0sd"
  6766. },
  6767. {
  6768. "__type__": "cc.Sprite",
  6769. "_name": "",
  6770. "_objFlags": 0,
  6771. "node": {
  6772. "__id__": 189
  6773. },
  6774. "_enabled": true,
  6775. "__prefab": null,
  6776. "_customMaterial": null,
  6777. "_srcBlendFactor": 2,
  6778. "_dstBlendFactor": 4,
  6779. "_color": {
  6780. "__type__": "cc.Color",
  6781. "r": 255,
  6782. "g": 255,
  6783. "b": 255,
  6784. "a": 255
  6785. },
  6786. "_spriteFrame": {
  6787. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  6788. "__expectedType__": "cc.SpriteFrame"
  6789. },
  6790. "_type": 0,
  6791. "_fillType": 0,
  6792. "_sizeMode": 0,
  6793. "_fillCenter": {
  6794. "__type__": "cc.Vec2",
  6795. "x": 0,
  6796. "y": 0
  6797. },
  6798. "_fillStart": 0,
  6799. "_fillRange": 0,
  6800. "_isTrimmedMode": true,
  6801. "_useGrayscale": false,
  6802. "_atlas": null,
  6803. "_id": "40tH7itqZPEa91hZbHJ8qv"
  6804. },
  6805. {
  6806. "__type__": "cc.Node",
  6807. "_name": "TimeBg-001",
  6808. "_objFlags": 0,
  6809. "_parent": {
  6810. "__id__": 188
  6811. },
  6812. "_children": [
  6813. {
  6814. "__id__": 199
  6815. }
  6816. ],
  6817. "_active": true,
  6818. "_components": [
  6819. {
  6820. "__id__": 205
  6821. },
  6822. {
  6823. "__id__": 206
  6824. }
  6825. ],
  6826. "_prefab": null,
  6827. "_lpos": {
  6828. "__type__": "cc.Vec3",
  6829. "x": -8.375,
  6830. "y": 584.791,
  6831. "z": 0
  6832. },
  6833. "_lrot": {
  6834. "__type__": "cc.Quat",
  6835. "x": 0,
  6836. "y": 0,
  6837. "z": 0,
  6838. "w": 1
  6839. },
  6840. "_lscale": {
  6841. "__type__": "cc.Vec3",
  6842. "x": 1,
  6843. "y": 1,
  6844. "z": 1
  6845. },
  6846. "_mobility": 0,
  6847. "_layer": 33554432,
  6848. "_euler": {
  6849. "__type__": "cc.Vec3",
  6850. "x": 0,
  6851. "y": 0,
  6852. "z": 0
  6853. },
  6854. "_id": "4aSCpdR9VDLJ45JTFtz8Fa"
  6855. },
  6856. {
  6857. "__type__": "cc.Node",
  6858. "_name": "GameTime",
  6859. "_objFlags": 0,
  6860. "_parent": {
  6861. "__id__": 198
  6862. },
  6863. "_children": [
  6864. {
  6865. "__id__": 200
  6866. }
  6867. ],
  6868. "_active": true,
  6869. "_components": [
  6870. {
  6871. "__id__": 203
  6872. },
  6873. {
  6874. "__id__": 204
  6875. }
  6876. ],
  6877. "_prefab": null,
  6878. "_lpos": {
  6879. "__type__": "cc.Vec3",
  6880. "x": 5.195,
  6881. "y": 60.444,
  6882. "z": 0
  6883. },
  6884. "_lrot": {
  6885. "__type__": "cc.Quat",
  6886. "x": 0,
  6887. "y": 0,
  6888. "z": 0,
  6889. "w": 1
  6890. },
  6891. "_lscale": {
  6892. "__type__": "cc.Vec3",
  6893. "x": 1,
  6894. "y": 1,
  6895. "z": 1
  6896. },
  6897. "_mobility": 0,
  6898. "_layer": 33554432,
  6899. "_euler": {
  6900. "__type__": "cc.Vec3",
  6901. "x": 0,
  6902. "y": 0,
  6903. "z": 0
  6904. },
  6905. "_id": "abSwJMfOVCQJf6XyY6uMQ6"
  6906. },
  6907. {
  6908. "__type__": "cc.Node",
  6909. "_name": "TimeLabel",
  6910. "_objFlags": 0,
  6911. "_parent": {
  6912. "__id__": 199
  6913. },
  6914. "_children": [],
  6915. "_active": true,
  6916. "_components": [
  6917. {
  6918. "__id__": 201
  6919. },
  6920. {
  6921. "__id__": 202
  6922. }
  6923. ],
  6924. "_prefab": null,
  6925. "_lpos": {
  6926. "__type__": "cc.Vec3",
  6927. "x": 1.505,
  6928. "y": -57.186,
  6929. "z": 0
  6930. },
  6931. "_lrot": {
  6932. "__type__": "cc.Quat",
  6933. "x": 0,
  6934. "y": 0,
  6935. "z": 0,
  6936. "w": 1
  6937. },
  6938. "_lscale": {
  6939. "__type__": "cc.Vec3",
  6940. "x": 1,
  6941. "y": 1,
  6942. "z": 1
  6943. },
  6944. "_mobility": 0,
  6945. "_layer": 33554432,
  6946. "_euler": {
  6947. "__type__": "cc.Vec3",
  6948. "x": 0,
  6949. "y": 0,
  6950. "z": 0
  6951. },
  6952. "_id": "65hsv1vFZE0KDTlccEItna"
  6953. },
  6954. {
  6955. "__type__": "cc.UITransform",
  6956. "_name": "",
  6957. "_objFlags": 0,
  6958. "node": {
  6959. "__id__": 200
  6960. },
  6961. "_enabled": true,
  6962. "__prefab": null,
  6963. "_contentSize": {
  6964. "__type__": "cc.Size",
  6965. "width": 170,
  6966. "height": 50.4
  6967. },
  6968. "_anchorPoint": {
  6969. "__type__": "cc.Vec2",
  6970. "x": 0.5,
  6971. "y": 0.5
  6972. },
  6973. "_id": "12VTy6MlZC67WjWL27leZO"
  6974. },
  6975. {
  6976. "__type__": "cc.Label",
  6977. "_name": "",
  6978. "_objFlags": 0,
  6979. "node": {
  6980. "__id__": 200
  6981. },
  6982. "_enabled": true,
  6983. "__prefab": null,
  6984. "_customMaterial": null,
  6985. "_srcBlendFactor": 2,
  6986. "_dstBlendFactor": 4,
  6987. "_color": {
  6988. "__type__": "cc.Color",
  6989. "r": 255,
  6990. "g": 255,
  6991. "b": 255,
  6992. "a": 255
  6993. },
  6994. "_string": "2:00",
  6995. "_horizontalAlign": 1,
  6996. "_verticalAlign": 1,
  6997. "_actualFontSize": 55,
  6998. "_fontSize": 55,
  6999. "_fontFamily": "Arial",
  7000. "_lineHeight": 60,
  7001. "_overflow": 1,
  7002. "_enableWrapText": true,
  7003. "_font": null,
  7004. "_isSystemFontUsed": true,
  7005. "_spacingX": 0,
  7006. "_isItalic": false,
  7007. "_isBold": false,
  7008. "_isUnderline": false,
  7009. "_underlineHeight": 2,
  7010. "_cacheMode": 0,
  7011. "_id": "e4kJYbkA9NLpwjIfDQdWyH"
  7012. },
  7013. {
  7014. "__type__": "cc.UITransform",
  7015. "_name": "",
  7016. "_objFlags": 0,
  7017. "node": {
  7018. "__id__": 199
  7019. },
  7020. "_enabled": true,
  7021. "__prefab": null,
  7022. "_contentSize": {
  7023. "__type__": "cc.Size",
  7024. "width": 170,
  7025. "height": 50.4
  7026. },
  7027. "_anchorPoint": {
  7028. "__type__": "cc.Vec2",
  7029. "x": 0.5,
  7030. "y": 0.5
  7031. },
  7032. "_id": "75YeaujUNEd5Y/DMV9rS5h"
  7033. },
  7034. {
  7035. "__type__": "cc.Label",
  7036. "_name": "",
  7037. "_objFlags": 0,
  7038. "node": {
  7039. "__id__": 199
  7040. },
  7041. "_enabled": false,
  7042. "__prefab": null,
  7043. "_customMaterial": null,
  7044. "_srcBlendFactor": 2,
  7045. "_dstBlendFactor": 4,
  7046. "_color": {
  7047. "__type__": "cc.Color",
  7048. "r": 169,
  7049. "g": 74,
  7050. "b": 9,
  7051. "a": 255
  7052. },
  7053. "_string": "时间",
  7054. "_horizontalAlign": 1,
  7055. "_verticalAlign": 1,
  7056. "_actualFontSize": 50,
  7057. "_fontSize": 50,
  7058. "_fontFamily": "Arial",
  7059. "_lineHeight": 60,
  7060. "_overflow": 1,
  7061. "_enableWrapText": true,
  7062. "_font": null,
  7063. "_isSystemFontUsed": true,
  7064. "_spacingX": 0,
  7065. "_isItalic": false,
  7066. "_isBold": true,
  7067. "_isUnderline": false,
  7068. "_underlineHeight": 2,
  7069. "_cacheMode": 0,
  7070. "_id": "14mNIL6l5N1KmQyEiFoxNh"
  7071. },
  7072. {
  7073. "__type__": "cc.UITransform",
  7074. "_name": "",
  7075. "_objFlags": 0,
  7076. "node": {
  7077. "__id__": 198
  7078. },
  7079. "_enabled": true,
  7080. "__prefab": null,
  7081. "_contentSize": {
  7082. "__type__": "cc.Size",
  7083. "width": 271.13372781065095,
  7084. "height": 110
  7085. },
  7086. "_anchorPoint": {
  7087. "__type__": "cc.Vec2",
  7088. "x": 0.5,
  7089. "y": 0.5
  7090. },
  7091. "_id": "57NcWZMkVBkbrxoueUUD/x"
  7092. },
  7093. {
  7094. "__type__": "cc.Sprite",
  7095. "_name": "",
  7096. "_objFlags": 0,
  7097. "node": {
  7098. "__id__": 198
  7099. },
  7100. "_enabled": true,
  7101. "__prefab": null,
  7102. "_customMaterial": null,
  7103. "_srcBlendFactor": 2,
  7104. "_dstBlendFactor": 4,
  7105. "_color": {
  7106. "__type__": "cc.Color",
  7107. "r": 255,
  7108. "g": 255,
  7109. "b": 255,
  7110. "a": 255
  7111. },
  7112. "_spriteFrame": {
  7113. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7114. "__expectedType__": "cc.SpriteFrame"
  7115. },
  7116. "_type": 0,
  7117. "_fillType": 0,
  7118. "_sizeMode": 0,
  7119. "_fillCenter": {
  7120. "__type__": "cc.Vec2",
  7121. "x": 0,
  7122. "y": 0
  7123. },
  7124. "_fillStart": 0,
  7125. "_fillRange": 0,
  7126. "_isTrimmedMode": true,
  7127. "_useGrayscale": false,
  7128. "_atlas": null,
  7129. "_id": "36HQflI7RE+5VijzL+C6JI"
  7130. },
  7131. {
  7132. "__type__": "cc.Node",
  7133. "_name": "LevelBg-001",
  7134. "_objFlags": 0,
  7135. "_parent": {
  7136. "__id__": 188
  7137. },
  7138. "_children": [
  7139. {
  7140. "__id__": 208
  7141. }
  7142. ],
  7143. "_active": true,
  7144. "_components": [
  7145. {
  7146. "__id__": 214
  7147. },
  7148. {
  7149. "__id__": 215
  7150. }
  7151. ],
  7152. "_prefab": null,
  7153. "_lpos": {
  7154. "__type__": "cc.Vec3",
  7155. "x": 341.429,
  7156. "y": 584.691,
  7157. "z": 0
  7158. },
  7159. "_lrot": {
  7160. "__type__": "cc.Quat",
  7161. "x": 0,
  7162. "y": 0,
  7163. "z": 0,
  7164. "w": 1
  7165. },
  7166. "_lscale": {
  7167. "__type__": "cc.Vec3",
  7168. "x": 1,
  7169. "y": 1,
  7170. "z": 1
  7171. },
  7172. "_mobility": 0,
  7173. "_layer": 33554432,
  7174. "_euler": {
  7175. "__type__": "cc.Vec3",
  7176. "x": 0,
  7177. "y": 0,
  7178. "z": 0
  7179. },
  7180. "_id": "18W8K3RklKE7YBPEW/b+w4"
  7181. },
  7182. {
  7183. "__type__": "cc.Node",
  7184. "_name": "level",
  7185. "_objFlags": 0,
  7186. "_parent": {
  7187. "__id__": 207
  7188. },
  7189. "_children": [
  7190. {
  7191. "__id__": 209
  7192. }
  7193. ],
  7194. "_active": true,
  7195. "_components": [
  7196. {
  7197. "__id__": 212
  7198. },
  7199. {
  7200. "__id__": 213
  7201. }
  7202. ],
  7203. "_prefab": null,
  7204. "_lpos": {
  7205. "__type__": "cc.Vec3",
  7206. "x": -31.36299999999983,
  7207. "y": -2.5679999999999836,
  7208. "z": 0
  7209. },
  7210. "_lrot": {
  7211. "__type__": "cc.Quat",
  7212. "x": 0,
  7213. "y": 0,
  7214. "z": 0,
  7215. "w": 1
  7216. },
  7217. "_lscale": {
  7218. "__type__": "cc.Vec3",
  7219. "x": 1,
  7220. "y": 1,
  7221. "z": 1
  7222. },
  7223. "_mobility": 0,
  7224. "_layer": 33554432,
  7225. "_euler": {
  7226. "__type__": "cc.Vec3",
  7227. "x": 0,
  7228. "y": 0,
  7229. "z": 0
  7230. },
  7231. "_id": "28n9jw1RxAMYEyBJi5q7IV"
  7232. },
  7233. {
  7234. "__type__": "cc.Node",
  7235. "_name": "levlLabel",
  7236. "_objFlags": 0,
  7237. "_parent": {
  7238. "__id__": 208
  7239. },
  7240. "_children": [],
  7241. "_active": true,
  7242. "_components": [
  7243. {
  7244. "__id__": 210
  7245. },
  7246. {
  7247. "__id__": 211
  7248. }
  7249. ],
  7250. "_prefab": null,
  7251. "_lpos": {
  7252. "__type__": "cc.Vec3",
  7253. "x": 29.897499999999997,
  7254. "y": 0,
  7255. "z": 0
  7256. },
  7257. "_lrot": {
  7258. "__type__": "cc.Quat",
  7259. "x": 0,
  7260. "y": 0,
  7261. "z": 0,
  7262. "w": 1
  7263. },
  7264. "_lscale": {
  7265. "__type__": "cc.Vec3",
  7266. "x": 1,
  7267. "y": 1,
  7268. "z": 1
  7269. },
  7270. "_mobility": 0,
  7271. "_layer": 33554432,
  7272. "_euler": {
  7273. "__type__": "cc.Vec3",
  7274. "x": 0,
  7275. "y": 0,
  7276. "z": 0
  7277. },
  7278. "_id": "1cfoT3LmxC46rpG6DLMxKc"
  7279. },
  7280. {
  7281. "__type__": "cc.UITransform",
  7282. "_name": "",
  7283. "_objFlags": 0,
  7284. "node": {
  7285. "__id__": 209
  7286. },
  7287. "_enabled": true,
  7288. "__prefab": null,
  7289. "_contentSize": {
  7290. "__type__": "cc.Size",
  7291. "width": 264.409,
  7292. "height": 50.4
  7293. },
  7294. "_anchorPoint": {
  7295. "__type__": "cc.Vec2",
  7296. "x": 0.5,
  7297. "y": 0.5
  7298. },
  7299. "_id": "1eFxQjbotKBL/YNqX3Gzc7"
  7300. },
  7301. {
  7302. "__type__": "cc.Label",
  7303. "_name": "",
  7304. "_objFlags": 0,
  7305. "node": {
  7306. "__id__": 209
  7307. },
  7308. "_enabled": true,
  7309. "__prefab": null,
  7310. "_customMaterial": null,
  7311. "_srcBlendFactor": 2,
  7312. "_dstBlendFactor": 4,
  7313. "_color": {
  7314. "__type__": "cc.Color",
  7315. "r": 255,
  7316. "g": 255,
  7317. "b": 255,
  7318. "a": 255
  7319. },
  7320. "_string": "第1关",
  7321. "_horizontalAlign": 1,
  7322. "_verticalAlign": 1,
  7323. "_actualFontSize": 55,
  7324. "_fontSize": 55,
  7325. "_fontFamily": "Arial",
  7326. "_lineHeight": 60,
  7327. "_overflow": 1,
  7328. "_enableWrapText": true,
  7329. "_font": null,
  7330. "_isSystemFontUsed": true,
  7331. "_spacingX": 0,
  7332. "_isItalic": false,
  7333. "_isBold": false,
  7334. "_isUnderline": false,
  7335. "_underlineHeight": 2,
  7336. "_cacheMode": 0,
  7337. "_id": "55LfjntZNGrJFLWvyWWtSm"
  7338. },
  7339. {
  7340. "__type__": "cc.UITransform",
  7341. "_name": "",
  7342. "_objFlags": 0,
  7343. "node": {
  7344. "__id__": 208
  7345. },
  7346. "_enabled": true,
  7347. "__prefab": null,
  7348. "_contentSize": {
  7349. "__type__": "cc.Size",
  7350. "width": 170,
  7351. "height": 50.4
  7352. },
  7353. "_anchorPoint": {
  7354. "__type__": "cc.Vec2",
  7355. "x": 0.5,
  7356. "y": 0.5
  7357. },
  7358. "_id": "36v8DhCxFEhbaRQUu2SYwM"
  7359. },
  7360. {
  7361. "__type__": "cc.Label",
  7362. "_name": "",
  7363. "_objFlags": 0,
  7364. "node": {
  7365. "__id__": 208
  7366. },
  7367. "_enabled": true,
  7368. "__prefab": null,
  7369. "_customMaterial": null,
  7370. "_srcBlendFactor": 2,
  7371. "_dstBlendFactor": 4,
  7372. "_color": {
  7373. "__type__": "cc.Color",
  7374. "r": 169,
  7375. "g": 74,
  7376. "b": 9,
  7377. "a": 255
  7378. },
  7379. "_string": "",
  7380. "_horizontalAlign": 1,
  7381. "_verticalAlign": 1,
  7382. "_actualFontSize": 50,
  7383. "_fontSize": 50,
  7384. "_fontFamily": "Arial",
  7385. "_lineHeight": 60,
  7386. "_overflow": 1,
  7387. "_enableWrapText": true,
  7388. "_font": null,
  7389. "_isSystemFontUsed": true,
  7390. "_spacingX": 0,
  7391. "_isItalic": false,
  7392. "_isBold": false,
  7393. "_isUnderline": false,
  7394. "_underlineHeight": 2,
  7395. "_cacheMode": 0,
  7396. "_id": "fe129x74hJN4xj3raXUAVT"
  7397. },
  7398. {
  7399. "__type__": "cc.UITransform",
  7400. "_name": "",
  7401. "_objFlags": 0,
  7402. "node": {
  7403. "__id__": 207
  7404. },
  7405. "_enabled": true,
  7406. "__prefab": null,
  7407. "_contentSize": {
  7408. "__type__": "cc.Size",
  7409. "width": 308.7455621301775,
  7410. "height": 110
  7411. },
  7412. "_anchorPoint": {
  7413. "__type__": "cc.Vec2",
  7414. "x": 0.5,
  7415. "y": 0.5
  7416. },
  7417. "_id": "8cfv83iHdIz5C2oUf4joZM"
  7418. },
  7419. {
  7420. "__type__": "cc.Sprite",
  7421. "_name": "",
  7422. "_objFlags": 0,
  7423. "node": {
  7424. "__id__": 207
  7425. },
  7426. "_enabled": true,
  7427. "__prefab": null,
  7428. "_customMaterial": null,
  7429. "_srcBlendFactor": 2,
  7430. "_dstBlendFactor": 4,
  7431. "_color": {
  7432. "__type__": "cc.Color",
  7433. "r": 255,
  7434. "g": 255,
  7435. "b": 255,
  7436. "a": 255
  7437. },
  7438. "_spriteFrame": {
  7439. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  7440. "__expectedType__": "cc.SpriteFrame"
  7441. },
  7442. "_type": 0,
  7443. "_fillType": 0,
  7444. "_sizeMode": 0,
  7445. "_fillCenter": {
  7446. "__type__": "cc.Vec2",
  7447. "x": 0,
  7448. "y": 0
  7449. },
  7450. "_fillStart": 0,
  7451. "_fillRange": 0,
  7452. "_isTrimmedMode": true,
  7453. "_useGrayscale": false,
  7454. "_atlas": null,
  7455. "_id": "7fylsX8H5Fi6bGlU9bkoRj"
  7456. },
  7457. {
  7458. "__type__": "cc.UITransform",
  7459. "_name": "",
  7460. "_objFlags": 0,
  7461. "node": {
  7462. "__id__": 188
  7463. },
  7464. "_enabled": true,
  7465. "__prefab": null,
  7466. "_contentSize": {
  7467. "__type__": "cc.Size",
  7468. "width": 100,
  7469. "height": 100
  7470. },
  7471. "_anchorPoint": {
  7472. "__type__": "cc.Vec2",
  7473. "x": 0.5,
  7474. "y": 0.5
  7475. },
  7476. "_id": "5crLBQnkNFBZs0d2UEw0Dg"
  7477. },
  7478. {
  7479. "__type__": "cc.UITransform",
  7480. "_name": "",
  7481. "_objFlags": 0,
  7482. "node": {
  7483. "__id__": 6
  7484. },
  7485. "_enabled": true,
  7486. "__prefab": null,
  7487. "_contentSize": {
  7488. "__type__": "cc.Size",
  7489. "width": 2000,
  7490. "height": 1397
  7491. },
  7492. "_anchorPoint": {
  7493. "__type__": "cc.Vec2",
  7494. "x": 0.5,
  7495. "y": 0.5
  7496. },
  7497. "_id": "7fILwz7cFK1YzMEYJMzKXQ"
  7498. },
  7499. {
  7500. "__type__": "cc.Sprite",
  7501. "_name": "",
  7502. "_objFlags": 0,
  7503. "node": {
  7504. "__id__": 6
  7505. },
  7506. "_enabled": false,
  7507. "__prefab": null,
  7508. "_customMaterial": null,
  7509. "_srcBlendFactor": 2,
  7510. "_dstBlendFactor": 4,
  7511. "_color": {
  7512. "__type__": "cc.Color",
  7513. "r": 255,
  7514. "g": 255,
  7515. "b": 255,
  7516. "a": 255
  7517. },
  7518. "_spriteFrame": {
  7519. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  7520. "__expectedType__": "cc.SpriteFrame"
  7521. },
  7522. "_type": 0,
  7523. "_fillType": 0,
  7524. "_sizeMode": 0,
  7525. "_fillCenter": {
  7526. "__type__": "cc.Vec2",
  7527. "x": 0,
  7528. "y": 0
  7529. },
  7530. "_fillStart": 0,
  7531. "_fillRange": 0,
  7532. "_isTrimmedMode": true,
  7533. "_useGrayscale": false,
  7534. "_atlas": null,
  7535. "_id": "0aY66hM85IIpSOcaPEAfJG"
  7536. },
  7537. {
  7538. "__type__": "cc.Node",
  7539. "_name": "AudioManager",
  7540. "_objFlags": 0,
  7541. "_parent": {
  7542. "__id__": 2
  7543. },
  7544. "_children": [],
  7545. "_active": true,
  7546. "_components": [
  7547. {
  7548. "__id__": 220
  7549. },
  7550. {
  7551. "__id__": 221
  7552. }
  7553. ],
  7554. "_prefab": null,
  7555. "_lpos": {
  7556. "__type__": "cc.Vec3",
  7557. "x": 0,
  7558. "y": 0,
  7559. "z": 0
  7560. },
  7561. "_lrot": {
  7562. "__type__": "cc.Quat",
  7563. "x": 0,
  7564. "y": 0,
  7565. "z": 0,
  7566. "w": 1
  7567. },
  7568. "_lscale": {
  7569. "__type__": "cc.Vec3",
  7570. "x": 1,
  7571. "y": 1,
  7572. "z": 1
  7573. },
  7574. "_mobility": 0,
  7575. "_layer": 1073741824,
  7576. "_euler": {
  7577. "__type__": "cc.Vec3",
  7578. "x": 0,
  7579. "y": 0,
  7580. "z": 0
  7581. },
  7582. "_id": "60FjbG8qtFfZ539qEMd+1/"
  7583. },
  7584. {
  7585. "__type__": "cc.AudioSource",
  7586. "_name": "",
  7587. "_objFlags": 0,
  7588. "node": {
  7589. "__id__": 219
  7590. },
  7591. "_enabled": true,
  7592. "__prefab": null,
  7593. "_clip": {
  7594. "__uuid__": "fa328517-f2b2-4385-ac73-177c99ed964c",
  7595. "__expectedType__": "cc.AudioClip"
  7596. },
  7597. "_loop": true,
  7598. "_playOnAwake": false,
  7599. "_volume": 1,
  7600. "_id": "eeGhp23mxGxpqwDPT1CJun"
  7601. },
  7602. {
  7603. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  7604. "_name": "",
  7605. "_objFlags": 0,
  7606. "node": {
  7607. "__id__": 219
  7608. },
  7609. "_enabled": true,
  7610. "__prefab": null,
  7611. "_id": "49WPaAsadKsKoMmKQLQhN1"
  7612. },
  7613. {
  7614. "__type__": "cc.Node",
  7615. "_name": "LevelManager",
  7616. "_objFlags": 0,
  7617. "_parent": {
  7618. "__id__": 2
  7619. },
  7620. "_children": [],
  7621. "_active": true,
  7622. "_components": [
  7623. {
  7624. "__id__": 223
  7625. }
  7626. ],
  7627. "_prefab": null,
  7628. "_lpos": {
  7629. "__type__": "cc.Vec3",
  7630. "x": 0,
  7631. "y": 0,
  7632. "z": 0
  7633. },
  7634. "_lrot": {
  7635. "__type__": "cc.Quat",
  7636. "x": 0,
  7637. "y": 0,
  7638. "z": 0,
  7639. "w": 1
  7640. },
  7641. "_lscale": {
  7642. "__type__": "cc.Vec3",
  7643. "x": 1,
  7644. "y": 1,
  7645. "z": 1
  7646. },
  7647. "_mobility": 0,
  7648. "_layer": 1073741824,
  7649. "_euler": {
  7650. "__type__": "cc.Vec3",
  7651. "x": 0,
  7652. "y": 0,
  7653. "z": 0
  7654. },
  7655. "_id": "ae7Hx27zVByrbunwO5wAeH"
  7656. },
  7657. {
  7658. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  7659. "_name": "",
  7660. "_objFlags": 0,
  7661. "node": {
  7662. "__id__": 222
  7663. },
  7664. "_enabled": true,
  7665. "__prefab": null,
  7666. "levelDataJson": {
  7667. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  7668. "__expectedType__": "cc.JsonAsset"
  7669. },
  7670. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  7671. },
  7672. {
  7673. "__type__": "cc.PrefabInfo",
  7674. "root": null,
  7675. "asset": null,
  7676. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  7677. "instance": null,
  7678. "targetOverrides": null,
  7679. "nestedPrefabInstanceRoots": [
  7680. {
  7681. "__id__": 175
  7682. }
  7683. ]
  7684. },
  7685. {
  7686. "__type__": "cc.SceneGlobals",
  7687. "ambient": {
  7688. "__id__": 226
  7689. },
  7690. "shadows": {
  7691. "__id__": 227
  7692. },
  7693. "_skybox": {
  7694. "__id__": 228
  7695. },
  7696. "fog": {
  7697. "__id__": 229
  7698. },
  7699. "octree": {
  7700. "__id__": 230
  7701. },
  7702. "lightProbeInfo": {
  7703. "__id__": 231
  7704. },
  7705. "bakedWithStationaryMainLight": false,
  7706. "bakedWithHighpLightmap": false
  7707. },
  7708. {
  7709. "__type__": "cc.AmbientInfo",
  7710. "_skyColorHDR": {
  7711. "__type__": "cc.Vec4",
  7712. "x": 0,
  7713. "y": 0,
  7714. "z": 0,
  7715. "w": 0.520833125
  7716. },
  7717. "_skyColor": {
  7718. "__type__": "cc.Vec4",
  7719. "x": 0,
  7720. "y": 0,
  7721. "z": 0,
  7722. "w": 0.520833125
  7723. },
  7724. "_skyIllumHDR": 20000,
  7725. "_skyIllum": 20000,
  7726. "_groundAlbedoHDR": {
  7727. "__type__": "cc.Vec4",
  7728. "x": 0,
  7729. "y": 0,
  7730. "z": 0,
  7731. "w": 0
  7732. },
  7733. "_groundAlbedo": {
  7734. "__type__": "cc.Vec4",
  7735. "x": 0,
  7736. "y": 0,
  7737. "z": 0,
  7738. "w": 0
  7739. },
  7740. "_skyColorLDR": {
  7741. "__type__": "cc.Vec4",
  7742. "x": 0.2,
  7743. "y": 0.5,
  7744. "z": 0.8,
  7745. "w": 1
  7746. },
  7747. "_skyIllumLDR": 20000,
  7748. "_groundAlbedoLDR": {
  7749. "__type__": "cc.Vec4",
  7750. "x": 0.2,
  7751. "y": 0.2,
  7752. "z": 0.2,
  7753. "w": 1
  7754. }
  7755. },
  7756. {
  7757. "__type__": "cc.ShadowsInfo",
  7758. "_enabled": false,
  7759. "_type": 0,
  7760. "_normal": {
  7761. "__type__": "cc.Vec3",
  7762. "x": 0,
  7763. "y": 1,
  7764. "z": 0
  7765. },
  7766. "_distance": 0,
  7767. "_shadowColor": {
  7768. "__type__": "cc.Color",
  7769. "r": 76,
  7770. "g": 76,
  7771. "b": 76,
  7772. "a": 255
  7773. },
  7774. "_maxReceived": 4,
  7775. "_size": {
  7776. "__type__": "cc.Vec2",
  7777. "x": 512,
  7778. "y": 512
  7779. }
  7780. },
  7781. {
  7782. "__type__": "cc.SkyboxInfo",
  7783. "_envLightingType": 0,
  7784. "_envmapHDR": null,
  7785. "_envmap": null,
  7786. "_envmapLDR": null,
  7787. "_diffuseMapHDR": null,
  7788. "_diffuseMapLDR": null,
  7789. "_enabled": false,
  7790. "_useHDR": true,
  7791. "_editableMaterial": null,
  7792. "_reflectionHDR": null,
  7793. "_reflectionLDR": null,
  7794. "_rotationAngle": 0
  7795. },
  7796. {
  7797. "__type__": "cc.FogInfo",
  7798. "_type": 0,
  7799. "_fogColor": {
  7800. "__type__": "cc.Color",
  7801. "r": 200,
  7802. "g": 200,
  7803. "b": 200,
  7804. "a": 255
  7805. },
  7806. "_enabled": false,
  7807. "_fogDensity": 0.3,
  7808. "_fogStart": 0.5,
  7809. "_fogEnd": 300,
  7810. "_fogAtten": 5,
  7811. "_fogTop": 1.5,
  7812. "_fogRange": 1.2,
  7813. "_accurate": false
  7814. },
  7815. {
  7816. "__type__": "cc.OctreeInfo",
  7817. "_enabled": false,
  7818. "_minPos": {
  7819. "__type__": "cc.Vec3",
  7820. "x": -1024,
  7821. "y": -1024,
  7822. "z": -1024
  7823. },
  7824. "_maxPos": {
  7825. "__type__": "cc.Vec3",
  7826. "x": 1024,
  7827. "y": 1024,
  7828. "z": 1024
  7829. },
  7830. "_depth": 8
  7831. },
  7832. {
  7833. "__type__": "cc.LightProbeInfo",
  7834. "_giScale": 1,
  7835. "_giSamples": 1024,
  7836. "_bounces": 2,
  7837. "_reduceRinging": 0,
  7838. "_showProbe": true,
  7839. "_showWireframe": true,
  7840. "_showConvex": false,
  7841. "_data": null
  7842. }
  7843. ]