ChildrenListWindow.prefab 104 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274
  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": "ChildrenListWindow",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 12
  24. },
  25. {
  26. "__id__": 277
  27. }
  28. ],
  29. "_active": true,
  30. "_components": [
  31. {
  32. "__id__": 287
  33. },
  34. {
  35. "__id__": 289
  36. },
  37. {
  38. "__id__": 291
  39. },
  40. {
  41. "__id__": 294
  42. },
  43. {
  44. "__id__": 296
  45. }
  46. ],
  47. "_prefab": {
  48. "__id__": 298
  49. },
  50. "_lpos": {
  51. "__type__": "cc.Vec3",
  52. "x": 0,
  53. "y": 0,
  54. "z": 0
  55. },
  56. "_lrot": {
  57. "__type__": "cc.Quat",
  58. "x": 0,
  59. "y": 0,
  60. "z": 0,
  61. "w": 1
  62. },
  63. "_lscale": {
  64. "__type__": "cc.Vec3",
  65. "x": 1,
  66. "y": 1,
  67. "z": 1
  68. },
  69. "_layer": 1073741824,
  70. "_euler": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_id": ""
  77. },
  78. {
  79. "__type__": "cc.Node",
  80. "_name": "mask",
  81. "_objFlags": 0,
  82. "_parent": {
  83. "__id__": 1
  84. },
  85. "_children": [],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 3
  90. },
  91. {
  92. "__id__": 5
  93. },
  94. {
  95. "__id__": 7
  96. },
  97. {
  98. "__id__": 9
  99. }
  100. ],
  101. "_prefab": {
  102. "__id__": 11
  103. },
  104. "_lpos": {
  105. "__type__": "cc.Vec3",
  106. "x": 0,
  107. "y": 0,
  108. "z": 0
  109. },
  110. "_lrot": {
  111. "__type__": "cc.Quat",
  112. "x": 0,
  113. "y": 0,
  114. "z": 0,
  115. "w": 1
  116. },
  117. "_lscale": {
  118. "__type__": "cc.Vec3",
  119. "x": 1,
  120. "y": 1,
  121. "z": 1
  122. },
  123. "_layer": 33554432,
  124. "_euler": {
  125. "__type__": "cc.Vec3",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0
  129. },
  130. "_id": ""
  131. },
  132. {
  133. "__type__": "cc.UITransform",
  134. "_name": "",
  135. "_objFlags": 0,
  136. "node": {
  137. "__id__": 2
  138. },
  139. "_enabled": true,
  140. "__prefab": {
  141. "__id__": 4
  142. },
  143. "_priority": 0,
  144. "_contentSize": {
  145. "__type__": "cc.Size",
  146. "width": 750,
  147. "height": 1334
  148. },
  149. "_anchorPoint": {
  150. "__type__": "cc.Vec2",
  151. "x": 0.5,
  152. "y": 0.5
  153. },
  154. "_id": ""
  155. },
  156. {
  157. "__type__": "cc.CompPrefabInfo",
  158. "fileId": "55pCbtzR5GbojKMArZkfim"
  159. },
  160. {
  161. "__type__": "cc.Sprite",
  162. "_name": "",
  163. "_objFlags": 0,
  164. "node": {
  165. "__id__": 2
  166. },
  167. "_enabled": true,
  168. "__prefab": {
  169. "__id__": 6
  170. },
  171. "_visFlags": 0,
  172. "_customMaterial": null,
  173. "_srcBlendFactor": 2,
  174. "_dstBlendFactor": 4,
  175. "_color": {
  176. "__type__": "cc.Color",
  177. "r": 0,
  178. "g": 0,
  179. "b": 0,
  180. "a": 150
  181. },
  182. "_spriteFrame": {
  183. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941"
  184. },
  185. "_type": 0,
  186. "_fillType": 0,
  187. "_sizeMode": 0,
  188. "_fillCenter": {
  189. "__type__": "cc.Vec2",
  190. "x": 0,
  191. "y": 0
  192. },
  193. "_fillStart": 0,
  194. "_fillRange": 0,
  195. "_isTrimmedMode": true,
  196. "_useGrayscale": false,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.CompPrefabInfo",
  202. "fileId": "20UGQn4U9GUoln0NJQTkbG"
  203. },
  204. {
  205. "__type__": "cc.Widget",
  206. "_name": "",
  207. "_objFlags": 0,
  208. "node": {
  209. "__id__": 2
  210. },
  211. "_enabled": true,
  212. "__prefab": {
  213. "__id__": 8
  214. },
  215. "_alignFlags": 45,
  216. "_target": null,
  217. "_left": 0,
  218. "_right": 0,
  219. "_top": 0,
  220. "_bottom": 0,
  221. "_horizontalCenter": 0,
  222. "_verticalCenter": 0,
  223. "_isAbsLeft": true,
  224. "_isAbsRight": true,
  225. "_isAbsTop": true,
  226. "_isAbsBottom": true,
  227. "_isAbsHorizontalCenter": true,
  228. "_isAbsVerticalCenter": true,
  229. "_originalWidth": 100,
  230. "_originalHeight": 100,
  231. "_alignMode": 2,
  232. "_lockFlags": 0,
  233. "_id": ""
  234. },
  235. {
  236. "__type__": "cc.CompPrefabInfo",
  237. "fileId": "9cLsspeBFM2oL9FQZHHPHN"
  238. },
  239. {
  240. "__type__": "cc.BlockInputEvents",
  241. "_name": "",
  242. "_objFlags": 0,
  243. "node": {
  244. "__id__": 2
  245. },
  246. "_enabled": true,
  247. "__prefab": {
  248. "__id__": 10
  249. },
  250. "_id": ""
  251. },
  252. {
  253. "__type__": "cc.CompPrefabInfo",
  254. "fileId": "79usuY8aJPBK7ICGJIVMem"
  255. },
  256. {
  257. "__type__": "cc.PrefabInfo",
  258. "root": {
  259. "__id__": 1
  260. },
  261. "asset": {
  262. "__id__": 0
  263. },
  264. "fileId": "f77DO81p5HsrYhIulu5Umh"
  265. },
  266. {
  267. "__type__": "cc.Node",
  268. "_name": "界面",
  269. "_objFlags": 0,
  270. "_parent": {
  271. "__id__": 1
  272. },
  273. "_children": [
  274. {
  275. "__id__": 13
  276. },
  277. {
  278. "__id__": 25
  279. },
  280. {
  281. "__id__": 31
  282. },
  283. {
  284. "__id__": 37
  285. },
  286. {
  287. "__id__": 248
  288. },
  289. {
  290. "__id__": 262
  291. }
  292. ],
  293. "_active": true,
  294. "_components": [
  295. {
  296. "__id__": 272
  297. },
  298. {
  299. "__id__": 274
  300. }
  301. ],
  302. "_prefab": {
  303. "__id__": 276
  304. },
  305. "_lpos": {
  306. "__type__": "cc.Vec3",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0
  310. },
  311. "_lrot": {
  312. "__type__": "cc.Quat",
  313. "x": 0,
  314. "y": 0,
  315. "z": 0,
  316. "w": 1
  317. },
  318. "_lscale": {
  319. "__type__": "cc.Vec3",
  320. "x": 1,
  321. "y": 1,
  322. "z": 1
  323. },
  324. "_layer": 1073741824,
  325. "_euler": {
  326. "__type__": "cc.Vec3",
  327. "x": 0,
  328. "y": 0,
  329. "z": 0
  330. },
  331. "_id": ""
  332. },
  333. {
  334. "__type__": "cc.Node",
  335. "_name": "标题",
  336. "_objFlags": 0,
  337. "_parent": {
  338. "__id__": 12
  339. },
  340. "_children": [
  341. {
  342. "__id__": 14
  343. }
  344. ],
  345. "_active": true,
  346. "_components": [
  347. {
  348. "__id__": 20
  349. },
  350. {
  351. "__id__": 22
  352. }
  353. ],
  354. "_prefab": {
  355. "__id__": 24
  356. },
  357. "_lpos": {
  358. "__type__": "cc.Vec3",
  359. "x": 0,
  360. "y": 385,
  361. "z": 0
  362. },
  363. "_lrot": {
  364. "__type__": "cc.Quat",
  365. "x": 0,
  366. "y": 0,
  367. "z": 0,
  368. "w": 1
  369. },
  370. "_lscale": {
  371. "__type__": "cc.Vec3",
  372. "x": 1,
  373. "y": 1,
  374. "z": 1
  375. },
  376. "_layer": 1073741824,
  377. "_euler": {
  378. "__type__": "cc.Vec3",
  379. "x": 0,
  380. "y": 0,
  381. "z": 0
  382. },
  383. "_id": ""
  384. },
  385. {
  386. "__type__": "cc.Node",
  387. "_name": "invite_friend_title_icon",
  388. "_objFlags": 0,
  389. "_parent": {
  390. "__id__": 13
  391. },
  392. "_children": [],
  393. "_active": true,
  394. "_components": [
  395. {
  396. "__id__": 15
  397. },
  398. {
  399. "__id__": 17
  400. }
  401. ],
  402. "_prefab": {
  403. "__id__": 19
  404. },
  405. "_lpos": {
  406. "__type__": "cc.Vec3",
  407. "x": 0,
  408. "y": 10.087,
  409. "z": 0
  410. },
  411. "_lrot": {
  412. "__type__": "cc.Quat",
  413. "x": 0,
  414. "y": 0,
  415. "z": 0,
  416. "w": 1
  417. },
  418. "_lscale": {
  419. "__type__": "cc.Vec3",
  420. "x": 1,
  421. "y": 1,
  422. "z": 1
  423. },
  424. "_layer": 1073741824,
  425. "_euler": {
  426. "__type__": "cc.Vec3",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0
  430. },
  431. "_id": ""
  432. },
  433. {
  434. "__type__": "cc.UITransform",
  435. "_name": "",
  436. "_objFlags": 0,
  437. "node": {
  438. "__id__": 14
  439. },
  440. "_enabled": true,
  441. "__prefab": {
  442. "__id__": 16
  443. },
  444. "_priority": 0,
  445. "_contentSize": {
  446. "__type__": "cc.Size",
  447. "width": 128,
  448. "height": 62
  449. },
  450. "_anchorPoint": {
  451. "__type__": "cc.Vec2",
  452. "x": 0.5,
  453. "y": 0.5
  454. },
  455. "_id": ""
  456. },
  457. {
  458. "__type__": "cc.CompPrefabInfo",
  459. "fileId": "32pMef9WlFRqqe1UsyCDEJ"
  460. },
  461. {
  462. "__type__": "cc.Sprite",
  463. "_name": "",
  464. "_objFlags": 0,
  465. "node": {
  466. "__id__": 14
  467. },
  468. "_enabled": true,
  469. "__prefab": {
  470. "__id__": 18
  471. },
  472. "_visFlags": 0,
  473. "_customMaterial": null,
  474. "_srcBlendFactor": 2,
  475. "_dstBlendFactor": 4,
  476. "_color": {
  477. "__type__": "cc.Color",
  478. "r": 255,
  479. "g": 255,
  480. "b": 255,
  481. "a": 255
  482. },
  483. "_spriteFrame": {
  484. "__uuid__": "e00dd86a-0f8f-44ca-9a94-07c67858a28c@f9941"
  485. },
  486. "_type": 0,
  487. "_fillType": 0,
  488. "_sizeMode": 1,
  489. "_fillCenter": {
  490. "__type__": "cc.Vec2",
  491. "x": 0,
  492. "y": 0
  493. },
  494. "_fillStart": 0,
  495. "_fillRange": 0,
  496. "_isTrimmedMode": true,
  497. "_useGrayscale": false,
  498. "_atlas": null,
  499. "_id": ""
  500. },
  501. {
  502. "__type__": "cc.CompPrefabInfo",
  503. "fileId": "bcVxjf1jRAnI4T32CrArEu"
  504. },
  505. {
  506. "__type__": "cc.PrefabInfo",
  507. "root": {
  508. "__id__": 1
  509. },
  510. "asset": {
  511. "__id__": 0
  512. },
  513. "fileId": "71dQsm0IZNNq2L+/GCJWZ5"
  514. },
  515. {
  516. "__type__": "cc.UITransform",
  517. "_name": "",
  518. "_objFlags": 0,
  519. "node": {
  520. "__id__": 13
  521. },
  522. "_enabled": true,
  523. "__prefab": {
  524. "__id__": 21
  525. },
  526. "_priority": 0,
  527. "_contentSize": {
  528. "__type__": "cc.Size",
  529. "width": 212,
  530. "height": 107
  531. },
  532. "_anchorPoint": {
  533. "__type__": "cc.Vec2",
  534. "x": 0.5,
  535. "y": 0.5
  536. },
  537. "_id": ""
  538. },
  539. {
  540. "__type__": "cc.CompPrefabInfo",
  541. "fileId": "03Ly2/sxpFGpvl6n5hQbi9"
  542. },
  543. {
  544. "__type__": "cc.Sprite",
  545. "_name": "",
  546. "_objFlags": 0,
  547. "node": {
  548. "__id__": 13
  549. },
  550. "_enabled": true,
  551. "__prefab": {
  552. "__id__": 23
  553. },
  554. "_visFlags": 0,
  555. "_customMaterial": null,
  556. "_srcBlendFactor": 2,
  557. "_dstBlendFactor": 4,
  558. "_color": {
  559. "__type__": "cc.Color",
  560. "r": 255,
  561. "g": 255,
  562. "b": 255,
  563. "a": 255
  564. },
  565. "_spriteFrame": {
  566. "__uuid__": "2fea6526-2741-403f-ade0-417d752b0526@f9941"
  567. },
  568. "_type": 0,
  569. "_fillType": 0,
  570. "_sizeMode": 1,
  571. "_fillCenter": {
  572. "__type__": "cc.Vec2",
  573. "x": 0,
  574. "y": 0
  575. },
  576. "_fillStart": 0,
  577. "_fillRange": 0,
  578. "_isTrimmedMode": true,
  579. "_useGrayscale": false,
  580. "_atlas": null,
  581. "_id": ""
  582. },
  583. {
  584. "__type__": "cc.CompPrefabInfo",
  585. "fileId": "15TbHJMD9PurdggysxCiEv"
  586. },
  587. {
  588. "__type__": "cc.PrefabInfo",
  589. "root": {
  590. "__id__": 1
  591. },
  592. "asset": {
  593. "__id__": 0
  594. },
  595. "fileId": "6a2SOU68xGoZxesS1LkPjo"
  596. },
  597. {
  598. "__type__": "cc.Node",
  599. "_name": "文字",
  600. "_objFlags": 0,
  601. "_parent": {
  602. "__id__": 12
  603. },
  604. "_children": [],
  605. "_active": true,
  606. "_components": [
  607. {
  608. "__id__": 26
  609. },
  610. {
  611. "__id__": 28
  612. }
  613. ],
  614. "_prefab": {
  615. "__id__": 30
  616. },
  617. "_lpos": {
  618. "__type__": "cc.Vec3",
  619. "x": 0,
  620. "y": 304.061,
  621. "z": 0
  622. },
  623. "_lrot": {
  624. "__type__": "cc.Quat",
  625. "x": 0,
  626. "y": 0,
  627. "z": 0,
  628. "w": 1
  629. },
  630. "_lscale": {
  631. "__type__": "cc.Vec3",
  632. "x": 1,
  633. "y": 1,
  634. "z": 1
  635. },
  636. "_layer": 1073741824,
  637. "_euler": {
  638. "__type__": "cc.Vec3",
  639. "x": 0,
  640. "y": 0,
  641. "z": 0
  642. },
  643. "_id": ""
  644. },
  645. {
  646. "__type__": "cc.UITransform",
  647. "_name": "",
  648. "_objFlags": 0,
  649. "node": {
  650. "__id__": 25
  651. },
  652. "_enabled": true,
  653. "__prefab": {
  654. "__id__": 27
  655. },
  656. "_priority": 0,
  657. "_contentSize": {
  658. "__type__": "cc.Size",
  659. "width": 148,
  660. "height": 22
  661. },
  662. "_anchorPoint": {
  663. "__type__": "cc.Vec2",
  664. "x": 0.5,
  665. "y": 0.5
  666. },
  667. "_id": ""
  668. },
  669. {
  670. "__type__": "cc.CompPrefabInfo",
  671. "fileId": "3eXLSoixdGw4/qpYLUyoLs"
  672. },
  673. {
  674. "__type__": "cc.Sprite",
  675. "_name": "",
  676. "_objFlags": 0,
  677. "node": {
  678. "__id__": 25
  679. },
  680. "_enabled": true,
  681. "__prefab": {
  682. "__id__": 29
  683. },
  684. "_visFlags": 0,
  685. "_customMaterial": null,
  686. "_srcBlendFactor": 2,
  687. "_dstBlendFactor": 4,
  688. "_color": {
  689. "__type__": "cc.Color",
  690. "r": 255,
  691. "g": 255,
  692. "b": 255,
  693. "a": 255
  694. },
  695. "_spriteFrame": {
  696. "__uuid__": "aab5dbd5-da44-461f-ace4-9f5923851561@f9941"
  697. },
  698. "_type": 0,
  699. "_fillType": 0,
  700. "_sizeMode": 1,
  701. "_fillCenter": {
  702. "__type__": "cc.Vec2",
  703. "x": 0,
  704. "y": 0
  705. },
  706. "_fillStart": 0,
  707. "_fillRange": 0,
  708. "_isTrimmedMode": true,
  709. "_useGrayscale": false,
  710. "_atlas": null,
  711. "_id": ""
  712. },
  713. {
  714. "__type__": "cc.CompPrefabInfo",
  715. "fileId": "3871QRbe5O8JcnijVQHcNM"
  716. },
  717. {
  718. "__type__": "cc.PrefabInfo",
  719. "root": {
  720. "__id__": 1
  721. },
  722. "asset": {
  723. "__id__": 0
  724. },
  725. "fileId": "bbHj0kUB9Ai7FPM7y6Xpkq"
  726. },
  727. {
  728. "__type__": "cc.Node",
  729. "_name": "箭头",
  730. "_objFlags": 0,
  731. "_parent": {
  732. "__id__": 12
  733. },
  734. "_children": [],
  735. "_active": true,
  736. "_components": [
  737. {
  738. "__id__": 32
  739. },
  740. {
  741. "__id__": 34
  742. }
  743. ],
  744. "_prefab": {
  745. "__id__": 36
  746. },
  747. "_lpos": {
  748. "__type__": "cc.Vec3",
  749. "x": 0,
  750. "y": -309.825,
  751. "z": 0
  752. },
  753. "_lrot": {
  754. "__type__": "cc.Quat",
  755. "x": 0,
  756. "y": 0,
  757. "z": 0,
  758. "w": 1
  759. },
  760. "_lscale": {
  761. "__type__": "cc.Vec3",
  762. "x": 1,
  763. "y": 1,
  764. "z": 1
  765. },
  766. "_layer": 1073741824,
  767. "_euler": {
  768. "__type__": "cc.Vec3",
  769. "x": 0,
  770. "y": 0,
  771. "z": 0
  772. },
  773. "_id": ""
  774. },
  775. {
  776. "__type__": "cc.UITransform",
  777. "_name": "",
  778. "_objFlags": 0,
  779. "node": {
  780. "__id__": 31
  781. },
  782. "_enabled": true,
  783. "__prefab": {
  784. "__id__": 33
  785. },
  786. "_priority": 0,
  787. "_contentSize": {
  788. "__type__": "cc.Size",
  789. "width": 36,
  790. "height": 27
  791. },
  792. "_anchorPoint": {
  793. "__type__": "cc.Vec2",
  794. "x": 0.5,
  795. "y": 0.5
  796. },
  797. "_id": ""
  798. },
  799. {
  800. "__type__": "cc.CompPrefabInfo",
  801. "fileId": "3agb8oiL9MhoMFCCO9WHeC"
  802. },
  803. {
  804. "__type__": "cc.Sprite",
  805. "_name": "",
  806. "_objFlags": 0,
  807. "node": {
  808. "__id__": 31
  809. },
  810. "_enabled": true,
  811. "__prefab": {
  812. "__id__": 35
  813. },
  814. "_visFlags": 0,
  815. "_customMaterial": null,
  816. "_srcBlendFactor": 2,
  817. "_dstBlendFactor": 4,
  818. "_color": {
  819. "__type__": "cc.Color",
  820. "r": 255,
  821. "g": 255,
  822. "b": 255,
  823. "a": 255
  824. },
  825. "_spriteFrame": {
  826. "__uuid__": "079b89cf-9a76-4383-9038-81d4955ffbd5@f9941"
  827. },
  828. "_type": 0,
  829. "_fillType": 0,
  830. "_sizeMode": 1,
  831. "_fillCenter": {
  832. "__type__": "cc.Vec2",
  833. "x": 0,
  834. "y": 0
  835. },
  836. "_fillStart": 0,
  837. "_fillRange": 0,
  838. "_isTrimmedMode": true,
  839. "_useGrayscale": false,
  840. "_atlas": null,
  841. "_id": ""
  842. },
  843. {
  844. "__type__": "cc.CompPrefabInfo",
  845. "fileId": "e62GVbLAFGq7poo1N5rnda"
  846. },
  847. {
  848. "__type__": "cc.PrefabInfo",
  849. "root": {
  850. "__id__": 1
  851. },
  852. "asset": {
  853. "__id__": 0
  854. },
  855. "fileId": "f1pnZBuA9LwLQfZsWi5n9J"
  856. },
  857. {
  858. "__type__": "cc.Node",
  859. "_name": "页签",
  860. "_objFlags": 0,
  861. "_parent": {
  862. "__id__": 12
  863. },
  864. "_children": [
  865. {
  866. "__id__": 38
  867. },
  868. {
  869. "__id__": 79
  870. },
  871. {
  872. "__id__": 120
  873. },
  874. {
  875. "__id__": 161
  876. },
  877. {
  878. "__id__": 202
  879. }
  880. ],
  881. "_active": true,
  882. "_components": [
  883. {
  884. "__id__": 243
  885. },
  886. {
  887. "__id__": 245
  888. }
  889. ],
  890. "_prefab": {
  891. "__id__": 247
  892. },
  893. "_lpos": {
  894. "__type__": "cc.Vec3",
  895. "x": -280,
  896. "y": -17.038,
  897. "z": 0
  898. },
  899. "_lrot": {
  900. "__type__": "cc.Quat",
  901. "x": 0,
  902. "y": 0,
  903. "z": 0,
  904. "w": 1
  905. },
  906. "_lscale": {
  907. "__type__": "cc.Vec3",
  908. "x": 1,
  909. "y": 1,
  910. "z": 1
  911. },
  912. "_layer": 33554432,
  913. "_euler": {
  914. "__type__": "cc.Vec3",
  915. "x": 0,
  916. "y": 0,
  917. "z": 0
  918. },
  919. "_id": ""
  920. },
  921. {
  922. "__type__": "cc.Node",
  923. "_name": "页签-1",
  924. "_objFlags": 0,
  925. "_parent": {
  926. "__id__": 37
  927. },
  928. "_children": [
  929. {
  930. "__id__": 39
  931. },
  932. {
  933. "__id__": 55
  934. }
  935. ],
  936. "_active": true,
  937. "_components": [
  938. {
  939. "__id__": 71
  940. },
  941. {
  942. "__id__": 73
  943. },
  944. {
  945. "__id__": 76
  946. }
  947. ],
  948. "_prefab": {
  949. "__id__": 78
  950. },
  951. "_lpos": {
  952. "__type__": "cc.Vec3",
  953. "x": 0,
  954. "y": 240,
  955. "z": 0
  956. },
  957. "_lrot": {
  958. "__type__": "cc.Quat",
  959. "x": 0,
  960. "y": 0,
  961. "z": 0,
  962. "w": 1
  963. },
  964. "_lscale": {
  965. "__type__": "cc.Vec3",
  966. "x": 1,
  967. "y": 1,
  968. "z": 1
  969. },
  970. "_layer": 1073741824,
  971. "_euler": {
  972. "__type__": "cc.Vec3",
  973. "x": 0,
  974. "y": 0,
  975. "z": 0
  976. },
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.Node",
  981. "_name": "未选中",
  982. "_objFlags": 0,
  983. "_parent": {
  984. "__id__": 38
  985. },
  986. "_children": [
  987. {
  988. "__id__": 40
  989. },
  990. {
  991. "__id__": 46
  992. }
  993. ],
  994. "_active": false,
  995. "_components": [
  996. {
  997. "__id__": 52
  998. }
  999. ],
  1000. "_prefab": {
  1001. "__id__": 54
  1002. },
  1003. "_lpos": {
  1004. "__type__": "cc.Vec3",
  1005. "x": 0,
  1006. "y": 0,
  1007. "z": 0
  1008. },
  1009. "_lrot": {
  1010. "__type__": "cc.Quat",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0,
  1014. "w": 1
  1015. },
  1016. "_lscale": {
  1017. "__type__": "cc.Vec3",
  1018. "x": 1,
  1019. "y": 1,
  1020. "z": 1
  1021. },
  1022. "_layer": 1073741824,
  1023. "_euler": {
  1024. "__type__": "cc.Vec3",
  1025. "x": 0,
  1026. "y": 0,
  1027. "z": 0
  1028. },
  1029. "_id": ""
  1030. },
  1031. {
  1032. "__type__": "cc.Node",
  1033. "_name": "tabbar_un_bg",
  1034. "_objFlags": 0,
  1035. "_parent": {
  1036. "__id__": 39
  1037. },
  1038. "_children": [],
  1039. "_active": true,
  1040. "_components": [
  1041. {
  1042. "__id__": 41
  1043. },
  1044. {
  1045. "__id__": 43
  1046. }
  1047. ],
  1048. "_prefab": {
  1049. "__id__": 45
  1050. },
  1051. "_lpos": {
  1052. "__type__": "cc.Vec3",
  1053. "x": 0,
  1054. "y": 0,
  1055. "z": 0
  1056. },
  1057. "_lrot": {
  1058. "__type__": "cc.Quat",
  1059. "x": 0,
  1060. "y": 0,
  1061. "z": 0,
  1062. "w": 1
  1063. },
  1064. "_lscale": {
  1065. "__type__": "cc.Vec3",
  1066. "x": 1,
  1067. "y": 1,
  1068. "z": 1
  1069. },
  1070. "_layer": 1073741824,
  1071. "_euler": {
  1072. "__type__": "cc.Vec3",
  1073. "x": 0,
  1074. "y": 0,
  1075. "z": 0
  1076. },
  1077. "_id": ""
  1078. },
  1079. {
  1080. "__type__": "cc.UITransform",
  1081. "_name": "",
  1082. "_objFlags": 0,
  1083. "node": {
  1084. "__id__": 40
  1085. },
  1086. "_enabled": true,
  1087. "__prefab": {
  1088. "__id__": 42
  1089. },
  1090. "_priority": 0,
  1091. "_contentSize": {
  1092. "__type__": "cc.Size",
  1093. "width": 60,
  1094. "height": 115
  1095. },
  1096. "_anchorPoint": {
  1097. "__type__": "cc.Vec2",
  1098. "x": 0.5,
  1099. "y": 0.5
  1100. },
  1101. "_id": ""
  1102. },
  1103. {
  1104. "__type__": "cc.CompPrefabInfo",
  1105. "fileId": "af4cDICbBErJntClERsCUA"
  1106. },
  1107. {
  1108. "__type__": "cc.Sprite",
  1109. "_name": "",
  1110. "_objFlags": 0,
  1111. "node": {
  1112. "__id__": 40
  1113. },
  1114. "_enabled": true,
  1115. "__prefab": {
  1116. "__id__": 44
  1117. },
  1118. "_visFlags": 0,
  1119. "_customMaterial": null,
  1120. "_srcBlendFactor": 2,
  1121. "_dstBlendFactor": 4,
  1122. "_color": {
  1123. "__type__": "cc.Color",
  1124. "r": 255,
  1125. "g": 255,
  1126. "b": 255,
  1127. "a": 255
  1128. },
  1129. "_spriteFrame": {
  1130. "__uuid__": "af2af94e-4bd3-44ab-beab-49ff1d608702@f9941"
  1131. },
  1132. "_type": 0,
  1133. "_fillType": 0,
  1134. "_sizeMode": 1,
  1135. "_fillCenter": {
  1136. "__type__": "cc.Vec2",
  1137. "x": 0,
  1138. "y": 0
  1139. },
  1140. "_fillStart": 0,
  1141. "_fillRange": 0,
  1142. "_isTrimmedMode": true,
  1143. "_useGrayscale": false,
  1144. "_atlas": null,
  1145. "_id": ""
  1146. },
  1147. {
  1148. "__type__": "cc.CompPrefabInfo",
  1149. "fileId": "ads/keZdpJEKMOvxN2ZYe3"
  1150. },
  1151. {
  1152. "__type__": "cc.PrefabInfo",
  1153. "root": {
  1154. "__id__": 1
  1155. },
  1156. "asset": {
  1157. "__id__": 0
  1158. },
  1159. "fileId": "6bGYPHBpdOAbUES55wP3K8"
  1160. },
  1161. {
  1162. "__type__": "cc.Node",
  1163. "_name": "tabbar_un_1",
  1164. "_objFlags": 0,
  1165. "_parent": {
  1166. "__id__": 39
  1167. },
  1168. "_children": [],
  1169. "_active": true,
  1170. "_components": [
  1171. {
  1172. "__id__": 47
  1173. },
  1174. {
  1175. "__id__": 49
  1176. }
  1177. ],
  1178. "_prefab": {
  1179. "__id__": 51
  1180. },
  1181. "_lpos": {
  1182. "__type__": "cc.Vec3",
  1183. "x": 0,
  1184. "y": 0,
  1185. "z": 0
  1186. },
  1187. "_lrot": {
  1188. "__type__": "cc.Quat",
  1189. "x": 0,
  1190. "y": 0,
  1191. "z": 0,
  1192. "w": 1
  1193. },
  1194. "_lscale": {
  1195. "__type__": "cc.Vec3",
  1196. "x": 1,
  1197. "y": 1,
  1198. "z": 1
  1199. },
  1200. "_layer": 1073741824,
  1201. "_euler": {
  1202. "__type__": "cc.Vec3",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0
  1206. },
  1207. "_id": ""
  1208. },
  1209. {
  1210. "__type__": "cc.UITransform",
  1211. "_name": "",
  1212. "_objFlags": 0,
  1213. "node": {
  1214. "__id__": 46
  1215. },
  1216. "_enabled": true,
  1217. "__prefab": {
  1218. "__id__": 48
  1219. },
  1220. "_priority": 0,
  1221. "_contentSize": {
  1222. "__type__": "cc.Size",
  1223. "width": 24,
  1224. "height": 80
  1225. },
  1226. "_anchorPoint": {
  1227. "__type__": "cc.Vec2",
  1228. "x": 0.5,
  1229. "y": 0.5
  1230. },
  1231. "_id": ""
  1232. },
  1233. {
  1234. "__type__": "cc.CompPrefabInfo",
  1235. "fileId": "a19+1rsGJKd4uMKr4imD6c"
  1236. },
  1237. {
  1238. "__type__": "cc.Sprite",
  1239. "_name": "",
  1240. "_objFlags": 0,
  1241. "node": {
  1242. "__id__": 46
  1243. },
  1244. "_enabled": true,
  1245. "__prefab": {
  1246. "__id__": 50
  1247. },
  1248. "_visFlags": 0,
  1249. "_customMaterial": null,
  1250. "_srcBlendFactor": 2,
  1251. "_dstBlendFactor": 4,
  1252. "_color": {
  1253. "__type__": "cc.Color",
  1254. "r": 255,
  1255. "g": 255,
  1256. "b": 255,
  1257. "a": 255
  1258. },
  1259. "_spriteFrame": {
  1260. "__uuid__": "7d5764a0-6492-40c8-80cc-f60f16bad15a@f9941"
  1261. },
  1262. "_type": 0,
  1263. "_fillType": 0,
  1264. "_sizeMode": 1,
  1265. "_fillCenter": {
  1266. "__type__": "cc.Vec2",
  1267. "x": 0,
  1268. "y": 0
  1269. },
  1270. "_fillStart": 0,
  1271. "_fillRange": 0,
  1272. "_isTrimmedMode": true,
  1273. "_useGrayscale": false,
  1274. "_atlas": null,
  1275. "_id": ""
  1276. },
  1277. {
  1278. "__type__": "cc.CompPrefabInfo",
  1279. "fileId": "4aX4StjCZDSbbgzCiMsub1"
  1280. },
  1281. {
  1282. "__type__": "cc.PrefabInfo",
  1283. "root": {
  1284. "__id__": 1
  1285. },
  1286. "asset": {
  1287. "__id__": 0
  1288. },
  1289. "fileId": "707/oXAm5OC4xrV4jYjXFV"
  1290. },
  1291. {
  1292. "__type__": "cc.UITransform",
  1293. "_name": "",
  1294. "_objFlags": 0,
  1295. "node": {
  1296. "__id__": 39
  1297. },
  1298. "_enabled": true,
  1299. "__prefab": {
  1300. "__id__": 53
  1301. },
  1302. "_priority": 0,
  1303. "_contentSize": {
  1304. "__type__": "cc.Size",
  1305. "width": 60,
  1306. "height": 115
  1307. },
  1308. "_anchorPoint": {
  1309. "__type__": "cc.Vec2",
  1310. "x": 0.5,
  1311. "y": 0.5
  1312. },
  1313. "_id": ""
  1314. },
  1315. {
  1316. "__type__": "cc.CompPrefabInfo",
  1317. "fileId": "5fEiRWks1NBbaM+HuZvyfM"
  1318. },
  1319. {
  1320. "__type__": "cc.PrefabInfo",
  1321. "root": {
  1322. "__id__": 1
  1323. },
  1324. "asset": {
  1325. "__id__": 0
  1326. },
  1327. "fileId": "adgvw0kY9E44duqoxxmVtZ"
  1328. },
  1329. {
  1330. "__type__": "cc.Node",
  1331. "_name": "选中",
  1332. "_objFlags": 0,
  1333. "_parent": {
  1334. "__id__": 38
  1335. },
  1336. "_children": [
  1337. {
  1338. "__id__": 56
  1339. },
  1340. {
  1341. "__id__": 62
  1342. }
  1343. ],
  1344. "_active": true,
  1345. "_components": [
  1346. {
  1347. "__id__": 68
  1348. }
  1349. ],
  1350. "_prefab": {
  1351. "__id__": 70
  1352. },
  1353. "_lpos": {
  1354. "__type__": "cc.Vec3",
  1355. "x": 0,
  1356. "y": 0,
  1357. "z": 0
  1358. },
  1359. "_lrot": {
  1360. "__type__": "cc.Quat",
  1361. "x": 0,
  1362. "y": 0,
  1363. "z": 0,
  1364. "w": 1
  1365. },
  1366. "_lscale": {
  1367. "__type__": "cc.Vec3",
  1368. "x": 1,
  1369. "y": 1,
  1370. "z": 1
  1371. },
  1372. "_layer": 1073741824,
  1373. "_euler": {
  1374. "__type__": "cc.Vec3",
  1375. "x": 0,
  1376. "y": 0,
  1377. "z": 0
  1378. },
  1379. "_id": ""
  1380. },
  1381. {
  1382. "__type__": "cc.Node",
  1383. "_name": "tabbar_in_bg",
  1384. "_objFlags": 0,
  1385. "_parent": {
  1386. "__id__": 55
  1387. },
  1388. "_children": [],
  1389. "_active": true,
  1390. "_components": [
  1391. {
  1392. "__id__": 57
  1393. },
  1394. {
  1395. "__id__": 59
  1396. }
  1397. ],
  1398. "_prefab": {
  1399. "__id__": 61
  1400. },
  1401. "_lpos": {
  1402. "__type__": "cc.Vec3",
  1403. "x": 0,
  1404. "y": 0,
  1405. "z": 0
  1406. },
  1407. "_lrot": {
  1408. "__type__": "cc.Quat",
  1409. "x": 0,
  1410. "y": 0,
  1411. "z": 0,
  1412. "w": 1
  1413. },
  1414. "_lscale": {
  1415. "__type__": "cc.Vec3",
  1416. "x": 1,
  1417. "y": 1,
  1418. "z": 1
  1419. },
  1420. "_layer": 1073741824,
  1421. "_euler": {
  1422. "__type__": "cc.Vec3",
  1423. "x": 0,
  1424. "y": 0,
  1425. "z": 0
  1426. },
  1427. "_id": ""
  1428. },
  1429. {
  1430. "__type__": "cc.UITransform",
  1431. "_name": "",
  1432. "_objFlags": 0,
  1433. "node": {
  1434. "__id__": 56
  1435. },
  1436. "_enabled": true,
  1437. "__prefab": {
  1438. "__id__": 58
  1439. },
  1440. "_priority": 0,
  1441. "_contentSize": {
  1442. "__type__": "cc.Size",
  1443. "width": 64,
  1444. "height": 113
  1445. },
  1446. "_anchorPoint": {
  1447. "__type__": "cc.Vec2",
  1448. "x": 0.5,
  1449. "y": 0.5
  1450. },
  1451. "_id": ""
  1452. },
  1453. {
  1454. "__type__": "cc.CompPrefabInfo",
  1455. "fileId": "9ckFfhUb1HxK2vX51LJoCa"
  1456. },
  1457. {
  1458. "__type__": "cc.Sprite",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "node": {
  1462. "__id__": 56
  1463. },
  1464. "_enabled": true,
  1465. "__prefab": {
  1466. "__id__": 60
  1467. },
  1468. "_visFlags": 0,
  1469. "_customMaterial": null,
  1470. "_srcBlendFactor": 2,
  1471. "_dstBlendFactor": 4,
  1472. "_color": {
  1473. "__type__": "cc.Color",
  1474. "r": 255,
  1475. "g": 255,
  1476. "b": 255,
  1477. "a": 255
  1478. },
  1479. "_spriteFrame": {
  1480. "__uuid__": "5395e4ea-f190-4c10-9016-13bd9faa659d@f9941"
  1481. },
  1482. "_type": 0,
  1483. "_fillType": 0,
  1484. "_sizeMode": 1,
  1485. "_fillCenter": {
  1486. "__type__": "cc.Vec2",
  1487. "x": 0,
  1488. "y": 0
  1489. },
  1490. "_fillStart": 0,
  1491. "_fillRange": 0,
  1492. "_isTrimmedMode": true,
  1493. "_useGrayscale": false,
  1494. "_atlas": null,
  1495. "_id": ""
  1496. },
  1497. {
  1498. "__type__": "cc.CompPrefabInfo",
  1499. "fileId": "62bKNv5R1ITLQDaKu/7Bq0"
  1500. },
  1501. {
  1502. "__type__": "cc.PrefabInfo",
  1503. "root": {
  1504. "__id__": 1
  1505. },
  1506. "asset": {
  1507. "__id__": 0
  1508. },
  1509. "fileId": "df7ctqp/NIV5jYdpORWHGa"
  1510. },
  1511. {
  1512. "__type__": "cc.Node",
  1513. "_name": "tabbar_in_1",
  1514. "_objFlags": 0,
  1515. "_parent": {
  1516. "__id__": 55
  1517. },
  1518. "_children": [],
  1519. "_active": true,
  1520. "_components": [
  1521. {
  1522. "__id__": 63
  1523. },
  1524. {
  1525. "__id__": 65
  1526. }
  1527. ],
  1528. "_prefab": {
  1529. "__id__": 67
  1530. },
  1531. "_lpos": {
  1532. "__type__": "cc.Vec3",
  1533. "x": 0,
  1534. "y": 0,
  1535. "z": 0
  1536. },
  1537. "_lrot": {
  1538. "__type__": "cc.Quat",
  1539. "x": 0,
  1540. "y": 0,
  1541. "z": 0,
  1542. "w": 1
  1543. },
  1544. "_lscale": {
  1545. "__type__": "cc.Vec3",
  1546. "x": 1,
  1547. "y": 1,
  1548. "z": 1
  1549. },
  1550. "_layer": 1073741824,
  1551. "_euler": {
  1552. "__type__": "cc.Vec3",
  1553. "x": 0,
  1554. "y": 0,
  1555. "z": 0
  1556. },
  1557. "_id": ""
  1558. },
  1559. {
  1560. "__type__": "cc.UITransform",
  1561. "_name": "",
  1562. "_objFlags": 0,
  1563. "node": {
  1564. "__id__": 62
  1565. },
  1566. "_enabled": true,
  1567. "__prefab": {
  1568. "__id__": 64
  1569. },
  1570. "_priority": 0,
  1571. "_contentSize": {
  1572. "__type__": "cc.Size",
  1573. "width": 27,
  1574. "height": 95
  1575. },
  1576. "_anchorPoint": {
  1577. "__type__": "cc.Vec2",
  1578. "x": 0.5,
  1579. "y": 0.5
  1580. },
  1581. "_id": ""
  1582. },
  1583. {
  1584. "__type__": "cc.CompPrefabInfo",
  1585. "fileId": "ceayqMAsZEfIg5Qik9cKHm"
  1586. },
  1587. {
  1588. "__type__": "cc.Sprite",
  1589. "_name": "",
  1590. "_objFlags": 0,
  1591. "node": {
  1592. "__id__": 62
  1593. },
  1594. "_enabled": true,
  1595. "__prefab": {
  1596. "__id__": 66
  1597. },
  1598. "_visFlags": 0,
  1599. "_customMaterial": null,
  1600. "_srcBlendFactor": 2,
  1601. "_dstBlendFactor": 4,
  1602. "_color": {
  1603. "__type__": "cc.Color",
  1604. "r": 255,
  1605. "g": 255,
  1606. "b": 255,
  1607. "a": 255
  1608. },
  1609. "_spriteFrame": {
  1610. "__uuid__": "6bccccd0-0c84-4eb9-be7a-8d7a2283cb7e@f9941"
  1611. },
  1612. "_type": 0,
  1613. "_fillType": 0,
  1614. "_sizeMode": 1,
  1615. "_fillCenter": {
  1616. "__type__": "cc.Vec2",
  1617. "x": 0,
  1618. "y": 0
  1619. },
  1620. "_fillStart": 0,
  1621. "_fillRange": 0,
  1622. "_isTrimmedMode": true,
  1623. "_useGrayscale": false,
  1624. "_atlas": null,
  1625. "_id": ""
  1626. },
  1627. {
  1628. "__type__": "cc.CompPrefabInfo",
  1629. "fileId": "2c2q8Cj4NHPo0dSOzLIxU8"
  1630. },
  1631. {
  1632. "__type__": "cc.PrefabInfo",
  1633. "root": {
  1634. "__id__": 1
  1635. },
  1636. "asset": {
  1637. "__id__": 0
  1638. },
  1639. "fileId": "c1U2uvbpRERL3Fw9fhKHR8"
  1640. },
  1641. {
  1642. "__type__": "cc.UITransform",
  1643. "_name": "",
  1644. "_objFlags": 0,
  1645. "node": {
  1646. "__id__": 55
  1647. },
  1648. "_enabled": true,
  1649. "__prefab": {
  1650. "__id__": 69
  1651. },
  1652. "_priority": 0,
  1653. "_contentSize": {
  1654. "__type__": "cc.Size",
  1655. "width": 64,
  1656. "height": 113
  1657. },
  1658. "_anchorPoint": {
  1659. "__type__": "cc.Vec2",
  1660. "x": 0.5,
  1661. "y": 0.5
  1662. },
  1663. "_id": ""
  1664. },
  1665. {
  1666. "__type__": "cc.CompPrefabInfo",
  1667. "fileId": "de/SZm8SlJlpcHlUcLT5wM"
  1668. },
  1669. {
  1670. "__type__": "cc.PrefabInfo",
  1671. "root": {
  1672. "__id__": 1
  1673. },
  1674. "asset": {
  1675. "__id__": 0
  1676. },
  1677. "fileId": "46ap1IyApBmZEdqd09m+d7"
  1678. },
  1679. {
  1680. "__type__": "cc.UITransform",
  1681. "_name": "",
  1682. "_objFlags": 0,
  1683. "node": {
  1684. "__id__": 38
  1685. },
  1686. "_enabled": true,
  1687. "__prefab": {
  1688. "__id__": 72
  1689. },
  1690. "_priority": 0,
  1691. "_contentSize": {
  1692. "__type__": "cc.Size",
  1693. "width": 64,
  1694. "height": 115
  1695. },
  1696. "_anchorPoint": {
  1697. "__type__": "cc.Vec2",
  1698. "x": 0.5,
  1699. "y": 0.5
  1700. },
  1701. "_id": ""
  1702. },
  1703. {
  1704. "__type__": "cc.CompPrefabInfo",
  1705. "fileId": "abHNKsSf9CCq0xAwtqL57d"
  1706. },
  1707. {
  1708. "__type__": "faa7eqRv7dLVqHDYfQW4APh",
  1709. "_name": "",
  1710. "_objFlags": 0,
  1711. "node": {
  1712. "__id__": 38
  1713. },
  1714. "_enabled": true,
  1715. "__prefab": {
  1716. "__id__": 74
  1717. },
  1718. "checkedNode": {
  1719. "__id__": 55
  1720. },
  1721. "uncheckedNode": {
  1722. "__id__": 39
  1723. },
  1724. "group": "tabbar",
  1725. "_isChecked": true,
  1726. "checkEvents": [
  1727. {
  1728. "__id__": 75
  1729. }
  1730. ],
  1731. "_id": ""
  1732. },
  1733. {
  1734. "__type__": "cc.CompPrefabInfo",
  1735. "fileId": "b6/9es7Y9Fubc+t8n43S+f"
  1736. },
  1737. {
  1738. "__type__": "cc.ClickEvent",
  1739. "target": {
  1740. "__id__": 1
  1741. },
  1742. "component": "",
  1743. "_componentId": "1808am6E4FLSaSGN9i2qtgl",
  1744. "handler": "onTabbarChange",
  1745. "customEventData": "1"
  1746. },
  1747. {
  1748. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  1749. "_name": "",
  1750. "_objFlags": 0,
  1751. "node": {
  1752. "__id__": 38
  1753. },
  1754. "_enabled": true,
  1755. "__prefab": {
  1756. "__id__": 77
  1757. },
  1758. "clips": [
  1759. {
  1760. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  1761. }
  1762. ],
  1763. "_volume": 1,
  1764. "useGlobalVolume": true,
  1765. "playOnLoad": true,
  1766. "playOnTouch": false,
  1767. "oneShot": true,
  1768. "loop": false,
  1769. "_id": ""
  1770. },
  1771. {
  1772. "__type__": "cc.CompPrefabInfo",
  1773. "fileId": "25C8vruEBHS6DQPO81a2Ob"
  1774. },
  1775. {
  1776. "__type__": "cc.PrefabInfo",
  1777. "root": {
  1778. "__id__": 1
  1779. },
  1780. "asset": {
  1781. "__id__": 0
  1782. },
  1783. "fileId": "12HeY7AdxA/LaUR21hlaIi"
  1784. },
  1785. {
  1786. "__type__": "cc.Node",
  1787. "_name": "页签-2",
  1788. "_objFlags": 0,
  1789. "_parent": {
  1790. "__id__": 37
  1791. },
  1792. "_children": [
  1793. {
  1794. "__id__": 80
  1795. },
  1796. {
  1797. "__id__": 96
  1798. }
  1799. ],
  1800. "_active": true,
  1801. "_components": [
  1802. {
  1803. "__id__": 112
  1804. },
  1805. {
  1806. "__id__": 114
  1807. },
  1808. {
  1809. "__id__": 117
  1810. }
  1811. ],
  1812. "_prefab": {
  1813. "__id__": 119
  1814. },
  1815. "_lpos": {
  1816. "__type__": "cc.Vec3",
  1817. "x": 0,
  1818. "y": 120,
  1819. "z": 0
  1820. },
  1821. "_lrot": {
  1822. "__type__": "cc.Quat",
  1823. "x": 0,
  1824. "y": 0,
  1825. "z": 0,
  1826. "w": 1
  1827. },
  1828. "_lscale": {
  1829. "__type__": "cc.Vec3",
  1830. "x": 1,
  1831. "y": 1,
  1832. "z": 1
  1833. },
  1834. "_layer": 1073741824,
  1835. "_euler": {
  1836. "__type__": "cc.Vec3",
  1837. "x": 0,
  1838. "y": 0,
  1839. "z": 0
  1840. },
  1841. "_id": ""
  1842. },
  1843. {
  1844. "__type__": "cc.Node",
  1845. "_name": "未选中",
  1846. "_objFlags": 0,
  1847. "_parent": {
  1848. "__id__": 79
  1849. },
  1850. "_children": [
  1851. {
  1852. "__id__": 81
  1853. },
  1854. {
  1855. "__id__": 87
  1856. }
  1857. ],
  1858. "_active": true,
  1859. "_components": [
  1860. {
  1861. "__id__": 93
  1862. }
  1863. ],
  1864. "_prefab": {
  1865. "__id__": 95
  1866. },
  1867. "_lpos": {
  1868. "__type__": "cc.Vec3",
  1869. "x": 0,
  1870. "y": 0,
  1871. "z": 0
  1872. },
  1873. "_lrot": {
  1874. "__type__": "cc.Quat",
  1875. "x": 0,
  1876. "y": 0,
  1877. "z": 0,
  1878. "w": 1
  1879. },
  1880. "_lscale": {
  1881. "__type__": "cc.Vec3",
  1882. "x": 1,
  1883. "y": 1,
  1884. "z": 1
  1885. },
  1886. "_layer": 1073741824,
  1887. "_euler": {
  1888. "__type__": "cc.Vec3",
  1889. "x": 0,
  1890. "y": 0,
  1891. "z": 0
  1892. },
  1893. "_id": ""
  1894. },
  1895. {
  1896. "__type__": "cc.Node",
  1897. "_name": "tabbar_un_bg",
  1898. "_objFlags": 0,
  1899. "_parent": {
  1900. "__id__": 80
  1901. },
  1902. "_children": [],
  1903. "_active": true,
  1904. "_components": [
  1905. {
  1906. "__id__": 82
  1907. },
  1908. {
  1909. "__id__": 84
  1910. }
  1911. ],
  1912. "_prefab": {
  1913. "__id__": 86
  1914. },
  1915. "_lpos": {
  1916. "__type__": "cc.Vec3",
  1917. "x": 0,
  1918. "y": 0,
  1919. "z": 0
  1920. },
  1921. "_lrot": {
  1922. "__type__": "cc.Quat",
  1923. "x": 0,
  1924. "y": 0,
  1925. "z": 0,
  1926. "w": 1
  1927. },
  1928. "_lscale": {
  1929. "__type__": "cc.Vec3",
  1930. "x": 1,
  1931. "y": 1,
  1932. "z": 1
  1933. },
  1934. "_layer": 1073741824,
  1935. "_euler": {
  1936. "__type__": "cc.Vec3",
  1937. "x": 0,
  1938. "y": 0,
  1939. "z": 0
  1940. },
  1941. "_id": ""
  1942. },
  1943. {
  1944. "__type__": "cc.UITransform",
  1945. "_name": "",
  1946. "_objFlags": 0,
  1947. "node": {
  1948. "__id__": 81
  1949. },
  1950. "_enabled": true,
  1951. "__prefab": {
  1952. "__id__": 83
  1953. },
  1954. "_priority": 0,
  1955. "_contentSize": {
  1956. "__type__": "cc.Size",
  1957. "width": 60,
  1958. "height": 115
  1959. },
  1960. "_anchorPoint": {
  1961. "__type__": "cc.Vec2",
  1962. "x": 0.5,
  1963. "y": 0.5
  1964. },
  1965. "_id": ""
  1966. },
  1967. {
  1968. "__type__": "cc.CompPrefabInfo",
  1969. "fileId": "6fyrOuw7pC9IXOLne5PMii"
  1970. },
  1971. {
  1972. "__type__": "cc.Sprite",
  1973. "_name": "",
  1974. "_objFlags": 0,
  1975. "node": {
  1976. "__id__": 81
  1977. },
  1978. "_enabled": true,
  1979. "__prefab": {
  1980. "__id__": 85
  1981. },
  1982. "_visFlags": 0,
  1983. "_customMaterial": null,
  1984. "_srcBlendFactor": 2,
  1985. "_dstBlendFactor": 4,
  1986. "_color": {
  1987. "__type__": "cc.Color",
  1988. "r": 255,
  1989. "g": 255,
  1990. "b": 255,
  1991. "a": 255
  1992. },
  1993. "_spriteFrame": {
  1994. "__uuid__": "af2af94e-4bd3-44ab-beab-49ff1d608702@f9941"
  1995. },
  1996. "_type": 0,
  1997. "_fillType": 0,
  1998. "_sizeMode": 1,
  1999. "_fillCenter": {
  2000. "__type__": "cc.Vec2",
  2001. "x": 0,
  2002. "y": 0
  2003. },
  2004. "_fillStart": 0,
  2005. "_fillRange": 0,
  2006. "_isTrimmedMode": true,
  2007. "_useGrayscale": false,
  2008. "_atlas": null,
  2009. "_id": ""
  2010. },
  2011. {
  2012. "__type__": "cc.CompPrefabInfo",
  2013. "fileId": "bap5TW3yJNRYbGJG0fdgG1"
  2014. },
  2015. {
  2016. "__type__": "cc.PrefabInfo",
  2017. "root": {
  2018. "__id__": 1
  2019. },
  2020. "asset": {
  2021. "__id__": 0
  2022. },
  2023. "fileId": "b3FFfOCwFAf4X2SataRtoH"
  2024. },
  2025. {
  2026. "__type__": "cc.Node",
  2027. "_name": "tabbar_un_1",
  2028. "_objFlags": 0,
  2029. "_parent": {
  2030. "__id__": 80
  2031. },
  2032. "_children": [],
  2033. "_active": true,
  2034. "_components": [
  2035. {
  2036. "__id__": 88
  2037. },
  2038. {
  2039. "__id__": 90
  2040. }
  2041. ],
  2042. "_prefab": {
  2043. "__id__": 92
  2044. },
  2045. "_lpos": {
  2046. "__type__": "cc.Vec3",
  2047. "x": 0,
  2048. "y": 0,
  2049. "z": 0
  2050. },
  2051. "_lrot": {
  2052. "__type__": "cc.Quat",
  2053. "x": 0,
  2054. "y": 0,
  2055. "z": 0,
  2056. "w": 1
  2057. },
  2058. "_lscale": {
  2059. "__type__": "cc.Vec3",
  2060. "x": 1,
  2061. "y": 1,
  2062. "z": 1
  2063. },
  2064. "_layer": 1073741824,
  2065. "_euler": {
  2066. "__type__": "cc.Vec3",
  2067. "x": 0,
  2068. "y": 0,
  2069. "z": 0
  2070. },
  2071. "_id": ""
  2072. },
  2073. {
  2074. "__type__": "cc.UITransform",
  2075. "_name": "",
  2076. "_objFlags": 0,
  2077. "node": {
  2078. "__id__": 87
  2079. },
  2080. "_enabled": true,
  2081. "__prefab": {
  2082. "__id__": 89
  2083. },
  2084. "_priority": 0,
  2085. "_contentSize": {
  2086. "__type__": "cc.Size",
  2087. "width": 24,
  2088. "height": 84
  2089. },
  2090. "_anchorPoint": {
  2091. "__type__": "cc.Vec2",
  2092. "x": 0.5,
  2093. "y": 0.5
  2094. },
  2095. "_id": ""
  2096. },
  2097. {
  2098. "__type__": "cc.CompPrefabInfo",
  2099. "fileId": "ecQk7/WJFI0b2I0rn30mqs"
  2100. },
  2101. {
  2102. "__type__": "cc.Sprite",
  2103. "_name": "",
  2104. "_objFlags": 0,
  2105. "node": {
  2106. "__id__": 87
  2107. },
  2108. "_enabled": true,
  2109. "__prefab": {
  2110. "__id__": 91
  2111. },
  2112. "_visFlags": 0,
  2113. "_customMaterial": null,
  2114. "_srcBlendFactor": 2,
  2115. "_dstBlendFactor": 4,
  2116. "_color": {
  2117. "__type__": "cc.Color",
  2118. "r": 255,
  2119. "g": 255,
  2120. "b": 255,
  2121. "a": 255
  2122. },
  2123. "_spriteFrame": {
  2124. "__uuid__": "1f3bdcd8-b742-4448-984a-8cbdea8ebb43@f9941"
  2125. },
  2126. "_type": 0,
  2127. "_fillType": 0,
  2128. "_sizeMode": 1,
  2129. "_fillCenter": {
  2130. "__type__": "cc.Vec2",
  2131. "x": 0,
  2132. "y": 0
  2133. },
  2134. "_fillStart": 0,
  2135. "_fillRange": 0,
  2136. "_isTrimmedMode": true,
  2137. "_useGrayscale": false,
  2138. "_atlas": null,
  2139. "_id": ""
  2140. },
  2141. {
  2142. "__type__": "cc.CompPrefabInfo",
  2143. "fileId": "62JhtbaatJB53FZQmfG1U0"
  2144. },
  2145. {
  2146. "__type__": "cc.PrefabInfo",
  2147. "root": {
  2148. "__id__": 1
  2149. },
  2150. "asset": {
  2151. "__id__": 0
  2152. },
  2153. "fileId": "a410F7ardB2JNBJBrUSA2d"
  2154. },
  2155. {
  2156. "__type__": "cc.UITransform",
  2157. "_name": "",
  2158. "_objFlags": 0,
  2159. "node": {
  2160. "__id__": 80
  2161. },
  2162. "_enabled": true,
  2163. "__prefab": {
  2164. "__id__": 94
  2165. },
  2166. "_priority": 0,
  2167. "_contentSize": {
  2168. "__type__": "cc.Size",
  2169. "width": 60,
  2170. "height": 115
  2171. },
  2172. "_anchorPoint": {
  2173. "__type__": "cc.Vec2",
  2174. "x": 0.5,
  2175. "y": 0.5
  2176. },
  2177. "_id": ""
  2178. },
  2179. {
  2180. "__type__": "cc.CompPrefabInfo",
  2181. "fileId": "9e1fIPemlLbrFz3pPXDGs7"
  2182. },
  2183. {
  2184. "__type__": "cc.PrefabInfo",
  2185. "root": {
  2186. "__id__": 1
  2187. },
  2188. "asset": {
  2189. "__id__": 0
  2190. },
  2191. "fileId": "6fFU5W7WJJw5usSa/f3VUI"
  2192. },
  2193. {
  2194. "__type__": "cc.Node",
  2195. "_name": "选中",
  2196. "_objFlags": 0,
  2197. "_parent": {
  2198. "__id__": 79
  2199. },
  2200. "_children": [
  2201. {
  2202. "__id__": 97
  2203. },
  2204. {
  2205. "__id__": 103
  2206. }
  2207. ],
  2208. "_active": false,
  2209. "_components": [
  2210. {
  2211. "__id__": 109
  2212. }
  2213. ],
  2214. "_prefab": {
  2215. "__id__": 111
  2216. },
  2217. "_lpos": {
  2218. "__type__": "cc.Vec3",
  2219. "x": 0,
  2220. "y": 0,
  2221. "z": 0
  2222. },
  2223. "_lrot": {
  2224. "__type__": "cc.Quat",
  2225. "x": 0,
  2226. "y": 0,
  2227. "z": 0,
  2228. "w": 1
  2229. },
  2230. "_lscale": {
  2231. "__type__": "cc.Vec3",
  2232. "x": 1,
  2233. "y": 1,
  2234. "z": 1
  2235. },
  2236. "_layer": 1073741824,
  2237. "_euler": {
  2238. "__type__": "cc.Vec3",
  2239. "x": 0,
  2240. "y": 0,
  2241. "z": 0
  2242. },
  2243. "_id": ""
  2244. },
  2245. {
  2246. "__type__": "cc.Node",
  2247. "_name": "tabbar_in_bg",
  2248. "_objFlags": 0,
  2249. "_parent": {
  2250. "__id__": 96
  2251. },
  2252. "_children": [],
  2253. "_active": true,
  2254. "_components": [
  2255. {
  2256. "__id__": 98
  2257. },
  2258. {
  2259. "__id__": 100
  2260. }
  2261. ],
  2262. "_prefab": {
  2263. "__id__": 102
  2264. },
  2265. "_lpos": {
  2266. "__type__": "cc.Vec3",
  2267. "x": 0,
  2268. "y": 0,
  2269. "z": 0
  2270. },
  2271. "_lrot": {
  2272. "__type__": "cc.Quat",
  2273. "x": 0,
  2274. "y": 0,
  2275. "z": 0,
  2276. "w": 1
  2277. },
  2278. "_lscale": {
  2279. "__type__": "cc.Vec3",
  2280. "x": 1,
  2281. "y": 1,
  2282. "z": 1
  2283. },
  2284. "_layer": 1073741824,
  2285. "_euler": {
  2286. "__type__": "cc.Vec3",
  2287. "x": 0,
  2288. "y": 0,
  2289. "z": 0
  2290. },
  2291. "_id": ""
  2292. },
  2293. {
  2294. "__type__": "cc.UITransform",
  2295. "_name": "",
  2296. "_objFlags": 0,
  2297. "node": {
  2298. "__id__": 97
  2299. },
  2300. "_enabled": true,
  2301. "__prefab": {
  2302. "__id__": 99
  2303. },
  2304. "_priority": 0,
  2305. "_contentSize": {
  2306. "__type__": "cc.Size",
  2307. "width": 64,
  2308. "height": 113
  2309. },
  2310. "_anchorPoint": {
  2311. "__type__": "cc.Vec2",
  2312. "x": 0.5,
  2313. "y": 0.5
  2314. },
  2315. "_id": ""
  2316. },
  2317. {
  2318. "__type__": "cc.CompPrefabInfo",
  2319. "fileId": "7327n2tpxGprSMf6uK5d/4"
  2320. },
  2321. {
  2322. "__type__": "cc.Sprite",
  2323. "_name": "",
  2324. "_objFlags": 0,
  2325. "node": {
  2326. "__id__": 97
  2327. },
  2328. "_enabled": true,
  2329. "__prefab": {
  2330. "__id__": 101
  2331. },
  2332. "_visFlags": 0,
  2333. "_customMaterial": null,
  2334. "_srcBlendFactor": 2,
  2335. "_dstBlendFactor": 4,
  2336. "_color": {
  2337. "__type__": "cc.Color",
  2338. "r": 255,
  2339. "g": 255,
  2340. "b": 255,
  2341. "a": 255
  2342. },
  2343. "_spriteFrame": {
  2344. "__uuid__": "5395e4ea-f190-4c10-9016-13bd9faa659d@f9941"
  2345. },
  2346. "_type": 0,
  2347. "_fillType": 0,
  2348. "_sizeMode": 1,
  2349. "_fillCenter": {
  2350. "__type__": "cc.Vec2",
  2351. "x": 0,
  2352. "y": 0
  2353. },
  2354. "_fillStart": 0,
  2355. "_fillRange": 0,
  2356. "_isTrimmedMode": true,
  2357. "_useGrayscale": false,
  2358. "_atlas": null,
  2359. "_id": ""
  2360. },
  2361. {
  2362. "__type__": "cc.CompPrefabInfo",
  2363. "fileId": "ed3EFnmftHiaBXMvozNOKc"
  2364. },
  2365. {
  2366. "__type__": "cc.PrefabInfo",
  2367. "root": {
  2368. "__id__": 1
  2369. },
  2370. "asset": {
  2371. "__id__": 0
  2372. },
  2373. "fileId": "feTJaeXm5Fd6LPcQU7ND1P"
  2374. },
  2375. {
  2376. "__type__": "cc.Node",
  2377. "_name": "tabbar_in_1",
  2378. "_objFlags": 0,
  2379. "_parent": {
  2380. "__id__": 96
  2381. },
  2382. "_children": [],
  2383. "_active": true,
  2384. "_components": [
  2385. {
  2386. "__id__": 104
  2387. },
  2388. {
  2389. "__id__": 106
  2390. }
  2391. ],
  2392. "_prefab": {
  2393. "__id__": 108
  2394. },
  2395. "_lpos": {
  2396. "__type__": "cc.Vec3",
  2397. "x": 0,
  2398. "y": 0,
  2399. "z": 0
  2400. },
  2401. "_lrot": {
  2402. "__type__": "cc.Quat",
  2403. "x": 0,
  2404. "y": 0,
  2405. "z": 0,
  2406. "w": 1
  2407. },
  2408. "_lscale": {
  2409. "__type__": "cc.Vec3",
  2410. "x": 1,
  2411. "y": 1,
  2412. "z": 1
  2413. },
  2414. "_layer": 1073741824,
  2415. "_euler": {
  2416. "__type__": "cc.Vec3",
  2417. "x": 0,
  2418. "y": 0,
  2419. "z": 0
  2420. },
  2421. "_id": ""
  2422. },
  2423. {
  2424. "__type__": "cc.UITransform",
  2425. "_name": "",
  2426. "_objFlags": 0,
  2427. "node": {
  2428. "__id__": 103
  2429. },
  2430. "_enabled": true,
  2431. "__prefab": {
  2432. "__id__": 105
  2433. },
  2434. "_priority": 0,
  2435. "_contentSize": {
  2436. "__type__": "cc.Size",
  2437. "width": 27,
  2438. "height": 100
  2439. },
  2440. "_anchorPoint": {
  2441. "__type__": "cc.Vec2",
  2442. "x": 0.5,
  2443. "y": 0.5
  2444. },
  2445. "_id": ""
  2446. },
  2447. {
  2448. "__type__": "cc.CompPrefabInfo",
  2449. "fileId": "1b21t3iyBGgoLxLRKqfuGF"
  2450. },
  2451. {
  2452. "__type__": "cc.Sprite",
  2453. "_name": "",
  2454. "_objFlags": 0,
  2455. "node": {
  2456. "__id__": 103
  2457. },
  2458. "_enabled": true,
  2459. "__prefab": {
  2460. "__id__": 107
  2461. },
  2462. "_visFlags": 0,
  2463. "_customMaterial": null,
  2464. "_srcBlendFactor": 2,
  2465. "_dstBlendFactor": 4,
  2466. "_color": {
  2467. "__type__": "cc.Color",
  2468. "r": 255,
  2469. "g": 255,
  2470. "b": 255,
  2471. "a": 255
  2472. },
  2473. "_spriteFrame": {
  2474. "__uuid__": "b1209920-f160-4866-bb0f-cd5c55e1dc0d@f9941"
  2475. },
  2476. "_type": 0,
  2477. "_fillType": 0,
  2478. "_sizeMode": 1,
  2479. "_fillCenter": {
  2480. "__type__": "cc.Vec2",
  2481. "x": 0,
  2482. "y": 0
  2483. },
  2484. "_fillStart": 0,
  2485. "_fillRange": 0,
  2486. "_isTrimmedMode": true,
  2487. "_useGrayscale": false,
  2488. "_atlas": null,
  2489. "_id": ""
  2490. },
  2491. {
  2492. "__type__": "cc.CompPrefabInfo",
  2493. "fileId": "83pBp3oeJLyJbyJd7077tH"
  2494. },
  2495. {
  2496. "__type__": "cc.PrefabInfo",
  2497. "root": {
  2498. "__id__": 1
  2499. },
  2500. "asset": {
  2501. "__id__": 0
  2502. },
  2503. "fileId": "bawVAh0bdCy5KxTm0OB/jN"
  2504. },
  2505. {
  2506. "__type__": "cc.UITransform",
  2507. "_name": "",
  2508. "_objFlags": 0,
  2509. "node": {
  2510. "__id__": 96
  2511. },
  2512. "_enabled": true,
  2513. "__prefab": {
  2514. "__id__": 110
  2515. },
  2516. "_priority": 0,
  2517. "_contentSize": {
  2518. "__type__": "cc.Size",
  2519. "width": 64,
  2520. "height": 113
  2521. },
  2522. "_anchorPoint": {
  2523. "__type__": "cc.Vec2",
  2524. "x": 0.5,
  2525. "y": 0.5
  2526. },
  2527. "_id": ""
  2528. },
  2529. {
  2530. "__type__": "cc.CompPrefabInfo",
  2531. "fileId": "b2hnG0EzVOaYHu+wsRGEd2"
  2532. },
  2533. {
  2534. "__type__": "cc.PrefabInfo",
  2535. "root": {
  2536. "__id__": 1
  2537. },
  2538. "asset": {
  2539. "__id__": 0
  2540. },
  2541. "fileId": "06ZiUJn+1LU4c4XO7+WF2Z"
  2542. },
  2543. {
  2544. "__type__": "cc.UITransform",
  2545. "_name": "",
  2546. "_objFlags": 0,
  2547. "node": {
  2548. "__id__": 79
  2549. },
  2550. "_enabled": true,
  2551. "__prefab": {
  2552. "__id__": 113
  2553. },
  2554. "_priority": 0,
  2555. "_contentSize": {
  2556. "__type__": "cc.Size",
  2557. "width": 64,
  2558. "height": 115
  2559. },
  2560. "_anchorPoint": {
  2561. "__type__": "cc.Vec2",
  2562. "x": 0.5,
  2563. "y": 0.5
  2564. },
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.CompPrefabInfo",
  2569. "fileId": "98Yhm7uQpJ4r1NzXT8UWRj"
  2570. },
  2571. {
  2572. "__type__": "faa7eqRv7dLVqHDYfQW4APh",
  2573. "_name": "",
  2574. "_objFlags": 0,
  2575. "node": {
  2576. "__id__": 79
  2577. },
  2578. "_enabled": true,
  2579. "__prefab": {
  2580. "__id__": 115
  2581. },
  2582. "checkedNode": {
  2583. "__id__": 96
  2584. },
  2585. "uncheckedNode": {
  2586. "__id__": 80
  2587. },
  2588. "group": "tabbar",
  2589. "_isChecked": false,
  2590. "checkEvents": [
  2591. {
  2592. "__id__": 116
  2593. }
  2594. ],
  2595. "_id": ""
  2596. },
  2597. {
  2598. "__type__": "cc.CompPrefabInfo",
  2599. "fileId": "60VEVNXHdL/qLxMULBHBWc"
  2600. },
  2601. {
  2602. "__type__": "cc.ClickEvent",
  2603. "target": {
  2604. "__id__": 1
  2605. },
  2606. "component": "",
  2607. "_componentId": "1808am6E4FLSaSGN9i2qtgl",
  2608. "handler": "onTabbarChange",
  2609. "customEventData": "2"
  2610. },
  2611. {
  2612. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2613. "_name": "",
  2614. "_objFlags": 0,
  2615. "node": {
  2616. "__id__": 79
  2617. },
  2618. "_enabled": true,
  2619. "__prefab": {
  2620. "__id__": 118
  2621. },
  2622. "clips": [
  2623. {
  2624. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  2625. }
  2626. ],
  2627. "_volume": 1,
  2628. "useGlobalVolume": true,
  2629. "playOnLoad": true,
  2630. "playOnTouch": false,
  2631. "oneShot": true,
  2632. "loop": false,
  2633. "_id": ""
  2634. },
  2635. {
  2636. "__type__": "cc.CompPrefabInfo",
  2637. "fileId": "25C8vruEBHS6DQPO81a2Ob"
  2638. },
  2639. {
  2640. "__type__": "cc.PrefabInfo",
  2641. "root": {
  2642. "__id__": 1
  2643. },
  2644. "asset": {
  2645. "__id__": 0
  2646. },
  2647. "fileId": "c7ozmHP1ZGjZx2zbpAxB7R"
  2648. },
  2649. {
  2650. "__type__": "cc.Node",
  2651. "_name": "页签-3",
  2652. "_objFlags": 0,
  2653. "_parent": {
  2654. "__id__": 37
  2655. },
  2656. "_children": [
  2657. {
  2658. "__id__": 121
  2659. },
  2660. {
  2661. "__id__": 137
  2662. }
  2663. ],
  2664. "_active": true,
  2665. "_components": [
  2666. {
  2667. "__id__": 153
  2668. },
  2669. {
  2670. "__id__": 155
  2671. },
  2672. {
  2673. "__id__": 158
  2674. }
  2675. ],
  2676. "_prefab": {
  2677. "__id__": 160
  2678. },
  2679. "_lpos": {
  2680. "__type__": "cc.Vec3",
  2681. "x": 0,
  2682. "y": 0,
  2683. "z": 0
  2684. },
  2685. "_lrot": {
  2686. "__type__": "cc.Quat",
  2687. "x": 0,
  2688. "y": 0,
  2689. "z": 0,
  2690. "w": 1
  2691. },
  2692. "_lscale": {
  2693. "__type__": "cc.Vec3",
  2694. "x": 1,
  2695. "y": 1,
  2696. "z": 1
  2697. },
  2698. "_layer": 1073741824,
  2699. "_euler": {
  2700. "__type__": "cc.Vec3",
  2701. "x": 0,
  2702. "y": 0,
  2703. "z": 0
  2704. },
  2705. "_id": ""
  2706. },
  2707. {
  2708. "__type__": "cc.Node",
  2709. "_name": "未选中",
  2710. "_objFlags": 0,
  2711. "_parent": {
  2712. "__id__": 120
  2713. },
  2714. "_children": [
  2715. {
  2716. "__id__": 122
  2717. },
  2718. {
  2719. "__id__": 128
  2720. }
  2721. ],
  2722. "_active": true,
  2723. "_components": [
  2724. {
  2725. "__id__": 134
  2726. }
  2727. ],
  2728. "_prefab": {
  2729. "__id__": 136
  2730. },
  2731. "_lpos": {
  2732. "__type__": "cc.Vec3",
  2733. "x": 0,
  2734. "y": 0,
  2735. "z": 0
  2736. },
  2737. "_lrot": {
  2738. "__type__": "cc.Quat",
  2739. "x": 0,
  2740. "y": 0,
  2741. "z": 0,
  2742. "w": 1
  2743. },
  2744. "_lscale": {
  2745. "__type__": "cc.Vec3",
  2746. "x": 1,
  2747. "y": 1,
  2748. "z": 1
  2749. },
  2750. "_layer": 1073741824,
  2751. "_euler": {
  2752. "__type__": "cc.Vec3",
  2753. "x": 0,
  2754. "y": 0,
  2755. "z": 0
  2756. },
  2757. "_id": ""
  2758. },
  2759. {
  2760. "__type__": "cc.Node",
  2761. "_name": "tabbar_un_bg",
  2762. "_objFlags": 0,
  2763. "_parent": {
  2764. "__id__": 121
  2765. },
  2766. "_children": [],
  2767. "_active": true,
  2768. "_components": [
  2769. {
  2770. "__id__": 123
  2771. },
  2772. {
  2773. "__id__": 125
  2774. }
  2775. ],
  2776. "_prefab": {
  2777. "__id__": 127
  2778. },
  2779. "_lpos": {
  2780. "__type__": "cc.Vec3",
  2781. "x": 0,
  2782. "y": 0,
  2783. "z": 0
  2784. },
  2785. "_lrot": {
  2786. "__type__": "cc.Quat",
  2787. "x": 0,
  2788. "y": 0,
  2789. "z": 0,
  2790. "w": 1
  2791. },
  2792. "_lscale": {
  2793. "__type__": "cc.Vec3",
  2794. "x": 1,
  2795. "y": 1,
  2796. "z": 1
  2797. },
  2798. "_layer": 1073741824,
  2799. "_euler": {
  2800. "__type__": "cc.Vec3",
  2801. "x": 0,
  2802. "y": 0,
  2803. "z": 0
  2804. },
  2805. "_id": ""
  2806. },
  2807. {
  2808. "__type__": "cc.UITransform",
  2809. "_name": "",
  2810. "_objFlags": 0,
  2811. "node": {
  2812. "__id__": 122
  2813. },
  2814. "_enabled": true,
  2815. "__prefab": {
  2816. "__id__": 124
  2817. },
  2818. "_priority": 0,
  2819. "_contentSize": {
  2820. "__type__": "cc.Size",
  2821. "width": 60,
  2822. "height": 115
  2823. },
  2824. "_anchorPoint": {
  2825. "__type__": "cc.Vec2",
  2826. "x": 0.5,
  2827. "y": 0.5
  2828. },
  2829. "_id": ""
  2830. },
  2831. {
  2832. "__type__": "cc.CompPrefabInfo",
  2833. "fileId": "4diuH9UhxIPZXc3/egMyPx"
  2834. },
  2835. {
  2836. "__type__": "cc.Sprite",
  2837. "_name": "",
  2838. "_objFlags": 0,
  2839. "node": {
  2840. "__id__": 122
  2841. },
  2842. "_enabled": true,
  2843. "__prefab": {
  2844. "__id__": 126
  2845. },
  2846. "_visFlags": 0,
  2847. "_customMaterial": null,
  2848. "_srcBlendFactor": 2,
  2849. "_dstBlendFactor": 4,
  2850. "_color": {
  2851. "__type__": "cc.Color",
  2852. "r": 255,
  2853. "g": 255,
  2854. "b": 255,
  2855. "a": 255
  2856. },
  2857. "_spriteFrame": {
  2858. "__uuid__": "af2af94e-4bd3-44ab-beab-49ff1d608702@f9941"
  2859. },
  2860. "_type": 0,
  2861. "_fillType": 0,
  2862. "_sizeMode": 1,
  2863. "_fillCenter": {
  2864. "__type__": "cc.Vec2",
  2865. "x": 0,
  2866. "y": 0
  2867. },
  2868. "_fillStart": 0,
  2869. "_fillRange": 0,
  2870. "_isTrimmedMode": true,
  2871. "_useGrayscale": false,
  2872. "_atlas": null,
  2873. "_id": ""
  2874. },
  2875. {
  2876. "__type__": "cc.CompPrefabInfo",
  2877. "fileId": "1alQTLSTtIM60Octywqf54"
  2878. },
  2879. {
  2880. "__type__": "cc.PrefabInfo",
  2881. "root": {
  2882. "__id__": 1
  2883. },
  2884. "asset": {
  2885. "__id__": 0
  2886. },
  2887. "fileId": "6cwT4/gidMU7lWwflRJh1X"
  2888. },
  2889. {
  2890. "__type__": "cc.Node",
  2891. "_name": "tabbar_un_1",
  2892. "_objFlags": 0,
  2893. "_parent": {
  2894. "__id__": 121
  2895. },
  2896. "_children": [],
  2897. "_active": true,
  2898. "_components": [
  2899. {
  2900. "__id__": 129
  2901. },
  2902. {
  2903. "__id__": 131
  2904. }
  2905. ],
  2906. "_prefab": {
  2907. "__id__": 133
  2908. },
  2909. "_lpos": {
  2910. "__type__": "cc.Vec3",
  2911. "x": 0,
  2912. "y": 0,
  2913. "z": 0
  2914. },
  2915. "_lrot": {
  2916. "__type__": "cc.Quat",
  2917. "x": 0,
  2918. "y": 0,
  2919. "z": 0,
  2920. "w": 1
  2921. },
  2922. "_lscale": {
  2923. "__type__": "cc.Vec3",
  2924. "x": 1,
  2925. "y": 1,
  2926. "z": 1
  2927. },
  2928. "_layer": 1073741824,
  2929. "_euler": {
  2930. "__type__": "cc.Vec3",
  2931. "x": 0,
  2932. "y": 0,
  2933. "z": 0
  2934. },
  2935. "_id": ""
  2936. },
  2937. {
  2938. "__type__": "cc.UITransform",
  2939. "_name": "",
  2940. "_objFlags": 0,
  2941. "node": {
  2942. "__id__": 128
  2943. },
  2944. "_enabled": true,
  2945. "__prefab": {
  2946. "__id__": 130
  2947. },
  2948. "_priority": 0,
  2949. "_contentSize": {
  2950. "__type__": "cc.Size",
  2951. "width": 24,
  2952. "height": 85
  2953. },
  2954. "_anchorPoint": {
  2955. "__type__": "cc.Vec2",
  2956. "x": 0.5,
  2957. "y": 0.5
  2958. },
  2959. "_id": ""
  2960. },
  2961. {
  2962. "__type__": "cc.CompPrefabInfo",
  2963. "fileId": "c5W7aj+PFBl6bykbd2w7/U"
  2964. },
  2965. {
  2966. "__type__": "cc.Sprite",
  2967. "_name": "",
  2968. "_objFlags": 0,
  2969. "node": {
  2970. "__id__": 128
  2971. },
  2972. "_enabled": true,
  2973. "__prefab": {
  2974. "__id__": 132
  2975. },
  2976. "_visFlags": 0,
  2977. "_customMaterial": null,
  2978. "_srcBlendFactor": 2,
  2979. "_dstBlendFactor": 4,
  2980. "_color": {
  2981. "__type__": "cc.Color",
  2982. "r": 255,
  2983. "g": 255,
  2984. "b": 255,
  2985. "a": 255
  2986. },
  2987. "_spriteFrame": {
  2988. "__uuid__": "9e6790ce-cd21-4afb-806e-c6a6353f26cd@f9941"
  2989. },
  2990. "_type": 0,
  2991. "_fillType": 0,
  2992. "_sizeMode": 1,
  2993. "_fillCenter": {
  2994. "__type__": "cc.Vec2",
  2995. "x": 0,
  2996. "y": 0
  2997. },
  2998. "_fillStart": 0,
  2999. "_fillRange": 0,
  3000. "_isTrimmedMode": true,
  3001. "_useGrayscale": false,
  3002. "_atlas": null,
  3003. "_id": ""
  3004. },
  3005. {
  3006. "__type__": "cc.CompPrefabInfo",
  3007. "fileId": "c6icRChfhOjpxKcWynZ6bn"
  3008. },
  3009. {
  3010. "__type__": "cc.PrefabInfo",
  3011. "root": {
  3012. "__id__": 1
  3013. },
  3014. "asset": {
  3015. "__id__": 0
  3016. },
  3017. "fileId": "03p1thVQ9AOrGLCJQvjYAB"
  3018. },
  3019. {
  3020. "__type__": "cc.UITransform",
  3021. "_name": "",
  3022. "_objFlags": 0,
  3023. "node": {
  3024. "__id__": 121
  3025. },
  3026. "_enabled": true,
  3027. "__prefab": {
  3028. "__id__": 135
  3029. },
  3030. "_priority": 0,
  3031. "_contentSize": {
  3032. "__type__": "cc.Size",
  3033. "width": 60,
  3034. "height": 115
  3035. },
  3036. "_anchorPoint": {
  3037. "__type__": "cc.Vec2",
  3038. "x": 0.5,
  3039. "y": 0.5
  3040. },
  3041. "_id": ""
  3042. },
  3043. {
  3044. "__type__": "cc.CompPrefabInfo",
  3045. "fileId": "6bbRupTJRI0ZYrJtBiVoLp"
  3046. },
  3047. {
  3048. "__type__": "cc.PrefabInfo",
  3049. "root": {
  3050. "__id__": 1
  3051. },
  3052. "asset": {
  3053. "__id__": 0
  3054. },
  3055. "fileId": "32qTqdk0FFgISY+T3MbCzI"
  3056. },
  3057. {
  3058. "__type__": "cc.Node",
  3059. "_name": "选中",
  3060. "_objFlags": 0,
  3061. "_parent": {
  3062. "__id__": 120
  3063. },
  3064. "_children": [
  3065. {
  3066. "__id__": 138
  3067. },
  3068. {
  3069. "__id__": 144
  3070. }
  3071. ],
  3072. "_active": false,
  3073. "_components": [
  3074. {
  3075. "__id__": 150
  3076. }
  3077. ],
  3078. "_prefab": {
  3079. "__id__": 152
  3080. },
  3081. "_lpos": {
  3082. "__type__": "cc.Vec3",
  3083. "x": 0,
  3084. "y": 0,
  3085. "z": 0
  3086. },
  3087. "_lrot": {
  3088. "__type__": "cc.Quat",
  3089. "x": 0,
  3090. "y": 0,
  3091. "z": 0,
  3092. "w": 1
  3093. },
  3094. "_lscale": {
  3095. "__type__": "cc.Vec3",
  3096. "x": 1,
  3097. "y": 1,
  3098. "z": 1
  3099. },
  3100. "_layer": 1073741824,
  3101. "_euler": {
  3102. "__type__": "cc.Vec3",
  3103. "x": 0,
  3104. "y": 0,
  3105. "z": 0
  3106. },
  3107. "_id": ""
  3108. },
  3109. {
  3110. "__type__": "cc.Node",
  3111. "_name": "tabbar_in_bg",
  3112. "_objFlags": 0,
  3113. "_parent": {
  3114. "__id__": 137
  3115. },
  3116. "_children": [],
  3117. "_active": true,
  3118. "_components": [
  3119. {
  3120. "__id__": 139
  3121. },
  3122. {
  3123. "__id__": 141
  3124. }
  3125. ],
  3126. "_prefab": {
  3127. "__id__": 143
  3128. },
  3129. "_lpos": {
  3130. "__type__": "cc.Vec3",
  3131. "x": 0,
  3132. "y": 0,
  3133. "z": 0
  3134. },
  3135. "_lrot": {
  3136. "__type__": "cc.Quat",
  3137. "x": 0,
  3138. "y": 0,
  3139. "z": 0,
  3140. "w": 1
  3141. },
  3142. "_lscale": {
  3143. "__type__": "cc.Vec3",
  3144. "x": 1,
  3145. "y": 1,
  3146. "z": 1
  3147. },
  3148. "_layer": 1073741824,
  3149. "_euler": {
  3150. "__type__": "cc.Vec3",
  3151. "x": 0,
  3152. "y": 0,
  3153. "z": 0
  3154. },
  3155. "_id": ""
  3156. },
  3157. {
  3158. "__type__": "cc.UITransform",
  3159. "_name": "",
  3160. "_objFlags": 0,
  3161. "node": {
  3162. "__id__": 138
  3163. },
  3164. "_enabled": true,
  3165. "__prefab": {
  3166. "__id__": 140
  3167. },
  3168. "_priority": 0,
  3169. "_contentSize": {
  3170. "__type__": "cc.Size",
  3171. "width": 64,
  3172. "height": 113
  3173. },
  3174. "_anchorPoint": {
  3175. "__type__": "cc.Vec2",
  3176. "x": 0.5,
  3177. "y": 0.5
  3178. },
  3179. "_id": ""
  3180. },
  3181. {
  3182. "__type__": "cc.CompPrefabInfo",
  3183. "fileId": "43EFg6hLJIU7AJ44lEsgit"
  3184. },
  3185. {
  3186. "__type__": "cc.Sprite",
  3187. "_name": "",
  3188. "_objFlags": 0,
  3189. "node": {
  3190. "__id__": 138
  3191. },
  3192. "_enabled": true,
  3193. "__prefab": {
  3194. "__id__": 142
  3195. },
  3196. "_visFlags": 0,
  3197. "_customMaterial": null,
  3198. "_srcBlendFactor": 2,
  3199. "_dstBlendFactor": 4,
  3200. "_color": {
  3201. "__type__": "cc.Color",
  3202. "r": 255,
  3203. "g": 255,
  3204. "b": 255,
  3205. "a": 255
  3206. },
  3207. "_spriteFrame": {
  3208. "__uuid__": "5395e4ea-f190-4c10-9016-13bd9faa659d@f9941"
  3209. },
  3210. "_type": 0,
  3211. "_fillType": 0,
  3212. "_sizeMode": 1,
  3213. "_fillCenter": {
  3214. "__type__": "cc.Vec2",
  3215. "x": 0,
  3216. "y": 0
  3217. },
  3218. "_fillStart": 0,
  3219. "_fillRange": 0,
  3220. "_isTrimmedMode": true,
  3221. "_useGrayscale": false,
  3222. "_atlas": null,
  3223. "_id": ""
  3224. },
  3225. {
  3226. "__type__": "cc.CompPrefabInfo",
  3227. "fileId": "bdzgN06c9D+rPLlDlPMQuE"
  3228. },
  3229. {
  3230. "__type__": "cc.PrefabInfo",
  3231. "root": {
  3232. "__id__": 1
  3233. },
  3234. "asset": {
  3235. "__id__": 0
  3236. },
  3237. "fileId": "3eWrqihpBEZ6K2co2vAVJ1"
  3238. },
  3239. {
  3240. "__type__": "cc.Node",
  3241. "_name": "tabbar_in_1",
  3242. "_objFlags": 0,
  3243. "_parent": {
  3244. "__id__": 137
  3245. },
  3246. "_children": [],
  3247. "_active": true,
  3248. "_components": [
  3249. {
  3250. "__id__": 145
  3251. },
  3252. {
  3253. "__id__": 147
  3254. }
  3255. ],
  3256. "_prefab": {
  3257. "__id__": 149
  3258. },
  3259. "_lpos": {
  3260. "__type__": "cc.Vec3",
  3261. "x": 0,
  3262. "y": 0,
  3263. "z": 0
  3264. },
  3265. "_lrot": {
  3266. "__type__": "cc.Quat",
  3267. "x": 0,
  3268. "y": 0,
  3269. "z": 0,
  3270. "w": 1
  3271. },
  3272. "_lscale": {
  3273. "__type__": "cc.Vec3",
  3274. "x": 1,
  3275. "y": 1,
  3276. "z": 1
  3277. },
  3278. "_layer": 1073741824,
  3279. "_euler": {
  3280. "__type__": "cc.Vec3",
  3281. "x": 0,
  3282. "y": 0,
  3283. "z": 0
  3284. },
  3285. "_id": ""
  3286. },
  3287. {
  3288. "__type__": "cc.UITransform",
  3289. "_name": "",
  3290. "_objFlags": 0,
  3291. "node": {
  3292. "__id__": 144
  3293. },
  3294. "_enabled": true,
  3295. "__prefab": {
  3296. "__id__": 146
  3297. },
  3298. "_priority": 0,
  3299. "_contentSize": {
  3300. "__type__": "cc.Size",
  3301. "width": 27,
  3302. "height": 101
  3303. },
  3304. "_anchorPoint": {
  3305. "__type__": "cc.Vec2",
  3306. "x": 0.5,
  3307. "y": 0.5
  3308. },
  3309. "_id": ""
  3310. },
  3311. {
  3312. "__type__": "cc.CompPrefabInfo",
  3313. "fileId": "9fb/z+eZ9NlqVFK7rAhi1D"
  3314. },
  3315. {
  3316. "__type__": "cc.Sprite",
  3317. "_name": "",
  3318. "_objFlags": 0,
  3319. "node": {
  3320. "__id__": 144
  3321. },
  3322. "_enabled": true,
  3323. "__prefab": {
  3324. "__id__": 148
  3325. },
  3326. "_visFlags": 0,
  3327. "_customMaterial": null,
  3328. "_srcBlendFactor": 2,
  3329. "_dstBlendFactor": 4,
  3330. "_color": {
  3331. "__type__": "cc.Color",
  3332. "r": 255,
  3333. "g": 255,
  3334. "b": 255,
  3335. "a": 255
  3336. },
  3337. "_spriteFrame": {
  3338. "__uuid__": "59466f55-471c-40f3-9cab-f4cf7011d30d@f9941"
  3339. },
  3340. "_type": 0,
  3341. "_fillType": 0,
  3342. "_sizeMode": 1,
  3343. "_fillCenter": {
  3344. "__type__": "cc.Vec2",
  3345. "x": 0,
  3346. "y": 0
  3347. },
  3348. "_fillStart": 0,
  3349. "_fillRange": 0,
  3350. "_isTrimmedMode": true,
  3351. "_useGrayscale": false,
  3352. "_atlas": null,
  3353. "_id": ""
  3354. },
  3355. {
  3356. "__type__": "cc.CompPrefabInfo",
  3357. "fileId": "31+L98zyxKGYLsat3ng47i"
  3358. },
  3359. {
  3360. "__type__": "cc.PrefabInfo",
  3361. "root": {
  3362. "__id__": 1
  3363. },
  3364. "asset": {
  3365. "__id__": 0
  3366. },
  3367. "fileId": "45vcTAbW1J2pLSl25wpILE"
  3368. },
  3369. {
  3370. "__type__": "cc.UITransform",
  3371. "_name": "",
  3372. "_objFlags": 0,
  3373. "node": {
  3374. "__id__": 137
  3375. },
  3376. "_enabled": true,
  3377. "__prefab": {
  3378. "__id__": 151
  3379. },
  3380. "_priority": 0,
  3381. "_contentSize": {
  3382. "__type__": "cc.Size",
  3383. "width": 64,
  3384. "height": 113
  3385. },
  3386. "_anchorPoint": {
  3387. "__type__": "cc.Vec2",
  3388. "x": 0.5,
  3389. "y": 0.5
  3390. },
  3391. "_id": ""
  3392. },
  3393. {
  3394. "__type__": "cc.CompPrefabInfo",
  3395. "fileId": "91mTF4z49OO4IKfZh2lkb5"
  3396. },
  3397. {
  3398. "__type__": "cc.PrefabInfo",
  3399. "root": {
  3400. "__id__": 1
  3401. },
  3402. "asset": {
  3403. "__id__": 0
  3404. },
  3405. "fileId": "ffqud+qltJq6A7HEmJNv6d"
  3406. },
  3407. {
  3408. "__type__": "cc.UITransform",
  3409. "_name": "",
  3410. "_objFlags": 0,
  3411. "node": {
  3412. "__id__": 120
  3413. },
  3414. "_enabled": true,
  3415. "__prefab": {
  3416. "__id__": 154
  3417. },
  3418. "_priority": 0,
  3419. "_contentSize": {
  3420. "__type__": "cc.Size",
  3421. "width": 64,
  3422. "height": 115
  3423. },
  3424. "_anchorPoint": {
  3425. "__type__": "cc.Vec2",
  3426. "x": 0.5,
  3427. "y": 0.5
  3428. },
  3429. "_id": ""
  3430. },
  3431. {
  3432. "__type__": "cc.CompPrefabInfo",
  3433. "fileId": "1epBACdWVGt5CbBndvWRgS"
  3434. },
  3435. {
  3436. "__type__": "faa7eqRv7dLVqHDYfQW4APh",
  3437. "_name": "",
  3438. "_objFlags": 0,
  3439. "node": {
  3440. "__id__": 120
  3441. },
  3442. "_enabled": true,
  3443. "__prefab": {
  3444. "__id__": 156
  3445. },
  3446. "checkedNode": {
  3447. "__id__": 137
  3448. },
  3449. "uncheckedNode": {
  3450. "__id__": 121
  3451. },
  3452. "group": "tabbar",
  3453. "_isChecked": false,
  3454. "checkEvents": [
  3455. {
  3456. "__id__": 157
  3457. }
  3458. ],
  3459. "_id": ""
  3460. },
  3461. {
  3462. "__type__": "cc.CompPrefabInfo",
  3463. "fileId": "4cEzWfB9lOOJLKT2PBy9Q9"
  3464. },
  3465. {
  3466. "__type__": "cc.ClickEvent",
  3467. "target": {
  3468. "__id__": 1
  3469. },
  3470. "component": "",
  3471. "_componentId": "1808am6E4FLSaSGN9i2qtgl",
  3472. "handler": "onTabbarChange",
  3473. "customEventData": "3"
  3474. },
  3475. {
  3476. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  3477. "_name": "",
  3478. "_objFlags": 0,
  3479. "node": {
  3480. "__id__": 120
  3481. },
  3482. "_enabled": true,
  3483. "__prefab": {
  3484. "__id__": 159
  3485. },
  3486. "clips": [
  3487. {
  3488. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  3489. }
  3490. ],
  3491. "_volume": 1,
  3492. "useGlobalVolume": true,
  3493. "playOnLoad": true,
  3494. "playOnTouch": false,
  3495. "oneShot": true,
  3496. "loop": false,
  3497. "_id": ""
  3498. },
  3499. {
  3500. "__type__": "cc.CompPrefabInfo",
  3501. "fileId": "25C8vruEBHS6DQPO81a2Ob"
  3502. },
  3503. {
  3504. "__type__": "cc.PrefabInfo",
  3505. "root": {
  3506. "__id__": 1
  3507. },
  3508. "asset": {
  3509. "__id__": 0
  3510. },
  3511. "fileId": "a0g2Bz7KxMXZVc/BtFWaKE"
  3512. },
  3513. {
  3514. "__type__": "cc.Node",
  3515. "_name": "页签-4",
  3516. "_objFlags": 0,
  3517. "_parent": {
  3518. "__id__": 37
  3519. },
  3520. "_children": [
  3521. {
  3522. "__id__": 162
  3523. },
  3524. {
  3525. "__id__": 178
  3526. }
  3527. ],
  3528. "_active": true,
  3529. "_components": [
  3530. {
  3531. "__id__": 194
  3532. },
  3533. {
  3534. "__id__": 196
  3535. },
  3536. {
  3537. "__id__": 199
  3538. }
  3539. ],
  3540. "_prefab": {
  3541. "__id__": 201
  3542. },
  3543. "_lpos": {
  3544. "__type__": "cc.Vec3",
  3545. "x": 0,
  3546. "y": -120,
  3547. "z": 0
  3548. },
  3549. "_lrot": {
  3550. "__type__": "cc.Quat",
  3551. "x": 0,
  3552. "y": 0,
  3553. "z": 0,
  3554. "w": 1
  3555. },
  3556. "_lscale": {
  3557. "__type__": "cc.Vec3",
  3558. "x": 1,
  3559. "y": 1,
  3560. "z": 1
  3561. },
  3562. "_layer": 1073741824,
  3563. "_euler": {
  3564. "__type__": "cc.Vec3",
  3565. "x": 0,
  3566. "y": 0,
  3567. "z": 0
  3568. },
  3569. "_id": ""
  3570. },
  3571. {
  3572. "__type__": "cc.Node",
  3573. "_name": "未选中",
  3574. "_objFlags": 0,
  3575. "_parent": {
  3576. "__id__": 161
  3577. },
  3578. "_children": [
  3579. {
  3580. "__id__": 163
  3581. },
  3582. {
  3583. "__id__": 169
  3584. }
  3585. ],
  3586. "_active": true,
  3587. "_components": [
  3588. {
  3589. "__id__": 175
  3590. }
  3591. ],
  3592. "_prefab": {
  3593. "__id__": 177
  3594. },
  3595. "_lpos": {
  3596. "__type__": "cc.Vec3",
  3597. "x": 0,
  3598. "y": 0,
  3599. "z": 0
  3600. },
  3601. "_lrot": {
  3602. "__type__": "cc.Quat",
  3603. "x": 0,
  3604. "y": 0,
  3605. "z": 0,
  3606. "w": 1
  3607. },
  3608. "_lscale": {
  3609. "__type__": "cc.Vec3",
  3610. "x": 1,
  3611. "y": 1,
  3612. "z": 1
  3613. },
  3614. "_layer": 1073741824,
  3615. "_euler": {
  3616. "__type__": "cc.Vec3",
  3617. "x": 0,
  3618. "y": 0,
  3619. "z": 0
  3620. },
  3621. "_id": ""
  3622. },
  3623. {
  3624. "__type__": "cc.Node",
  3625. "_name": "tabbar_un_bg",
  3626. "_objFlags": 0,
  3627. "_parent": {
  3628. "__id__": 162
  3629. },
  3630. "_children": [],
  3631. "_active": true,
  3632. "_components": [
  3633. {
  3634. "__id__": 164
  3635. },
  3636. {
  3637. "__id__": 166
  3638. }
  3639. ],
  3640. "_prefab": {
  3641. "__id__": 168
  3642. },
  3643. "_lpos": {
  3644. "__type__": "cc.Vec3",
  3645. "x": 0,
  3646. "y": 0,
  3647. "z": 0
  3648. },
  3649. "_lrot": {
  3650. "__type__": "cc.Quat",
  3651. "x": 0,
  3652. "y": 0,
  3653. "z": 0,
  3654. "w": 1
  3655. },
  3656. "_lscale": {
  3657. "__type__": "cc.Vec3",
  3658. "x": 1,
  3659. "y": 1,
  3660. "z": 1
  3661. },
  3662. "_layer": 1073741824,
  3663. "_euler": {
  3664. "__type__": "cc.Vec3",
  3665. "x": 0,
  3666. "y": 0,
  3667. "z": 0
  3668. },
  3669. "_id": ""
  3670. },
  3671. {
  3672. "__type__": "cc.UITransform",
  3673. "_name": "",
  3674. "_objFlags": 0,
  3675. "node": {
  3676. "__id__": 163
  3677. },
  3678. "_enabled": true,
  3679. "__prefab": {
  3680. "__id__": 165
  3681. },
  3682. "_priority": 0,
  3683. "_contentSize": {
  3684. "__type__": "cc.Size",
  3685. "width": 60,
  3686. "height": 115
  3687. },
  3688. "_anchorPoint": {
  3689. "__type__": "cc.Vec2",
  3690. "x": 0.5,
  3691. "y": 0.5
  3692. },
  3693. "_id": ""
  3694. },
  3695. {
  3696. "__type__": "cc.CompPrefabInfo",
  3697. "fileId": "cd297NX0RPU48Hdkpv2Suq"
  3698. },
  3699. {
  3700. "__type__": "cc.Sprite",
  3701. "_name": "",
  3702. "_objFlags": 0,
  3703. "node": {
  3704. "__id__": 163
  3705. },
  3706. "_enabled": true,
  3707. "__prefab": {
  3708. "__id__": 167
  3709. },
  3710. "_visFlags": 0,
  3711. "_customMaterial": null,
  3712. "_srcBlendFactor": 2,
  3713. "_dstBlendFactor": 4,
  3714. "_color": {
  3715. "__type__": "cc.Color",
  3716. "r": 255,
  3717. "g": 255,
  3718. "b": 255,
  3719. "a": 255
  3720. },
  3721. "_spriteFrame": {
  3722. "__uuid__": "af2af94e-4bd3-44ab-beab-49ff1d608702@f9941"
  3723. },
  3724. "_type": 0,
  3725. "_fillType": 0,
  3726. "_sizeMode": 1,
  3727. "_fillCenter": {
  3728. "__type__": "cc.Vec2",
  3729. "x": 0,
  3730. "y": 0
  3731. },
  3732. "_fillStart": 0,
  3733. "_fillRange": 0,
  3734. "_isTrimmedMode": true,
  3735. "_useGrayscale": false,
  3736. "_atlas": null,
  3737. "_id": ""
  3738. },
  3739. {
  3740. "__type__": "cc.CompPrefabInfo",
  3741. "fileId": "45HGU8hi1IZazjcYGjx3zh"
  3742. },
  3743. {
  3744. "__type__": "cc.PrefabInfo",
  3745. "root": {
  3746. "__id__": 1
  3747. },
  3748. "asset": {
  3749. "__id__": 0
  3750. },
  3751. "fileId": "115X1o7llMjpjoMShgJy0y"
  3752. },
  3753. {
  3754. "__type__": "cc.Node",
  3755. "_name": "tabbar_un_1",
  3756. "_objFlags": 0,
  3757. "_parent": {
  3758. "__id__": 162
  3759. },
  3760. "_children": [],
  3761. "_active": true,
  3762. "_components": [
  3763. {
  3764. "__id__": 170
  3765. },
  3766. {
  3767. "__id__": 172
  3768. }
  3769. ],
  3770. "_prefab": {
  3771. "__id__": 174
  3772. },
  3773. "_lpos": {
  3774. "__type__": "cc.Vec3",
  3775. "x": 0,
  3776. "y": 0,
  3777. "z": 0
  3778. },
  3779. "_lrot": {
  3780. "__type__": "cc.Quat",
  3781. "x": 0,
  3782. "y": 0,
  3783. "z": 0,
  3784. "w": 1
  3785. },
  3786. "_lscale": {
  3787. "__type__": "cc.Vec3",
  3788. "x": 1,
  3789. "y": 1,
  3790. "z": 1
  3791. },
  3792. "_layer": 1073741824,
  3793. "_euler": {
  3794. "__type__": "cc.Vec3",
  3795. "x": 0,
  3796. "y": 0,
  3797. "z": 0
  3798. },
  3799. "_id": ""
  3800. },
  3801. {
  3802. "__type__": "cc.UITransform",
  3803. "_name": "",
  3804. "_objFlags": 0,
  3805. "node": {
  3806. "__id__": 169
  3807. },
  3808. "_enabled": true,
  3809. "__prefab": {
  3810. "__id__": 171
  3811. },
  3812. "_priority": 0,
  3813. "_contentSize": {
  3814. "__type__": "cc.Size",
  3815. "width": 24,
  3816. "height": 86
  3817. },
  3818. "_anchorPoint": {
  3819. "__type__": "cc.Vec2",
  3820. "x": 0.5,
  3821. "y": 0.5
  3822. },
  3823. "_id": ""
  3824. },
  3825. {
  3826. "__type__": "cc.CompPrefabInfo",
  3827. "fileId": "a9XMhQ/tpMV5OZUK8ePSSj"
  3828. },
  3829. {
  3830. "__type__": "cc.Sprite",
  3831. "_name": "",
  3832. "_objFlags": 0,
  3833. "node": {
  3834. "__id__": 169
  3835. },
  3836. "_enabled": true,
  3837. "__prefab": {
  3838. "__id__": 173
  3839. },
  3840. "_visFlags": 0,
  3841. "_customMaterial": null,
  3842. "_srcBlendFactor": 2,
  3843. "_dstBlendFactor": 4,
  3844. "_color": {
  3845. "__type__": "cc.Color",
  3846. "r": 255,
  3847. "g": 255,
  3848. "b": 255,
  3849. "a": 255
  3850. },
  3851. "_spriteFrame": {
  3852. "__uuid__": "21468119-7dff-4883-96e7-3301c4c5c5d9@f9941"
  3853. },
  3854. "_type": 0,
  3855. "_fillType": 0,
  3856. "_sizeMode": 1,
  3857. "_fillCenter": {
  3858. "__type__": "cc.Vec2",
  3859. "x": 0,
  3860. "y": 0
  3861. },
  3862. "_fillStart": 0,
  3863. "_fillRange": 0,
  3864. "_isTrimmedMode": true,
  3865. "_useGrayscale": false,
  3866. "_atlas": null,
  3867. "_id": ""
  3868. },
  3869. {
  3870. "__type__": "cc.CompPrefabInfo",
  3871. "fileId": "c7xkk3tqlCWb8GlAOXmDCx"
  3872. },
  3873. {
  3874. "__type__": "cc.PrefabInfo",
  3875. "root": {
  3876. "__id__": 1
  3877. },
  3878. "asset": {
  3879. "__id__": 0
  3880. },
  3881. "fileId": "baJtiknGRCLYpwk6pw2GGW"
  3882. },
  3883. {
  3884. "__type__": "cc.UITransform",
  3885. "_name": "",
  3886. "_objFlags": 0,
  3887. "node": {
  3888. "__id__": 162
  3889. },
  3890. "_enabled": true,
  3891. "__prefab": {
  3892. "__id__": 176
  3893. },
  3894. "_priority": 0,
  3895. "_contentSize": {
  3896. "__type__": "cc.Size",
  3897. "width": 60,
  3898. "height": 115
  3899. },
  3900. "_anchorPoint": {
  3901. "__type__": "cc.Vec2",
  3902. "x": 0.5,
  3903. "y": 0.5
  3904. },
  3905. "_id": ""
  3906. },
  3907. {
  3908. "__type__": "cc.CompPrefabInfo",
  3909. "fileId": "72UrlpsFFFBpoBoI15ohn1"
  3910. },
  3911. {
  3912. "__type__": "cc.PrefabInfo",
  3913. "root": {
  3914. "__id__": 1
  3915. },
  3916. "asset": {
  3917. "__id__": 0
  3918. },
  3919. "fileId": "f5wGtE3QBEYJqL8hECq5yY"
  3920. },
  3921. {
  3922. "__type__": "cc.Node",
  3923. "_name": "选中",
  3924. "_objFlags": 0,
  3925. "_parent": {
  3926. "__id__": 161
  3927. },
  3928. "_children": [
  3929. {
  3930. "__id__": 179
  3931. },
  3932. {
  3933. "__id__": 185
  3934. }
  3935. ],
  3936. "_active": false,
  3937. "_components": [
  3938. {
  3939. "__id__": 191
  3940. }
  3941. ],
  3942. "_prefab": {
  3943. "__id__": 193
  3944. },
  3945. "_lpos": {
  3946. "__type__": "cc.Vec3",
  3947. "x": 0,
  3948. "y": 0,
  3949. "z": 0
  3950. },
  3951. "_lrot": {
  3952. "__type__": "cc.Quat",
  3953. "x": 0,
  3954. "y": 0,
  3955. "z": 0,
  3956. "w": 1
  3957. },
  3958. "_lscale": {
  3959. "__type__": "cc.Vec3",
  3960. "x": 1,
  3961. "y": 1,
  3962. "z": 1
  3963. },
  3964. "_layer": 1073741824,
  3965. "_euler": {
  3966. "__type__": "cc.Vec3",
  3967. "x": 0,
  3968. "y": 0,
  3969. "z": 0
  3970. },
  3971. "_id": ""
  3972. },
  3973. {
  3974. "__type__": "cc.Node",
  3975. "_name": "tabbar_in_bg",
  3976. "_objFlags": 0,
  3977. "_parent": {
  3978. "__id__": 178
  3979. },
  3980. "_children": [],
  3981. "_active": true,
  3982. "_components": [
  3983. {
  3984. "__id__": 180
  3985. },
  3986. {
  3987. "__id__": 182
  3988. }
  3989. ],
  3990. "_prefab": {
  3991. "__id__": 184
  3992. },
  3993. "_lpos": {
  3994. "__type__": "cc.Vec3",
  3995. "x": 0,
  3996. "y": 0,
  3997. "z": 0
  3998. },
  3999. "_lrot": {
  4000. "__type__": "cc.Quat",
  4001. "x": 0,
  4002. "y": 0,
  4003. "z": 0,
  4004. "w": 1
  4005. },
  4006. "_lscale": {
  4007. "__type__": "cc.Vec3",
  4008. "x": 1,
  4009. "y": 1,
  4010. "z": 1
  4011. },
  4012. "_layer": 1073741824,
  4013. "_euler": {
  4014. "__type__": "cc.Vec3",
  4015. "x": 0,
  4016. "y": 0,
  4017. "z": 0
  4018. },
  4019. "_id": ""
  4020. },
  4021. {
  4022. "__type__": "cc.UITransform",
  4023. "_name": "",
  4024. "_objFlags": 0,
  4025. "node": {
  4026. "__id__": 179
  4027. },
  4028. "_enabled": true,
  4029. "__prefab": {
  4030. "__id__": 181
  4031. },
  4032. "_priority": 0,
  4033. "_contentSize": {
  4034. "__type__": "cc.Size",
  4035. "width": 64,
  4036. "height": 113
  4037. },
  4038. "_anchorPoint": {
  4039. "__type__": "cc.Vec2",
  4040. "x": 0.5,
  4041. "y": 0.5
  4042. },
  4043. "_id": ""
  4044. },
  4045. {
  4046. "__type__": "cc.CompPrefabInfo",
  4047. "fileId": "34uROaCtdGYomMKy6gKTzN"
  4048. },
  4049. {
  4050. "__type__": "cc.Sprite",
  4051. "_name": "",
  4052. "_objFlags": 0,
  4053. "node": {
  4054. "__id__": 179
  4055. },
  4056. "_enabled": true,
  4057. "__prefab": {
  4058. "__id__": 183
  4059. },
  4060. "_visFlags": 0,
  4061. "_customMaterial": null,
  4062. "_srcBlendFactor": 2,
  4063. "_dstBlendFactor": 4,
  4064. "_color": {
  4065. "__type__": "cc.Color",
  4066. "r": 255,
  4067. "g": 255,
  4068. "b": 255,
  4069. "a": 255
  4070. },
  4071. "_spriteFrame": {
  4072. "__uuid__": "5395e4ea-f190-4c10-9016-13bd9faa659d@f9941"
  4073. },
  4074. "_type": 0,
  4075. "_fillType": 0,
  4076. "_sizeMode": 1,
  4077. "_fillCenter": {
  4078. "__type__": "cc.Vec2",
  4079. "x": 0,
  4080. "y": 0
  4081. },
  4082. "_fillStart": 0,
  4083. "_fillRange": 0,
  4084. "_isTrimmedMode": true,
  4085. "_useGrayscale": false,
  4086. "_atlas": null,
  4087. "_id": ""
  4088. },
  4089. {
  4090. "__type__": "cc.CompPrefabInfo",
  4091. "fileId": "2ca/Hkx21DDp6deM9gjajV"
  4092. },
  4093. {
  4094. "__type__": "cc.PrefabInfo",
  4095. "root": {
  4096. "__id__": 1
  4097. },
  4098. "asset": {
  4099. "__id__": 0
  4100. },
  4101. "fileId": "64KMDZ60pPMYfeX6RcS0uZ"
  4102. },
  4103. {
  4104. "__type__": "cc.Node",
  4105. "_name": "tabbar_in_1",
  4106. "_objFlags": 0,
  4107. "_parent": {
  4108. "__id__": 178
  4109. },
  4110. "_children": [],
  4111. "_active": true,
  4112. "_components": [
  4113. {
  4114. "__id__": 186
  4115. },
  4116. {
  4117. "__id__": 188
  4118. }
  4119. ],
  4120. "_prefab": {
  4121. "__id__": 190
  4122. },
  4123. "_lpos": {
  4124. "__type__": "cc.Vec3",
  4125. "x": 0,
  4126. "y": 0,
  4127. "z": 0
  4128. },
  4129. "_lrot": {
  4130. "__type__": "cc.Quat",
  4131. "x": 0,
  4132. "y": 0,
  4133. "z": 0,
  4134. "w": 1
  4135. },
  4136. "_lscale": {
  4137. "__type__": "cc.Vec3",
  4138. "x": 1,
  4139. "y": 1,
  4140. "z": 1
  4141. },
  4142. "_layer": 1073741824,
  4143. "_euler": {
  4144. "__type__": "cc.Vec3",
  4145. "x": 0,
  4146. "y": 0,
  4147. "z": 0
  4148. },
  4149. "_id": ""
  4150. },
  4151. {
  4152. "__type__": "cc.UITransform",
  4153. "_name": "",
  4154. "_objFlags": 0,
  4155. "node": {
  4156. "__id__": 185
  4157. },
  4158. "_enabled": true,
  4159. "__prefab": {
  4160. "__id__": 187
  4161. },
  4162. "_priority": 0,
  4163. "_contentSize": {
  4164. "__type__": "cc.Size",
  4165. "width": 27,
  4166. "height": 102
  4167. },
  4168. "_anchorPoint": {
  4169. "__type__": "cc.Vec2",
  4170. "x": 0.5,
  4171. "y": 0.5
  4172. },
  4173. "_id": ""
  4174. },
  4175. {
  4176. "__type__": "cc.CompPrefabInfo",
  4177. "fileId": "e2nLih2T9JAa9/OZAMVLs2"
  4178. },
  4179. {
  4180. "__type__": "cc.Sprite",
  4181. "_name": "",
  4182. "_objFlags": 0,
  4183. "node": {
  4184. "__id__": 185
  4185. },
  4186. "_enabled": true,
  4187. "__prefab": {
  4188. "__id__": 189
  4189. },
  4190. "_visFlags": 0,
  4191. "_customMaterial": null,
  4192. "_srcBlendFactor": 2,
  4193. "_dstBlendFactor": 4,
  4194. "_color": {
  4195. "__type__": "cc.Color",
  4196. "r": 255,
  4197. "g": 255,
  4198. "b": 255,
  4199. "a": 255
  4200. },
  4201. "_spriteFrame": {
  4202. "__uuid__": "e13db0b1-23ab-493b-b033-6ca0a9290aff@f9941"
  4203. },
  4204. "_type": 0,
  4205. "_fillType": 0,
  4206. "_sizeMode": 1,
  4207. "_fillCenter": {
  4208. "__type__": "cc.Vec2",
  4209. "x": 0,
  4210. "y": 0
  4211. },
  4212. "_fillStart": 0,
  4213. "_fillRange": 0,
  4214. "_isTrimmedMode": true,
  4215. "_useGrayscale": false,
  4216. "_atlas": null,
  4217. "_id": ""
  4218. },
  4219. {
  4220. "__type__": "cc.CompPrefabInfo",
  4221. "fileId": "64HUgna69MYohZBzHkfLpf"
  4222. },
  4223. {
  4224. "__type__": "cc.PrefabInfo",
  4225. "root": {
  4226. "__id__": 1
  4227. },
  4228. "asset": {
  4229. "__id__": 0
  4230. },
  4231. "fileId": "c8ndM3Mz5Kk5SXTxzrNi2u"
  4232. },
  4233. {
  4234. "__type__": "cc.UITransform",
  4235. "_name": "",
  4236. "_objFlags": 0,
  4237. "node": {
  4238. "__id__": 178
  4239. },
  4240. "_enabled": true,
  4241. "__prefab": {
  4242. "__id__": 192
  4243. },
  4244. "_priority": 0,
  4245. "_contentSize": {
  4246. "__type__": "cc.Size",
  4247. "width": 64,
  4248. "height": 113
  4249. },
  4250. "_anchorPoint": {
  4251. "__type__": "cc.Vec2",
  4252. "x": 0.5,
  4253. "y": 0.5
  4254. },
  4255. "_id": ""
  4256. },
  4257. {
  4258. "__type__": "cc.CompPrefabInfo",
  4259. "fileId": "c2iHsYwxJPeoRCkGeyTruX"
  4260. },
  4261. {
  4262. "__type__": "cc.PrefabInfo",
  4263. "root": {
  4264. "__id__": 1
  4265. },
  4266. "asset": {
  4267. "__id__": 0
  4268. },
  4269. "fileId": "46+AvaRTxDJZ2K+fV+IVO9"
  4270. },
  4271. {
  4272. "__type__": "cc.UITransform",
  4273. "_name": "",
  4274. "_objFlags": 0,
  4275. "node": {
  4276. "__id__": 161
  4277. },
  4278. "_enabled": true,
  4279. "__prefab": {
  4280. "__id__": 195
  4281. },
  4282. "_priority": 0,
  4283. "_contentSize": {
  4284. "__type__": "cc.Size",
  4285. "width": 64,
  4286. "height": 115
  4287. },
  4288. "_anchorPoint": {
  4289. "__type__": "cc.Vec2",
  4290. "x": 0.5,
  4291. "y": 0.5
  4292. },
  4293. "_id": ""
  4294. },
  4295. {
  4296. "__type__": "cc.CompPrefabInfo",
  4297. "fileId": "1065ioSZhEQ4X4wWWnOFU+"
  4298. },
  4299. {
  4300. "__type__": "faa7eqRv7dLVqHDYfQW4APh",
  4301. "_name": "",
  4302. "_objFlags": 0,
  4303. "node": {
  4304. "__id__": 161
  4305. },
  4306. "_enabled": true,
  4307. "__prefab": {
  4308. "__id__": 197
  4309. },
  4310. "checkedNode": {
  4311. "__id__": 178
  4312. },
  4313. "uncheckedNode": {
  4314. "__id__": 162
  4315. },
  4316. "group": "tabbar",
  4317. "_isChecked": false,
  4318. "checkEvents": [
  4319. {
  4320. "__id__": 198
  4321. }
  4322. ],
  4323. "_id": ""
  4324. },
  4325. {
  4326. "__type__": "cc.CompPrefabInfo",
  4327. "fileId": "fdT6LJmdpOPIWMchXesU5p"
  4328. },
  4329. {
  4330. "__type__": "cc.ClickEvent",
  4331. "target": {
  4332. "__id__": 1
  4333. },
  4334. "component": "",
  4335. "_componentId": "1808am6E4FLSaSGN9i2qtgl",
  4336. "handler": "onTabbarChange",
  4337. "customEventData": "4"
  4338. },
  4339. {
  4340. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  4341. "_name": "",
  4342. "_objFlags": 0,
  4343. "node": {
  4344. "__id__": 161
  4345. },
  4346. "_enabled": true,
  4347. "__prefab": {
  4348. "__id__": 200
  4349. },
  4350. "clips": [
  4351. {
  4352. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  4353. }
  4354. ],
  4355. "_volume": 1,
  4356. "useGlobalVolume": true,
  4357. "playOnLoad": true,
  4358. "playOnTouch": false,
  4359. "oneShot": true,
  4360. "loop": false,
  4361. "_id": ""
  4362. },
  4363. {
  4364. "__type__": "cc.CompPrefabInfo",
  4365. "fileId": "25C8vruEBHS6DQPO81a2Ob"
  4366. },
  4367. {
  4368. "__type__": "cc.PrefabInfo",
  4369. "root": {
  4370. "__id__": 1
  4371. },
  4372. "asset": {
  4373. "__id__": 0
  4374. },
  4375. "fileId": "ef3eEfcENCSrdtTVer3lDo"
  4376. },
  4377. {
  4378. "__type__": "cc.Node",
  4379. "_name": "页签-5",
  4380. "_objFlags": 0,
  4381. "_parent": {
  4382. "__id__": 37
  4383. },
  4384. "_children": [
  4385. {
  4386. "__id__": 203
  4387. },
  4388. {
  4389. "__id__": 219
  4390. }
  4391. ],
  4392. "_active": true,
  4393. "_components": [
  4394. {
  4395. "__id__": 235
  4396. },
  4397. {
  4398. "__id__": 237
  4399. },
  4400. {
  4401. "__id__": 240
  4402. }
  4403. ],
  4404. "_prefab": {
  4405. "__id__": 242
  4406. },
  4407. "_lpos": {
  4408. "__type__": "cc.Vec3",
  4409. "x": 0,
  4410. "y": -240,
  4411. "z": 0
  4412. },
  4413. "_lrot": {
  4414. "__type__": "cc.Quat",
  4415. "x": 0,
  4416. "y": 0,
  4417. "z": 0,
  4418. "w": 1
  4419. },
  4420. "_lscale": {
  4421. "__type__": "cc.Vec3",
  4422. "x": 1,
  4423. "y": 1,
  4424. "z": 1
  4425. },
  4426. "_layer": 1073741824,
  4427. "_euler": {
  4428. "__type__": "cc.Vec3",
  4429. "x": 0,
  4430. "y": 0,
  4431. "z": 0
  4432. },
  4433. "_id": ""
  4434. },
  4435. {
  4436. "__type__": "cc.Node",
  4437. "_name": "未选中",
  4438. "_objFlags": 0,
  4439. "_parent": {
  4440. "__id__": 202
  4441. },
  4442. "_children": [
  4443. {
  4444. "__id__": 204
  4445. },
  4446. {
  4447. "__id__": 210
  4448. }
  4449. ],
  4450. "_active": true,
  4451. "_components": [
  4452. {
  4453. "__id__": 216
  4454. }
  4455. ],
  4456. "_prefab": {
  4457. "__id__": 218
  4458. },
  4459. "_lpos": {
  4460. "__type__": "cc.Vec3",
  4461. "x": 0,
  4462. "y": 0,
  4463. "z": 0
  4464. },
  4465. "_lrot": {
  4466. "__type__": "cc.Quat",
  4467. "x": 0,
  4468. "y": 0,
  4469. "z": 0,
  4470. "w": 1
  4471. },
  4472. "_lscale": {
  4473. "__type__": "cc.Vec3",
  4474. "x": 1,
  4475. "y": 1,
  4476. "z": 1
  4477. },
  4478. "_layer": 1073741824,
  4479. "_euler": {
  4480. "__type__": "cc.Vec3",
  4481. "x": 0,
  4482. "y": 0,
  4483. "z": 0
  4484. },
  4485. "_id": ""
  4486. },
  4487. {
  4488. "__type__": "cc.Node",
  4489. "_name": "tabbar_un_bg",
  4490. "_objFlags": 0,
  4491. "_parent": {
  4492. "__id__": 203
  4493. },
  4494. "_children": [],
  4495. "_active": true,
  4496. "_components": [
  4497. {
  4498. "__id__": 205
  4499. },
  4500. {
  4501. "__id__": 207
  4502. }
  4503. ],
  4504. "_prefab": {
  4505. "__id__": 209
  4506. },
  4507. "_lpos": {
  4508. "__type__": "cc.Vec3",
  4509. "x": 0,
  4510. "y": 0,
  4511. "z": 0
  4512. },
  4513. "_lrot": {
  4514. "__type__": "cc.Quat",
  4515. "x": 0,
  4516. "y": 0,
  4517. "z": 0,
  4518. "w": 1
  4519. },
  4520. "_lscale": {
  4521. "__type__": "cc.Vec3",
  4522. "x": 1,
  4523. "y": 1,
  4524. "z": 1
  4525. },
  4526. "_layer": 1073741824,
  4527. "_euler": {
  4528. "__type__": "cc.Vec3",
  4529. "x": 0,
  4530. "y": 0,
  4531. "z": 0
  4532. },
  4533. "_id": ""
  4534. },
  4535. {
  4536. "__type__": "cc.UITransform",
  4537. "_name": "",
  4538. "_objFlags": 0,
  4539. "node": {
  4540. "__id__": 204
  4541. },
  4542. "_enabled": true,
  4543. "__prefab": {
  4544. "__id__": 206
  4545. },
  4546. "_priority": 0,
  4547. "_contentSize": {
  4548. "__type__": "cc.Size",
  4549. "width": 60,
  4550. "height": 115
  4551. },
  4552. "_anchorPoint": {
  4553. "__type__": "cc.Vec2",
  4554. "x": 0.5,
  4555. "y": 0.5
  4556. },
  4557. "_id": ""
  4558. },
  4559. {
  4560. "__type__": "cc.CompPrefabInfo",
  4561. "fileId": "96uQ/0AhpEWZNV78kz1WtB"
  4562. },
  4563. {
  4564. "__type__": "cc.Sprite",
  4565. "_name": "",
  4566. "_objFlags": 0,
  4567. "node": {
  4568. "__id__": 204
  4569. },
  4570. "_enabled": true,
  4571. "__prefab": {
  4572. "__id__": 208
  4573. },
  4574. "_visFlags": 0,
  4575. "_customMaterial": null,
  4576. "_srcBlendFactor": 2,
  4577. "_dstBlendFactor": 4,
  4578. "_color": {
  4579. "__type__": "cc.Color",
  4580. "r": 255,
  4581. "g": 255,
  4582. "b": 255,
  4583. "a": 255
  4584. },
  4585. "_spriteFrame": {
  4586. "__uuid__": "af2af94e-4bd3-44ab-beab-49ff1d608702@f9941"
  4587. },
  4588. "_type": 0,
  4589. "_fillType": 0,
  4590. "_sizeMode": 1,
  4591. "_fillCenter": {
  4592. "__type__": "cc.Vec2",
  4593. "x": 0,
  4594. "y": 0
  4595. },
  4596. "_fillStart": 0,
  4597. "_fillRange": 0,
  4598. "_isTrimmedMode": true,
  4599. "_useGrayscale": false,
  4600. "_atlas": null,
  4601. "_id": ""
  4602. },
  4603. {
  4604. "__type__": "cc.CompPrefabInfo",
  4605. "fileId": "f6f+pMo5tIY40ydC1b4ZNw"
  4606. },
  4607. {
  4608. "__type__": "cc.PrefabInfo",
  4609. "root": {
  4610. "__id__": 1
  4611. },
  4612. "asset": {
  4613. "__id__": 0
  4614. },
  4615. "fileId": "2eim97WCRH0ZvQgGH84pej"
  4616. },
  4617. {
  4618. "__type__": "cc.Node",
  4619. "_name": "tabbar_un_1",
  4620. "_objFlags": 0,
  4621. "_parent": {
  4622. "__id__": 203
  4623. },
  4624. "_children": [],
  4625. "_active": true,
  4626. "_components": [
  4627. {
  4628. "__id__": 211
  4629. },
  4630. {
  4631. "__id__": 213
  4632. }
  4633. ],
  4634. "_prefab": {
  4635. "__id__": 215
  4636. },
  4637. "_lpos": {
  4638. "__type__": "cc.Vec3",
  4639. "x": 0,
  4640. "y": 0,
  4641. "z": 0
  4642. },
  4643. "_lrot": {
  4644. "__type__": "cc.Quat",
  4645. "x": 0,
  4646. "y": 0,
  4647. "z": 0,
  4648. "w": 1
  4649. },
  4650. "_lscale": {
  4651. "__type__": "cc.Vec3",
  4652. "x": 1,
  4653. "y": 1,
  4654. "z": 1
  4655. },
  4656. "_layer": 1073741824,
  4657. "_euler": {
  4658. "__type__": "cc.Vec3",
  4659. "x": 0,
  4660. "y": 0,
  4661. "z": 0
  4662. },
  4663. "_id": ""
  4664. },
  4665. {
  4666. "__type__": "cc.UITransform",
  4667. "_name": "",
  4668. "_objFlags": 0,
  4669. "node": {
  4670. "__id__": 210
  4671. },
  4672. "_enabled": true,
  4673. "__prefab": {
  4674. "__id__": 212
  4675. },
  4676. "_priority": 0,
  4677. "_contentSize": {
  4678. "__type__": "cc.Size",
  4679. "width": 24,
  4680. "height": 86
  4681. },
  4682. "_anchorPoint": {
  4683. "__type__": "cc.Vec2",
  4684. "x": 0.5,
  4685. "y": 0.5
  4686. },
  4687. "_id": ""
  4688. },
  4689. {
  4690. "__type__": "cc.CompPrefabInfo",
  4691. "fileId": "22rm6ueu5HPZa3yp0UFpb8"
  4692. },
  4693. {
  4694. "__type__": "cc.Sprite",
  4695. "_name": "",
  4696. "_objFlags": 0,
  4697. "node": {
  4698. "__id__": 210
  4699. },
  4700. "_enabled": true,
  4701. "__prefab": {
  4702. "__id__": 214
  4703. },
  4704. "_visFlags": 0,
  4705. "_customMaterial": null,
  4706. "_srcBlendFactor": 2,
  4707. "_dstBlendFactor": 4,
  4708. "_color": {
  4709. "__type__": "cc.Color",
  4710. "r": 255,
  4711. "g": 255,
  4712. "b": 255,
  4713. "a": 255
  4714. },
  4715. "_spriteFrame": {
  4716. "__uuid__": "9ee8ad04-9b8c-4bce-9d9c-3dd1c2817dad@f9941"
  4717. },
  4718. "_type": 0,
  4719. "_fillType": 0,
  4720. "_sizeMode": 1,
  4721. "_fillCenter": {
  4722. "__type__": "cc.Vec2",
  4723. "x": 0,
  4724. "y": 0
  4725. },
  4726. "_fillStart": 0,
  4727. "_fillRange": 0,
  4728. "_isTrimmedMode": true,
  4729. "_useGrayscale": false,
  4730. "_atlas": null,
  4731. "_id": ""
  4732. },
  4733. {
  4734. "__type__": "cc.CompPrefabInfo",
  4735. "fileId": "37ehjnjdFIRK8u+6ur+N2I"
  4736. },
  4737. {
  4738. "__type__": "cc.PrefabInfo",
  4739. "root": {
  4740. "__id__": 1
  4741. },
  4742. "asset": {
  4743. "__id__": 0
  4744. },
  4745. "fileId": "2ajNGIVOJKToKFbpicxLTT"
  4746. },
  4747. {
  4748. "__type__": "cc.UITransform",
  4749. "_name": "",
  4750. "_objFlags": 0,
  4751. "node": {
  4752. "__id__": 203
  4753. },
  4754. "_enabled": true,
  4755. "__prefab": {
  4756. "__id__": 217
  4757. },
  4758. "_priority": 0,
  4759. "_contentSize": {
  4760. "__type__": "cc.Size",
  4761. "width": 60,
  4762. "height": 115
  4763. },
  4764. "_anchorPoint": {
  4765. "__type__": "cc.Vec2",
  4766. "x": 0.5,
  4767. "y": 0.5
  4768. },
  4769. "_id": ""
  4770. },
  4771. {
  4772. "__type__": "cc.CompPrefabInfo",
  4773. "fileId": "e8s/seLPlBTJCNlpKMDz+/"
  4774. },
  4775. {
  4776. "__type__": "cc.PrefabInfo",
  4777. "root": {
  4778. "__id__": 1
  4779. },
  4780. "asset": {
  4781. "__id__": 0
  4782. },
  4783. "fileId": "0cb+ANYK9JsoU9XN9uwrXI"
  4784. },
  4785. {
  4786. "__type__": "cc.Node",
  4787. "_name": "选中",
  4788. "_objFlags": 0,
  4789. "_parent": {
  4790. "__id__": 202
  4791. },
  4792. "_children": [
  4793. {
  4794. "__id__": 220
  4795. },
  4796. {
  4797. "__id__": 226
  4798. }
  4799. ],
  4800. "_active": false,
  4801. "_components": [
  4802. {
  4803. "__id__": 232
  4804. }
  4805. ],
  4806. "_prefab": {
  4807. "__id__": 234
  4808. },
  4809. "_lpos": {
  4810. "__type__": "cc.Vec3",
  4811. "x": 0,
  4812. "y": 0,
  4813. "z": 0
  4814. },
  4815. "_lrot": {
  4816. "__type__": "cc.Quat",
  4817. "x": 0,
  4818. "y": 0,
  4819. "z": 0,
  4820. "w": 1
  4821. },
  4822. "_lscale": {
  4823. "__type__": "cc.Vec3",
  4824. "x": 1,
  4825. "y": 1,
  4826. "z": 1
  4827. },
  4828. "_layer": 1073741824,
  4829. "_euler": {
  4830. "__type__": "cc.Vec3",
  4831. "x": 0,
  4832. "y": 0,
  4833. "z": 0
  4834. },
  4835. "_id": ""
  4836. },
  4837. {
  4838. "__type__": "cc.Node",
  4839. "_name": "tabbar_in_bg",
  4840. "_objFlags": 0,
  4841. "_parent": {
  4842. "__id__": 219
  4843. },
  4844. "_children": [],
  4845. "_active": true,
  4846. "_components": [
  4847. {
  4848. "__id__": 221
  4849. },
  4850. {
  4851. "__id__": 223
  4852. }
  4853. ],
  4854. "_prefab": {
  4855. "__id__": 225
  4856. },
  4857. "_lpos": {
  4858. "__type__": "cc.Vec3",
  4859. "x": 0,
  4860. "y": 0,
  4861. "z": 0
  4862. },
  4863. "_lrot": {
  4864. "__type__": "cc.Quat",
  4865. "x": 0,
  4866. "y": 0,
  4867. "z": 0,
  4868. "w": 1
  4869. },
  4870. "_lscale": {
  4871. "__type__": "cc.Vec3",
  4872. "x": 1,
  4873. "y": 1,
  4874. "z": 1
  4875. },
  4876. "_layer": 1073741824,
  4877. "_euler": {
  4878. "__type__": "cc.Vec3",
  4879. "x": 0,
  4880. "y": 0,
  4881. "z": 0
  4882. },
  4883. "_id": ""
  4884. },
  4885. {
  4886. "__type__": "cc.UITransform",
  4887. "_name": "",
  4888. "_objFlags": 0,
  4889. "node": {
  4890. "__id__": 220
  4891. },
  4892. "_enabled": true,
  4893. "__prefab": {
  4894. "__id__": 222
  4895. },
  4896. "_priority": 0,
  4897. "_contentSize": {
  4898. "__type__": "cc.Size",
  4899. "width": 64,
  4900. "height": 113
  4901. },
  4902. "_anchorPoint": {
  4903. "__type__": "cc.Vec2",
  4904. "x": 0.5,
  4905. "y": 0.5
  4906. },
  4907. "_id": ""
  4908. },
  4909. {
  4910. "__type__": "cc.CompPrefabInfo",
  4911. "fileId": "d83wFR5yZLEY7iV+lEoV0P"
  4912. },
  4913. {
  4914. "__type__": "cc.Sprite",
  4915. "_name": "",
  4916. "_objFlags": 0,
  4917. "node": {
  4918. "__id__": 220
  4919. },
  4920. "_enabled": true,
  4921. "__prefab": {
  4922. "__id__": 224
  4923. },
  4924. "_visFlags": 0,
  4925. "_customMaterial": null,
  4926. "_srcBlendFactor": 2,
  4927. "_dstBlendFactor": 4,
  4928. "_color": {
  4929. "__type__": "cc.Color",
  4930. "r": 255,
  4931. "g": 255,
  4932. "b": 255,
  4933. "a": 255
  4934. },
  4935. "_spriteFrame": {
  4936. "__uuid__": "5395e4ea-f190-4c10-9016-13bd9faa659d@f9941"
  4937. },
  4938. "_type": 0,
  4939. "_fillType": 0,
  4940. "_sizeMode": 1,
  4941. "_fillCenter": {
  4942. "__type__": "cc.Vec2",
  4943. "x": 0,
  4944. "y": 0
  4945. },
  4946. "_fillStart": 0,
  4947. "_fillRange": 0,
  4948. "_isTrimmedMode": true,
  4949. "_useGrayscale": false,
  4950. "_atlas": null,
  4951. "_id": ""
  4952. },
  4953. {
  4954. "__type__": "cc.CompPrefabInfo",
  4955. "fileId": "5cvC+SpChAMr1olrO1m3jB"
  4956. },
  4957. {
  4958. "__type__": "cc.PrefabInfo",
  4959. "root": {
  4960. "__id__": 1
  4961. },
  4962. "asset": {
  4963. "__id__": 0
  4964. },
  4965. "fileId": "9dawgxTxJHEohpbKT06cgH"
  4966. },
  4967. {
  4968. "__type__": "cc.Node",
  4969. "_name": "tabbar_in_1",
  4970. "_objFlags": 0,
  4971. "_parent": {
  4972. "__id__": 219
  4973. },
  4974. "_children": [],
  4975. "_active": true,
  4976. "_components": [
  4977. {
  4978. "__id__": 227
  4979. },
  4980. {
  4981. "__id__": 229
  4982. }
  4983. ],
  4984. "_prefab": {
  4985. "__id__": 231
  4986. },
  4987. "_lpos": {
  4988. "__type__": "cc.Vec3",
  4989. "x": 0,
  4990. "y": 0,
  4991. "z": 0
  4992. },
  4993. "_lrot": {
  4994. "__type__": "cc.Quat",
  4995. "x": 0,
  4996. "y": 0,
  4997. "z": 0,
  4998. "w": 1
  4999. },
  5000. "_lscale": {
  5001. "__type__": "cc.Vec3",
  5002. "x": 1,
  5003. "y": 1,
  5004. "z": 1
  5005. },
  5006. "_layer": 1073741824,
  5007. "_euler": {
  5008. "__type__": "cc.Vec3",
  5009. "x": 0,
  5010. "y": 0,
  5011. "z": 0
  5012. },
  5013. "_id": ""
  5014. },
  5015. {
  5016. "__type__": "cc.UITransform",
  5017. "_name": "",
  5018. "_objFlags": 0,
  5019. "node": {
  5020. "__id__": 226
  5021. },
  5022. "_enabled": true,
  5023. "__prefab": {
  5024. "__id__": 228
  5025. },
  5026. "_priority": 0,
  5027. "_contentSize": {
  5028. "__type__": "cc.Size",
  5029. "width": 27,
  5030. "height": 102
  5031. },
  5032. "_anchorPoint": {
  5033. "__type__": "cc.Vec2",
  5034. "x": 0.5,
  5035. "y": 0.5
  5036. },
  5037. "_id": ""
  5038. },
  5039. {
  5040. "__type__": "cc.CompPrefabInfo",
  5041. "fileId": "aepr1gxiRDFpREHtGXUrix"
  5042. },
  5043. {
  5044. "__type__": "cc.Sprite",
  5045. "_name": "",
  5046. "_objFlags": 0,
  5047. "node": {
  5048. "__id__": 226
  5049. },
  5050. "_enabled": true,
  5051. "__prefab": {
  5052. "__id__": 230
  5053. },
  5054. "_visFlags": 0,
  5055. "_customMaterial": null,
  5056. "_srcBlendFactor": 2,
  5057. "_dstBlendFactor": 4,
  5058. "_color": {
  5059. "__type__": "cc.Color",
  5060. "r": 255,
  5061. "g": 255,
  5062. "b": 255,
  5063. "a": 255
  5064. },
  5065. "_spriteFrame": {
  5066. "__uuid__": "784e450e-2a2d-4db5-859a-2a7f8ca2a53c@f9941"
  5067. },
  5068. "_type": 0,
  5069. "_fillType": 0,
  5070. "_sizeMode": 1,
  5071. "_fillCenter": {
  5072. "__type__": "cc.Vec2",
  5073. "x": 0,
  5074. "y": 0
  5075. },
  5076. "_fillStart": 0,
  5077. "_fillRange": 0,
  5078. "_isTrimmedMode": true,
  5079. "_useGrayscale": false,
  5080. "_atlas": null,
  5081. "_id": ""
  5082. },
  5083. {
  5084. "__type__": "cc.CompPrefabInfo",
  5085. "fileId": "6bPjwUC3tHk79KBcQNipYT"
  5086. },
  5087. {
  5088. "__type__": "cc.PrefabInfo",
  5089. "root": {
  5090. "__id__": 1
  5091. },
  5092. "asset": {
  5093. "__id__": 0
  5094. },
  5095. "fileId": "d4oaas8DdPArgcAx//MpEJ"
  5096. },
  5097. {
  5098. "__type__": "cc.UITransform",
  5099. "_name": "",
  5100. "_objFlags": 0,
  5101. "node": {
  5102. "__id__": 219
  5103. },
  5104. "_enabled": true,
  5105. "__prefab": {
  5106. "__id__": 233
  5107. },
  5108. "_priority": 0,
  5109. "_contentSize": {
  5110. "__type__": "cc.Size",
  5111. "width": 64,
  5112. "height": 113
  5113. },
  5114. "_anchorPoint": {
  5115. "__type__": "cc.Vec2",
  5116. "x": 0.5,
  5117. "y": 0.5
  5118. },
  5119. "_id": ""
  5120. },
  5121. {
  5122. "__type__": "cc.CompPrefabInfo",
  5123. "fileId": "eaLpctPAhI/ahP70z6q03I"
  5124. },
  5125. {
  5126. "__type__": "cc.PrefabInfo",
  5127. "root": {
  5128. "__id__": 1
  5129. },
  5130. "asset": {
  5131. "__id__": 0
  5132. },
  5133. "fileId": "75WH/oa51JxYUU+JzUHBC9"
  5134. },
  5135. {
  5136. "__type__": "cc.UITransform",
  5137. "_name": "",
  5138. "_objFlags": 0,
  5139. "node": {
  5140. "__id__": 202
  5141. },
  5142. "_enabled": true,
  5143. "__prefab": {
  5144. "__id__": 236
  5145. },
  5146. "_priority": 0,
  5147. "_contentSize": {
  5148. "__type__": "cc.Size",
  5149. "width": 64,
  5150. "height": 115
  5151. },
  5152. "_anchorPoint": {
  5153. "__type__": "cc.Vec2",
  5154. "x": 0.5,
  5155. "y": 0.5
  5156. },
  5157. "_id": ""
  5158. },
  5159. {
  5160. "__type__": "cc.CompPrefabInfo",
  5161. "fileId": "090vfhD1dG9pdmhH03MmBJ"
  5162. },
  5163. {
  5164. "__type__": "faa7eqRv7dLVqHDYfQW4APh",
  5165. "_name": "",
  5166. "_objFlags": 0,
  5167. "node": {
  5168. "__id__": 202
  5169. },
  5170. "_enabled": true,
  5171. "__prefab": {
  5172. "__id__": 238
  5173. },
  5174. "checkedNode": {
  5175. "__id__": 219
  5176. },
  5177. "uncheckedNode": {
  5178. "__id__": 203
  5179. },
  5180. "group": "tabbar",
  5181. "_isChecked": false,
  5182. "checkEvents": [
  5183. {
  5184. "__id__": 239
  5185. }
  5186. ],
  5187. "_id": ""
  5188. },
  5189. {
  5190. "__type__": "cc.CompPrefabInfo",
  5191. "fileId": "60cp1Mvb9J56JlgkiWxXAy"
  5192. },
  5193. {
  5194. "__type__": "cc.ClickEvent",
  5195. "target": {
  5196. "__id__": 1
  5197. },
  5198. "component": "",
  5199. "_componentId": "1808am6E4FLSaSGN9i2qtgl",
  5200. "handler": "onTabbarChange",
  5201. "customEventData": "5"
  5202. },
  5203. {
  5204. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  5205. "_name": "",
  5206. "_objFlags": 0,
  5207. "node": {
  5208. "__id__": 202
  5209. },
  5210. "_enabled": true,
  5211. "__prefab": {
  5212. "__id__": 241
  5213. },
  5214. "clips": [
  5215. {
  5216. "__uuid__": "88ef321e-a4f1-49a0-82cf-eb6dc7123a25"
  5217. }
  5218. ],
  5219. "_volume": 1,
  5220. "useGlobalVolume": true,
  5221. "playOnLoad": true,
  5222. "playOnTouch": false,
  5223. "oneShot": true,
  5224. "loop": false,
  5225. "_id": ""
  5226. },
  5227. {
  5228. "__type__": "cc.CompPrefabInfo",
  5229. "fileId": "25C8vruEBHS6DQPO81a2Ob"
  5230. },
  5231. {
  5232. "__type__": "cc.PrefabInfo",
  5233. "root": {
  5234. "__id__": 1
  5235. },
  5236. "asset": {
  5237. "__id__": 0
  5238. },
  5239. "fileId": "60HGaCv1xMTrGzEIQ1gVHF"
  5240. },
  5241. {
  5242. "__type__": "cc.UITransform",
  5243. "_name": "",
  5244. "_objFlags": 0,
  5245. "node": {
  5246. "__id__": 37
  5247. },
  5248. "_enabled": true,
  5249. "__prefab": {
  5250. "__id__": 244
  5251. },
  5252. "_priority": 0,
  5253. "_contentSize": {
  5254. "__type__": "cc.Size",
  5255. "width": 100,
  5256. "height": 595
  5257. },
  5258. "_anchorPoint": {
  5259. "__type__": "cc.Vec2",
  5260. "x": 0.5,
  5261. "y": 0.5
  5262. },
  5263. "_id": ""
  5264. },
  5265. {
  5266. "__type__": "cc.CompPrefabInfo",
  5267. "fileId": "6e1D6MlGBIYYIy2U4AGNMo"
  5268. },
  5269. {
  5270. "__type__": "cc.Layout",
  5271. "_name": "",
  5272. "_objFlags": 0,
  5273. "node": {
  5274. "__id__": 37
  5275. },
  5276. "_enabled": true,
  5277. "__prefab": {
  5278. "__id__": 246
  5279. },
  5280. "_resizeMode": 1,
  5281. "_layoutType": 2,
  5282. "_cellSize": {
  5283. "__type__": "cc.Size",
  5284. "width": 40,
  5285. "height": 40
  5286. },
  5287. "_startAxis": 0,
  5288. "_paddingLeft": 0,
  5289. "_paddingRight": 0,
  5290. "_paddingTop": 0,
  5291. "_paddingBottom": 0,
  5292. "_spacingX": 0,
  5293. "_spacingY": 5,
  5294. "_verticalDirection": 1,
  5295. "_horizontalDirection": 0,
  5296. "_constraint": 0,
  5297. "_constraintNum": 2,
  5298. "_affectedByScale": false,
  5299. "_isAlign": true,
  5300. "_id": ""
  5301. },
  5302. {
  5303. "__type__": "cc.CompPrefabInfo",
  5304. "fileId": "baiSFSy7RNBKTHRSVkFqgj"
  5305. },
  5306. {
  5307. "__type__": "cc.PrefabInfo",
  5308. "root": {
  5309. "__id__": 1
  5310. },
  5311. "asset": {
  5312. "__id__": 0
  5313. },
  5314. "fileId": "73JSPQ/b9NtJQLSqYIZeY0"
  5315. },
  5316. {
  5317. "__type__": "cc.Node",
  5318. "_name": "列表视图",
  5319. "_objFlags": 0,
  5320. "_parent": {
  5321. "__id__": 12
  5322. },
  5323. "_children": [
  5324. {
  5325. "__id__": 249
  5326. }
  5327. ],
  5328. "_active": true,
  5329. "_components": [
  5330. {
  5331. "__id__": 257
  5332. },
  5333. {
  5334. "__id__": 259
  5335. }
  5336. ],
  5337. "_prefab": {
  5338. "__id__": 261
  5339. },
  5340. "_lpos": {
  5341. "__type__": "cc.Vec3",
  5342. "x": 0,
  5343. "y": 0,
  5344. "z": 0
  5345. },
  5346. "_lrot": {
  5347. "__type__": "cc.Quat",
  5348. "x": 0,
  5349. "y": 0,
  5350. "z": 0,
  5351. "w": 1
  5352. },
  5353. "_lscale": {
  5354. "__type__": "cc.Vec3",
  5355. "x": 1,
  5356. "y": 1,
  5357. "z": 1
  5358. },
  5359. "_layer": 1073741824,
  5360. "_euler": {
  5361. "__type__": "cc.Vec3",
  5362. "x": 0,
  5363. "y": 0,
  5364. "z": 0
  5365. },
  5366. "_id": ""
  5367. },
  5368. {
  5369. "__type__": "cc.Node",
  5370. "_name": "List",
  5371. "_objFlags": 0,
  5372. "_parent": {
  5373. "__id__": 248
  5374. },
  5375. "_children": [],
  5376. "_active": true,
  5377. "_components": [
  5378. {
  5379. "__id__": 250
  5380. },
  5381. {
  5382. "__id__": 252
  5383. },
  5384. {
  5385. "__id__": 254
  5386. }
  5387. ],
  5388. "_prefab": {
  5389. "__id__": 256
  5390. },
  5391. "_lpos": {
  5392. "__type__": "cc.Vec3",
  5393. "x": -230,
  5394. "y": 270,
  5395. "z": 0
  5396. },
  5397. "_lrot": {
  5398. "__type__": "cc.Quat",
  5399. "x": 0,
  5400. "y": 0,
  5401. "z": 0,
  5402. "w": 1
  5403. },
  5404. "_lscale": {
  5405. "__type__": "cc.Vec3",
  5406. "x": 1,
  5407. "y": 1,
  5408. "z": 1
  5409. },
  5410. "_layer": 1073741824,
  5411. "_euler": {
  5412. "__type__": "cc.Vec3",
  5413. "x": 0,
  5414. "y": 0,
  5415. "z": 0
  5416. },
  5417. "_id": ""
  5418. },
  5419. {
  5420. "__type__": "cc.UITransform",
  5421. "_name": "",
  5422. "_objFlags": 0,
  5423. "node": {
  5424. "__id__": 249
  5425. },
  5426. "_enabled": true,
  5427. "__prefab": {
  5428. "__id__": 251
  5429. },
  5430. "_priority": 0,
  5431. "_contentSize": {
  5432. "__type__": "cc.Size",
  5433. "width": 460,
  5434. "height": 540
  5435. },
  5436. "_anchorPoint": {
  5437. "__type__": "cc.Vec2",
  5438. "x": 0,
  5439. "y": 1
  5440. },
  5441. "_id": ""
  5442. },
  5443. {
  5444. "__type__": "cc.CompPrefabInfo",
  5445. "fileId": "807KNdZaZIU54HXmbjEV19"
  5446. },
  5447. {
  5448. "__type__": "cc.Widget",
  5449. "_name": "",
  5450. "_objFlags": 0,
  5451. "node": {
  5452. "__id__": 249
  5453. },
  5454. "_enabled": true,
  5455. "__prefab": {
  5456. "__id__": 253
  5457. },
  5458. "_alignFlags": 45,
  5459. "_target": null,
  5460. "_left": 0,
  5461. "_right": 0,
  5462. "_top": 0,
  5463. "_bottom": 0,
  5464. "_horizontalCenter": 0,
  5465. "_verticalCenter": 0,
  5466. "_isAbsLeft": true,
  5467. "_isAbsRight": true,
  5468. "_isAbsTop": true,
  5469. "_isAbsBottom": true,
  5470. "_isAbsHorizontalCenter": true,
  5471. "_isAbsVerticalCenter": true,
  5472. "_originalWidth": 100,
  5473. "_originalHeight": 100,
  5474. "_alignMode": 2,
  5475. "_lockFlags": 0,
  5476. "_id": ""
  5477. },
  5478. {
  5479. "__type__": "cc.CompPrefabInfo",
  5480. "fileId": "8cZwAqhCpOHabdbv0/OA9r"
  5481. },
  5482. {
  5483. "__type__": "6d547rcTP5Oi5HauLGopSHd",
  5484. "_name": "",
  5485. "_objFlags": 0,
  5486. "node": {
  5487. "__id__": 249
  5488. },
  5489. "_enabled": true,
  5490. "__prefab": {
  5491. "__id__": 255
  5492. },
  5493. "direction": 1,
  5494. "spacing": 10,
  5495. "headPadding": 10,
  5496. "bottomPadding": 10,
  5497. "sidePadding": {
  5498. "__type__": "cc.Vec2",
  5499. "x": 10,
  5500. "y": 10
  5501. },
  5502. "_id": ""
  5503. },
  5504. {
  5505. "__type__": "cc.CompPrefabInfo",
  5506. "fileId": "8cCnA0J6xIp4F9bJdNNla9"
  5507. },
  5508. {
  5509. "__type__": "cc.PrefabInfo",
  5510. "root": {
  5511. "__id__": 1
  5512. },
  5513. "asset": {
  5514. "__id__": 0
  5515. },
  5516. "fileId": "adObtJX9ZNUba721/1oflC"
  5517. },
  5518. {
  5519. "__type__": "cc.UITransform",
  5520. "_name": "",
  5521. "_objFlags": 0,
  5522. "node": {
  5523. "__id__": 248
  5524. },
  5525. "_enabled": true,
  5526. "__prefab": {
  5527. "__id__": 258
  5528. },
  5529. "_priority": 0,
  5530. "_contentSize": {
  5531. "__type__": "cc.Size",
  5532. "width": 460,
  5533. "height": 540
  5534. },
  5535. "_anchorPoint": {
  5536. "__type__": "cc.Vec2",
  5537. "x": 0.5,
  5538. "y": 0.5
  5539. },
  5540. "_id": ""
  5541. },
  5542. {
  5543. "__type__": "cc.CompPrefabInfo",
  5544. "fileId": "ccSClZ9K9KwYTYW6ACqg+H"
  5545. },
  5546. {
  5547. "__type__": "cc.Mask",
  5548. "_name": "",
  5549. "_objFlags": 0,
  5550. "node": {
  5551. "__id__": 248
  5552. },
  5553. "_enabled": true,
  5554. "__prefab": {
  5555. "__id__": 260
  5556. },
  5557. "_visFlags": 0,
  5558. "_customMaterial": null,
  5559. "_srcBlendFactor": 2,
  5560. "_dstBlendFactor": 4,
  5561. "_color": {
  5562. "__type__": "cc.Color",
  5563. "r": 255,
  5564. "g": 255,
  5565. "b": 255,
  5566. "a": 255
  5567. },
  5568. "_type": 0,
  5569. "_inverted": false,
  5570. "_segments": 64,
  5571. "_spriteFrame": null,
  5572. "_alphaThreshold": 0.1,
  5573. "_id": ""
  5574. },
  5575. {
  5576. "__type__": "cc.CompPrefabInfo",
  5577. "fileId": "6dMrjZ2XpHVbvCAHuX6eV9"
  5578. },
  5579. {
  5580. "__type__": "cc.PrefabInfo",
  5581. "root": {
  5582. "__id__": 1
  5583. },
  5584. "asset": {
  5585. "__id__": 0
  5586. },
  5587. "fileId": "82TDduoq9KX5OURx5wPX9A"
  5588. },
  5589. {
  5590. "__type__": "cc.Node",
  5591. "_name": "退出按钮",
  5592. "_objFlags": 0,
  5593. "_parent": {
  5594. "__id__": 12
  5595. },
  5596. "_children": [],
  5597. "_active": true,
  5598. "_components": [
  5599. {
  5600. "__id__": 263
  5601. },
  5602. {
  5603. "__id__": 265
  5604. },
  5605. {
  5606. "__id__": 267
  5607. },
  5608. {
  5609. "__id__": 269
  5610. }
  5611. ],
  5612. "_prefab": {
  5613. "__id__": 271
  5614. },
  5615. "_lpos": {
  5616. "__type__": "cc.Vec3",
  5617. "x": 256.356,
  5618. "y": 367.9180000000001,
  5619. "z": 0
  5620. },
  5621. "_lrot": {
  5622. "__type__": "cc.Quat",
  5623. "x": 0,
  5624. "y": 0,
  5625. "z": 0,
  5626. "w": 1
  5627. },
  5628. "_lscale": {
  5629. "__type__": "cc.Vec3",
  5630. "x": 1,
  5631. "y": 1,
  5632. "z": 1
  5633. },
  5634. "_layer": 1073741824,
  5635. "_euler": {
  5636. "__type__": "cc.Vec3",
  5637. "x": 0,
  5638. "y": 0,
  5639. "z": 0
  5640. },
  5641. "_id": ""
  5642. },
  5643. {
  5644. "__type__": "cc.UITransform",
  5645. "_name": "",
  5646. "_objFlags": 0,
  5647. "node": {
  5648. "__id__": 262
  5649. },
  5650. "_enabled": true,
  5651. "__prefab": {
  5652. "__id__": 264
  5653. },
  5654. "_priority": 0,
  5655. "_contentSize": {
  5656. "__type__": "cc.Size",
  5657. "width": 81,
  5658. "height": 86
  5659. },
  5660. "_anchorPoint": {
  5661. "__type__": "cc.Vec2",
  5662. "x": 0.5,
  5663. "y": 0.5
  5664. },
  5665. "_id": ""
  5666. },
  5667. {
  5668. "__type__": "cc.CompPrefabInfo",
  5669. "fileId": "6dFhKa9G9ODpna6I6zm39i"
  5670. },
  5671. {
  5672. "__type__": "cc.Sprite",
  5673. "_name": "",
  5674. "_objFlags": 0,
  5675. "node": {
  5676. "__id__": 262
  5677. },
  5678. "_enabled": true,
  5679. "__prefab": {
  5680. "__id__": 266
  5681. },
  5682. "_visFlags": 0,
  5683. "_customMaterial": null,
  5684. "_srcBlendFactor": 2,
  5685. "_dstBlendFactor": 4,
  5686. "_color": {
  5687. "__type__": "cc.Color",
  5688. "r": 255,
  5689. "g": 255,
  5690. "b": 255,
  5691. "a": 255
  5692. },
  5693. "_spriteFrame": {
  5694. "__uuid__": "194df592-3d3d-4882-bedd-c7e2f9cbcdca@f9941"
  5695. },
  5696. "_type": 0,
  5697. "_fillType": 0,
  5698. "_sizeMode": 1,
  5699. "_fillCenter": {
  5700. "__type__": "cc.Vec2",
  5701. "x": 0,
  5702. "y": 0
  5703. },
  5704. "_fillStart": 0,
  5705. "_fillRange": 0,
  5706. "_isTrimmedMode": true,
  5707. "_useGrayscale": false,
  5708. "_atlas": null,
  5709. "_id": ""
  5710. },
  5711. {
  5712. "__type__": "cc.CompPrefabInfo",
  5713. "fileId": "16yhzxvo5HX5P3bKFmONz9"
  5714. },
  5715. {
  5716. "__type__": "cc.Button",
  5717. "_name": "",
  5718. "_objFlags": 0,
  5719. "node": {
  5720. "__id__": 262
  5721. },
  5722. "_enabled": true,
  5723. "__prefab": {
  5724. "__id__": 268
  5725. },
  5726. "clickEvents": [],
  5727. "_interactable": true,
  5728. "_transition": 3,
  5729. "_normalColor": {
  5730. "__type__": "cc.Color",
  5731. "r": 255,
  5732. "g": 255,
  5733. "b": 255,
  5734. "a": 255
  5735. },
  5736. "_hoverColor": {
  5737. "__type__": "cc.Color",
  5738. "r": 211,
  5739. "g": 211,
  5740. "b": 211,
  5741. "a": 255
  5742. },
  5743. "_pressedColor": {
  5744. "__type__": "cc.Color",
  5745. "r": 255,
  5746. "g": 255,
  5747. "b": 255,
  5748. "a": 255
  5749. },
  5750. "_disabledColor": {
  5751. "__type__": "cc.Color",
  5752. "r": 124,
  5753. "g": 124,
  5754. "b": 124,
  5755. "a": 255
  5756. },
  5757. "_normalSprite": {
  5758. "__uuid__": "194df592-3d3d-4882-bedd-c7e2f9cbcdca@f9941"
  5759. },
  5760. "_hoverSprite": null,
  5761. "_pressedSprite": null,
  5762. "_disabledSprite": null,
  5763. "_duration": 0.1,
  5764. "_zoomScale": 1.2,
  5765. "_target": null,
  5766. "_id": ""
  5767. },
  5768. {
  5769. "__type__": "cc.CompPrefabInfo",
  5770. "fileId": "75aD/hY6tBgosSj/TAK9Dw"
  5771. },
  5772. {
  5773. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  5774. "_name": "",
  5775. "_objFlags": 0,
  5776. "node": {
  5777. "__id__": 262
  5778. },
  5779. "_enabled": true,
  5780. "__prefab": {
  5781. "__id__": 270
  5782. },
  5783. "clips": [
  5784. {
  5785. "__uuid__": "1d3965ff-d4b2-43ee-ab57-e777ac93c813"
  5786. }
  5787. ],
  5788. "_volume": 1,
  5789. "useGlobalVolume": true,
  5790. "playOnLoad": true,
  5791. "playOnTouch": false,
  5792. "oneShot": true,
  5793. "loop": false,
  5794. "_id": ""
  5795. },
  5796. {
  5797. "__type__": "cc.CompPrefabInfo",
  5798. "fileId": "1a4AtCd9dOJJMHCkfpoTk+"
  5799. },
  5800. {
  5801. "__type__": "cc.PrefabInfo",
  5802. "root": {
  5803. "__id__": 1
  5804. },
  5805. "asset": {
  5806. "__id__": 0
  5807. },
  5808. "fileId": "8ahLeuiCVI05Qz1LEr+9B0"
  5809. },
  5810. {
  5811. "__type__": "cc.UITransform",
  5812. "_name": "",
  5813. "_objFlags": 0,
  5814. "node": {
  5815. "__id__": 12
  5816. },
  5817. "_enabled": true,
  5818. "__prefab": {
  5819. "__id__": 273
  5820. },
  5821. "_priority": 0,
  5822. "_contentSize": {
  5823. "__type__": "cc.Size",
  5824. "width": 586,
  5825. "height": 824
  5826. },
  5827. "_anchorPoint": {
  5828. "__type__": "cc.Vec2",
  5829. "x": 0.5,
  5830. "y": 0.5
  5831. },
  5832. "_id": ""
  5833. },
  5834. {
  5835. "__type__": "cc.CompPrefabInfo",
  5836. "fileId": "9eGsA8HdhCu4YIVRYBTKL5"
  5837. },
  5838. {
  5839. "__type__": "cc.Sprite",
  5840. "_name": "",
  5841. "_objFlags": 0,
  5842. "node": {
  5843. "__id__": 12
  5844. },
  5845. "_enabled": true,
  5846. "__prefab": {
  5847. "__id__": 275
  5848. },
  5849. "_visFlags": 0,
  5850. "_customMaterial": null,
  5851. "_srcBlendFactor": 2,
  5852. "_dstBlendFactor": 4,
  5853. "_color": {
  5854. "__type__": "cc.Color",
  5855. "r": 255,
  5856. "g": 255,
  5857. "b": 255,
  5858. "a": 255
  5859. },
  5860. "_spriteFrame": {
  5861. "__uuid__": "bfc75221-cb68-45e2-a198-38b598c7fc85@f9941"
  5862. },
  5863. "_type": 1,
  5864. "_fillType": 0,
  5865. "_sizeMode": 1,
  5866. "_fillCenter": {
  5867. "__type__": "cc.Vec2",
  5868. "x": 0,
  5869. "y": 0
  5870. },
  5871. "_fillStart": 0,
  5872. "_fillRange": 0,
  5873. "_isTrimmedMode": true,
  5874. "_useGrayscale": false,
  5875. "_atlas": null,
  5876. "_id": ""
  5877. },
  5878. {
  5879. "__type__": "cc.CompPrefabInfo",
  5880. "fileId": "88RIg/V59OHIW8/IUhgTeE"
  5881. },
  5882. {
  5883. "__type__": "cc.PrefabInfo",
  5884. "root": {
  5885. "__id__": 1
  5886. },
  5887. "asset": {
  5888. "__id__": 0
  5889. },
  5890. "fileId": "70mrHK1XlLQZ7I6EDCMQql"
  5891. },
  5892. {
  5893. "__type__": "cc.Node",
  5894. "_name": "关闭Label",
  5895. "_objFlags": 0,
  5896. "_parent": {
  5897. "__id__": 1
  5898. },
  5899. "_children": [],
  5900. "_active": true,
  5901. "_components": [
  5902. {
  5903. "__id__": 278
  5904. },
  5905. {
  5906. "__id__": 280
  5907. },
  5908. {
  5909. "__id__": 282
  5910. },
  5911. {
  5912. "__id__": 284
  5913. }
  5914. ],
  5915. "_prefab": {
  5916. "__id__": 286
  5917. },
  5918. "_lpos": {
  5919. "__type__": "cc.Vec3",
  5920. "x": 0,
  5921. "y": -611.8,
  5922. "z": 0
  5923. },
  5924. "_lrot": {
  5925. "__type__": "cc.Quat",
  5926. "x": 0,
  5927. "y": 0,
  5928. "z": 0,
  5929. "w": 1
  5930. },
  5931. "_lscale": {
  5932. "__type__": "cc.Vec3",
  5933. "x": 1,
  5934. "y": 1,
  5935. "z": 1
  5936. },
  5937. "_layer": 1073741824,
  5938. "_euler": {
  5939. "__type__": "cc.Vec3",
  5940. "x": 0,
  5941. "y": 0,
  5942. "z": 0
  5943. },
  5944. "_id": ""
  5945. },
  5946. {
  5947. "__type__": "cc.UITransform",
  5948. "_name": "",
  5949. "_objFlags": 0,
  5950. "node": {
  5951. "__id__": 277
  5952. },
  5953. "_enabled": true,
  5954. "__prefab": {
  5955. "__id__": 279
  5956. },
  5957. "_priority": 0,
  5958. "_contentSize": {
  5959. "__type__": "cc.Size",
  5960. "width": 80,
  5961. "height": 50.4
  5962. },
  5963. "_anchorPoint": {
  5964. "__type__": "cc.Vec2",
  5965. "x": 0.5,
  5966. "y": 0.5
  5967. },
  5968. "_id": ""
  5969. },
  5970. {
  5971. "__type__": "cc.CompPrefabInfo",
  5972. "fileId": "e6E7q1ex5L+ZDtS51Ouwrp"
  5973. },
  5974. {
  5975. "__type__": "cc.Label",
  5976. "_name": "",
  5977. "_objFlags": 0,
  5978. "node": {
  5979. "__id__": 277
  5980. },
  5981. "_enabled": true,
  5982. "__prefab": {
  5983. "__id__": 281
  5984. },
  5985. "_visFlags": 0,
  5986. "_customMaterial": null,
  5987. "_srcBlendFactor": 2,
  5988. "_dstBlendFactor": 4,
  5989. "_color": {
  5990. "__type__": "cc.Color",
  5991. "r": 255,
  5992. "g": 255,
  5993. "b": 255,
  5994. "a": 255
  5995. },
  5996. "_string": "关闭",
  5997. "_horizontalAlign": 1,
  5998. "_verticalAlign": 1,
  5999. "_actualFontSize": 40,
  6000. "_fontSize": 40,
  6001. "_fontFamily": "Arial",
  6002. "_lineHeight": 40,
  6003. "_overflow": 0,
  6004. "_enableWrapText": true,
  6005. "_font": null,
  6006. "_isSystemFontUsed": true,
  6007. "_isItalic": false,
  6008. "_isBold": false,
  6009. "_isUnderline": true,
  6010. "_underlineHeight": 2,
  6011. "_cacheMode": 0,
  6012. "_id": ""
  6013. },
  6014. {
  6015. "__type__": "cc.CompPrefabInfo",
  6016. "fileId": "45rtO8IBBBk7Adw8A++/RA"
  6017. },
  6018. {
  6019. "__type__": "cc.Widget",
  6020. "_name": "",
  6021. "_objFlags": 0,
  6022. "node": {
  6023. "__id__": 277
  6024. },
  6025. "_enabled": true,
  6026. "__prefab": {
  6027. "__id__": 283
  6028. },
  6029. "_alignFlags": 20,
  6030. "_target": null,
  6031. "_left": 0,
  6032. "_right": 0,
  6033. "_top": 0,
  6034. "_bottom": 30,
  6035. "_horizontalCenter": 0,
  6036. "_verticalCenter": 0,
  6037. "_isAbsLeft": true,
  6038. "_isAbsRight": true,
  6039. "_isAbsTop": true,
  6040. "_isAbsBottom": true,
  6041. "_isAbsHorizontalCenter": true,
  6042. "_isAbsVerticalCenter": true,
  6043. "_originalWidth": 0,
  6044. "_originalHeight": 0,
  6045. "_alignMode": 2,
  6046. "_lockFlags": 0,
  6047. "_id": ""
  6048. },
  6049. {
  6050. "__type__": "cc.CompPrefabInfo",
  6051. "fileId": "33J6UuYG1A6b+NH72Atao9"
  6052. },
  6053. {
  6054. "__type__": "cc.Button",
  6055. "_name": "",
  6056. "_objFlags": 0,
  6057. "node": {
  6058. "__id__": 277
  6059. },
  6060. "_enabled": true,
  6061. "__prefab": {
  6062. "__id__": 285
  6063. },
  6064. "clickEvents": [],
  6065. "_interactable": true,
  6066. "_transition": 3,
  6067. "_normalColor": {
  6068. "__type__": "cc.Color",
  6069. "r": 255,
  6070. "g": 255,
  6071. "b": 255,
  6072. "a": 255
  6073. },
  6074. "_hoverColor": {
  6075. "__type__": "cc.Color",
  6076. "r": 211,
  6077. "g": 211,
  6078. "b": 211,
  6079. "a": 255
  6080. },
  6081. "_pressedColor": {
  6082. "__type__": "cc.Color",
  6083. "r": 255,
  6084. "g": 255,
  6085. "b": 255,
  6086. "a": 255
  6087. },
  6088. "_disabledColor": {
  6089. "__type__": "cc.Color",
  6090. "r": 124,
  6091. "g": 124,
  6092. "b": 124,
  6093. "a": 255
  6094. },
  6095. "_normalSprite": null,
  6096. "_hoverSprite": null,
  6097. "_pressedSprite": null,
  6098. "_disabledSprite": null,
  6099. "_duration": 0.1,
  6100. "_zoomScale": 1.2,
  6101. "_target": null,
  6102. "_id": ""
  6103. },
  6104. {
  6105. "__type__": "cc.CompPrefabInfo",
  6106. "fileId": "2bDxqhDv9JB64pgIF6jtE/"
  6107. },
  6108. {
  6109. "__type__": "cc.PrefabInfo",
  6110. "root": {
  6111. "__id__": 1
  6112. },
  6113. "asset": {
  6114. "__id__": 0
  6115. },
  6116. "fileId": "02hVzsLqRIRrxBeDEiLdTt"
  6117. },
  6118. {
  6119. "__type__": "cc.UITransform",
  6120. "_name": "",
  6121. "_objFlags": 0,
  6122. "node": {
  6123. "__id__": 1
  6124. },
  6125. "_enabled": true,
  6126. "__prefab": {
  6127. "__id__": 288
  6128. },
  6129. "_priority": 0,
  6130. "_contentSize": {
  6131. "__type__": "cc.Size",
  6132. "width": 750,
  6133. "height": 1334
  6134. },
  6135. "_anchorPoint": {
  6136. "__type__": "cc.Vec2",
  6137. "x": 0.5,
  6138. "y": 0.5
  6139. },
  6140. "_id": ""
  6141. },
  6142. {
  6143. "__type__": "cc.CompPrefabInfo",
  6144. "fileId": "4aoDGgHCpCVZOTisTu9W1K"
  6145. },
  6146. {
  6147. "__type__": "cc.Widget",
  6148. "_name": "",
  6149. "_objFlags": 0,
  6150. "node": {
  6151. "__id__": 1
  6152. },
  6153. "_enabled": true,
  6154. "__prefab": {
  6155. "__id__": 290
  6156. },
  6157. "_alignFlags": 45,
  6158. "_target": null,
  6159. "_left": 0,
  6160. "_right": 0,
  6161. "_top": 0,
  6162. "_bottom": 0,
  6163. "_horizontalCenter": 0,
  6164. "_verticalCenter": 0,
  6165. "_isAbsLeft": true,
  6166. "_isAbsRight": true,
  6167. "_isAbsTop": true,
  6168. "_isAbsBottom": true,
  6169. "_isAbsHorizontalCenter": true,
  6170. "_isAbsVerticalCenter": true,
  6171. "_originalWidth": 100,
  6172. "_originalHeight": 100,
  6173. "_alignMode": 2,
  6174. "_lockFlags": 0,
  6175. "_id": ""
  6176. },
  6177. {
  6178. "__type__": "cc.CompPrefabInfo",
  6179. "fileId": "4efyjEC+RG46X1oNoZJVZL"
  6180. },
  6181. {
  6182. "__type__": "bd869tPK79PH4A99v6jE8q0",
  6183. "_name": "",
  6184. "_objFlags": 0,
  6185. "node": {
  6186. "__id__": 1
  6187. },
  6188. "_enabled": true,
  6189. "__prefab": {
  6190. "__id__": 292
  6191. },
  6192. "closeNodes": [
  6193. {
  6194. "__id__": 2
  6195. },
  6196. {
  6197. "__id__": 262
  6198. },
  6199. {
  6200. "__id__": 277
  6201. }
  6202. ],
  6203. "onParams": {
  6204. "__id__": 293
  6205. },
  6206. "onClosing": null,
  6207. "closeTween": null,
  6208. "_id": ""
  6209. },
  6210. {
  6211. "__type__": "cc.CompPrefabInfo",
  6212. "fileId": "bdFVUVUodEqp3iXxe0eDiK"
  6213. },
  6214. {
  6215. "__type__": "cc.ClickEvent",
  6216. "target": {
  6217. "__id__": 1
  6218. },
  6219. "component": "",
  6220. "_componentId": "1808am6E4FLSaSGN9i2qtgl",
  6221. "handler": "onParams",
  6222. "customEventData": ""
  6223. },
  6224. {
  6225. "__type__": "1808am6E4FLSaSGN9i2qtgl",
  6226. "_name": "",
  6227. "_objFlags": 0,
  6228. "node": {
  6229. "__id__": 1
  6230. },
  6231. "_enabled": true,
  6232. "__prefab": {
  6233. "__id__": 295
  6234. },
  6235. "item": {
  6236. "__uuid__": "61e84574-a4e0-443f-95a8-c897bbea3124"
  6237. },
  6238. "list": {
  6239. "__id__": 254
  6240. },
  6241. "_id": ""
  6242. },
  6243. {
  6244. "__type__": "cc.CompPrefabInfo",
  6245. "fileId": "cbtxr+/7lBCpD6v2sEvBIU"
  6246. },
  6247. {
  6248. "__type__": "cc.BlockInputEvents",
  6249. "_name": "",
  6250. "_objFlags": 0,
  6251. "node": {
  6252. "__id__": 1
  6253. },
  6254. "_enabled": true,
  6255. "__prefab": {
  6256. "__id__": 297
  6257. },
  6258. "_id": ""
  6259. },
  6260. {
  6261. "__type__": "cc.CompPrefabInfo",
  6262. "fileId": "bfPbEHAyZBRpgYiwtY2bAA"
  6263. },
  6264. {
  6265. "__type__": "cc.PrefabInfo",
  6266. "root": {
  6267. "__id__": 1
  6268. },
  6269. "asset": {
  6270. "__id__": 0
  6271. },
  6272. "fileId": "18NpY2K3xFg6uZZ8xrHYAO"
  6273. }
  6274. ]