game.scene 168 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451
  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__": 268
  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__": 269
  59. },
  60. "_id": "80697901-e8f5-4759-b18f-a95692ce9cd2"
  61. },
  62. {
  63. "__type__": "cc.Node",
  64. "_name": "Manager",
  65. "_objFlags": 512,
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 263
  75. },
  76. {
  77. "__id__": 266
  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": 512,
  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__": 232
  182. },
  183. "scoreLabel2": {
  184. "__id__": 237
  185. },
  186. "timeLabel2": {
  187. "__id__": 246
  188. },
  189. "levelLabel2": {
  190. "__id__": 255
  191. },
  192. "gameEndTip": {
  193. "__id__": 180
  194. },
  195. "GameMain": {
  196. "__id__": 171
  197. },
  198. "_id": "70XLo86IdHrI5/VwBEXHwY"
  199. },
  200. {
  201. "__type__": "cc.Node",
  202. "_name": "GameMainPanel",
  203. "_objFlags": 0,
  204. "_parent": {
  205. "__id__": 7
  206. },
  207. "_children": [
  208. {
  209. "__id__": 14
  210. },
  211. {
  212. "__id__": 180
  213. },
  214. {
  215. "__id__": 220
  216. },
  217. {
  218. "__id__": 232
  219. }
  220. ],
  221. "_active": true,
  222. "_components": [
  223. {
  224. "__id__": 261
  225. },
  226. {
  227. "__id__": 262
  228. },
  229. {
  230. "__id__": 5
  231. }
  232. ],
  233. "_prefab": null,
  234. "_lpos": {
  235. "__type__": "cc.Vec3",
  236. "x": 0,
  237. "y": 0,
  238. "z": 0
  239. },
  240. "_lrot": {
  241. "__type__": "cc.Quat",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0,
  245. "w": 1
  246. },
  247. "_lscale": {
  248. "__type__": "cc.Vec3",
  249. "x": 1,
  250. "y": 1,
  251. "z": 1
  252. },
  253. "_mobility": 0,
  254. "_layer": 33554432,
  255. "_euler": {
  256. "__type__": "cc.Vec3",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0
  260. },
  261. "_id": "1bez9Ign9FoKv1lpVS5Rjb"
  262. },
  263. {
  264. "__type__": "cc.Node",
  265. "_name": "Canvas",
  266. "_objFlags": 0,
  267. "_parent": {
  268. "__id__": 1
  269. },
  270. "_children": [
  271. {
  272. "__id__": 8
  273. },
  274. {
  275. "__id__": 6
  276. }
  277. ],
  278. "_active": true,
  279. "_components": [
  280. {
  281. "__id__": 10
  282. },
  283. {
  284. "__id__": 11
  285. },
  286. {
  287. "__id__": 12
  288. },
  289. {
  290. "__id__": 13
  291. }
  292. ],
  293. "_prefab": null,
  294. "_lpos": {
  295. "__type__": "cc.Vec3",
  296. "x": 1000,
  297. "y": 698.4999999999998,
  298. "z": 0
  299. },
  300. "_lrot": {
  301. "__type__": "cc.Quat",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0,
  305. "w": 1
  306. },
  307. "_lscale": {
  308. "__type__": "cc.Vec3",
  309. "x": 1,
  310. "y": 1,
  311. "z": 1
  312. },
  313. "_mobility": 0,
  314. "_layer": 33554432,
  315. "_euler": {
  316. "__type__": "cc.Vec3",
  317. "x": 0,
  318. "y": 0,
  319. "z": 0
  320. },
  321. "_id": "beI88Z2HpFELqR4T5EMHpg"
  322. },
  323. {
  324. "__type__": "cc.Node",
  325. "_name": "Camera",
  326. "_objFlags": 0,
  327. "_parent": {
  328. "__id__": 7
  329. },
  330. "_children": [],
  331. "_active": true,
  332. "_components": [
  333. {
  334. "__id__": 9
  335. }
  336. ],
  337. "_prefab": null,
  338. "_lpos": {
  339. "__type__": "cc.Vec3",
  340. "x": 0,
  341. "y": 0,
  342. "z": 1000
  343. },
  344. "_lrot": {
  345. "__type__": "cc.Quat",
  346. "x": 0,
  347. "y": 0,
  348. "z": 0,
  349. "w": 1
  350. },
  351. "_lscale": {
  352. "__type__": "cc.Vec3",
  353. "x": 1,
  354. "y": 1,
  355. "z": 1
  356. },
  357. "_mobility": 0,
  358. "_layer": 1073741824,
  359. "_euler": {
  360. "__type__": "cc.Vec3",
  361. "x": 0,
  362. "y": 0,
  363. "z": 0
  364. },
  365. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  366. },
  367. {
  368. "__type__": "cc.Camera",
  369. "_name": "",
  370. "_objFlags": 0,
  371. "node": {
  372. "__id__": 8
  373. },
  374. "_enabled": true,
  375. "__prefab": null,
  376. "_projection": 0,
  377. "_priority": 1073741824,
  378. "_fov": 45,
  379. "_fovAxis": 0,
  380. "_orthoHeight": 698.5,
  381. "_near": 0,
  382. "_far": 2000,
  383. "_color": {
  384. "__type__": "cc.Color",
  385. "r": 0,
  386. "g": 0,
  387. "b": 0,
  388. "a": 255
  389. },
  390. "_depth": 1,
  391. "_stencil": 0,
  392. "_clearFlags": 6,
  393. "_rect": {
  394. "__type__": "cc.Rect",
  395. "x": 0,
  396. "y": 0,
  397. "width": 1,
  398. "height": 1
  399. },
  400. "_aperture": 19,
  401. "_shutter": 7,
  402. "_iso": 0,
  403. "_screenScale": 1,
  404. "_visibility": 41943040,
  405. "_targetTexture": null,
  406. "_cameraType": -1,
  407. "_trackingType": 0,
  408. "_id": "63WIch3o5BEYRlXzTT0oWc"
  409. },
  410. {
  411. "__type__": "cc.UITransform",
  412. "_name": "",
  413. "_objFlags": 0,
  414. "node": {
  415. "__id__": 7
  416. },
  417. "_enabled": true,
  418. "__prefab": null,
  419. "_contentSize": {
  420. "__type__": "cc.Size",
  421. "width": 2000,
  422. "height": 1397
  423. },
  424. "_anchorPoint": {
  425. "__type__": "cc.Vec2",
  426. "x": 0.5,
  427. "y": 0.5
  428. },
  429. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  430. },
  431. {
  432. "__type__": "cc.Canvas",
  433. "_name": "",
  434. "_objFlags": 0,
  435. "node": {
  436. "__id__": 7
  437. },
  438. "_enabled": true,
  439. "__prefab": null,
  440. "_cameraComponent": {
  441. "__id__": 9
  442. },
  443. "_alignCanvasWithScreen": true,
  444. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  445. },
  446. {
  447. "__type__": "cc.Widget",
  448. "_name": "",
  449. "_objFlags": 0,
  450. "node": {
  451. "__id__": 7
  452. },
  453. "_enabled": true,
  454. "__prefab": null,
  455. "_alignFlags": 45,
  456. "_target": null,
  457. "_left": -5.684341886080802e-14,
  458. "_right": -5.684341886080802e-14,
  459. "_top": 1.7053025658242404e-13,
  460. "_bottom": -2.8421709430404007e-13,
  461. "_horizontalCenter": 0,
  462. "_verticalCenter": 0,
  463. "_isAbsLeft": true,
  464. "_isAbsRight": true,
  465. "_isAbsTop": true,
  466. "_isAbsBottom": true,
  467. "_isAbsHorizontalCenter": true,
  468. "_isAbsVerticalCenter": true,
  469. "_originalWidth": 0,
  470. "_originalHeight": 0,
  471. "_alignMode": 2,
  472. "_lockFlags": 0,
  473. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  474. },
  475. {
  476. "__type__": "cc.AudioSource",
  477. "_name": "",
  478. "_objFlags": 0,
  479. "node": {
  480. "__id__": 7
  481. },
  482. "_enabled": true,
  483. "__prefab": null,
  484. "_clip": null,
  485. "_loop": false,
  486. "_playOnAwake": true,
  487. "_volume": 1,
  488. "_id": "94YYj+uIpDSqBYRX/Jt7HQ"
  489. },
  490. {
  491. "__type__": "cc.Node",
  492. "_name": "GameRoot",
  493. "_objFlags": 0,
  494. "_parent": {
  495. "__id__": 6
  496. },
  497. "_children": [
  498. {
  499. "__id__": 15
  500. }
  501. ],
  502. "_active": true,
  503. "_components": [
  504. {
  505. "__id__": 178
  506. },
  507. {
  508. "__id__": 179
  509. }
  510. ],
  511. "_prefab": null,
  512. "_lpos": {
  513. "__type__": "cc.Vec3",
  514. "x": 0,
  515. "y": 0,
  516. "z": 0
  517. },
  518. "_lrot": {
  519. "__type__": "cc.Quat",
  520. "x": 0,
  521. "y": 0,
  522. "z": 0,
  523. "w": 1
  524. },
  525. "_lscale": {
  526. "__type__": "cc.Vec3",
  527. "x": 1,
  528. "y": 1,
  529. "z": 1
  530. },
  531. "_mobility": 0,
  532. "_layer": 33554432,
  533. "_euler": {
  534. "__type__": "cc.Vec3",
  535. "x": 0,
  536. "y": 0,
  537. "z": 0
  538. },
  539. "_id": "f2FXLyK6xODqM9j6JFtAfH"
  540. },
  541. {
  542. "__type__": "cc.Node",
  543. "_name": "Game",
  544. "_objFlags": 0,
  545. "_parent": {
  546. "__id__": 14
  547. },
  548. "_children": [
  549. {
  550. "__id__": 16
  551. }
  552. ],
  553. "_active": true,
  554. "_components": [
  555. {
  556. "__id__": 175
  557. },
  558. {
  559. "__id__": 176
  560. },
  561. {
  562. "__id__": 177
  563. }
  564. ],
  565. "_prefab": null,
  566. "_lpos": {
  567. "__type__": "cc.Vec3",
  568. "x": 0,
  569. "y": 0,
  570. "z": 0
  571. },
  572. "_lrot": {
  573. "__type__": "cc.Quat",
  574. "x": 0,
  575. "y": 0,
  576. "z": 0,
  577. "w": 1
  578. },
  579. "_lscale": {
  580. "__type__": "cc.Vec3",
  581. "x": 1,
  582. "y": 1,
  583. "z": -0.442
  584. },
  585. "_mobility": 0,
  586. "_layer": 33554432,
  587. "_euler": {
  588. "__type__": "cc.Vec3",
  589. "x": 0,
  590. "y": 0,
  591. "z": 0
  592. },
  593. "_id": "5bG8f/QC9FJ6xJvEz7SzxC"
  594. },
  595. {
  596. "__type__": "cc.Node",
  597. "_name": "GameBg",
  598. "_objFlags": 0,
  599. "_parent": {
  600. "__id__": 15
  601. },
  602. "_children": [
  603. {
  604. "__id__": 17
  605. }
  606. ],
  607. "_active": true,
  608. "_components": [
  609. {
  610. "__id__": 172
  611. },
  612. {
  613. "__id__": 173
  614. },
  615. {
  616. "__id__": 174
  617. }
  618. ],
  619. "_prefab": null,
  620. "_lpos": {
  621. "__type__": "cc.Vec3",
  622. "x": 0,
  623. "y": 0,
  624. "z": 0
  625. },
  626. "_lrot": {
  627. "__type__": "cc.Quat",
  628. "x": 0,
  629. "y": 0,
  630. "z": 0,
  631. "w": 1
  632. },
  633. "_lscale": {
  634. "__type__": "cc.Vec3",
  635. "x": 1,
  636. "y": 1,
  637. "z": 1
  638. },
  639. "_mobility": 0,
  640. "_layer": 33554432,
  641. "_euler": {
  642. "__type__": "cc.Vec3",
  643. "x": 0,
  644. "y": 0,
  645. "z": 0
  646. },
  647. "_id": "52hO988fRBiodPLougtdHh"
  648. },
  649. {
  650. "__type__": "cc.Node",
  651. "_name": "GameMain",
  652. "_objFlags": 0,
  653. "_parent": {
  654. "__id__": 16
  655. },
  656. "_children": [
  657. {
  658. "__id__": 18
  659. },
  660. {
  661. "__id__": 21
  662. },
  663. {
  664. "__id__": 24
  665. },
  666. {
  667. "__id__": 57
  668. },
  669. {
  670. "__id__": 61
  671. },
  672. {
  673. "__id__": 65
  674. },
  675. {
  676. "__id__": 69
  677. },
  678. {
  679. "__id__": 86
  680. },
  681. {
  682. "__id__": 103
  683. },
  684. {
  685. "__id__": 120
  686. },
  687. {
  688. "__id__": 137
  689. },
  690. {
  691. "__id__": 154
  692. },
  693. {
  694. "__id__": 158
  695. },
  696. {
  697. "__id__": 162
  698. },
  699. {
  700. "__id__": 166
  701. }
  702. ],
  703. "_active": true,
  704. "_components": [
  705. {
  706. "__id__": 170
  707. },
  708. {
  709. "__id__": 171
  710. }
  711. ],
  712. "_prefab": null,
  713. "_lpos": {
  714. "__type__": "cc.Vec3",
  715. "x": -2.2737367544323206e-13,
  716. "y": -14.425190194421134,
  717. "z": 0
  718. },
  719. "_lrot": {
  720. "__type__": "cc.Quat",
  721. "x": 0,
  722. "y": 1,
  723. "z": 0,
  724. "w": 6.123233995736766e-17
  725. },
  726. "_lscale": {
  727. "__type__": "cc.Vec3",
  728. "x": 1,
  729. "y": 1,
  730. "z": 2.2624434389140275
  731. },
  732. "_mobility": 0,
  733. "_layer": 33554432,
  734. "_euler": {
  735. "__type__": "cc.Vec3",
  736. "x": 0,
  737. "y": 180,
  738. "z": 0
  739. },
  740. "_id": "883QbLlwxH34wXg0BoFEfR"
  741. },
  742. {
  743. "__type__": "cc.Node",
  744. "_name": "fuzi",
  745. "_objFlags": 0,
  746. "_parent": {
  747. "__id__": 17
  748. },
  749. "_children": [],
  750. "_active": true,
  751. "_components": [
  752. {
  753. "__id__": 19
  754. },
  755. {
  756. "__id__": 20
  757. }
  758. ],
  759. "_prefab": null,
  760. "_lpos": {
  761. "__type__": "cc.Vec3",
  762. "x": -30,
  763. "y": 580,
  764. "z": 0
  765. },
  766. "_lrot": {
  767. "__type__": "cc.Quat",
  768. "x": 0,
  769. "y": 0,
  770. "z": 0,
  771. "w": 1
  772. },
  773. "_lscale": {
  774. "__type__": "cc.Vec3",
  775. "x": -1,
  776. "y": 1,
  777. "z": 1
  778. },
  779. "_mobility": 0,
  780. "_layer": 33554432,
  781. "_euler": {
  782. "__type__": "cc.Vec3",
  783. "x": 0,
  784. "y": 0,
  785. "z": 0
  786. },
  787. "_id": "251+HO4BtMlIWEkrkUV8lz"
  788. },
  789. {
  790. "__type__": "cc.UITransform",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "node": {
  794. "__id__": 18
  795. },
  796. "_enabled": true,
  797. "__prefab": null,
  798. "_contentSize": {
  799. "__type__": "cc.Size",
  800. "width": 297,
  801. "height": 242
  802. },
  803. "_anchorPoint": {
  804. "__type__": "cc.Vec2",
  805. "x": 0.846026936026936,
  806. "y": 0.5
  807. },
  808. "_id": "35HRXVLwhIrZATFNywOihf"
  809. },
  810. {
  811. "__type__": "sp.Skeleton",
  812. "_name": "",
  813. "_objFlags": 0,
  814. "node": {
  815. "__id__": 18
  816. },
  817. "_enabled": true,
  818. "__prefab": null,
  819. "_customMaterial": null,
  820. "_srcBlendFactor": 2,
  821. "_dstBlendFactor": 4,
  822. "_color": {
  823. "__type__": "cc.Color",
  824. "r": 255,
  825. "g": 255,
  826. "b": 255,
  827. "a": 255
  828. },
  829. "loop": true,
  830. "_timeScale": 1,
  831. "_useTint": false,
  832. "_preCacheMode": 0,
  833. "_cacheMode": 0,
  834. "_defaultCacheMode": 0,
  835. "_debugBones": false,
  836. "_debugSlots": false,
  837. "_skeletonData": {
  838. "__uuid__": "d1e096b1-14f7-4dbb-9438-d85c8d8ad99f",
  839. "__expectedType__": "sp.SkeletonData"
  840. },
  841. "_premultipliedAlpha": true,
  842. "defaultSkin": "pifu",
  843. "defaultAnimation": "fu",
  844. "_enableBatch": false,
  845. "_sockets": [],
  846. "_debugMesh": false,
  847. "_id": "a2rHtx1gRAebyr0aGODe8T"
  848. },
  849. {
  850. "__type__": "cc.Node",
  851. "_name": "articles",
  852. "_objFlags": 0,
  853. "_parent": {
  854. "__id__": 17
  855. },
  856. "_children": [],
  857. "_active": true,
  858. "_components": [
  859. {
  860. "__id__": 22
  861. },
  862. {
  863. "__id__": 23
  864. }
  865. ],
  866. "_prefab": null,
  867. "_lpos": {
  868. "__type__": "cc.Vec3",
  869. "x": 220,
  870. "y": 65,
  871. "z": 0
  872. },
  873. "_lrot": {
  874. "__type__": "cc.Quat",
  875. "x": 0,
  876. "y": 0,
  877. "z": 0,
  878. "w": 1
  879. },
  880. "_lscale": {
  881. "__type__": "cc.Vec3",
  882. "x": 1,
  883. "y": 1,
  884. "z": 1
  885. },
  886. "_mobility": 0,
  887. "_layer": 33554432,
  888. "_euler": {
  889. "__type__": "cc.Vec3",
  890. "x": 0,
  891. "y": 0,
  892. "z": 0
  893. },
  894. "_id": "f7DoQnrnBOk7saZxOS3NI+"
  895. },
  896. {
  897. "__type__": "cc.UITransform",
  898. "_name": "",
  899. "_objFlags": 0,
  900. "node": {
  901. "__id__": 21
  902. },
  903. "_enabled": true,
  904. "__prefab": null,
  905. "_contentSize": {
  906. "__type__": "cc.Size",
  907. "width": 1440,
  908. "height": 945
  909. },
  910. "_anchorPoint": {
  911. "__type__": "cc.Vec2",
  912. "x": 0.5,
  913. "y": 0.5
  914. },
  915. "_id": "26PPsG5OJCd4za/pebV7kQ"
  916. },
  917. {
  918. "__type__": "cc.Sprite",
  919. "_name": "",
  920. "_objFlags": 0,
  921. "node": {
  922. "__id__": 21
  923. },
  924. "_enabled": true,
  925. "__prefab": null,
  926. "_customMaterial": null,
  927. "_srcBlendFactor": 2,
  928. "_dstBlendFactor": 4,
  929. "_color": {
  930. "__type__": "cc.Color",
  931. "r": 255,
  932. "g": 255,
  933. "b": 255,
  934. "a": 255
  935. },
  936. "_spriteFrame": {
  937. "__uuid__": "dfcd16ec-0e95-4a4e-8603-97342faad097@f9941",
  938. "__expectedType__": "cc.SpriteFrame"
  939. },
  940. "_type": 1,
  941. "_fillType": 0,
  942. "_sizeMode": 0,
  943. "_fillCenter": {
  944. "__type__": "cc.Vec2",
  945. "x": 0,
  946. "y": 0
  947. },
  948. "_fillStart": 0,
  949. "_fillRange": 0,
  950. "_isTrimmedMode": true,
  951. "_useGrayscale": false,
  952. "_atlas": null,
  953. "_id": "27seA3Y7ZKdoDE0cmlkDOz"
  954. },
  955. {
  956. "__type__": "cc.Node",
  957. "_name": "bg5",
  958. "_objFlags": 0,
  959. "_parent": {
  960. "__id__": 17
  961. },
  962. "_children": [
  963. {
  964. "__id__": 25
  965. },
  966. {
  967. "__id__": 28
  968. },
  969. {
  970. "__id__": 31
  971. },
  972. {
  973. "__id__": 34
  974. },
  975. {
  976. "__id__": 37
  977. },
  978. {
  979. "__id__": 40
  980. },
  981. {
  982. "__id__": 43
  983. },
  984. {
  985. "__id__": 46
  986. },
  987. {
  988. "__id__": 49
  989. },
  990. {
  991. "__id__": 52
  992. }
  993. ],
  994. "_active": true,
  995. "_components": [
  996. {
  997. "__id__": 55
  998. },
  999. {
  1000. "__id__": 56
  1001. }
  1002. ],
  1003. "_prefab": null,
  1004. "_lpos": {
  1005. "__type__": "cc.Vec3",
  1006. "x": 448.06549999999993,
  1007. "y": -550,
  1008. "z": 0
  1009. },
  1010. "_lrot": {
  1011. "__type__": "cc.Quat",
  1012. "x": 0,
  1013. "y": 0,
  1014. "z": 0,
  1015. "w": 1
  1016. },
  1017. "_lscale": {
  1018. "__type__": "cc.Vec3",
  1019. "x": -1,
  1020. "y": 1,
  1021. "z": 1
  1022. },
  1023. "_mobility": 0,
  1024. "_layer": 33554432,
  1025. "_euler": {
  1026. "__type__": "cc.Vec3",
  1027. "x": 0,
  1028. "y": 0,
  1029. "z": 0
  1030. },
  1031. "_id": "28kAbXIeVLW41jvEXV8Jwo"
  1032. },
  1033. {
  1034. "__type__": "cc.Node",
  1035. "_name": "num_0",
  1036. "_objFlags": 0,
  1037. "_parent": {
  1038. "__id__": 24
  1039. },
  1040. "_children": [],
  1041. "_active": true,
  1042. "_components": [
  1043. {
  1044. "__id__": 26
  1045. },
  1046. {
  1047. "__id__": 27
  1048. }
  1049. ],
  1050. "_prefab": null,
  1051. "_lpos": {
  1052. "__type__": "cc.Vec3",
  1053. "x": -298,
  1054. "y": 60,
  1055. "z": 0
  1056. },
  1057. "_lrot": {
  1058. "__type__": "cc.Quat",
  1059. "x": 0,
  1060. "y": 0,
  1061. "z": 0,
  1062. "w": 1
  1063. },
  1064. "_lscale": {
  1065. "__type__": "cc.Vec3",
  1066. "x": 1,
  1067. "y": 1,
  1068. "z": 1
  1069. },
  1070. "_mobility": 0,
  1071. "_layer": 33554432,
  1072. "_euler": {
  1073. "__type__": "cc.Vec3",
  1074. "x": 0,
  1075. "y": 0,
  1076. "z": 0
  1077. },
  1078. "_id": "3dwrExz8xP2pFZb312tbi+"
  1079. },
  1080. {
  1081. "__type__": "cc.UITransform",
  1082. "_name": "",
  1083. "_objFlags": 0,
  1084. "node": {
  1085. "__id__": 25
  1086. },
  1087. "_enabled": true,
  1088. "__prefab": null,
  1089. "_contentSize": {
  1090. "__type__": "cc.Size",
  1091. "width": 110,
  1092. "height": 110
  1093. },
  1094. "_anchorPoint": {
  1095. "__type__": "cc.Vec2",
  1096. "x": 0.5,
  1097. "y": 0.5
  1098. },
  1099. "_id": "e0AA/QXxJELZPT3wFNesLJ"
  1100. },
  1101. {
  1102. "__type__": "cc.Sprite",
  1103. "_name": "",
  1104. "_objFlags": 0,
  1105. "node": {
  1106. "__id__": 25
  1107. },
  1108. "_enabled": true,
  1109. "__prefab": null,
  1110. "_customMaterial": null,
  1111. "_srcBlendFactor": 2,
  1112. "_dstBlendFactor": 4,
  1113. "_color": {
  1114. "__type__": "cc.Color",
  1115. "r": 255,
  1116. "g": 255,
  1117. "b": 255,
  1118. "a": 255
  1119. },
  1120. "_spriteFrame": {
  1121. "__uuid__": "8cd11bc0-1584-480e-9d9c-d6c325e03fcc@f9941",
  1122. "__expectedType__": "cc.SpriteFrame"
  1123. },
  1124. "_type": 0,
  1125. "_fillType": 0,
  1126. "_sizeMode": 0,
  1127. "_fillCenter": {
  1128. "__type__": "cc.Vec2",
  1129. "x": 0,
  1130. "y": 0
  1131. },
  1132. "_fillStart": 0,
  1133. "_fillRange": 0,
  1134. "_isTrimmedMode": true,
  1135. "_useGrayscale": false,
  1136. "_atlas": null,
  1137. "_id": "29xcac00BPGKeOOX1W/fWU"
  1138. },
  1139. {
  1140. "__type__": "cc.Node",
  1141. "_name": "num_1",
  1142. "_objFlags": 0,
  1143. "_parent": {
  1144. "__id__": 24
  1145. },
  1146. "_children": [],
  1147. "_active": true,
  1148. "_components": [
  1149. {
  1150. "__id__": 29
  1151. },
  1152. {
  1153. "__id__": 30
  1154. }
  1155. ],
  1156. "_prefab": null,
  1157. "_lpos": {
  1158. "__type__": "cc.Vec3",
  1159. "x": -151.09775000000002,
  1160. "y": 60,
  1161. "z": 0
  1162. },
  1163. "_lrot": {
  1164. "__type__": "cc.Quat",
  1165. "x": 0,
  1166. "y": 0,
  1167. "z": 0,
  1168. "w": 1
  1169. },
  1170. "_lscale": {
  1171. "__type__": "cc.Vec3",
  1172. "x": 1,
  1173. "y": 1,
  1174. "z": 1
  1175. },
  1176. "_mobility": 0,
  1177. "_layer": 33554432,
  1178. "_euler": {
  1179. "__type__": "cc.Vec3",
  1180. "x": 0,
  1181. "y": 0,
  1182. "z": 0
  1183. },
  1184. "_id": "2afdMilaNGhpi/0zhn4N4N"
  1185. },
  1186. {
  1187. "__type__": "cc.UITransform",
  1188. "_name": "",
  1189. "_objFlags": 0,
  1190. "node": {
  1191. "__id__": 28
  1192. },
  1193. "_enabled": true,
  1194. "__prefab": null,
  1195. "_contentSize": {
  1196. "__type__": "cc.Size",
  1197. "width": 110,
  1198. "height": 110
  1199. },
  1200. "_anchorPoint": {
  1201. "__type__": "cc.Vec2",
  1202. "x": 0.5,
  1203. "y": 0.5
  1204. },
  1205. "_id": "95xW2pKjdNroVrDWm/TMI7"
  1206. },
  1207. {
  1208. "__type__": "cc.Sprite",
  1209. "_name": "",
  1210. "_objFlags": 0,
  1211. "node": {
  1212. "__id__": 28
  1213. },
  1214. "_enabled": true,
  1215. "__prefab": null,
  1216. "_customMaterial": null,
  1217. "_srcBlendFactor": 2,
  1218. "_dstBlendFactor": 4,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 255,
  1223. "b": 255,
  1224. "a": 255
  1225. },
  1226. "_spriteFrame": {
  1227. "__uuid__": "b4a77da9-a148-4f8d-b611-e85a958cefd8@f9941",
  1228. "__expectedType__": "cc.SpriteFrame"
  1229. },
  1230. "_type": 0,
  1231. "_fillType": 0,
  1232. "_sizeMode": 0,
  1233. "_fillCenter": {
  1234. "__type__": "cc.Vec2",
  1235. "x": 0,
  1236. "y": 0
  1237. },
  1238. "_fillStart": 0,
  1239. "_fillRange": 0,
  1240. "_isTrimmedMode": true,
  1241. "_useGrayscale": false,
  1242. "_atlas": null,
  1243. "_id": "79aFBsh2xPyKMLha2EWXkt"
  1244. },
  1245. {
  1246. "__type__": "cc.Node",
  1247. "_name": "num_2",
  1248. "_objFlags": 0,
  1249. "_parent": {
  1250. "__id__": 24
  1251. },
  1252. "_children": [],
  1253. "_active": true,
  1254. "_components": [
  1255. {
  1256. "__id__": 32
  1257. },
  1258. {
  1259. "__id__": 33
  1260. }
  1261. ],
  1262. "_prefab": null,
  1263. "_lpos": {
  1264. "__type__": "cc.Vec3",
  1265. "x": -4.195499999999981,
  1266. "y": 60,
  1267. "z": 0
  1268. },
  1269. "_lrot": {
  1270. "__type__": "cc.Quat",
  1271. "x": 0,
  1272. "y": 0,
  1273. "z": 0,
  1274. "w": 1
  1275. },
  1276. "_lscale": {
  1277. "__type__": "cc.Vec3",
  1278. "x": 1,
  1279. "y": 1,
  1280. "z": 1
  1281. },
  1282. "_mobility": 0,
  1283. "_layer": 33554432,
  1284. "_euler": {
  1285. "__type__": "cc.Vec3",
  1286. "x": 0,
  1287. "y": 0,
  1288. "z": 0
  1289. },
  1290. "_id": "fbLjpcsApLbbK8YV0zbwZE"
  1291. },
  1292. {
  1293. "__type__": "cc.UITransform",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "node": {
  1297. "__id__": 31
  1298. },
  1299. "_enabled": true,
  1300. "__prefab": null,
  1301. "_contentSize": {
  1302. "__type__": "cc.Size",
  1303. "width": 110,
  1304. "height": 110
  1305. },
  1306. "_anchorPoint": {
  1307. "__type__": "cc.Vec2",
  1308. "x": 0.5,
  1309. "y": 0.5
  1310. },
  1311. "_id": "2cU866F0xMVJrbFeN0uc/0"
  1312. },
  1313. {
  1314. "__type__": "cc.Sprite",
  1315. "_name": "",
  1316. "_objFlags": 0,
  1317. "node": {
  1318. "__id__": 31
  1319. },
  1320. "_enabled": true,
  1321. "__prefab": null,
  1322. "_customMaterial": null,
  1323. "_srcBlendFactor": 2,
  1324. "_dstBlendFactor": 4,
  1325. "_color": {
  1326. "__type__": "cc.Color",
  1327. "r": 255,
  1328. "g": 255,
  1329. "b": 255,
  1330. "a": 255
  1331. },
  1332. "_spriteFrame": {
  1333. "__uuid__": "6bfc9bf8-a9ec-47d7-b3c8-246eafe3a643@f9941",
  1334. "__expectedType__": "cc.SpriteFrame"
  1335. },
  1336. "_type": 0,
  1337. "_fillType": 0,
  1338. "_sizeMode": 0,
  1339. "_fillCenter": {
  1340. "__type__": "cc.Vec2",
  1341. "x": 0,
  1342. "y": 0
  1343. },
  1344. "_fillStart": 0,
  1345. "_fillRange": 0,
  1346. "_isTrimmedMode": true,
  1347. "_useGrayscale": false,
  1348. "_atlas": null,
  1349. "_id": "7bMZbX6kxKZaU6zsJvL4ah"
  1350. },
  1351. {
  1352. "__type__": "cc.Node",
  1353. "_name": "num_3",
  1354. "_objFlags": 0,
  1355. "_parent": {
  1356. "__id__": 24
  1357. },
  1358. "_children": [],
  1359. "_active": true,
  1360. "_components": [
  1361. {
  1362. "__id__": 35
  1363. },
  1364. {
  1365. "__id__": 36
  1366. }
  1367. ],
  1368. "_prefab": null,
  1369. "_lpos": {
  1370. "__type__": "cc.Vec3",
  1371. "x": 142.70675000000006,
  1372. "y": 60,
  1373. "z": 0
  1374. },
  1375. "_lrot": {
  1376. "__type__": "cc.Quat",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0,
  1380. "w": 1
  1381. },
  1382. "_lscale": {
  1383. "__type__": "cc.Vec3",
  1384. "x": 1,
  1385. "y": 1,
  1386. "z": 1
  1387. },
  1388. "_mobility": 0,
  1389. "_layer": 33554432,
  1390. "_euler": {
  1391. "__type__": "cc.Vec3",
  1392. "x": 0,
  1393. "y": 0,
  1394. "z": 0
  1395. },
  1396. "_id": "c2EufPpaVMy49FPOJH05G/"
  1397. },
  1398. {
  1399. "__type__": "cc.UITransform",
  1400. "_name": "",
  1401. "_objFlags": 0,
  1402. "node": {
  1403. "__id__": 34
  1404. },
  1405. "_enabled": true,
  1406. "__prefab": null,
  1407. "_contentSize": {
  1408. "__type__": "cc.Size",
  1409. "width": 110,
  1410. "height": 110
  1411. },
  1412. "_anchorPoint": {
  1413. "__type__": "cc.Vec2",
  1414. "x": 0.5,
  1415. "y": 0.5
  1416. },
  1417. "_id": "ee45CX6jZJuoFyo/2KTIDd"
  1418. },
  1419. {
  1420. "__type__": "cc.Sprite",
  1421. "_name": "",
  1422. "_objFlags": 0,
  1423. "node": {
  1424. "__id__": 34
  1425. },
  1426. "_enabled": true,
  1427. "__prefab": null,
  1428. "_customMaterial": null,
  1429. "_srcBlendFactor": 2,
  1430. "_dstBlendFactor": 4,
  1431. "_color": {
  1432. "__type__": "cc.Color",
  1433. "r": 255,
  1434. "g": 255,
  1435. "b": 255,
  1436. "a": 255
  1437. },
  1438. "_spriteFrame": {
  1439. "__uuid__": "fc2dbed6-8506-45ed-b135-55903641139f@f9941",
  1440. "__expectedType__": "cc.SpriteFrame"
  1441. },
  1442. "_type": 0,
  1443. "_fillType": 0,
  1444. "_sizeMode": 0,
  1445. "_fillCenter": {
  1446. "__type__": "cc.Vec2",
  1447. "x": 0,
  1448. "y": 0
  1449. },
  1450. "_fillStart": 0,
  1451. "_fillRange": 0,
  1452. "_isTrimmedMode": true,
  1453. "_useGrayscale": false,
  1454. "_atlas": null,
  1455. "_id": "f8xCbb9EpHBLcGU3PvTo9Q"
  1456. },
  1457. {
  1458. "__type__": "cc.Node",
  1459. "_name": "num_4",
  1460. "_objFlags": 0,
  1461. "_parent": {
  1462. "__id__": 24
  1463. },
  1464. "_children": [],
  1465. "_active": true,
  1466. "_components": [
  1467. {
  1468. "__id__": 38
  1469. },
  1470. {
  1471. "__id__": 39
  1472. }
  1473. ],
  1474. "_prefab": null,
  1475. "_lpos": {
  1476. "__type__": "cc.Vec3",
  1477. "x": 289.60900000000004,
  1478. "y": 60,
  1479. "z": 0
  1480. },
  1481. "_lrot": {
  1482. "__type__": "cc.Quat",
  1483. "x": 0,
  1484. "y": 0,
  1485. "z": 0,
  1486. "w": 1
  1487. },
  1488. "_lscale": {
  1489. "__type__": "cc.Vec3",
  1490. "x": 1,
  1491. "y": 1,
  1492. "z": 1
  1493. },
  1494. "_mobility": 0,
  1495. "_layer": 33554432,
  1496. "_euler": {
  1497. "__type__": "cc.Vec3",
  1498. "x": 0,
  1499. "y": 0,
  1500. "z": 0
  1501. },
  1502. "_id": "89qh8AI4ZLCptE0x/LWJOY"
  1503. },
  1504. {
  1505. "__type__": "cc.UITransform",
  1506. "_name": "",
  1507. "_objFlags": 0,
  1508. "node": {
  1509. "__id__": 37
  1510. },
  1511. "_enabled": true,
  1512. "__prefab": null,
  1513. "_contentSize": {
  1514. "__type__": "cc.Size",
  1515. "width": 110,
  1516. "height": 110
  1517. },
  1518. "_anchorPoint": {
  1519. "__type__": "cc.Vec2",
  1520. "x": 0.5,
  1521. "y": 0.5
  1522. },
  1523. "_id": "6a1bQz+tpFhIQ8ZxGfYYVJ"
  1524. },
  1525. {
  1526. "__type__": "cc.Sprite",
  1527. "_name": "",
  1528. "_objFlags": 0,
  1529. "node": {
  1530. "__id__": 37
  1531. },
  1532. "_enabled": true,
  1533. "__prefab": null,
  1534. "_customMaterial": null,
  1535. "_srcBlendFactor": 2,
  1536. "_dstBlendFactor": 4,
  1537. "_color": {
  1538. "__type__": "cc.Color",
  1539. "r": 255,
  1540. "g": 255,
  1541. "b": 255,
  1542. "a": 255
  1543. },
  1544. "_spriteFrame": {
  1545. "__uuid__": "07e970a6-6b40-4731-9015-a50a6b86145b@f9941",
  1546. "__expectedType__": "cc.SpriteFrame"
  1547. },
  1548. "_type": 0,
  1549. "_fillType": 0,
  1550. "_sizeMode": 0,
  1551. "_fillCenter": {
  1552. "__type__": "cc.Vec2",
  1553. "x": 0,
  1554. "y": 0
  1555. },
  1556. "_fillStart": 0,
  1557. "_fillRange": 0,
  1558. "_isTrimmedMode": true,
  1559. "_useGrayscale": false,
  1560. "_atlas": null,
  1561. "_id": "ebnz4jym9Iv6AfkiUUw+N8"
  1562. },
  1563. {
  1564. "__type__": "cc.Node",
  1565. "_name": "num_5",
  1566. "_objFlags": 0,
  1567. "_parent": {
  1568. "__id__": 24
  1569. },
  1570. "_children": [],
  1571. "_active": true,
  1572. "_components": [
  1573. {
  1574. "__id__": 41
  1575. },
  1576. {
  1577. "__id__": 42
  1578. }
  1579. ],
  1580. "_prefab": null,
  1581. "_lpos": {
  1582. "__type__": "cc.Vec3",
  1583. "x": -298,
  1584. "y": -60,
  1585. "z": 0
  1586. },
  1587. "_lrot": {
  1588. "__type__": "cc.Quat",
  1589. "x": 0,
  1590. "y": 0,
  1591. "z": 0,
  1592. "w": 1
  1593. },
  1594. "_lscale": {
  1595. "__type__": "cc.Vec3",
  1596. "x": 1,
  1597. "y": 1,
  1598. "z": 1
  1599. },
  1600. "_mobility": 0,
  1601. "_layer": 33554432,
  1602. "_euler": {
  1603. "__type__": "cc.Vec3",
  1604. "x": 0,
  1605. "y": 0,
  1606. "z": 0
  1607. },
  1608. "_id": "01Pp5MmWNEBr9Dc1VJeA3X"
  1609. },
  1610. {
  1611. "__type__": "cc.UITransform",
  1612. "_name": "",
  1613. "_objFlags": 0,
  1614. "node": {
  1615. "__id__": 40
  1616. },
  1617. "_enabled": true,
  1618. "__prefab": null,
  1619. "_contentSize": {
  1620. "__type__": "cc.Size",
  1621. "width": 110,
  1622. "height": 110
  1623. },
  1624. "_anchorPoint": {
  1625. "__type__": "cc.Vec2",
  1626. "x": 0.5,
  1627. "y": 0.5
  1628. },
  1629. "_id": "f339rQ3xdNPqyzvuVCty2d"
  1630. },
  1631. {
  1632. "__type__": "cc.Sprite",
  1633. "_name": "",
  1634. "_objFlags": 0,
  1635. "node": {
  1636. "__id__": 40
  1637. },
  1638. "_enabled": true,
  1639. "__prefab": null,
  1640. "_customMaterial": null,
  1641. "_srcBlendFactor": 2,
  1642. "_dstBlendFactor": 4,
  1643. "_color": {
  1644. "__type__": "cc.Color",
  1645. "r": 255,
  1646. "g": 255,
  1647. "b": 255,
  1648. "a": 255
  1649. },
  1650. "_spriteFrame": {
  1651. "__uuid__": "a61ce007-dfe6-4a4d-a62f-d96fe5b88466@f9941",
  1652. "__expectedType__": "cc.SpriteFrame"
  1653. },
  1654. "_type": 0,
  1655. "_fillType": 0,
  1656. "_sizeMode": 0,
  1657. "_fillCenter": {
  1658. "__type__": "cc.Vec2",
  1659. "x": 0,
  1660. "y": 0
  1661. },
  1662. "_fillStart": 0,
  1663. "_fillRange": 0,
  1664. "_isTrimmedMode": true,
  1665. "_useGrayscale": false,
  1666. "_atlas": null,
  1667. "_id": "1aIwJc6d5F6Lb3Ksx9qnUe"
  1668. },
  1669. {
  1670. "__type__": "cc.Node",
  1671. "_name": "num_6",
  1672. "_objFlags": 0,
  1673. "_parent": {
  1674. "__id__": 24
  1675. },
  1676. "_children": [],
  1677. "_active": true,
  1678. "_components": [
  1679. {
  1680. "__id__": 44
  1681. },
  1682. {
  1683. "__id__": 45
  1684. }
  1685. ],
  1686. "_prefab": null,
  1687. "_lpos": {
  1688. "__type__": "cc.Vec3",
  1689. "x": -151.09775000000002,
  1690. "y": -60,
  1691. "z": 0
  1692. },
  1693. "_lrot": {
  1694. "__type__": "cc.Quat",
  1695. "x": 0,
  1696. "y": 0,
  1697. "z": 0,
  1698. "w": 1
  1699. },
  1700. "_lscale": {
  1701. "__type__": "cc.Vec3",
  1702. "x": 1,
  1703. "y": 1,
  1704. "z": 1
  1705. },
  1706. "_mobility": 0,
  1707. "_layer": 33554432,
  1708. "_euler": {
  1709. "__type__": "cc.Vec3",
  1710. "x": 0,
  1711. "y": 0,
  1712. "z": 0
  1713. },
  1714. "_id": "fe6GEMB4pJ/65X89ZKFFzX"
  1715. },
  1716. {
  1717. "__type__": "cc.UITransform",
  1718. "_name": "",
  1719. "_objFlags": 0,
  1720. "node": {
  1721. "__id__": 43
  1722. },
  1723. "_enabled": true,
  1724. "__prefab": null,
  1725. "_contentSize": {
  1726. "__type__": "cc.Size",
  1727. "width": 110,
  1728. "height": 110
  1729. },
  1730. "_anchorPoint": {
  1731. "__type__": "cc.Vec2",
  1732. "x": 0.5,
  1733. "y": 0.5
  1734. },
  1735. "_id": "7fHZYhzIlFlpio0wHlZL5L"
  1736. },
  1737. {
  1738. "__type__": "cc.Sprite",
  1739. "_name": "",
  1740. "_objFlags": 0,
  1741. "node": {
  1742. "__id__": 43
  1743. },
  1744. "_enabled": true,
  1745. "__prefab": null,
  1746. "_customMaterial": null,
  1747. "_srcBlendFactor": 2,
  1748. "_dstBlendFactor": 4,
  1749. "_color": {
  1750. "__type__": "cc.Color",
  1751. "r": 255,
  1752. "g": 255,
  1753. "b": 255,
  1754. "a": 255
  1755. },
  1756. "_spriteFrame": {
  1757. "__uuid__": "00f083a2-673f-4edb-9c16-a9f6d5911507@f9941",
  1758. "__expectedType__": "cc.SpriteFrame"
  1759. },
  1760. "_type": 0,
  1761. "_fillType": 0,
  1762. "_sizeMode": 0,
  1763. "_fillCenter": {
  1764. "__type__": "cc.Vec2",
  1765. "x": 0,
  1766. "y": 0
  1767. },
  1768. "_fillStart": 0,
  1769. "_fillRange": 0,
  1770. "_isTrimmedMode": true,
  1771. "_useGrayscale": false,
  1772. "_atlas": null,
  1773. "_id": "e533Vk+ilAIalNvCHJ1O+n"
  1774. },
  1775. {
  1776. "__type__": "cc.Node",
  1777. "_name": "num_7",
  1778. "_objFlags": 0,
  1779. "_parent": {
  1780. "__id__": 24
  1781. },
  1782. "_children": [],
  1783. "_active": true,
  1784. "_components": [
  1785. {
  1786. "__id__": 47
  1787. },
  1788. {
  1789. "__id__": 48
  1790. }
  1791. ],
  1792. "_prefab": null,
  1793. "_lpos": {
  1794. "__type__": "cc.Vec3",
  1795. "x": -4.195499999999981,
  1796. "y": -60,
  1797. "z": 0
  1798. },
  1799. "_lrot": {
  1800. "__type__": "cc.Quat",
  1801. "x": 0,
  1802. "y": 0,
  1803. "z": 0,
  1804. "w": 1
  1805. },
  1806. "_lscale": {
  1807. "__type__": "cc.Vec3",
  1808. "x": 1,
  1809. "y": 1,
  1810. "z": 1
  1811. },
  1812. "_mobility": 0,
  1813. "_layer": 33554432,
  1814. "_euler": {
  1815. "__type__": "cc.Vec3",
  1816. "x": 0,
  1817. "y": 0,
  1818. "z": 0
  1819. },
  1820. "_id": "14kZIGj7JP46qXoqKJ35KT"
  1821. },
  1822. {
  1823. "__type__": "cc.UITransform",
  1824. "_name": "",
  1825. "_objFlags": 0,
  1826. "node": {
  1827. "__id__": 46
  1828. },
  1829. "_enabled": true,
  1830. "__prefab": null,
  1831. "_contentSize": {
  1832. "__type__": "cc.Size",
  1833. "width": 110,
  1834. "height": 110
  1835. },
  1836. "_anchorPoint": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0.5,
  1839. "y": 0.5
  1840. },
  1841. "_id": "11gxSSCVFE049BlBkTI890"
  1842. },
  1843. {
  1844. "__type__": "cc.Sprite",
  1845. "_name": "",
  1846. "_objFlags": 0,
  1847. "node": {
  1848. "__id__": 46
  1849. },
  1850. "_enabled": true,
  1851. "__prefab": null,
  1852. "_customMaterial": null,
  1853. "_srcBlendFactor": 2,
  1854. "_dstBlendFactor": 4,
  1855. "_color": {
  1856. "__type__": "cc.Color",
  1857. "r": 255,
  1858. "g": 255,
  1859. "b": 255,
  1860. "a": 255
  1861. },
  1862. "_spriteFrame": {
  1863. "__uuid__": "8d109004-b72d-4a54-b9d6-10e472dae168@f9941",
  1864. "__expectedType__": "cc.SpriteFrame"
  1865. },
  1866. "_type": 0,
  1867. "_fillType": 0,
  1868. "_sizeMode": 0,
  1869. "_fillCenter": {
  1870. "__type__": "cc.Vec2",
  1871. "x": 0,
  1872. "y": 0
  1873. },
  1874. "_fillStart": 0,
  1875. "_fillRange": 0,
  1876. "_isTrimmedMode": true,
  1877. "_useGrayscale": false,
  1878. "_atlas": null,
  1879. "_id": "c0vXynZi9D3Yoexql82IFR"
  1880. },
  1881. {
  1882. "__type__": "cc.Node",
  1883. "_name": "num_8",
  1884. "_objFlags": 0,
  1885. "_parent": {
  1886. "__id__": 24
  1887. },
  1888. "_children": [],
  1889. "_active": true,
  1890. "_components": [
  1891. {
  1892. "__id__": 50
  1893. },
  1894. {
  1895. "__id__": 51
  1896. }
  1897. ],
  1898. "_prefab": null,
  1899. "_lpos": {
  1900. "__type__": "cc.Vec3",
  1901. "x": 142.70675000000006,
  1902. "y": -60,
  1903. "z": 0
  1904. },
  1905. "_lrot": {
  1906. "__type__": "cc.Quat",
  1907. "x": 0,
  1908. "y": 0,
  1909. "z": 0,
  1910. "w": 1
  1911. },
  1912. "_lscale": {
  1913. "__type__": "cc.Vec3",
  1914. "x": 1,
  1915. "y": 1,
  1916. "z": 1
  1917. },
  1918. "_mobility": 0,
  1919. "_layer": 33554432,
  1920. "_euler": {
  1921. "__type__": "cc.Vec3",
  1922. "x": 0,
  1923. "y": 0,
  1924. "z": 0
  1925. },
  1926. "_id": "f0c/UKLClGJZEcPrDQDYpC"
  1927. },
  1928. {
  1929. "__type__": "cc.UITransform",
  1930. "_name": "",
  1931. "_objFlags": 0,
  1932. "node": {
  1933. "__id__": 49
  1934. },
  1935. "_enabled": true,
  1936. "__prefab": null,
  1937. "_contentSize": {
  1938. "__type__": "cc.Size",
  1939. "width": 110,
  1940. "height": 110
  1941. },
  1942. "_anchorPoint": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0.5,
  1945. "y": 0.5
  1946. },
  1947. "_id": "a7Rv8Tn4ZNMKPf98naKbQY"
  1948. },
  1949. {
  1950. "__type__": "cc.Sprite",
  1951. "_name": "",
  1952. "_objFlags": 0,
  1953. "node": {
  1954. "__id__": 49
  1955. },
  1956. "_enabled": true,
  1957. "__prefab": null,
  1958. "_customMaterial": null,
  1959. "_srcBlendFactor": 2,
  1960. "_dstBlendFactor": 4,
  1961. "_color": {
  1962. "__type__": "cc.Color",
  1963. "r": 255,
  1964. "g": 255,
  1965. "b": 255,
  1966. "a": 255
  1967. },
  1968. "_spriteFrame": {
  1969. "__uuid__": "7cc292ba-64f4-4494-a0c1-3d693fc1be33@f9941",
  1970. "__expectedType__": "cc.SpriteFrame"
  1971. },
  1972. "_type": 0,
  1973. "_fillType": 0,
  1974. "_sizeMode": 0,
  1975. "_fillCenter": {
  1976. "__type__": "cc.Vec2",
  1977. "x": 0,
  1978. "y": 0
  1979. },
  1980. "_fillStart": 0,
  1981. "_fillRange": 0,
  1982. "_isTrimmedMode": true,
  1983. "_useGrayscale": false,
  1984. "_atlas": null,
  1985. "_id": "1cGGQFiyxMmqomSqx/opU0"
  1986. },
  1987. {
  1988. "__type__": "cc.Node",
  1989. "_name": "num_9",
  1990. "_objFlags": 0,
  1991. "_parent": {
  1992. "__id__": 24
  1993. },
  1994. "_children": [],
  1995. "_active": true,
  1996. "_components": [
  1997. {
  1998. "__id__": 53
  1999. },
  2000. {
  2001. "__id__": 54
  2002. }
  2003. ],
  2004. "_prefab": null,
  2005. "_lpos": {
  2006. "__type__": "cc.Vec3",
  2007. "x": 289.60900000000004,
  2008. "y": -60,
  2009. "z": 0
  2010. },
  2011. "_lrot": {
  2012. "__type__": "cc.Quat",
  2013. "x": 0,
  2014. "y": 0,
  2015. "z": 0,
  2016. "w": 1
  2017. },
  2018. "_lscale": {
  2019. "__type__": "cc.Vec3",
  2020. "x": 1,
  2021. "y": 1,
  2022. "z": 1
  2023. },
  2024. "_mobility": 0,
  2025. "_layer": 33554432,
  2026. "_euler": {
  2027. "__type__": "cc.Vec3",
  2028. "x": 0,
  2029. "y": 0,
  2030. "z": 0
  2031. },
  2032. "_id": "1b4eTlp6tDAr1tVuqgDI4O"
  2033. },
  2034. {
  2035. "__type__": "cc.UITransform",
  2036. "_name": "",
  2037. "_objFlags": 0,
  2038. "node": {
  2039. "__id__": 52
  2040. },
  2041. "_enabled": true,
  2042. "__prefab": null,
  2043. "_contentSize": {
  2044. "__type__": "cc.Size",
  2045. "width": 110,
  2046. "height": 110
  2047. },
  2048. "_anchorPoint": {
  2049. "__type__": "cc.Vec2",
  2050. "x": 0.5,
  2051. "y": 0.5
  2052. },
  2053. "_id": "13WH2MC4pMRLEBJzfgWi+j"
  2054. },
  2055. {
  2056. "__type__": "cc.Sprite",
  2057. "_name": "",
  2058. "_objFlags": 0,
  2059. "node": {
  2060. "__id__": 52
  2061. },
  2062. "_enabled": true,
  2063. "__prefab": null,
  2064. "_customMaterial": null,
  2065. "_srcBlendFactor": 2,
  2066. "_dstBlendFactor": 4,
  2067. "_color": {
  2068. "__type__": "cc.Color",
  2069. "r": 255,
  2070. "g": 255,
  2071. "b": 255,
  2072. "a": 255
  2073. },
  2074. "_spriteFrame": {
  2075. "__uuid__": "3d11770c-93aa-4e98-ae86-3e52359d8bf2@f9941",
  2076. "__expectedType__": "cc.SpriteFrame"
  2077. },
  2078. "_type": 0,
  2079. "_fillType": 0,
  2080. "_sizeMode": 0,
  2081. "_fillCenter": {
  2082. "__type__": "cc.Vec2",
  2083. "x": 0,
  2084. "y": 0
  2085. },
  2086. "_fillStart": 0,
  2087. "_fillRange": 0,
  2088. "_isTrimmedMode": true,
  2089. "_useGrayscale": false,
  2090. "_atlas": null,
  2091. "_id": "c8VszUkiBParNqCm52WBhn"
  2092. },
  2093. {
  2094. "__type__": "cc.UITransform",
  2095. "_name": "",
  2096. "_objFlags": 0,
  2097. "node": {
  2098. "__id__": 24
  2099. },
  2100. "_enabled": true,
  2101. "__prefab": null,
  2102. "_contentSize": {
  2103. "__type__": "cc.Size",
  2104. "width": 777.4689999999999,
  2105. "height": 252
  2106. },
  2107. "_anchorPoint": {
  2108. "__type__": "cc.Vec2",
  2109. "x": 0.5,
  2110. "y": 0.5
  2111. },
  2112. "_id": "83iMtDC1BN0I+iCZwpjkm2"
  2113. },
  2114. {
  2115. "__type__": "cc.Sprite",
  2116. "_name": "",
  2117. "_objFlags": 0,
  2118. "node": {
  2119. "__id__": 24
  2120. },
  2121. "_enabled": true,
  2122. "__prefab": null,
  2123. "_customMaterial": null,
  2124. "_srcBlendFactor": 2,
  2125. "_dstBlendFactor": 4,
  2126. "_color": {
  2127. "__type__": "cc.Color",
  2128. "r": 255,
  2129. "g": 255,
  2130. "b": 255,
  2131. "a": 255
  2132. },
  2133. "_spriteFrame": {
  2134. "__uuid__": "6bcbf727-35b9-46de-945b-4f0dbd71d263@f9941",
  2135. "__expectedType__": "cc.SpriteFrame"
  2136. },
  2137. "_type": 1,
  2138. "_fillType": 0,
  2139. "_sizeMode": 0,
  2140. "_fillCenter": {
  2141. "__type__": "cc.Vec2",
  2142. "x": 0,
  2143. "y": 0
  2144. },
  2145. "_fillStart": 0,
  2146. "_fillRange": 0,
  2147. "_isTrimmedMode": true,
  2148. "_useGrayscale": false,
  2149. "_atlas": null,
  2150. "_id": "a3N4LD2NxJhIsoW/1ohO4d"
  2151. },
  2152. {
  2153. "__type__": "cc.Node",
  2154. "_name": "queding",
  2155. "_objFlags": 0,
  2156. "_parent": {
  2157. "__id__": 17
  2158. },
  2159. "_children": [],
  2160. "_active": true,
  2161. "_components": [
  2162. {
  2163. "__id__": 58
  2164. },
  2165. {
  2166. "__id__": 59
  2167. },
  2168. {
  2169. "__id__": 60
  2170. }
  2171. ],
  2172. "_prefab": null,
  2173. "_lpos": {
  2174. "__type__": "cc.Vec3",
  2175. "x": -200,
  2176. "y": -490,
  2177. "z": 0
  2178. },
  2179. "_lrot": {
  2180. "__type__": "cc.Quat",
  2181. "x": 0,
  2182. "y": 0,
  2183. "z": 0,
  2184. "w": 1
  2185. },
  2186. "_lscale": {
  2187. "__type__": "cc.Vec3",
  2188. "x": -1,
  2189. "y": 1,
  2190. "z": 1
  2191. },
  2192. "_mobility": 0,
  2193. "_layer": 33554432,
  2194. "_euler": {
  2195. "__type__": "cc.Vec3",
  2196. "x": 0,
  2197. "y": 0,
  2198. "z": 0
  2199. },
  2200. "_id": "d9YnpAgIhNtKbpXHxDo8mg"
  2201. },
  2202. {
  2203. "__type__": "cc.UITransform",
  2204. "_name": "",
  2205. "_objFlags": 0,
  2206. "node": {
  2207. "__id__": 57
  2208. },
  2209. "_enabled": true,
  2210. "__prefab": null,
  2211. "_contentSize": {
  2212. "__type__": "cc.Size",
  2213. "width": 283,
  2214. "height": 96
  2215. },
  2216. "_anchorPoint": {
  2217. "__type__": "cc.Vec2",
  2218. "x": 0.5,
  2219. "y": 0.5
  2220. },
  2221. "_id": "9980FnVnROYZPdDDdMGXq0"
  2222. },
  2223. {
  2224. "__type__": "cc.Sprite",
  2225. "_name": "",
  2226. "_objFlags": 0,
  2227. "node": {
  2228. "__id__": 57
  2229. },
  2230. "_enabled": true,
  2231. "__prefab": null,
  2232. "_customMaterial": null,
  2233. "_srcBlendFactor": 2,
  2234. "_dstBlendFactor": 4,
  2235. "_color": {
  2236. "__type__": "cc.Color",
  2237. "r": 255,
  2238. "g": 255,
  2239. "b": 255,
  2240. "a": 255
  2241. },
  2242. "_spriteFrame": {
  2243. "__uuid__": "732028fa-9959-457a-8737-827052c294bc@f9941",
  2244. "__expectedType__": "cc.SpriteFrame"
  2245. },
  2246. "_type": 0,
  2247. "_fillType": 0,
  2248. "_sizeMode": 1,
  2249. "_fillCenter": {
  2250. "__type__": "cc.Vec2",
  2251. "x": 0,
  2252. "y": 0
  2253. },
  2254. "_fillStart": 0,
  2255. "_fillRange": 0,
  2256. "_isTrimmedMode": true,
  2257. "_useGrayscale": false,
  2258. "_atlas": null,
  2259. "_id": "a135VjlERJJZTn3O4Qs9/p"
  2260. },
  2261. {
  2262. "__type__": "cc.Button",
  2263. "_name": "",
  2264. "_objFlags": 0,
  2265. "node": {
  2266. "__id__": 57
  2267. },
  2268. "_enabled": true,
  2269. "__prefab": null,
  2270. "clickEvents": [],
  2271. "_interactable": true,
  2272. "_transition": 3,
  2273. "_normalColor": {
  2274. "__type__": "cc.Color",
  2275. "r": 255,
  2276. "g": 255,
  2277. "b": 255,
  2278. "a": 255
  2279. },
  2280. "_hoverColor": {
  2281. "__type__": "cc.Color",
  2282. "r": 211,
  2283. "g": 211,
  2284. "b": 211,
  2285. "a": 255
  2286. },
  2287. "_pressedColor": {
  2288. "__type__": "cc.Color",
  2289. "r": 255,
  2290. "g": 255,
  2291. "b": 255,
  2292. "a": 255
  2293. },
  2294. "_disabledColor": {
  2295. "__type__": "cc.Color",
  2296. "r": 124,
  2297. "g": 124,
  2298. "b": 124,
  2299. "a": 255
  2300. },
  2301. "_normalSprite": {
  2302. "__uuid__": "732028fa-9959-457a-8737-827052c294bc@f9941",
  2303. "__expectedType__": "cc.SpriteFrame"
  2304. },
  2305. "_hoverSprite": null,
  2306. "_pressedSprite": null,
  2307. "_disabledSprite": null,
  2308. "_duration": 0.1,
  2309. "_zoomScale": 0.9,
  2310. "_target": null,
  2311. "_id": "3dh1YK3ulL95vD+TnyIZJE"
  2312. },
  2313. {
  2314. "__type__": "cc.Node",
  2315. "_name": "tijiao",
  2316. "_objFlags": 0,
  2317. "_parent": {
  2318. "__id__": 17
  2319. },
  2320. "_children": [],
  2321. "_active": true,
  2322. "_components": [
  2323. {
  2324. "__id__": 62
  2325. },
  2326. {
  2327. "__id__": 63
  2328. },
  2329. {
  2330. "__id__": 64
  2331. }
  2332. ],
  2333. "_prefab": null,
  2334. "_lpos": {
  2335. "__type__": "cc.Vec3",
  2336. "x": -760,
  2337. "y": -550,
  2338. "z": 0
  2339. },
  2340. "_lrot": {
  2341. "__type__": "cc.Quat",
  2342. "x": 0,
  2343. "y": 0,
  2344. "z": 0,
  2345. "w": 1
  2346. },
  2347. "_lscale": {
  2348. "__type__": "cc.Vec3",
  2349. "x": -1,
  2350. "y": 1,
  2351. "z": 1
  2352. },
  2353. "_mobility": 0,
  2354. "_layer": 33554432,
  2355. "_euler": {
  2356. "__type__": "cc.Vec3",
  2357. "x": 0,
  2358. "y": 0,
  2359. "z": 0
  2360. },
  2361. "_id": "5381oSh6xAk6c/D39tgmFa"
  2362. },
  2363. {
  2364. "__type__": "cc.UITransform",
  2365. "_name": "",
  2366. "_objFlags": 0,
  2367. "node": {
  2368. "__id__": 61
  2369. },
  2370. "_enabled": true,
  2371. "__prefab": null,
  2372. "_contentSize": {
  2373. "__type__": "cc.Size",
  2374. "width": 222,
  2375. "height": 222
  2376. },
  2377. "_anchorPoint": {
  2378. "__type__": "cc.Vec2",
  2379. "x": 0.5,
  2380. "y": 0.5
  2381. },
  2382. "_id": "fb8rmtQydGt4de4hRqTHjs"
  2383. },
  2384. {
  2385. "__type__": "cc.Sprite",
  2386. "_name": "",
  2387. "_objFlags": 0,
  2388. "node": {
  2389. "__id__": 61
  2390. },
  2391. "_enabled": true,
  2392. "__prefab": null,
  2393. "_customMaterial": null,
  2394. "_srcBlendFactor": 2,
  2395. "_dstBlendFactor": 4,
  2396. "_color": {
  2397. "__type__": "cc.Color",
  2398. "r": 255,
  2399. "g": 255,
  2400. "b": 255,
  2401. "a": 255
  2402. },
  2403. "_spriteFrame": {
  2404. "__uuid__": "22dbbe5d-985e-4587-9635-d5129e20d9e1@f9941",
  2405. "__expectedType__": "cc.SpriteFrame"
  2406. },
  2407. "_type": 0,
  2408. "_fillType": 0,
  2409. "_sizeMode": 1,
  2410. "_fillCenter": {
  2411. "__type__": "cc.Vec2",
  2412. "x": 0,
  2413. "y": 0
  2414. },
  2415. "_fillStart": 0,
  2416. "_fillRange": 0,
  2417. "_isTrimmedMode": true,
  2418. "_useGrayscale": false,
  2419. "_atlas": null,
  2420. "_id": "bbenOYrYxJjYYrol6mOKbQ"
  2421. },
  2422. {
  2423. "__type__": "cc.Button",
  2424. "_name": "",
  2425. "_objFlags": 0,
  2426. "node": {
  2427. "__id__": 61
  2428. },
  2429. "_enabled": true,
  2430. "__prefab": null,
  2431. "clickEvents": [],
  2432. "_interactable": true,
  2433. "_transition": 3,
  2434. "_normalColor": {
  2435. "__type__": "cc.Color",
  2436. "r": 255,
  2437. "g": 255,
  2438. "b": 255,
  2439. "a": 255
  2440. },
  2441. "_hoverColor": {
  2442. "__type__": "cc.Color",
  2443. "r": 211,
  2444. "g": 211,
  2445. "b": 211,
  2446. "a": 255
  2447. },
  2448. "_pressedColor": {
  2449. "__type__": "cc.Color",
  2450. "r": 255,
  2451. "g": 255,
  2452. "b": 255,
  2453. "a": 255
  2454. },
  2455. "_disabledColor": {
  2456. "__type__": "cc.Color",
  2457. "r": 124,
  2458. "g": 124,
  2459. "b": 124,
  2460. "a": 255
  2461. },
  2462. "_normalSprite": {
  2463. "__uuid__": "22dbbe5d-985e-4587-9635-d5129e20d9e1@f9941",
  2464. "__expectedType__": "cc.SpriteFrame"
  2465. },
  2466. "_hoverSprite": null,
  2467. "_pressedSprite": null,
  2468. "_disabledSprite": null,
  2469. "_duration": 0.1,
  2470. "_zoomScale": 0.9,
  2471. "_target": null,
  2472. "_id": "20Q8LF+bNOxaIXNQM7ktaU"
  2473. },
  2474. {
  2475. "__type__": "cc.Node",
  2476. "_name": "shanchu",
  2477. "_objFlags": 0,
  2478. "_parent": {
  2479. "__id__": 17
  2480. },
  2481. "_children": [],
  2482. "_active": true,
  2483. "_components": [
  2484. {
  2485. "__id__": 66
  2486. },
  2487. {
  2488. "__id__": 67
  2489. },
  2490. {
  2491. "__id__": 68
  2492. }
  2493. ],
  2494. "_prefab": null,
  2495. "_lpos": {
  2496. "__type__": "cc.Vec3",
  2497. "x": -200,
  2498. "y": -610,
  2499. "z": 0
  2500. },
  2501. "_lrot": {
  2502. "__type__": "cc.Quat",
  2503. "x": 0,
  2504. "y": 0,
  2505. "z": 0,
  2506. "w": 1
  2507. },
  2508. "_lscale": {
  2509. "__type__": "cc.Vec3",
  2510. "x": -1,
  2511. "y": 1,
  2512. "z": 1
  2513. },
  2514. "_mobility": 0,
  2515. "_layer": 33554432,
  2516. "_euler": {
  2517. "__type__": "cc.Vec3",
  2518. "x": 0,
  2519. "y": 0,
  2520. "z": 0
  2521. },
  2522. "_id": "14HAnq4W1FHpLvNmVK31qx"
  2523. },
  2524. {
  2525. "__type__": "cc.UITransform",
  2526. "_name": "",
  2527. "_objFlags": 0,
  2528. "node": {
  2529. "__id__": 65
  2530. },
  2531. "_enabled": true,
  2532. "__prefab": null,
  2533. "_contentSize": {
  2534. "__type__": "cc.Size",
  2535. "width": 283,
  2536. "height": 96
  2537. },
  2538. "_anchorPoint": {
  2539. "__type__": "cc.Vec2",
  2540. "x": 0.5,
  2541. "y": 0.5
  2542. },
  2543. "_id": "0dgueaZhRKZ644/j1I/gn7"
  2544. },
  2545. {
  2546. "__type__": "cc.Sprite",
  2547. "_name": "",
  2548. "_objFlags": 0,
  2549. "node": {
  2550. "__id__": 65
  2551. },
  2552. "_enabled": true,
  2553. "__prefab": null,
  2554. "_customMaterial": null,
  2555. "_srcBlendFactor": 2,
  2556. "_dstBlendFactor": 4,
  2557. "_color": {
  2558. "__type__": "cc.Color",
  2559. "r": 255,
  2560. "g": 255,
  2561. "b": 255,
  2562. "a": 255
  2563. },
  2564. "_spriteFrame": {
  2565. "__uuid__": "375599f0-9314-4bd9-be50-4a14f76be3a0@f9941",
  2566. "__expectedType__": "cc.SpriteFrame"
  2567. },
  2568. "_type": 1,
  2569. "_fillType": 0,
  2570. "_sizeMode": 1,
  2571. "_fillCenter": {
  2572. "__type__": "cc.Vec2",
  2573. "x": 0,
  2574. "y": 0
  2575. },
  2576. "_fillStart": 0,
  2577. "_fillRange": 0,
  2578. "_isTrimmedMode": true,
  2579. "_useGrayscale": false,
  2580. "_atlas": null,
  2581. "_id": "01gAVUTxRB4Y4f4W72uz7Y"
  2582. },
  2583. {
  2584. "__type__": "cc.Button",
  2585. "_name": "",
  2586. "_objFlags": 0,
  2587. "node": {
  2588. "__id__": 65
  2589. },
  2590. "_enabled": true,
  2591. "__prefab": null,
  2592. "clickEvents": [],
  2593. "_interactable": true,
  2594. "_transition": 3,
  2595. "_normalColor": {
  2596. "__type__": "cc.Color",
  2597. "r": 255,
  2598. "g": 255,
  2599. "b": 255,
  2600. "a": 255
  2601. },
  2602. "_hoverColor": {
  2603. "__type__": "cc.Color",
  2604. "r": 211,
  2605. "g": 211,
  2606. "b": 211,
  2607. "a": 255
  2608. },
  2609. "_pressedColor": {
  2610. "__type__": "cc.Color",
  2611. "r": 255,
  2612. "g": 255,
  2613. "b": 255,
  2614. "a": 255
  2615. },
  2616. "_disabledColor": {
  2617. "__type__": "cc.Color",
  2618. "r": 124,
  2619. "g": 124,
  2620. "b": 124,
  2621. "a": 255
  2622. },
  2623. "_normalSprite": {
  2624. "__uuid__": "375599f0-9314-4bd9-be50-4a14f76be3a0@f9941",
  2625. "__expectedType__": "cc.SpriteFrame"
  2626. },
  2627. "_hoverSprite": null,
  2628. "_pressedSprite": null,
  2629. "_disabledSprite": null,
  2630. "_duration": 0.1,
  2631. "_zoomScale": 0.9,
  2632. "_target": null,
  2633. "_id": "2dMeDDpWVIFKfGPCgopBrG"
  2634. },
  2635. {
  2636. "__type__": "cc.Node",
  2637. "_name": "article_1",
  2638. "_objFlags": 0,
  2639. "_parent": {
  2640. "__id__": 17
  2641. },
  2642. "_children": [
  2643. {
  2644. "__id__": 70
  2645. },
  2646. {
  2647. "__id__": 74
  2648. },
  2649. {
  2650. "__id__": 77
  2651. },
  2652. {
  2653. "__id__": 81
  2654. }
  2655. ],
  2656. "_active": true,
  2657. "_components": [
  2658. {
  2659. "__id__": 84
  2660. },
  2661. {
  2662. "__id__": 85
  2663. }
  2664. ],
  2665. "_prefab": null,
  2666. "_lpos": {
  2667. "__type__": "cc.Vec3",
  2668. "x": -757.5909999999999,
  2669. "y": 450,
  2670. "z": 0
  2671. },
  2672. "_lrot": {
  2673. "__type__": "cc.Quat",
  2674. "x": 0,
  2675. "y": 0,
  2676. "z": 0,
  2677. "w": 1
  2678. },
  2679. "_lscale": {
  2680. "__type__": "cc.Vec3",
  2681. "x": 1,
  2682. "y": 1,
  2683. "z": 1
  2684. },
  2685. "_mobility": 0,
  2686. "_layer": 33554432,
  2687. "_euler": {
  2688. "__type__": "cc.Vec3",
  2689. "x": 0,
  2690. "y": 0,
  2691. "z": 0
  2692. },
  2693. "_id": "e9DME1SYFKwpkLETYl61s1"
  2694. },
  2695. {
  2696. "__type__": "cc.Node",
  2697. "_name": "xuanzhong",
  2698. "_objFlags": 0,
  2699. "_parent": {
  2700. "__id__": 69
  2701. },
  2702. "_children": [],
  2703. "_active": true,
  2704. "_components": [
  2705. {
  2706. "__id__": 71
  2707. },
  2708. {
  2709. "__id__": 72
  2710. },
  2711. {
  2712. "__id__": 73
  2713. }
  2714. ],
  2715. "_prefab": null,
  2716. "_lpos": {
  2717. "__type__": "cc.Vec3",
  2718. "x": 0,
  2719. "y": 0,
  2720. "z": -1.262177448353619e-29
  2721. },
  2722. "_lrot": {
  2723. "__type__": "cc.Quat",
  2724. "x": 0,
  2725. "y": 0,
  2726. "z": 0,
  2727. "w": 1
  2728. },
  2729. "_lscale": {
  2730. "__type__": "cc.Vec3",
  2731. "x": 1,
  2732. "y": 1,
  2733. "z": 1
  2734. },
  2735. "_mobility": 0,
  2736. "_layer": 33554432,
  2737. "_euler": {
  2738. "__type__": "cc.Vec3",
  2739. "x": 0,
  2740. "y": 0,
  2741. "z": 0
  2742. },
  2743. "_id": "77c2uH6IhIg48eGOD9Hn2L"
  2744. },
  2745. {
  2746. "__type__": "cc.UITransform",
  2747. "_name": "",
  2748. "_objFlags": 0,
  2749. "node": {
  2750. "__id__": 70
  2751. },
  2752. "_enabled": true,
  2753. "__prefab": null,
  2754. "_contentSize": {
  2755. "__type__": "cc.Size",
  2756. "width": 400.884,
  2757. "height": 176
  2758. },
  2759. "_anchorPoint": {
  2760. "__type__": "cc.Vec2",
  2761. "x": 0.5,
  2762. "y": 0.5
  2763. },
  2764. "_id": "5eioZr1FFBP63IyMRtLRCW"
  2765. },
  2766. {
  2767. "__type__": "cc.Sprite",
  2768. "_name": "",
  2769. "_objFlags": 0,
  2770. "node": {
  2771. "__id__": 70
  2772. },
  2773. "_enabled": true,
  2774. "__prefab": null,
  2775. "_customMaterial": null,
  2776. "_srcBlendFactor": 2,
  2777. "_dstBlendFactor": 4,
  2778. "_color": {
  2779. "__type__": "cc.Color",
  2780. "r": 255,
  2781. "g": 255,
  2782. "b": 255,
  2783. "a": 255
  2784. },
  2785. "_spriteFrame": {
  2786. "__uuid__": "c3df3c19-580b-4d0b-960c-3d4456e69d8f@f9941",
  2787. "__expectedType__": "cc.SpriteFrame"
  2788. },
  2789. "_type": 1,
  2790. "_fillType": 0,
  2791. "_sizeMode": 0,
  2792. "_fillCenter": {
  2793. "__type__": "cc.Vec2",
  2794. "x": 0,
  2795. "y": 0
  2796. },
  2797. "_fillStart": 0,
  2798. "_fillRange": 0,
  2799. "_isTrimmedMode": true,
  2800. "_useGrayscale": false,
  2801. "_atlas": null,
  2802. "_id": "25cHYQG8NFQqUp5B3YuQiG"
  2803. },
  2804. {
  2805. "__type__": "cc.Widget",
  2806. "_name": "",
  2807. "_objFlags": 0,
  2808. "node": {
  2809. "__id__": 70
  2810. },
  2811. "_enabled": true,
  2812. "__prefab": null,
  2813. "_alignFlags": 45,
  2814. "_target": null,
  2815. "_left": 0,
  2816. "_right": 0,
  2817. "_top": 0,
  2818. "_bottom": 0,
  2819. "_horizontalCenter": 0,
  2820. "_verticalCenter": 0,
  2821. "_isAbsLeft": true,
  2822. "_isAbsRight": true,
  2823. "_isAbsTop": true,
  2824. "_isAbsBottom": true,
  2825. "_isAbsHorizontalCenter": true,
  2826. "_isAbsVerticalCenter": true,
  2827. "_originalWidth": 400.884,
  2828. "_originalHeight": 176,
  2829. "_alignMode": 2,
  2830. "_lockFlags": 0,
  2831. "_id": "93CrlNzjRAAKeDRJJEboM+"
  2832. },
  2833. {
  2834. "__type__": "cc.Node",
  2835. "_name": "article",
  2836. "_objFlags": 0,
  2837. "_parent": {
  2838. "__id__": 69
  2839. },
  2840. "_children": [],
  2841. "_active": true,
  2842. "_components": [
  2843. {
  2844. "__id__": 75
  2845. },
  2846. {
  2847. "__id__": 76
  2848. }
  2849. ],
  2850. "_prefab": null,
  2851. "_lpos": {
  2852. "__type__": "cc.Vec3",
  2853. "x": 110,
  2854. "y": 0,
  2855. "z": 0
  2856. },
  2857. "_lrot": {
  2858. "__type__": "cc.Quat",
  2859. "x": 0,
  2860. "y": 0,
  2861. "z": 0,
  2862. "w": 1
  2863. },
  2864. "_lscale": {
  2865. "__type__": "cc.Vec3",
  2866. "x": 1,
  2867. "y": 1,
  2868. "z": 1
  2869. },
  2870. "_mobility": 0,
  2871. "_layer": 33554432,
  2872. "_euler": {
  2873. "__type__": "cc.Vec3",
  2874. "x": 0,
  2875. "y": 0,
  2876. "z": 0
  2877. },
  2878. "_id": "ccefZzIbdOsJkXC6SjzBel"
  2879. },
  2880. {
  2881. "__type__": "cc.UITransform",
  2882. "_name": "",
  2883. "_objFlags": 0,
  2884. "node": {
  2885. "__id__": 74
  2886. },
  2887. "_enabled": true,
  2888. "__prefab": null,
  2889. "_contentSize": {
  2890. "__type__": "cc.Size",
  2891. "width": 122,
  2892. "height": 133
  2893. },
  2894. "_anchorPoint": {
  2895. "__type__": "cc.Vec2",
  2896. "x": 0.5,
  2897. "y": 0.5
  2898. },
  2899. "_id": "44sNpJrXJPv5x4oIdAEPDv"
  2900. },
  2901. {
  2902. "__type__": "cc.Sprite",
  2903. "_name": "",
  2904. "_objFlags": 0,
  2905. "node": {
  2906. "__id__": 74
  2907. },
  2908. "_enabled": true,
  2909. "__prefab": null,
  2910. "_customMaterial": null,
  2911. "_srcBlendFactor": 2,
  2912. "_dstBlendFactor": 4,
  2913. "_color": {
  2914. "__type__": "cc.Color",
  2915. "r": 255,
  2916. "g": 255,
  2917. "b": 255,
  2918. "a": 255
  2919. },
  2920. "_spriteFrame": {
  2921. "__uuid__": "8b6833f8-45d3-4493-a2fc-cc75d96c1740@f9941",
  2922. "__expectedType__": "cc.SpriteFrame"
  2923. },
  2924. "_type": 0,
  2925. "_fillType": 0,
  2926. "_sizeMode": 1,
  2927. "_fillCenter": {
  2928. "__type__": "cc.Vec2",
  2929. "x": 0,
  2930. "y": 0
  2931. },
  2932. "_fillStart": 0,
  2933. "_fillRange": 0,
  2934. "_isTrimmedMode": true,
  2935. "_useGrayscale": false,
  2936. "_atlas": null,
  2937. "_id": "c3OrlLwWxMs6TvMPyDXCPc"
  2938. },
  2939. {
  2940. "__type__": "cc.Node",
  2941. "_name": "num",
  2942. "_objFlags": 0,
  2943. "_parent": {
  2944. "__id__": 69
  2945. },
  2946. "_children": [],
  2947. "_active": true,
  2948. "_components": [
  2949. {
  2950. "__id__": 78
  2951. },
  2952. {
  2953. "__id__": 79
  2954. },
  2955. {
  2956. "__id__": 80
  2957. }
  2958. ],
  2959. "_prefab": null,
  2960. "_lpos": {
  2961. "__type__": "cc.Vec3",
  2962. "x": -72,
  2963. "y": 0,
  2964. "z": 0
  2965. },
  2966. "_lrot": {
  2967. "__type__": "cc.Quat",
  2968. "x": 0,
  2969. "y": 0,
  2970. "z": 0,
  2971. "w": 1
  2972. },
  2973. "_lscale": {
  2974. "__type__": "cc.Vec3",
  2975. "x": -1,
  2976. "y": 1,
  2977. "z": 1
  2978. },
  2979. "_mobility": 0,
  2980. "_layer": 33554432,
  2981. "_euler": {
  2982. "__type__": "cc.Vec3",
  2983. "x": 0,
  2984. "y": 0,
  2985. "z": 0
  2986. },
  2987. "_id": "9fjK2tRuJOdIRBfigzOTqy"
  2988. },
  2989. {
  2990. "__type__": "cc.UITransform",
  2991. "_name": "",
  2992. "_objFlags": 0,
  2993. "node": {
  2994. "__id__": 77
  2995. },
  2996. "_enabled": true,
  2997. "__prefab": null,
  2998. "_contentSize": {
  2999. "__type__": "cc.Size",
  3000. "width": 240,
  3001. "height": 120
  3002. },
  3003. "_anchorPoint": {
  3004. "__type__": "cc.Vec2",
  3005. "x": 0.5,
  3006. "y": 0.5
  3007. },
  3008. "_id": "9dP+Jg+cFLbqaNFlQcFcWw"
  3009. },
  3010. {
  3011. "__type__": "cc.Label",
  3012. "_name": "",
  3013. "_objFlags": 0,
  3014. "node": {
  3015. "__id__": 77
  3016. },
  3017. "_enabled": true,
  3018. "__prefab": null,
  3019. "_customMaterial": null,
  3020. "_srcBlendFactor": 2,
  3021. "_dstBlendFactor": 4,
  3022. "_color": {
  3023. "__type__": "cc.Color",
  3024. "r": 255,
  3025. "g": 0,
  3026. "b": 0,
  3027. "a": 255
  3028. },
  3029. "_string": "?",
  3030. "_horizontalAlign": 1,
  3031. "_verticalAlign": 1,
  3032. "_actualFontSize": 120,
  3033. "_fontSize": 120,
  3034. "_fontFamily": "Arial",
  3035. "_lineHeight": 120,
  3036. "_overflow": 2,
  3037. "_enableWrapText": false,
  3038. "_font": null,
  3039. "_isSystemFontUsed": true,
  3040. "_spacingX": 0,
  3041. "_isItalic": false,
  3042. "_isBold": false,
  3043. "_isUnderline": false,
  3044. "_underlineHeight": 2,
  3045. "_cacheMode": 0,
  3046. "_id": "09NsaKMFpCj6KSAf7h17sk"
  3047. },
  3048. {
  3049. "__type__": "cc.LabelOutline",
  3050. "_name": "",
  3051. "_objFlags": 0,
  3052. "node": {
  3053. "__id__": 77
  3054. },
  3055. "_enabled": true,
  3056. "__prefab": null,
  3057. "_color": {
  3058. "__type__": "cc.Color",
  3059. "r": 255,
  3060. "g": 255,
  3061. "b": 255,
  3062. "a": 255
  3063. },
  3064. "_width": 2,
  3065. "_id": "3bzrUtCPtHYLOfu82rkO20"
  3066. },
  3067. {
  3068. "__type__": "cc.Node",
  3069. "_name": "cha",
  3070. "_objFlags": 0,
  3071. "_parent": {
  3072. "__id__": 69
  3073. },
  3074. "_children": [],
  3075. "_active": true,
  3076. "_components": [
  3077. {
  3078. "__id__": 82
  3079. },
  3080. {
  3081. "__id__": 83
  3082. }
  3083. ],
  3084. "_prefab": null,
  3085. "_lpos": {
  3086. "__type__": "cc.Vec3",
  3087. "x": -70,
  3088. "y": 0,
  3089. "z": 0
  3090. },
  3091. "_lrot": {
  3092. "__type__": "cc.Quat",
  3093. "x": 0,
  3094. "y": 0,
  3095. "z": 0,
  3096. "w": 1
  3097. },
  3098. "_lscale": {
  3099. "__type__": "cc.Vec3",
  3100. "x": 0.5,
  3101. "y": 0.5,
  3102. "z": 1
  3103. },
  3104. "_mobility": 0,
  3105. "_layer": 33554432,
  3106. "_euler": {
  3107. "__type__": "cc.Vec3",
  3108. "x": 0,
  3109. "y": 0,
  3110. "z": 0
  3111. },
  3112. "_id": "15f2NrBKJOqpLFqewvw1GR"
  3113. },
  3114. {
  3115. "__type__": "cc.UITransform",
  3116. "_name": "",
  3117. "_objFlags": 0,
  3118. "node": {
  3119. "__id__": 81
  3120. },
  3121. "_enabled": true,
  3122. "__prefab": null,
  3123. "_contentSize": {
  3124. "__type__": "cc.Size",
  3125. "width": 243,
  3126. "height": 258
  3127. },
  3128. "_anchorPoint": {
  3129. "__type__": "cc.Vec2",
  3130. "x": 0.5,
  3131. "y": 0.5
  3132. },
  3133. "_id": "82wIk6yH5DKbKfI9dlCdxr"
  3134. },
  3135. {
  3136. "__type__": "cc.Sprite",
  3137. "_name": "",
  3138. "_objFlags": 0,
  3139. "node": {
  3140. "__id__": 81
  3141. },
  3142. "_enabled": true,
  3143. "__prefab": null,
  3144. "_customMaterial": null,
  3145. "_srcBlendFactor": 2,
  3146. "_dstBlendFactor": 4,
  3147. "_color": {
  3148. "__type__": "cc.Color",
  3149. "r": 255,
  3150. "g": 255,
  3151. "b": 255,
  3152. "a": 255
  3153. },
  3154. "_spriteFrame": {
  3155. "__uuid__": "dabe0b8f-5c8b-4b17-a593-b64cf2fdd267@f9941",
  3156. "__expectedType__": "cc.SpriteFrame"
  3157. },
  3158. "_type": 0,
  3159. "_fillType": 0,
  3160. "_sizeMode": 1,
  3161. "_fillCenter": {
  3162. "__type__": "cc.Vec2",
  3163. "x": 0,
  3164. "y": 0
  3165. },
  3166. "_fillStart": 0,
  3167. "_fillRange": 0,
  3168. "_isTrimmedMode": true,
  3169. "_useGrayscale": false,
  3170. "_atlas": null,
  3171. "_id": "6aaKcNYwNI86uzVfz8aQgB"
  3172. },
  3173. {
  3174. "__type__": "cc.UITransform",
  3175. "_name": "",
  3176. "_objFlags": 0,
  3177. "node": {
  3178. "__id__": 69
  3179. },
  3180. "_enabled": true,
  3181. "__prefab": null,
  3182. "_contentSize": {
  3183. "__type__": "cc.Size",
  3184. "width": 400.884,
  3185. "height": 176
  3186. },
  3187. "_anchorPoint": {
  3188. "__type__": "cc.Vec2",
  3189. "x": 0.5,
  3190. "y": 0.5
  3191. },
  3192. "_id": "33k873gA9PaqUQElpzN3lx"
  3193. },
  3194. {
  3195. "__type__": "cc.Sprite",
  3196. "_name": "",
  3197. "_objFlags": 0,
  3198. "node": {
  3199. "__id__": 69
  3200. },
  3201. "_enabled": true,
  3202. "__prefab": null,
  3203. "_customMaterial": null,
  3204. "_srcBlendFactor": 2,
  3205. "_dstBlendFactor": 4,
  3206. "_color": {
  3207. "__type__": "cc.Color",
  3208. "r": 255,
  3209. "g": 255,
  3210. "b": 255,
  3211. "a": 255
  3212. },
  3213. "_spriteFrame": {
  3214. "__uuid__": "ee955275-5a34-4060-8a20-898119e99035@f9941",
  3215. "__expectedType__": "cc.SpriteFrame"
  3216. },
  3217. "_type": 1,
  3218. "_fillType": 0,
  3219. "_sizeMode": 0,
  3220. "_fillCenter": {
  3221. "__type__": "cc.Vec2",
  3222. "x": 0,
  3223. "y": 0
  3224. },
  3225. "_fillStart": 0,
  3226. "_fillRange": 0,
  3227. "_isTrimmedMode": true,
  3228. "_useGrayscale": false,
  3229. "_atlas": null,
  3230. "_id": "0687dJbkJA+7KT3LkCF2TW"
  3231. },
  3232. {
  3233. "__type__": "cc.Node",
  3234. "_name": "article_2",
  3235. "_objFlags": 0,
  3236. "_parent": {
  3237. "__id__": 17
  3238. },
  3239. "_children": [
  3240. {
  3241. "__id__": 87
  3242. },
  3243. {
  3244. "__id__": 91
  3245. },
  3246. {
  3247. "__id__": 94
  3248. },
  3249. {
  3250. "__id__": 98
  3251. }
  3252. ],
  3253. "_active": true,
  3254. "_components": [
  3255. {
  3256. "__id__": 101
  3257. },
  3258. {
  3259. "__id__": 102
  3260. }
  3261. ],
  3262. "_prefab": null,
  3263. "_lpos": {
  3264. "__type__": "cc.Vec3",
  3265. "x": -757.5909999999999,
  3266. "y": 260,
  3267. "z": 0
  3268. },
  3269. "_lrot": {
  3270. "__type__": "cc.Quat",
  3271. "x": 0,
  3272. "y": 0,
  3273. "z": 0,
  3274. "w": 1
  3275. },
  3276. "_lscale": {
  3277. "__type__": "cc.Vec3",
  3278. "x": 1,
  3279. "y": 1,
  3280. "z": 1
  3281. },
  3282. "_mobility": 0,
  3283. "_layer": 33554432,
  3284. "_euler": {
  3285. "__type__": "cc.Vec3",
  3286. "x": 0,
  3287. "y": 0,
  3288. "z": 0
  3289. },
  3290. "_id": "9fUEPi8PNCsp9m+nnuefeq"
  3291. },
  3292. {
  3293. "__type__": "cc.Node",
  3294. "_name": "xuanzhong",
  3295. "_objFlags": 0,
  3296. "_parent": {
  3297. "__id__": 86
  3298. },
  3299. "_children": [],
  3300. "_active": true,
  3301. "_components": [
  3302. {
  3303. "__id__": 88
  3304. },
  3305. {
  3306. "__id__": 89
  3307. },
  3308. {
  3309. "__id__": 90
  3310. }
  3311. ],
  3312. "_prefab": null,
  3313. "_lpos": {
  3314. "__type__": "cc.Vec3",
  3315. "x": 0,
  3316. "y": 0,
  3317. "z": -1.8932661725304283e-29
  3318. },
  3319. "_lrot": {
  3320. "__type__": "cc.Quat",
  3321. "x": 0,
  3322. "y": 0,
  3323. "z": 0,
  3324. "w": 1
  3325. },
  3326. "_lscale": {
  3327. "__type__": "cc.Vec3",
  3328. "x": 1,
  3329. "y": 1,
  3330. "z": 1
  3331. },
  3332. "_mobility": 0,
  3333. "_layer": 33554432,
  3334. "_euler": {
  3335. "__type__": "cc.Vec3",
  3336. "x": 0,
  3337. "y": 0,
  3338. "z": 0
  3339. },
  3340. "_id": "dejMA4XllHkK0udkS1C/z1"
  3341. },
  3342. {
  3343. "__type__": "cc.UITransform",
  3344. "_name": "",
  3345. "_objFlags": 0,
  3346. "node": {
  3347. "__id__": 87
  3348. },
  3349. "_enabled": true,
  3350. "__prefab": null,
  3351. "_contentSize": {
  3352. "__type__": "cc.Size",
  3353. "width": 400.884,
  3354. "height": 176
  3355. },
  3356. "_anchorPoint": {
  3357. "__type__": "cc.Vec2",
  3358. "x": 0.5,
  3359. "y": 0.5
  3360. },
  3361. "_id": "74gvRphyRBhIzVohO0kFhb"
  3362. },
  3363. {
  3364. "__type__": "cc.Sprite",
  3365. "_name": "",
  3366. "_objFlags": 0,
  3367. "node": {
  3368. "__id__": 87
  3369. },
  3370. "_enabled": true,
  3371. "__prefab": null,
  3372. "_customMaterial": null,
  3373. "_srcBlendFactor": 2,
  3374. "_dstBlendFactor": 4,
  3375. "_color": {
  3376. "__type__": "cc.Color",
  3377. "r": 255,
  3378. "g": 255,
  3379. "b": 255,
  3380. "a": 255
  3381. },
  3382. "_spriteFrame": {
  3383. "__uuid__": "c3df3c19-580b-4d0b-960c-3d4456e69d8f@f9941",
  3384. "__expectedType__": "cc.SpriteFrame"
  3385. },
  3386. "_type": 1,
  3387. "_fillType": 0,
  3388. "_sizeMode": 0,
  3389. "_fillCenter": {
  3390. "__type__": "cc.Vec2",
  3391. "x": 0,
  3392. "y": 0
  3393. },
  3394. "_fillStart": 0,
  3395. "_fillRange": 0,
  3396. "_isTrimmedMode": true,
  3397. "_useGrayscale": false,
  3398. "_atlas": null,
  3399. "_id": "f5HvZFUfxFaJOGgix86vSl"
  3400. },
  3401. {
  3402. "__type__": "cc.Widget",
  3403. "_name": "",
  3404. "_objFlags": 0,
  3405. "node": {
  3406. "__id__": 87
  3407. },
  3408. "_enabled": true,
  3409. "__prefab": null,
  3410. "_alignFlags": 45,
  3411. "_target": null,
  3412. "_left": 0,
  3413. "_right": 0,
  3414. "_top": 0,
  3415. "_bottom": 0,
  3416. "_horizontalCenter": 0,
  3417. "_verticalCenter": 0,
  3418. "_isAbsLeft": true,
  3419. "_isAbsRight": true,
  3420. "_isAbsTop": true,
  3421. "_isAbsBottom": true,
  3422. "_isAbsHorizontalCenter": true,
  3423. "_isAbsVerticalCenter": true,
  3424. "_originalWidth": 400.884,
  3425. "_originalHeight": 176,
  3426. "_alignMode": 2,
  3427. "_lockFlags": 0,
  3428. "_id": "b0bV1AVz5Mgbh42SjkmtsX"
  3429. },
  3430. {
  3431. "__type__": "cc.Node",
  3432. "_name": "article",
  3433. "_objFlags": 0,
  3434. "_parent": {
  3435. "__id__": 86
  3436. },
  3437. "_children": [],
  3438. "_active": true,
  3439. "_components": [
  3440. {
  3441. "__id__": 92
  3442. },
  3443. {
  3444. "__id__": 93
  3445. }
  3446. ],
  3447. "_prefab": null,
  3448. "_lpos": {
  3449. "__type__": "cc.Vec3",
  3450. "x": 110,
  3451. "y": 0,
  3452. "z": 0
  3453. },
  3454. "_lrot": {
  3455. "__type__": "cc.Quat",
  3456. "x": 0,
  3457. "y": 0,
  3458. "z": 0,
  3459. "w": 1
  3460. },
  3461. "_lscale": {
  3462. "__type__": "cc.Vec3",
  3463. "x": 0.8,
  3464. "y": 0.8,
  3465. "z": 1
  3466. },
  3467. "_mobility": 0,
  3468. "_layer": 33554432,
  3469. "_euler": {
  3470. "__type__": "cc.Vec3",
  3471. "x": 0,
  3472. "y": 0,
  3473. "z": 0
  3474. },
  3475. "_id": "32JgNKendCD6l+Pz8HVh+t"
  3476. },
  3477. {
  3478. "__type__": "cc.UITransform",
  3479. "_name": "",
  3480. "_objFlags": 0,
  3481. "node": {
  3482. "__id__": 91
  3483. },
  3484. "_enabled": true,
  3485. "__prefab": null,
  3486. "_contentSize": {
  3487. "__type__": "cc.Size",
  3488. "width": 160,
  3489. "height": 201
  3490. },
  3491. "_anchorPoint": {
  3492. "__type__": "cc.Vec2",
  3493. "x": 0.5,
  3494. "y": 0.5
  3495. },
  3496. "_id": "34n8XS3EFPhrAXCcJjv3o/"
  3497. },
  3498. {
  3499. "__type__": "cc.Sprite",
  3500. "_name": "",
  3501. "_objFlags": 0,
  3502. "node": {
  3503. "__id__": 91
  3504. },
  3505. "_enabled": true,
  3506. "__prefab": null,
  3507. "_customMaterial": null,
  3508. "_srcBlendFactor": 2,
  3509. "_dstBlendFactor": 4,
  3510. "_color": {
  3511. "__type__": "cc.Color",
  3512. "r": 255,
  3513. "g": 255,
  3514. "b": 255,
  3515. "a": 255
  3516. },
  3517. "_spriteFrame": {
  3518. "__uuid__": "0f994d3e-8613-4a57-b36d-e8a7240af726@f9941",
  3519. "__expectedType__": "cc.SpriteFrame"
  3520. },
  3521. "_type": 0,
  3522. "_fillType": 0,
  3523. "_sizeMode": 1,
  3524. "_fillCenter": {
  3525. "__type__": "cc.Vec2",
  3526. "x": 0,
  3527. "y": 0
  3528. },
  3529. "_fillStart": 0,
  3530. "_fillRange": 0,
  3531. "_isTrimmedMode": true,
  3532. "_useGrayscale": false,
  3533. "_atlas": null,
  3534. "_id": "cdcjPPNhZGVqfLfPUxGX2X"
  3535. },
  3536. {
  3537. "__type__": "cc.Node",
  3538. "_name": "num",
  3539. "_objFlags": 0,
  3540. "_parent": {
  3541. "__id__": 86
  3542. },
  3543. "_children": [],
  3544. "_active": true,
  3545. "_components": [
  3546. {
  3547. "__id__": 95
  3548. },
  3549. {
  3550. "__id__": 96
  3551. },
  3552. {
  3553. "__id__": 97
  3554. }
  3555. ],
  3556. "_prefab": null,
  3557. "_lpos": {
  3558. "__type__": "cc.Vec3",
  3559. "x": -72,
  3560. "y": 0,
  3561. "z": 0
  3562. },
  3563. "_lrot": {
  3564. "__type__": "cc.Quat",
  3565. "x": 0,
  3566. "y": 0,
  3567. "z": 0,
  3568. "w": 1
  3569. },
  3570. "_lscale": {
  3571. "__type__": "cc.Vec3",
  3572. "x": -1,
  3573. "y": 1,
  3574. "z": 1
  3575. },
  3576. "_mobility": 0,
  3577. "_layer": 33554432,
  3578. "_euler": {
  3579. "__type__": "cc.Vec3",
  3580. "x": 0,
  3581. "y": 0,
  3582. "z": 0
  3583. },
  3584. "_id": "0cGotYkslBm59/LNr0vdAl"
  3585. },
  3586. {
  3587. "__type__": "cc.UITransform",
  3588. "_name": "",
  3589. "_objFlags": 0,
  3590. "node": {
  3591. "__id__": 94
  3592. },
  3593. "_enabled": true,
  3594. "__prefab": null,
  3595. "_contentSize": {
  3596. "__type__": "cc.Size",
  3597. "width": 240,
  3598. "height": 120
  3599. },
  3600. "_anchorPoint": {
  3601. "__type__": "cc.Vec2",
  3602. "x": 0.5,
  3603. "y": 0.5
  3604. },
  3605. "_id": "677pBcdu5LAoWHhm5Zz4OX"
  3606. },
  3607. {
  3608. "__type__": "cc.Label",
  3609. "_name": "",
  3610. "_objFlags": 0,
  3611. "node": {
  3612. "__id__": 94
  3613. },
  3614. "_enabled": true,
  3615. "__prefab": null,
  3616. "_customMaterial": null,
  3617. "_srcBlendFactor": 2,
  3618. "_dstBlendFactor": 4,
  3619. "_color": {
  3620. "__type__": "cc.Color",
  3621. "r": 255,
  3622. "g": 0,
  3623. "b": 0,
  3624. "a": 255
  3625. },
  3626. "_string": "?",
  3627. "_horizontalAlign": 1,
  3628. "_verticalAlign": 1,
  3629. "_actualFontSize": 120,
  3630. "_fontSize": 120,
  3631. "_fontFamily": "Arial",
  3632. "_lineHeight": 120,
  3633. "_overflow": 2,
  3634. "_enableWrapText": false,
  3635. "_font": null,
  3636. "_isSystemFontUsed": true,
  3637. "_spacingX": 0,
  3638. "_isItalic": false,
  3639. "_isBold": false,
  3640. "_isUnderline": false,
  3641. "_underlineHeight": 2,
  3642. "_cacheMode": 0,
  3643. "_id": "dd+5Rv6gZMKLcRpn3wXlZk"
  3644. },
  3645. {
  3646. "__type__": "cc.LabelOutline",
  3647. "_name": "",
  3648. "_objFlags": 0,
  3649. "node": {
  3650. "__id__": 94
  3651. },
  3652. "_enabled": true,
  3653. "__prefab": null,
  3654. "_color": {
  3655. "__type__": "cc.Color",
  3656. "r": 255,
  3657. "g": 255,
  3658. "b": 255,
  3659. "a": 255
  3660. },
  3661. "_width": 2,
  3662. "_id": "b4mZHoxj1PYaHjMw40AJxR"
  3663. },
  3664. {
  3665. "__type__": "cc.Node",
  3666. "_name": "cha",
  3667. "_objFlags": 0,
  3668. "_parent": {
  3669. "__id__": 86
  3670. },
  3671. "_children": [],
  3672. "_active": true,
  3673. "_components": [
  3674. {
  3675. "__id__": 99
  3676. },
  3677. {
  3678. "__id__": 100
  3679. }
  3680. ],
  3681. "_prefab": null,
  3682. "_lpos": {
  3683. "__type__": "cc.Vec3",
  3684. "x": -70,
  3685. "y": 0,
  3686. "z": 0
  3687. },
  3688. "_lrot": {
  3689. "__type__": "cc.Quat",
  3690. "x": 0,
  3691. "y": 0,
  3692. "z": 0,
  3693. "w": 1
  3694. },
  3695. "_lscale": {
  3696. "__type__": "cc.Vec3",
  3697. "x": 0.5,
  3698. "y": 0.5,
  3699. "z": 1
  3700. },
  3701. "_mobility": 0,
  3702. "_layer": 33554432,
  3703. "_euler": {
  3704. "__type__": "cc.Vec3",
  3705. "x": 0,
  3706. "y": 0,
  3707. "z": 0
  3708. },
  3709. "_id": "92EpTN48tOXKEP3FtjcPH/"
  3710. },
  3711. {
  3712. "__type__": "cc.UITransform",
  3713. "_name": "",
  3714. "_objFlags": 0,
  3715. "node": {
  3716. "__id__": 98
  3717. },
  3718. "_enabled": true,
  3719. "__prefab": null,
  3720. "_contentSize": {
  3721. "__type__": "cc.Size",
  3722. "width": 243,
  3723. "height": 258
  3724. },
  3725. "_anchorPoint": {
  3726. "__type__": "cc.Vec2",
  3727. "x": 0.5,
  3728. "y": 0.5
  3729. },
  3730. "_id": "c0q0f73clPJbFfcy+OivV4"
  3731. },
  3732. {
  3733. "__type__": "cc.Sprite",
  3734. "_name": "",
  3735. "_objFlags": 0,
  3736. "node": {
  3737. "__id__": 98
  3738. },
  3739. "_enabled": true,
  3740. "__prefab": null,
  3741. "_customMaterial": null,
  3742. "_srcBlendFactor": 2,
  3743. "_dstBlendFactor": 4,
  3744. "_color": {
  3745. "__type__": "cc.Color",
  3746. "r": 255,
  3747. "g": 255,
  3748. "b": 255,
  3749. "a": 255
  3750. },
  3751. "_spriteFrame": {
  3752. "__uuid__": "dabe0b8f-5c8b-4b17-a593-b64cf2fdd267@f9941",
  3753. "__expectedType__": "cc.SpriteFrame"
  3754. },
  3755. "_type": 0,
  3756. "_fillType": 0,
  3757. "_sizeMode": 1,
  3758. "_fillCenter": {
  3759. "__type__": "cc.Vec2",
  3760. "x": 0,
  3761. "y": 0
  3762. },
  3763. "_fillStart": 0,
  3764. "_fillRange": 0,
  3765. "_isTrimmedMode": true,
  3766. "_useGrayscale": false,
  3767. "_atlas": null,
  3768. "_id": "cacOGGPU1G54tUuoBQaomB"
  3769. },
  3770. {
  3771. "__type__": "cc.UITransform",
  3772. "_name": "",
  3773. "_objFlags": 0,
  3774. "node": {
  3775. "__id__": 86
  3776. },
  3777. "_enabled": true,
  3778. "__prefab": null,
  3779. "_contentSize": {
  3780. "__type__": "cc.Size",
  3781. "width": 400.884,
  3782. "height": 176
  3783. },
  3784. "_anchorPoint": {
  3785. "__type__": "cc.Vec2",
  3786. "x": 0.5,
  3787. "y": 0.5
  3788. },
  3789. "_id": "e7JFDAOGVEVIMkL11feTyB"
  3790. },
  3791. {
  3792. "__type__": "cc.Sprite",
  3793. "_name": "",
  3794. "_objFlags": 0,
  3795. "node": {
  3796. "__id__": 86
  3797. },
  3798. "_enabled": true,
  3799. "__prefab": null,
  3800. "_customMaterial": null,
  3801. "_srcBlendFactor": 2,
  3802. "_dstBlendFactor": 4,
  3803. "_color": {
  3804. "__type__": "cc.Color",
  3805. "r": 255,
  3806. "g": 255,
  3807. "b": 255,
  3808. "a": 255
  3809. },
  3810. "_spriteFrame": {
  3811. "__uuid__": "ee955275-5a34-4060-8a20-898119e99035@f9941",
  3812. "__expectedType__": "cc.SpriteFrame"
  3813. },
  3814. "_type": 1,
  3815. "_fillType": 0,
  3816. "_sizeMode": 0,
  3817. "_fillCenter": {
  3818. "__type__": "cc.Vec2",
  3819. "x": 0,
  3820. "y": 0
  3821. },
  3822. "_fillStart": 0,
  3823. "_fillRange": 0,
  3824. "_isTrimmedMode": true,
  3825. "_useGrayscale": false,
  3826. "_atlas": null,
  3827. "_id": "6ene1eXrZESIyGrOu8BsuC"
  3828. },
  3829. {
  3830. "__type__": "cc.Node",
  3831. "_name": "article_3",
  3832. "_objFlags": 0,
  3833. "_parent": {
  3834. "__id__": 17
  3835. },
  3836. "_children": [
  3837. {
  3838. "__id__": 104
  3839. },
  3840. {
  3841. "__id__": 108
  3842. },
  3843. {
  3844. "__id__": 111
  3845. },
  3846. {
  3847. "__id__": 115
  3848. }
  3849. ],
  3850. "_active": true,
  3851. "_components": [
  3852. {
  3853. "__id__": 118
  3854. },
  3855. {
  3856. "__id__": 119
  3857. }
  3858. ],
  3859. "_prefab": null,
  3860. "_lpos": {
  3861. "__type__": "cc.Vec3",
  3862. "x": -757.5909999999999,
  3863. "y": 70,
  3864. "z": 0
  3865. },
  3866. "_lrot": {
  3867. "__type__": "cc.Quat",
  3868. "x": 0,
  3869. "y": 0,
  3870. "z": 0,
  3871. "w": 1
  3872. },
  3873. "_lscale": {
  3874. "__type__": "cc.Vec3",
  3875. "x": 1,
  3876. "y": 1,
  3877. "z": 1
  3878. },
  3879. "_mobility": 0,
  3880. "_layer": 33554432,
  3881. "_euler": {
  3882. "__type__": "cc.Vec3",
  3883. "x": 0,
  3884. "y": 0,
  3885. "z": 0
  3886. },
  3887. "_id": "85UIRTy+dBoJqte6mJRDLh"
  3888. },
  3889. {
  3890. "__type__": "cc.Node",
  3891. "_name": "xuanzhong",
  3892. "_objFlags": 0,
  3893. "_parent": {
  3894. "__id__": 103
  3895. },
  3896. "_children": [],
  3897. "_active": true,
  3898. "_components": [
  3899. {
  3900. "__id__": 105
  3901. },
  3902. {
  3903. "__id__": 106
  3904. },
  3905. {
  3906. "__id__": 107
  3907. }
  3908. ],
  3909. "_prefab": null,
  3910. "_lpos": {
  3911. "__type__": "cc.Vec3",
  3912. "x": 0,
  3913. "y": 0,
  3914. "z": -1.8932661725304283e-29
  3915. },
  3916. "_lrot": {
  3917. "__type__": "cc.Quat",
  3918. "x": 0,
  3919. "y": 0,
  3920. "z": 0,
  3921. "w": 1
  3922. },
  3923. "_lscale": {
  3924. "__type__": "cc.Vec3",
  3925. "x": 1,
  3926. "y": 1,
  3927. "z": 1
  3928. },
  3929. "_mobility": 0,
  3930. "_layer": 33554432,
  3931. "_euler": {
  3932. "__type__": "cc.Vec3",
  3933. "x": 0,
  3934. "y": 0,
  3935. "z": 0
  3936. },
  3937. "_id": "195hKW57ZBD5+STwPt1ggv"
  3938. },
  3939. {
  3940. "__type__": "cc.UITransform",
  3941. "_name": "",
  3942. "_objFlags": 0,
  3943. "node": {
  3944. "__id__": 104
  3945. },
  3946. "_enabled": true,
  3947. "__prefab": null,
  3948. "_contentSize": {
  3949. "__type__": "cc.Size",
  3950. "width": 400.884,
  3951. "height": 176
  3952. },
  3953. "_anchorPoint": {
  3954. "__type__": "cc.Vec2",
  3955. "x": 0.5,
  3956. "y": 0.5
  3957. },
  3958. "_id": "d85Xa1B+xI1adNphT7Pa7x"
  3959. },
  3960. {
  3961. "__type__": "cc.Sprite",
  3962. "_name": "",
  3963. "_objFlags": 0,
  3964. "node": {
  3965. "__id__": 104
  3966. },
  3967. "_enabled": true,
  3968. "__prefab": null,
  3969. "_customMaterial": null,
  3970. "_srcBlendFactor": 2,
  3971. "_dstBlendFactor": 4,
  3972. "_color": {
  3973. "__type__": "cc.Color",
  3974. "r": 255,
  3975. "g": 255,
  3976. "b": 255,
  3977. "a": 255
  3978. },
  3979. "_spriteFrame": {
  3980. "__uuid__": "c3df3c19-580b-4d0b-960c-3d4456e69d8f@f9941",
  3981. "__expectedType__": "cc.SpriteFrame"
  3982. },
  3983. "_type": 1,
  3984. "_fillType": 0,
  3985. "_sizeMode": 0,
  3986. "_fillCenter": {
  3987. "__type__": "cc.Vec2",
  3988. "x": 0,
  3989. "y": 0
  3990. },
  3991. "_fillStart": 0,
  3992. "_fillRange": 0,
  3993. "_isTrimmedMode": true,
  3994. "_useGrayscale": false,
  3995. "_atlas": null,
  3996. "_id": "b2TtjXzclDQL/VyPmUjqW5"
  3997. },
  3998. {
  3999. "__type__": "cc.Widget",
  4000. "_name": "",
  4001. "_objFlags": 0,
  4002. "node": {
  4003. "__id__": 104
  4004. },
  4005. "_enabled": true,
  4006. "__prefab": null,
  4007. "_alignFlags": 45,
  4008. "_target": null,
  4009. "_left": 0,
  4010. "_right": 0,
  4011. "_top": 0,
  4012. "_bottom": 0,
  4013. "_horizontalCenter": 0,
  4014. "_verticalCenter": 0,
  4015. "_isAbsLeft": true,
  4016. "_isAbsRight": true,
  4017. "_isAbsTop": true,
  4018. "_isAbsBottom": true,
  4019. "_isAbsHorizontalCenter": true,
  4020. "_isAbsVerticalCenter": true,
  4021. "_originalWidth": 400.884,
  4022. "_originalHeight": 176,
  4023. "_alignMode": 2,
  4024. "_lockFlags": 0,
  4025. "_id": "cfonUZWwZL+bjWnG4BlEbs"
  4026. },
  4027. {
  4028. "__type__": "cc.Node",
  4029. "_name": "article",
  4030. "_objFlags": 0,
  4031. "_parent": {
  4032. "__id__": 103
  4033. },
  4034. "_children": [],
  4035. "_active": true,
  4036. "_components": [
  4037. {
  4038. "__id__": 109
  4039. },
  4040. {
  4041. "__id__": 110
  4042. }
  4043. ],
  4044. "_prefab": null,
  4045. "_lpos": {
  4046. "__type__": "cc.Vec3",
  4047. "x": 110,
  4048. "y": 0,
  4049. "z": 0
  4050. },
  4051. "_lrot": {
  4052. "__type__": "cc.Quat",
  4053. "x": 0,
  4054. "y": 0,
  4055. "z": 0,
  4056. "w": 1
  4057. },
  4058. "_lscale": {
  4059. "__type__": "cc.Vec3",
  4060. "x": 0.6,
  4061. "y": 0.6,
  4062. "z": 1
  4063. },
  4064. "_mobility": 0,
  4065. "_layer": 33554432,
  4066. "_euler": {
  4067. "__type__": "cc.Vec3",
  4068. "x": 0,
  4069. "y": 0,
  4070. "z": 0
  4071. },
  4072. "_id": "14QchBc+NC8K4xC9BpdOBi"
  4073. },
  4074. {
  4075. "__type__": "cc.UITransform",
  4076. "_name": "",
  4077. "_objFlags": 0,
  4078. "node": {
  4079. "__id__": 108
  4080. },
  4081. "_enabled": true,
  4082. "__prefab": null,
  4083. "_contentSize": {
  4084. "__type__": "cc.Size",
  4085. "width": 199,
  4086. "height": 263
  4087. },
  4088. "_anchorPoint": {
  4089. "__type__": "cc.Vec2",
  4090. "x": 0.5,
  4091. "y": 0.5
  4092. },
  4093. "_id": "38qBC8zNpK24MUbLcNX4WA"
  4094. },
  4095. {
  4096. "__type__": "cc.Sprite",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "node": {
  4100. "__id__": 108
  4101. },
  4102. "_enabled": true,
  4103. "__prefab": null,
  4104. "_customMaterial": null,
  4105. "_srcBlendFactor": 2,
  4106. "_dstBlendFactor": 4,
  4107. "_color": {
  4108. "__type__": "cc.Color",
  4109. "r": 255,
  4110. "g": 255,
  4111. "b": 255,
  4112. "a": 255
  4113. },
  4114. "_spriteFrame": {
  4115. "__uuid__": "f4b8a74a-969e-4014-888e-b5111db5db71@f9941",
  4116. "__expectedType__": "cc.SpriteFrame"
  4117. },
  4118. "_type": 0,
  4119. "_fillType": 0,
  4120. "_sizeMode": 1,
  4121. "_fillCenter": {
  4122. "__type__": "cc.Vec2",
  4123. "x": 0,
  4124. "y": 0
  4125. },
  4126. "_fillStart": 0,
  4127. "_fillRange": 0,
  4128. "_isTrimmedMode": true,
  4129. "_useGrayscale": false,
  4130. "_atlas": null,
  4131. "_id": "1dv/yXj0xF96802/Y4U48C"
  4132. },
  4133. {
  4134. "__type__": "cc.Node",
  4135. "_name": "num",
  4136. "_objFlags": 0,
  4137. "_parent": {
  4138. "__id__": 103
  4139. },
  4140. "_children": [],
  4141. "_active": true,
  4142. "_components": [
  4143. {
  4144. "__id__": 112
  4145. },
  4146. {
  4147. "__id__": 113
  4148. },
  4149. {
  4150. "__id__": 114
  4151. }
  4152. ],
  4153. "_prefab": null,
  4154. "_lpos": {
  4155. "__type__": "cc.Vec3",
  4156. "x": -72,
  4157. "y": 0,
  4158. "z": 0
  4159. },
  4160. "_lrot": {
  4161. "__type__": "cc.Quat",
  4162. "x": 0,
  4163. "y": 0,
  4164. "z": 0,
  4165. "w": 1
  4166. },
  4167. "_lscale": {
  4168. "__type__": "cc.Vec3",
  4169. "x": -1,
  4170. "y": 1,
  4171. "z": 1
  4172. },
  4173. "_mobility": 0,
  4174. "_layer": 33554432,
  4175. "_euler": {
  4176. "__type__": "cc.Vec3",
  4177. "x": 0,
  4178. "y": 0,
  4179. "z": 0
  4180. },
  4181. "_id": "9eLK0lSGRC1Z92wUp5emES"
  4182. },
  4183. {
  4184. "__type__": "cc.UITransform",
  4185. "_name": "",
  4186. "_objFlags": 0,
  4187. "node": {
  4188. "__id__": 111
  4189. },
  4190. "_enabled": true,
  4191. "__prefab": null,
  4192. "_contentSize": {
  4193. "__type__": "cc.Size",
  4194. "width": 240,
  4195. "height": 120
  4196. },
  4197. "_anchorPoint": {
  4198. "__type__": "cc.Vec2",
  4199. "x": 0.5,
  4200. "y": 0.5
  4201. },
  4202. "_id": "41UU4RVy9AqbUkp9ZDCRZN"
  4203. },
  4204. {
  4205. "__type__": "cc.Label",
  4206. "_name": "",
  4207. "_objFlags": 0,
  4208. "node": {
  4209. "__id__": 111
  4210. },
  4211. "_enabled": true,
  4212. "__prefab": null,
  4213. "_customMaterial": null,
  4214. "_srcBlendFactor": 2,
  4215. "_dstBlendFactor": 4,
  4216. "_color": {
  4217. "__type__": "cc.Color",
  4218. "r": 255,
  4219. "g": 0,
  4220. "b": 0,
  4221. "a": 255
  4222. },
  4223. "_string": "?",
  4224. "_horizontalAlign": 1,
  4225. "_verticalAlign": 1,
  4226. "_actualFontSize": 120,
  4227. "_fontSize": 120,
  4228. "_fontFamily": "Arial",
  4229. "_lineHeight": 120,
  4230. "_overflow": 2,
  4231. "_enableWrapText": false,
  4232. "_font": null,
  4233. "_isSystemFontUsed": true,
  4234. "_spacingX": 0,
  4235. "_isItalic": false,
  4236. "_isBold": false,
  4237. "_isUnderline": false,
  4238. "_underlineHeight": 2,
  4239. "_cacheMode": 0,
  4240. "_id": "8aOSmsZDhFSbSAu/bBg4Ze"
  4241. },
  4242. {
  4243. "__type__": "cc.LabelOutline",
  4244. "_name": "",
  4245. "_objFlags": 0,
  4246. "node": {
  4247. "__id__": 111
  4248. },
  4249. "_enabled": true,
  4250. "__prefab": null,
  4251. "_color": {
  4252. "__type__": "cc.Color",
  4253. "r": 255,
  4254. "g": 255,
  4255. "b": 255,
  4256. "a": 255
  4257. },
  4258. "_width": 2,
  4259. "_id": "e00zm3utlAR4dtQN0szVlp"
  4260. },
  4261. {
  4262. "__type__": "cc.Node",
  4263. "_name": "cha",
  4264. "_objFlags": 0,
  4265. "_parent": {
  4266. "__id__": 103
  4267. },
  4268. "_children": [],
  4269. "_active": true,
  4270. "_components": [
  4271. {
  4272. "__id__": 116
  4273. },
  4274. {
  4275. "__id__": 117
  4276. }
  4277. ],
  4278. "_prefab": null,
  4279. "_lpos": {
  4280. "__type__": "cc.Vec3",
  4281. "x": -70,
  4282. "y": 0,
  4283. "z": 0
  4284. },
  4285. "_lrot": {
  4286. "__type__": "cc.Quat",
  4287. "x": 0,
  4288. "y": 0,
  4289. "z": 0,
  4290. "w": 1
  4291. },
  4292. "_lscale": {
  4293. "__type__": "cc.Vec3",
  4294. "x": 0.5,
  4295. "y": 0.5,
  4296. "z": 1
  4297. },
  4298. "_mobility": 0,
  4299. "_layer": 33554432,
  4300. "_euler": {
  4301. "__type__": "cc.Vec3",
  4302. "x": 0,
  4303. "y": 0,
  4304. "z": 0
  4305. },
  4306. "_id": "7aJLXJEU9HTZ9rT71rzjfx"
  4307. },
  4308. {
  4309. "__type__": "cc.UITransform",
  4310. "_name": "",
  4311. "_objFlags": 0,
  4312. "node": {
  4313. "__id__": 115
  4314. },
  4315. "_enabled": true,
  4316. "__prefab": null,
  4317. "_contentSize": {
  4318. "__type__": "cc.Size",
  4319. "width": 243,
  4320. "height": 258
  4321. },
  4322. "_anchorPoint": {
  4323. "__type__": "cc.Vec2",
  4324. "x": 0.5,
  4325. "y": 0.5
  4326. },
  4327. "_id": "cdmOnUDTRHd5J0BSQkd8YT"
  4328. },
  4329. {
  4330. "__type__": "cc.Sprite",
  4331. "_name": "",
  4332. "_objFlags": 0,
  4333. "node": {
  4334. "__id__": 115
  4335. },
  4336. "_enabled": true,
  4337. "__prefab": null,
  4338. "_customMaterial": null,
  4339. "_srcBlendFactor": 2,
  4340. "_dstBlendFactor": 4,
  4341. "_color": {
  4342. "__type__": "cc.Color",
  4343. "r": 255,
  4344. "g": 255,
  4345. "b": 255,
  4346. "a": 255
  4347. },
  4348. "_spriteFrame": {
  4349. "__uuid__": "dabe0b8f-5c8b-4b17-a593-b64cf2fdd267@f9941",
  4350. "__expectedType__": "cc.SpriteFrame"
  4351. },
  4352. "_type": 0,
  4353. "_fillType": 0,
  4354. "_sizeMode": 1,
  4355. "_fillCenter": {
  4356. "__type__": "cc.Vec2",
  4357. "x": 0,
  4358. "y": 0
  4359. },
  4360. "_fillStart": 0,
  4361. "_fillRange": 0,
  4362. "_isTrimmedMode": true,
  4363. "_useGrayscale": false,
  4364. "_atlas": null,
  4365. "_id": "ddPWIFKbJOEo7BX6EL5V2B"
  4366. },
  4367. {
  4368. "__type__": "cc.UITransform",
  4369. "_name": "",
  4370. "_objFlags": 0,
  4371. "node": {
  4372. "__id__": 103
  4373. },
  4374. "_enabled": true,
  4375. "__prefab": null,
  4376. "_contentSize": {
  4377. "__type__": "cc.Size",
  4378. "width": 400.884,
  4379. "height": 176
  4380. },
  4381. "_anchorPoint": {
  4382. "__type__": "cc.Vec2",
  4383. "x": 0.5,
  4384. "y": 0.5
  4385. },
  4386. "_id": "f6QyEIy6VL5qHSBRW8gzXH"
  4387. },
  4388. {
  4389. "__type__": "cc.Sprite",
  4390. "_name": "",
  4391. "_objFlags": 0,
  4392. "node": {
  4393. "__id__": 103
  4394. },
  4395. "_enabled": true,
  4396. "__prefab": null,
  4397. "_customMaterial": null,
  4398. "_srcBlendFactor": 2,
  4399. "_dstBlendFactor": 4,
  4400. "_color": {
  4401. "__type__": "cc.Color",
  4402. "r": 255,
  4403. "g": 255,
  4404. "b": 255,
  4405. "a": 255
  4406. },
  4407. "_spriteFrame": {
  4408. "__uuid__": "ee955275-5a34-4060-8a20-898119e99035@f9941",
  4409. "__expectedType__": "cc.SpriteFrame"
  4410. },
  4411. "_type": 1,
  4412. "_fillType": 0,
  4413. "_sizeMode": 0,
  4414. "_fillCenter": {
  4415. "__type__": "cc.Vec2",
  4416. "x": 0,
  4417. "y": 0
  4418. },
  4419. "_fillStart": 0,
  4420. "_fillRange": 0,
  4421. "_isTrimmedMode": true,
  4422. "_useGrayscale": false,
  4423. "_atlas": null,
  4424. "_id": "13gheTc+hGV6aURQv3NSXy"
  4425. },
  4426. {
  4427. "__type__": "cc.Node",
  4428. "_name": "article_4",
  4429. "_objFlags": 0,
  4430. "_parent": {
  4431. "__id__": 17
  4432. },
  4433. "_children": [
  4434. {
  4435. "__id__": 121
  4436. },
  4437. {
  4438. "__id__": 125
  4439. },
  4440. {
  4441. "__id__": 128
  4442. },
  4443. {
  4444. "__id__": 132
  4445. }
  4446. ],
  4447. "_active": true,
  4448. "_components": [
  4449. {
  4450. "__id__": 135
  4451. },
  4452. {
  4453. "__id__": 136
  4454. }
  4455. ],
  4456. "_prefab": null,
  4457. "_lpos": {
  4458. "__type__": "cc.Vec3",
  4459. "x": -757.5909999999999,
  4460. "y": -120,
  4461. "z": 0
  4462. },
  4463. "_lrot": {
  4464. "__type__": "cc.Quat",
  4465. "x": 0,
  4466. "y": 0,
  4467. "z": 0,
  4468. "w": 1
  4469. },
  4470. "_lscale": {
  4471. "__type__": "cc.Vec3",
  4472. "x": 1,
  4473. "y": 1,
  4474. "z": 1
  4475. },
  4476. "_mobility": 0,
  4477. "_layer": 33554432,
  4478. "_euler": {
  4479. "__type__": "cc.Vec3",
  4480. "x": 0,
  4481. "y": 0,
  4482. "z": 0
  4483. },
  4484. "_id": "7dxEkqMJlMLLF2rh8KLZx5"
  4485. },
  4486. {
  4487. "__type__": "cc.Node",
  4488. "_name": "xuanzhong",
  4489. "_objFlags": 0,
  4490. "_parent": {
  4491. "__id__": 120
  4492. },
  4493. "_children": [],
  4494. "_active": true,
  4495. "_components": [
  4496. {
  4497. "__id__": 122
  4498. },
  4499. {
  4500. "__id__": 123
  4501. },
  4502. {
  4503. "__id__": 124
  4504. }
  4505. ],
  4506. "_prefab": null,
  4507. "_lpos": {
  4508. "__type__": "cc.Vec3",
  4509. "x": 0,
  4510. "y": 0,
  4511. "z": -1.8932661725304283e-29
  4512. },
  4513. "_lrot": {
  4514. "__type__": "cc.Quat",
  4515. "x": 0,
  4516. "y": 0,
  4517. "z": 0,
  4518. "w": 1
  4519. },
  4520. "_lscale": {
  4521. "__type__": "cc.Vec3",
  4522. "x": 1,
  4523. "y": 1,
  4524. "z": 1
  4525. },
  4526. "_mobility": 0,
  4527. "_layer": 33554432,
  4528. "_euler": {
  4529. "__type__": "cc.Vec3",
  4530. "x": 0,
  4531. "y": 0,
  4532. "z": 0
  4533. },
  4534. "_id": "2aaUy35ERFgaWt7NkjHltJ"
  4535. },
  4536. {
  4537. "__type__": "cc.UITransform",
  4538. "_name": "",
  4539. "_objFlags": 0,
  4540. "node": {
  4541. "__id__": 121
  4542. },
  4543. "_enabled": true,
  4544. "__prefab": null,
  4545. "_contentSize": {
  4546. "__type__": "cc.Size",
  4547. "width": 400.884,
  4548. "height": 176
  4549. },
  4550. "_anchorPoint": {
  4551. "__type__": "cc.Vec2",
  4552. "x": 0.5,
  4553. "y": 0.5
  4554. },
  4555. "_id": "60faQa46hLVotif9me97K4"
  4556. },
  4557. {
  4558. "__type__": "cc.Sprite",
  4559. "_name": "",
  4560. "_objFlags": 0,
  4561. "node": {
  4562. "__id__": 121
  4563. },
  4564. "_enabled": true,
  4565. "__prefab": null,
  4566. "_customMaterial": null,
  4567. "_srcBlendFactor": 2,
  4568. "_dstBlendFactor": 4,
  4569. "_color": {
  4570. "__type__": "cc.Color",
  4571. "r": 255,
  4572. "g": 255,
  4573. "b": 255,
  4574. "a": 255
  4575. },
  4576. "_spriteFrame": {
  4577. "__uuid__": "c3df3c19-580b-4d0b-960c-3d4456e69d8f@f9941",
  4578. "__expectedType__": "cc.SpriteFrame"
  4579. },
  4580. "_type": 1,
  4581. "_fillType": 0,
  4582. "_sizeMode": 0,
  4583. "_fillCenter": {
  4584. "__type__": "cc.Vec2",
  4585. "x": 0,
  4586. "y": 0
  4587. },
  4588. "_fillStart": 0,
  4589. "_fillRange": 0,
  4590. "_isTrimmedMode": true,
  4591. "_useGrayscale": false,
  4592. "_atlas": null,
  4593. "_id": "f3HEgyF/NHMY3Vo2II7W2B"
  4594. },
  4595. {
  4596. "__type__": "cc.Widget",
  4597. "_name": "",
  4598. "_objFlags": 0,
  4599. "node": {
  4600. "__id__": 121
  4601. },
  4602. "_enabled": true,
  4603. "__prefab": null,
  4604. "_alignFlags": 45,
  4605. "_target": null,
  4606. "_left": 0,
  4607. "_right": 0,
  4608. "_top": 0,
  4609. "_bottom": 0,
  4610. "_horizontalCenter": 0,
  4611. "_verticalCenter": 0,
  4612. "_isAbsLeft": true,
  4613. "_isAbsRight": true,
  4614. "_isAbsTop": true,
  4615. "_isAbsBottom": true,
  4616. "_isAbsHorizontalCenter": true,
  4617. "_isAbsVerticalCenter": true,
  4618. "_originalWidth": 400.884,
  4619. "_originalHeight": 176,
  4620. "_alignMode": 2,
  4621. "_lockFlags": 0,
  4622. "_id": "c0W2+u+k1JLIzJzLCZqav2"
  4623. },
  4624. {
  4625. "__type__": "cc.Node",
  4626. "_name": "article",
  4627. "_objFlags": 0,
  4628. "_parent": {
  4629. "__id__": 120
  4630. },
  4631. "_children": [],
  4632. "_active": true,
  4633. "_components": [
  4634. {
  4635. "__id__": 126
  4636. },
  4637. {
  4638. "__id__": 127
  4639. }
  4640. ],
  4641. "_prefab": null,
  4642. "_lpos": {
  4643. "__type__": "cc.Vec3",
  4644. "x": 110,
  4645. "y": 0,
  4646. "z": 0
  4647. },
  4648. "_lrot": {
  4649. "__type__": "cc.Quat",
  4650. "x": 0,
  4651. "y": 0,
  4652. "z": 0,
  4653. "w": 1
  4654. },
  4655. "_lscale": {
  4656. "__type__": "cc.Vec3",
  4657. "x": 1,
  4658. "y": 1,
  4659. "z": 1
  4660. },
  4661. "_mobility": 0,
  4662. "_layer": 33554432,
  4663. "_euler": {
  4664. "__type__": "cc.Vec3",
  4665. "x": 0,
  4666. "y": 0,
  4667. "z": 0
  4668. },
  4669. "_id": "d3IsoGgg1Bopef4lD+yVsj"
  4670. },
  4671. {
  4672. "__type__": "cc.UITransform",
  4673. "_name": "",
  4674. "_objFlags": 0,
  4675. "node": {
  4676. "__id__": 125
  4677. },
  4678. "_enabled": true,
  4679. "__prefab": null,
  4680. "_contentSize": {
  4681. "__type__": "cc.Size",
  4682. "width": 79,
  4683. "height": 105
  4684. },
  4685. "_anchorPoint": {
  4686. "__type__": "cc.Vec2",
  4687. "x": 0.5,
  4688. "y": 0.5
  4689. },
  4690. "_id": "52g5432QlBdYrIF2u7Xps/"
  4691. },
  4692. {
  4693. "__type__": "cc.Sprite",
  4694. "_name": "",
  4695. "_objFlags": 0,
  4696. "node": {
  4697. "__id__": 125
  4698. },
  4699. "_enabled": true,
  4700. "__prefab": null,
  4701. "_customMaterial": null,
  4702. "_srcBlendFactor": 2,
  4703. "_dstBlendFactor": 4,
  4704. "_color": {
  4705. "__type__": "cc.Color",
  4706. "r": 255,
  4707. "g": 255,
  4708. "b": 255,
  4709. "a": 255
  4710. },
  4711. "_spriteFrame": {
  4712. "__uuid__": "3b816fa8-2f67-4999-8ce0-5a5869d365db@f9941",
  4713. "__expectedType__": "cc.SpriteFrame"
  4714. },
  4715. "_type": 0,
  4716. "_fillType": 0,
  4717. "_sizeMode": 1,
  4718. "_fillCenter": {
  4719. "__type__": "cc.Vec2",
  4720. "x": 0,
  4721. "y": 0
  4722. },
  4723. "_fillStart": 0,
  4724. "_fillRange": 0,
  4725. "_isTrimmedMode": true,
  4726. "_useGrayscale": false,
  4727. "_atlas": null,
  4728. "_id": "cffp22RslOjIDtHc6VbBY8"
  4729. },
  4730. {
  4731. "__type__": "cc.Node",
  4732. "_name": "num",
  4733. "_objFlags": 0,
  4734. "_parent": {
  4735. "__id__": 120
  4736. },
  4737. "_children": [],
  4738. "_active": true,
  4739. "_components": [
  4740. {
  4741. "__id__": 129
  4742. },
  4743. {
  4744. "__id__": 130
  4745. },
  4746. {
  4747. "__id__": 131
  4748. }
  4749. ],
  4750. "_prefab": null,
  4751. "_lpos": {
  4752. "__type__": "cc.Vec3",
  4753. "x": -72,
  4754. "y": 0,
  4755. "z": 0
  4756. },
  4757. "_lrot": {
  4758. "__type__": "cc.Quat",
  4759. "x": 0,
  4760. "y": 0,
  4761. "z": 0,
  4762. "w": 1
  4763. },
  4764. "_lscale": {
  4765. "__type__": "cc.Vec3",
  4766. "x": -1,
  4767. "y": 1,
  4768. "z": 1
  4769. },
  4770. "_mobility": 0,
  4771. "_layer": 33554432,
  4772. "_euler": {
  4773. "__type__": "cc.Vec3",
  4774. "x": 0,
  4775. "y": 0,
  4776. "z": 0
  4777. },
  4778. "_id": "f1G5ob/tdKBqgQu4xgwcIV"
  4779. },
  4780. {
  4781. "__type__": "cc.UITransform",
  4782. "_name": "",
  4783. "_objFlags": 0,
  4784. "node": {
  4785. "__id__": 128
  4786. },
  4787. "_enabled": true,
  4788. "__prefab": null,
  4789. "_contentSize": {
  4790. "__type__": "cc.Size",
  4791. "width": 240,
  4792. "height": 120
  4793. },
  4794. "_anchorPoint": {
  4795. "__type__": "cc.Vec2",
  4796. "x": 0.5,
  4797. "y": 0.5
  4798. },
  4799. "_id": "1245IwjSZKKq5NPQJ8hV2s"
  4800. },
  4801. {
  4802. "__type__": "cc.Label",
  4803. "_name": "",
  4804. "_objFlags": 0,
  4805. "node": {
  4806. "__id__": 128
  4807. },
  4808. "_enabled": true,
  4809. "__prefab": null,
  4810. "_customMaterial": null,
  4811. "_srcBlendFactor": 2,
  4812. "_dstBlendFactor": 4,
  4813. "_color": {
  4814. "__type__": "cc.Color",
  4815. "r": 255,
  4816. "g": 0,
  4817. "b": 0,
  4818. "a": 255
  4819. },
  4820. "_string": "?",
  4821. "_horizontalAlign": 1,
  4822. "_verticalAlign": 1,
  4823. "_actualFontSize": 120,
  4824. "_fontSize": 120,
  4825. "_fontFamily": "Arial",
  4826. "_lineHeight": 120,
  4827. "_overflow": 2,
  4828. "_enableWrapText": false,
  4829. "_font": null,
  4830. "_isSystemFontUsed": true,
  4831. "_spacingX": 0,
  4832. "_isItalic": false,
  4833. "_isBold": false,
  4834. "_isUnderline": false,
  4835. "_underlineHeight": 2,
  4836. "_cacheMode": 0,
  4837. "_id": "2brIU3H9JMn4LnnuPeYe09"
  4838. },
  4839. {
  4840. "__type__": "cc.LabelOutline",
  4841. "_name": "",
  4842. "_objFlags": 0,
  4843. "node": {
  4844. "__id__": 128
  4845. },
  4846. "_enabled": true,
  4847. "__prefab": null,
  4848. "_color": {
  4849. "__type__": "cc.Color",
  4850. "r": 255,
  4851. "g": 255,
  4852. "b": 255,
  4853. "a": 255
  4854. },
  4855. "_width": 2,
  4856. "_id": "43Pl+UfJpH36dCOdNV39W1"
  4857. },
  4858. {
  4859. "__type__": "cc.Node",
  4860. "_name": "cha",
  4861. "_objFlags": 0,
  4862. "_parent": {
  4863. "__id__": 120
  4864. },
  4865. "_children": [],
  4866. "_active": true,
  4867. "_components": [
  4868. {
  4869. "__id__": 133
  4870. },
  4871. {
  4872. "__id__": 134
  4873. }
  4874. ],
  4875. "_prefab": null,
  4876. "_lpos": {
  4877. "__type__": "cc.Vec3",
  4878. "x": -70,
  4879. "y": 0,
  4880. "z": 0
  4881. },
  4882. "_lrot": {
  4883. "__type__": "cc.Quat",
  4884. "x": 0,
  4885. "y": 0,
  4886. "z": 0,
  4887. "w": 1
  4888. },
  4889. "_lscale": {
  4890. "__type__": "cc.Vec3",
  4891. "x": 0.5,
  4892. "y": 0.5,
  4893. "z": 1
  4894. },
  4895. "_mobility": 0,
  4896. "_layer": 33554432,
  4897. "_euler": {
  4898. "__type__": "cc.Vec3",
  4899. "x": 0,
  4900. "y": 0,
  4901. "z": 0
  4902. },
  4903. "_id": "0cIdYzXaxMdqZgaOVurVBV"
  4904. },
  4905. {
  4906. "__type__": "cc.UITransform",
  4907. "_name": "",
  4908. "_objFlags": 0,
  4909. "node": {
  4910. "__id__": 132
  4911. },
  4912. "_enabled": true,
  4913. "__prefab": null,
  4914. "_contentSize": {
  4915. "__type__": "cc.Size",
  4916. "width": 243,
  4917. "height": 258
  4918. },
  4919. "_anchorPoint": {
  4920. "__type__": "cc.Vec2",
  4921. "x": 0.5,
  4922. "y": 0.5
  4923. },
  4924. "_id": "10nIYvuCRH8anQGPMlNhGv"
  4925. },
  4926. {
  4927. "__type__": "cc.Sprite",
  4928. "_name": "",
  4929. "_objFlags": 0,
  4930. "node": {
  4931. "__id__": 132
  4932. },
  4933. "_enabled": true,
  4934. "__prefab": null,
  4935. "_customMaterial": null,
  4936. "_srcBlendFactor": 2,
  4937. "_dstBlendFactor": 4,
  4938. "_color": {
  4939. "__type__": "cc.Color",
  4940. "r": 255,
  4941. "g": 255,
  4942. "b": 255,
  4943. "a": 255
  4944. },
  4945. "_spriteFrame": {
  4946. "__uuid__": "dabe0b8f-5c8b-4b17-a593-b64cf2fdd267@f9941",
  4947. "__expectedType__": "cc.SpriteFrame"
  4948. },
  4949. "_type": 0,
  4950. "_fillType": 0,
  4951. "_sizeMode": 1,
  4952. "_fillCenter": {
  4953. "__type__": "cc.Vec2",
  4954. "x": 0,
  4955. "y": 0
  4956. },
  4957. "_fillStart": 0,
  4958. "_fillRange": 0,
  4959. "_isTrimmedMode": true,
  4960. "_useGrayscale": false,
  4961. "_atlas": null,
  4962. "_id": "028AVNlnhLpIQtEMo46ety"
  4963. },
  4964. {
  4965. "__type__": "cc.UITransform",
  4966. "_name": "",
  4967. "_objFlags": 0,
  4968. "node": {
  4969. "__id__": 120
  4970. },
  4971. "_enabled": true,
  4972. "__prefab": null,
  4973. "_contentSize": {
  4974. "__type__": "cc.Size",
  4975. "width": 400.884,
  4976. "height": 176
  4977. },
  4978. "_anchorPoint": {
  4979. "__type__": "cc.Vec2",
  4980. "x": 0.5,
  4981. "y": 0.5
  4982. },
  4983. "_id": "f8605/enxEHqQ3WwzCUXv7"
  4984. },
  4985. {
  4986. "__type__": "cc.Sprite",
  4987. "_name": "",
  4988. "_objFlags": 0,
  4989. "node": {
  4990. "__id__": 120
  4991. },
  4992. "_enabled": true,
  4993. "__prefab": null,
  4994. "_customMaterial": null,
  4995. "_srcBlendFactor": 2,
  4996. "_dstBlendFactor": 4,
  4997. "_color": {
  4998. "__type__": "cc.Color",
  4999. "r": 255,
  5000. "g": 255,
  5001. "b": 255,
  5002. "a": 255
  5003. },
  5004. "_spriteFrame": {
  5005. "__uuid__": "ee955275-5a34-4060-8a20-898119e99035@f9941",
  5006. "__expectedType__": "cc.SpriteFrame"
  5007. },
  5008. "_type": 1,
  5009. "_fillType": 0,
  5010. "_sizeMode": 0,
  5011. "_fillCenter": {
  5012. "__type__": "cc.Vec2",
  5013. "x": 0,
  5014. "y": 0
  5015. },
  5016. "_fillStart": 0,
  5017. "_fillRange": 0,
  5018. "_isTrimmedMode": true,
  5019. "_useGrayscale": false,
  5020. "_atlas": null,
  5021. "_id": "62VA2va+FB/ZLS7r4psdpw"
  5022. },
  5023. {
  5024. "__type__": "cc.Node",
  5025. "_name": "article_5",
  5026. "_objFlags": 0,
  5027. "_parent": {
  5028. "__id__": 17
  5029. },
  5030. "_children": [
  5031. {
  5032. "__id__": 138
  5033. },
  5034. {
  5035. "__id__": 142
  5036. },
  5037. {
  5038. "__id__": 145
  5039. },
  5040. {
  5041. "__id__": 149
  5042. }
  5043. ],
  5044. "_active": true,
  5045. "_components": [
  5046. {
  5047. "__id__": 152
  5048. },
  5049. {
  5050. "__id__": 153
  5051. }
  5052. ],
  5053. "_prefab": null,
  5054. "_lpos": {
  5055. "__type__": "cc.Vec3",
  5056. "x": -757.5909999999999,
  5057. "y": -310,
  5058. "z": 0
  5059. },
  5060. "_lrot": {
  5061. "__type__": "cc.Quat",
  5062. "x": 0,
  5063. "y": 0,
  5064. "z": 0,
  5065. "w": 1
  5066. },
  5067. "_lscale": {
  5068. "__type__": "cc.Vec3",
  5069. "x": 1,
  5070. "y": 1,
  5071. "z": 1
  5072. },
  5073. "_mobility": 0,
  5074. "_layer": 33554432,
  5075. "_euler": {
  5076. "__type__": "cc.Vec3",
  5077. "x": 0,
  5078. "y": 0,
  5079. "z": 0
  5080. },
  5081. "_id": "aenycgEKRPqYDS6scrDPZn"
  5082. },
  5083. {
  5084. "__type__": "cc.Node",
  5085. "_name": "xuanzhong",
  5086. "_objFlags": 0,
  5087. "_parent": {
  5088. "__id__": 137
  5089. },
  5090. "_children": [],
  5091. "_active": true,
  5092. "_components": [
  5093. {
  5094. "__id__": 139
  5095. },
  5096. {
  5097. "__id__": 140
  5098. },
  5099. {
  5100. "__id__": 141
  5101. }
  5102. ],
  5103. "_prefab": null,
  5104. "_lpos": {
  5105. "__type__": "cc.Vec3",
  5106. "x": 0,
  5107. "y": 0,
  5108. "z": -1.8932661725304283e-29
  5109. },
  5110. "_lrot": {
  5111. "__type__": "cc.Quat",
  5112. "x": 0,
  5113. "y": 0,
  5114. "z": 0,
  5115. "w": 1
  5116. },
  5117. "_lscale": {
  5118. "__type__": "cc.Vec3",
  5119. "x": 1,
  5120. "y": 1,
  5121. "z": 1
  5122. },
  5123. "_mobility": 0,
  5124. "_layer": 33554432,
  5125. "_euler": {
  5126. "__type__": "cc.Vec3",
  5127. "x": 0,
  5128. "y": 0,
  5129. "z": 0
  5130. },
  5131. "_id": "52H4z6Z29J9bhkbKvS84/6"
  5132. },
  5133. {
  5134. "__type__": "cc.UITransform",
  5135. "_name": "",
  5136. "_objFlags": 0,
  5137. "node": {
  5138. "__id__": 138
  5139. },
  5140. "_enabled": true,
  5141. "__prefab": null,
  5142. "_contentSize": {
  5143. "__type__": "cc.Size",
  5144. "width": 400.884,
  5145. "height": 176
  5146. },
  5147. "_anchorPoint": {
  5148. "__type__": "cc.Vec2",
  5149. "x": 0.5,
  5150. "y": 0.5
  5151. },
  5152. "_id": "e9IDT16K9MSI/pn6sawkot"
  5153. },
  5154. {
  5155. "__type__": "cc.Sprite",
  5156. "_name": "",
  5157. "_objFlags": 0,
  5158. "node": {
  5159. "__id__": 138
  5160. },
  5161. "_enabled": true,
  5162. "__prefab": null,
  5163. "_customMaterial": null,
  5164. "_srcBlendFactor": 2,
  5165. "_dstBlendFactor": 4,
  5166. "_color": {
  5167. "__type__": "cc.Color",
  5168. "r": 255,
  5169. "g": 255,
  5170. "b": 255,
  5171. "a": 255
  5172. },
  5173. "_spriteFrame": {
  5174. "__uuid__": "c3df3c19-580b-4d0b-960c-3d4456e69d8f@f9941",
  5175. "__expectedType__": "cc.SpriteFrame"
  5176. },
  5177. "_type": 1,
  5178. "_fillType": 0,
  5179. "_sizeMode": 0,
  5180. "_fillCenter": {
  5181. "__type__": "cc.Vec2",
  5182. "x": 0,
  5183. "y": 0
  5184. },
  5185. "_fillStart": 0,
  5186. "_fillRange": 0,
  5187. "_isTrimmedMode": true,
  5188. "_useGrayscale": false,
  5189. "_atlas": null,
  5190. "_id": "8dfjAKOlhJrKT+YYKS29wv"
  5191. },
  5192. {
  5193. "__type__": "cc.Widget",
  5194. "_name": "",
  5195. "_objFlags": 0,
  5196. "node": {
  5197. "__id__": 138
  5198. },
  5199. "_enabled": true,
  5200. "__prefab": null,
  5201. "_alignFlags": 45,
  5202. "_target": null,
  5203. "_left": 0,
  5204. "_right": 0,
  5205. "_top": 0,
  5206. "_bottom": 0,
  5207. "_horizontalCenter": 0,
  5208. "_verticalCenter": 0,
  5209. "_isAbsLeft": true,
  5210. "_isAbsRight": true,
  5211. "_isAbsTop": true,
  5212. "_isAbsBottom": true,
  5213. "_isAbsHorizontalCenter": true,
  5214. "_isAbsVerticalCenter": true,
  5215. "_originalWidth": 400.884,
  5216. "_originalHeight": 176,
  5217. "_alignMode": 2,
  5218. "_lockFlags": 0,
  5219. "_id": "0dGOs1uIBKf50CL+GQ1ojy"
  5220. },
  5221. {
  5222. "__type__": "cc.Node",
  5223. "_name": "article",
  5224. "_objFlags": 0,
  5225. "_parent": {
  5226. "__id__": 137
  5227. },
  5228. "_children": [],
  5229. "_active": true,
  5230. "_components": [
  5231. {
  5232. "__id__": 143
  5233. },
  5234. {
  5235. "__id__": 144
  5236. }
  5237. ],
  5238. "_prefab": null,
  5239. "_lpos": {
  5240. "__type__": "cc.Vec3",
  5241. "x": 110,
  5242. "y": 0,
  5243. "z": 0
  5244. },
  5245. "_lrot": {
  5246. "__type__": "cc.Quat",
  5247. "x": 0,
  5248. "y": 0,
  5249. "z": 0,
  5250. "w": 1
  5251. },
  5252. "_lscale": {
  5253. "__type__": "cc.Vec3",
  5254. "x": 1,
  5255. "y": 1,
  5256. "z": 1
  5257. },
  5258. "_mobility": 0,
  5259. "_layer": 33554432,
  5260. "_euler": {
  5261. "__type__": "cc.Vec3",
  5262. "x": 0,
  5263. "y": 0,
  5264. "z": 0
  5265. },
  5266. "_id": "b4CWBaqW9DG4DshRsudA1+"
  5267. },
  5268. {
  5269. "__type__": "cc.UITransform",
  5270. "_name": "",
  5271. "_objFlags": 0,
  5272. "node": {
  5273. "__id__": 142
  5274. },
  5275. "_enabled": true,
  5276. "__prefab": null,
  5277. "_contentSize": {
  5278. "__type__": "cc.Size",
  5279. "width": 130,
  5280. "height": 75
  5281. },
  5282. "_anchorPoint": {
  5283. "__type__": "cc.Vec2",
  5284. "x": 0.5,
  5285. "y": 0.5
  5286. },
  5287. "_id": "08LOa/oedKrKrCpscb3IUD"
  5288. },
  5289. {
  5290. "__type__": "cc.Sprite",
  5291. "_name": "",
  5292. "_objFlags": 0,
  5293. "node": {
  5294. "__id__": 142
  5295. },
  5296. "_enabled": true,
  5297. "__prefab": null,
  5298. "_customMaterial": null,
  5299. "_srcBlendFactor": 2,
  5300. "_dstBlendFactor": 4,
  5301. "_color": {
  5302. "__type__": "cc.Color",
  5303. "r": 255,
  5304. "g": 255,
  5305. "b": 255,
  5306. "a": 255
  5307. },
  5308. "_spriteFrame": {
  5309. "__uuid__": "60b07b1e-f83b-4801-be4a-1daacbaf4d60@f9941",
  5310. "__expectedType__": "cc.SpriteFrame"
  5311. },
  5312. "_type": 0,
  5313. "_fillType": 0,
  5314. "_sizeMode": 1,
  5315. "_fillCenter": {
  5316. "__type__": "cc.Vec2",
  5317. "x": 0,
  5318. "y": 0
  5319. },
  5320. "_fillStart": 0,
  5321. "_fillRange": 0,
  5322. "_isTrimmedMode": true,
  5323. "_useGrayscale": false,
  5324. "_atlas": null,
  5325. "_id": "9bdbcHCPdBiox1yFtHUJMf"
  5326. },
  5327. {
  5328. "__type__": "cc.Node",
  5329. "_name": "num",
  5330. "_objFlags": 0,
  5331. "_parent": {
  5332. "__id__": 137
  5333. },
  5334. "_children": [],
  5335. "_active": true,
  5336. "_components": [
  5337. {
  5338. "__id__": 146
  5339. },
  5340. {
  5341. "__id__": 147
  5342. },
  5343. {
  5344. "__id__": 148
  5345. }
  5346. ],
  5347. "_prefab": null,
  5348. "_lpos": {
  5349. "__type__": "cc.Vec3",
  5350. "x": -72,
  5351. "y": 0,
  5352. "z": 0
  5353. },
  5354. "_lrot": {
  5355. "__type__": "cc.Quat",
  5356. "x": 0,
  5357. "y": 0,
  5358. "z": 0,
  5359. "w": 1
  5360. },
  5361. "_lscale": {
  5362. "__type__": "cc.Vec3",
  5363. "x": -1,
  5364. "y": 1,
  5365. "z": 1
  5366. },
  5367. "_mobility": 0,
  5368. "_layer": 33554432,
  5369. "_euler": {
  5370. "__type__": "cc.Vec3",
  5371. "x": 0,
  5372. "y": 0,
  5373. "z": 0
  5374. },
  5375. "_id": "0bBeLToUVOP7gvh1sgKwUu"
  5376. },
  5377. {
  5378. "__type__": "cc.UITransform",
  5379. "_name": "",
  5380. "_objFlags": 0,
  5381. "node": {
  5382. "__id__": 145
  5383. },
  5384. "_enabled": true,
  5385. "__prefab": null,
  5386. "_contentSize": {
  5387. "__type__": "cc.Size",
  5388. "width": 240,
  5389. "height": 120
  5390. },
  5391. "_anchorPoint": {
  5392. "__type__": "cc.Vec2",
  5393. "x": 0.5,
  5394. "y": 0.5
  5395. },
  5396. "_id": "a418T30E1KdrEeNZqJw4zI"
  5397. },
  5398. {
  5399. "__type__": "cc.Label",
  5400. "_name": "",
  5401. "_objFlags": 0,
  5402. "node": {
  5403. "__id__": 145
  5404. },
  5405. "_enabled": true,
  5406. "__prefab": null,
  5407. "_customMaterial": null,
  5408. "_srcBlendFactor": 2,
  5409. "_dstBlendFactor": 4,
  5410. "_color": {
  5411. "__type__": "cc.Color",
  5412. "r": 255,
  5413. "g": 0,
  5414. "b": 0,
  5415. "a": 255
  5416. },
  5417. "_string": "?",
  5418. "_horizontalAlign": 1,
  5419. "_verticalAlign": 1,
  5420. "_actualFontSize": 120,
  5421. "_fontSize": 120,
  5422. "_fontFamily": "Arial",
  5423. "_lineHeight": 120,
  5424. "_overflow": 2,
  5425. "_enableWrapText": false,
  5426. "_font": null,
  5427. "_isSystemFontUsed": true,
  5428. "_spacingX": 0,
  5429. "_isItalic": false,
  5430. "_isBold": false,
  5431. "_isUnderline": false,
  5432. "_underlineHeight": 2,
  5433. "_cacheMode": 0,
  5434. "_id": "f5fIFQFyZDsq9VU3Ds13YL"
  5435. },
  5436. {
  5437. "__type__": "cc.LabelOutline",
  5438. "_name": "",
  5439. "_objFlags": 0,
  5440. "node": {
  5441. "__id__": 145
  5442. },
  5443. "_enabled": true,
  5444. "__prefab": null,
  5445. "_color": {
  5446. "__type__": "cc.Color",
  5447. "r": 255,
  5448. "g": 255,
  5449. "b": 255,
  5450. "a": 255
  5451. },
  5452. "_width": 2,
  5453. "_id": "4f37q1UWBMAY4gmzQfGj0g"
  5454. },
  5455. {
  5456. "__type__": "cc.Node",
  5457. "_name": "cha",
  5458. "_objFlags": 0,
  5459. "_parent": {
  5460. "__id__": 137
  5461. },
  5462. "_children": [],
  5463. "_active": true,
  5464. "_components": [
  5465. {
  5466. "__id__": 150
  5467. },
  5468. {
  5469. "__id__": 151
  5470. }
  5471. ],
  5472. "_prefab": null,
  5473. "_lpos": {
  5474. "__type__": "cc.Vec3",
  5475. "x": -70,
  5476. "y": 0,
  5477. "z": 0
  5478. },
  5479. "_lrot": {
  5480. "__type__": "cc.Quat",
  5481. "x": 0,
  5482. "y": 0,
  5483. "z": 0,
  5484. "w": 1
  5485. },
  5486. "_lscale": {
  5487. "__type__": "cc.Vec3",
  5488. "x": 0.5,
  5489. "y": 0.5,
  5490. "z": 1
  5491. },
  5492. "_mobility": 0,
  5493. "_layer": 33554432,
  5494. "_euler": {
  5495. "__type__": "cc.Vec3",
  5496. "x": 0,
  5497. "y": 0,
  5498. "z": 0
  5499. },
  5500. "_id": "82OafRfrVHeJfBiQvKAf9m"
  5501. },
  5502. {
  5503. "__type__": "cc.UITransform",
  5504. "_name": "",
  5505. "_objFlags": 0,
  5506. "node": {
  5507. "__id__": 149
  5508. },
  5509. "_enabled": true,
  5510. "__prefab": null,
  5511. "_contentSize": {
  5512. "__type__": "cc.Size",
  5513. "width": 243,
  5514. "height": 258
  5515. },
  5516. "_anchorPoint": {
  5517. "__type__": "cc.Vec2",
  5518. "x": 0.5,
  5519. "y": 0.5
  5520. },
  5521. "_id": "82IIxTHtJINKDKLdQyj4HD"
  5522. },
  5523. {
  5524. "__type__": "cc.Sprite",
  5525. "_name": "",
  5526. "_objFlags": 0,
  5527. "node": {
  5528. "__id__": 149
  5529. },
  5530. "_enabled": true,
  5531. "__prefab": null,
  5532. "_customMaterial": null,
  5533. "_srcBlendFactor": 2,
  5534. "_dstBlendFactor": 4,
  5535. "_color": {
  5536. "__type__": "cc.Color",
  5537. "r": 255,
  5538. "g": 255,
  5539. "b": 255,
  5540. "a": 255
  5541. },
  5542. "_spriteFrame": {
  5543. "__uuid__": "dabe0b8f-5c8b-4b17-a593-b64cf2fdd267@f9941",
  5544. "__expectedType__": "cc.SpriteFrame"
  5545. },
  5546. "_type": 0,
  5547. "_fillType": 0,
  5548. "_sizeMode": 1,
  5549. "_fillCenter": {
  5550. "__type__": "cc.Vec2",
  5551. "x": 0,
  5552. "y": 0
  5553. },
  5554. "_fillStart": 0,
  5555. "_fillRange": 0,
  5556. "_isTrimmedMode": true,
  5557. "_useGrayscale": false,
  5558. "_atlas": null,
  5559. "_id": "62qMDiqBpJlZ5grLdaiKyn"
  5560. },
  5561. {
  5562. "__type__": "cc.UITransform",
  5563. "_name": "",
  5564. "_objFlags": 0,
  5565. "node": {
  5566. "__id__": 137
  5567. },
  5568. "_enabled": true,
  5569. "__prefab": null,
  5570. "_contentSize": {
  5571. "__type__": "cc.Size",
  5572. "width": 400.884,
  5573. "height": 176
  5574. },
  5575. "_anchorPoint": {
  5576. "__type__": "cc.Vec2",
  5577. "x": 0.5,
  5578. "y": 0.5
  5579. },
  5580. "_id": "0bxh+/hYFJPqEEaXgcRkOf"
  5581. },
  5582. {
  5583. "__type__": "cc.Sprite",
  5584. "_name": "",
  5585. "_objFlags": 0,
  5586. "node": {
  5587. "__id__": 137
  5588. },
  5589. "_enabled": true,
  5590. "__prefab": null,
  5591. "_customMaterial": null,
  5592. "_srcBlendFactor": 2,
  5593. "_dstBlendFactor": 4,
  5594. "_color": {
  5595. "__type__": "cc.Color",
  5596. "r": 255,
  5597. "g": 255,
  5598. "b": 255,
  5599. "a": 255
  5600. },
  5601. "_spriteFrame": {
  5602. "__uuid__": "ee955275-5a34-4060-8a20-898119e99035@f9941",
  5603. "__expectedType__": "cc.SpriteFrame"
  5604. },
  5605. "_type": 1,
  5606. "_fillType": 0,
  5607. "_sizeMode": 0,
  5608. "_fillCenter": {
  5609. "__type__": "cc.Vec2",
  5610. "x": 0,
  5611. "y": 0
  5612. },
  5613. "_fillStart": 0,
  5614. "_fillRange": 0,
  5615. "_isTrimmedMode": true,
  5616. "_useGrayscale": false,
  5617. "_atlas": null,
  5618. "_id": "b3xHZnvkBL/44dAcBa17y6"
  5619. },
  5620. {
  5621. "__type__": "cc.Node",
  5622. "_name": "top",
  5623. "_objFlags": 0,
  5624. "_parent": {
  5625. "__id__": 17
  5626. },
  5627. "_children": [],
  5628. "_active": true,
  5629. "_components": [
  5630. {
  5631. "__id__": 155
  5632. },
  5633. {
  5634. "__id__": 156
  5635. },
  5636. {
  5637. "__id__": 157
  5638. }
  5639. ],
  5640. "_prefab": null,
  5641. "_lpos": {
  5642. "__type__": "cc.Vec3",
  5643. "x": 220,
  5644. "y": 490,
  5645. "z": 0
  5646. },
  5647. "_lrot": {
  5648. "__type__": "cc.Quat",
  5649. "x": 0,
  5650. "y": 0,
  5651. "z": 0,
  5652. "w": 1
  5653. },
  5654. "_lscale": {
  5655. "__type__": "cc.Vec3",
  5656. "x": 1,
  5657. "y": 1,
  5658. "z": 1
  5659. },
  5660. "_mobility": 0,
  5661. "_layer": 33554432,
  5662. "_euler": {
  5663. "__type__": "cc.Vec3",
  5664. "x": 0,
  5665. "y": 0,
  5666. "z": 0
  5667. },
  5668. "_id": "4dRfdFtPlLWbHZVwUfSFny"
  5669. },
  5670. {
  5671. "__type__": "cc.UITransform",
  5672. "_name": "",
  5673. "_objFlags": 0,
  5674. "node": {
  5675. "__id__": 154
  5676. },
  5677. "_enabled": true,
  5678. "__prefab": null,
  5679. "_contentSize": {
  5680. "__type__": "cc.Size",
  5681. "width": 1440,
  5682. "height": 10
  5683. },
  5684. "_anchorPoint": {
  5685. "__type__": "cc.Vec2",
  5686. "x": 0.5,
  5687. "y": 0.5
  5688. },
  5689. "_id": "5fz26zbktBC7ITtLIPd+0e"
  5690. },
  5691. {
  5692. "__type__": "cc.RigidBody2D",
  5693. "_name": "",
  5694. "_objFlags": 0,
  5695. "node": {
  5696. "__id__": 154
  5697. },
  5698. "_enabled": true,
  5699. "__prefab": null,
  5700. "enabledContactListener": false,
  5701. "bullet": false,
  5702. "awakeOnLoad": true,
  5703. "_group": 1,
  5704. "_type": 2,
  5705. "_allowSleep": true,
  5706. "_gravityScale": 0,
  5707. "_linearDamping": 0,
  5708. "_angularDamping": 0,
  5709. "_linearVelocity": {
  5710. "__type__": "cc.Vec2",
  5711. "x": 0,
  5712. "y": 0
  5713. },
  5714. "_angularVelocity": 0,
  5715. "_fixedRotation": false,
  5716. "_id": "2akxoqEKtH6pAQi4n0KsSm"
  5717. },
  5718. {
  5719. "__type__": "cc.BoxCollider2D",
  5720. "_name": "",
  5721. "_objFlags": 0,
  5722. "node": {
  5723. "__id__": 154
  5724. },
  5725. "_enabled": true,
  5726. "__prefab": null,
  5727. "tag": 0,
  5728. "_group": 1,
  5729. "_density": 1,
  5730. "_sensor": false,
  5731. "_friction": 0.2,
  5732. "_restitution": 0,
  5733. "_offset": {
  5734. "__type__": "cc.Vec2",
  5735. "x": 0,
  5736. "y": 0
  5737. },
  5738. "_size": {
  5739. "__type__": "cc.Size",
  5740. "width": 1440,
  5741. "height": 10
  5742. },
  5743. "_id": "432S3ULD9MMLrm7+yNgqgz"
  5744. },
  5745. {
  5746. "__type__": "cc.Node",
  5747. "_name": "bottom",
  5748. "_objFlags": 0,
  5749. "_parent": {
  5750. "__id__": 17
  5751. },
  5752. "_children": [],
  5753. "_active": true,
  5754. "_components": [
  5755. {
  5756. "__id__": 159
  5757. },
  5758. {
  5759. "__id__": 160
  5760. },
  5761. {
  5762. "__id__": 161
  5763. }
  5764. ],
  5765. "_prefab": null,
  5766. "_lpos": {
  5767. "__type__": "cc.Vec3",
  5768. "x": 220,
  5769. "y": -360,
  5770. "z": 0
  5771. },
  5772. "_lrot": {
  5773. "__type__": "cc.Quat",
  5774. "x": 0,
  5775. "y": 0,
  5776. "z": 0,
  5777. "w": 1
  5778. },
  5779. "_lscale": {
  5780. "__type__": "cc.Vec3",
  5781. "x": 1,
  5782. "y": 1,
  5783. "z": 1
  5784. },
  5785. "_mobility": 0,
  5786. "_layer": 33554432,
  5787. "_euler": {
  5788. "__type__": "cc.Vec3",
  5789. "x": 0,
  5790. "y": 0,
  5791. "z": 0
  5792. },
  5793. "_id": "22HO1bhuVHRoWayHMvidvX"
  5794. },
  5795. {
  5796. "__type__": "cc.UITransform",
  5797. "_name": "",
  5798. "_objFlags": 0,
  5799. "node": {
  5800. "__id__": 158
  5801. },
  5802. "_enabled": true,
  5803. "__prefab": null,
  5804. "_contentSize": {
  5805. "__type__": "cc.Size",
  5806. "width": 1440,
  5807. "height": 10
  5808. },
  5809. "_anchorPoint": {
  5810. "__type__": "cc.Vec2",
  5811. "x": 0.5,
  5812. "y": 0.5
  5813. },
  5814. "_id": "96BT3jRGxPd55li4z4pelQ"
  5815. },
  5816. {
  5817. "__type__": "cc.RigidBody2D",
  5818. "_name": "",
  5819. "_objFlags": 0,
  5820. "node": {
  5821. "__id__": 158
  5822. },
  5823. "_enabled": true,
  5824. "__prefab": null,
  5825. "enabledContactListener": false,
  5826. "bullet": false,
  5827. "awakeOnLoad": true,
  5828. "_group": 1,
  5829. "_type": 2,
  5830. "_allowSleep": true,
  5831. "_gravityScale": 0,
  5832. "_linearDamping": 0,
  5833. "_angularDamping": 0,
  5834. "_linearVelocity": {
  5835. "__type__": "cc.Vec2",
  5836. "x": 0,
  5837. "y": 0
  5838. },
  5839. "_angularVelocity": 0,
  5840. "_fixedRotation": false,
  5841. "_id": "4aE6Q7aL1Cb7dQyUyN38Ld"
  5842. },
  5843. {
  5844. "__type__": "cc.BoxCollider2D",
  5845. "_name": "",
  5846. "_objFlags": 0,
  5847. "node": {
  5848. "__id__": 158
  5849. },
  5850. "_enabled": true,
  5851. "__prefab": null,
  5852. "tag": 0,
  5853. "_group": 1,
  5854. "_density": 1,
  5855. "_sensor": false,
  5856. "_friction": 0.2,
  5857. "_restitution": 0,
  5858. "_offset": {
  5859. "__type__": "cc.Vec2",
  5860. "x": 0,
  5861. "y": 0
  5862. },
  5863. "_size": {
  5864. "__type__": "cc.Size",
  5865. "width": 1440,
  5866. "height": 10
  5867. },
  5868. "_id": "ecN7IXuF1JcKS2nMMB3PvV"
  5869. },
  5870. {
  5871. "__type__": "cc.Node",
  5872. "_name": "left",
  5873. "_objFlags": 0,
  5874. "_parent": {
  5875. "__id__": 17
  5876. },
  5877. "_children": [],
  5878. "_active": true,
  5879. "_components": [
  5880. {
  5881. "__id__": 163
  5882. },
  5883. {
  5884. "__id__": 164
  5885. },
  5886. {
  5887. "__id__": 165
  5888. }
  5889. ],
  5890. "_prefab": null,
  5891. "_lpos": {
  5892. "__type__": "cc.Vec3",
  5893. "x": -480,
  5894. "y": 65,
  5895. "z": 0
  5896. },
  5897. "_lrot": {
  5898. "__type__": "cc.Quat",
  5899. "x": 0,
  5900. "y": 0,
  5901. "z": 0,
  5902. "w": 1
  5903. },
  5904. "_lscale": {
  5905. "__type__": "cc.Vec3",
  5906. "x": 1,
  5907. "y": 1,
  5908. "z": 1
  5909. },
  5910. "_mobility": 0,
  5911. "_layer": 33554432,
  5912. "_euler": {
  5913. "__type__": "cc.Vec3",
  5914. "x": 0,
  5915. "y": 0,
  5916. "z": 0
  5917. },
  5918. "_id": "ecJnwpOw9L85n9IaoAnMAY"
  5919. },
  5920. {
  5921. "__type__": "cc.UITransform",
  5922. "_name": "",
  5923. "_objFlags": 0,
  5924. "node": {
  5925. "__id__": 162
  5926. },
  5927. "_enabled": true,
  5928. "__prefab": null,
  5929. "_contentSize": {
  5930. "__type__": "cc.Size",
  5931. "width": 10,
  5932. "height": 830
  5933. },
  5934. "_anchorPoint": {
  5935. "__type__": "cc.Vec2",
  5936. "x": 0.5,
  5937. "y": 0.5
  5938. },
  5939. "_id": "26hgHwYalL/bsI2jRsLKb/"
  5940. },
  5941. {
  5942. "__type__": "cc.RigidBody2D",
  5943. "_name": "",
  5944. "_objFlags": 0,
  5945. "node": {
  5946. "__id__": 162
  5947. },
  5948. "_enabled": true,
  5949. "__prefab": null,
  5950. "enabledContactListener": false,
  5951. "bullet": false,
  5952. "awakeOnLoad": true,
  5953. "_group": 1,
  5954. "_type": 2,
  5955. "_allowSleep": true,
  5956. "_gravityScale": 0,
  5957. "_linearDamping": 0,
  5958. "_angularDamping": 0,
  5959. "_linearVelocity": {
  5960. "__type__": "cc.Vec2",
  5961. "x": 0,
  5962. "y": 0
  5963. },
  5964. "_angularVelocity": 0,
  5965. "_fixedRotation": false,
  5966. "_id": "89z+95L1tJB4g7f7xeRewT"
  5967. },
  5968. {
  5969. "__type__": "cc.BoxCollider2D",
  5970. "_name": "",
  5971. "_objFlags": 0,
  5972. "node": {
  5973. "__id__": 162
  5974. },
  5975. "_enabled": true,
  5976. "__prefab": null,
  5977. "tag": 0,
  5978. "_group": 1,
  5979. "_density": 1,
  5980. "_sensor": false,
  5981. "_friction": 0.2,
  5982. "_restitution": 0,
  5983. "_offset": {
  5984. "__type__": "cc.Vec2",
  5985. "x": 0,
  5986. "y": 0
  5987. },
  5988. "_size": {
  5989. "__type__": "cc.Size",
  5990. "width": 10,
  5991. "height": 830
  5992. },
  5993. "_id": "069PRSnMZMqJ5+N/kc09Jq"
  5994. },
  5995. {
  5996. "__type__": "cc.Node",
  5997. "_name": "right",
  5998. "_objFlags": 0,
  5999. "_parent": {
  6000. "__id__": 17
  6001. },
  6002. "_children": [],
  6003. "_active": true,
  6004. "_components": [
  6005. {
  6006. "__id__": 167
  6007. },
  6008. {
  6009. "__id__": 168
  6010. },
  6011. {
  6012. "__id__": 169
  6013. }
  6014. ],
  6015. "_prefab": null,
  6016. "_lpos": {
  6017. "__type__": "cc.Vec3",
  6018. "x": 920,
  6019. "y": 65,
  6020. "z": 0
  6021. },
  6022. "_lrot": {
  6023. "__type__": "cc.Quat",
  6024. "x": 0,
  6025. "y": 0,
  6026. "z": 0,
  6027. "w": 1
  6028. },
  6029. "_lscale": {
  6030. "__type__": "cc.Vec3",
  6031. "x": 1,
  6032. "y": 1,
  6033. "z": 1
  6034. },
  6035. "_mobility": 0,
  6036. "_layer": 33554432,
  6037. "_euler": {
  6038. "__type__": "cc.Vec3",
  6039. "x": 0,
  6040. "y": 0,
  6041. "z": 0
  6042. },
  6043. "_id": "04vbwh4G1EEqInl2bnvy1k"
  6044. },
  6045. {
  6046. "__type__": "cc.UITransform",
  6047. "_name": "",
  6048. "_objFlags": 0,
  6049. "node": {
  6050. "__id__": 166
  6051. },
  6052. "_enabled": true,
  6053. "__prefab": null,
  6054. "_contentSize": {
  6055. "__type__": "cc.Size",
  6056. "width": 10,
  6057. "height": 830
  6058. },
  6059. "_anchorPoint": {
  6060. "__type__": "cc.Vec2",
  6061. "x": 0.5,
  6062. "y": 0.5
  6063. },
  6064. "_id": "b3C7vDVi9NtrRnSQUWIJeN"
  6065. },
  6066. {
  6067. "__type__": "cc.RigidBody2D",
  6068. "_name": "",
  6069. "_objFlags": 0,
  6070. "node": {
  6071. "__id__": 166
  6072. },
  6073. "_enabled": true,
  6074. "__prefab": null,
  6075. "enabledContactListener": false,
  6076. "bullet": false,
  6077. "awakeOnLoad": true,
  6078. "_group": 1,
  6079. "_type": 2,
  6080. "_allowSleep": true,
  6081. "_gravityScale": 0,
  6082. "_linearDamping": 0,
  6083. "_angularDamping": 0,
  6084. "_linearVelocity": {
  6085. "__type__": "cc.Vec2",
  6086. "x": 0,
  6087. "y": 0
  6088. },
  6089. "_angularVelocity": 0,
  6090. "_fixedRotation": false,
  6091. "_id": "67QYmSibxLwr3zo+9Pg97E"
  6092. },
  6093. {
  6094. "__type__": "cc.BoxCollider2D",
  6095. "_name": "",
  6096. "_objFlags": 0,
  6097. "node": {
  6098. "__id__": 166
  6099. },
  6100. "_enabled": true,
  6101. "__prefab": null,
  6102. "tag": 0,
  6103. "_group": 1,
  6104. "_density": 1,
  6105. "_sensor": false,
  6106. "_friction": 0.2,
  6107. "_restitution": 0,
  6108. "_offset": {
  6109. "__type__": "cc.Vec2",
  6110. "x": 0,
  6111. "y": 0
  6112. },
  6113. "_size": {
  6114. "__type__": "cc.Size",
  6115. "width": 10,
  6116. "height": 830
  6117. },
  6118. "_id": "6di3qMbk1CUpYa+qrLU7o0"
  6119. },
  6120. {
  6121. "__type__": "cc.UITransform",
  6122. "_name": "",
  6123. "_objFlags": 0,
  6124. "node": {
  6125. "__id__": 17
  6126. },
  6127. "_enabled": true,
  6128. "__prefab": null,
  6129. "_contentSize": {
  6130. "__type__": "cc.Size",
  6131. "width": 2000,
  6132. "height": 1397
  6133. },
  6134. "_anchorPoint": {
  6135. "__type__": "cc.Vec2",
  6136. "x": 0.5,
  6137. "y": 0.5
  6138. },
  6139. "_id": "8c1fLSq21JQagrhNJXWO0e"
  6140. },
  6141. {
  6142. "__type__": "bd5a10IebZALozd4PTC922s",
  6143. "_name": "",
  6144. "_objFlags": 0,
  6145. "node": {
  6146. "__id__": 17
  6147. },
  6148. "_enabled": true,
  6149. "__prefab": null,
  6150. "article": [
  6151. {
  6152. "__id__": 69
  6153. },
  6154. {
  6155. "__id__": 86
  6156. },
  6157. {
  6158. "__id__": 103
  6159. },
  6160. {
  6161. "__id__": 120
  6162. },
  6163. {
  6164. "__id__": 137
  6165. }
  6166. ],
  6167. "num": [
  6168. {
  6169. "__id__": 25
  6170. },
  6171. {
  6172. "__id__": 28
  6173. },
  6174. {
  6175. "__id__": 31
  6176. },
  6177. {
  6178. "__id__": 34
  6179. },
  6180. {
  6181. "__id__": 37
  6182. },
  6183. {
  6184. "__id__": 40
  6185. },
  6186. {
  6187. "__id__": 43
  6188. },
  6189. {
  6190. "__id__": 46
  6191. },
  6192. {
  6193. "__id__": 49
  6194. },
  6195. {
  6196. "__id__": 52
  6197. }
  6198. ],
  6199. "articleItems": [
  6200. {
  6201. "__uuid__": "0a52d36c-d17c-451c-b448-8858d51248c1",
  6202. "__expectedType__": "cc.Prefab"
  6203. },
  6204. {
  6205. "__uuid__": "a9da5002-7c98-492e-a49f-32d962a24007",
  6206. "__expectedType__": "cc.Prefab"
  6207. },
  6208. {
  6209. "__uuid__": "a202949e-7538-4d97-a585-e2cd73edd0d6",
  6210. "__expectedType__": "cc.Prefab"
  6211. },
  6212. {
  6213. "__uuid__": "a9d857d5-6063-4565-974e-c785c062c159",
  6214. "__expectedType__": "cc.Prefab"
  6215. },
  6216. {
  6217. "__uuid__": "ae5630c2-3388-4c78-bee9-d2df19095de5",
  6218. "__expectedType__": "cc.Prefab"
  6219. }
  6220. ],
  6221. "queding": {
  6222. "__id__": 57
  6223. },
  6224. "quxiao": {
  6225. "__id__": 65
  6226. },
  6227. "tijiao": {
  6228. "__id__": 61
  6229. },
  6230. "articles": {
  6231. "__id__": 21
  6232. },
  6233. "_id": "8302o0D6VI6pun8FmBZWYA"
  6234. },
  6235. {
  6236. "__type__": "cc.UITransform",
  6237. "_name": "",
  6238. "_objFlags": 0,
  6239. "node": {
  6240. "__id__": 16
  6241. },
  6242. "_enabled": true,
  6243. "__prefab": null,
  6244. "_contentSize": {
  6245. "__type__": "cc.Size",
  6246. "width": 2000,
  6247. "height": 1397
  6248. },
  6249. "_anchorPoint": {
  6250. "__type__": "cc.Vec2",
  6251. "x": 0.5,
  6252. "y": 0.5
  6253. },
  6254. "_id": "71S6gvp4pLt5q8H5Iso76v"
  6255. },
  6256. {
  6257. "__type__": "cc.Sprite",
  6258. "_name": "",
  6259. "_objFlags": 0,
  6260. "node": {
  6261. "__id__": 16
  6262. },
  6263. "_enabled": false,
  6264. "__prefab": null,
  6265. "_customMaterial": null,
  6266. "_srcBlendFactor": 2,
  6267. "_dstBlendFactor": 4,
  6268. "_color": {
  6269. "__type__": "cc.Color",
  6270. "r": 255,
  6271. "g": 255,
  6272. "b": 255,
  6273. "a": 255
  6274. },
  6275. "_spriteFrame": {
  6276. "__uuid__": "3ea65159-ea8c-4a48-801e-1c061d485d4e@f9941",
  6277. "__expectedType__": "cc.SpriteFrame"
  6278. },
  6279. "_type": 0,
  6280. "_fillType": 0,
  6281. "_sizeMode": 0,
  6282. "_fillCenter": {
  6283. "__type__": "cc.Vec2",
  6284. "x": 0,
  6285. "y": 0
  6286. },
  6287. "_fillStart": 0,
  6288. "_fillRange": 0,
  6289. "_isTrimmedMode": true,
  6290. "_useGrayscale": false,
  6291. "_atlas": null,
  6292. "_id": "04GOZKOQJPDpD/mXW1gLOd"
  6293. },
  6294. {
  6295. "__type__": "cc.Widget",
  6296. "_name": "",
  6297. "_objFlags": 0,
  6298. "node": {
  6299. "__id__": 16
  6300. },
  6301. "_enabled": true,
  6302. "__prefab": null,
  6303. "_alignFlags": 45,
  6304. "_target": null,
  6305. "_left": 0,
  6306. "_right": 0,
  6307. "_top": 0,
  6308. "_bottom": 0,
  6309. "_horizontalCenter": 0,
  6310. "_verticalCenter": 0,
  6311. "_isAbsLeft": true,
  6312. "_isAbsRight": true,
  6313. "_isAbsTop": true,
  6314. "_isAbsBottom": true,
  6315. "_isAbsHorizontalCenter": true,
  6316. "_isAbsVerticalCenter": true,
  6317. "_originalWidth": 40,
  6318. "_originalHeight": 36,
  6319. "_alignMode": 2,
  6320. "_lockFlags": 0,
  6321. "_id": "74ChrXdk1DQJntaVX+sWg9"
  6322. },
  6323. {
  6324. "__type__": "cc.UITransform",
  6325. "_name": "",
  6326. "_objFlags": 0,
  6327. "node": {
  6328. "__id__": 15
  6329. },
  6330. "_enabled": true,
  6331. "__prefab": null,
  6332. "_contentSize": {
  6333. "__type__": "cc.Size",
  6334. "width": 2000,
  6335. "height": 1397
  6336. },
  6337. "_anchorPoint": {
  6338. "__type__": "cc.Vec2",
  6339. "x": 0.5,
  6340. "y": 0.5
  6341. },
  6342. "_id": "b6dpqfeGtPZKl2feyj0l48"
  6343. },
  6344. {
  6345. "__type__": "cc.Mask",
  6346. "_name": "",
  6347. "_objFlags": 0,
  6348. "node": {
  6349. "__id__": 15
  6350. },
  6351. "_enabled": true,
  6352. "__prefab": null,
  6353. "_type": 0,
  6354. "_inverted": false,
  6355. "_segments": 64,
  6356. "_alphaThreshold": 0.1,
  6357. "_id": "96O96xUe5GEZ4NPvgfyU0f"
  6358. },
  6359. {
  6360. "__type__": "cc.Graphics",
  6361. "_name": "",
  6362. "_objFlags": 0,
  6363. "node": {
  6364. "__id__": 15
  6365. },
  6366. "_enabled": true,
  6367. "__prefab": null,
  6368. "_customMaterial": null,
  6369. "_srcBlendFactor": 2,
  6370. "_dstBlendFactor": 4,
  6371. "_color": {
  6372. "__type__": "cc.Color",
  6373. "r": 255,
  6374. "g": 255,
  6375. "b": 255,
  6376. "a": 255
  6377. },
  6378. "_lineWidth": 1,
  6379. "_strokeColor": {
  6380. "__type__": "cc.Color",
  6381. "r": 0,
  6382. "g": 0,
  6383. "b": 0,
  6384. "a": 255
  6385. },
  6386. "_lineJoin": 2,
  6387. "_lineCap": 0,
  6388. "_fillColor": {
  6389. "__type__": "cc.Color",
  6390. "r": 255,
  6391. "g": 255,
  6392. "b": 255,
  6393. "a": 0
  6394. },
  6395. "_miterLimit": 10,
  6396. "_id": "50k+r1bC5HIq2kD2LGhXnG"
  6397. },
  6398. {
  6399. "__type__": "cc.UITransform",
  6400. "_name": "",
  6401. "_objFlags": 0,
  6402. "node": {
  6403. "__id__": 14
  6404. },
  6405. "_enabled": true,
  6406. "__prefab": null,
  6407. "_contentSize": {
  6408. "__type__": "cc.Size",
  6409. "width": 2000,
  6410. "height": 1397
  6411. },
  6412. "_anchorPoint": {
  6413. "__type__": "cc.Vec2",
  6414. "x": 0.5,
  6415. "y": 0.5
  6416. },
  6417. "_id": "2cVVHjDb1OK5Urf580PS6M"
  6418. },
  6419. {
  6420. "__type__": "cc.Widget",
  6421. "_name": "",
  6422. "_objFlags": 0,
  6423. "node": {
  6424. "__id__": 14
  6425. },
  6426. "_enabled": true,
  6427. "__prefab": null,
  6428. "_alignFlags": 45,
  6429. "_target": null,
  6430. "_left": 0,
  6431. "_right": 0,
  6432. "_top": 0,
  6433. "_bottom": 0,
  6434. "_horizontalCenter": 0,
  6435. "_verticalCenter": 0,
  6436. "_isAbsLeft": true,
  6437. "_isAbsRight": true,
  6438. "_isAbsTop": true,
  6439. "_isAbsBottom": true,
  6440. "_isAbsHorizontalCenter": true,
  6441. "_isAbsVerticalCenter": true,
  6442. "_originalWidth": 1532,
  6443. "_originalHeight": 1336,
  6444. "_alignMode": 2,
  6445. "_lockFlags": 0,
  6446. "_id": "9aFbAReTlG26QQjumwVtfz"
  6447. },
  6448. {
  6449. "__type__": "cc.Node",
  6450. "_name": "GameEndTip",
  6451. "_objFlags": 0,
  6452. "_parent": {
  6453. "__id__": 6
  6454. },
  6455. "_children": [
  6456. {
  6457. "__id__": 181
  6458. },
  6459. {
  6460. "__id__": 185
  6461. },
  6462. {
  6463. "__id__": 188
  6464. },
  6465. {
  6466. "__id__": 191
  6467. },
  6468. {
  6469. "__id__": 199
  6470. },
  6471. {
  6472. "__id__": 207
  6473. },
  6474. {
  6475. "__id__": 210
  6476. },
  6477. {
  6478. "__id__": 213
  6479. }
  6480. ],
  6481. "_active": false,
  6482. "_components": [
  6483. {
  6484. "__id__": 216
  6485. },
  6486. {
  6487. "__id__": 217
  6488. },
  6489. {
  6490. "__id__": 218
  6491. },
  6492. {
  6493. "__id__": 219
  6494. }
  6495. ],
  6496. "_prefab": null,
  6497. "_lpos": {
  6498. "__type__": "cc.Vec3",
  6499. "x": 0,
  6500. "y": 0,
  6501. "z": 0
  6502. },
  6503. "_lrot": {
  6504. "__type__": "cc.Quat",
  6505. "x": 0,
  6506. "y": 0,
  6507. "z": 0,
  6508. "w": 1
  6509. },
  6510. "_lscale": {
  6511. "__type__": "cc.Vec3",
  6512. "x": 0.976,
  6513. "y": 0.976,
  6514. "z": 0.976
  6515. },
  6516. "_mobility": 0,
  6517. "_layer": 33554432,
  6518. "_euler": {
  6519. "__type__": "cc.Vec3",
  6520. "x": 0,
  6521. "y": 0,
  6522. "z": 0
  6523. },
  6524. "_id": "93JjkViVVAV7PtAJqtBMLi"
  6525. },
  6526. {
  6527. "__type__": "cc.Node",
  6528. "_name": "bg",
  6529. "_objFlags": 0,
  6530. "_parent": {
  6531. "__id__": 180
  6532. },
  6533. "_children": [],
  6534. "_active": true,
  6535. "_components": [
  6536. {
  6537. "__id__": 182
  6538. },
  6539. {
  6540. "__id__": 183
  6541. },
  6542. {
  6543. "__id__": 184
  6544. }
  6545. ],
  6546. "_prefab": null,
  6547. "_lpos": {
  6548. "__type__": "cc.Vec3",
  6549. "x": 0,
  6550. "y": 0,
  6551. "z": 0
  6552. },
  6553. "_lrot": {
  6554. "__type__": "cc.Quat",
  6555. "x": 0,
  6556. "y": 0,
  6557. "z": 0,
  6558. "w": 1
  6559. },
  6560. "_lscale": {
  6561. "__type__": "cc.Vec3",
  6562. "x": 1,
  6563. "y": 1,
  6564. "z": 1
  6565. },
  6566. "_mobility": 0,
  6567. "_layer": 33554432,
  6568. "_euler": {
  6569. "__type__": "cc.Vec3",
  6570. "x": 0,
  6571. "y": 0,
  6572. "z": 0
  6573. },
  6574. "_id": "31XHDuimdJEI1t+6/L7yHe"
  6575. },
  6576. {
  6577. "__type__": "cc.UITransform",
  6578. "_name": "",
  6579. "_objFlags": 0,
  6580. "node": {
  6581. "__id__": 181
  6582. },
  6583. "_enabled": true,
  6584. "__prefab": null,
  6585. "_contentSize": {
  6586. "__type__": "cc.Size",
  6587. "width": 2461.8,
  6588. "height": 1733.3
  6589. },
  6590. "_anchorPoint": {
  6591. "__type__": "cc.Vec2",
  6592. "x": 0.5,
  6593. "y": 0.5
  6594. },
  6595. "_id": "acNFpC5ydPZKWEsOyMPdXO"
  6596. },
  6597. {
  6598. "__type__": "cc.Sprite",
  6599. "_name": "",
  6600. "_objFlags": 0,
  6601. "node": {
  6602. "__id__": 181
  6603. },
  6604. "_enabled": true,
  6605. "__prefab": null,
  6606. "_customMaterial": null,
  6607. "_srcBlendFactor": 2,
  6608. "_dstBlendFactor": 4,
  6609. "_color": {
  6610. "__type__": "cc.Color",
  6611. "r": 3,
  6612. "g": 0,
  6613. "b": 0,
  6614. "a": 176
  6615. },
  6616. "_spriteFrame": {
  6617. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  6618. "__expectedType__": "cc.SpriteFrame"
  6619. },
  6620. "_type": 1,
  6621. "_fillType": 0,
  6622. "_sizeMode": 0,
  6623. "_fillCenter": {
  6624. "__type__": "cc.Vec2",
  6625. "x": 0,
  6626. "y": 0
  6627. },
  6628. "_fillStart": 0,
  6629. "_fillRange": 0,
  6630. "_isTrimmedMode": true,
  6631. "_useGrayscale": false,
  6632. "_atlas": null,
  6633. "_id": "77V4tKsVJEX7s2w4moSgIh"
  6634. },
  6635. {
  6636. "__type__": "cc.BlockInputEvents",
  6637. "_name": "",
  6638. "_objFlags": 0,
  6639. "node": {
  6640. "__id__": 181
  6641. },
  6642. "_enabled": true,
  6643. "__prefab": null,
  6644. "_id": "96mc2BGyFA77T4zTAlZavg"
  6645. },
  6646. {
  6647. "__type__": "cc.Node",
  6648. "_name": "Sprite",
  6649. "_objFlags": 0,
  6650. "_parent": {
  6651. "__id__": 180
  6652. },
  6653. "_children": [],
  6654. "_active": true,
  6655. "_components": [
  6656. {
  6657. "__id__": 186
  6658. },
  6659. {
  6660. "__id__": 187
  6661. }
  6662. ],
  6663. "_prefab": null,
  6664. "_lpos": {
  6665. "__type__": "cc.Vec3",
  6666. "x": 0,
  6667. "y": -18.761,
  6668. "z": 0
  6669. },
  6670. "_lrot": {
  6671. "__type__": "cc.Quat",
  6672. "x": 0,
  6673. "y": 0,
  6674. "z": 0,
  6675. "w": 1
  6676. },
  6677. "_lscale": {
  6678. "__type__": "cc.Vec3",
  6679. "x": 1,
  6680. "y": 1,
  6681. "z": 1
  6682. },
  6683. "_mobility": 0,
  6684. "_layer": 33554432,
  6685. "_euler": {
  6686. "__type__": "cc.Vec3",
  6687. "x": 0,
  6688. "y": 0,
  6689. "z": 0
  6690. },
  6691. "_id": "9fs+apmJpJroKm3/UD+5uF"
  6692. },
  6693. {
  6694. "__type__": "cc.UITransform",
  6695. "_name": "",
  6696. "_objFlags": 0,
  6697. "node": {
  6698. "__id__": 185
  6699. },
  6700. "_enabled": true,
  6701. "__prefab": null,
  6702. "_contentSize": {
  6703. "__type__": "cc.Size",
  6704. "width": 1311,
  6705. "height": 806
  6706. },
  6707. "_anchorPoint": {
  6708. "__type__": "cc.Vec2",
  6709. "x": 0.5,
  6710. "y": 0.5
  6711. },
  6712. "_id": "6frXPnxxJArJzX27dh8uck"
  6713. },
  6714. {
  6715. "__type__": "cc.Sprite",
  6716. "_name": "",
  6717. "_objFlags": 0,
  6718. "node": {
  6719. "__id__": 185
  6720. },
  6721. "_enabled": true,
  6722. "__prefab": null,
  6723. "_customMaterial": null,
  6724. "_srcBlendFactor": 2,
  6725. "_dstBlendFactor": 4,
  6726. "_color": {
  6727. "__type__": "cc.Color",
  6728. "r": 255,
  6729. "g": 255,
  6730. "b": 255,
  6731. "a": 255
  6732. },
  6733. "_spriteFrame": {
  6734. "__uuid__": "a372d40f-413b-48e1-ab83-223f279a207d@f9941",
  6735. "__expectedType__": "cc.SpriteFrame"
  6736. },
  6737. "_type": 0,
  6738. "_fillType": 0,
  6739. "_sizeMode": 1,
  6740. "_fillCenter": {
  6741. "__type__": "cc.Vec2",
  6742. "x": 0,
  6743. "y": 0
  6744. },
  6745. "_fillStart": 0,
  6746. "_fillRange": 0,
  6747. "_isTrimmedMode": true,
  6748. "_useGrayscale": false,
  6749. "_atlas": null,
  6750. "_id": "42+SJdTHJHfaszGgbXO9S7"
  6751. },
  6752. {
  6753. "__type__": "cc.Node",
  6754. "_name": "Label",
  6755. "_objFlags": 0,
  6756. "_parent": {
  6757. "__id__": 180
  6758. },
  6759. "_children": [],
  6760. "_active": true,
  6761. "_components": [
  6762. {
  6763. "__id__": 189
  6764. },
  6765. {
  6766. "__id__": 190
  6767. }
  6768. ],
  6769. "_prefab": null,
  6770. "_lpos": {
  6771. "__type__": "cc.Vec3",
  6772. "x": -27.538,
  6773. "y": 127.951,
  6774. "z": 0
  6775. },
  6776. "_lrot": {
  6777. "__type__": "cc.Quat",
  6778. "x": 0,
  6779. "y": 0,
  6780. "z": 0,
  6781. "w": 1
  6782. },
  6783. "_lscale": {
  6784. "__type__": "cc.Vec3",
  6785. "x": 1,
  6786. "y": 1,
  6787. "z": 1
  6788. },
  6789. "_mobility": 0,
  6790. "_layer": 33554432,
  6791. "_euler": {
  6792. "__type__": "cc.Vec3",
  6793. "x": 0,
  6794. "y": 0,
  6795. "z": 0
  6796. },
  6797. "_id": "683vYYXVNMG4zDSZ2ZL/2x"
  6798. },
  6799. {
  6800. "__type__": "cc.UITransform",
  6801. "_name": "",
  6802. "_objFlags": 0,
  6803. "node": {
  6804. "__id__": 188
  6805. },
  6806. "_enabled": true,
  6807. "__prefab": null,
  6808. "_contentSize": {
  6809. "__type__": "cc.Size",
  6810. "width": 560.454,
  6811. "height": 214.07999999999998
  6812. },
  6813. "_anchorPoint": {
  6814. "__type__": "cc.Vec2",
  6815. "x": 0.5,
  6816. "y": 0.5
  6817. },
  6818. "_id": "4bvdCXN2BJy4+tYUB808Ck"
  6819. },
  6820. {
  6821. "__type__": "cc.Label",
  6822. "_name": "",
  6823. "_objFlags": 0,
  6824. "node": {
  6825. "__id__": 188
  6826. },
  6827. "_enabled": true,
  6828. "__prefab": null,
  6829. "_customMaterial": null,
  6830. "_srcBlendFactor": 2,
  6831. "_dstBlendFactor": 4,
  6832. "_color": {
  6833. "__type__": "cc.Color",
  6834. "r": 169,
  6835. "g": 79,
  6836. "b": 9,
  6837. "a": 255
  6838. },
  6839. "_string": "当前关卡:第1关",
  6840. "_horizontalAlign": 1,
  6841. "_verticalAlign": 1,
  6842. "_actualFontSize": 65,
  6843. "_fontSize": 65,
  6844. "_fontFamily": "Arial",
  6845. "_lineHeight": 100,
  6846. "_overflow": 1,
  6847. "_enableWrapText": true,
  6848. "_font": null,
  6849. "_isSystemFontUsed": true,
  6850. "_spacingX": 0,
  6851. "_isItalic": false,
  6852. "_isBold": true,
  6853. "_isUnderline": false,
  6854. "_underlineHeight": 2,
  6855. "_cacheMode": 0,
  6856. "_id": "f9AYjkkhBO3LqvM/euMVoh"
  6857. },
  6858. {
  6859. "__type__": "cc.Node",
  6860. "_name": "BackHome",
  6861. "_objFlags": 0,
  6862. "_parent": {
  6863. "__id__": 180
  6864. },
  6865. "_children": [
  6866. {
  6867. "__id__": 192
  6868. }
  6869. ],
  6870. "_active": true,
  6871. "_components": [
  6872. {
  6873. "__id__": 195
  6874. },
  6875. {
  6876. "__id__": 196
  6877. },
  6878. {
  6879. "__id__": 197
  6880. }
  6881. ],
  6882. "_prefab": null,
  6883. "_lpos": {
  6884. "__type__": "cc.Vec3",
  6885. "x": -291.21,
  6886. "y": -267.351,
  6887. "z": 0
  6888. },
  6889. "_lrot": {
  6890. "__type__": "cc.Quat",
  6891. "x": 0,
  6892. "y": 0,
  6893. "z": 0,
  6894. "w": 1
  6895. },
  6896. "_lscale": {
  6897. "__type__": "cc.Vec3",
  6898. "x": 1,
  6899. "y": 1,
  6900. "z": 1
  6901. },
  6902. "_mobility": 0,
  6903. "_layer": 33554432,
  6904. "_euler": {
  6905. "__type__": "cc.Vec3",
  6906. "x": 0,
  6907. "y": 0,
  6908. "z": 0
  6909. },
  6910. "_id": "adrsQJwhpLvKCA0edRC9ep"
  6911. },
  6912. {
  6913. "__type__": "cc.Node",
  6914. "_name": "Label",
  6915. "_objFlags": 512,
  6916. "_parent": {
  6917. "__id__": 191
  6918. },
  6919. "_children": [],
  6920. "_active": true,
  6921. "_components": [
  6922. {
  6923. "__id__": 193
  6924. },
  6925. {
  6926. "__id__": 194
  6927. }
  6928. ],
  6929. "_prefab": null,
  6930. "_lpos": {
  6931. "__type__": "cc.Vec3",
  6932. "x": 1.5368852459016438,
  6933. "y": 6.147540983606557,
  6934. "z": 0
  6935. },
  6936. "_lrot": {
  6937. "__type__": "cc.Quat",
  6938. "x": 0,
  6939. "y": 0,
  6940. "z": 0,
  6941. "w": 1
  6942. },
  6943. "_lscale": {
  6944. "__type__": "cc.Vec3",
  6945. "x": 1,
  6946. "y": 1,
  6947. "z": 1
  6948. },
  6949. "_mobility": 0,
  6950. "_layer": 33554432,
  6951. "_euler": {
  6952. "__type__": "cc.Vec3",
  6953. "x": 0,
  6954. "y": 0,
  6955. "z": 0
  6956. },
  6957. "_id": "3fEW57U69K040Vzc1siZdR"
  6958. },
  6959. {
  6960. "__type__": "cc.UITransform",
  6961. "_name": "",
  6962. "_objFlags": 0,
  6963. "node": {
  6964. "__id__": 192
  6965. },
  6966. "_enabled": true,
  6967. "__prefab": null,
  6968. "_contentSize": {
  6969. "__type__": "cc.Size",
  6970. "width": 312.09016393442624,
  6971. "height": 70.73770491803279
  6972. },
  6973. "_anchorPoint": {
  6974. "__type__": "cc.Vec2",
  6975. "x": 0.5,
  6976. "y": 0.5
  6977. },
  6978. "_id": "35RGH0cq1In4hdFQ96Zn3b"
  6979. },
  6980. {
  6981. "__type__": "cc.Label",
  6982. "_name": "",
  6983. "_objFlags": 0,
  6984. "node": {
  6985. "__id__": 192
  6986. },
  6987. "_enabled": true,
  6988. "__prefab": null,
  6989. "_customMaterial": null,
  6990. "_srcBlendFactor": 2,
  6991. "_dstBlendFactor": 4,
  6992. "_color": {
  6993. "__type__": "cc.Color",
  6994. "r": 255,
  6995. "g": 255,
  6996. "b": 255,
  6997. "a": 255
  6998. },
  6999. "_string": "返回首页",
  7000. "_horizontalAlign": 1,
  7001. "_verticalAlign": 1,
  7002. "_actualFontSize": 55,
  7003. "_fontSize": 55,
  7004. "_fontFamily": "Arial",
  7005. "_lineHeight": 70,
  7006. "_overflow": 1,
  7007. "_enableWrapText": false,
  7008. "_font": null,
  7009. "_isSystemFontUsed": true,
  7010. "_spacingX": 0,
  7011. "_isItalic": false,
  7012. "_isBold": false,
  7013. "_isUnderline": false,
  7014. "_underlineHeight": 2,
  7015. "_cacheMode": 0,
  7016. "_id": "feqqaW3iJPF7vftQ39pQEC"
  7017. },
  7018. {
  7019. "__type__": "cc.UITransform",
  7020. "_name": "",
  7021. "_objFlags": 0,
  7022. "node": {
  7023. "__id__": 191
  7024. },
  7025. "_enabled": true,
  7026. "__prefab": null,
  7027. "_contentSize": {
  7028. "__type__": "cc.Size",
  7029. "width": 411,
  7030. "height": 144
  7031. },
  7032. "_anchorPoint": {
  7033. "__type__": "cc.Vec2",
  7034. "x": 0.5,
  7035. "y": 0.5
  7036. },
  7037. "_id": "0d3afojiRHfIoSM5LDTv3k"
  7038. },
  7039. {
  7040. "__type__": "cc.Sprite",
  7041. "_name": "",
  7042. "_objFlags": 0,
  7043. "node": {
  7044. "__id__": 191
  7045. },
  7046. "_enabled": true,
  7047. "__prefab": null,
  7048. "_customMaterial": null,
  7049. "_srcBlendFactor": 2,
  7050. "_dstBlendFactor": 4,
  7051. "_color": {
  7052. "__type__": "cc.Color",
  7053. "r": 255,
  7054. "g": 255,
  7055. "b": 255,
  7056. "a": 255
  7057. },
  7058. "_spriteFrame": {
  7059. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  7060. "__expectedType__": "cc.SpriteFrame"
  7061. },
  7062. "_type": 1,
  7063. "_fillType": 0,
  7064. "_sizeMode": 0,
  7065. "_fillCenter": {
  7066. "__type__": "cc.Vec2",
  7067. "x": 0,
  7068. "y": 0
  7069. },
  7070. "_fillStart": 0,
  7071. "_fillRange": 0,
  7072. "_isTrimmedMode": true,
  7073. "_useGrayscale": false,
  7074. "_atlas": null,
  7075. "_id": "b5ibidQGZOda4qgn015afs"
  7076. },
  7077. {
  7078. "__type__": "cc.Button",
  7079. "_name": "",
  7080. "_objFlags": 0,
  7081. "node": {
  7082. "__id__": 191
  7083. },
  7084. "_enabled": true,
  7085. "__prefab": null,
  7086. "clickEvents": [
  7087. {
  7088. "__id__": 198
  7089. }
  7090. ],
  7091. "_interactable": true,
  7092. "_transition": 2,
  7093. "_normalColor": {
  7094. "__type__": "cc.Color",
  7095. "r": 214,
  7096. "g": 214,
  7097. "b": 214,
  7098. "a": 255
  7099. },
  7100. "_hoverColor": {
  7101. "__type__": "cc.Color",
  7102. "r": 211,
  7103. "g": 211,
  7104. "b": 211,
  7105. "a": 255
  7106. },
  7107. "_pressedColor": {
  7108. "__type__": "cc.Color",
  7109. "r": 255,
  7110. "g": 255,
  7111. "b": 255,
  7112. "a": 255
  7113. },
  7114. "_disabledColor": {
  7115. "__type__": "cc.Color",
  7116. "r": 124,
  7117. "g": 124,
  7118. "b": 124,
  7119. "a": 255
  7120. },
  7121. "_normalSprite": {
  7122. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  7123. "__expectedType__": "cc.SpriteFrame"
  7124. },
  7125. "_hoverSprite": {
  7126. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  7127. "__expectedType__": "cc.SpriteFrame"
  7128. },
  7129. "_pressedSprite": {
  7130. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  7131. "__expectedType__": "cc.SpriteFrame"
  7132. },
  7133. "_disabledSprite": {
  7134. "__uuid__": "48ad8695-fc4c-416f-b25d-11ca2119a37d@f9941",
  7135. "__expectedType__": "cc.SpriteFrame"
  7136. },
  7137. "_duration": 0.1,
  7138. "_zoomScale": 1.2,
  7139. "_target": {
  7140. "__id__": 191
  7141. },
  7142. "_id": "2ewEGO+npD5Yi774ZON+O8"
  7143. },
  7144. {
  7145. "__type__": "cc.ClickEvent",
  7146. "target": {
  7147. "__id__": 180
  7148. },
  7149. "component": "",
  7150. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  7151. "handler": "backHomeBtn",
  7152. "customEventData": ""
  7153. },
  7154. {
  7155. "__type__": "cc.Node",
  7156. "_name": "EnterGameBtn",
  7157. "_objFlags": 0,
  7158. "_parent": {
  7159. "__id__": 180
  7160. },
  7161. "_children": [
  7162. {
  7163. "__id__": 200
  7164. }
  7165. ],
  7166. "_active": true,
  7167. "_components": [
  7168. {
  7169. "__id__": 203
  7170. },
  7171. {
  7172. "__id__": 204
  7173. },
  7174. {
  7175. "__id__": 205
  7176. }
  7177. ],
  7178. "_prefab": null,
  7179. "_lpos": {
  7180. "__type__": "cc.Vec3",
  7181. "x": 274.528,
  7182. "y": -267.351,
  7183. "z": 0
  7184. },
  7185. "_lrot": {
  7186. "__type__": "cc.Quat",
  7187. "x": 0,
  7188. "y": 0,
  7189. "z": 0,
  7190. "w": 1
  7191. },
  7192. "_lscale": {
  7193. "__type__": "cc.Vec3",
  7194. "x": 1,
  7195. "y": 1,
  7196. "z": 1
  7197. },
  7198. "_mobility": 0,
  7199. "_layer": 33554432,
  7200. "_euler": {
  7201. "__type__": "cc.Vec3",
  7202. "x": 0,
  7203. "y": 0,
  7204. "z": 0
  7205. },
  7206. "_id": "d96f/sKyhH8pWYrtD2NvpM"
  7207. },
  7208. {
  7209. "__type__": "cc.Node",
  7210. "_name": "Label",
  7211. "_objFlags": 512,
  7212. "_parent": {
  7213. "__id__": 199
  7214. },
  7215. "_children": [],
  7216. "_active": true,
  7217. "_components": [
  7218. {
  7219. "__id__": 201
  7220. },
  7221. {
  7222. "__id__": 202
  7223. }
  7224. ],
  7225. "_prefab": null,
  7226. "_lpos": {
  7227. "__type__": "cc.Vec3",
  7228. "x": 1.5368852459016438,
  7229. "y": 6.147540983606557,
  7230. "z": 0
  7231. },
  7232. "_lrot": {
  7233. "__type__": "cc.Quat",
  7234. "x": 0,
  7235. "y": 0,
  7236. "z": 0,
  7237. "w": 1
  7238. },
  7239. "_lscale": {
  7240. "__type__": "cc.Vec3",
  7241. "x": 1,
  7242. "y": 1,
  7243. "z": 1
  7244. },
  7245. "_mobility": 0,
  7246. "_layer": 33554432,
  7247. "_euler": {
  7248. "__type__": "cc.Vec3",
  7249. "x": 0,
  7250. "y": 0,
  7251. "z": 0
  7252. },
  7253. "_id": "1foVSXWopEjbWb7Y58M752"
  7254. },
  7255. {
  7256. "__type__": "cc.UITransform",
  7257. "_name": "",
  7258. "_objFlags": 0,
  7259. "node": {
  7260. "__id__": 200
  7261. },
  7262. "_enabled": true,
  7263. "__prefab": null,
  7264. "_contentSize": {
  7265. "__type__": "cc.Size",
  7266. "width": 312.09016393442624,
  7267. "height": 70.73770491803279
  7268. },
  7269. "_anchorPoint": {
  7270. "__type__": "cc.Vec2",
  7271. "x": 0.5,
  7272. "y": 0.5
  7273. },
  7274. "_id": "bbGJuCyZNC/Z6g8wMi8fTg"
  7275. },
  7276. {
  7277. "__type__": "cc.Label",
  7278. "_name": "",
  7279. "_objFlags": 0,
  7280. "node": {
  7281. "__id__": 200
  7282. },
  7283. "_enabled": true,
  7284. "__prefab": null,
  7285. "_customMaterial": null,
  7286. "_srcBlendFactor": 2,
  7287. "_dstBlendFactor": 4,
  7288. "_color": {
  7289. "__type__": "cc.Color",
  7290. "r": 255,
  7291. "g": 255,
  7292. "b": 255,
  7293. "a": 255
  7294. },
  7295. "_string": "下一关",
  7296. "_horizontalAlign": 1,
  7297. "_verticalAlign": 1,
  7298. "_actualFontSize": 55,
  7299. "_fontSize": 55,
  7300. "_fontFamily": "Arial",
  7301. "_lineHeight": 70,
  7302. "_overflow": 1,
  7303. "_enableWrapText": false,
  7304. "_font": null,
  7305. "_isSystemFontUsed": true,
  7306. "_spacingX": 0,
  7307. "_isItalic": false,
  7308. "_isBold": false,
  7309. "_isUnderline": false,
  7310. "_underlineHeight": 2,
  7311. "_cacheMode": 0,
  7312. "_id": "66MvUFQAZAgoxN7VIo9CQx"
  7313. },
  7314. {
  7315. "__type__": "cc.UITransform",
  7316. "_name": "",
  7317. "_objFlags": 0,
  7318. "node": {
  7319. "__id__": 199
  7320. },
  7321. "_enabled": true,
  7322. "__prefab": null,
  7323. "_contentSize": {
  7324. "__type__": "cc.Size",
  7325. "width": 411,
  7326. "height": 144
  7327. },
  7328. "_anchorPoint": {
  7329. "__type__": "cc.Vec2",
  7330. "x": 0.5,
  7331. "y": 0.5
  7332. },
  7333. "_id": "3e6wJfzD1G+LRjhvK36HjE"
  7334. },
  7335. {
  7336. "__type__": "cc.Sprite",
  7337. "_name": "",
  7338. "_objFlags": 0,
  7339. "node": {
  7340. "__id__": 199
  7341. },
  7342. "_enabled": true,
  7343. "__prefab": null,
  7344. "_customMaterial": null,
  7345. "_srcBlendFactor": 2,
  7346. "_dstBlendFactor": 4,
  7347. "_color": {
  7348. "__type__": "cc.Color",
  7349. "r": 255,
  7350. "g": 255,
  7351. "b": 255,
  7352. "a": 255
  7353. },
  7354. "_spriteFrame": {
  7355. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  7356. "__expectedType__": "cc.SpriteFrame"
  7357. },
  7358. "_type": 1,
  7359. "_fillType": 0,
  7360. "_sizeMode": 0,
  7361. "_fillCenter": {
  7362. "__type__": "cc.Vec2",
  7363. "x": 0,
  7364. "y": 0
  7365. },
  7366. "_fillStart": 0,
  7367. "_fillRange": 0,
  7368. "_isTrimmedMode": true,
  7369. "_useGrayscale": false,
  7370. "_atlas": null,
  7371. "_id": "49stwRG7xGy6/NfKKXONkv"
  7372. },
  7373. {
  7374. "__type__": "cc.Button",
  7375. "_name": "",
  7376. "_objFlags": 0,
  7377. "node": {
  7378. "__id__": 199
  7379. },
  7380. "_enabled": true,
  7381. "__prefab": null,
  7382. "clickEvents": [
  7383. {
  7384. "__id__": 206
  7385. }
  7386. ],
  7387. "_interactable": true,
  7388. "_transition": 2,
  7389. "_normalColor": {
  7390. "__type__": "cc.Color",
  7391. "r": 214,
  7392. "g": 214,
  7393. "b": 214,
  7394. "a": 255
  7395. },
  7396. "_hoverColor": {
  7397. "__type__": "cc.Color",
  7398. "r": 211,
  7399. "g": 211,
  7400. "b": 211,
  7401. "a": 255
  7402. },
  7403. "_pressedColor": {
  7404. "__type__": "cc.Color",
  7405. "r": 255,
  7406. "g": 255,
  7407. "b": 255,
  7408. "a": 255
  7409. },
  7410. "_disabledColor": {
  7411. "__type__": "cc.Color",
  7412. "r": 124,
  7413. "g": 124,
  7414. "b": 124,
  7415. "a": 255
  7416. },
  7417. "_normalSprite": {
  7418. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  7419. "__expectedType__": "cc.SpriteFrame"
  7420. },
  7421. "_hoverSprite": {
  7422. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  7423. "__expectedType__": "cc.SpriteFrame"
  7424. },
  7425. "_pressedSprite": {
  7426. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  7427. "__expectedType__": "cc.SpriteFrame"
  7428. },
  7429. "_disabledSprite": {
  7430. "__uuid__": "0e137a32-df23-417e-9f2d-297dbcad92fb@f9941",
  7431. "__expectedType__": "cc.SpriteFrame"
  7432. },
  7433. "_duration": 0.1,
  7434. "_zoomScale": 1.2,
  7435. "_target": {
  7436. "__id__": 199
  7437. },
  7438. "_id": "47RANVaJlKX53eA7d96CEb"
  7439. },
  7440. {
  7441. "__type__": "cc.ClickEvent",
  7442. "target": {
  7443. "__id__": 180
  7444. },
  7445. "component": "",
  7446. "_componentId": "95501FTS+FP8aW52qXh/kCV",
  7447. "handler": "levelBtn",
  7448. "customEventData": ""
  7449. },
  7450. {
  7451. "__type__": "cc.Node",
  7452. "_name": "curLevelScore",
  7453. "_objFlags": 0,
  7454. "_parent": {
  7455. "__id__": 180
  7456. },
  7457. "_children": [],
  7458. "_active": true,
  7459. "_components": [
  7460. {
  7461. "__id__": 208
  7462. },
  7463. {
  7464. "__id__": 209
  7465. }
  7466. ],
  7467. "_prefab": null,
  7468. "_lpos": {
  7469. "__type__": "cc.Vec3",
  7470. "x": 360.28,
  7471. "y": -41.767,
  7472. "z": 0
  7473. },
  7474. "_lrot": {
  7475. "__type__": "cc.Quat",
  7476. "x": 0,
  7477. "y": 0,
  7478. "z": 0,
  7479. "w": 1
  7480. },
  7481. "_lscale": {
  7482. "__type__": "cc.Vec3",
  7483. "x": 1,
  7484. "y": 1,
  7485. "z": 1
  7486. },
  7487. "_mobility": 0,
  7488. "_layer": 33554432,
  7489. "_euler": {
  7490. "__type__": "cc.Vec3",
  7491. "x": 0,
  7492. "y": 0,
  7493. "z": 0
  7494. },
  7495. "_id": "c2t2qam5FJSa7f+VRY4xwL"
  7496. },
  7497. {
  7498. "__type__": "cc.UITransform",
  7499. "_name": "",
  7500. "_objFlags": 0,
  7501. "node": {
  7502. "__id__": 207
  7503. },
  7504. "_enabled": true,
  7505. "__prefab": null,
  7506. "_contentSize": {
  7507. "__type__": "cc.Size",
  7508. "width": 560.454,
  7509. "height": 214.07999999999998
  7510. },
  7511. "_anchorPoint": {
  7512. "__type__": "cc.Vec2",
  7513. "x": 0.5,
  7514. "y": 0.5
  7515. },
  7516. "_id": "54iE2ohRhF4ovuxzUVzZli"
  7517. },
  7518. {
  7519. "__type__": "cc.Label",
  7520. "_name": "",
  7521. "_objFlags": 0,
  7522. "node": {
  7523. "__id__": 207
  7524. },
  7525. "_enabled": true,
  7526. "__prefab": null,
  7527. "_customMaterial": null,
  7528. "_srcBlendFactor": 2,
  7529. "_dstBlendFactor": 4,
  7530. "_color": {
  7531. "__type__": "cc.Color",
  7532. "r": 169,
  7533. "g": 79,
  7534. "b": 9,
  7535. "a": 255
  7536. },
  7537. "_string": "本关得分:1",
  7538. "_horizontalAlign": 0,
  7539. "_verticalAlign": 1,
  7540. "_actualFontSize": 60,
  7541. "_fontSize": 60,
  7542. "_fontFamily": "Arial",
  7543. "_lineHeight": 100,
  7544. "_overflow": 1,
  7545. "_enableWrapText": true,
  7546. "_font": null,
  7547. "_isSystemFontUsed": true,
  7548. "_spacingX": 0,
  7549. "_isItalic": false,
  7550. "_isBold": true,
  7551. "_isUnderline": false,
  7552. "_underlineHeight": 2,
  7553. "_cacheMode": 0,
  7554. "_id": "d1pwclNt1CxLkmmf34GWOc"
  7555. },
  7556. {
  7557. "__type__": "cc.Node",
  7558. "_name": "TotalScore",
  7559. "_objFlags": 0,
  7560. "_parent": {
  7561. "__id__": 180
  7562. },
  7563. "_children": [],
  7564. "_active": true,
  7565. "_components": [
  7566. {
  7567. "__id__": 211
  7568. },
  7569. {
  7570. "__id__": 212
  7571. }
  7572. ],
  7573. "_prefab": null,
  7574. "_lpos": {
  7575. "__type__": "cc.Vec3",
  7576. "x": -186.859,
  7577. "y": -41.767,
  7578. "z": 0
  7579. },
  7580. "_lrot": {
  7581. "__type__": "cc.Quat",
  7582. "x": 0,
  7583. "y": 0,
  7584. "z": 0,
  7585. "w": 1
  7586. },
  7587. "_lscale": {
  7588. "__type__": "cc.Vec3",
  7589. "x": 1,
  7590. "y": 1,
  7591. "z": 1
  7592. },
  7593. "_mobility": 0,
  7594. "_layer": 33554432,
  7595. "_euler": {
  7596. "__type__": "cc.Vec3",
  7597. "x": 0,
  7598. "y": 0,
  7599. "z": 0
  7600. },
  7601. "_id": "56X7kQMiFNj5CA75HojXOp"
  7602. },
  7603. {
  7604. "__type__": "cc.UITransform",
  7605. "_name": "",
  7606. "_objFlags": 0,
  7607. "node": {
  7608. "__id__": 210
  7609. },
  7610. "_enabled": true,
  7611. "__prefab": null,
  7612. "_contentSize": {
  7613. "__type__": "cc.Size",
  7614. "width": 560.454,
  7615. "height": 214.07999999999998
  7616. },
  7617. "_anchorPoint": {
  7618. "__type__": "cc.Vec2",
  7619. "x": 0.5,
  7620. "y": 0.5
  7621. },
  7622. "_id": "91F5VNHjNIgqN03rfwh4Xc"
  7623. },
  7624. {
  7625. "__type__": "cc.Label",
  7626. "_name": "",
  7627. "_objFlags": 0,
  7628. "node": {
  7629. "__id__": 210
  7630. },
  7631. "_enabled": true,
  7632. "__prefab": null,
  7633. "_customMaterial": null,
  7634. "_srcBlendFactor": 2,
  7635. "_dstBlendFactor": 4,
  7636. "_color": {
  7637. "__type__": "cc.Color",
  7638. "r": 169,
  7639. "g": 79,
  7640. "b": 9,
  7641. "a": 255
  7642. },
  7643. "_string": "总得分:",
  7644. "_horizontalAlign": 0,
  7645. "_verticalAlign": 1,
  7646. "_actualFontSize": 60,
  7647. "_fontSize": 60,
  7648. "_fontFamily": "Arial",
  7649. "_lineHeight": 100,
  7650. "_overflow": 1,
  7651. "_enableWrapText": true,
  7652. "_font": null,
  7653. "_isSystemFontUsed": true,
  7654. "_spacingX": 0,
  7655. "_isItalic": false,
  7656. "_isBold": true,
  7657. "_isUnderline": false,
  7658. "_underlineHeight": 2,
  7659. "_cacheMode": 0,
  7660. "_id": "a8y+G4xQpEz7aAHiOFYm5L"
  7661. },
  7662. {
  7663. "__type__": "cc.Node",
  7664. "_name": "resultIcon",
  7665. "_objFlags": 0,
  7666. "_parent": {
  7667. "__id__": 180
  7668. },
  7669. "_children": [],
  7670. "_active": true,
  7671. "_components": [
  7672. {
  7673. "__id__": 214
  7674. },
  7675. {
  7676. "__id__": 215
  7677. }
  7678. ],
  7679. "_prefab": null,
  7680. "_lpos": {
  7681. "__type__": "cc.Vec3",
  7682. "x": 0,
  7683. "y": 350.842,
  7684. "z": 0
  7685. },
  7686. "_lrot": {
  7687. "__type__": "cc.Quat",
  7688. "x": 0,
  7689. "y": 0,
  7690. "z": 0,
  7691. "w": 1
  7692. },
  7693. "_lscale": {
  7694. "__type__": "cc.Vec3",
  7695. "x": 1,
  7696. "y": 1,
  7697. "z": 1
  7698. },
  7699. "_mobility": 0,
  7700. "_layer": 33554432,
  7701. "_euler": {
  7702. "__type__": "cc.Vec3",
  7703. "x": 0,
  7704. "y": 0,
  7705. "z": 0
  7706. },
  7707. "_id": "3bMre/6AhI84Sm9BsZ6isN"
  7708. },
  7709. {
  7710. "__type__": "cc.UITransform",
  7711. "_name": "",
  7712. "_objFlags": 0,
  7713. "node": {
  7714. "__id__": 213
  7715. },
  7716. "_enabled": true,
  7717. "__prefab": null,
  7718. "_contentSize": {
  7719. "__type__": "cc.Size",
  7720. "width": 276,
  7721. "height": 276
  7722. },
  7723. "_anchorPoint": {
  7724. "__type__": "cc.Vec2",
  7725. "x": 0.5,
  7726. "y": 0.5
  7727. },
  7728. "_id": "48m3xY/NRLfYMgrO6vypef"
  7729. },
  7730. {
  7731. "__type__": "cc.Sprite",
  7732. "_name": "",
  7733. "_objFlags": 0,
  7734. "node": {
  7735. "__id__": 213
  7736. },
  7737. "_enabled": true,
  7738. "__prefab": null,
  7739. "_customMaterial": null,
  7740. "_srcBlendFactor": 2,
  7741. "_dstBlendFactor": 4,
  7742. "_color": {
  7743. "__type__": "cc.Color",
  7744. "r": 255,
  7745. "g": 255,
  7746. "b": 255,
  7747. "a": 255
  7748. },
  7749. "_spriteFrame": {
  7750. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  7751. "__expectedType__": "cc.SpriteFrame"
  7752. },
  7753. "_type": 0,
  7754. "_fillType": 0,
  7755. "_sizeMode": 1,
  7756. "_fillCenter": {
  7757. "__type__": "cc.Vec2",
  7758. "x": 0,
  7759. "y": 0
  7760. },
  7761. "_fillStart": 0,
  7762. "_fillRange": 0,
  7763. "_isTrimmedMode": true,
  7764. "_useGrayscale": false,
  7765. "_atlas": null,
  7766. "_id": "c99zq9dbVI9LheJj/7p9g9"
  7767. },
  7768. {
  7769. "__type__": "cc.UITransform",
  7770. "_name": "",
  7771. "_objFlags": 0,
  7772. "node": {
  7773. "__id__": 180
  7774. },
  7775. "_enabled": true,
  7776. "__prefab": null,
  7777. "_contentSize": {
  7778. "__type__": "cc.Size",
  7779. "width": 1311,
  7780. "height": 806
  7781. },
  7782. "_anchorPoint": {
  7783. "__type__": "cc.Vec2",
  7784. "x": 0.5,
  7785. "y": 0.5
  7786. },
  7787. "_id": "e2M9hKVbJOpLEfbwyRzof+"
  7788. },
  7789. {
  7790. "__type__": "cc.Sprite",
  7791. "_name": "",
  7792. "_objFlags": 0,
  7793. "node": {
  7794. "__id__": 180
  7795. },
  7796. "_enabled": false,
  7797. "__prefab": null,
  7798. "_customMaterial": null,
  7799. "_srcBlendFactor": 2,
  7800. "_dstBlendFactor": 4,
  7801. "_color": {
  7802. "__type__": "cc.Color",
  7803. "r": 255,
  7804. "g": 255,
  7805. "b": 255,
  7806. "a": 255
  7807. },
  7808. "_spriteFrame": {
  7809. "__uuid__": "28765e2f-040a-4c65-8e8c-f9d0bb79d863@f9941",
  7810. "__expectedType__": "cc.SpriteFrame"
  7811. },
  7812. "_type": 1,
  7813. "_fillType": 0,
  7814. "_sizeMode": 0,
  7815. "_fillCenter": {
  7816. "__type__": "cc.Vec2",
  7817. "x": 0,
  7818. "y": 0
  7819. },
  7820. "_fillStart": 0,
  7821. "_fillRange": 0,
  7822. "_isTrimmedMode": true,
  7823. "_useGrayscale": false,
  7824. "_atlas": null,
  7825. "_id": "ebtJxL2z5Ko5BssboLF8rv"
  7826. },
  7827. {
  7828. "__type__": "95501FTS+FP8aW52qXh/kCV",
  7829. "_name": "",
  7830. "_objFlags": 0,
  7831. "node": {
  7832. "__id__": 180
  7833. },
  7834. "_enabled": true,
  7835. "__prefab": null,
  7836. "successBg": {
  7837. "__uuid__": "52fd76ba-30bd-4cda-965e-0427d6c30cc1@f9941",
  7838. "__expectedType__": "cc.SpriteFrame"
  7839. },
  7840. "failBg": {
  7841. "__uuid__": "0e99a021-a77f-4e02-8d9b-37c68dbe2584@f9941",
  7842. "__expectedType__": "cc.SpriteFrame"
  7843. },
  7844. "curLevelLabel": {
  7845. "__id__": 190
  7846. },
  7847. "curScoreLabel": {
  7848. "__id__": 209
  7849. },
  7850. "totalScoreLabel": {
  7851. "__id__": 212
  7852. },
  7853. "btnLabel": {
  7854. "__id__": 202
  7855. },
  7856. "reusltIcon": {
  7857. "__id__": 213
  7858. },
  7859. "_id": "50PulxgL1JQqf0g2NOZtHI"
  7860. },
  7861. {
  7862. "__type__": "cc.BlockInputEvents",
  7863. "_name": "",
  7864. "_objFlags": 0,
  7865. "node": {
  7866. "__id__": 180
  7867. },
  7868. "_enabled": true,
  7869. "__prefab": null,
  7870. "_id": "5aS/Nz0NxM6q+Rzl7lrbJs"
  7871. },
  7872. {
  7873. "__type__": "cc.Node",
  7874. "_objFlags": 512,
  7875. "_parent": {
  7876. "__id__": 6
  7877. },
  7878. "_prefab": {
  7879. "__id__": 221
  7880. },
  7881. "__editorExtras__": {}
  7882. },
  7883. {
  7884. "__type__": "cc.PrefabInfo",
  7885. "root": {
  7886. "__id__": 220
  7887. },
  7888. "asset": {
  7889. "__uuid__": "7d17bef9-8f82-415e-8928-f2c7da3decf4",
  7890. "__expectedType__": "cc.Prefab"
  7891. },
  7892. "fileId": "f5VirVdr1A/q1iUlQGtO+X",
  7893. "instance": {
  7894. "__id__": 222
  7895. },
  7896. "targetOverrides": null,
  7897. "nestedPrefabInstanceRoots": null
  7898. },
  7899. {
  7900. "__type__": "cc.PrefabInstance",
  7901. "fileId": "f0jZuVJ7REqZ0+6Qh6IxiK",
  7902. "prefabRootNode": null,
  7903. "mountedChildren": [],
  7904. "mountedComponents": [
  7905. {
  7906. "__id__": 223
  7907. }
  7908. ],
  7909. "propertyOverrides": [
  7910. {
  7911. "__id__": 226
  7912. },
  7913. {
  7914. "__id__": 228
  7915. },
  7916. {
  7917. "__id__": 229
  7918. },
  7919. {
  7920. "__id__": 230
  7921. },
  7922. {
  7923. "__id__": 231
  7924. }
  7925. ],
  7926. "removedComponents": []
  7927. },
  7928. {
  7929. "__type__": "cc.MountedComponentsInfo",
  7930. "targetInfo": {
  7931. "__id__": 224
  7932. },
  7933. "components": [
  7934. {
  7935. "__id__": 225
  7936. }
  7937. ]
  7938. },
  7939. {
  7940. "__type__": "cc.TargetInfo",
  7941. "localID": [
  7942. "f5VirVdr1A/q1iUlQGtO+X"
  7943. ]
  7944. },
  7945. {
  7946. "__type__": "cc.BlockInputEvents",
  7947. "_name": "",
  7948. "_objFlags": 0,
  7949. "__editorExtras__": {
  7950. "mountedRoot": {
  7951. "__id__": 220
  7952. }
  7953. },
  7954. "node": {
  7955. "__id__": 220
  7956. },
  7957. "_enabled": true,
  7958. "__prefab": null,
  7959. "_id": "07r8anbvNG/6BWBGGtLhOU"
  7960. },
  7961. {
  7962. "__type__": "CCPropertyOverrideInfo",
  7963. "targetInfo": {
  7964. "__id__": 227
  7965. },
  7966. "propertyPath": [
  7967. "_name"
  7968. ],
  7969. "value": "PlayAEndTip"
  7970. },
  7971. {
  7972. "__type__": "cc.TargetInfo",
  7973. "localID": [
  7974. "f5VirVdr1A/q1iUlQGtO+X"
  7975. ]
  7976. },
  7977. {
  7978. "__type__": "CCPropertyOverrideInfo",
  7979. "targetInfo": {
  7980. "__id__": 227
  7981. },
  7982. "propertyPath": [
  7983. "_lpos"
  7984. ],
  7985. "value": {
  7986. "__type__": "cc.Vec3",
  7987. "x": 0,
  7988. "y": 0,
  7989. "z": 0
  7990. }
  7991. },
  7992. {
  7993. "__type__": "CCPropertyOverrideInfo",
  7994. "targetInfo": {
  7995. "__id__": 227
  7996. },
  7997. "propertyPath": [
  7998. "_lrot"
  7999. ],
  8000. "value": {
  8001. "__type__": "cc.Quat",
  8002. "x": 0,
  8003. "y": 0,
  8004. "z": 0,
  8005. "w": 1
  8006. }
  8007. },
  8008. {
  8009. "__type__": "CCPropertyOverrideInfo",
  8010. "targetInfo": {
  8011. "__id__": 227
  8012. },
  8013. "propertyPath": [
  8014. "_euler"
  8015. ],
  8016. "value": {
  8017. "__type__": "cc.Vec3",
  8018. "x": 0,
  8019. "y": 0,
  8020. "z": 0
  8021. }
  8022. },
  8023. {
  8024. "__type__": "CCPropertyOverrideInfo",
  8025. "targetInfo": {
  8026. "__id__": 227
  8027. },
  8028. "propertyPath": [
  8029. "_active"
  8030. ],
  8031. "value": false
  8032. },
  8033. {
  8034. "__type__": "cc.Node",
  8035. "_name": "Full",
  8036. "_objFlags": 0,
  8037. "_parent": {
  8038. "__id__": 6
  8039. },
  8040. "_children": [
  8041. {
  8042. "__id__": 233
  8043. },
  8044. {
  8045. "__id__": 242
  8046. },
  8047. {
  8048. "__id__": 251
  8049. }
  8050. ],
  8051. "_active": true,
  8052. "_components": [
  8053. {
  8054. "__id__": 260
  8055. }
  8056. ],
  8057. "_prefab": null,
  8058. "_lpos": {
  8059. "__type__": "cc.Vec3",
  8060. "x": 238.23,
  8061. "y": 0,
  8062. "z": 0
  8063. },
  8064. "_lrot": {
  8065. "__type__": "cc.Quat",
  8066. "x": 0,
  8067. "y": 0,
  8068. "z": 0,
  8069. "w": 1
  8070. },
  8071. "_lscale": {
  8072. "__type__": "cc.Vec3",
  8073. "x": 1,
  8074. "y": 1,
  8075. "z": 1
  8076. },
  8077. "_mobility": 0,
  8078. "_layer": 33554432,
  8079. "_euler": {
  8080. "__type__": "cc.Vec3",
  8081. "x": 0,
  8082. "y": 0,
  8083. "z": 0
  8084. },
  8085. "_id": "66bcmRoDVJr7mAO/zWrM6a"
  8086. },
  8087. {
  8088. "__type__": "cc.Node",
  8089. "_name": "GetScoreBg-001",
  8090. "_objFlags": 0,
  8091. "_parent": {
  8092. "__id__": 232
  8093. },
  8094. "_children": [
  8095. {
  8096. "__id__": 234
  8097. }
  8098. ],
  8099. "_active": true,
  8100. "_components": [
  8101. {
  8102. "__id__": 240
  8103. },
  8104. {
  8105. "__id__": 241
  8106. }
  8107. ],
  8108. "_prefab": null,
  8109. "_lpos": {
  8110. "__type__": "cc.Vec3",
  8111. "x": -626.6950295857988,
  8112. "y": 584.791,
  8113. "z": 0
  8114. },
  8115. "_lrot": {
  8116. "__type__": "cc.Quat",
  8117. "x": 0,
  8118. "y": 0,
  8119. "z": 0,
  8120. "w": 1
  8121. },
  8122. "_lscale": {
  8123. "__type__": "cc.Vec3",
  8124. "x": 1,
  8125. "y": 1,
  8126. "z": 1
  8127. },
  8128. "_mobility": 0,
  8129. "_layer": 33554432,
  8130. "_euler": {
  8131. "__type__": "cc.Vec3",
  8132. "x": 0,
  8133. "y": 0,
  8134. "z": 0
  8135. },
  8136. "_id": "7aBXCm+khLUqjKxwb+R/m7"
  8137. },
  8138. {
  8139. "__type__": "cc.Node",
  8140. "_name": "GetScore",
  8141. "_objFlags": 0,
  8142. "_parent": {
  8143. "__id__": 233
  8144. },
  8145. "_children": [
  8146. {
  8147. "__id__": 235
  8148. }
  8149. ],
  8150. "_active": true,
  8151. "_components": [
  8152. {
  8153. "__id__": 238
  8154. },
  8155. {
  8156. "__id__": 239
  8157. }
  8158. ],
  8159. "_prefab": null,
  8160. "_lpos": {
  8161. "__type__": "cc.Vec3",
  8162. "x": -100.368,
  8163. "y": 0.904,
  8164. "z": 0
  8165. },
  8166. "_lrot": {
  8167. "__type__": "cc.Quat",
  8168. "x": 0,
  8169. "y": 0,
  8170. "z": 0,
  8171. "w": 1
  8172. },
  8173. "_lscale": {
  8174. "__type__": "cc.Vec3",
  8175. "x": 1,
  8176. "y": 1,
  8177. "z": 1
  8178. },
  8179. "_mobility": 0,
  8180. "_layer": 33554432,
  8181. "_euler": {
  8182. "__type__": "cc.Vec3",
  8183. "x": 0,
  8184. "y": 0,
  8185. "z": 0
  8186. },
  8187. "_id": "2dlFpBou9N4qEx8zh/au+0"
  8188. },
  8189. {
  8190. "__type__": "cc.Node",
  8191. "_name": "Score",
  8192. "_objFlags": 0,
  8193. "_parent": {
  8194. "__id__": 234
  8195. },
  8196. "_children": [],
  8197. "_active": true,
  8198. "_components": [
  8199. {
  8200. "__id__": 236
  8201. },
  8202. {
  8203. "__id__": 237
  8204. }
  8205. ],
  8206. "_prefab": null,
  8207. "_lpos": {
  8208. "__type__": "cc.Vec3",
  8209. "x": 139.812,
  8210. "y": 0.043,
  8211. "z": 0
  8212. },
  8213. "_lrot": {
  8214. "__type__": "cc.Quat",
  8215. "x": 0,
  8216. "y": 0,
  8217. "z": 0,
  8218. "w": 1
  8219. },
  8220. "_lscale": {
  8221. "__type__": "cc.Vec3",
  8222. "x": 1,
  8223. "y": 1,
  8224. "z": 1
  8225. },
  8226. "_mobility": 0,
  8227. "_layer": 33554432,
  8228. "_euler": {
  8229. "__type__": "cc.Vec3",
  8230. "x": 0,
  8231. "y": 0,
  8232. "z": 0
  8233. },
  8234. "_id": "44dEVnyUdGJ4oVkWzLyKm0"
  8235. },
  8236. {
  8237. "__type__": "cc.UITransform",
  8238. "_name": "",
  8239. "_objFlags": 0,
  8240. "node": {
  8241. "__id__": 235
  8242. },
  8243. "_enabled": true,
  8244. "__prefab": null,
  8245. "_contentSize": {
  8246. "__type__": "cc.Size",
  8247. "width": 139.04,
  8248. "height": 50.4
  8249. },
  8250. "_anchorPoint": {
  8251. "__type__": "cc.Vec2",
  8252. "x": 0.5,
  8253. "y": 0.5
  8254. },
  8255. "_id": "aeatAHONRFdq/5YremdGg5"
  8256. },
  8257. {
  8258. "__type__": "cc.Label",
  8259. "_name": "",
  8260. "_objFlags": 0,
  8261. "node": {
  8262. "__id__": 235
  8263. },
  8264. "_enabled": true,
  8265. "__prefab": null,
  8266. "_customMaterial": null,
  8267. "_srcBlendFactor": 2,
  8268. "_dstBlendFactor": 4,
  8269. "_color": {
  8270. "__type__": "cc.Color",
  8271. "r": 255,
  8272. "g": 255,
  8273. "b": 255,
  8274. "a": 255
  8275. },
  8276. "_string": "0",
  8277. "_horizontalAlign": 0,
  8278. "_verticalAlign": 1,
  8279. "_actualFontSize": 50,
  8280. "_fontSize": 50,
  8281. "_fontFamily": "Arial",
  8282. "_lineHeight": 40,
  8283. "_overflow": 1,
  8284. "_enableWrapText": true,
  8285. "_font": null,
  8286. "_isSystemFontUsed": true,
  8287. "_spacingX": 0,
  8288. "_isItalic": false,
  8289. "_isBold": false,
  8290. "_isUnderline": false,
  8291. "_underlineHeight": 2,
  8292. "_cacheMode": 0,
  8293. "_id": "95xTzz/ptP9bi+VwziUVOX"
  8294. },
  8295. {
  8296. "__type__": "cc.UITransform",
  8297. "_name": "",
  8298. "_objFlags": 0,
  8299. "node": {
  8300. "__id__": 234
  8301. },
  8302. "_enabled": true,
  8303. "__prefab": null,
  8304. "_contentSize": {
  8305. "__type__": "cc.Size",
  8306. "width": 100,
  8307. "height": 88.2
  8308. },
  8309. "_anchorPoint": {
  8310. "__type__": "cc.Vec2",
  8311. "x": 0.5,
  8312. "y": 0.5
  8313. },
  8314. "_id": "c7XkN7nSxP7qcj/G58zTJq"
  8315. },
  8316. {
  8317. "__type__": "cc.Label",
  8318. "_name": "",
  8319. "_objFlags": 0,
  8320. "node": {
  8321. "__id__": 234
  8322. },
  8323. "_enabled": true,
  8324. "__prefab": null,
  8325. "_customMaterial": null,
  8326. "_srcBlendFactor": 2,
  8327. "_dstBlendFactor": 4,
  8328. "_color": {
  8329. "__type__": "cc.Color",
  8330. "r": 255,
  8331. "g": 255,
  8332. "b": 255,
  8333. "a": 255
  8334. },
  8335. "_string": "得分",
  8336. "_horizontalAlign": 1,
  8337. "_verticalAlign": 1,
  8338. "_actualFontSize": 50,
  8339. "_fontSize": 50,
  8340. "_fontFamily": "Arial",
  8341. "_lineHeight": 70,
  8342. "_overflow": 0,
  8343. "_enableWrapText": true,
  8344. "_font": null,
  8345. "_isSystemFontUsed": true,
  8346. "_spacingX": 0,
  8347. "_isItalic": false,
  8348. "_isBold": false,
  8349. "_isUnderline": false,
  8350. "_underlineHeight": 2,
  8351. "_cacheMode": 0,
  8352. "_id": "936102nIBEb6lfaFTWnF76"
  8353. },
  8354. {
  8355. "__type__": "cc.UITransform",
  8356. "_name": "",
  8357. "_objFlags": 0,
  8358. "node": {
  8359. "__id__": 233
  8360. },
  8361. "_enabled": true,
  8362. "__prefab": null,
  8363. "_contentSize": {
  8364. "__type__": "cc.Size",
  8365. "width": 339.88994082840236,
  8366. "height": 110
  8367. },
  8368. "_anchorPoint": {
  8369. "__type__": "cc.Vec2",
  8370. "x": 0.5,
  8371. "y": 0.5
  8372. },
  8373. "_id": "c1I0u8AgtKVYew7N+QBLGy"
  8374. },
  8375. {
  8376. "__type__": "cc.Sprite",
  8377. "_name": "",
  8378. "_objFlags": 0,
  8379. "node": {
  8380. "__id__": 233
  8381. },
  8382. "_enabled": true,
  8383. "__prefab": null,
  8384. "_customMaterial": null,
  8385. "_srcBlendFactor": 2,
  8386. "_dstBlendFactor": 4,
  8387. "_color": {
  8388. "__type__": "cc.Color",
  8389. "r": 255,
  8390. "g": 255,
  8391. "b": 255,
  8392. "a": 255
  8393. },
  8394. "_spriteFrame": {
  8395. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  8396. "__expectedType__": "cc.SpriteFrame"
  8397. },
  8398. "_type": 0,
  8399. "_fillType": 0,
  8400. "_sizeMode": 0,
  8401. "_fillCenter": {
  8402. "__type__": "cc.Vec2",
  8403. "x": 0,
  8404. "y": 0
  8405. },
  8406. "_fillStart": 0,
  8407. "_fillRange": 0,
  8408. "_isTrimmedMode": true,
  8409. "_useGrayscale": false,
  8410. "_atlas": null,
  8411. "_id": "103k0ntThJELcV3+IfPrvW"
  8412. },
  8413. {
  8414. "__type__": "cc.Node",
  8415. "_name": "TimeBg-001",
  8416. "_objFlags": 0,
  8417. "_parent": {
  8418. "__id__": 232
  8419. },
  8420. "_children": [
  8421. {
  8422. "__id__": 243
  8423. }
  8424. ],
  8425. "_active": true,
  8426. "_components": [
  8427. {
  8428. "__id__": 249
  8429. },
  8430. {
  8431. "__id__": 250
  8432. }
  8433. ],
  8434. "_prefab": null,
  8435. "_lpos": {
  8436. "__type__": "cc.Vec3",
  8437. "x": -245.961,
  8438. "y": 584.791,
  8439. "z": 0
  8440. },
  8441. "_lrot": {
  8442. "__type__": "cc.Quat",
  8443. "x": 0,
  8444. "y": 0,
  8445. "z": 0,
  8446. "w": 1
  8447. },
  8448. "_lscale": {
  8449. "__type__": "cc.Vec3",
  8450. "x": 1,
  8451. "y": 1,
  8452. "z": 1
  8453. },
  8454. "_mobility": 0,
  8455. "_layer": 33554432,
  8456. "_euler": {
  8457. "__type__": "cc.Vec3",
  8458. "x": 0,
  8459. "y": 0,
  8460. "z": 0
  8461. },
  8462. "_id": "72E4endaFA9ZzhffwONnhR"
  8463. },
  8464. {
  8465. "__type__": "cc.Node",
  8466. "_name": "GameTime",
  8467. "_objFlags": 0,
  8468. "_parent": {
  8469. "__id__": 242
  8470. },
  8471. "_children": [
  8472. {
  8473. "__id__": 244
  8474. }
  8475. ],
  8476. "_active": true,
  8477. "_components": [
  8478. {
  8479. "__id__": 247
  8480. },
  8481. {
  8482. "__id__": 248
  8483. }
  8484. ],
  8485. "_prefab": null,
  8486. "_lpos": {
  8487. "__type__": "cc.Vec3",
  8488. "x": 5.195,
  8489. "y": 60.444,
  8490. "z": 0
  8491. },
  8492. "_lrot": {
  8493. "__type__": "cc.Quat",
  8494. "x": 0,
  8495. "y": 0,
  8496. "z": 0,
  8497. "w": 1
  8498. },
  8499. "_lscale": {
  8500. "__type__": "cc.Vec3",
  8501. "x": 1,
  8502. "y": 1,
  8503. "z": 1
  8504. },
  8505. "_mobility": 0,
  8506. "_layer": 33554432,
  8507. "_euler": {
  8508. "__type__": "cc.Vec3",
  8509. "x": 0,
  8510. "y": 0,
  8511. "z": 0
  8512. },
  8513. "_id": "e6x0Gc+TlDGIZXI33TEJb6"
  8514. },
  8515. {
  8516. "__type__": "cc.Node",
  8517. "_name": "TimeLabel",
  8518. "_objFlags": 0,
  8519. "_parent": {
  8520. "__id__": 243
  8521. },
  8522. "_children": [],
  8523. "_active": true,
  8524. "_components": [
  8525. {
  8526. "__id__": 245
  8527. },
  8528. {
  8529. "__id__": 246
  8530. }
  8531. ],
  8532. "_prefab": null,
  8533. "_lpos": {
  8534. "__type__": "cc.Vec3",
  8535. "x": 1.505,
  8536. "y": -57.186,
  8537. "z": 0
  8538. },
  8539. "_lrot": {
  8540. "__type__": "cc.Quat",
  8541. "x": 0,
  8542. "y": 0,
  8543. "z": 0,
  8544. "w": 1
  8545. },
  8546. "_lscale": {
  8547. "__type__": "cc.Vec3",
  8548. "x": 1,
  8549. "y": 1,
  8550. "z": 1
  8551. },
  8552. "_mobility": 0,
  8553. "_layer": 33554432,
  8554. "_euler": {
  8555. "__type__": "cc.Vec3",
  8556. "x": 0,
  8557. "y": 0,
  8558. "z": 0
  8559. },
  8560. "_id": "62RcJSw15H6JpsHUHKtNaH"
  8561. },
  8562. {
  8563. "__type__": "cc.UITransform",
  8564. "_name": "",
  8565. "_objFlags": 0,
  8566. "node": {
  8567. "__id__": 244
  8568. },
  8569. "_enabled": true,
  8570. "__prefab": null,
  8571. "_contentSize": {
  8572. "__type__": "cc.Size",
  8573. "width": 170,
  8574. "height": 50.4
  8575. },
  8576. "_anchorPoint": {
  8577. "__type__": "cc.Vec2",
  8578. "x": 0.5,
  8579. "y": 0.5
  8580. },
  8581. "_id": "7cZarCy31EtKl7ASpygJEo"
  8582. },
  8583. {
  8584. "__type__": "cc.Label",
  8585. "_name": "",
  8586. "_objFlags": 0,
  8587. "node": {
  8588. "__id__": 244
  8589. },
  8590. "_enabled": true,
  8591. "__prefab": null,
  8592. "_customMaterial": null,
  8593. "_srcBlendFactor": 2,
  8594. "_dstBlendFactor": 4,
  8595. "_color": {
  8596. "__type__": "cc.Color",
  8597. "r": 255,
  8598. "g": 255,
  8599. "b": 255,
  8600. "a": 255
  8601. },
  8602. "_string": "2:00",
  8603. "_horizontalAlign": 1,
  8604. "_verticalAlign": 1,
  8605. "_actualFontSize": 55,
  8606. "_fontSize": 55,
  8607. "_fontFamily": "Arial",
  8608. "_lineHeight": 60,
  8609. "_overflow": 1,
  8610. "_enableWrapText": true,
  8611. "_font": null,
  8612. "_isSystemFontUsed": true,
  8613. "_spacingX": 0,
  8614. "_isItalic": false,
  8615. "_isBold": false,
  8616. "_isUnderline": false,
  8617. "_underlineHeight": 2,
  8618. "_cacheMode": 0,
  8619. "_id": "dcVz2Ao/lCG60RTah3WKwS"
  8620. },
  8621. {
  8622. "__type__": "cc.UITransform",
  8623. "_name": "",
  8624. "_objFlags": 0,
  8625. "node": {
  8626. "__id__": 243
  8627. },
  8628. "_enabled": true,
  8629. "__prefab": null,
  8630. "_contentSize": {
  8631. "__type__": "cc.Size",
  8632. "width": 170,
  8633. "height": 50.4
  8634. },
  8635. "_anchorPoint": {
  8636. "__type__": "cc.Vec2",
  8637. "x": 0.5,
  8638. "y": 0.5
  8639. },
  8640. "_id": "d3XSdYtyBCjr130tilMp31"
  8641. },
  8642. {
  8643. "__type__": "cc.Label",
  8644. "_name": "",
  8645. "_objFlags": 0,
  8646. "node": {
  8647. "__id__": 243
  8648. },
  8649. "_enabled": false,
  8650. "__prefab": null,
  8651. "_customMaterial": null,
  8652. "_srcBlendFactor": 2,
  8653. "_dstBlendFactor": 4,
  8654. "_color": {
  8655. "__type__": "cc.Color",
  8656. "r": 169,
  8657. "g": 74,
  8658. "b": 9,
  8659. "a": 255
  8660. },
  8661. "_string": "时间",
  8662. "_horizontalAlign": 1,
  8663. "_verticalAlign": 1,
  8664. "_actualFontSize": 50,
  8665. "_fontSize": 50,
  8666. "_fontFamily": "Arial",
  8667. "_lineHeight": 60,
  8668. "_overflow": 1,
  8669. "_enableWrapText": true,
  8670. "_font": null,
  8671. "_isSystemFontUsed": true,
  8672. "_spacingX": 0,
  8673. "_isItalic": false,
  8674. "_isBold": true,
  8675. "_isUnderline": false,
  8676. "_underlineHeight": 2,
  8677. "_cacheMode": 0,
  8678. "_id": "f2akcURRFEcq0N0Nl8yDJr"
  8679. },
  8680. {
  8681. "__type__": "cc.UITransform",
  8682. "_name": "",
  8683. "_objFlags": 0,
  8684. "node": {
  8685. "__id__": 242
  8686. },
  8687. "_enabled": true,
  8688. "__prefab": null,
  8689. "_contentSize": {
  8690. "__type__": "cc.Size",
  8691. "width": 271.13372781065095,
  8692. "height": 110
  8693. },
  8694. "_anchorPoint": {
  8695. "__type__": "cc.Vec2",
  8696. "x": 0.5,
  8697. "y": 0.5
  8698. },
  8699. "_id": "c3lf7M7k9KmZ+nSNUWgAWg"
  8700. },
  8701. {
  8702. "__type__": "cc.Sprite",
  8703. "_name": "",
  8704. "_objFlags": 0,
  8705. "node": {
  8706. "__id__": 242
  8707. },
  8708. "_enabled": true,
  8709. "__prefab": null,
  8710. "_customMaterial": null,
  8711. "_srcBlendFactor": 2,
  8712. "_dstBlendFactor": 4,
  8713. "_color": {
  8714. "__type__": "cc.Color",
  8715. "r": 255,
  8716. "g": 255,
  8717. "b": 255,
  8718. "a": 255
  8719. },
  8720. "_spriteFrame": {
  8721. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  8722. "__expectedType__": "cc.SpriteFrame"
  8723. },
  8724. "_type": 0,
  8725. "_fillType": 0,
  8726. "_sizeMode": 0,
  8727. "_fillCenter": {
  8728. "__type__": "cc.Vec2",
  8729. "x": 0,
  8730. "y": 0
  8731. },
  8732. "_fillStart": 0,
  8733. "_fillRange": 0,
  8734. "_isTrimmedMode": true,
  8735. "_useGrayscale": false,
  8736. "_atlas": null,
  8737. "_id": "00So5QoPJNbqg38R3GIz53"
  8738. },
  8739. {
  8740. "__type__": "cc.Node",
  8741. "_name": "LevelBg-001",
  8742. "_objFlags": 0,
  8743. "_parent": {
  8744. "__id__": 232
  8745. },
  8746. "_children": [
  8747. {
  8748. "__id__": 252
  8749. }
  8750. ],
  8751. "_active": true,
  8752. "_components": [
  8753. {
  8754. "__id__": 258
  8755. },
  8756. {
  8757. "__id__": 259
  8758. }
  8759. ],
  8760. "_prefab": null,
  8761. "_lpos": {
  8762. "__type__": "cc.Vec3",
  8763. "x": 103.843,
  8764. "y": 584.691,
  8765. "z": 0
  8766. },
  8767. "_lrot": {
  8768. "__type__": "cc.Quat",
  8769. "x": 0,
  8770. "y": 0,
  8771. "z": 0,
  8772. "w": 1
  8773. },
  8774. "_lscale": {
  8775. "__type__": "cc.Vec3",
  8776. "x": 1,
  8777. "y": 1,
  8778. "z": 1
  8779. },
  8780. "_mobility": 0,
  8781. "_layer": 33554432,
  8782. "_euler": {
  8783. "__type__": "cc.Vec3",
  8784. "x": 0,
  8785. "y": 0,
  8786. "z": 0
  8787. },
  8788. "_id": "76NmQjlTVIjYB7iIXcw271"
  8789. },
  8790. {
  8791. "__type__": "cc.Node",
  8792. "_name": "level",
  8793. "_objFlags": 0,
  8794. "_parent": {
  8795. "__id__": 251
  8796. },
  8797. "_children": [
  8798. {
  8799. "__id__": 253
  8800. }
  8801. ],
  8802. "_active": true,
  8803. "_components": [
  8804. {
  8805. "__id__": 256
  8806. },
  8807. {
  8808. "__id__": 257
  8809. }
  8810. ],
  8811. "_prefab": null,
  8812. "_lpos": {
  8813. "__type__": "cc.Vec3",
  8814. "x": -31.36299999999983,
  8815. "y": -2.5679999999999836,
  8816. "z": 0
  8817. },
  8818. "_lrot": {
  8819. "__type__": "cc.Quat",
  8820. "x": 0,
  8821. "y": 0,
  8822. "z": 0,
  8823. "w": 1
  8824. },
  8825. "_lscale": {
  8826. "__type__": "cc.Vec3",
  8827. "x": 1,
  8828. "y": 1,
  8829. "z": 1
  8830. },
  8831. "_mobility": 0,
  8832. "_layer": 33554432,
  8833. "_euler": {
  8834. "__type__": "cc.Vec3",
  8835. "x": 0,
  8836. "y": 0,
  8837. "z": 0
  8838. },
  8839. "_id": "eaH/7VoTNMX6EQSZY5GHiA"
  8840. },
  8841. {
  8842. "__type__": "cc.Node",
  8843. "_name": "levlLabel",
  8844. "_objFlags": 0,
  8845. "_parent": {
  8846. "__id__": 252
  8847. },
  8848. "_children": [],
  8849. "_active": true,
  8850. "_components": [
  8851. {
  8852. "__id__": 254
  8853. },
  8854. {
  8855. "__id__": 255
  8856. }
  8857. ],
  8858. "_prefab": null,
  8859. "_lpos": {
  8860. "__type__": "cc.Vec3",
  8861. "x": 29.897499999999997,
  8862. "y": 0,
  8863. "z": 0
  8864. },
  8865. "_lrot": {
  8866. "__type__": "cc.Quat",
  8867. "x": 0,
  8868. "y": 0,
  8869. "z": 0,
  8870. "w": 1
  8871. },
  8872. "_lscale": {
  8873. "__type__": "cc.Vec3",
  8874. "x": 1,
  8875. "y": 1,
  8876. "z": 1
  8877. },
  8878. "_mobility": 0,
  8879. "_layer": 33554432,
  8880. "_euler": {
  8881. "__type__": "cc.Vec3",
  8882. "x": 0,
  8883. "y": 0,
  8884. "z": 0
  8885. },
  8886. "_id": "b7kyQaqnFPtoUwJ/CfFPdI"
  8887. },
  8888. {
  8889. "__type__": "cc.UITransform",
  8890. "_name": "",
  8891. "_objFlags": 0,
  8892. "node": {
  8893. "__id__": 253
  8894. },
  8895. "_enabled": true,
  8896. "__prefab": null,
  8897. "_contentSize": {
  8898. "__type__": "cc.Size",
  8899. "width": 264.409,
  8900. "height": 50.4
  8901. },
  8902. "_anchorPoint": {
  8903. "__type__": "cc.Vec2",
  8904. "x": 0.5,
  8905. "y": 0.5
  8906. },
  8907. "_id": "0aujCo8/pPgZo35FlpMbkz"
  8908. },
  8909. {
  8910. "__type__": "cc.Label",
  8911. "_name": "",
  8912. "_objFlags": 0,
  8913. "node": {
  8914. "__id__": 253
  8915. },
  8916. "_enabled": true,
  8917. "__prefab": null,
  8918. "_customMaterial": null,
  8919. "_srcBlendFactor": 2,
  8920. "_dstBlendFactor": 4,
  8921. "_color": {
  8922. "__type__": "cc.Color",
  8923. "r": 255,
  8924. "g": 255,
  8925. "b": 255,
  8926. "a": 255
  8927. },
  8928. "_string": "第1关",
  8929. "_horizontalAlign": 1,
  8930. "_verticalAlign": 1,
  8931. "_actualFontSize": 55,
  8932. "_fontSize": 55,
  8933. "_fontFamily": "Arial",
  8934. "_lineHeight": 60,
  8935. "_overflow": 1,
  8936. "_enableWrapText": true,
  8937. "_font": null,
  8938. "_isSystemFontUsed": true,
  8939. "_spacingX": 0,
  8940. "_isItalic": false,
  8941. "_isBold": false,
  8942. "_isUnderline": false,
  8943. "_underlineHeight": 2,
  8944. "_cacheMode": 0,
  8945. "_id": "f2HCMp0+VB9bgTrUQGTaQN"
  8946. },
  8947. {
  8948. "__type__": "cc.UITransform",
  8949. "_name": "",
  8950. "_objFlags": 0,
  8951. "node": {
  8952. "__id__": 252
  8953. },
  8954. "_enabled": true,
  8955. "__prefab": null,
  8956. "_contentSize": {
  8957. "__type__": "cc.Size",
  8958. "width": 170,
  8959. "height": 50.4
  8960. },
  8961. "_anchorPoint": {
  8962. "__type__": "cc.Vec2",
  8963. "x": 0.5,
  8964. "y": 0.5
  8965. },
  8966. "_id": "749njg1oZE7KXTB5Awl4KI"
  8967. },
  8968. {
  8969. "__type__": "cc.Label",
  8970. "_name": "",
  8971. "_objFlags": 0,
  8972. "node": {
  8973. "__id__": 252
  8974. },
  8975. "_enabled": true,
  8976. "__prefab": null,
  8977. "_customMaterial": null,
  8978. "_srcBlendFactor": 2,
  8979. "_dstBlendFactor": 4,
  8980. "_color": {
  8981. "__type__": "cc.Color",
  8982. "r": 169,
  8983. "g": 74,
  8984. "b": 9,
  8985. "a": 255
  8986. },
  8987. "_string": "",
  8988. "_horizontalAlign": 1,
  8989. "_verticalAlign": 1,
  8990. "_actualFontSize": 50,
  8991. "_fontSize": 50,
  8992. "_fontFamily": "Arial",
  8993. "_lineHeight": 60,
  8994. "_overflow": 1,
  8995. "_enableWrapText": true,
  8996. "_font": null,
  8997. "_isSystemFontUsed": true,
  8998. "_spacingX": 0,
  8999. "_isItalic": false,
  9000. "_isBold": false,
  9001. "_isUnderline": false,
  9002. "_underlineHeight": 2,
  9003. "_cacheMode": 0,
  9004. "_id": "a7O87PTw9LOrHXoGKYQXEs"
  9005. },
  9006. {
  9007. "__type__": "cc.UITransform",
  9008. "_name": "",
  9009. "_objFlags": 0,
  9010. "node": {
  9011. "__id__": 251
  9012. },
  9013. "_enabled": true,
  9014. "__prefab": null,
  9015. "_contentSize": {
  9016. "__type__": "cc.Size",
  9017. "width": 308.7455621301775,
  9018. "height": 110
  9019. },
  9020. "_anchorPoint": {
  9021. "__type__": "cc.Vec2",
  9022. "x": 0.5,
  9023. "y": 0.5
  9024. },
  9025. "_id": "59hMJgSaJCu6QjN2y6Wkiu"
  9026. },
  9027. {
  9028. "__type__": "cc.Sprite",
  9029. "_name": "",
  9030. "_objFlags": 0,
  9031. "node": {
  9032. "__id__": 251
  9033. },
  9034. "_enabled": true,
  9035. "__prefab": null,
  9036. "_customMaterial": null,
  9037. "_srcBlendFactor": 2,
  9038. "_dstBlendFactor": 4,
  9039. "_color": {
  9040. "__type__": "cc.Color",
  9041. "r": 255,
  9042. "g": 255,
  9043. "b": 255,
  9044. "a": 255
  9045. },
  9046. "_spriteFrame": {
  9047. "__uuid__": "31e4e40a-c07a-432a-90fc-8601f383791f@f9941",
  9048. "__expectedType__": "cc.SpriteFrame"
  9049. },
  9050. "_type": 0,
  9051. "_fillType": 0,
  9052. "_sizeMode": 0,
  9053. "_fillCenter": {
  9054. "__type__": "cc.Vec2",
  9055. "x": 0,
  9056. "y": 0
  9057. },
  9058. "_fillStart": 0,
  9059. "_fillRange": 0,
  9060. "_isTrimmedMode": true,
  9061. "_useGrayscale": false,
  9062. "_atlas": null,
  9063. "_id": "86rVTpbNlC77rQsFx4OBJl"
  9064. },
  9065. {
  9066. "__type__": "cc.UITransform",
  9067. "_name": "",
  9068. "_objFlags": 0,
  9069. "node": {
  9070. "__id__": 232
  9071. },
  9072. "_enabled": true,
  9073. "__prefab": null,
  9074. "_contentSize": {
  9075. "__type__": "cc.Size",
  9076. "width": 100,
  9077. "height": 100
  9078. },
  9079. "_anchorPoint": {
  9080. "__type__": "cc.Vec2",
  9081. "x": 0.5,
  9082. "y": 0.5
  9083. },
  9084. "_id": "83x9pd7hlLH7vvDTBc5FsC"
  9085. },
  9086. {
  9087. "__type__": "cc.UITransform",
  9088. "_name": "",
  9089. "_objFlags": 0,
  9090. "node": {
  9091. "__id__": 6
  9092. },
  9093. "_enabled": true,
  9094. "__prefab": null,
  9095. "_contentSize": {
  9096. "__type__": "cc.Size",
  9097. "width": 2000,
  9098. "height": 1397
  9099. },
  9100. "_anchorPoint": {
  9101. "__type__": "cc.Vec2",
  9102. "x": 0.5,
  9103. "y": 0.5
  9104. },
  9105. "_id": "6991+O4+ZKkruBhDfLTiNc"
  9106. },
  9107. {
  9108. "__type__": "cc.Sprite",
  9109. "_name": "",
  9110. "_objFlags": 0,
  9111. "node": {
  9112. "__id__": 6
  9113. },
  9114. "_enabled": false,
  9115. "__prefab": null,
  9116. "_customMaterial": null,
  9117. "_srcBlendFactor": 2,
  9118. "_dstBlendFactor": 4,
  9119. "_color": {
  9120. "__type__": "cc.Color",
  9121. "r": 255,
  9122. "g": 255,
  9123. "b": 255,
  9124. "a": 255
  9125. },
  9126. "_spriteFrame": {
  9127. "__uuid__": "eaacad0b-56df-456e-9f47-a6e593993e0f@f9941",
  9128. "__expectedType__": "cc.SpriteFrame"
  9129. },
  9130. "_type": 0,
  9131. "_fillType": 0,
  9132. "_sizeMode": 0,
  9133. "_fillCenter": {
  9134. "__type__": "cc.Vec2",
  9135. "x": 0,
  9136. "y": 0
  9137. },
  9138. "_fillStart": 0,
  9139. "_fillRange": 0,
  9140. "_isTrimmedMode": true,
  9141. "_useGrayscale": false,
  9142. "_atlas": null,
  9143. "_id": "2dSpfW0JpErJgEIBvDB/oC"
  9144. },
  9145. {
  9146. "__type__": "cc.Node",
  9147. "_name": "AudioManager",
  9148. "_objFlags": 512,
  9149. "_parent": {
  9150. "__id__": 2
  9151. },
  9152. "_children": [],
  9153. "_active": true,
  9154. "_components": [
  9155. {
  9156. "__id__": 264
  9157. },
  9158. {
  9159. "__id__": 265
  9160. }
  9161. ],
  9162. "_prefab": null,
  9163. "_lpos": {
  9164. "__type__": "cc.Vec3",
  9165. "x": 0,
  9166. "y": 0,
  9167. "z": 0
  9168. },
  9169. "_lrot": {
  9170. "__type__": "cc.Quat",
  9171. "x": 0,
  9172. "y": 0,
  9173. "z": 0,
  9174. "w": 1
  9175. },
  9176. "_lscale": {
  9177. "__type__": "cc.Vec3",
  9178. "x": 1,
  9179. "y": 1,
  9180. "z": 1
  9181. },
  9182. "_mobility": 0,
  9183. "_layer": 1073741824,
  9184. "_euler": {
  9185. "__type__": "cc.Vec3",
  9186. "x": 0,
  9187. "y": 0,
  9188. "z": 0
  9189. },
  9190. "_id": "60FjbG8qtFfZ539qEMd+1/"
  9191. },
  9192. {
  9193. "__type__": "cc.AudioSource",
  9194. "_name": "",
  9195. "_objFlags": 0,
  9196. "node": {
  9197. "__id__": 263
  9198. },
  9199. "_enabled": true,
  9200. "__prefab": null,
  9201. "_clip": {
  9202. "__uuid__": "fa328517-f2b2-4385-ac73-177c99ed964c",
  9203. "__expectedType__": "cc.AudioClip"
  9204. },
  9205. "_loop": true,
  9206. "_playOnAwake": false,
  9207. "_volume": 1,
  9208. "_id": "eeGhp23mxGxpqwDPT1CJun"
  9209. },
  9210. {
  9211. "__type__": "ddb2bQZ+Y1HFKtzdgtAjjWR",
  9212. "_name": "",
  9213. "_objFlags": 0,
  9214. "node": {
  9215. "__id__": 263
  9216. },
  9217. "_enabled": true,
  9218. "__prefab": null,
  9219. "_id": "49WPaAsadKsKoMmKQLQhN1"
  9220. },
  9221. {
  9222. "__type__": "cc.Node",
  9223. "_name": "LevelManager",
  9224. "_objFlags": 512,
  9225. "_parent": {
  9226. "__id__": 2
  9227. },
  9228. "_children": [],
  9229. "_active": true,
  9230. "_components": [
  9231. {
  9232. "__id__": 267
  9233. }
  9234. ],
  9235. "_prefab": null,
  9236. "_lpos": {
  9237. "__type__": "cc.Vec3",
  9238. "x": 0,
  9239. "y": 0,
  9240. "z": 0
  9241. },
  9242. "_lrot": {
  9243. "__type__": "cc.Quat",
  9244. "x": 0,
  9245. "y": 0,
  9246. "z": 0,
  9247. "w": 1
  9248. },
  9249. "_lscale": {
  9250. "__type__": "cc.Vec3",
  9251. "x": 1,
  9252. "y": 1,
  9253. "z": 1
  9254. },
  9255. "_mobility": 0,
  9256. "_layer": 1073741824,
  9257. "_euler": {
  9258. "__type__": "cc.Vec3",
  9259. "x": 0,
  9260. "y": 0,
  9261. "z": 0
  9262. },
  9263. "_id": "ae7Hx27zVByrbunwO5wAeH"
  9264. },
  9265. {
  9266. "__type__": "47e67Z+VixO4pNkH3a12P3G",
  9267. "_name": "",
  9268. "_objFlags": 0,
  9269. "node": {
  9270. "__id__": 266
  9271. },
  9272. "_enabled": true,
  9273. "__prefab": null,
  9274. "levelDataJson": {
  9275. "__uuid__": "e418ad72-966e-4c18-aeb5-6ac1ea28ec2d",
  9276. "__expectedType__": "cc.JsonAsset"
  9277. },
  9278. "_id": "84G/NCnS1DbLBWBkNkhAf3"
  9279. },
  9280. {
  9281. "__type__": "cc.PrefabInfo",
  9282. "root": null,
  9283. "asset": null,
  9284. "fileId": "80697901-e8f5-4759-b18f-a95692ce9cd2",
  9285. "instance": null,
  9286. "targetOverrides": null,
  9287. "nestedPrefabInstanceRoots": [
  9288. {
  9289. "__id__": 220
  9290. }
  9291. ]
  9292. },
  9293. {
  9294. "__type__": "cc.SceneGlobals",
  9295. "ambient": {
  9296. "__id__": 270
  9297. },
  9298. "shadows": {
  9299. "__id__": 271
  9300. },
  9301. "_skybox": {
  9302. "__id__": 272
  9303. },
  9304. "fog": {
  9305. "__id__": 273
  9306. },
  9307. "octree": {
  9308. "__id__": 274
  9309. },
  9310. "lightProbeInfo": {
  9311. "__id__": 275
  9312. },
  9313. "bakedWithStationaryMainLight": false,
  9314. "bakedWithHighpLightmap": false
  9315. },
  9316. {
  9317. "__type__": "cc.AmbientInfo",
  9318. "_skyColorHDR": {
  9319. "__type__": "cc.Vec4",
  9320. "x": 0,
  9321. "y": 0,
  9322. "z": 0,
  9323. "w": 0.520833125
  9324. },
  9325. "_skyColor": {
  9326. "__type__": "cc.Vec4",
  9327. "x": 0,
  9328. "y": 0,
  9329. "z": 0,
  9330. "w": 0.520833125
  9331. },
  9332. "_skyIllumHDR": 20000,
  9333. "_skyIllum": 20000,
  9334. "_groundAlbedoHDR": {
  9335. "__type__": "cc.Vec4",
  9336. "x": 0,
  9337. "y": 0,
  9338. "z": 0,
  9339. "w": 0
  9340. },
  9341. "_groundAlbedo": {
  9342. "__type__": "cc.Vec4",
  9343. "x": 0,
  9344. "y": 0,
  9345. "z": 0,
  9346. "w": 0
  9347. },
  9348. "_skyColorLDR": {
  9349. "__type__": "cc.Vec4",
  9350. "x": 0.2,
  9351. "y": 0.5,
  9352. "z": 0.8,
  9353. "w": 1
  9354. },
  9355. "_skyIllumLDR": 20000,
  9356. "_groundAlbedoLDR": {
  9357. "__type__": "cc.Vec4",
  9358. "x": 0.2,
  9359. "y": 0.2,
  9360. "z": 0.2,
  9361. "w": 1
  9362. }
  9363. },
  9364. {
  9365. "__type__": "cc.ShadowsInfo",
  9366. "_enabled": false,
  9367. "_type": 0,
  9368. "_normal": {
  9369. "__type__": "cc.Vec3",
  9370. "x": 0,
  9371. "y": 1,
  9372. "z": 0
  9373. },
  9374. "_distance": 0,
  9375. "_shadowColor": {
  9376. "__type__": "cc.Color",
  9377. "r": 76,
  9378. "g": 76,
  9379. "b": 76,
  9380. "a": 255
  9381. },
  9382. "_maxReceived": 4,
  9383. "_size": {
  9384. "__type__": "cc.Vec2",
  9385. "x": 512,
  9386. "y": 512
  9387. }
  9388. },
  9389. {
  9390. "__type__": "cc.SkyboxInfo",
  9391. "_envLightingType": 0,
  9392. "_envmapHDR": null,
  9393. "_envmap": null,
  9394. "_envmapLDR": null,
  9395. "_diffuseMapHDR": null,
  9396. "_diffuseMapLDR": null,
  9397. "_enabled": false,
  9398. "_useHDR": true,
  9399. "_editableMaterial": null,
  9400. "_reflectionHDR": null,
  9401. "_reflectionLDR": null,
  9402. "_rotationAngle": 0
  9403. },
  9404. {
  9405. "__type__": "cc.FogInfo",
  9406. "_type": 0,
  9407. "_fogColor": {
  9408. "__type__": "cc.Color",
  9409. "r": 200,
  9410. "g": 200,
  9411. "b": 200,
  9412. "a": 255
  9413. },
  9414. "_enabled": false,
  9415. "_fogDensity": 0.3,
  9416. "_fogStart": 0.5,
  9417. "_fogEnd": 300,
  9418. "_fogAtten": 5,
  9419. "_fogTop": 1.5,
  9420. "_fogRange": 1.2,
  9421. "_accurate": false
  9422. },
  9423. {
  9424. "__type__": "cc.OctreeInfo",
  9425. "_enabled": false,
  9426. "_minPos": {
  9427. "__type__": "cc.Vec3",
  9428. "x": -1024,
  9429. "y": -1024,
  9430. "z": -1024
  9431. },
  9432. "_maxPos": {
  9433. "__type__": "cc.Vec3",
  9434. "x": 1024,
  9435. "y": 1024,
  9436. "z": 1024
  9437. },
  9438. "_depth": 8
  9439. },
  9440. {
  9441. "__type__": "cc.LightProbeInfo",
  9442. "_giScale": 1,
  9443. "_giSamples": 1024,
  9444. "_bounces": 2,
  9445. "_reduceRinging": 0,
  9446. "_showProbe": true,
  9447. "_showWireframe": true,
  9448. "_showConvex": false,
  9449. "_data": null
  9450. }
  9451. ]