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