wode_view.prefab 119 KB

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