GameDevUI.prefab 133 KB

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