GameUI.prefab 101 KB

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