lobby_new.prefab 100 KB

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