MainUI.prefab 169 KB

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