myzone.prefab 162 KB

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