StopUI.prefab 102 KB

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