PowerUpLayer.prefab 138 KB

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