GameUI.prefab 104 KB

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