Game.scene 108 KB

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