SelectGameMatch.prefab 104 KB

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