FullScreenui.prefab 165 KB

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