StopUI.prefab 105 KB

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