GameUI.prefab 104 KB

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