boxingCount.fire 267 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649136501365113652136531365413655136561365713658136591366013661136621366313664136651366613667136681366913670136711367213673136741367513676136771367813679136801368113682136831368413685136861368713688136891369013691136921369313694136951369613697136981369913700137011370213703137041370513706137071370813709137101371113712137131371413715137161371713718137191372013721137221372313724137251372613727137281372913730137311373213733137341373513736137371373813739137401374113742137431374413745137461374713748137491375013751137521375313754137551375613757137581375913760137611376213763137641376513766137671376813769137701377113772137731377413775137761377713778137791378013781137821378313784137851378613787137881378913790137911379213793137941379513796137971379813799138001380113802138031380413805138061380713808138091381013811138121381313814138151381613817138181381913820138211382213823138241382513826138271382813829138301383113832138331383413835138361383713838138391384013841138421384313844138451384613847138481384913850138511385213853138541385513856138571385813859138601386113862138631386413865138661386713868138691387013871138721387313874138751387613877138781387913880138811388213883138841388513886138871388813889138901389113892138931389413895138961389713898138991390013901139021390313904139051390613907139081390913910139111391213913139141391513916139171391813919139201392113922139231392413925139261392713928139291393013931139321393313934139351393613937139381393913940139411394213943139441394513946139471394813949139501395113952139531395413955139561395713958139591396013961139621396313964139651396613967139681396913970139711397213973139741397513976139771397813979139801398113982139831398413985139861398713988139891399013991139921399313994139951399613997139981399914000140011400214003140041400514006140071400814009140101401114012140131401414015140161401714018140191402014021140221402314024140251402614027140281402914030140311403214033140341403514036140371403814039140401404114042140431404414045140461404714048140491405014051140521405314054140551405614057140581405914060140611406214063140641406514066140671406814069140701407114072140731407414075140761407714078140791408014081140821408314084140851408614087140881408914090140911409214093140941409514096140971409814099141001410114102141031410414105141061410714108141091411014111141121411314114141151411614117141181411914120141211412214123141241412514126141271412814129141301413114132141331413414135141361413714138141391414014141141421414314144141451414614147141481414914150141511415214153141541415514156141571415814159141601416114162141631416414165141661416714168141691417014171141721417314174141751417614177141781417914180141811418214183141841418514186141871418814189141901419114192141931419414195141961419714198141991420014201142021420314204142051420614207142081420914210142111421214213142141421514216142171421814219142201422114222142231422414225142261422714228142291423014231142321423314234142351423614237142381423914240142411424214243142441424514246142471424814249142501425114252142531425414255142561425714258142591426014261142621426314264142651426614267142681426914270142711427214273142741427514276142771427814279142801428114282142831428414285142861428714288142891429014291142921429314294142951429614297142981429914300143011430214303143041430514306143071430814309143101431114312143131431414315143161431714318143191432014321143221432314324143251432614327143281432914330143311433214333143341433514336143371433814339143401434114342143431434414345143461434714348143491435014351143521435314354143551435614357143581435914360143611436214363143641436514366143671436814369143701437114372143731437414375143761437714378143791438014381143821438314384143851438614387143881438914390143911439214393143941439514396143971439814399144001440114402144031440414405144061440714408144091441014411144121441314414144151441614417144181441914420144211442214423144241442514426144271442814429144301443114432144331443414435144361443714438144391444014441144421444314444144451444614447144481444914450144511445214453144541445514456144571445814459144601446114462144631446414465144661446714468144691447014471144721447314474144751447614477144781447914480144811448214483144841448514486144871448814489144901449114492144931449414495144961449714498144991450014501145021450314504145051450614507145081450914510145111451214513145141451514516145171451814519145201452114522145231452414525145261452714528145291453014531145321453314534145351453614537145381453914540145411454214543145441454514546145471454814549145501455114552145531455414555145561455714558145591456014561145621456314564145651456614567145681456914570145711457214573145741457514576145771457814579145801458114582145831458414585145861458714588145891459014591145921459314594145951459614597145981459914600146011460214603146041460514606146071460814609146101461114612146131461414615146161461714618146191462014621146221462314624146251462614627146281462914630146311463214633146341463514636146371463814639146401464114642146431464414645146461464714648146491465014651146521465314654146551465614657146581465914660146611466214663146641466514666146671466814669146701467114672146731467414675146761467714678146791468014681146821468314684146851468614687146881468914690146911469214693146941469514696146971469814699147001470114702147031470414705147061470714708147091471014711147121471314714147151471614717147181471914720147211472214723147241472514726147271472814729147301473114732147331473414735147361473714738147391474014741147421474314744147451474614747147481474914750147511475214753147541475514756147571475814759147601476114762147631476414765147661476714768147691477014771147721477314774147751477614777147781477914780147811478214783147841478514786147871478814789147901479114792147931479414795147961479714798147991480014801148021480314804148051480614807148081480914810148111481214813148141481514816148171481814819148201482114822148231482414825148261482714828148291483014831148321483314834148351483614837148381483914840148411484214843148441484514846148471484814849148501485114852148531485414855148561485714858148591486014861148621486314864148651486614867148681486914870148711487214873148741487514876148771487814879148801488114882148831488414885148861488714888148891489014891148921489314894148951489614897148981489914900149011490214903149041490514906149071490814909149101491114912149131491414915149161491714918149191492014921149221492314924149251492614927149281492914930149311493214933149341493514936149371493814939149401494114942149431494414945149461494714948149491495014951149521495314954149551495614957149581495914960149611496214963149641496514966149671496814969149701497114972149731497414975149761497714978149791498014981149821498314984149851498614987149881498914990149911499214993149941499514996149971499814999150001500115002150031500415005150061500715008150091501015011150121501315014150151501615017150181501915020150211502215023150241502515026150271502815029150301503115032150331503415035150361503715038150391504015041150421504315044150451504615047150481504915050150511505215053150541505515056150571505815059150601506115062150631506415065150661506715068150691507015071150721507315074150751507615077150781507915080150811508215083150841508515086150871508815089150901509115092150931509415095150961509715098150991510015101151021510315104151051510615107151081510915110151111511215113151141511515116
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. }
  19. ],
  20. "_active": true,
  21. "_components": [],
  22. "_prefab": null,
  23. "_opacity": 255,
  24. "_color": {
  25. "__type__": "cc.Color",
  26. "r": 255,
  27. "g": 255,
  28. "b": 255,
  29. "a": 255
  30. },
  31. "_contentSize": {
  32. "__type__": "cc.Size",
  33. "width": 0,
  34. "height": 0
  35. },
  36. "_anchorPoint": {
  37. "__type__": "cc.Vec2",
  38. "x": 0,
  39. "y": 0
  40. },
  41. "_trs": {
  42. "__type__": "TypedArray",
  43. "ctor": "Float64Array",
  44. "array": [
  45. 0,
  46. 0,
  47. 0,
  48. 0,
  49. 0,
  50. 0,
  51. 1,
  52. 1,
  53. 1,
  54. 1
  55. ]
  56. },
  57. "_is3DNode": true,
  58. "_groupIndex": 0,
  59. "groupIndex": 0,
  60. "autoReleaseAssets": false,
  61. "_id": "20c7dc77-137a-44f8-a426-dce1b3a091d0"
  62. },
  63. {
  64. "__type__": "cc.Node",
  65. "_name": "Canvas",
  66. "_objFlags": 0,
  67. "_parent": {
  68. "__id__": 1
  69. },
  70. "_children": [
  71. {
  72. "__id__": 3
  73. },
  74. {
  75. "__id__": 5
  76. },
  77. {
  78. "__id__": 16
  79. },
  80. {
  81. "__id__": 19
  82. },
  83. {
  84. "__id__": 22
  85. },
  86. {
  87. "__id__": 25
  88. },
  89. {
  90. "__id__": 30
  91. },
  92. {
  93. "__id__": 35
  94. },
  95. {
  96. "__id__": 48
  97. },
  98. {
  99. "__id__": 61
  100. },
  101. {
  102. "__id__": 170
  103. },
  104. {
  105. "__id__": 294
  106. },
  107. {
  108. "__id__": 180
  109. },
  110. {
  111. "__id__": 251
  112. },
  113. {
  114. "__id__": 297
  115. },
  116. {
  117. "__id__": 300
  118. }
  119. ],
  120. "_active": true,
  121. "_components": [
  122. {
  123. "__id__": 307
  124. },
  125. {
  126. "__id__": 308
  127. },
  128. {
  129. "__id__": 309
  130. },
  131. {
  132. "__id__": 310
  133. }
  134. ],
  135. "_prefab": null,
  136. "_opacity": 255,
  137. "_color": {
  138. "__type__": "cc.Color",
  139. "r": 255,
  140. "g": 255,
  141. "b": 255,
  142. "a": 255
  143. },
  144. "_contentSize": {
  145. "__type__": "cc.Size",
  146. "width": 720,
  147. "height": 1280
  148. },
  149. "_anchorPoint": {
  150. "__type__": "cc.Vec2",
  151. "x": 0.5,
  152. "y": 0.5
  153. },
  154. "_trs": {
  155. "__type__": "TypedArray",
  156. "ctor": "Float64Array",
  157. "array": [
  158. 360,
  159. 640,
  160. 0,
  161. 0,
  162. 0,
  163. 0,
  164. 1,
  165. 1,
  166. 1,
  167. 1
  168. ]
  169. },
  170. "_eulerAngles": {
  171. "__type__": "cc.Vec3",
  172. "x": 0,
  173. "y": 0,
  174. "z": 0
  175. },
  176. "_skewX": 0,
  177. "_skewY": 0,
  178. "_is3DNode": false,
  179. "_groupIndex": 0,
  180. "groupIndex": 0,
  181. "_id": "56RRFjdtdHmZJcCfDp/szD"
  182. },
  183. {
  184. "__type__": "cc.Node",
  185. "_name": "Main Camera",
  186. "_objFlags": 0,
  187. "_parent": {
  188. "__id__": 2
  189. },
  190. "_children": [],
  191. "_active": true,
  192. "_components": [
  193. {
  194. "__id__": 4
  195. }
  196. ],
  197. "_prefab": null,
  198. "_opacity": 255,
  199. "_color": {
  200. "__type__": "cc.Color",
  201. "r": 255,
  202. "g": 255,
  203. "b": 255,
  204. "a": 255
  205. },
  206. "_contentSize": {
  207. "__type__": "cc.Size",
  208. "width": 0,
  209. "height": 0
  210. },
  211. "_anchorPoint": {
  212. "__type__": "cc.Vec2",
  213. "x": 0.5,
  214. "y": 0.5
  215. },
  216. "_trs": {
  217. "__type__": "TypedArray",
  218. "ctor": "Float64Array",
  219. "array": [
  220. 0,
  221. 0,
  222. 488.7766189077767,
  223. 0,
  224. 0,
  225. 0,
  226. 1,
  227. 1,
  228. 1,
  229. 1
  230. ]
  231. },
  232. "_eulerAngles": {
  233. "__type__": "cc.Vec3",
  234. "x": 0,
  235. "y": 0,
  236. "z": 0
  237. },
  238. "_skewX": 0,
  239. "_skewY": 0,
  240. "_is3DNode": false,
  241. "_groupIndex": 0,
  242. "groupIndex": 0,
  243. "_id": "91qQS1awtBE5e7xwfOInaV"
  244. },
  245. {
  246. "__type__": "cc.Camera",
  247. "_name": "",
  248. "_objFlags": 0,
  249. "node": {
  250. "__id__": 3
  251. },
  252. "_enabled": true,
  253. "_cullingMask": 4294967295,
  254. "_clearFlags": 7,
  255. "_backgroundColor": {
  256. "__type__": "cc.Color",
  257. "r": 0,
  258. "g": 0,
  259. "b": 0,
  260. "a": 255
  261. },
  262. "_depth": -1,
  263. "_zoomRatio": 1,
  264. "_targetTexture": null,
  265. "_fov": 60,
  266. "_orthoSize": 10,
  267. "_nearClip": 1,
  268. "_farClip": 4096,
  269. "_ortho": true,
  270. "_rect": {
  271. "__type__": "cc.Rect",
  272. "x": 0,
  273. "y": 0,
  274. "width": 1,
  275. "height": 1
  276. },
  277. "_renderStages": 1,
  278. "_alignWithScreen": true,
  279. "_id": "abS5ZyK+1PF4n0wB0qbEuT"
  280. },
  281. {
  282. "__type__": "cc.Node",
  283. "_name": "boxing",
  284. "_objFlags": 0,
  285. "_parent": {
  286. "__id__": 2
  287. },
  288. "_children": [
  289. {
  290. "__id__": 6
  291. },
  292. {
  293. "__id__": 8
  294. },
  295. {
  296. "__id__": 10
  297. },
  298. {
  299. "__id__": 12
  300. },
  301. {
  302. "__id__": 14
  303. }
  304. ],
  305. "_active": false,
  306. "_components": [],
  307. "_prefab": null,
  308. "_opacity": 255,
  309. "_color": {
  310. "__type__": "cc.Color",
  311. "r": 255,
  312. "g": 255,
  313. "b": 255,
  314. "a": 255
  315. },
  316. "_contentSize": {
  317. "__type__": "cc.Size",
  318. "width": 0,
  319. "height": 0
  320. },
  321. "_anchorPoint": {
  322. "__type__": "cc.Vec2",
  323. "x": 0.5,
  324. "y": 0.5
  325. },
  326. "_trs": {
  327. "__type__": "TypedArray",
  328. "ctor": "Float64Array",
  329. "array": [
  330. -229.773,
  331. 545.997,
  332. 0,
  333. 0,
  334. 0,
  335. 0,
  336. 1,
  337. 1,
  338. 1,
  339. 1
  340. ]
  341. },
  342. "_eulerAngles": {
  343. "__type__": "cc.Vec3",
  344. "x": 0,
  345. "y": 0,
  346. "z": 0
  347. },
  348. "_skewX": 0,
  349. "_skewY": 0,
  350. "_is3DNode": false,
  351. "_groupIndex": 0,
  352. "groupIndex": 0,
  353. "_id": "30GFSCtwZH3qGkrkPqR04P"
  354. },
  355. {
  356. "__type__": "cc.Node",
  357. "_name": "left",
  358. "_objFlags": 0,
  359. "_parent": {
  360. "__id__": 5
  361. },
  362. "_children": [],
  363. "_active": true,
  364. "_components": [
  365. {
  366. "__id__": 7
  367. }
  368. ],
  369. "_prefab": null,
  370. "_opacity": 255,
  371. "_color": {
  372. "__type__": "cc.Color",
  373. "r": 255,
  374. "g": 255,
  375. "b": 255,
  376. "a": 255
  377. },
  378. "_contentSize": {
  379. "__type__": "cc.Size",
  380. "width": 97.87,
  381. "height": 50.4
  382. },
  383. "_anchorPoint": {
  384. "__type__": "cc.Vec2",
  385. "x": 0.5,
  386. "y": 0.5
  387. },
  388. "_trs": {
  389. "__type__": "TypedArray",
  390. "ctor": "Float64Array",
  391. "array": [
  392. 0,
  393. 49.351,
  394. 0,
  395. 0,
  396. 0,
  397. 0,
  398. 1,
  399. 1,
  400. 1,
  401. 1
  402. ]
  403. },
  404. "_eulerAngles": {
  405. "__type__": "cc.Vec3",
  406. "x": 0,
  407. "y": 0,
  408. "z": 0
  409. },
  410. "_skewX": 0,
  411. "_skewY": 0,
  412. "_is3DNode": false,
  413. "_groupIndex": 0,
  414. "groupIndex": 0,
  415. "_id": "1d0OJgfklI757V+dovzKhZ"
  416. },
  417. {
  418. "__type__": "cc.Label",
  419. "_name": "",
  420. "_objFlags": 0,
  421. "node": {
  422. "__id__": 6
  423. },
  424. "_enabled": true,
  425. "_materials": [
  426. {
  427. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  428. }
  429. ],
  430. "_useOriginalSize": false,
  431. "_string": "Label",
  432. "_N$string": "Label",
  433. "_fontSize": 40,
  434. "_lineHeight": 40,
  435. "_enableWrapText": true,
  436. "_N$file": null,
  437. "_isSystemFontUsed": true,
  438. "_spacingX": 0,
  439. "_batchAsBitmap": false,
  440. "_styleFlags": 0,
  441. "_underlineHeight": 0,
  442. "_N$horizontalAlign": 1,
  443. "_N$verticalAlign": 1,
  444. "_N$fontFamily": "Arial",
  445. "_N$overflow": 0,
  446. "_N$cacheMode": 0,
  447. "_id": "95ikEjN9dPlIdy6qsMZmsb"
  448. },
  449. {
  450. "__type__": "cc.Node",
  451. "_name": "mid",
  452. "_objFlags": 0,
  453. "_parent": {
  454. "__id__": 5
  455. },
  456. "_children": [],
  457. "_active": true,
  458. "_components": [
  459. {
  460. "__id__": 9
  461. }
  462. ],
  463. "_prefab": null,
  464. "_opacity": 255,
  465. "_color": {
  466. "__type__": "cc.Color",
  467. "r": 255,
  468. "g": 255,
  469. "b": 255,
  470. "a": 255
  471. },
  472. "_contentSize": {
  473. "__type__": "cc.Size",
  474. "width": 97.87,
  475. "height": 50.4
  476. },
  477. "_anchorPoint": {
  478. "__type__": "cc.Vec2",
  479. "x": 0.5,
  480. "y": 0.5
  481. },
  482. "_trs": {
  483. "__type__": "TypedArray",
  484. "ctor": "Float64Array",
  485. "array": [
  486. 0,
  487. 7.677,
  488. 0,
  489. 0,
  490. 0,
  491. 0,
  492. 1,
  493. 1,
  494. 1,
  495. 1
  496. ]
  497. },
  498. "_eulerAngles": {
  499. "__type__": "cc.Vec3",
  500. "x": 0,
  501. "y": 0,
  502. "z": 0
  503. },
  504. "_skewX": 0,
  505. "_skewY": 0,
  506. "_is3DNode": false,
  507. "_groupIndex": 0,
  508. "groupIndex": 0,
  509. "_id": "6d5+S3EqNDErJe8qjdNiRT"
  510. },
  511. {
  512. "__type__": "cc.Label",
  513. "_name": "",
  514. "_objFlags": 0,
  515. "node": {
  516. "__id__": 8
  517. },
  518. "_enabled": true,
  519. "_materials": [
  520. {
  521. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  522. }
  523. ],
  524. "_useOriginalSize": false,
  525. "_string": "Label",
  526. "_N$string": "Label",
  527. "_fontSize": 40,
  528. "_lineHeight": 40,
  529. "_enableWrapText": true,
  530. "_N$file": null,
  531. "_isSystemFontUsed": true,
  532. "_spacingX": 0,
  533. "_batchAsBitmap": false,
  534. "_styleFlags": 0,
  535. "_underlineHeight": 0,
  536. "_N$horizontalAlign": 1,
  537. "_N$verticalAlign": 1,
  538. "_N$fontFamily": "Arial",
  539. "_N$overflow": 0,
  540. "_N$cacheMode": 0,
  541. "_id": "bc9yNtKMFPYKaC6e7hbPed"
  542. },
  543. {
  544. "__type__": "cc.Node",
  545. "_name": "right",
  546. "_objFlags": 0,
  547. "_parent": {
  548. "__id__": 5
  549. },
  550. "_children": [],
  551. "_active": true,
  552. "_components": [
  553. {
  554. "__id__": 11
  555. }
  556. ],
  557. "_prefab": null,
  558. "_opacity": 255,
  559. "_color": {
  560. "__type__": "cc.Color",
  561. "r": 255,
  562. "g": 255,
  563. "b": 255,
  564. "a": 255
  565. },
  566. "_contentSize": {
  567. "__type__": "cc.Size",
  568. "width": 97.87,
  569. "height": 50.4
  570. },
  571. "_anchorPoint": {
  572. "__type__": "cc.Vec2",
  573. "x": 0.5,
  574. "y": 0.5
  575. },
  576. "_trs": {
  577. "__type__": "TypedArray",
  578. "ctor": "Float64Array",
  579. "array": [
  580. 0,
  581. -42.927,
  582. 0,
  583. 0,
  584. 0,
  585. 0,
  586. 1,
  587. 1,
  588. 1,
  589. 1
  590. ]
  591. },
  592. "_eulerAngles": {
  593. "__type__": "cc.Vec3",
  594. "x": 0,
  595. "y": 0,
  596. "z": 0
  597. },
  598. "_skewX": 0,
  599. "_skewY": 0,
  600. "_is3DNode": false,
  601. "_groupIndex": 0,
  602. "groupIndex": 0,
  603. "_id": "b25PVbuwZMZqOfl/NGWuql"
  604. },
  605. {
  606. "__type__": "cc.Label",
  607. "_name": "",
  608. "_objFlags": 0,
  609. "node": {
  610. "__id__": 10
  611. },
  612. "_enabled": true,
  613. "_materials": [
  614. {
  615. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  616. }
  617. ],
  618. "_useOriginalSize": false,
  619. "_string": "Label",
  620. "_N$string": "Label",
  621. "_fontSize": 40,
  622. "_lineHeight": 40,
  623. "_enableWrapText": true,
  624. "_N$file": null,
  625. "_isSystemFontUsed": true,
  626. "_spacingX": 0,
  627. "_batchAsBitmap": false,
  628. "_styleFlags": 0,
  629. "_underlineHeight": 0,
  630. "_N$horizontalAlign": 1,
  631. "_N$verticalAlign": 1,
  632. "_N$fontFamily": "Arial",
  633. "_N$overflow": 0,
  634. "_N$cacheMode": 0,
  635. "_id": "79s9D3NQ5AfLp0oal+RS/L"
  636. },
  637. {
  638. "__type__": "cc.Node",
  639. "_name": "hitCountL",
  640. "_objFlags": 0,
  641. "_parent": {
  642. "__id__": 5
  643. },
  644. "_children": [],
  645. "_active": true,
  646. "_components": [
  647. {
  648. "__id__": 13
  649. }
  650. ],
  651. "_prefab": null,
  652. "_opacity": 255,
  653. "_color": {
  654. "__type__": "cc.Color",
  655. "r": 255,
  656. "g": 255,
  657. "b": 255,
  658. "a": 255
  659. },
  660. "_contentSize": {
  661. "__type__": "cc.Size",
  662. "width": 97.87,
  663. "height": 50.4
  664. },
  665. "_anchorPoint": {
  666. "__type__": "cc.Vec2",
  667. "x": 0.5,
  668. "y": 0.5
  669. },
  670. "_trs": {
  671. "__type__": "TypedArray",
  672. "ctor": "Float64Array",
  673. "array": [
  674. 211.569,
  675. -215.628,
  676. 0,
  677. 0,
  678. 0,
  679. 0,
  680. 1,
  681. 1,
  682. 1,
  683. 1
  684. ]
  685. },
  686. "_eulerAngles": {
  687. "__type__": "cc.Vec3",
  688. "x": 0,
  689. "y": 0,
  690. "z": 0
  691. },
  692. "_skewX": 0,
  693. "_skewY": 0,
  694. "_is3DNode": false,
  695. "_groupIndex": 0,
  696. "groupIndex": 0,
  697. "_id": "839qksjqBG6oGmC73hVs6z"
  698. },
  699. {
  700. "__type__": "cc.Label",
  701. "_name": "",
  702. "_objFlags": 0,
  703. "node": {
  704. "__id__": 12
  705. },
  706. "_enabled": true,
  707. "_materials": [
  708. {
  709. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  710. }
  711. ],
  712. "_useOriginalSize": false,
  713. "_string": "Label",
  714. "_N$string": "Label",
  715. "_fontSize": 40,
  716. "_lineHeight": 40,
  717. "_enableWrapText": true,
  718. "_N$file": null,
  719. "_isSystemFontUsed": true,
  720. "_spacingX": 0,
  721. "_batchAsBitmap": false,
  722. "_styleFlags": 0,
  723. "_underlineHeight": 0,
  724. "_N$horizontalAlign": 1,
  725. "_N$verticalAlign": 1,
  726. "_N$fontFamily": "Arial",
  727. "_N$overflow": 0,
  728. "_N$cacheMode": 0,
  729. "_id": "69BNIYbI5BDaUbNiCHuq3c"
  730. },
  731. {
  732. "__type__": "cc.Node",
  733. "_name": "hitCountZ",
  734. "_objFlags": 0,
  735. "_parent": {
  736. "__id__": 5
  737. },
  738. "_children": [],
  739. "_active": true,
  740. "_components": [
  741. {
  742. "__id__": 15
  743. }
  744. ],
  745. "_prefab": null,
  746. "_opacity": 255,
  747. "_color": {
  748. "__type__": "cc.Color",
  749. "r": 255,
  750. "g": 255,
  751. "b": 255,
  752. "a": 255
  753. },
  754. "_contentSize": {
  755. "__type__": "cc.Size",
  756. "width": 97.87,
  757. "height": 50.4
  758. },
  759. "_anchorPoint": {
  760. "__type__": "cc.Vec2",
  761. "x": 0.5,
  762. "y": 0.5
  763. },
  764. "_trs": {
  765. "__type__": "TypedArray",
  766. "ctor": "Float64Array",
  767. "array": [
  768. 403.125,
  769. -215.628,
  770. 0,
  771. 0,
  772. 0,
  773. 0,
  774. 1,
  775. 1,
  776. 1,
  777. 1
  778. ]
  779. },
  780. "_eulerAngles": {
  781. "__type__": "cc.Vec3",
  782. "x": 0,
  783. "y": 0,
  784. "z": 0
  785. },
  786. "_skewX": 0,
  787. "_skewY": 0,
  788. "_is3DNode": false,
  789. "_groupIndex": 0,
  790. "groupIndex": 0,
  791. "_id": "f9h5dPy5dEDqdbQeq8oq7n"
  792. },
  793. {
  794. "__type__": "cc.Label",
  795. "_name": "",
  796. "_objFlags": 0,
  797. "node": {
  798. "__id__": 14
  799. },
  800. "_enabled": true,
  801. "_materials": [
  802. {
  803. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  804. }
  805. ],
  806. "_useOriginalSize": false,
  807. "_string": "Label",
  808. "_N$string": "Label",
  809. "_fontSize": 40,
  810. "_lineHeight": 40,
  811. "_enableWrapText": true,
  812. "_N$file": null,
  813. "_isSystemFontUsed": true,
  814. "_spacingX": 0,
  815. "_batchAsBitmap": false,
  816. "_styleFlags": 0,
  817. "_underlineHeight": 0,
  818. "_N$horizontalAlign": 1,
  819. "_N$verticalAlign": 1,
  820. "_N$fontFamily": "Arial",
  821. "_N$overflow": 0,
  822. "_N$cacheMode": 0,
  823. "_id": "11j0+MVLxAIqmfXGubAAkf"
  824. },
  825. {
  826. "__type__": "cc.Node",
  827. "_name": "jump",
  828. "_objFlags": 0,
  829. "_parent": {
  830. "__id__": 2
  831. },
  832. "_children": [
  833. {
  834. "__id__": 17
  835. }
  836. ],
  837. "_active": true,
  838. "_components": [],
  839. "_prefab": null,
  840. "_opacity": 255,
  841. "_color": {
  842. "__type__": "cc.Color",
  843. "r": 255,
  844. "g": 255,
  845. "b": 255,
  846. "a": 255
  847. },
  848. "_contentSize": {
  849. "__type__": "cc.Size",
  850. "width": 0,
  851. "height": 0
  852. },
  853. "_anchorPoint": {
  854. "__type__": "cc.Vec2",
  855. "x": 0.5,
  856. "y": 0.5
  857. },
  858. "_trs": {
  859. "__type__": "TypedArray",
  860. "ctor": "Float64Array",
  861. "array": [
  862. -170.709,
  863. 577.251,
  864. 0,
  865. 0,
  866. 0,
  867. 0,
  868. 1,
  869. 1,
  870. 1,
  871. 1
  872. ]
  873. },
  874. "_eulerAngles": {
  875. "__type__": "cc.Vec3",
  876. "x": 0,
  877. "y": 0,
  878. "z": 0
  879. },
  880. "_skewX": 0,
  881. "_skewY": 0,
  882. "_is3DNode": false,
  883. "_groupIndex": 0,
  884. "groupIndex": 0,
  885. "_id": "1baAQxGjxD/IhmhkcFrmLx"
  886. },
  887. {
  888. "__type__": "cc.Node",
  889. "_name": "jumpCount",
  890. "_objFlags": 0,
  891. "_parent": {
  892. "__id__": 16
  893. },
  894. "_children": [],
  895. "_active": true,
  896. "_components": [
  897. {
  898. "__id__": 18
  899. }
  900. ],
  901. "_prefab": null,
  902. "_opacity": 255,
  903. "_color": {
  904. "__type__": "cc.Color",
  905. "r": 255,
  906. "g": 255,
  907. "b": 255,
  908. "a": 255
  909. },
  910. "_contentSize": {
  911. "__type__": "cc.Size",
  912. "width": 97.87,
  913. "height": 50.4
  914. },
  915. "_anchorPoint": {
  916. "__type__": "cc.Vec2",
  917. "x": 0,
  918. "y": 0.5
  919. },
  920. "_trs": {
  921. "__type__": "TypedArray",
  922. "ctor": "Float64Array",
  923. "array": [
  924. -2.438,
  925. -12.19,
  926. 0,
  927. 0,
  928. 0,
  929. 0,
  930. 1,
  931. 1,
  932. 1,
  933. 1
  934. ]
  935. },
  936. "_eulerAngles": {
  937. "__type__": "cc.Vec3",
  938. "x": 0,
  939. "y": 0,
  940. "z": 0
  941. },
  942. "_skewX": 0,
  943. "_skewY": 0,
  944. "_is3DNode": false,
  945. "_groupIndex": 0,
  946. "groupIndex": 0,
  947. "_id": "ddKYF9xBFCroDoBFyGeqMI"
  948. },
  949. {
  950. "__type__": "cc.Label",
  951. "_name": "",
  952. "_objFlags": 0,
  953. "node": {
  954. "__id__": 17
  955. },
  956. "_enabled": true,
  957. "_materials": [
  958. {
  959. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  960. }
  961. ],
  962. "_useOriginalSize": false,
  963. "_string": "Label",
  964. "_N$string": "Label",
  965. "_fontSize": 40,
  966. "_lineHeight": 40,
  967. "_enableWrapText": true,
  968. "_N$file": null,
  969. "_isSystemFontUsed": true,
  970. "_spacingX": 0,
  971. "_batchAsBitmap": false,
  972. "_styleFlags": 0,
  973. "_underlineHeight": 0,
  974. "_N$horizontalAlign": 0,
  975. "_N$verticalAlign": 1,
  976. "_N$fontFamily": "Arial",
  977. "_N$overflow": 0,
  978. "_N$cacheMode": 0,
  979. "_id": "84y79ss1dEALJynqpGAoB8"
  980. },
  981. {
  982. "__type__": "cc.Node",
  983. "_name": "run",
  984. "_objFlags": 0,
  985. "_parent": {
  986. "__id__": 2
  987. },
  988. "_children": [
  989. {
  990. "__id__": 20
  991. }
  992. ],
  993. "_active": true,
  994. "_components": [],
  995. "_prefab": null,
  996. "_opacity": 255,
  997. "_color": {
  998. "__type__": "cc.Color",
  999. "r": 255,
  1000. "g": 255,
  1001. "b": 255,
  1002. "a": 255
  1003. },
  1004. "_contentSize": {
  1005. "__type__": "cc.Size",
  1006. "width": 0,
  1007. "height": 0
  1008. },
  1009. "_anchorPoint": {
  1010. "__type__": "cc.Vec2",
  1011. "x": 0.5,
  1012. "y": 0.5
  1013. },
  1014. "_trs": {
  1015. "__type__": "TypedArray",
  1016. "ctor": "Float64Array",
  1017. "array": [
  1018. -137.586,
  1019. 521.179,
  1020. 0,
  1021. 0,
  1022. 0,
  1023. 0,
  1024. 1,
  1025. 1,
  1026. 1,
  1027. 1
  1028. ]
  1029. },
  1030. "_eulerAngles": {
  1031. "__type__": "cc.Vec3",
  1032. "x": 0,
  1033. "y": 0,
  1034. "z": 0
  1035. },
  1036. "_skewX": 0,
  1037. "_skewY": 0,
  1038. "_is3DNode": false,
  1039. "_groupIndex": 0,
  1040. "groupIndex": 0,
  1041. "_id": "eauRtO7LlBuIeXgfpoxlLR"
  1042. },
  1043. {
  1044. "__type__": "cc.Node",
  1045. "_name": "runCount",
  1046. "_objFlags": 0,
  1047. "_parent": {
  1048. "__id__": 19
  1049. },
  1050. "_children": [],
  1051. "_active": true,
  1052. "_components": [
  1053. {
  1054. "__id__": 21
  1055. }
  1056. ],
  1057. "_prefab": null,
  1058. "_opacity": 255,
  1059. "_color": {
  1060. "__type__": "cc.Color",
  1061. "r": 255,
  1062. "g": 255,
  1063. "b": 255,
  1064. "a": 255
  1065. },
  1066. "_contentSize": {
  1067. "__type__": "cc.Size",
  1068. "width": 97.87,
  1069. "height": 50.4
  1070. },
  1071. "_anchorPoint": {
  1072. "__type__": "cc.Vec2",
  1073. "x": 0,
  1074. "y": 0.5
  1075. },
  1076. "_trs": {
  1077. "__type__": "TypedArray",
  1078. "ctor": "Float64Array",
  1079. "array": [
  1080. -34.067,
  1081. -19.504,
  1082. 0,
  1083. 0,
  1084. 0,
  1085. 0,
  1086. 1,
  1087. 1,
  1088. 1,
  1089. 1
  1090. ]
  1091. },
  1092. "_eulerAngles": {
  1093. "__type__": "cc.Vec3",
  1094. "x": 0,
  1095. "y": 0,
  1096. "z": 0
  1097. },
  1098. "_skewX": 0,
  1099. "_skewY": 0,
  1100. "_is3DNode": false,
  1101. "_groupIndex": 0,
  1102. "groupIndex": 0,
  1103. "_id": "99Mw5uwFdOqrOsgMhMhuGf"
  1104. },
  1105. {
  1106. "__type__": "cc.Label",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 20
  1111. },
  1112. "_enabled": true,
  1113. "_materials": [
  1114. {
  1115. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1116. }
  1117. ],
  1118. "_useOriginalSize": false,
  1119. "_string": "Label",
  1120. "_N$string": "Label",
  1121. "_fontSize": 40,
  1122. "_lineHeight": 40,
  1123. "_enableWrapText": true,
  1124. "_N$file": null,
  1125. "_isSystemFontUsed": true,
  1126. "_spacingX": 0,
  1127. "_batchAsBitmap": false,
  1128. "_styleFlags": 0,
  1129. "_underlineHeight": 0,
  1130. "_N$horizontalAlign": 0,
  1131. "_N$verticalAlign": 1,
  1132. "_N$fontFamily": "Arial",
  1133. "_N$overflow": 0,
  1134. "_N$cacheMode": 0,
  1135. "_id": "459iLVvY9FJYg9oDWZ/M0Y"
  1136. },
  1137. {
  1138. "__type__": "cc.Node",
  1139. "_name": "handle",
  1140. "_objFlags": 0,
  1141. "_parent": {
  1142. "__id__": 2
  1143. },
  1144. "_children": [
  1145. {
  1146. "__id__": 23
  1147. }
  1148. ],
  1149. "_active": true,
  1150. "_components": [],
  1151. "_prefab": null,
  1152. "_opacity": 255,
  1153. "_color": {
  1154. "__type__": "cc.Color",
  1155. "r": 255,
  1156. "g": 255,
  1157. "b": 255,
  1158. "a": 255
  1159. },
  1160. "_contentSize": {
  1161. "__type__": "cc.Size",
  1162. "width": 0,
  1163. "height": 0
  1164. },
  1165. "_anchorPoint": {
  1166. "__type__": "cc.Vec2",
  1167. "x": 0.5,
  1168. "y": 0.5
  1169. },
  1170. "_trs": {
  1171. "__type__": "TypedArray",
  1172. "ctor": "Float64Array",
  1173. "array": [
  1174. 75.439,
  1175. 533.589,
  1176. 0,
  1177. 0,
  1178. 0,
  1179. 0,
  1180. 1,
  1181. 1,
  1182. 1,
  1183. 1
  1184. ]
  1185. },
  1186. "_eulerAngles": {
  1187. "__type__": "cc.Vec3",
  1188. "x": 0,
  1189. "y": 0,
  1190. "z": 0
  1191. },
  1192. "_skewX": 0,
  1193. "_skewY": 0,
  1194. "_is3DNode": false,
  1195. "_groupIndex": 0,
  1196. "groupIndex": 0,
  1197. "_id": "501GeRm9tNMJehP6eVBHuY"
  1198. },
  1199. {
  1200. "__type__": "cc.Node",
  1201. "_name": "handleLabel",
  1202. "_objFlags": 0,
  1203. "_parent": {
  1204. "__id__": 22
  1205. },
  1206. "_children": [],
  1207. "_active": true,
  1208. "_components": [
  1209. {
  1210. "__id__": 24
  1211. }
  1212. ],
  1213. "_prefab": null,
  1214. "_opacity": 255,
  1215. "_color": {
  1216. "__type__": "cc.Color",
  1217. "r": 255,
  1218. "g": 255,
  1219. "b": 255,
  1220. "a": 255
  1221. },
  1222. "_contentSize": {
  1223. "__type__": "cc.Size",
  1224. "width": 97.87,
  1225. "height": 50.4
  1226. },
  1227. "_anchorPoint": {
  1228. "__type__": "cc.Vec2",
  1229. "x": 0,
  1230. "y": 0.5
  1231. },
  1232. "_trs": {
  1233. "__type__": "TypedArray",
  1234. "ctor": "Float64Array",
  1235. "array": [
  1236. -34.067,
  1237. -19.504,
  1238. 0,
  1239. 0,
  1240. 0,
  1241. 0,
  1242. 1,
  1243. 1,
  1244. 1,
  1245. 1
  1246. ]
  1247. },
  1248. "_eulerAngles": {
  1249. "__type__": "cc.Vec3",
  1250. "x": 0,
  1251. "y": 0,
  1252. "z": 0
  1253. },
  1254. "_skewX": 0,
  1255. "_skewY": 0,
  1256. "_is3DNode": false,
  1257. "_groupIndex": 0,
  1258. "groupIndex": 0,
  1259. "_id": "934wcCBlRKIIiEkbZo6Out"
  1260. },
  1261. {
  1262. "__type__": "cc.Label",
  1263. "_name": "",
  1264. "_objFlags": 0,
  1265. "node": {
  1266. "__id__": 23
  1267. },
  1268. "_enabled": true,
  1269. "_materials": [
  1270. {
  1271. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1272. }
  1273. ],
  1274. "_useOriginalSize": false,
  1275. "_string": "Label",
  1276. "_N$string": "Label",
  1277. "_fontSize": 40,
  1278. "_lineHeight": 40,
  1279. "_enableWrapText": true,
  1280. "_N$file": null,
  1281. "_isSystemFontUsed": true,
  1282. "_spacingX": 0,
  1283. "_batchAsBitmap": false,
  1284. "_styleFlags": 0,
  1285. "_underlineHeight": 0,
  1286. "_N$horizontalAlign": 0,
  1287. "_N$verticalAlign": 1,
  1288. "_N$fontFamily": "Arial",
  1289. "_N$overflow": 0,
  1290. "_N$cacheMode": 0,
  1291. "_id": "5ezZN4WO1NKpjl4I7SVVp7"
  1292. },
  1293. {
  1294. "__type__": "cc.Node",
  1295. "_name": "index",
  1296. "_objFlags": 0,
  1297. "_parent": {
  1298. "__id__": 2
  1299. },
  1300. "_children": [
  1301. {
  1302. "__id__": 26
  1303. },
  1304. {
  1305. "__id__": 28
  1306. }
  1307. ],
  1308. "_active": true,
  1309. "_components": [],
  1310. "_prefab": null,
  1311. "_opacity": 255,
  1312. "_color": {
  1313. "__type__": "cc.Color",
  1314. "r": 255,
  1315. "g": 255,
  1316. "b": 255,
  1317. "a": 255
  1318. },
  1319. "_contentSize": {
  1320. "__type__": "cc.Size",
  1321. "width": 0,
  1322. "height": 0
  1323. },
  1324. "_anchorPoint": {
  1325. "__type__": "cc.Vec2",
  1326. "x": 0.5,
  1327. "y": 0.5
  1328. },
  1329. "_trs": {
  1330. "__type__": "TypedArray",
  1331. "ctor": "Float64Array",
  1332. "array": [
  1333. 91.721,
  1334. 507.959,
  1335. 0,
  1336. 0,
  1337. 0,
  1338. 0,
  1339. 1,
  1340. 1,
  1341. 1,
  1342. 1
  1343. ]
  1344. },
  1345. "_eulerAngles": {
  1346. "__type__": "cc.Vec3",
  1347. "x": 0,
  1348. "y": 0,
  1349. "z": 0
  1350. },
  1351. "_skewX": 0,
  1352. "_skewY": 0,
  1353. "_is3DNode": false,
  1354. "_groupIndex": 0,
  1355. "groupIndex": 0,
  1356. "_id": "e0Zi5Y8sRM6bBgZDjPWcYE"
  1357. },
  1358. {
  1359. "__type__": "cc.Node",
  1360. "_name": "phoneIndex",
  1361. "_objFlags": 0,
  1362. "_parent": {
  1363. "__id__": 25
  1364. },
  1365. "_children": [],
  1366. "_active": false,
  1367. "_components": [
  1368. {
  1369. "__id__": 27
  1370. }
  1371. ],
  1372. "_prefab": null,
  1373. "_opacity": 255,
  1374. "_color": {
  1375. "__type__": "cc.Color",
  1376. "r": 255,
  1377. "g": 255,
  1378. "b": 255,
  1379. "a": 255
  1380. },
  1381. "_contentSize": {
  1382. "__type__": "cc.Size",
  1383. "width": 97.87,
  1384. "height": 50.4
  1385. },
  1386. "_anchorPoint": {
  1387. "__type__": "cc.Vec2",
  1388. "x": 0.5,
  1389. "y": 0.5
  1390. },
  1391. "_trs": {
  1392. "__type__": "TypedArray",
  1393. "ctor": "Float64Array",
  1394. "array": [
  1395. 0,
  1396. 0,
  1397. 0,
  1398. 0,
  1399. 0,
  1400. 0,
  1401. 1,
  1402. 1,
  1403. 1,
  1404. 1
  1405. ]
  1406. },
  1407. "_eulerAngles": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 0,
  1410. "y": 0,
  1411. "z": 0
  1412. },
  1413. "_skewX": 0,
  1414. "_skewY": 0,
  1415. "_is3DNode": false,
  1416. "_groupIndex": 0,
  1417. "groupIndex": 0,
  1418. "_id": "de2SifdBtKWqDweL3TPJDd"
  1419. },
  1420. {
  1421. "__type__": "cc.Label",
  1422. "_name": "",
  1423. "_objFlags": 0,
  1424. "node": {
  1425. "__id__": 26
  1426. },
  1427. "_enabled": true,
  1428. "_materials": [
  1429. {
  1430. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1431. }
  1432. ],
  1433. "_useOriginalSize": false,
  1434. "_string": "Label",
  1435. "_N$string": "Label",
  1436. "_fontSize": 40,
  1437. "_lineHeight": 40,
  1438. "_enableWrapText": true,
  1439. "_N$file": null,
  1440. "_isSystemFontUsed": true,
  1441. "_spacingX": 0,
  1442. "_batchAsBitmap": false,
  1443. "_styleFlags": 0,
  1444. "_underlineHeight": 0,
  1445. "_N$horizontalAlign": 1,
  1446. "_N$verticalAlign": 1,
  1447. "_N$fontFamily": "Arial",
  1448. "_N$overflow": 0,
  1449. "_N$cacheMode": 0,
  1450. "_id": "6dDmyjqipHepP2lZ2n/BLE"
  1451. },
  1452. {
  1453. "__type__": "cc.Node",
  1454. "_name": "BLEIndex",
  1455. "_objFlags": 0,
  1456. "_parent": {
  1457. "__id__": 25
  1458. },
  1459. "_children": [],
  1460. "_active": true,
  1461. "_components": [
  1462. {
  1463. "__id__": 29
  1464. }
  1465. ],
  1466. "_prefab": null,
  1467. "_opacity": 255,
  1468. "_color": {
  1469. "__type__": "cc.Color",
  1470. "r": 255,
  1471. "g": 255,
  1472. "b": 255,
  1473. "a": 255
  1474. },
  1475. "_contentSize": {
  1476. "__type__": "cc.Size",
  1477. "width": 97.87,
  1478. "height": 50.4
  1479. },
  1480. "_anchorPoint": {
  1481. "__type__": "cc.Vec2",
  1482. "x": 0.5,
  1483. "y": 0.5
  1484. },
  1485. "_trs": {
  1486. "__type__": "TypedArray",
  1487. "ctor": "Float64Array",
  1488. "array": [
  1489. 0,
  1490. -50,
  1491. 0,
  1492. 0,
  1493. 0,
  1494. 0,
  1495. 1,
  1496. 1,
  1497. 1,
  1498. 1
  1499. ]
  1500. },
  1501. "_eulerAngles": {
  1502. "__type__": "cc.Vec3",
  1503. "x": 0,
  1504. "y": 0,
  1505. "z": 0
  1506. },
  1507. "_skewX": 0,
  1508. "_skewY": 0,
  1509. "_is3DNode": false,
  1510. "_groupIndex": 0,
  1511. "groupIndex": 0,
  1512. "_id": "833BOeSzNDWJPfznSky5gY"
  1513. },
  1514. {
  1515. "__type__": "cc.Label",
  1516. "_name": "",
  1517. "_objFlags": 0,
  1518. "node": {
  1519. "__id__": 28
  1520. },
  1521. "_enabled": true,
  1522. "_materials": [
  1523. {
  1524. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1525. }
  1526. ],
  1527. "_useOriginalSize": false,
  1528. "_string": "Label",
  1529. "_N$string": "Label",
  1530. "_fontSize": 40,
  1531. "_lineHeight": 40,
  1532. "_enableWrapText": true,
  1533. "_N$file": null,
  1534. "_isSystemFontUsed": true,
  1535. "_spacingX": 0,
  1536. "_batchAsBitmap": false,
  1537. "_styleFlags": 0,
  1538. "_underlineHeight": 0,
  1539. "_N$horizontalAlign": 1,
  1540. "_N$verticalAlign": 1,
  1541. "_N$fontFamily": "Arial",
  1542. "_N$overflow": 0,
  1543. "_N$cacheMode": 0,
  1544. "_id": "71nFbTFwNG6rIramazrRML"
  1545. },
  1546. {
  1547. "__type__": "cc.Node",
  1548. "_name": "ave",
  1549. "_objFlags": 0,
  1550. "_parent": {
  1551. "__id__": 2
  1552. },
  1553. "_children": [
  1554. {
  1555. "__id__": 31
  1556. },
  1557. {
  1558. "__id__": 33
  1559. }
  1560. ],
  1561. "_active": true,
  1562. "_components": [],
  1563. "_prefab": null,
  1564. "_opacity": 255,
  1565. "_color": {
  1566. "__type__": "cc.Color",
  1567. "r": 255,
  1568. "g": 255,
  1569. "b": 255,
  1570. "a": 255
  1571. },
  1572. "_contentSize": {
  1573. "__type__": "cc.Size",
  1574. "width": 0,
  1575. "height": 0
  1576. },
  1577. "_anchorPoint": {
  1578. "__type__": "cc.Vec2",
  1579. "x": 0.5,
  1580. "y": 0.5
  1581. },
  1582. "_trs": {
  1583. "__type__": "TypedArray",
  1584. "ctor": "Float64Array",
  1585. "array": [
  1586. 244.286,
  1587. 507.959,
  1588. 0,
  1589. 0,
  1590. 0,
  1591. 0,
  1592. 1,
  1593. 1,
  1594. 1,
  1595. 1
  1596. ]
  1597. },
  1598. "_eulerAngles": {
  1599. "__type__": "cc.Vec3",
  1600. "x": 0,
  1601. "y": 0,
  1602. "z": 0
  1603. },
  1604. "_skewX": 0,
  1605. "_skewY": 0,
  1606. "_is3DNode": false,
  1607. "_groupIndex": 0,
  1608. "groupIndex": 0,
  1609. "_id": "85h14Z9bpF/6TW49moHGz8"
  1610. },
  1611. {
  1612. "__type__": "cc.Node",
  1613. "_name": "avePhoneIndex",
  1614. "_objFlags": 0,
  1615. "_parent": {
  1616. "__id__": 30
  1617. },
  1618. "_children": [],
  1619. "_active": false,
  1620. "_components": [
  1621. {
  1622. "__id__": 32
  1623. }
  1624. ],
  1625. "_prefab": null,
  1626. "_opacity": 255,
  1627. "_color": {
  1628. "__type__": "cc.Color",
  1629. "r": 255,
  1630. "g": 255,
  1631. "b": 255,
  1632. "a": 255
  1633. },
  1634. "_contentSize": {
  1635. "__type__": "cc.Size",
  1636. "width": 97.87,
  1637. "height": 50.4
  1638. },
  1639. "_anchorPoint": {
  1640. "__type__": "cc.Vec2",
  1641. "x": 0.5,
  1642. "y": 0.5
  1643. },
  1644. "_trs": {
  1645. "__type__": "TypedArray",
  1646. "ctor": "Float64Array",
  1647. "array": [
  1648. 0,
  1649. 0,
  1650. 0,
  1651. 0,
  1652. 0,
  1653. 0,
  1654. 1,
  1655. 1,
  1656. 1,
  1657. 1
  1658. ]
  1659. },
  1660. "_eulerAngles": {
  1661. "__type__": "cc.Vec3",
  1662. "x": 0,
  1663. "y": 0,
  1664. "z": 0
  1665. },
  1666. "_skewX": 0,
  1667. "_skewY": 0,
  1668. "_is3DNode": false,
  1669. "_groupIndex": 0,
  1670. "groupIndex": 0,
  1671. "_id": "31ww7jytdEZZmtsQRvuKre"
  1672. },
  1673. {
  1674. "__type__": "cc.Label",
  1675. "_name": "",
  1676. "_objFlags": 0,
  1677. "node": {
  1678. "__id__": 31
  1679. },
  1680. "_enabled": true,
  1681. "_materials": [
  1682. {
  1683. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1684. }
  1685. ],
  1686. "_useOriginalSize": false,
  1687. "_string": "Label",
  1688. "_N$string": "Label",
  1689. "_fontSize": 40,
  1690. "_lineHeight": 40,
  1691. "_enableWrapText": true,
  1692. "_N$file": null,
  1693. "_isSystemFontUsed": true,
  1694. "_spacingX": 0,
  1695. "_batchAsBitmap": false,
  1696. "_styleFlags": 0,
  1697. "_underlineHeight": 0,
  1698. "_N$horizontalAlign": 1,
  1699. "_N$verticalAlign": 1,
  1700. "_N$fontFamily": "Arial",
  1701. "_N$overflow": 0,
  1702. "_N$cacheMode": 0,
  1703. "_id": "57WJdPXipNr6Ls2Vpcy5Hk"
  1704. },
  1705. {
  1706. "__type__": "cc.Node",
  1707. "_name": "aveBLEIndex",
  1708. "_objFlags": 0,
  1709. "_parent": {
  1710. "__id__": 30
  1711. },
  1712. "_children": [],
  1713. "_active": true,
  1714. "_components": [
  1715. {
  1716. "__id__": 34
  1717. }
  1718. ],
  1719. "_prefab": null,
  1720. "_opacity": 255,
  1721. "_color": {
  1722. "__type__": "cc.Color",
  1723. "r": 255,
  1724. "g": 255,
  1725. "b": 255,
  1726. "a": 255
  1727. },
  1728. "_contentSize": {
  1729. "__type__": "cc.Size",
  1730. "width": 97.87,
  1731. "height": 50.4
  1732. },
  1733. "_anchorPoint": {
  1734. "__type__": "cc.Vec2",
  1735. "x": 0.5,
  1736. "y": 0.5
  1737. },
  1738. "_trs": {
  1739. "__type__": "TypedArray",
  1740. "ctor": "Float64Array",
  1741. "array": [
  1742. 0,
  1743. -50,
  1744. 0,
  1745. 0,
  1746. 0,
  1747. 0,
  1748. 1,
  1749. 1,
  1750. 1,
  1751. 1
  1752. ]
  1753. },
  1754. "_eulerAngles": {
  1755. "__type__": "cc.Vec3",
  1756. "x": 0,
  1757. "y": 0,
  1758. "z": 0
  1759. },
  1760. "_skewX": 0,
  1761. "_skewY": 0,
  1762. "_is3DNode": false,
  1763. "_groupIndex": 0,
  1764. "groupIndex": 0,
  1765. "_id": "c0d8XlYLFOtLL17WuqQbY+"
  1766. },
  1767. {
  1768. "__type__": "cc.Label",
  1769. "_name": "",
  1770. "_objFlags": 0,
  1771. "node": {
  1772. "__id__": 33
  1773. },
  1774. "_enabled": true,
  1775. "_materials": [
  1776. {
  1777. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1778. }
  1779. ],
  1780. "_useOriginalSize": false,
  1781. "_string": "Label",
  1782. "_N$string": "Label",
  1783. "_fontSize": 40,
  1784. "_lineHeight": 40,
  1785. "_enableWrapText": true,
  1786. "_N$file": null,
  1787. "_isSystemFontUsed": true,
  1788. "_spacingX": 0,
  1789. "_batchAsBitmap": false,
  1790. "_styleFlags": 0,
  1791. "_underlineHeight": 0,
  1792. "_N$horizontalAlign": 1,
  1793. "_N$verticalAlign": 1,
  1794. "_N$fontFamily": "Arial",
  1795. "_N$overflow": 0,
  1796. "_N$cacheMode": 0,
  1797. "_id": "6f6pZGxcdK2qHoa3IurYnh"
  1798. },
  1799. {
  1800. "__type__": "cc.Node",
  1801. "_name": "limit",
  1802. "_objFlags": 0,
  1803. "_parent": {
  1804. "__id__": 2
  1805. },
  1806. "_children": [
  1807. {
  1808. "__id__": 36
  1809. },
  1810. {
  1811. "__id__": 44
  1812. },
  1813. {
  1814. "__id__": 46
  1815. }
  1816. ],
  1817. "_active": false,
  1818. "_components": [],
  1819. "_prefab": null,
  1820. "_opacity": 255,
  1821. "_color": {
  1822. "__type__": "cc.Color",
  1823. "r": 255,
  1824. "g": 255,
  1825. "b": 255,
  1826. "a": 255
  1827. },
  1828. "_contentSize": {
  1829. "__type__": "cc.Size",
  1830. "width": 0,
  1831. "height": 0
  1832. },
  1833. "_anchorPoint": {
  1834. "__type__": "cc.Vec2",
  1835. "x": 0.5,
  1836. "y": 0.5
  1837. },
  1838. "_trs": {
  1839. "__type__": "TypedArray",
  1840. "ctor": "Float64Array",
  1841. "array": [
  1842. 0,
  1843. 365.816,
  1844. 0,
  1845. 0,
  1846. 0,
  1847. 0,
  1848. 1,
  1849. 1,
  1850. 1,
  1851. 1
  1852. ]
  1853. },
  1854. "_eulerAngles": {
  1855. "__type__": "cc.Vec3",
  1856. "x": 0,
  1857. "y": 0,
  1858. "z": 0
  1859. },
  1860. "_skewX": 0,
  1861. "_skewY": 0,
  1862. "_is3DNode": false,
  1863. "_groupIndex": 0,
  1864. "groupIndex": 0,
  1865. "_id": "00ZBBWlfZL7rrk2MNE39+t"
  1866. },
  1867. {
  1868. "__type__": "cc.Node",
  1869. "_name": "slider",
  1870. "_objFlags": 0,
  1871. "_parent": {
  1872. "__id__": 35
  1873. },
  1874. "_children": [
  1875. {
  1876. "__id__": 37
  1877. },
  1878. {
  1879. "__id__": 39
  1880. }
  1881. ],
  1882. "_active": true,
  1883. "_components": [
  1884. {
  1885. "__id__": 42
  1886. }
  1887. ],
  1888. "_prefab": null,
  1889. "_opacity": 255,
  1890. "_color": {
  1891. "__type__": "cc.Color",
  1892. "r": 255,
  1893. "g": 255,
  1894. "b": 255,
  1895. "a": 255
  1896. },
  1897. "_contentSize": {
  1898. "__type__": "cc.Size",
  1899. "width": 300,
  1900. "height": 20
  1901. },
  1902. "_anchorPoint": {
  1903. "__type__": "cc.Vec2",
  1904. "x": 0.5,
  1905. "y": 0.5
  1906. },
  1907. "_trs": {
  1908. "__type__": "TypedArray",
  1909. "ctor": "Float64Array",
  1910. "array": [
  1911. -190.187,
  1912. 0,
  1913. 0,
  1914. 0,
  1915. 0,
  1916. 0,
  1917. 1,
  1918. 1,
  1919. 1,
  1920. 1
  1921. ]
  1922. },
  1923. "_eulerAngles": {
  1924. "__type__": "cc.Vec3",
  1925. "x": 0,
  1926. "y": 0,
  1927. "z": 0
  1928. },
  1929. "_skewX": 0,
  1930. "_skewY": 0,
  1931. "_is3DNode": false,
  1932. "_groupIndex": 0,
  1933. "groupIndex": 0,
  1934. "_id": "21RvlIy95HD603B2uLfUbA"
  1935. },
  1936. {
  1937. "__type__": "cc.Node",
  1938. "_name": "Background",
  1939. "_objFlags": 512,
  1940. "_parent": {
  1941. "__id__": 36
  1942. },
  1943. "_children": [],
  1944. "_active": true,
  1945. "_components": [
  1946. {
  1947. "__id__": 38
  1948. }
  1949. ],
  1950. "_prefab": null,
  1951. "_opacity": 255,
  1952. "_color": {
  1953. "__type__": "cc.Color",
  1954. "r": 255,
  1955. "g": 255,
  1956. "b": 255,
  1957. "a": 255
  1958. },
  1959. "_contentSize": {
  1960. "__type__": "cc.Size",
  1961. "width": 300,
  1962. "height": 20
  1963. },
  1964. "_anchorPoint": {
  1965. "__type__": "cc.Vec2",
  1966. "x": 0.5,
  1967. "y": 0.5
  1968. },
  1969. "_trs": {
  1970. "__type__": "TypedArray",
  1971. "ctor": "Float64Array",
  1972. "array": [
  1973. 0,
  1974. 0,
  1975. 0,
  1976. 0,
  1977. 0,
  1978. 0,
  1979. 1,
  1980. 1,
  1981. 1,
  1982. 1
  1983. ]
  1984. },
  1985. "_eulerAngles": {
  1986. "__type__": "cc.Vec3",
  1987. "x": 0,
  1988. "y": 0,
  1989. "z": 0
  1990. },
  1991. "_skewX": 0,
  1992. "_skewY": 0,
  1993. "_is3DNode": false,
  1994. "_groupIndex": 0,
  1995. "groupIndex": 0,
  1996. "_id": "dch0JxgfdDl78tmvswef5f"
  1997. },
  1998. {
  1999. "__type__": "cc.Sprite",
  2000. "_name": "",
  2001. "_objFlags": 0,
  2002. "node": {
  2003. "__id__": 37
  2004. },
  2005. "_enabled": true,
  2006. "_materials": [
  2007. {
  2008. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2009. }
  2010. ],
  2011. "_srcBlendFactor": 770,
  2012. "_dstBlendFactor": 771,
  2013. "_spriteFrame": {
  2014. "__uuid__": "31d8962d-babb-4ec7-be19-8e9f54a4ea99"
  2015. },
  2016. "_type": 1,
  2017. "_sizeMode": 0,
  2018. "_fillType": 0,
  2019. "_fillCenter": {
  2020. "__type__": "cc.Vec2",
  2021. "x": 0,
  2022. "y": 0
  2023. },
  2024. "_fillStart": 0,
  2025. "_fillRange": 0,
  2026. "_isTrimmedMode": true,
  2027. "_atlas": null,
  2028. "_id": "55iH+bwYlCPLV6EFhPabRZ"
  2029. },
  2030. {
  2031. "__type__": "cc.Node",
  2032. "_name": "Handle",
  2033. "_objFlags": 512,
  2034. "_parent": {
  2035. "__id__": 36
  2036. },
  2037. "_children": [],
  2038. "_active": true,
  2039. "_components": [
  2040. {
  2041. "__id__": 40
  2042. },
  2043. {
  2044. "__id__": 41
  2045. }
  2046. ],
  2047. "_prefab": null,
  2048. "_opacity": 255,
  2049. "_color": {
  2050. "__type__": "cc.Color",
  2051. "r": 255,
  2052. "g": 255,
  2053. "b": 255,
  2054. "a": 255
  2055. },
  2056. "_contentSize": {
  2057. "__type__": "cc.Size",
  2058. "width": 32,
  2059. "height": 32
  2060. },
  2061. "_anchorPoint": {
  2062. "__type__": "cc.Vec2",
  2063. "x": 0.5,
  2064. "y": 0.5
  2065. },
  2066. "_trs": {
  2067. "__type__": "TypedArray",
  2068. "ctor": "Float64Array",
  2069. "array": [
  2070. 0,
  2071. 0,
  2072. 0,
  2073. 0,
  2074. 0,
  2075. 0,
  2076. 1,
  2077. 1,
  2078. 1,
  2079. 1
  2080. ]
  2081. },
  2082. "_eulerAngles": {
  2083. "__type__": "cc.Vec3",
  2084. "x": 0,
  2085. "y": 0,
  2086. "z": 0
  2087. },
  2088. "_skewX": 0,
  2089. "_skewY": 0,
  2090. "_is3DNode": false,
  2091. "_groupIndex": 0,
  2092. "groupIndex": 0,
  2093. "_id": "b3b5BHPzxHfqamVI1Hi79k"
  2094. },
  2095. {
  2096. "__type__": "cc.Sprite",
  2097. "_name": "",
  2098. "_objFlags": 0,
  2099. "node": {
  2100. "__id__": 39
  2101. },
  2102. "_enabled": true,
  2103. "_materials": [
  2104. {
  2105. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2106. }
  2107. ],
  2108. "_srcBlendFactor": 770,
  2109. "_dstBlendFactor": 771,
  2110. "_spriteFrame": {
  2111. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2112. },
  2113. "_type": 1,
  2114. "_sizeMode": 2,
  2115. "_fillType": 0,
  2116. "_fillCenter": {
  2117. "__type__": "cc.Vec2",
  2118. "x": 0,
  2119. "y": 0
  2120. },
  2121. "_fillStart": 0,
  2122. "_fillRange": 0,
  2123. "_isTrimmedMode": true,
  2124. "_atlas": null,
  2125. "_id": "3azu5DSNhM/qKw7m1l+8gJ"
  2126. },
  2127. {
  2128. "__type__": "cc.Button",
  2129. "_name": "",
  2130. "_objFlags": 0,
  2131. "node": {
  2132. "__id__": 39
  2133. },
  2134. "_enabled": true,
  2135. "_normalMaterial": null,
  2136. "_grayMaterial": null,
  2137. "duration": 0.1,
  2138. "zoomScale": 1.1,
  2139. "clickEvents": [],
  2140. "_N$interactable": true,
  2141. "_N$enableAutoGrayEffect": true,
  2142. "_N$transition": 3,
  2143. "transition": 3,
  2144. "_N$normalColor": {
  2145. "__type__": "cc.Color",
  2146. "r": 255,
  2147. "g": 255,
  2148. "b": 255,
  2149. "a": 255
  2150. },
  2151. "_N$pressedColor": {
  2152. "__type__": "cc.Color",
  2153. "r": 255,
  2154. "g": 255,
  2155. "b": 255,
  2156. "a": 255
  2157. },
  2158. "pressedColor": {
  2159. "__type__": "cc.Color",
  2160. "r": 255,
  2161. "g": 255,
  2162. "b": 255,
  2163. "a": 255
  2164. },
  2165. "_N$hoverColor": {
  2166. "__type__": "cc.Color",
  2167. "r": 255,
  2168. "g": 255,
  2169. "b": 255,
  2170. "a": 255
  2171. },
  2172. "hoverColor": {
  2173. "__type__": "cc.Color",
  2174. "r": 255,
  2175. "g": 255,
  2176. "b": 255,
  2177. "a": 255
  2178. },
  2179. "_N$disabledColor": {
  2180. "__type__": "cc.Color",
  2181. "r": 255,
  2182. "g": 255,
  2183. "b": 255,
  2184. "a": 255
  2185. },
  2186. "_N$normalSprite": {
  2187. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2188. },
  2189. "_N$pressedSprite": {
  2190. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2191. },
  2192. "pressedSprite": {
  2193. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2194. },
  2195. "_N$hoverSprite": {
  2196. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2197. },
  2198. "hoverSprite": {
  2199. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2200. },
  2201. "_N$disabledSprite": {
  2202. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2203. },
  2204. "_N$target": {
  2205. "__id__": 39
  2206. },
  2207. "_id": "ect+jLFKFOarwx49H7g7US"
  2208. },
  2209. {
  2210. "__type__": "cc.Slider",
  2211. "_name": "",
  2212. "_objFlags": 0,
  2213. "node": {
  2214. "__id__": 36
  2215. },
  2216. "_enabled": true,
  2217. "direction": 0,
  2218. "slideEvents": [
  2219. {
  2220. "__id__": 43
  2221. }
  2222. ],
  2223. "_N$handle": {
  2224. "__id__": 41
  2225. },
  2226. "_N$progress": 0.5,
  2227. "_id": "eeC/+P4F5Ba7clF2f1Jd0T"
  2228. },
  2229. {
  2230. "__type__": "cc.ClickEvent",
  2231. "target": {
  2232. "__id__": 2
  2233. },
  2234. "component": "",
  2235. "_componentId": "3ba62KptSxJPoIcTrFTcDEC",
  2236. "handler": "onSlide",
  2237. "customEventData": ""
  2238. },
  2239. {
  2240. "__type__": "cc.Node",
  2241. "_name": "Label",
  2242. "_objFlags": 0,
  2243. "_parent": {
  2244. "__id__": 35
  2245. },
  2246. "_children": [],
  2247. "_active": true,
  2248. "_components": [
  2249. {
  2250. "__id__": 45
  2251. }
  2252. ],
  2253. "_prefab": null,
  2254. "_opacity": 255,
  2255. "_color": {
  2256. "__type__": "cc.Color",
  2257. "r": 255,
  2258. "g": 255,
  2259. "b": 255,
  2260. "a": 255
  2261. },
  2262. "_contentSize": {
  2263. "__type__": "cc.Size",
  2264. "width": 22.25,
  2265. "height": 50.4
  2266. },
  2267. "_anchorPoint": {
  2268. "__type__": "cc.Vec2",
  2269. "x": 0.5,
  2270. "y": 0.5
  2271. },
  2272. "_trs": {
  2273. "__type__": "TypedArray",
  2274. "ctor": "Float64Array",
  2275. "array": [
  2276. 54.428,
  2277. 0,
  2278. 0,
  2279. 0,
  2280. 0,
  2281. 0,
  2282. 1,
  2283. 1,
  2284. 1,
  2285. 1
  2286. ]
  2287. },
  2288. "_eulerAngles": {
  2289. "__type__": "cc.Vec3",
  2290. "x": 0,
  2291. "y": 0,
  2292. "z": 0
  2293. },
  2294. "_skewX": 0,
  2295. "_skewY": 0,
  2296. "_is3DNode": false,
  2297. "_groupIndex": 0,
  2298. "groupIndex": 0,
  2299. "_id": "e6eRPFOkBNXY7vMBSgGmKJ"
  2300. },
  2301. {
  2302. "__type__": "cc.Label",
  2303. "_name": "",
  2304. "_objFlags": 0,
  2305. "node": {
  2306. "__id__": 44
  2307. },
  2308. "_enabled": true,
  2309. "_materials": [
  2310. {
  2311. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2312. }
  2313. ],
  2314. "_useOriginalSize": false,
  2315. "_string": "8",
  2316. "_N$string": "8",
  2317. "_fontSize": 40,
  2318. "_lineHeight": 40,
  2319. "_enableWrapText": true,
  2320. "_N$file": null,
  2321. "_isSystemFontUsed": true,
  2322. "_spacingX": 0,
  2323. "_batchAsBitmap": false,
  2324. "_styleFlags": 0,
  2325. "_underlineHeight": 0,
  2326. "_N$horizontalAlign": 1,
  2327. "_N$verticalAlign": 1,
  2328. "_N$fontFamily": "Arial",
  2329. "_N$overflow": 0,
  2330. "_N$cacheMode": 0,
  2331. "_id": "ceykN7bwJO07k/wETy49Qw"
  2332. },
  2333. {
  2334. "__type__": "cc.Node",
  2335. "_name": "Label copy",
  2336. "_objFlags": 0,
  2337. "_parent": {
  2338. "__id__": 35
  2339. },
  2340. "_children": [],
  2341. "_active": true,
  2342. "_components": [
  2343. {
  2344. "__id__": 47
  2345. }
  2346. ],
  2347. "_prefab": null,
  2348. "_opacity": 255,
  2349. "_color": {
  2350. "__type__": "cc.Color",
  2351. "r": 255,
  2352. "g": 255,
  2353. "b": 255,
  2354. "a": 255
  2355. },
  2356. "_contentSize": {
  2357. "__type__": "cc.Size",
  2358. "width": 120,
  2359. "height": 50.4
  2360. },
  2361. "_anchorPoint": {
  2362. "__type__": "cc.Vec2",
  2363. "x": 0.5,
  2364. "y": 0.5
  2365. },
  2366. "_trs": {
  2367. "__type__": "TypedArray",
  2368. "ctor": "Float64Array",
  2369. "array": [
  2370. 193.763,
  2371. 0,
  2372. 0,
  2373. 0,
  2374. 0,
  2375. 0,
  2376. 1,
  2377. 1,
  2378. 1,
  2379. 1
  2380. ]
  2381. },
  2382. "_eulerAngles": {
  2383. "__type__": "cc.Vec3",
  2384. "x": 0,
  2385. "y": 0,
  2386. "z": 0
  2387. },
  2388. "_skewX": 0,
  2389. "_skewY": 0,
  2390. "_is3DNode": false,
  2391. "_groupIndex": 0,
  2392. "groupIndex": 0,
  2393. "_id": "f7aLak0NtCd4fXGTor9w20"
  2394. },
  2395. {
  2396. "__type__": "cc.Label",
  2397. "_name": "",
  2398. "_objFlags": 0,
  2399. "node": {
  2400. "__id__": 46
  2401. },
  2402. "_enabled": true,
  2403. "_materials": [
  2404. {
  2405. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2406. }
  2407. ],
  2408. "_useOriginalSize": false,
  2409. "_string": "灵敏值",
  2410. "_N$string": "灵敏值",
  2411. "_fontSize": 40,
  2412. "_lineHeight": 40,
  2413. "_enableWrapText": true,
  2414. "_N$file": null,
  2415. "_isSystemFontUsed": true,
  2416. "_spacingX": 0,
  2417. "_batchAsBitmap": false,
  2418. "_styleFlags": 0,
  2419. "_underlineHeight": 0,
  2420. "_N$horizontalAlign": 1,
  2421. "_N$verticalAlign": 1,
  2422. "_N$fontFamily": "Arial",
  2423. "_N$overflow": 0,
  2424. "_N$cacheMode": 0,
  2425. "_id": "e4/uDigMdBZosAVjMMYQo/"
  2426. },
  2427. {
  2428. "__type__": "cc.Node",
  2429. "_name": "limitDire",
  2430. "_objFlags": 0,
  2431. "_parent": {
  2432. "__id__": 2
  2433. },
  2434. "_children": [
  2435. {
  2436. "__id__": 49
  2437. },
  2438. {
  2439. "__id__": 57
  2440. },
  2441. {
  2442. "__id__": 59
  2443. }
  2444. ],
  2445. "_active": false,
  2446. "_components": [],
  2447. "_prefab": null,
  2448. "_opacity": 255,
  2449. "_color": {
  2450. "__type__": "cc.Color",
  2451. "r": 255,
  2452. "g": 255,
  2453. "b": 255,
  2454. "a": 255
  2455. },
  2456. "_contentSize": {
  2457. "__type__": "cc.Size",
  2458. "width": 0,
  2459. "height": 0
  2460. },
  2461. "_anchorPoint": {
  2462. "__type__": "cc.Vec2",
  2463. "x": 0.5,
  2464. "y": 0.5
  2465. },
  2466. "_trs": {
  2467. "__type__": "TypedArray",
  2468. "ctor": "Float64Array",
  2469. "array": [
  2470. 0,
  2471. 422.973,
  2472. 0,
  2473. 0,
  2474. 0,
  2475. 0,
  2476. 1,
  2477. 1,
  2478. 1,
  2479. 1
  2480. ]
  2481. },
  2482. "_eulerAngles": {
  2483. "__type__": "cc.Vec3",
  2484. "x": 0,
  2485. "y": 0,
  2486. "z": 0
  2487. },
  2488. "_skewX": 0,
  2489. "_skewY": 0,
  2490. "_is3DNode": false,
  2491. "_groupIndex": 0,
  2492. "groupIndex": 0,
  2493. "_id": "e9u3sqP49K9J17dkSbbDW5"
  2494. },
  2495. {
  2496. "__type__": "cc.Node",
  2497. "_name": "slider",
  2498. "_objFlags": 0,
  2499. "_parent": {
  2500. "__id__": 48
  2501. },
  2502. "_children": [
  2503. {
  2504. "__id__": 50
  2505. },
  2506. {
  2507. "__id__": 52
  2508. }
  2509. ],
  2510. "_active": true,
  2511. "_components": [
  2512. {
  2513. "__id__": 55
  2514. }
  2515. ],
  2516. "_prefab": null,
  2517. "_opacity": 255,
  2518. "_color": {
  2519. "__type__": "cc.Color",
  2520. "r": 255,
  2521. "g": 255,
  2522. "b": 255,
  2523. "a": 255
  2524. },
  2525. "_contentSize": {
  2526. "__type__": "cc.Size",
  2527. "width": 300,
  2528. "height": 20
  2529. },
  2530. "_anchorPoint": {
  2531. "__type__": "cc.Vec2",
  2532. "x": 0.5,
  2533. "y": 0.5
  2534. },
  2535. "_trs": {
  2536. "__type__": "TypedArray",
  2537. "ctor": "Float64Array",
  2538. "array": [
  2539. -190.187,
  2540. 0,
  2541. 0,
  2542. 0,
  2543. 0,
  2544. 0,
  2545. 1,
  2546. 1,
  2547. 1,
  2548. 1
  2549. ]
  2550. },
  2551. "_eulerAngles": {
  2552. "__type__": "cc.Vec3",
  2553. "x": 0,
  2554. "y": 0,
  2555. "z": 0
  2556. },
  2557. "_skewX": 0,
  2558. "_skewY": 0,
  2559. "_is3DNode": false,
  2560. "_groupIndex": 0,
  2561. "groupIndex": 0,
  2562. "_id": "9du9gFli5J5LazifuW2T6Z"
  2563. },
  2564. {
  2565. "__type__": "cc.Node",
  2566. "_name": "Background",
  2567. "_objFlags": 512,
  2568. "_parent": {
  2569. "__id__": 49
  2570. },
  2571. "_children": [],
  2572. "_active": true,
  2573. "_components": [
  2574. {
  2575. "__id__": 51
  2576. }
  2577. ],
  2578. "_prefab": null,
  2579. "_opacity": 255,
  2580. "_color": {
  2581. "__type__": "cc.Color",
  2582. "r": 255,
  2583. "g": 255,
  2584. "b": 255,
  2585. "a": 255
  2586. },
  2587. "_contentSize": {
  2588. "__type__": "cc.Size",
  2589. "width": 300,
  2590. "height": 20
  2591. },
  2592. "_anchorPoint": {
  2593. "__type__": "cc.Vec2",
  2594. "x": 0.5,
  2595. "y": 0.5
  2596. },
  2597. "_trs": {
  2598. "__type__": "TypedArray",
  2599. "ctor": "Float64Array",
  2600. "array": [
  2601. 0,
  2602. 0,
  2603. 0,
  2604. 0,
  2605. 0,
  2606. 0,
  2607. 1,
  2608. 1,
  2609. 1,
  2610. 1
  2611. ]
  2612. },
  2613. "_eulerAngles": {
  2614. "__type__": "cc.Vec3",
  2615. "x": 0,
  2616. "y": 0,
  2617. "z": 0
  2618. },
  2619. "_skewX": 0,
  2620. "_skewY": 0,
  2621. "_is3DNode": false,
  2622. "_groupIndex": 0,
  2623. "groupIndex": 0,
  2624. "_id": "c6/U1B3upJqocizGyw19lD"
  2625. },
  2626. {
  2627. "__type__": "cc.Sprite",
  2628. "_name": "",
  2629. "_objFlags": 0,
  2630. "node": {
  2631. "__id__": 50
  2632. },
  2633. "_enabled": true,
  2634. "_materials": [
  2635. {
  2636. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2637. }
  2638. ],
  2639. "_srcBlendFactor": 770,
  2640. "_dstBlendFactor": 771,
  2641. "_spriteFrame": {
  2642. "__uuid__": "31d8962d-babb-4ec7-be19-8e9f54a4ea99"
  2643. },
  2644. "_type": 1,
  2645. "_sizeMode": 0,
  2646. "_fillType": 0,
  2647. "_fillCenter": {
  2648. "__type__": "cc.Vec2",
  2649. "x": 0,
  2650. "y": 0
  2651. },
  2652. "_fillStart": 0,
  2653. "_fillRange": 0,
  2654. "_isTrimmedMode": true,
  2655. "_atlas": null,
  2656. "_id": "0eSZ6ykkZBIKSl+uO70ShG"
  2657. },
  2658. {
  2659. "__type__": "cc.Node",
  2660. "_name": "Handle",
  2661. "_objFlags": 512,
  2662. "_parent": {
  2663. "__id__": 49
  2664. },
  2665. "_children": [],
  2666. "_active": true,
  2667. "_components": [
  2668. {
  2669. "__id__": 53
  2670. },
  2671. {
  2672. "__id__": 54
  2673. }
  2674. ],
  2675. "_prefab": null,
  2676. "_opacity": 255,
  2677. "_color": {
  2678. "__type__": "cc.Color",
  2679. "r": 255,
  2680. "g": 255,
  2681. "b": 255,
  2682. "a": 255
  2683. },
  2684. "_contentSize": {
  2685. "__type__": "cc.Size",
  2686. "width": 32,
  2687. "height": 32
  2688. },
  2689. "_anchorPoint": {
  2690. "__type__": "cc.Vec2",
  2691. "x": 0.5,
  2692. "y": 0.5
  2693. },
  2694. "_trs": {
  2695. "__type__": "TypedArray",
  2696. "ctor": "Float64Array",
  2697. "array": [
  2698. -120,
  2699. 0,
  2700. 0,
  2701. 0,
  2702. 0,
  2703. 0,
  2704. 1,
  2705. 1,
  2706. 1,
  2707. 1
  2708. ]
  2709. },
  2710. "_eulerAngles": {
  2711. "__type__": "cc.Vec3",
  2712. "x": 0,
  2713. "y": 0,
  2714. "z": 0
  2715. },
  2716. "_skewX": 0,
  2717. "_skewY": 0,
  2718. "_is3DNode": false,
  2719. "_groupIndex": 0,
  2720. "groupIndex": 0,
  2721. "_id": "c15MwbeuNBELQzRrbmSVrJ"
  2722. },
  2723. {
  2724. "__type__": "cc.Sprite",
  2725. "_name": "",
  2726. "_objFlags": 0,
  2727. "node": {
  2728. "__id__": 52
  2729. },
  2730. "_enabled": true,
  2731. "_materials": [
  2732. {
  2733. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2734. }
  2735. ],
  2736. "_srcBlendFactor": 770,
  2737. "_dstBlendFactor": 771,
  2738. "_spriteFrame": {
  2739. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2740. },
  2741. "_type": 1,
  2742. "_sizeMode": 2,
  2743. "_fillType": 0,
  2744. "_fillCenter": {
  2745. "__type__": "cc.Vec2",
  2746. "x": 0,
  2747. "y": 0
  2748. },
  2749. "_fillStart": 0,
  2750. "_fillRange": 0,
  2751. "_isTrimmedMode": true,
  2752. "_atlas": null,
  2753. "_id": "0664/aL+tGK68kHVT1HlY2"
  2754. },
  2755. {
  2756. "__type__": "cc.Button",
  2757. "_name": "",
  2758. "_objFlags": 0,
  2759. "node": {
  2760. "__id__": 52
  2761. },
  2762. "_enabled": true,
  2763. "_normalMaterial": null,
  2764. "_grayMaterial": null,
  2765. "duration": 0.1,
  2766. "zoomScale": 1.1,
  2767. "clickEvents": [],
  2768. "_N$interactable": true,
  2769. "_N$enableAutoGrayEffect": true,
  2770. "_N$transition": 3,
  2771. "transition": 3,
  2772. "_N$normalColor": {
  2773. "__type__": "cc.Color",
  2774. "r": 255,
  2775. "g": 255,
  2776. "b": 255,
  2777. "a": 255
  2778. },
  2779. "_N$pressedColor": {
  2780. "__type__": "cc.Color",
  2781. "r": 255,
  2782. "g": 255,
  2783. "b": 255,
  2784. "a": 255
  2785. },
  2786. "pressedColor": {
  2787. "__type__": "cc.Color",
  2788. "r": 255,
  2789. "g": 255,
  2790. "b": 255,
  2791. "a": 255
  2792. },
  2793. "_N$hoverColor": {
  2794. "__type__": "cc.Color",
  2795. "r": 255,
  2796. "g": 255,
  2797. "b": 255,
  2798. "a": 255
  2799. },
  2800. "hoverColor": {
  2801. "__type__": "cc.Color",
  2802. "r": 255,
  2803. "g": 255,
  2804. "b": 255,
  2805. "a": 255
  2806. },
  2807. "_N$disabledColor": {
  2808. "__type__": "cc.Color",
  2809. "r": 255,
  2810. "g": 255,
  2811. "b": 255,
  2812. "a": 255
  2813. },
  2814. "_N$normalSprite": {
  2815. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2816. },
  2817. "_N$pressedSprite": {
  2818. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2819. },
  2820. "pressedSprite": {
  2821. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2822. },
  2823. "_N$hoverSprite": {
  2824. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2825. },
  2826. "hoverSprite": {
  2827. "__uuid__": "e7aba14b-f956-4480-b254-8d57832e273f"
  2828. },
  2829. "_N$disabledSprite": {
  2830. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2831. },
  2832. "_N$target": {
  2833. "__id__": 52
  2834. },
  2835. "_id": "77MlM9UtNIdIKaveg+mY9B"
  2836. },
  2837. {
  2838. "__type__": "cc.Slider",
  2839. "_name": "",
  2840. "_objFlags": 0,
  2841. "node": {
  2842. "__id__": 49
  2843. },
  2844. "_enabled": true,
  2845. "direction": 0,
  2846. "slideEvents": [
  2847. {
  2848. "__id__": 56
  2849. }
  2850. ],
  2851. "_N$handle": {
  2852. "__id__": 54
  2853. },
  2854. "_N$progress": 0.1,
  2855. "_id": "2aKsYh5uVA6YT9r//K/yjn"
  2856. },
  2857. {
  2858. "__type__": "cc.ClickEvent",
  2859. "target": {
  2860. "__id__": 2
  2861. },
  2862. "component": "",
  2863. "_componentId": "3ba62KptSxJPoIcTrFTcDEC",
  2864. "handler": "onSlideDirection",
  2865. "customEventData": ""
  2866. },
  2867. {
  2868. "__type__": "cc.Node",
  2869. "_name": "Label",
  2870. "_objFlags": 0,
  2871. "_parent": {
  2872. "__id__": 48
  2873. },
  2874. "_children": [],
  2875. "_active": true,
  2876. "_components": [
  2877. {
  2878. "__id__": 58
  2879. }
  2880. ],
  2881. "_prefab": null,
  2882. "_opacity": 255,
  2883. "_color": {
  2884. "__type__": "cc.Color",
  2885. "r": 255,
  2886. "g": 255,
  2887. "b": 255,
  2888. "a": 255
  2889. },
  2890. "_contentSize": {
  2891. "__type__": "cc.Size",
  2892. "width": 22.25,
  2893. "height": 50.4
  2894. },
  2895. "_anchorPoint": {
  2896. "__type__": "cc.Vec2",
  2897. "x": 0.5,
  2898. "y": 0.5
  2899. },
  2900. "_trs": {
  2901. "__type__": "TypedArray",
  2902. "ctor": "Float64Array",
  2903. "array": [
  2904. 54.428,
  2905. 0,
  2906. 0,
  2907. 0,
  2908. 0,
  2909. 0,
  2910. 1,
  2911. 1,
  2912. 1,
  2913. 1
  2914. ]
  2915. },
  2916. "_eulerAngles": {
  2917. "__type__": "cc.Vec3",
  2918. "x": 0,
  2919. "y": 0,
  2920. "z": 0
  2921. },
  2922. "_skewX": 0,
  2923. "_skewY": 0,
  2924. "_is3DNode": false,
  2925. "_groupIndex": 0,
  2926. "groupIndex": 0,
  2927. "_id": "5chsKOi9FH6LeJpECt+dOC"
  2928. },
  2929. {
  2930. "__type__": "cc.Label",
  2931. "_name": "",
  2932. "_objFlags": 0,
  2933. "node": {
  2934. "__id__": 57
  2935. },
  2936. "_enabled": true,
  2937. "_materials": [
  2938. {
  2939. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2940. }
  2941. ],
  2942. "_useOriginalSize": false,
  2943. "_string": "1",
  2944. "_N$string": "1",
  2945. "_fontSize": 40,
  2946. "_lineHeight": 40,
  2947. "_enableWrapText": true,
  2948. "_N$file": null,
  2949. "_isSystemFontUsed": true,
  2950. "_spacingX": 0,
  2951. "_batchAsBitmap": false,
  2952. "_styleFlags": 0,
  2953. "_underlineHeight": 0,
  2954. "_N$horizontalAlign": 1,
  2955. "_N$verticalAlign": 1,
  2956. "_N$fontFamily": "Arial",
  2957. "_N$overflow": 0,
  2958. "_N$cacheMode": 0,
  2959. "_id": "aaev8uL9BGS5LPu0GuAoqq"
  2960. },
  2961. {
  2962. "__type__": "cc.Node",
  2963. "_name": "Label copy",
  2964. "_objFlags": 0,
  2965. "_parent": {
  2966. "__id__": 48
  2967. },
  2968. "_children": [],
  2969. "_active": true,
  2970. "_components": [
  2971. {
  2972. "__id__": 60
  2973. }
  2974. ],
  2975. "_prefab": null,
  2976. "_opacity": 255,
  2977. "_color": {
  2978. "__type__": "cc.Color",
  2979. "r": 255,
  2980. "g": 255,
  2981. "b": 255,
  2982. "a": 255
  2983. },
  2984. "_contentSize": {
  2985. "__type__": "cc.Size",
  2986. "width": 211.11,
  2987. "height": 50.4
  2988. },
  2989. "_anchorPoint": {
  2990. "__type__": "cc.Vec2",
  2991. "x": 0.5,
  2992. "y": 0.5
  2993. },
  2994. "_trs": {
  2995. "__type__": "TypedArray",
  2996. "ctor": "Float64Array",
  2997. "array": [
  2998. 230.772,
  2999. 2.177,
  3000. 0,
  3001. 0,
  3002. 0,
  3003. 0,
  3004. 1,
  3005. 1,
  3006. 1,
  3007. 1
  3008. ]
  3009. },
  3010. "_eulerAngles": {
  3011. "__type__": "cc.Vec3",
  3012. "x": 0,
  3013. "y": 0,
  3014. "z": 0
  3015. },
  3016. "_skewX": 0,
  3017. "_skewY": 0,
  3018. "_is3DNode": false,
  3019. "_groupIndex": 0,
  3020. "groupIndex": 0,
  3021. "_id": "dc2Vksw9BKNqX2U3g589xa"
  3022. },
  3023. {
  3024. "__type__": "cc.Label",
  3025. "_name": "",
  3026. "_objFlags": 0,
  3027. "node": {
  3028. "__id__": 59
  3029. },
  3030. "_enabled": true,
  3031. "_materials": [
  3032. {
  3033. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3034. }
  3035. ],
  3036. "_useOriginalSize": false,
  3037. "_string": "角度比:z/x",
  3038. "_N$string": "角度比:z/x",
  3039. "_fontSize": 40,
  3040. "_lineHeight": 40,
  3041. "_enableWrapText": true,
  3042. "_N$file": null,
  3043. "_isSystemFontUsed": true,
  3044. "_spacingX": 0,
  3045. "_batchAsBitmap": false,
  3046. "_styleFlags": 0,
  3047. "_underlineHeight": 0,
  3048. "_N$horizontalAlign": 1,
  3049. "_N$verticalAlign": 1,
  3050. "_N$fontFamily": "Arial",
  3051. "_N$overflow": 0,
  3052. "_N$cacheMode": 0,
  3053. "_id": "38QWPKTQ5ISq5G6N+vQXex"
  3054. },
  3055. {
  3056. "__type__": "cc.Node",
  3057. "_name": "inputValue",
  3058. "_objFlags": 0,
  3059. "_parent": {
  3060. "__id__": 2
  3061. },
  3062. "_children": [
  3063. {
  3064. "__id__": 62
  3065. },
  3066. {
  3067. "__id__": 70
  3068. },
  3069. {
  3070. "__id__": 82
  3071. },
  3072. {
  3073. "__id__": 90
  3074. },
  3075. {
  3076. "__id__": 98
  3077. },
  3078. {
  3079. "__id__": 106
  3080. },
  3081. {
  3082. "__id__": 114
  3083. },
  3084. {
  3085. "__id__": 122
  3086. },
  3087. {
  3088. "__id__": 130
  3089. },
  3090. {
  3091. "__id__": 138
  3092. },
  3093. {
  3094. "__id__": 146
  3095. },
  3096. {
  3097. "__id__": 154
  3098. },
  3099. {
  3100. "__id__": 162
  3101. }
  3102. ],
  3103. "_active": true,
  3104. "_components": [],
  3105. "_prefab": null,
  3106. "_opacity": 255,
  3107. "_color": {
  3108. "__type__": "cc.Color",
  3109. "r": 255,
  3110. "g": 255,
  3111. "b": 255,
  3112. "a": 255
  3113. },
  3114. "_contentSize": {
  3115. "__type__": "cc.Size",
  3116. "width": 0,
  3117. "height": 0
  3118. },
  3119. "_anchorPoint": {
  3120. "__type__": "cc.Vec2",
  3121. "x": 0.5,
  3122. "y": 0.5
  3123. },
  3124. "_trs": {
  3125. "__type__": "TypedArray",
  3126. "ctor": "Float64Array",
  3127. "array": [
  3128. -1.126,
  3129. 405.164,
  3130. 0,
  3131. 0,
  3132. 0,
  3133. 0,
  3134. 1,
  3135. 1,
  3136. 1,
  3137. 1
  3138. ]
  3139. },
  3140. "_eulerAngles": {
  3141. "__type__": "cc.Vec3",
  3142. "x": 0,
  3143. "y": 0,
  3144. "z": 0
  3145. },
  3146. "_skewX": 0,
  3147. "_skewY": 0,
  3148. "_is3DNode": false,
  3149. "_groupIndex": 0,
  3150. "groupIndex": 0,
  3151. "_id": "df2SyszxdJlb3el3gzBeAv"
  3152. },
  3153. {
  3154. "__type__": "cc.Node",
  3155. "_name": "send",
  3156. "_objFlags": 0,
  3157. "_parent": {
  3158. "__id__": 61
  3159. },
  3160. "_children": [
  3161. {
  3162. "__id__": 63
  3163. }
  3164. ],
  3165. "_active": false,
  3166. "_components": [
  3167. {
  3168. "__id__": 68
  3169. }
  3170. ],
  3171. "_prefab": null,
  3172. "_opacity": 255,
  3173. "_color": {
  3174. "__type__": "cc.Color",
  3175. "r": 255,
  3176. "g": 255,
  3177. "b": 255,
  3178. "a": 255
  3179. },
  3180. "_contentSize": {
  3181. "__type__": "cc.Size",
  3182. "width": 100,
  3183. "height": 40
  3184. },
  3185. "_anchorPoint": {
  3186. "__type__": "cc.Vec2",
  3187. "x": 0.5,
  3188. "y": 0.5
  3189. },
  3190. "_trs": {
  3191. "__type__": "TypedArray",
  3192. "ctor": "Float64Array",
  3193. "array": [
  3194. -43.119,
  3195. 0,
  3196. 0,
  3197. 0,
  3198. 0,
  3199. 0,
  3200. 1,
  3201. 1,
  3202. 1,
  3203. 1
  3204. ]
  3205. },
  3206. "_eulerAngles": {
  3207. "__type__": "cc.Vec3",
  3208. "x": 0,
  3209. "y": 0,
  3210. "z": 0
  3211. },
  3212. "_skewX": 0,
  3213. "_skewY": 0,
  3214. "_is3DNode": false,
  3215. "_groupIndex": 0,
  3216. "groupIndex": 0,
  3217. "_id": "6aveP0gJpFt4Ji3e3lkzE2"
  3218. },
  3219. {
  3220. "__type__": "cc.Node",
  3221. "_name": "Background",
  3222. "_objFlags": 512,
  3223. "_parent": {
  3224. "__id__": 62
  3225. },
  3226. "_children": [
  3227. {
  3228. "__id__": 64
  3229. }
  3230. ],
  3231. "_active": true,
  3232. "_components": [
  3233. {
  3234. "__id__": 66
  3235. },
  3236. {
  3237. "__id__": 67
  3238. }
  3239. ],
  3240. "_prefab": null,
  3241. "_opacity": 255,
  3242. "_color": {
  3243. "__type__": "cc.Color",
  3244. "r": 255,
  3245. "g": 255,
  3246. "b": 255,
  3247. "a": 255
  3248. },
  3249. "_contentSize": {
  3250. "__type__": "cc.Size",
  3251. "width": 140,
  3252. "height": 40
  3253. },
  3254. "_anchorPoint": {
  3255. "__type__": "cc.Vec2",
  3256. "x": 0.5,
  3257. "y": 0.5
  3258. },
  3259. "_trs": {
  3260. "__type__": "TypedArray",
  3261. "ctor": "Float64Array",
  3262. "array": [
  3263. 0,
  3264. 0,
  3265. 0,
  3266. 0,
  3267. 0,
  3268. 0,
  3269. 1,
  3270. 1,
  3271. 1,
  3272. 1
  3273. ]
  3274. },
  3275. "_eulerAngles": {
  3276. "__type__": "cc.Vec3",
  3277. "x": 0,
  3278. "y": 0,
  3279. "z": 0
  3280. },
  3281. "_skewX": 0,
  3282. "_skewY": 0,
  3283. "_is3DNode": false,
  3284. "_groupIndex": 0,
  3285. "groupIndex": 0,
  3286. "_id": "dabMl+gWJG9IGycMcuOIxC"
  3287. },
  3288. {
  3289. "__type__": "cc.Node",
  3290. "_name": "Label",
  3291. "_objFlags": 512,
  3292. "_parent": {
  3293. "__id__": 63
  3294. },
  3295. "_children": [],
  3296. "_active": true,
  3297. "_components": [
  3298. {
  3299. "__id__": 65
  3300. }
  3301. ],
  3302. "_prefab": null,
  3303. "_opacity": 255,
  3304. "_color": {
  3305. "__type__": "cc.Color",
  3306. "r": 0,
  3307. "g": 0,
  3308. "b": 0,
  3309. "a": 255
  3310. },
  3311. "_contentSize": {
  3312. "__type__": "cc.Size",
  3313. "width": 140,
  3314. "height": 40
  3315. },
  3316. "_anchorPoint": {
  3317. "__type__": "cc.Vec2",
  3318. "x": 0.5,
  3319. "y": 0.5
  3320. },
  3321. "_trs": {
  3322. "__type__": "TypedArray",
  3323. "ctor": "Float64Array",
  3324. "array": [
  3325. 0,
  3326. 0,
  3327. 0,
  3328. 0,
  3329. 0,
  3330. 0,
  3331. 1,
  3332. 1,
  3333. 1,
  3334. 1
  3335. ]
  3336. },
  3337. "_eulerAngles": {
  3338. "__type__": "cc.Vec3",
  3339. "x": 0,
  3340. "y": 0,
  3341. "z": 0
  3342. },
  3343. "_skewX": 0,
  3344. "_skewY": 0,
  3345. "_is3DNode": false,
  3346. "_groupIndex": 0,
  3347. "groupIndex": 0,
  3348. "_id": "61s2Fn0lJKYbcAu7GuGzZk"
  3349. },
  3350. {
  3351. "__type__": "cc.Label",
  3352. "_name": "",
  3353. "_objFlags": 0,
  3354. "node": {
  3355. "__id__": 64
  3356. },
  3357. "_enabled": true,
  3358. "_materials": [
  3359. {
  3360. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3361. }
  3362. ],
  3363. "_useOriginalSize": false,
  3364. "_string": "发送蓝牙数据",
  3365. "_N$string": "发送蓝牙数据",
  3366. "_fontSize": 20,
  3367. "_lineHeight": 40,
  3368. "_enableWrapText": false,
  3369. "_N$file": null,
  3370. "_isSystemFontUsed": true,
  3371. "_spacingX": 0,
  3372. "_batchAsBitmap": false,
  3373. "_styleFlags": 0,
  3374. "_underlineHeight": 0,
  3375. "_N$horizontalAlign": 1,
  3376. "_N$verticalAlign": 1,
  3377. "_N$fontFamily": "Arial",
  3378. "_N$overflow": 1,
  3379. "_N$cacheMode": 1,
  3380. "_id": "18pNSL+s5KgJlee91B/TDO"
  3381. },
  3382. {
  3383. "__type__": "cc.Sprite",
  3384. "_name": "",
  3385. "_objFlags": 0,
  3386. "node": {
  3387. "__id__": 63
  3388. },
  3389. "_enabled": true,
  3390. "_materials": [
  3391. {
  3392. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3393. }
  3394. ],
  3395. "_srcBlendFactor": 770,
  3396. "_dstBlendFactor": 771,
  3397. "_spriteFrame": {
  3398. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3399. },
  3400. "_type": 1,
  3401. "_sizeMode": 0,
  3402. "_fillType": 0,
  3403. "_fillCenter": {
  3404. "__type__": "cc.Vec2",
  3405. "x": 0,
  3406. "y": 0
  3407. },
  3408. "_fillStart": 0,
  3409. "_fillRange": 0,
  3410. "_isTrimmedMode": true,
  3411. "_atlas": null,
  3412. "_id": "fbLOeKa1NNg5z91h98YKVq"
  3413. },
  3414. {
  3415. "__type__": "cc.Widget",
  3416. "_name": "",
  3417. "_objFlags": 0,
  3418. "node": {
  3419. "__id__": 63
  3420. },
  3421. "_enabled": true,
  3422. "alignMode": 0,
  3423. "_target": null,
  3424. "_alignFlags": 45,
  3425. "_left": -20,
  3426. "_right": -20,
  3427. "_top": 0,
  3428. "_bottom": 0,
  3429. "_verticalCenter": 0,
  3430. "_horizontalCenter": 0,
  3431. "_isAbsLeft": true,
  3432. "_isAbsRight": true,
  3433. "_isAbsTop": true,
  3434. "_isAbsBottom": true,
  3435. "_isAbsHorizontalCenter": true,
  3436. "_isAbsVerticalCenter": true,
  3437. "_originalWidth": 100,
  3438. "_originalHeight": 40,
  3439. "_id": "f6g/fxOKNPXrWxhGDf3gLR"
  3440. },
  3441. {
  3442. "__type__": "cc.Button",
  3443. "_name": "",
  3444. "_objFlags": 0,
  3445. "node": {
  3446. "__id__": 62
  3447. },
  3448. "_enabled": true,
  3449. "_normalMaterial": null,
  3450. "_grayMaterial": null,
  3451. "duration": 0.1,
  3452. "zoomScale": 1.2,
  3453. "clickEvents": [
  3454. {
  3455. "__id__": 69
  3456. }
  3457. ],
  3458. "_N$interactable": true,
  3459. "_N$enableAutoGrayEffect": false,
  3460. "_N$transition": 2,
  3461. "transition": 2,
  3462. "_N$normalColor": {
  3463. "__type__": "cc.Color",
  3464. "r": 230,
  3465. "g": 230,
  3466. "b": 230,
  3467. "a": 255
  3468. },
  3469. "_N$pressedColor": {
  3470. "__type__": "cc.Color",
  3471. "r": 200,
  3472. "g": 200,
  3473. "b": 200,
  3474. "a": 255
  3475. },
  3476. "pressedColor": {
  3477. "__type__": "cc.Color",
  3478. "r": 200,
  3479. "g": 200,
  3480. "b": 200,
  3481. "a": 255
  3482. },
  3483. "_N$hoverColor": {
  3484. "__type__": "cc.Color",
  3485. "r": 255,
  3486. "g": 255,
  3487. "b": 255,
  3488. "a": 255
  3489. },
  3490. "hoverColor": {
  3491. "__type__": "cc.Color",
  3492. "r": 255,
  3493. "g": 255,
  3494. "b": 255,
  3495. "a": 255
  3496. },
  3497. "_N$disabledColor": {
  3498. "__type__": "cc.Color",
  3499. "r": 120,
  3500. "g": 120,
  3501. "b": 120,
  3502. "a": 200
  3503. },
  3504. "_N$normalSprite": {
  3505. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3506. },
  3507. "_N$pressedSprite": {
  3508. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3509. },
  3510. "pressedSprite": {
  3511. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3512. },
  3513. "_N$hoverSprite": {
  3514. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3515. },
  3516. "hoverSprite": {
  3517. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3518. },
  3519. "_N$disabledSprite": {
  3520. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3521. },
  3522. "_N$target": {
  3523. "__id__": 63
  3524. },
  3525. "_id": "d71W/Nd1VPkI7zXcsZBSLl"
  3526. },
  3527. {
  3528. "__type__": "cc.ClickEvent",
  3529. "target": {
  3530. "__id__": 2
  3531. },
  3532. "component": "",
  3533. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  3534. "handler": "onSendWriteBLEData",
  3535. "customEventData": ""
  3536. },
  3537. {
  3538. "__type__": "cc.Node",
  3539. "_name": "BLEValue",
  3540. "_objFlags": 0,
  3541. "_parent": {
  3542. "__id__": 61
  3543. },
  3544. "_children": [
  3545. {
  3546. "__id__": 71
  3547. },
  3548. {
  3549. "__id__": 74
  3550. },
  3551. {
  3552. "__id__": 77
  3553. }
  3554. ],
  3555. "_active": false,
  3556. "_components": [
  3557. {
  3558. "__id__": 80
  3559. }
  3560. ],
  3561. "_prefab": null,
  3562. "_opacity": 255,
  3563. "_color": {
  3564. "__type__": "cc.Color",
  3565. "r": 255,
  3566. "g": 255,
  3567. "b": 255,
  3568. "a": 255
  3569. },
  3570. "_contentSize": {
  3571. "__type__": "cc.Size",
  3572. "width": 160,
  3573. "height": 40
  3574. },
  3575. "_anchorPoint": {
  3576. "__type__": "cc.Vec2",
  3577. "x": 0.5,
  3578. "y": 0.5
  3579. },
  3580. "_trs": {
  3581. "__type__": "TypedArray",
  3582. "ctor": "Float64Array",
  3583. "array": [
  3584. -203.614,
  3585. 0,
  3586. 0,
  3587. 0,
  3588. 0,
  3589. 0,
  3590. 1,
  3591. 1,
  3592. 1,
  3593. 1
  3594. ]
  3595. },
  3596. "_eulerAngles": {
  3597. "__type__": "cc.Vec3",
  3598. "x": 0,
  3599. "y": 0,
  3600. "z": 0
  3601. },
  3602. "_skewX": 0,
  3603. "_skewY": 0,
  3604. "_is3DNode": false,
  3605. "_groupIndex": 0,
  3606. "groupIndex": 0,
  3607. "_id": "02ifRxcKlDAIaBgxGc76q0"
  3608. },
  3609. {
  3610. "__type__": "cc.Node",
  3611. "_name": "BACKGROUND_SPRITE",
  3612. "_objFlags": 512,
  3613. "_parent": {
  3614. "__id__": 70
  3615. },
  3616. "_children": [],
  3617. "_active": true,
  3618. "_components": [
  3619. {
  3620. "__id__": 72
  3621. },
  3622. {
  3623. "__id__": 73
  3624. }
  3625. ],
  3626. "_prefab": null,
  3627. "_opacity": 255,
  3628. "_color": {
  3629. "__type__": "cc.Color",
  3630. "r": 255,
  3631. "g": 255,
  3632. "b": 255,
  3633. "a": 255
  3634. },
  3635. "_contentSize": {
  3636. "__type__": "cc.Size",
  3637. "width": 160,
  3638. "height": 40
  3639. },
  3640. "_anchorPoint": {
  3641. "__type__": "cc.Vec2",
  3642. "x": 0.5,
  3643. "y": 0.5
  3644. },
  3645. "_trs": {
  3646. "__type__": "TypedArray",
  3647. "ctor": "Float64Array",
  3648. "array": [
  3649. 0,
  3650. 0,
  3651. 0,
  3652. 0,
  3653. 0,
  3654. 0,
  3655. 1,
  3656. 1,
  3657. 1,
  3658. 1
  3659. ]
  3660. },
  3661. "_eulerAngles": {
  3662. "__type__": "cc.Vec3",
  3663. "x": 0,
  3664. "y": 0,
  3665. "z": 0
  3666. },
  3667. "_skewX": 0,
  3668. "_skewY": 0,
  3669. "_is3DNode": false,
  3670. "_groupIndex": 0,
  3671. "groupIndex": 0,
  3672. "_id": "feJ1LvmYJGw5OBdOG5w2QK"
  3673. },
  3674. {
  3675. "__type__": "cc.Sprite",
  3676. "_name": "",
  3677. "_objFlags": 0,
  3678. "node": {
  3679. "__id__": 71
  3680. },
  3681. "_enabled": true,
  3682. "_materials": [
  3683. {
  3684. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3685. }
  3686. ],
  3687. "_srcBlendFactor": 770,
  3688. "_dstBlendFactor": 771,
  3689. "_spriteFrame": {
  3690. "__uuid__": "ff0e91c7-55c6-4086-a39f-cb6e457b8c3b"
  3691. },
  3692. "_type": 1,
  3693. "_sizeMode": 0,
  3694. "_fillType": 0,
  3695. "_fillCenter": {
  3696. "__type__": "cc.Vec2",
  3697. "x": 0,
  3698. "y": 0
  3699. },
  3700. "_fillStart": 0,
  3701. "_fillRange": 0,
  3702. "_isTrimmedMode": true,
  3703. "_atlas": null,
  3704. "_id": "9fcJ5F+hhBcIPfemYez2u6"
  3705. },
  3706. {
  3707. "__type__": "cc.Widget",
  3708. "_name": "",
  3709. "_objFlags": 0,
  3710. "node": {
  3711. "__id__": 71
  3712. },
  3713. "_enabled": true,
  3714. "alignMode": 0,
  3715. "_target": null,
  3716. "_alignFlags": 45,
  3717. "_left": 0,
  3718. "_right": 0,
  3719. "_top": 0,
  3720. "_bottom": 0,
  3721. "_verticalCenter": 0,
  3722. "_horizontalCenter": 0,
  3723. "_isAbsLeft": true,
  3724. "_isAbsRight": true,
  3725. "_isAbsTop": true,
  3726. "_isAbsBottom": true,
  3727. "_isAbsHorizontalCenter": true,
  3728. "_isAbsVerticalCenter": true,
  3729. "_originalWidth": 160,
  3730. "_originalHeight": 40,
  3731. "_id": "58W35XB+dH8Jdxh1IDHYWh"
  3732. },
  3733. {
  3734. "__type__": "cc.Node",
  3735. "_name": "TEXT_LABEL",
  3736. "_objFlags": 512,
  3737. "_parent": {
  3738. "__id__": 70
  3739. },
  3740. "_children": [],
  3741. "_active": false,
  3742. "_components": [
  3743. {
  3744. "__id__": 75
  3745. },
  3746. {
  3747. "__id__": 76
  3748. }
  3749. ],
  3750. "_prefab": null,
  3751. "_opacity": 255,
  3752. "_color": {
  3753. "__type__": "cc.Color",
  3754. "r": 255,
  3755. "g": 255,
  3756. "b": 255,
  3757. "a": 255
  3758. },
  3759. "_contentSize": {
  3760. "__type__": "cc.Size",
  3761. "width": 158,
  3762. "height": 40
  3763. },
  3764. "_anchorPoint": {
  3765. "__type__": "cc.Vec2",
  3766. "x": 0,
  3767. "y": 1
  3768. },
  3769. "_trs": {
  3770. "__type__": "TypedArray",
  3771. "ctor": "Float64Array",
  3772. "array": [
  3773. -78,
  3774. 20,
  3775. 0,
  3776. 0,
  3777. 0,
  3778. 0,
  3779. 1,
  3780. 1,
  3781. 1,
  3782. 1
  3783. ]
  3784. },
  3785. "_eulerAngles": {
  3786. "__type__": "cc.Vec3",
  3787. "x": 0,
  3788. "y": 0,
  3789. "z": 0
  3790. },
  3791. "_skewX": 0,
  3792. "_skewY": 0,
  3793. "_is3DNode": false,
  3794. "_groupIndex": 0,
  3795. "groupIndex": 0,
  3796. "_id": "carnoWkCREX4tEJwOPh/Q3"
  3797. },
  3798. {
  3799. "__type__": "cc.Label",
  3800. "_name": "",
  3801. "_objFlags": 0,
  3802. "node": {
  3803. "__id__": 74
  3804. },
  3805. "_enabled": true,
  3806. "_materials": [],
  3807. "_useOriginalSize": true,
  3808. "_string": "",
  3809. "_N$string": "",
  3810. "_fontSize": 20,
  3811. "_lineHeight": 25,
  3812. "_enableWrapText": false,
  3813. "_N$file": null,
  3814. "_isSystemFontUsed": true,
  3815. "_spacingX": 0,
  3816. "_batchAsBitmap": false,
  3817. "_styleFlags": 0,
  3818. "_underlineHeight": 0,
  3819. "_N$horizontalAlign": 0,
  3820. "_N$verticalAlign": 1,
  3821. "_N$fontFamily": "Arial",
  3822. "_N$overflow": 1,
  3823. "_N$cacheMode": 0,
  3824. "_id": "e8C14HnBBOnLHWUoTjJtKj"
  3825. },
  3826. {
  3827. "__type__": "cc.Widget",
  3828. "_name": "",
  3829. "_objFlags": 0,
  3830. "node": {
  3831. "__id__": 74
  3832. },
  3833. "_enabled": true,
  3834. "alignMode": 0,
  3835. "_target": null,
  3836. "_alignFlags": 45,
  3837. "_left": 2,
  3838. "_right": 0,
  3839. "_top": 0,
  3840. "_bottom": 0,
  3841. "_verticalCenter": 0,
  3842. "_horizontalCenter": 0,
  3843. "_isAbsLeft": true,
  3844. "_isAbsRight": true,
  3845. "_isAbsTop": true,
  3846. "_isAbsBottom": true,
  3847. "_isAbsHorizontalCenter": true,
  3848. "_isAbsVerticalCenter": true,
  3849. "_originalWidth": 158,
  3850. "_originalHeight": 40,
  3851. "_id": "91YenY+3VC0YNbaLxZ/44k"
  3852. },
  3853. {
  3854. "__type__": "cc.Node",
  3855. "_name": "PLACEHOLDER_LABEL",
  3856. "_objFlags": 512,
  3857. "_parent": {
  3858. "__id__": 70
  3859. },
  3860. "_children": [],
  3861. "_active": true,
  3862. "_components": [
  3863. {
  3864. "__id__": 78
  3865. },
  3866. {
  3867. "__id__": 79
  3868. }
  3869. ],
  3870. "_prefab": null,
  3871. "_opacity": 255,
  3872. "_color": {
  3873. "__type__": "cc.Color",
  3874. "r": 187,
  3875. "g": 187,
  3876. "b": 187,
  3877. "a": 255
  3878. },
  3879. "_contentSize": {
  3880. "__type__": "cc.Size",
  3881. "width": 158,
  3882. "height": 40
  3883. },
  3884. "_anchorPoint": {
  3885. "__type__": "cc.Vec2",
  3886. "x": 0,
  3887. "y": 1
  3888. },
  3889. "_trs": {
  3890. "__type__": "TypedArray",
  3891. "ctor": "Float64Array",
  3892. "array": [
  3893. -78,
  3894. 20,
  3895. 0,
  3896. 0,
  3897. 0,
  3898. 0,
  3899. 1,
  3900. 1,
  3901. 1,
  3902. 1
  3903. ]
  3904. },
  3905. "_eulerAngles": {
  3906. "__type__": "cc.Vec3",
  3907. "x": 0,
  3908. "y": 0,
  3909. "z": 0
  3910. },
  3911. "_skewX": 0,
  3912. "_skewY": 0,
  3913. "_is3DNode": false,
  3914. "_groupIndex": 0,
  3915. "groupIndex": 0,
  3916. "_id": "4crmU2qVJED6G0xcuRFtB1"
  3917. },
  3918. {
  3919. "__type__": "cc.Label",
  3920. "_name": "",
  3921. "_objFlags": 0,
  3922. "node": {
  3923. "__id__": 77
  3924. },
  3925. "_enabled": true,
  3926. "_materials": [
  3927. {
  3928. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3929. }
  3930. ],
  3931. "_useOriginalSize": true,
  3932. "_string": "输入指令",
  3933. "_N$string": "输入指令",
  3934. "_fontSize": 20,
  3935. "_lineHeight": 25,
  3936. "_enableWrapText": false,
  3937. "_N$file": null,
  3938. "_isSystemFontUsed": true,
  3939. "_spacingX": 0,
  3940. "_batchAsBitmap": false,
  3941. "_styleFlags": 0,
  3942. "_underlineHeight": 0,
  3943. "_N$horizontalAlign": 0,
  3944. "_N$verticalAlign": 1,
  3945. "_N$fontFamily": "Arial",
  3946. "_N$overflow": 1,
  3947. "_N$cacheMode": 0,
  3948. "_id": "53agtdB9BGXaRUrOjYYTmV"
  3949. },
  3950. {
  3951. "__type__": "cc.Widget",
  3952. "_name": "",
  3953. "_objFlags": 0,
  3954. "node": {
  3955. "__id__": 77
  3956. },
  3957. "_enabled": true,
  3958. "alignMode": 0,
  3959. "_target": null,
  3960. "_alignFlags": 45,
  3961. "_left": 2,
  3962. "_right": 0,
  3963. "_top": 0,
  3964. "_bottom": 0,
  3965. "_verticalCenter": 0,
  3966. "_horizontalCenter": 0,
  3967. "_isAbsLeft": true,
  3968. "_isAbsRight": true,
  3969. "_isAbsTop": true,
  3970. "_isAbsBottom": true,
  3971. "_isAbsHorizontalCenter": true,
  3972. "_isAbsVerticalCenter": true,
  3973. "_originalWidth": 158,
  3974. "_originalHeight": 40,
  3975. "_id": "934+LoQllDgo9ktFasJyO+"
  3976. },
  3977. {
  3978. "__type__": "cc.EditBox",
  3979. "_name": "",
  3980. "_objFlags": 0,
  3981. "node": {
  3982. "__id__": 70
  3983. },
  3984. "_enabled": true,
  3985. "_useOriginalSize": false,
  3986. "_string": "",
  3987. "returnType": 0,
  3988. "maxLength": 8,
  3989. "_tabIndex": 0,
  3990. "editingDidBegan": [],
  3991. "textChanged": [
  3992. {
  3993. "__id__": 81
  3994. }
  3995. ],
  3996. "editingDidEnded": [],
  3997. "editingReturn": [],
  3998. "_N$textLabel": {
  3999. "__id__": 75
  4000. },
  4001. "_N$placeholderLabel": {
  4002. "__id__": 78
  4003. },
  4004. "_N$background": {
  4005. "__id__": 72
  4006. },
  4007. "_N$inputFlag": 5,
  4008. "_N$inputMode": 6,
  4009. "_N$stayOnTop": false,
  4010. "_id": "eacX47kdBGD7kzkgTuMfqB"
  4011. },
  4012. {
  4013. "__type__": "cc.ClickEvent",
  4014. "target": {
  4015. "__id__": 2
  4016. },
  4017. "component": "",
  4018. "_componentId": "3ba62KptSxJPoIcTrFTcDEC",
  4019. "handler": "onWriteValueChange",
  4020. "customEventData": ""
  4021. },
  4022. {
  4023. "__type__": "cc.Node",
  4024. "_name": "3",
  4025. "_objFlags": 0,
  4026. "_parent": {
  4027. "__id__": 61
  4028. },
  4029. "_children": [
  4030. {
  4031. "__id__": 83
  4032. }
  4033. ],
  4034. "_active": true,
  4035. "_components": [
  4036. {
  4037. "__id__": 88
  4038. }
  4039. ],
  4040. "_prefab": null,
  4041. "_opacity": 255,
  4042. "_color": {
  4043. "__type__": "cc.Color",
  4044. "r": 255,
  4045. "g": 255,
  4046. "b": 255,
  4047. "a": 255
  4048. },
  4049. "_contentSize": {
  4050. "__type__": "cc.Size",
  4051. "width": 100,
  4052. "height": 40
  4053. },
  4054. "_anchorPoint": {
  4055. "__type__": "cc.Vec2",
  4056. "x": 0.5,
  4057. "y": 0.5
  4058. },
  4059. "_trs": {
  4060. "__type__": "TypedArray",
  4061. "ctor": "Float64Array",
  4062. "array": [
  4063. -260,
  4064. 166.092,
  4065. 0,
  4066. 0,
  4067. 0,
  4068. 0,
  4069. 1,
  4070. 1.2,
  4071. 1.2,
  4072. 1
  4073. ]
  4074. },
  4075. "_eulerAngles": {
  4076. "__type__": "cc.Vec3",
  4077. "x": 0,
  4078. "y": 0,
  4079. "z": 0
  4080. },
  4081. "_skewX": 0,
  4082. "_skewY": 0,
  4083. "_is3DNode": false,
  4084. "_groupIndex": 0,
  4085. "groupIndex": 0,
  4086. "_id": "3dPakUaQNOLpGjBTD0jcxm"
  4087. },
  4088. {
  4089. "__type__": "cc.Node",
  4090. "_name": "Background",
  4091. "_objFlags": 512,
  4092. "_parent": {
  4093. "__id__": 82
  4094. },
  4095. "_children": [
  4096. {
  4097. "__id__": 84
  4098. }
  4099. ],
  4100. "_active": true,
  4101. "_components": [
  4102. {
  4103. "__id__": 86
  4104. },
  4105. {
  4106. "__id__": 87
  4107. }
  4108. ],
  4109. "_prefab": null,
  4110. "_opacity": 255,
  4111. "_color": {
  4112. "__type__": "cc.Color",
  4113. "r": 255,
  4114. "g": 255,
  4115. "b": 255,
  4116. "a": 255
  4117. },
  4118. "_contentSize": {
  4119. "__type__": "cc.Size",
  4120. "width": 100,
  4121. "height": 40
  4122. },
  4123. "_anchorPoint": {
  4124. "__type__": "cc.Vec2",
  4125. "x": 0.5,
  4126. "y": 0.5
  4127. },
  4128. "_trs": {
  4129. "__type__": "TypedArray",
  4130. "ctor": "Float64Array",
  4131. "array": [
  4132. 0,
  4133. 0,
  4134. 0,
  4135. 0,
  4136. 0,
  4137. 0,
  4138. 1,
  4139. 1,
  4140. 1,
  4141. 1
  4142. ]
  4143. },
  4144. "_eulerAngles": {
  4145. "__type__": "cc.Vec3",
  4146. "x": 0,
  4147. "y": 0,
  4148. "z": 0
  4149. },
  4150. "_skewX": 0,
  4151. "_skewY": 0,
  4152. "_is3DNode": false,
  4153. "_groupIndex": 0,
  4154. "groupIndex": 0,
  4155. "_id": "19J45k+qRCjbGuJzAdqTnS"
  4156. },
  4157. {
  4158. "__type__": "cc.Node",
  4159. "_name": "Label",
  4160. "_objFlags": 512,
  4161. "_parent": {
  4162. "__id__": 83
  4163. },
  4164. "_children": [],
  4165. "_active": true,
  4166. "_components": [
  4167. {
  4168. "__id__": 85
  4169. }
  4170. ],
  4171. "_prefab": null,
  4172. "_opacity": 255,
  4173. "_color": {
  4174. "__type__": "cc.Color",
  4175. "r": 0,
  4176. "g": 0,
  4177. "b": 0,
  4178. "a": 255
  4179. },
  4180. "_contentSize": {
  4181. "__type__": "cc.Size",
  4182. "width": 100,
  4183. "height": 40
  4184. },
  4185. "_anchorPoint": {
  4186. "__type__": "cc.Vec2",
  4187. "x": 0.5,
  4188. "y": 0.5
  4189. },
  4190. "_trs": {
  4191. "__type__": "TypedArray",
  4192. "ctor": "Float64Array",
  4193. "array": [
  4194. 0,
  4195. 0,
  4196. 0,
  4197. 0,
  4198. 0,
  4199. 0,
  4200. 1,
  4201. 1,
  4202. 1,
  4203. 1
  4204. ]
  4205. },
  4206. "_eulerAngles": {
  4207. "__type__": "cc.Vec3",
  4208. "x": 0,
  4209. "y": 0,
  4210. "z": 0
  4211. },
  4212. "_skewX": 0,
  4213. "_skewY": 0,
  4214. "_is3DNode": false,
  4215. "_groupIndex": 0,
  4216. "groupIndex": 0,
  4217. "_id": "8eJkwA6dtLt6CLTsHPDwem"
  4218. },
  4219. {
  4220. "__type__": "cc.Label",
  4221. "_name": "",
  4222. "_objFlags": 0,
  4223. "node": {
  4224. "__id__": 84
  4225. },
  4226. "_enabled": true,
  4227. "_materials": [
  4228. {
  4229. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4230. }
  4231. ],
  4232. "_useOriginalSize": false,
  4233. "_string": "指令3",
  4234. "_N$string": "指令3",
  4235. "_fontSize": 20,
  4236. "_lineHeight": 40,
  4237. "_enableWrapText": false,
  4238. "_N$file": null,
  4239. "_isSystemFontUsed": true,
  4240. "_spacingX": 0,
  4241. "_batchAsBitmap": false,
  4242. "_styleFlags": 0,
  4243. "_underlineHeight": 0,
  4244. "_N$horizontalAlign": 1,
  4245. "_N$verticalAlign": 1,
  4246. "_N$fontFamily": "Arial",
  4247. "_N$overflow": 1,
  4248. "_N$cacheMode": 1,
  4249. "_id": "c5pwCrj7hKm6qHWFFGYjr/"
  4250. },
  4251. {
  4252. "__type__": "cc.Sprite",
  4253. "_name": "",
  4254. "_objFlags": 0,
  4255. "node": {
  4256. "__id__": 83
  4257. },
  4258. "_enabled": true,
  4259. "_materials": [
  4260. {
  4261. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4262. }
  4263. ],
  4264. "_srcBlendFactor": 770,
  4265. "_dstBlendFactor": 771,
  4266. "_spriteFrame": {
  4267. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4268. },
  4269. "_type": 1,
  4270. "_sizeMode": 0,
  4271. "_fillType": 0,
  4272. "_fillCenter": {
  4273. "__type__": "cc.Vec2",
  4274. "x": 0,
  4275. "y": 0
  4276. },
  4277. "_fillStart": 0,
  4278. "_fillRange": 0,
  4279. "_isTrimmedMode": true,
  4280. "_atlas": null,
  4281. "_id": "e0KPYu9flOo4SP5GOI4uL9"
  4282. },
  4283. {
  4284. "__type__": "cc.Widget",
  4285. "_name": "",
  4286. "_objFlags": 0,
  4287. "node": {
  4288. "__id__": 83
  4289. },
  4290. "_enabled": true,
  4291. "alignMode": 0,
  4292. "_target": null,
  4293. "_alignFlags": 45,
  4294. "_left": 0,
  4295. "_right": 0,
  4296. "_top": 0,
  4297. "_bottom": 0,
  4298. "_verticalCenter": 0,
  4299. "_horizontalCenter": 0,
  4300. "_isAbsLeft": true,
  4301. "_isAbsRight": true,
  4302. "_isAbsTop": true,
  4303. "_isAbsBottom": true,
  4304. "_isAbsHorizontalCenter": true,
  4305. "_isAbsVerticalCenter": true,
  4306. "_originalWidth": 100,
  4307. "_originalHeight": 40,
  4308. "_id": "c3xxa+j/hDz4SFcJYBPZ60"
  4309. },
  4310. {
  4311. "__type__": "cc.Button",
  4312. "_name": "",
  4313. "_objFlags": 0,
  4314. "node": {
  4315. "__id__": 82
  4316. },
  4317. "_enabled": true,
  4318. "_normalMaterial": {
  4319. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4320. },
  4321. "_grayMaterial": null,
  4322. "duration": 0.1,
  4323. "zoomScale": 1.2,
  4324. "clickEvents": [
  4325. {
  4326. "__id__": 89
  4327. }
  4328. ],
  4329. "_N$interactable": true,
  4330. "_N$enableAutoGrayEffect": false,
  4331. "_N$transition": 2,
  4332. "transition": 2,
  4333. "_N$normalColor": {
  4334. "__type__": "cc.Color",
  4335. "r": 230,
  4336. "g": 230,
  4337. "b": 230,
  4338. "a": 255
  4339. },
  4340. "_N$pressedColor": {
  4341. "__type__": "cc.Color",
  4342. "r": 200,
  4343. "g": 200,
  4344. "b": 200,
  4345. "a": 255
  4346. },
  4347. "pressedColor": {
  4348. "__type__": "cc.Color",
  4349. "r": 200,
  4350. "g": 200,
  4351. "b": 200,
  4352. "a": 255
  4353. },
  4354. "_N$hoverColor": {
  4355. "__type__": "cc.Color",
  4356. "r": 255,
  4357. "g": 255,
  4358. "b": 255,
  4359. "a": 255
  4360. },
  4361. "hoverColor": {
  4362. "__type__": "cc.Color",
  4363. "r": 255,
  4364. "g": 255,
  4365. "b": 255,
  4366. "a": 255
  4367. },
  4368. "_N$disabledColor": {
  4369. "__type__": "cc.Color",
  4370. "r": 120,
  4371. "g": 120,
  4372. "b": 120,
  4373. "a": 200
  4374. },
  4375. "_N$normalSprite": {
  4376. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4377. },
  4378. "_N$pressedSprite": {
  4379. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4380. },
  4381. "pressedSprite": {
  4382. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4383. },
  4384. "_N$hoverSprite": {
  4385. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4386. },
  4387. "hoverSprite": {
  4388. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4389. },
  4390. "_N$disabledSprite": {
  4391. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4392. },
  4393. "_N$target": {
  4394. "__id__": 83
  4395. },
  4396. "_id": "42EONVsSFNkqQSziyYPCNU"
  4397. },
  4398. {
  4399. "__type__": "cc.ClickEvent",
  4400. "target": {
  4401. "__id__": 2
  4402. },
  4403. "component": "",
  4404. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  4405. "handler": "onSendWriteBLEDataValue",
  4406. "customEventData": "3"
  4407. },
  4408. {
  4409. "__type__": "cc.Node",
  4410. "_name": "5",
  4411. "_objFlags": 0,
  4412. "_parent": {
  4413. "__id__": 61
  4414. },
  4415. "_children": [
  4416. {
  4417. "__id__": 91
  4418. }
  4419. ],
  4420. "_active": true,
  4421. "_components": [
  4422. {
  4423. "__id__": 96
  4424. }
  4425. ],
  4426. "_prefab": null,
  4427. "_opacity": 255,
  4428. "_color": {
  4429. "__type__": "cc.Color",
  4430. "r": 255,
  4431. "g": 255,
  4432. "b": 255,
  4433. "a": 255
  4434. },
  4435. "_contentSize": {
  4436. "__type__": "cc.Size",
  4437. "width": 100,
  4438. "height": 40
  4439. },
  4440. "_anchorPoint": {
  4441. "__type__": "cc.Vec2",
  4442. "x": 0.5,
  4443. "y": 0.5
  4444. },
  4445. "_trs": {
  4446. "__type__": "TypedArray",
  4447. "ctor": "Float64Array",
  4448. "array": [
  4449. -62.284,
  4450. -927.444,
  4451. 0,
  4452. 0,
  4453. 0,
  4454. 0,
  4455. 1,
  4456. 1.2,
  4457. 1.2,
  4458. 1
  4459. ]
  4460. },
  4461. "_eulerAngles": {
  4462. "__type__": "cc.Vec3",
  4463. "x": 0,
  4464. "y": 0,
  4465. "z": 0
  4466. },
  4467. "_skewX": 0,
  4468. "_skewY": 0,
  4469. "_is3DNode": false,
  4470. "_groupIndex": 0,
  4471. "groupIndex": 0,
  4472. "_id": "c8WCb29HlJgbVWtXRNURJt"
  4473. },
  4474. {
  4475. "__type__": "cc.Node",
  4476. "_name": "Background",
  4477. "_objFlags": 512,
  4478. "_parent": {
  4479. "__id__": 90
  4480. },
  4481. "_children": [
  4482. {
  4483. "__id__": 92
  4484. }
  4485. ],
  4486. "_active": true,
  4487. "_components": [
  4488. {
  4489. "__id__": 94
  4490. },
  4491. {
  4492. "__id__": 95
  4493. }
  4494. ],
  4495. "_prefab": null,
  4496. "_opacity": 255,
  4497. "_color": {
  4498. "__type__": "cc.Color",
  4499. "r": 255,
  4500. "g": 255,
  4501. "b": 255,
  4502. "a": 255
  4503. },
  4504. "_contentSize": {
  4505. "__type__": "cc.Size",
  4506. "width": 100,
  4507. "height": 40
  4508. },
  4509. "_anchorPoint": {
  4510. "__type__": "cc.Vec2",
  4511. "x": 0.5,
  4512. "y": 0.5
  4513. },
  4514. "_trs": {
  4515. "__type__": "TypedArray",
  4516. "ctor": "Float64Array",
  4517. "array": [
  4518. 0,
  4519. 0,
  4520. 0,
  4521. 0,
  4522. 0,
  4523. 0,
  4524. 1,
  4525. 1,
  4526. 1,
  4527. 1
  4528. ]
  4529. },
  4530. "_eulerAngles": {
  4531. "__type__": "cc.Vec3",
  4532. "x": 0,
  4533. "y": 0,
  4534. "z": 0
  4535. },
  4536. "_skewX": 0,
  4537. "_skewY": 0,
  4538. "_is3DNode": false,
  4539. "_groupIndex": 0,
  4540. "groupIndex": 0,
  4541. "_id": "daMt1xo09FaKfdL6Ux2p/z"
  4542. },
  4543. {
  4544. "__type__": "cc.Node",
  4545. "_name": "Label",
  4546. "_objFlags": 512,
  4547. "_parent": {
  4548. "__id__": 91
  4549. },
  4550. "_children": [],
  4551. "_active": true,
  4552. "_components": [
  4553. {
  4554. "__id__": 93
  4555. }
  4556. ],
  4557. "_prefab": null,
  4558. "_opacity": 255,
  4559. "_color": {
  4560. "__type__": "cc.Color",
  4561. "r": 0,
  4562. "g": 0,
  4563. "b": 0,
  4564. "a": 255
  4565. },
  4566. "_contentSize": {
  4567. "__type__": "cc.Size",
  4568. "width": 100,
  4569. "height": 40
  4570. },
  4571. "_anchorPoint": {
  4572. "__type__": "cc.Vec2",
  4573. "x": 0.5,
  4574. "y": 0.5
  4575. },
  4576. "_trs": {
  4577. "__type__": "TypedArray",
  4578. "ctor": "Float64Array",
  4579. "array": [
  4580. 0,
  4581. 0,
  4582. 0,
  4583. 0,
  4584. 0,
  4585. 0,
  4586. 1,
  4587. 1,
  4588. 1,
  4589. 1
  4590. ]
  4591. },
  4592. "_eulerAngles": {
  4593. "__type__": "cc.Vec3",
  4594. "x": 0,
  4595. "y": 0,
  4596. "z": 0
  4597. },
  4598. "_skewX": 0,
  4599. "_skewY": 0,
  4600. "_is3DNode": false,
  4601. "_groupIndex": 0,
  4602. "groupIndex": 0,
  4603. "_id": "6fjltdrppLXY14rODcURQH"
  4604. },
  4605. {
  4606. "__type__": "cc.Label",
  4607. "_name": "",
  4608. "_objFlags": 0,
  4609. "node": {
  4610. "__id__": 92
  4611. },
  4612. "_enabled": true,
  4613. "_materials": [
  4614. {
  4615. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4616. }
  4617. ],
  4618. "_useOriginalSize": false,
  4619. "_string": "指令5",
  4620. "_N$string": "指令5",
  4621. "_fontSize": 20,
  4622. "_lineHeight": 40,
  4623. "_enableWrapText": false,
  4624. "_N$file": null,
  4625. "_isSystemFontUsed": true,
  4626. "_spacingX": 0,
  4627. "_batchAsBitmap": false,
  4628. "_styleFlags": 0,
  4629. "_underlineHeight": 0,
  4630. "_N$horizontalAlign": 1,
  4631. "_N$verticalAlign": 1,
  4632. "_N$fontFamily": "Arial",
  4633. "_N$overflow": 1,
  4634. "_N$cacheMode": 1,
  4635. "_id": "74+ahBOGxOB79xvmZvFeub"
  4636. },
  4637. {
  4638. "__type__": "cc.Sprite",
  4639. "_name": "",
  4640. "_objFlags": 0,
  4641. "node": {
  4642. "__id__": 91
  4643. },
  4644. "_enabled": true,
  4645. "_materials": [
  4646. {
  4647. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4648. }
  4649. ],
  4650. "_srcBlendFactor": 770,
  4651. "_dstBlendFactor": 771,
  4652. "_spriteFrame": {
  4653. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4654. },
  4655. "_type": 1,
  4656. "_sizeMode": 0,
  4657. "_fillType": 0,
  4658. "_fillCenter": {
  4659. "__type__": "cc.Vec2",
  4660. "x": 0,
  4661. "y": 0
  4662. },
  4663. "_fillStart": 0,
  4664. "_fillRange": 0,
  4665. "_isTrimmedMode": true,
  4666. "_atlas": null,
  4667. "_id": "f91A+Z7x5J+6UVtLJ2t796"
  4668. },
  4669. {
  4670. "__type__": "cc.Widget",
  4671. "_name": "",
  4672. "_objFlags": 0,
  4673. "node": {
  4674. "__id__": 91
  4675. },
  4676. "_enabled": true,
  4677. "alignMode": 0,
  4678. "_target": null,
  4679. "_alignFlags": 45,
  4680. "_left": 0,
  4681. "_right": 0,
  4682. "_top": 0,
  4683. "_bottom": 0,
  4684. "_verticalCenter": 0,
  4685. "_horizontalCenter": 0,
  4686. "_isAbsLeft": true,
  4687. "_isAbsRight": true,
  4688. "_isAbsTop": true,
  4689. "_isAbsBottom": true,
  4690. "_isAbsHorizontalCenter": true,
  4691. "_isAbsVerticalCenter": true,
  4692. "_originalWidth": 100,
  4693. "_originalHeight": 40,
  4694. "_id": "27hLqHCfVKiJ8ajpwWdYC5"
  4695. },
  4696. {
  4697. "__type__": "cc.Button",
  4698. "_name": "",
  4699. "_objFlags": 0,
  4700. "node": {
  4701. "__id__": 90
  4702. },
  4703. "_enabled": true,
  4704. "_normalMaterial": {
  4705. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4706. },
  4707. "_grayMaterial": null,
  4708. "duration": 0.1,
  4709. "zoomScale": 1.2,
  4710. "clickEvents": [
  4711. {
  4712. "__id__": 97
  4713. }
  4714. ],
  4715. "_N$interactable": true,
  4716. "_N$enableAutoGrayEffect": false,
  4717. "_N$transition": 2,
  4718. "transition": 2,
  4719. "_N$normalColor": {
  4720. "__type__": "cc.Color",
  4721. "r": 230,
  4722. "g": 230,
  4723. "b": 230,
  4724. "a": 255
  4725. },
  4726. "_N$pressedColor": {
  4727. "__type__": "cc.Color",
  4728. "r": 200,
  4729. "g": 200,
  4730. "b": 200,
  4731. "a": 255
  4732. },
  4733. "pressedColor": {
  4734. "__type__": "cc.Color",
  4735. "r": 200,
  4736. "g": 200,
  4737. "b": 200,
  4738. "a": 255
  4739. },
  4740. "_N$hoverColor": {
  4741. "__type__": "cc.Color",
  4742. "r": 255,
  4743. "g": 255,
  4744. "b": 255,
  4745. "a": 255
  4746. },
  4747. "hoverColor": {
  4748. "__type__": "cc.Color",
  4749. "r": 255,
  4750. "g": 255,
  4751. "b": 255,
  4752. "a": 255
  4753. },
  4754. "_N$disabledColor": {
  4755. "__type__": "cc.Color",
  4756. "r": 120,
  4757. "g": 120,
  4758. "b": 120,
  4759. "a": 200
  4760. },
  4761. "_N$normalSprite": {
  4762. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4763. },
  4764. "_N$pressedSprite": {
  4765. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4766. },
  4767. "pressedSprite": {
  4768. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  4769. },
  4770. "_N$hoverSprite": {
  4771. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4772. },
  4773. "hoverSprite": {
  4774. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  4775. },
  4776. "_N$disabledSprite": {
  4777. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  4778. },
  4779. "_N$target": {
  4780. "__id__": 91
  4781. },
  4782. "_id": "fduJ9eJchETaWY5CMGgb0f"
  4783. },
  4784. {
  4785. "__type__": "cc.ClickEvent",
  4786. "target": {
  4787. "__id__": 2
  4788. },
  4789. "component": "",
  4790. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  4791. "handler": "onSendWriteBLEDataValue",
  4792. "customEventData": "5"
  4793. },
  4794. {
  4795. "__type__": "cc.Node",
  4796. "_name": "4",
  4797. "_objFlags": 0,
  4798. "_parent": {
  4799. "__id__": 61
  4800. },
  4801. "_children": [
  4802. {
  4803. "__id__": 99
  4804. }
  4805. ],
  4806. "_active": true,
  4807. "_components": [
  4808. {
  4809. "__id__": 104
  4810. }
  4811. ],
  4812. "_prefab": null,
  4813. "_opacity": 255,
  4814. "_color": {
  4815. "__type__": "cc.Color",
  4816. "r": 255,
  4817. "g": 255,
  4818. "b": 255,
  4819. "a": 255
  4820. },
  4821. "_contentSize": {
  4822. "__type__": "cc.Size",
  4823. "width": 100,
  4824. "height": 40
  4825. },
  4826. "_anchorPoint": {
  4827. "__type__": "cc.Vec2",
  4828. "x": 0.5,
  4829. "y": 0.5
  4830. },
  4831. "_trs": {
  4832. "__type__": "TypedArray",
  4833. "ctor": "Float64Array",
  4834. "array": [
  4835. -260,
  4836. 92.816,
  4837. 0,
  4838. 0,
  4839. 0,
  4840. 0,
  4841. 1,
  4842. 1.2,
  4843. 1.2,
  4844. 1.2
  4845. ]
  4846. },
  4847. "_eulerAngles": {
  4848. "__type__": "cc.Vec3",
  4849. "x": 0,
  4850. "y": 0,
  4851. "z": 0
  4852. },
  4853. "_skewX": 0,
  4854. "_skewY": 0,
  4855. "_is3DNode": false,
  4856. "_groupIndex": 0,
  4857. "groupIndex": 0,
  4858. "_id": "b1QPRYU7ZDJbeO2kchI8MF"
  4859. },
  4860. {
  4861. "__type__": "cc.Node",
  4862. "_name": "Background",
  4863. "_objFlags": 512,
  4864. "_parent": {
  4865. "__id__": 98
  4866. },
  4867. "_children": [
  4868. {
  4869. "__id__": 100
  4870. }
  4871. ],
  4872. "_active": true,
  4873. "_components": [
  4874. {
  4875. "__id__": 102
  4876. },
  4877. {
  4878. "__id__": 103
  4879. }
  4880. ],
  4881. "_prefab": null,
  4882. "_opacity": 255,
  4883. "_color": {
  4884. "__type__": "cc.Color",
  4885. "r": 255,
  4886. "g": 255,
  4887. "b": 255,
  4888. "a": 255
  4889. },
  4890. "_contentSize": {
  4891. "__type__": "cc.Size",
  4892. "width": 100,
  4893. "height": 40
  4894. },
  4895. "_anchorPoint": {
  4896. "__type__": "cc.Vec2",
  4897. "x": 0.5,
  4898. "y": 0.5
  4899. },
  4900. "_trs": {
  4901. "__type__": "TypedArray",
  4902. "ctor": "Float64Array",
  4903. "array": [
  4904. 0,
  4905. 0,
  4906. 0,
  4907. 0,
  4908. 0,
  4909. 0,
  4910. 1,
  4911. 1,
  4912. 1,
  4913. 1
  4914. ]
  4915. },
  4916. "_eulerAngles": {
  4917. "__type__": "cc.Vec3",
  4918. "x": 0,
  4919. "y": 0,
  4920. "z": 0
  4921. },
  4922. "_skewX": 0,
  4923. "_skewY": 0,
  4924. "_is3DNode": false,
  4925. "_groupIndex": 0,
  4926. "groupIndex": 0,
  4927. "_id": "adeZZXenFD8IWqB8XobuJh"
  4928. },
  4929. {
  4930. "__type__": "cc.Node",
  4931. "_name": "Label",
  4932. "_objFlags": 512,
  4933. "_parent": {
  4934. "__id__": 99
  4935. },
  4936. "_children": [],
  4937. "_active": true,
  4938. "_components": [
  4939. {
  4940. "__id__": 101
  4941. }
  4942. ],
  4943. "_prefab": null,
  4944. "_opacity": 255,
  4945. "_color": {
  4946. "__type__": "cc.Color",
  4947. "r": 0,
  4948. "g": 0,
  4949. "b": 0,
  4950. "a": 255
  4951. },
  4952. "_contentSize": {
  4953. "__type__": "cc.Size",
  4954. "width": 100,
  4955. "height": 40
  4956. },
  4957. "_anchorPoint": {
  4958. "__type__": "cc.Vec2",
  4959. "x": 0.5,
  4960. "y": 0.5
  4961. },
  4962. "_trs": {
  4963. "__type__": "TypedArray",
  4964. "ctor": "Float64Array",
  4965. "array": [
  4966. 0,
  4967. 0,
  4968. 0,
  4969. 0,
  4970. 0,
  4971. 0,
  4972. 1,
  4973. 1,
  4974. 1,
  4975. 1
  4976. ]
  4977. },
  4978. "_eulerAngles": {
  4979. "__type__": "cc.Vec3",
  4980. "x": 0,
  4981. "y": 0,
  4982. "z": 0
  4983. },
  4984. "_skewX": 0,
  4985. "_skewY": 0,
  4986. "_is3DNode": false,
  4987. "_groupIndex": 0,
  4988. "groupIndex": 0,
  4989. "_id": "204ozMiBBF2oswl0RudV5s"
  4990. },
  4991. {
  4992. "__type__": "cc.Label",
  4993. "_name": "",
  4994. "_objFlags": 0,
  4995. "node": {
  4996. "__id__": 100
  4997. },
  4998. "_enabled": true,
  4999. "_materials": [
  5000. {
  5001. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5002. }
  5003. ],
  5004. "_useOriginalSize": false,
  5005. "_string": "指令4",
  5006. "_N$string": "指令4",
  5007. "_fontSize": 20,
  5008. "_lineHeight": 40,
  5009. "_enableWrapText": false,
  5010. "_N$file": null,
  5011. "_isSystemFontUsed": true,
  5012. "_spacingX": 0,
  5013. "_batchAsBitmap": false,
  5014. "_styleFlags": 0,
  5015. "_underlineHeight": 0,
  5016. "_N$horizontalAlign": 1,
  5017. "_N$verticalAlign": 1,
  5018. "_N$fontFamily": "Arial",
  5019. "_N$overflow": 1,
  5020. "_N$cacheMode": 1,
  5021. "_id": "bcaFOlE7BDDY84fwqkCu1I"
  5022. },
  5023. {
  5024. "__type__": "cc.Sprite",
  5025. "_name": "",
  5026. "_objFlags": 0,
  5027. "node": {
  5028. "__id__": 99
  5029. },
  5030. "_enabled": true,
  5031. "_materials": [
  5032. {
  5033. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5034. }
  5035. ],
  5036. "_srcBlendFactor": 770,
  5037. "_dstBlendFactor": 771,
  5038. "_spriteFrame": {
  5039. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5040. },
  5041. "_type": 1,
  5042. "_sizeMode": 0,
  5043. "_fillType": 0,
  5044. "_fillCenter": {
  5045. "__type__": "cc.Vec2",
  5046. "x": 0,
  5047. "y": 0
  5048. },
  5049. "_fillStart": 0,
  5050. "_fillRange": 0,
  5051. "_isTrimmedMode": true,
  5052. "_atlas": null,
  5053. "_id": "caOiEOsyRNroWAvpy9pV6P"
  5054. },
  5055. {
  5056. "__type__": "cc.Widget",
  5057. "_name": "",
  5058. "_objFlags": 0,
  5059. "node": {
  5060. "__id__": 99
  5061. },
  5062. "_enabled": true,
  5063. "alignMode": 0,
  5064. "_target": null,
  5065. "_alignFlags": 45,
  5066. "_left": 0,
  5067. "_right": 0,
  5068. "_top": 0,
  5069. "_bottom": 0,
  5070. "_verticalCenter": 0,
  5071. "_horizontalCenter": 0,
  5072. "_isAbsLeft": true,
  5073. "_isAbsRight": true,
  5074. "_isAbsTop": true,
  5075. "_isAbsBottom": true,
  5076. "_isAbsHorizontalCenter": true,
  5077. "_isAbsVerticalCenter": true,
  5078. "_originalWidth": 100,
  5079. "_originalHeight": 40,
  5080. "_id": "d411VxP81CTpuHXMgToxcV"
  5081. },
  5082. {
  5083. "__type__": "cc.Button",
  5084. "_name": "",
  5085. "_objFlags": 0,
  5086. "node": {
  5087. "__id__": 98
  5088. },
  5089. "_enabled": true,
  5090. "_normalMaterial": {
  5091. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5092. },
  5093. "_grayMaterial": null,
  5094. "duration": 0.1,
  5095. "zoomScale": 1.2,
  5096. "clickEvents": [
  5097. {
  5098. "__id__": 105
  5099. }
  5100. ],
  5101. "_N$interactable": true,
  5102. "_N$enableAutoGrayEffect": false,
  5103. "_N$transition": 2,
  5104. "transition": 2,
  5105. "_N$normalColor": {
  5106. "__type__": "cc.Color",
  5107. "r": 230,
  5108. "g": 230,
  5109. "b": 230,
  5110. "a": 255
  5111. },
  5112. "_N$pressedColor": {
  5113. "__type__": "cc.Color",
  5114. "r": 200,
  5115. "g": 200,
  5116. "b": 200,
  5117. "a": 255
  5118. },
  5119. "pressedColor": {
  5120. "__type__": "cc.Color",
  5121. "r": 200,
  5122. "g": 200,
  5123. "b": 200,
  5124. "a": 255
  5125. },
  5126. "_N$hoverColor": {
  5127. "__type__": "cc.Color",
  5128. "r": 255,
  5129. "g": 255,
  5130. "b": 255,
  5131. "a": 255
  5132. },
  5133. "hoverColor": {
  5134. "__type__": "cc.Color",
  5135. "r": 255,
  5136. "g": 255,
  5137. "b": 255,
  5138. "a": 255
  5139. },
  5140. "_N$disabledColor": {
  5141. "__type__": "cc.Color",
  5142. "r": 120,
  5143. "g": 120,
  5144. "b": 120,
  5145. "a": 200
  5146. },
  5147. "_N$normalSprite": {
  5148. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5149. },
  5150. "_N$pressedSprite": {
  5151. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5152. },
  5153. "pressedSprite": {
  5154. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5155. },
  5156. "_N$hoverSprite": {
  5157. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5158. },
  5159. "hoverSprite": {
  5160. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5161. },
  5162. "_N$disabledSprite": {
  5163. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5164. },
  5165. "_N$target": {
  5166. "__id__": 99
  5167. },
  5168. "_id": "e06z0KrAZPZKjBTgMoiJFt"
  5169. },
  5170. {
  5171. "__type__": "cc.ClickEvent",
  5172. "target": {
  5173. "__id__": 2
  5174. },
  5175. "component": "",
  5176. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  5177. "handler": "onSendWriteBLEDataValue",
  5178. "customEventData": "4"
  5179. },
  5180. {
  5181. "__type__": "cc.Node",
  5182. "_name": "6",
  5183. "_objFlags": 0,
  5184. "_parent": {
  5185. "__id__": 61
  5186. },
  5187. "_children": [
  5188. {
  5189. "__id__": 107
  5190. }
  5191. ],
  5192. "_active": true,
  5193. "_components": [
  5194. {
  5195. "__id__": 112
  5196. }
  5197. ],
  5198. "_prefab": null,
  5199. "_opacity": 255,
  5200. "_color": {
  5201. "__type__": "cc.Color",
  5202. "r": 255,
  5203. "g": 255,
  5204. "b": 255,
  5205. "a": 255
  5206. },
  5207. "_contentSize": {
  5208. "__type__": "cc.Size",
  5209. "width": 100,
  5210. "height": 40
  5211. },
  5212. "_anchorPoint": {
  5213. "__type__": "cc.Vec2",
  5214. "x": 0.5,
  5215. "y": 0.5
  5216. },
  5217. "_trs": {
  5218. "__type__": "TypedArray",
  5219. "ctor": "Float64Array",
  5220. "array": [
  5221. -62.284,
  5222. -1000.72,
  5223. 0,
  5224. 0,
  5225. 0,
  5226. 0,
  5227. 1,
  5228. 1.2,
  5229. 1.2,
  5230. 1.2
  5231. ]
  5232. },
  5233. "_eulerAngles": {
  5234. "__type__": "cc.Vec3",
  5235. "x": 0,
  5236. "y": 0,
  5237. "z": 0
  5238. },
  5239. "_skewX": 0,
  5240. "_skewY": 0,
  5241. "_is3DNode": false,
  5242. "_groupIndex": 0,
  5243. "groupIndex": 0,
  5244. "_id": "34NGCH+bNAp6YGDgcFToG9"
  5245. },
  5246. {
  5247. "__type__": "cc.Node",
  5248. "_name": "Background",
  5249. "_objFlags": 512,
  5250. "_parent": {
  5251. "__id__": 106
  5252. },
  5253. "_children": [
  5254. {
  5255. "__id__": 108
  5256. }
  5257. ],
  5258. "_active": true,
  5259. "_components": [
  5260. {
  5261. "__id__": 110
  5262. },
  5263. {
  5264. "__id__": 111
  5265. }
  5266. ],
  5267. "_prefab": null,
  5268. "_opacity": 255,
  5269. "_color": {
  5270. "__type__": "cc.Color",
  5271. "r": 255,
  5272. "g": 255,
  5273. "b": 255,
  5274. "a": 255
  5275. },
  5276. "_contentSize": {
  5277. "__type__": "cc.Size",
  5278. "width": 100,
  5279. "height": 40
  5280. },
  5281. "_anchorPoint": {
  5282. "__type__": "cc.Vec2",
  5283. "x": 0.5,
  5284. "y": 0.5
  5285. },
  5286. "_trs": {
  5287. "__type__": "TypedArray",
  5288. "ctor": "Float64Array",
  5289. "array": [
  5290. 0,
  5291. 0,
  5292. 0,
  5293. 0,
  5294. 0,
  5295. 0,
  5296. 1,
  5297. 1,
  5298. 1,
  5299. 1
  5300. ]
  5301. },
  5302. "_eulerAngles": {
  5303. "__type__": "cc.Vec3",
  5304. "x": 0,
  5305. "y": 0,
  5306. "z": 0
  5307. },
  5308. "_skewX": 0,
  5309. "_skewY": 0,
  5310. "_is3DNode": false,
  5311. "_groupIndex": 0,
  5312. "groupIndex": 0,
  5313. "_id": "68odPNgTtMGoamQNzImG7s"
  5314. },
  5315. {
  5316. "__type__": "cc.Node",
  5317. "_name": "Label",
  5318. "_objFlags": 512,
  5319. "_parent": {
  5320. "__id__": 107
  5321. },
  5322. "_children": [],
  5323. "_active": true,
  5324. "_components": [
  5325. {
  5326. "__id__": 109
  5327. }
  5328. ],
  5329. "_prefab": null,
  5330. "_opacity": 255,
  5331. "_color": {
  5332. "__type__": "cc.Color",
  5333. "r": 0,
  5334. "g": 0,
  5335. "b": 0,
  5336. "a": 255
  5337. },
  5338. "_contentSize": {
  5339. "__type__": "cc.Size",
  5340. "width": 100,
  5341. "height": 40
  5342. },
  5343. "_anchorPoint": {
  5344. "__type__": "cc.Vec2",
  5345. "x": 0.5,
  5346. "y": 0.5
  5347. },
  5348. "_trs": {
  5349. "__type__": "TypedArray",
  5350. "ctor": "Float64Array",
  5351. "array": [
  5352. 0,
  5353. 0,
  5354. 0,
  5355. 0,
  5356. 0,
  5357. 0,
  5358. 1,
  5359. 1,
  5360. 1,
  5361. 1
  5362. ]
  5363. },
  5364. "_eulerAngles": {
  5365. "__type__": "cc.Vec3",
  5366. "x": 0,
  5367. "y": 0,
  5368. "z": 0
  5369. },
  5370. "_skewX": 0,
  5371. "_skewY": 0,
  5372. "_is3DNode": false,
  5373. "_groupIndex": 0,
  5374. "groupIndex": 0,
  5375. "_id": "f3I8Ud7JhEXatEcjfJjdxo"
  5376. },
  5377. {
  5378. "__type__": "cc.Label",
  5379. "_name": "",
  5380. "_objFlags": 0,
  5381. "node": {
  5382. "__id__": 108
  5383. },
  5384. "_enabled": true,
  5385. "_materials": [
  5386. {
  5387. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5388. }
  5389. ],
  5390. "_useOriginalSize": false,
  5391. "_string": "指令6",
  5392. "_N$string": "指令6",
  5393. "_fontSize": 20,
  5394. "_lineHeight": 40,
  5395. "_enableWrapText": false,
  5396. "_N$file": null,
  5397. "_isSystemFontUsed": true,
  5398. "_spacingX": 0,
  5399. "_batchAsBitmap": false,
  5400. "_styleFlags": 0,
  5401. "_underlineHeight": 0,
  5402. "_N$horizontalAlign": 1,
  5403. "_N$verticalAlign": 1,
  5404. "_N$fontFamily": "Arial",
  5405. "_N$overflow": 1,
  5406. "_N$cacheMode": 1,
  5407. "_id": "13TNNqDaxJRbMjgwg5d+Do"
  5408. },
  5409. {
  5410. "__type__": "cc.Sprite",
  5411. "_name": "",
  5412. "_objFlags": 0,
  5413. "node": {
  5414. "__id__": 107
  5415. },
  5416. "_enabled": true,
  5417. "_materials": [
  5418. {
  5419. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5420. }
  5421. ],
  5422. "_srcBlendFactor": 770,
  5423. "_dstBlendFactor": 771,
  5424. "_spriteFrame": {
  5425. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5426. },
  5427. "_type": 1,
  5428. "_sizeMode": 0,
  5429. "_fillType": 0,
  5430. "_fillCenter": {
  5431. "__type__": "cc.Vec2",
  5432. "x": 0,
  5433. "y": 0
  5434. },
  5435. "_fillStart": 0,
  5436. "_fillRange": 0,
  5437. "_isTrimmedMode": true,
  5438. "_atlas": null,
  5439. "_id": "fdy7WvbI9LD5pfP2kUTOkp"
  5440. },
  5441. {
  5442. "__type__": "cc.Widget",
  5443. "_name": "",
  5444. "_objFlags": 0,
  5445. "node": {
  5446. "__id__": 107
  5447. },
  5448. "_enabled": true,
  5449. "alignMode": 0,
  5450. "_target": null,
  5451. "_alignFlags": 45,
  5452. "_left": 0,
  5453. "_right": 0,
  5454. "_top": 0,
  5455. "_bottom": 0,
  5456. "_verticalCenter": 0,
  5457. "_horizontalCenter": 0,
  5458. "_isAbsLeft": true,
  5459. "_isAbsRight": true,
  5460. "_isAbsTop": true,
  5461. "_isAbsBottom": true,
  5462. "_isAbsHorizontalCenter": true,
  5463. "_isAbsVerticalCenter": true,
  5464. "_originalWidth": 100,
  5465. "_originalHeight": 40,
  5466. "_id": "e9rKdnFb1AjbxcOLL97ATn"
  5467. },
  5468. {
  5469. "__type__": "cc.Button",
  5470. "_name": "",
  5471. "_objFlags": 0,
  5472. "node": {
  5473. "__id__": 106
  5474. },
  5475. "_enabled": true,
  5476. "_normalMaterial": {
  5477. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5478. },
  5479. "_grayMaterial": null,
  5480. "duration": 0.1,
  5481. "zoomScale": 1.2,
  5482. "clickEvents": [
  5483. {
  5484. "__id__": 113
  5485. }
  5486. ],
  5487. "_N$interactable": true,
  5488. "_N$enableAutoGrayEffect": false,
  5489. "_N$transition": 2,
  5490. "transition": 2,
  5491. "_N$normalColor": {
  5492. "__type__": "cc.Color",
  5493. "r": 230,
  5494. "g": 230,
  5495. "b": 230,
  5496. "a": 255
  5497. },
  5498. "_N$pressedColor": {
  5499. "__type__": "cc.Color",
  5500. "r": 200,
  5501. "g": 200,
  5502. "b": 200,
  5503. "a": 255
  5504. },
  5505. "pressedColor": {
  5506. "__type__": "cc.Color",
  5507. "r": 200,
  5508. "g": 200,
  5509. "b": 200,
  5510. "a": 255
  5511. },
  5512. "_N$hoverColor": {
  5513. "__type__": "cc.Color",
  5514. "r": 255,
  5515. "g": 255,
  5516. "b": 255,
  5517. "a": 255
  5518. },
  5519. "hoverColor": {
  5520. "__type__": "cc.Color",
  5521. "r": 255,
  5522. "g": 255,
  5523. "b": 255,
  5524. "a": 255
  5525. },
  5526. "_N$disabledColor": {
  5527. "__type__": "cc.Color",
  5528. "r": 120,
  5529. "g": 120,
  5530. "b": 120,
  5531. "a": 200
  5532. },
  5533. "_N$normalSprite": {
  5534. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5535. },
  5536. "_N$pressedSprite": {
  5537. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5538. },
  5539. "pressedSprite": {
  5540. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5541. },
  5542. "_N$hoverSprite": {
  5543. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5544. },
  5545. "hoverSprite": {
  5546. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5547. },
  5548. "_N$disabledSprite": {
  5549. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5550. },
  5551. "_N$target": {
  5552. "__id__": 107
  5553. },
  5554. "_id": "8cp1l9Gi1IepfA7BUT6nPX"
  5555. },
  5556. {
  5557. "__type__": "cc.ClickEvent",
  5558. "target": {
  5559. "__id__": 2
  5560. },
  5561. "component": "",
  5562. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  5563. "handler": "onSendWriteBLEDataValue",
  5564. "customEventData": "6"
  5565. },
  5566. {
  5567. "__type__": "cc.Node",
  5568. "_name": "renderAcc",
  5569. "_objFlags": 0,
  5570. "_parent": {
  5571. "__id__": 61
  5572. },
  5573. "_children": [
  5574. {
  5575. "__id__": 115
  5576. }
  5577. ],
  5578. "_active": true,
  5579. "_components": [
  5580. {
  5581. "__id__": 120
  5582. }
  5583. ],
  5584. "_prefab": null,
  5585. "_opacity": 255,
  5586. "_color": {
  5587. "__type__": "cc.Color",
  5588. "r": 255,
  5589. "g": 255,
  5590. "b": 255,
  5591. "a": 255
  5592. },
  5593. "_contentSize": {
  5594. "__type__": "cc.Size",
  5595. "width": 150,
  5596. "height": 40
  5597. },
  5598. "_anchorPoint": {
  5599. "__type__": "cc.Vec2",
  5600. "x": 0.5,
  5601. "y": 0.5
  5602. },
  5603. "_trs": {
  5604. "__type__": "TypedArray",
  5605. "ctor": "Float64Array",
  5606. "array": [
  5607. -226.958,
  5608. -45.575,
  5609. 0,
  5610. 0,
  5611. 0,
  5612. 0,
  5613. 1,
  5614. 1.2,
  5615. 1.2,
  5616. 1
  5617. ]
  5618. },
  5619. "_eulerAngles": {
  5620. "__type__": "cc.Vec3",
  5621. "x": 0,
  5622. "y": 0,
  5623. "z": 0
  5624. },
  5625. "_skewX": 0,
  5626. "_skewY": 0,
  5627. "_is3DNode": false,
  5628. "_groupIndex": 0,
  5629. "groupIndex": 0,
  5630. "_id": "8eYn+l+rVAYYcbdz3ttk43"
  5631. },
  5632. {
  5633. "__type__": "cc.Node",
  5634. "_name": "Background",
  5635. "_objFlags": 512,
  5636. "_parent": {
  5637. "__id__": 114
  5638. },
  5639. "_children": [
  5640. {
  5641. "__id__": 116
  5642. }
  5643. ],
  5644. "_active": true,
  5645. "_components": [
  5646. {
  5647. "__id__": 118
  5648. },
  5649. {
  5650. "__id__": 119
  5651. }
  5652. ],
  5653. "_prefab": null,
  5654. "_opacity": 255,
  5655. "_color": {
  5656. "__type__": "cc.Color",
  5657. "r": 255,
  5658. "g": 255,
  5659. "b": 255,
  5660. "a": 255
  5661. },
  5662. "_contentSize": {
  5663. "__type__": "cc.Size",
  5664. "width": 150,
  5665. "height": 40
  5666. },
  5667. "_anchorPoint": {
  5668. "__type__": "cc.Vec2",
  5669. "x": 0.5,
  5670. "y": 0.5
  5671. },
  5672. "_trs": {
  5673. "__type__": "TypedArray",
  5674. "ctor": "Float64Array",
  5675. "array": [
  5676. 0,
  5677. 0,
  5678. 0,
  5679. 0,
  5680. 0,
  5681. 0,
  5682. 1,
  5683. 1,
  5684. 1,
  5685. 1
  5686. ]
  5687. },
  5688. "_eulerAngles": {
  5689. "__type__": "cc.Vec3",
  5690. "x": 0,
  5691. "y": 0,
  5692. "z": 0
  5693. },
  5694. "_skewX": 0,
  5695. "_skewY": 0,
  5696. "_is3DNode": false,
  5697. "_groupIndex": 0,
  5698. "groupIndex": 0,
  5699. "_id": "b0jxhCHeBHXYvdj1SwO8H5"
  5700. },
  5701. {
  5702. "__type__": "cc.Node",
  5703. "_name": "Label",
  5704. "_objFlags": 512,
  5705. "_parent": {
  5706. "__id__": 115
  5707. },
  5708. "_children": [],
  5709. "_active": true,
  5710. "_components": [
  5711. {
  5712. "__id__": 117
  5713. }
  5714. ],
  5715. "_prefab": null,
  5716. "_opacity": 255,
  5717. "_color": {
  5718. "__type__": "cc.Color",
  5719. "r": 0,
  5720. "g": 0,
  5721. "b": 0,
  5722. "a": 255
  5723. },
  5724. "_contentSize": {
  5725. "__type__": "cc.Size",
  5726. "width": 150,
  5727. "height": 40
  5728. },
  5729. "_anchorPoint": {
  5730. "__type__": "cc.Vec2",
  5731. "x": 0.5,
  5732. "y": 0.5
  5733. },
  5734. "_trs": {
  5735. "__type__": "TypedArray",
  5736. "ctor": "Float64Array",
  5737. "array": [
  5738. 0,
  5739. 0,
  5740. 0,
  5741. 0,
  5742. 0,
  5743. 0,
  5744. 1,
  5745. 1,
  5746. 1,
  5747. 1
  5748. ]
  5749. },
  5750. "_eulerAngles": {
  5751. "__type__": "cc.Vec3",
  5752. "x": 0,
  5753. "y": 0,
  5754. "z": 0
  5755. },
  5756. "_skewX": 0,
  5757. "_skewY": 0,
  5758. "_is3DNode": false,
  5759. "_groupIndex": 0,
  5760. "groupIndex": 0,
  5761. "_id": "fefhzOOclJv7C2OnIwAbHy"
  5762. },
  5763. {
  5764. "__type__": "cc.Label",
  5765. "_name": "",
  5766. "_objFlags": 0,
  5767. "node": {
  5768. "__id__": 116
  5769. },
  5770. "_enabled": true,
  5771. "_materials": [
  5772. {
  5773. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5774. }
  5775. ],
  5776. "_useOriginalSize": false,
  5777. "_string": "关闭渲染加速计",
  5778. "_N$string": "关闭渲染加速计",
  5779. "_fontSize": 20,
  5780. "_lineHeight": 40,
  5781. "_enableWrapText": false,
  5782. "_N$file": null,
  5783. "_isSystemFontUsed": true,
  5784. "_spacingX": 0,
  5785. "_batchAsBitmap": false,
  5786. "_styleFlags": 0,
  5787. "_underlineHeight": 0,
  5788. "_N$horizontalAlign": 1,
  5789. "_N$verticalAlign": 1,
  5790. "_N$fontFamily": "Arial",
  5791. "_N$overflow": 1,
  5792. "_N$cacheMode": 1,
  5793. "_id": "b67attXL1E04jyPqQoPRmR"
  5794. },
  5795. {
  5796. "__type__": "cc.Sprite",
  5797. "_name": "",
  5798. "_objFlags": 0,
  5799. "node": {
  5800. "__id__": 115
  5801. },
  5802. "_enabled": true,
  5803. "_materials": [
  5804. {
  5805. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5806. }
  5807. ],
  5808. "_srcBlendFactor": 770,
  5809. "_dstBlendFactor": 771,
  5810. "_spriteFrame": {
  5811. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5812. },
  5813. "_type": 1,
  5814. "_sizeMode": 0,
  5815. "_fillType": 0,
  5816. "_fillCenter": {
  5817. "__type__": "cc.Vec2",
  5818. "x": 0,
  5819. "y": 0
  5820. },
  5821. "_fillStart": 0,
  5822. "_fillRange": 0,
  5823. "_isTrimmedMode": true,
  5824. "_atlas": null,
  5825. "_id": "5bnSiCE6RB9bA1wuBDjVcU"
  5826. },
  5827. {
  5828. "__type__": "cc.Widget",
  5829. "_name": "",
  5830. "_objFlags": 0,
  5831. "node": {
  5832. "__id__": 115
  5833. },
  5834. "_enabled": true,
  5835. "alignMode": 0,
  5836. "_target": null,
  5837. "_alignFlags": 45,
  5838. "_left": 0,
  5839. "_right": 0,
  5840. "_top": 0,
  5841. "_bottom": 0,
  5842. "_verticalCenter": 0,
  5843. "_horizontalCenter": 0,
  5844. "_isAbsLeft": true,
  5845. "_isAbsRight": true,
  5846. "_isAbsTop": true,
  5847. "_isAbsBottom": true,
  5848. "_isAbsHorizontalCenter": true,
  5849. "_isAbsVerticalCenter": true,
  5850. "_originalWidth": 100,
  5851. "_originalHeight": 40,
  5852. "_id": "041dae3O5JnKDODtM/linR"
  5853. },
  5854. {
  5855. "__type__": "cc.Button",
  5856. "_name": "",
  5857. "_objFlags": 0,
  5858. "node": {
  5859. "__id__": 114
  5860. },
  5861. "_enabled": true,
  5862. "_normalMaterial": {
  5863. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5864. },
  5865. "_grayMaterial": null,
  5866. "duration": 0.1,
  5867. "zoomScale": 1.2,
  5868. "clickEvents": [
  5869. {
  5870. "__id__": 121
  5871. }
  5872. ],
  5873. "_N$interactable": true,
  5874. "_N$enableAutoGrayEffect": false,
  5875. "_N$transition": 2,
  5876. "transition": 2,
  5877. "_N$normalColor": {
  5878. "__type__": "cc.Color",
  5879. "r": 230,
  5880. "g": 230,
  5881. "b": 230,
  5882. "a": 255
  5883. },
  5884. "_N$pressedColor": {
  5885. "__type__": "cc.Color",
  5886. "r": 200,
  5887. "g": 200,
  5888. "b": 200,
  5889. "a": 255
  5890. },
  5891. "pressedColor": {
  5892. "__type__": "cc.Color",
  5893. "r": 200,
  5894. "g": 200,
  5895. "b": 200,
  5896. "a": 255
  5897. },
  5898. "_N$hoverColor": {
  5899. "__type__": "cc.Color",
  5900. "r": 255,
  5901. "g": 255,
  5902. "b": 255,
  5903. "a": 255
  5904. },
  5905. "hoverColor": {
  5906. "__type__": "cc.Color",
  5907. "r": 255,
  5908. "g": 255,
  5909. "b": 255,
  5910. "a": 255
  5911. },
  5912. "_N$disabledColor": {
  5913. "__type__": "cc.Color",
  5914. "r": 120,
  5915. "g": 120,
  5916. "b": 120,
  5917. "a": 200
  5918. },
  5919. "_N$normalSprite": {
  5920. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5921. },
  5922. "_N$pressedSprite": {
  5923. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5924. },
  5925. "pressedSprite": {
  5926. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  5927. },
  5928. "_N$hoverSprite": {
  5929. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5930. },
  5931. "hoverSprite": {
  5932. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  5933. },
  5934. "_N$disabledSprite": {
  5935. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  5936. },
  5937. "_N$target": {
  5938. "__id__": 115
  5939. },
  5940. "_id": "01PHwYa6tGdYJ/7inmlldi"
  5941. },
  5942. {
  5943. "__type__": "cc.ClickEvent",
  5944. "target": {
  5945. "__id__": 2
  5946. },
  5947. "component": "",
  5948. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  5949. "handler": "onChangeAccDraw",
  5950. "customEventData": ""
  5951. },
  5952. {
  5953. "__type__": "cc.Node",
  5954. "_name": "renderAccLog",
  5955. "_objFlags": 0,
  5956. "_parent": {
  5957. "__id__": 61
  5958. },
  5959. "_children": [
  5960. {
  5961. "__id__": 123
  5962. }
  5963. ],
  5964. "_active": true,
  5965. "_components": [
  5966. {
  5967. "__id__": 128
  5968. }
  5969. ],
  5970. "_prefab": null,
  5971. "_opacity": 255,
  5972. "_color": {
  5973. "__type__": "cc.Color",
  5974. "r": 255,
  5975. "g": 255,
  5976. "b": 255,
  5977. "a": 255
  5978. },
  5979. "_contentSize": {
  5980. "__type__": "cc.Size",
  5981. "width": 150,
  5982. "height": 40
  5983. },
  5984. "_anchorPoint": {
  5985. "__type__": "cc.Vec2",
  5986. "x": 0.5,
  5987. "y": 0.5
  5988. },
  5989. "_trs": {
  5990. "__type__": "TypedArray",
  5991. "ctor": "Float64Array",
  5992. "array": [
  5993. 244.127,
  5994. -0.504,
  5995. 0,
  5996. 0,
  5997. 0,
  5998. 0,
  5999. 1,
  6000. 1.2,
  6001. 1.2,
  6002. 1
  6003. ]
  6004. },
  6005. "_eulerAngles": {
  6006. "__type__": "cc.Vec3",
  6007. "x": 0,
  6008. "y": 0,
  6009. "z": 0
  6010. },
  6011. "_skewX": 0,
  6012. "_skewY": 0,
  6013. "_is3DNode": false,
  6014. "_groupIndex": 0,
  6015. "groupIndex": 0,
  6016. "_id": "36oRsV1XpK4ZeC1tRGcGlB"
  6017. },
  6018. {
  6019. "__type__": "cc.Node",
  6020. "_name": "Background",
  6021. "_objFlags": 512,
  6022. "_parent": {
  6023. "__id__": 122
  6024. },
  6025. "_children": [
  6026. {
  6027. "__id__": 124
  6028. }
  6029. ],
  6030. "_active": true,
  6031. "_components": [
  6032. {
  6033. "__id__": 126
  6034. },
  6035. {
  6036. "__id__": 127
  6037. }
  6038. ],
  6039. "_prefab": null,
  6040. "_opacity": 255,
  6041. "_color": {
  6042. "__type__": "cc.Color",
  6043. "r": 255,
  6044. "g": 255,
  6045. "b": 255,
  6046. "a": 255
  6047. },
  6048. "_contentSize": {
  6049. "__type__": "cc.Size",
  6050. "width": 150,
  6051. "height": 40
  6052. },
  6053. "_anchorPoint": {
  6054. "__type__": "cc.Vec2",
  6055. "x": 0.5,
  6056. "y": 0.5
  6057. },
  6058. "_trs": {
  6059. "__type__": "TypedArray",
  6060. "ctor": "Float64Array",
  6061. "array": [
  6062. 0,
  6063. 0,
  6064. 0,
  6065. 0,
  6066. 0,
  6067. 0,
  6068. 1,
  6069. 1,
  6070. 1,
  6071. 1
  6072. ]
  6073. },
  6074. "_eulerAngles": {
  6075. "__type__": "cc.Vec3",
  6076. "x": 0,
  6077. "y": 0,
  6078. "z": 0
  6079. },
  6080. "_skewX": 0,
  6081. "_skewY": 0,
  6082. "_is3DNode": false,
  6083. "_groupIndex": 0,
  6084. "groupIndex": 0,
  6085. "_id": "60swEqQIlLIoNhcaYyNyON"
  6086. },
  6087. {
  6088. "__type__": "cc.Node",
  6089. "_name": "Label",
  6090. "_objFlags": 512,
  6091. "_parent": {
  6092. "__id__": 123
  6093. },
  6094. "_children": [],
  6095. "_active": true,
  6096. "_components": [
  6097. {
  6098. "__id__": 125
  6099. }
  6100. ],
  6101. "_prefab": null,
  6102. "_opacity": 255,
  6103. "_color": {
  6104. "__type__": "cc.Color",
  6105. "r": 0,
  6106. "g": 0,
  6107. "b": 0,
  6108. "a": 255
  6109. },
  6110. "_contentSize": {
  6111. "__type__": "cc.Size",
  6112. "width": 150,
  6113. "height": 40
  6114. },
  6115. "_anchorPoint": {
  6116. "__type__": "cc.Vec2",
  6117. "x": 0.5,
  6118. "y": 0.5
  6119. },
  6120. "_trs": {
  6121. "__type__": "TypedArray",
  6122. "ctor": "Float64Array",
  6123. "array": [
  6124. 0,
  6125. 0,
  6126. 0,
  6127. 0,
  6128. 0,
  6129. 0,
  6130. 1,
  6131. 1,
  6132. 1,
  6133. 1
  6134. ]
  6135. },
  6136. "_eulerAngles": {
  6137. "__type__": "cc.Vec3",
  6138. "x": 0,
  6139. "y": 0,
  6140. "z": 0
  6141. },
  6142. "_skewX": 0,
  6143. "_skewY": 0,
  6144. "_is3DNode": false,
  6145. "_groupIndex": 0,
  6146. "groupIndex": 0,
  6147. "_id": "a4fMcCPjNI243YCVUCvDOV"
  6148. },
  6149. {
  6150. "__type__": "cc.Label",
  6151. "_name": "",
  6152. "_objFlags": 0,
  6153. "node": {
  6154. "__id__": 124
  6155. },
  6156. "_enabled": true,
  6157. "_materials": [
  6158. {
  6159. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6160. }
  6161. ],
  6162. "_useOriginalSize": false,
  6163. "_string": "开启加速计日志",
  6164. "_N$string": "开启加速计日志",
  6165. "_fontSize": 20,
  6166. "_lineHeight": 40,
  6167. "_enableWrapText": false,
  6168. "_N$file": null,
  6169. "_isSystemFontUsed": true,
  6170. "_spacingX": 0,
  6171. "_batchAsBitmap": false,
  6172. "_styleFlags": 0,
  6173. "_underlineHeight": 0,
  6174. "_N$horizontalAlign": 1,
  6175. "_N$verticalAlign": 1,
  6176. "_N$fontFamily": "Arial",
  6177. "_N$overflow": 1,
  6178. "_N$cacheMode": 1,
  6179. "_id": "6606BamolB55BZrgpd0h68"
  6180. },
  6181. {
  6182. "__type__": "cc.Sprite",
  6183. "_name": "",
  6184. "_objFlags": 0,
  6185. "node": {
  6186. "__id__": 123
  6187. },
  6188. "_enabled": true,
  6189. "_materials": [
  6190. {
  6191. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6192. }
  6193. ],
  6194. "_srcBlendFactor": 770,
  6195. "_dstBlendFactor": 771,
  6196. "_spriteFrame": {
  6197. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6198. },
  6199. "_type": 1,
  6200. "_sizeMode": 0,
  6201. "_fillType": 0,
  6202. "_fillCenter": {
  6203. "__type__": "cc.Vec2",
  6204. "x": 0,
  6205. "y": 0
  6206. },
  6207. "_fillStart": 0,
  6208. "_fillRange": 0,
  6209. "_isTrimmedMode": true,
  6210. "_atlas": null,
  6211. "_id": "7fMGiTYLJHXalWMPEviBfb"
  6212. },
  6213. {
  6214. "__type__": "cc.Widget",
  6215. "_name": "",
  6216. "_objFlags": 0,
  6217. "node": {
  6218. "__id__": 123
  6219. },
  6220. "_enabled": true,
  6221. "alignMode": 0,
  6222. "_target": null,
  6223. "_alignFlags": 45,
  6224. "_left": 0,
  6225. "_right": 0,
  6226. "_top": 0,
  6227. "_bottom": 0,
  6228. "_verticalCenter": 0,
  6229. "_horizontalCenter": 0,
  6230. "_isAbsLeft": true,
  6231. "_isAbsRight": true,
  6232. "_isAbsTop": true,
  6233. "_isAbsBottom": true,
  6234. "_isAbsHorizontalCenter": true,
  6235. "_isAbsVerticalCenter": true,
  6236. "_originalWidth": 100,
  6237. "_originalHeight": 40,
  6238. "_id": "d5ea8hm9JFoqW08oeG3baK"
  6239. },
  6240. {
  6241. "__type__": "cc.Button",
  6242. "_name": "",
  6243. "_objFlags": 0,
  6244. "node": {
  6245. "__id__": 122
  6246. },
  6247. "_enabled": true,
  6248. "_normalMaterial": {
  6249. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6250. },
  6251. "_grayMaterial": null,
  6252. "duration": 0.1,
  6253. "zoomScale": 1.2,
  6254. "clickEvents": [
  6255. {
  6256. "__id__": 129
  6257. }
  6258. ],
  6259. "_N$interactable": true,
  6260. "_N$enableAutoGrayEffect": false,
  6261. "_N$transition": 2,
  6262. "transition": 2,
  6263. "_N$normalColor": {
  6264. "__type__": "cc.Color",
  6265. "r": 230,
  6266. "g": 230,
  6267. "b": 230,
  6268. "a": 255
  6269. },
  6270. "_N$pressedColor": {
  6271. "__type__": "cc.Color",
  6272. "r": 200,
  6273. "g": 200,
  6274. "b": 200,
  6275. "a": 255
  6276. },
  6277. "pressedColor": {
  6278. "__type__": "cc.Color",
  6279. "r": 200,
  6280. "g": 200,
  6281. "b": 200,
  6282. "a": 255
  6283. },
  6284. "_N$hoverColor": {
  6285. "__type__": "cc.Color",
  6286. "r": 255,
  6287. "g": 255,
  6288. "b": 255,
  6289. "a": 255
  6290. },
  6291. "hoverColor": {
  6292. "__type__": "cc.Color",
  6293. "r": 255,
  6294. "g": 255,
  6295. "b": 255,
  6296. "a": 255
  6297. },
  6298. "_N$disabledColor": {
  6299. "__type__": "cc.Color",
  6300. "r": 120,
  6301. "g": 120,
  6302. "b": 120,
  6303. "a": 200
  6304. },
  6305. "_N$normalSprite": {
  6306. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6307. },
  6308. "_N$pressedSprite": {
  6309. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6310. },
  6311. "pressedSprite": {
  6312. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6313. },
  6314. "_N$hoverSprite": {
  6315. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6316. },
  6317. "hoverSprite": {
  6318. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6319. },
  6320. "_N$disabledSprite": {
  6321. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  6322. },
  6323. "_N$target": {
  6324. "__id__": 123
  6325. },
  6326. "_id": "aeLwnlqQJEW6wwYINR1n16"
  6327. },
  6328. {
  6329. "__type__": "cc.ClickEvent",
  6330. "target": {
  6331. "__id__": 2
  6332. },
  6333. "component": "",
  6334. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  6335. "handler": "onShowAccLog",
  6336. "customEventData": ""
  6337. },
  6338. {
  6339. "__type__": "cc.Node",
  6340. "_name": "renderGyro",
  6341. "_objFlags": 0,
  6342. "_parent": {
  6343. "__id__": 61
  6344. },
  6345. "_children": [
  6346. {
  6347. "__id__": 131
  6348. }
  6349. ],
  6350. "_active": true,
  6351. "_components": [
  6352. {
  6353. "__id__": 136
  6354. }
  6355. ],
  6356. "_prefab": null,
  6357. "_opacity": 255,
  6358. "_color": {
  6359. "__type__": "cc.Color",
  6360. "r": 255,
  6361. "g": 255,
  6362. "b": 255,
  6363. "a": 255
  6364. },
  6365. "_contentSize": {
  6366. "__type__": "cc.Size",
  6367. "width": 150,
  6368. "height": 40
  6369. },
  6370. "_anchorPoint": {
  6371. "__type__": "cc.Vec2",
  6372. "x": 0.5,
  6373. "y": 0.5
  6374. },
  6375. "_trs": {
  6376. "__type__": "TypedArray",
  6377. "ctor": "Float64Array",
  6378. "array": [
  6379. -30.312,
  6380. -45.575,
  6381. 0,
  6382. 0,
  6383. 0,
  6384. 0,
  6385. 1,
  6386. 1.2,
  6387. 1.2,
  6388. 1
  6389. ]
  6390. },
  6391. "_eulerAngles": {
  6392. "__type__": "cc.Vec3",
  6393. "x": 0,
  6394. "y": 0,
  6395. "z": 0
  6396. },
  6397. "_skewX": 0,
  6398. "_skewY": 0,
  6399. "_is3DNode": false,
  6400. "_groupIndex": 0,
  6401. "groupIndex": 0,
  6402. "_id": "80GrNX5fNFPrRDxkr1K5R+"
  6403. },
  6404. {
  6405. "__type__": "cc.Node",
  6406. "_name": "Background",
  6407. "_objFlags": 512,
  6408. "_parent": {
  6409. "__id__": 130
  6410. },
  6411. "_children": [
  6412. {
  6413. "__id__": 132
  6414. }
  6415. ],
  6416. "_active": true,
  6417. "_components": [
  6418. {
  6419. "__id__": 134
  6420. },
  6421. {
  6422. "__id__": 135
  6423. }
  6424. ],
  6425. "_prefab": null,
  6426. "_opacity": 255,
  6427. "_color": {
  6428. "__type__": "cc.Color",
  6429. "r": 255,
  6430. "g": 255,
  6431. "b": 255,
  6432. "a": 255
  6433. },
  6434. "_contentSize": {
  6435. "__type__": "cc.Size",
  6436. "width": 150,
  6437. "height": 40
  6438. },
  6439. "_anchorPoint": {
  6440. "__type__": "cc.Vec2",
  6441. "x": 0.5,
  6442. "y": 0.5
  6443. },
  6444. "_trs": {
  6445. "__type__": "TypedArray",
  6446. "ctor": "Float64Array",
  6447. "array": [
  6448. 0,
  6449. 0,
  6450. 0,
  6451. 0,
  6452. 0,
  6453. 0,
  6454. 1,
  6455. 1,
  6456. 1,
  6457. 1
  6458. ]
  6459. },
  6460. "_eulerAngles": {
  6461. "__type__": "cc.Vec3",
  6462. "x": 0,
  6463. "y": 0,
  6464. "z": 0
  6465. },
  6466. "_skewX": 0,
  6467. "_skewY": 0,
  6468. "_is3DNode": false,
  6469. "_groupIndex": 0,
  6470. "groupIndex": 0,
  6471. "_id": "30TzXUgM5MgaDQ3lMXoFRk"
  6472. },
  6473. {
  6474. "__type__": "cc.Node",
  6475. "_name": "Label",
  6476. "_objFlags": 512,
  6477. "_parent": {
  6478. "__id__": 131
  6479. },
  6480. "_children": [],
  6481. "_active": true,
  6482. "_components": [
  6483. {
  6484. "__id__": 133
  6485. }
  6486. ],
  6487. "_prefab": null,
  6488. "_opacity": 255,
  6489. "_color": {
  6490. "__type__": "cc.Color",
  6491. "r": 0,
  6492. "g": 0,
  6493. "b": 0,
  6494. "a": 255
  6495. },
  6496. "_contentSize": {
  6497. "__type__": "cc.Size",
  6498. "width": 150,
  6499. "height": 40
  6500. },
  6501. "_anchorPoint": {
  6502. "__type__": "cc.Vec2",
  6503. "x": 0.5,
  6504. "y": 0.5
  6505. },
  6506. "_trs": {
  6507. "__type__": "TypedArray",
  6508. "ctor": "Float64Array",
  6509. "array": [
  6510. 0,
  6511. 0,
  6512. 0,
  6513. 0,
  6514. 0,
  6515. 0,
  6516. 1,
  6517. 1,
  6518. 1,
  6519. 1
  6520. ]
  6521. },
  6522. "_eulerAngles": {
  6523. "__type__": "cc.Vec3",
  6524. "x": 0,
  6525. "y": 0,
  6526. "z": 0
  6527. },
  6528. "_skewX": 0,
  6529. "_skewY": 0,
  6530. "_is3DNode": false,
  6531. "_groupIndex": 0,
  6532. "groupIndex": 0,
  6533. "_id": "8e+nA7SI9OxoMYjOyN2DPk"
  6534. },
  6535. {
  6536. "__type__": "cc.Label",
  6537. "_name": "",
  6538. "_objFlags": 0,
  6539. "node": {
  6540. "__id__": 132
  6541. },
  6542. "_enabled": true,
  6543. "_materials": [
  6544. {
  6545. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6546. }
  6547. ],
  6548. "_useOriginalSize": false,
  6549. "_string": "关闭渲染陀螺仪",
  6550. "_N$string": "关闭渲染陀螺仪",
  6551. "_fontSize": 20,
  6552. "_lineHeight": 40,
  6553. "_enableWrapText": false,
  6554. "_N$file": null,
  6555. "_isSystemFontUsed": true,
  6556. "_spacingX": 0,
  6557. "_batchAsBitmap": false,
  6558. "_styleFlags": 0,
  6559. "_underlineHeight": 0,
  6560. "_N$horizontalAlign": 1,
  6561. "_N$verticalAlign": 1,
  6562. "_N$fontFamily": "Arial",
  6563. "_N$overflow": 1,
  6564. "_N$cacheMode": 1,
  6565. "_id": "224DXq6RBKfbarYtmew/YX"
  6566. },
  6567. {
  6568. "__type__": "cc.Sprite",
  6569. "_name": "",
  6570. "_objFlags": 0,
  6571. "node": {
  6572. "__id__": 131
  6573. },
  6574. "_enabled": true,
  6575. "_materials": [
  6576. {
  6577. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6578. }
  6579. ],
  6580. "_srcBlendFactor": 770,
  6581. "_dstBlendFactor": 771,
  6582. "_spriteFrame": {
  6583. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6584. },
  6585. "_type": 1,
  6586. "_sizeMode": 0,
  6587. "_fillType": 0,
  6588. "_fillCenter": {
  6589. "__type__": "cc.Vec2",
  6590. "x": 0,
  6591. "y": 0
  6592. },
  6593. "_fillStart": 0,
  6594. "_fillRange": 0,
  6595. "_isTrimmedMode": true,
  6596. "_atlas": null,
  6597. "_id": "12YtAQiEBMhqcfI+CgQDnx"
  6598. },
  6599. {
  6600. "__type__": "cc.Widget",
  6601. "_name": "",
  6602. "_objFlags": 0,
  6603. "node": {
  6604. "__id__": 131
  6605. },
  6606. "_enabled": true,
  6607. "alignMode": 0,
  6608. "_target": null,
  6609. "_alignFlags": 45,
  6610. "_left": 0,
  6611. "_right": 0,
  6612. "_top": 0,
  6613. "_bottom": 0,
  6614. "_verticalCenter": 0,
  6615. "_horizontalCenter": 0,
  6616. "_isAbsLeft": true,
  6617. "_isAbsRight": true,
  6618. "_isAbsTop": true,
  6619. "_isAbsBottom": true,
  6620. "_isAbsHorizontalCenter": true,
  6621. "_isAbsVerticalCenter": true,
  6622. "_originalWidth": 100,
  6623. "_originalHeight": 40,
  6624. "_id": "c7eiRjU5RB45QeyF/D7GxD"
  6625. },
  6626. {
  6627. "__type__": "cc.Button",
  6628. "_name": "",
  6629. "_objFlags": 0,
  6630. "node": {
  6631. "__id__": 130
  6632. },
  6633. "_enabled": true,
  6634. "_normalMaterial": {
  6635. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6636. },
  6637. "_grayMaterial": null,
  6638. "duration": 0.1,
  6639. "zoomScale": 1.2,
  6640. "clickEvents": [
  6641. {
  6642. "__id__": 137
  6643. }
  6644. ],
  6645. "_N$interactable": true,
  6646. "_N$enableAutoGrayEffect": false,
  6647. "_N$transition": 2,
  6648. "transition": 2,
  6649. "_N$normalColor": {
  6650. "__type__": "cc.Color",
  6651. "r": 230,
  6652. "g": 230,
  6653. "b": 230,
  6654. "a": 255
  6655. },
  6656. "_N$pressedColor": {
  6657. "__type__": "cc.Color",
  6658. "r": 200,
  6659. "g": 200,
  6660. "b": 200,
  6661. "a": 255
  6662. },
  6663. "pressedColor": {
  6664. "__type__": "cc.Color",
  6665. "r": 200,
  6666. "g": 200,
  6667. "b": 200,
  6668. "a": 255
  6669. },
  6670. "_N$hoverColor": {
  6671. "__type__": "cc.Color",
  6672. "r": 255,
  6673. "g": 255,
  6674. "b": 255,
  6675. "a": 255
  6676. },
  6677. "hoverColor": {
  6678. "__type__": "cc.Color",
  6679. "r": 255,
  6680. "g": 255,
  6681. "b": 255,
  6682. "a": 255
  6683. },
  6684. "_N$disabledColor": {
  6685. "__type__": "cc.Color",
  6686. "r": 120,
  6687. "g": 120,
  6688. "b": 120,
  6689. "a": 200
  6690. },
  6691. "_N$normalSprite": {
  6692. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6693. },
  6694. "_N$pressedSprite": {
  6695. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6696. },
  6697. "pressedSprite": {
  6698. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  6699. },
  6700. "_N$hoverSprite": {
  6701. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6702. },
  6703. "hoverSprite": {
  6704. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6705. },
  6706. "_N$disabledSprite": {
  6707. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  6708. },
  6709. "_N$target": {
  6710. "__id__": 131
  6711. },
  6712. "_id": "98R0MJ7L1DPpy580nnhJgn"
  6713. },
  6714. {
  6715. "__type__": "cc.ClickEvent",
  6716. "target": {
  6717. "__id__": 2
  6718. },
  6719. "component": "",
  6720. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  6721. "handler": "onChangeGyroDraw",
  6722. "customEventData": ""
  6723. },
  6724. {
  6725. "__type__": "cc.Node",
  6726. "_name": "renderGyroLog",
  6727. "_objFlags": 0,
  6728. "_parent": {
  6729. "__id__": 61
  6730. },
  6731. "_children": [
  6732. {
  6733. "__id__": 139
  6734. }
  6735. ],
  6736. "_active": true,
  6737. "_components": [
  6738. {
  6739. "__id__": 144
  6740. }
  6741. ],
  6742. "_prefab": null,
  6743. "_opacity": 255,
  6744. "_color": {
  6745. "__type__": "cc.Color",
  6746. "r": 255,
  6747. "g": 255,
  6748. "b": 255,
  6749. "a": 255
  6750. },
  6751. "_contentSize": {
  6752. "__type__": "cc.Size",
  6753. "width": 150,
  6754. "height": 40
  6755. },
  6756. "_anchorPoint": {
  6757. "__type__": "cc.Vec2",
  6758. "x": 0.5,
  6759. "y": 0.5
  6760. },
  6761. "_trs": {
  6762. "__type__": "TypedArray",
  6763. "ctor": "Float64Array",
  6764. "array": [
  6765. 243.483,
  6766. -64.839,
  6767. 0,
  6768. 0,
  6769. 0,
  6770. 0,
  6771. 1,
  6772. 1.2,
  6773. 1.2,
  6774. 1
  6775. ]
  6776. },
  6777. "_eulerAngles": {
  6778. "__type__": "cc.Vec3",
  6779. "x": 0,
  6780. "y": 0,
  6781. "z": 0
  6782. },
  6783. "_skewX": 0,
  6784. "_skewY": 0,
  6785. "_is3DNode": false,
  6786. "_groupIndex": 0,
  6787. "groupIndex": 0,
  6788. "_id": "4626Q85lNGYoww7xFOXmAx"
  6789. },
  6790. {
  6791. "__type__": "cc.Node",
  6792. "_name": "Background",
  6793. "_objFlags": 512,
  6794. "_parent": {
  6795. "__id__": 138
  6796. },
  6797. "_children": [
  6798. {
  6799. "__id__": 140
  6800. }
  6801. ],
  6802. "_active": true,
  6803. "_components": [
  6804. {
  6805. "__id__": 142
  6806. },
  6807. {
  6808. "__id__": 143
  6809. }
  6810. ],
  6811. "_prefab": null,
  6812. "_opacity": 255,
  6813. "_color": {
  6814. "__type__": "cc.Color",
  6815. "r": 255,
  6816. "g": 255,
  6817. "b": 255,
  6818. "a": 255
  6819. },
  6820. "_contentSize": {
  6821. "__type__": "cc.Size",
  6822. "width": 150,
  6823. "height": 40
  6824. },
  6825. "_anchorPoint": {
  6826. "__type__": "cc.Vec2",
  6827. "x": 0.5,
  6828. "y": 0.5
  6829. },
  6830. "_trs": {
  6831. "__type__": "TypedArray",
  6832. "ctor": "Float64Array",
  6833. "array": [
  6834. 0,
  6835. 0,
  6836. 0,
  6837. 0,
  6838. 0,
  6839. 0,
  6840. 1,
  6841. 1,
  6842. 1,
  6843. 1
  6844. ]
  6845. },
  6846. "_eulerAngles": {
  6847. "__type__": "cc.Vec3",
  6848. "x": 0,
  6849. "y": 0,
  6850. "z": 0
  6851. },
  6852. "_skewX": 0,
  6853. "_skewY": 0,
  6854. "_is3DNode": false,
  6855. "_groupIndex": 0,
  6856. "groupIndex": 0,
  6857. "_id": "e1O8ThBVlOh41ItyDI6gYT"
  6858. },
  6859. {
  6860. "__type__": "cc.Node",
  6861. "_name": "Label",
  6862. "_objFlags": 512,
  6863. "_parent": {
  6864. "__id__": 139
  6865. },
  6866. "_children": [],
  6867. "_active": true,
  6868. "_components": [
  6869. {
  6870. "__id__": 141
  6871. }
  6872. ],
  6873. "_prefab": null,
  6874. "_opacity": 255,
  6875. "_color": {
  6876. "__type__": "cc.Color",
  6877. "r": 0,
  6878. "g": 0,
  6879. "b": 0,
  6880. "a": 255
  6881. },
  6882. "_contentSize": {
  6883. "__type__": "cc.Size",
  6884. "width": 150,
  6885. "height": 40
  6886. },
  6887. "_anchorPoint": {
  6888. "__type__": "cc.Vec2",
  6889. "x": 0.5,
  6890. "y": 0.5
  6891. },
  6892. "_trs": {
  6893. "__type__": "TypedArray",
  6894. "ctor": "Float64Array",
  6895. "array": [
  6896. 0,
  6897. 0,
  6898. 0,
  6899. 0,
  6900. 0,
  6901. 0,
  6902. 1,
  6903. 1,
  6904. 1,
  6905. 1
  6906. ]
  6907. },
  6908. "_eulerAngles": {
  6909. "__type__": "cc.Vec3",
  6910. "x": 0,
  6911. "y": 0,
  6912. "z": 0
  6913. },
  6914. "_skewX": 0,
  6915. "_skewY": 0,
  6916. "_is3DNode": false,
  6917. "_groupIndex": 0,
  6918. "groupIndex": 0,
  6919. "_id": "cfof0l63NEUqki4BIT7Obp"
  6920. },
  6921. {
  6922. "__type__": "cc.Label",
  6923. "_name": "",
  6924. "_objFlags": 0,
  6925. "node": {
  6926. "__id__": 140
  6927. },
  6928. "_enabled": true,
  6929. "_materials": [
  6930. {
  6931. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6932. }
  6933. ],
  6934. "_useOriginalSize": false,
  6935. "_string": "开启陀螺仪日志",
  6936. "_N$string": "开启陀螺仪日志",
  6937. "_fontSize": 20,
  6938. "_lineHeight": 40,
  6939. "_enableWrapText": false,
  6940. "_N$file": null,
  6941. "_isSystemFontUsed": true,
  6942. "_spacingX": 0,
  6943. "_batchAsBitmap": false,
  6944. "_styleFlags": 0,
  6945. "_underlineHeight": 0,
  6946. "_N$horizontalAlign": 1,
  6947. "_N$verticalAlign": 1,
  6948. "_N$fontFamily": "Arial",
  6949. "_N$overflow": 1,
  6950. "_N$cacheMode": 1,
  6951. "_id": "53LMAV/wpEJIW5j1xVBfPt"
  6952. },
  6953. {
  6954. "__type__": "cc.Sprite",
  6955. "_name": "",
  6956. "_objFlags": 0,
  6957. "node": {
  6958. "__id__": 139
  6959. },
  6960. "_enabled": true,
  6961. "_materials": [
  6962. {
  6963. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6964. }
  6965. ],
  6966. "_srcBlendFactor": 770,
  6967. "_dstBlendFactor": 771,
  6968. "_spriteFrame": {
  6969. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  6970. },
  6971. "_type": 1,
  6972. "_sizeMode": 0,
  6973. "_fillType": 0,
  6974. "_fillCenter": {
  6975. "__type__": "cc.Vec2",
  6976. "x": 0,
  6977. "y": 0
  6978. },
  6979. "_fillStart": 0,
  6980. "_fillRange": 0,
  6981. "_isTrimmedMode": true,
  6982. "_atlas": null,
  6983. "_id": "3425Tk+zNL6I0+i8/AmIJR"
  6984. },
  6985. {
  6986. "__type__": "cc.Widget",
  6987. "_name": "",
  6988. "_objFlags": 0,
  6989. "node": {
  6990. "__id__": 139
  6991. },
  6992. "_enabled": true,
  6993. "alignMode": 0,
  6994. "_target": null,
  6995. "_alignFlags": 45,
  6996. "_left": 0,
  6997. "_right": 0,
  6998. "_top": 0,
  6999. "_bottom": 0,
  7000. "_verticalCenter": 0,
  7001. "_horizontalCenter": 0,
  7002. "_isAbsLeft": true,
  7003. "_isAbsRight": true,
  7004. "_isAbsTop": true,
  7005. "_isAbsBottom": true,
  7006. "_isAbsHorizontalCenter": true,
  7007. "_isAbsVerticalCenter": true,
  7008. "_originalWidth": 100,
  7009. "_originalHeight": 40,
  7010. "_id": "0a4VvFjRxBYr9z3VpJE3NJ"
  7011. },
  7012. {
  7013. "__type__": "cc.Button",
  7014. "_name": "",
  7015. "_objFlags": 0,
  7016. "node": {
  7017. "__id__": 138
  7018. },
  7019. "_enabled": true,
  7020. "_normalMaterial": {
  7021. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7022. },
  7023. "_grayMaterial": null,
  7024. "duration": 0.1,
  7025. "zoomScale": 1.2,
  7026. "clickEvents": [
  7027. {
  7028. "__id__": 145
  7029. }
  7030. ],
  7031. "_N$interactable": true,
  7032. "_N$enableAutoGrayEffect": false,
  7033. "_N$transition": 2,
  7034. "transition": 2,
  7035. "_N$normalColor": {
  7036. "__type__": "cc.Color",
  7037. "r": 230,
  7038. "g": 230,
  7039. "b": 230,
  7040. "a": 255
  7041. },
  7042. "_N$pressedColor": {
  7043. "__type__": "cc.Color",
  7044. "r": 200,
  7045. "g": 200,
  7046. "b": 200,
  7047. "a": 255
  7048. },
  7049. "pressedColor": {
  7050. "__type__": "cc.Color",
  7051. "r": 200,
  7052. "g": 200,
  7053. "b": 200,
  7054. "a": 255
  7055. },
  7056. "_N$hoverColor": {
  7057. "__type__": "cc.Color",
  7058. "r": 255,
  7059. "g": 255,
  7060. "b": 255,
  7061. "a": 255
  7062. },
  7063. "hoverColor": {
  7064. "__type__": "cc.Color",
  7065. "r": 255,
  7066. "g": 255,
  7067. "b": 255,
  7068. "a": 255
  7069. },
  7070. "_N$disabledColor": {
  7071. "__type__": "cc.Color",
  7072. "r": 120,
  7073. "g": 120,
  7074. "b": 120,
  7075. "a": 200
  7076. },
  7077. "_N$normalSprite": {
  7078. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7079. },
  7080. "_N$pressedSprite": {
  7081. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7082. },
  7083. "pressedSprite": {
  7084. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7085. },
  7086. "_N$hoverSprite": {
  7087. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7088. },
  7089. "hoverSprite": {
  7090. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7091. },
  7092. "_N$disabledSprite": {
  7093. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7094. },
  7095. "_N$target": {
  7096. "__id__": 139
  7097. },
  7098. "_id": "e1+hUsRDBCyKwQJ9CMbmOj"
  7099. },
  7100. {
  7101. "__type__": "cc.ClickEvent",
  7102. "target": {
  7103. "__id__": 2
  7104. },
  7105. "component": "",
  7106. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  7107. "handler": "onShowGyroLog",
  7108. "customEventData": ""
  7109. },
  7110. {
  7111. "__type__": "cc.Node",
  7112. "_name": "b",
  7113. "_objFlags": 0,
  7114. "_parent": {
  7115. "__id__": 61
  7116. },
  7117. "_children": [
  7118. {
  7119. "__id__": 147
  7120. }
  7121. ],
  7122. "_active": true,
  7123. "_components": [
  7124. {
  7125. "__id__": 152
  7126. }
  7127. ],
  7128. "_prefab": null,
  7129. "_opacity": 255,
  7130. "_color": {
  7131. "__type__": "cc.Color",
  7132. "r": 255,
  7133. "g": 255,
  7134. "b": 255,
  7135. "a": 255
  7136. },
  7137. "_contentSize": {
  7138. "__type__": "cc.Size",
  7139. "width": 100,
  7140. "height": 40
  7141. },
  7142. "_anchorPoint": {
  7143. "__type__": "cc.Vec2",
  7144. "x": 0.5,
  7145. "y": 0.5
  7146. },
  7147. "_trs": {
  7148. "__type__": "TypedArray",
  7149. "ctor": "Float64Array",
  7150. "array": [
  7151. -266.677,
  7152. 21.015,
  7153. 0,
  7154. 0,
  7155. 0,
  7156. 0,
  7157. 1,
  7158. 1,
  7159. 1,
  7160. 1
  7161. ]
  7162. },
  7163. "_eulerAngles": {
  7164. "__type__": "cc.Vec3",
  7165. "x": 0,
  7166. "y": 0,
  7167. "z": 0
  7168. },
  7169. "_skewX": 0,
  7170. "_skewY": 0,
  7171. "_is3DNode": false,
  7172. "_groupIndex": 0,
  7173. "groupIndex": 0,
  7174. "_id": "76EwOpbLJKwLrAR4JP1ft1"
  7175. },
  7176. {
  7177. "__type__": "cc.Node",
  7178. "_name": "Background",
  7179. "_objFlags": 512,
  7180. "_parent": {
  7181. "__id__": 146
  7182. },
  7183. "_children": [
  7184. {
  7185. "__id__": 148
  7186. }
  7187. ],
  7188. "_active": true,
  7189. "_components": [
  7190. {
  7191. "__id__": 150
  7192. },
  7193. {
  7194. "__id__": 151
  7195. }
  7196. ],
  7197. "_prefab": null,
  7198. "_opacity": 255,
  7199. "_color": {
  7200. "__type__": "cc.Color",
  7201. "r": 255,
  7202. "g": 255,
  7203. "b": 255,
  7204. "a": 255
  7205. },
  7206. "_contentSize": {
  7207. "__type__": "cc.Size",
  7208. "width": 100,
  7209. "height": 40
  7210. },
  7211. "_anchorPoint": {
  7212. "__type__": "cc.Vec2",
  7213. "x": 0.5,
  7214. "y": 0.5
  7215. },
  7216. "_trs": {
  7217. "__type__": "TypedArray",
  7218. "ctor": "Float64Array",
  7219. "array": [
  7220. 0,
  7221. 0,
  7222. 0,
  7223. 0,
  7224. 0,
  7225. 0,
  7226. 1,
  7227. 1,
  7228. 1,
  7229. 1
  7230. ]
  7231. },
  7232. "_eulerAngles": {
  7233. "__type__": "cc.Vec3",
  7234. "x": 0,
  7235. "y": 0,
  7236. "z": 0
  7237. },
  7238. "_skewX": 0,
  7239. "_skewY": 0,
  7240. "_is3DNode": false,
  7241. "_groupIndex": 0,
  7242. "groupIndex": 0,
  7243. "_id": "e46Q5PC/pFKa9pgFSrIXlc"
  7244. },
  7245. {
  7246. "__type__": "cc.Node",
  7247. "_name": "Label",
  7248. "_objFlags": 512,
  7249. "_parent": {
  7250. "__id__": 147
  7251. },
  7252. "_children": [],
  7253. "_active": true,
  7254. "_components": [
  7255. {
  7256. "__id__": 149
  7257. }
  7258. ],
  7259. "_prefab": null,
  7260. "_opacity": 255,
  7261. "_color": {
  7262. "__type__": "cc.Color",
  7263. "r": 0,
  7264. "g": 0,
  7265. "b": 0,
  7266. "a": 255
  7267. },
  7268. "_contentSize": {
  7269. "__type__": "cc.Size",
  7270. "width": 100,
  7271. "height": 40
  7272. },
  7273. "_anchorPoint": {
  7274. "__type__": "cc.Vec2",
  7275. "x": 0.5,
  7276. "y": 0.5
  7277. },
  7278. "_trs": {
  7279. "__type__": "TypedArray",
  7280. "ctor": "Float64Array",
  7281. "array": [
  7282. 0,
  7283. 0,
  7284. 0,
  7285. 0,
  7286. 0,
  7287. 0,
  7288. 1,
  7289. 1,
  7290. 1,
  7291. 1
  7292. ]
  7293. },
  7294. "_eulerAngles": {
  7295. "__type__": "cc.Vec3",
  7296. "x": 0,
  7297. "y": 0,
  7298. "z": 0
  7299. },
  7300. "_skewX": 0,
  7301. "_skewY": 0,
  7302. "_is3DNode": false,
  7303. "_groupIndex": 0,
  7304. "groupIndex": 0,
  7305. "_id": "46F1apXZ9FBJs/5IjbdpUC"
  7306. },
  7307. {
  7308. "__type__": "cc.Label",
  7309. "_name": "",
  7310. "_objFlags": 0,
  7311. "node": {
  7312. "__id__": 148
  7313. },
  7314. "_enabled": true,
  7315. "_materials": [
  7316. {
  7317. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7318. }
  7319. ],
  7320. "_useOriginalSize": false,
  7321. "_string": "20ms",
  7322. "_N$string": "20ms",
  7323. "_fontSize": 20,
  7324. "_lineHeight": 40,
  7325. "_enableWrapText": false,
  7326. "_N$file": null,
  7327. "_isSystemFontUsed": true,
  7328. "_spacingX": 0,
  7329. "_batchAsBitmap": false,
  7330. "_styleFlags": 0,
  7331. "_underlineHeight": 0,
  7332. "_N$horizontalAlign": 1,
  7333. "_N$verticalAlign": 1,
  7334. "_N$fontFamily": "Arial",
  7335. "_N$overflow": 1,
  7336. "_N$cacheMode": 1,
  7337. "_id": "0fCxFdbgRCi6+vKGiOQzAj"
  7338. },
  7339. {
  7340. "__type__": "cc.Sprite",
  7341. "_name": "",
  7342. "_objFlags": 0,
  7343. "node": {
  7344. "__id__": 147
  7345. },
  7346. "_enabled": true,
  7347. "_materials": [
  7348. {
  7349. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7350. }
  7351. ],
  7352. "_srcBlendFactor": 770,
  7353. "_dstBlendFactor": 771,
  7354. "_spriteFrame": {
  7355. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7356. },
  7357. "_type": 1,
  7358. "_sizeMode": 0,
  7359. "_fillType": 0,
  7360. "_fillCenter": {
  7361. "__type__": "cc.Vec2",
  7362. "x": 0,
  7363. "y": 0
  7364. },
  7365. "_fillStart": 0,
  7366. "_fillRange": 0,
  7367. "_isTrimmedMode": true,
  7368. "_atlas": null,
  7369. "_id": "efMIwgYvpPBLb4hUegVLfx"
  7370. },
  7371. {
  7372. "__type__": "cc.Widget",
  7373. "_name": "",
  7374. "_objFlags": 0,
  7375. "node": {
  7376. "__id__": 147
  7377. },
  7378. "_enabled": true,
  7379. "alignMode": 0,
  7380. "_target": null,
  7381. "_alignFlags": 45,
  7382. "_left": 0,
  7383. "_right": 0,
  7384. "_top": 0,
  7385. "_bottom": 0,
  7386. "_verticalCenter": 0,
  7387. "_horizontalCenter": 0,
  7388. "_isAbsLeft": true,
  7389. "_isAbsRight": true,
  7390. "_isAbsTop": true,
  7391. "_isAbsBottom": true,
  7392. "_isAbsHorizontalCenter": true,
  7393. "_isAbsVerticalCenter": true,
  7394. "_originalWidth": 100,
  7395. "_originalHeight": 40,
  7396. "_id": "8bS9EXFYJAGKHbSAfiyiaa"
  7397. },
  7398. {
  7399. "__type__": "cc.Button",
  7400. "_name": "",
  7401. "_objFlags": 0,
  7402. "node": {
  7403. "__id__": 146
  7404. },
  7405. "_enabled": true,
  7406. "_normalMaterial": {
  7407. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7408. },
  7409. "_grayMaterial": null,
  7410. "duration": 0.1,
  7411. "zoomScale": 1.2,
  7412. "clickEvents": [
  7413. {
  7414. "__id__": 153
  7415. }
  7416. ],
  7417. "_N$interactable": true,
  7418. "_N$enableAutoGrayEffect": false,
  7419. "_N$transition": 2,
  7420. "transition": 2,
  7421. "_N$normalColor": {
  7422. "__type__": "cc.Color",
  7423. "r": 230,
  7424. "g": 230,
  7425. "b": 230,
  7426. "a": 255
  7427. },
  7428. "_N$pressedColor": {
  7429. "__type__": "cc.Color",
  7430. "r": 200,
  7431. "g": 200,
  7432. "b": 200,
  7433. "a": 255
  7434. },
  7435. "pressedColor": {
  7436. "__type__": "cc.Color",
  7437. "r": 200,
  7438. "g": 200,
  7439. "b": 200,
  7440. "a": 255
  7441. },
  7442. "_N$hoverColor": {
  7443. "__type__": "cc.Color",
  7444. "r": 255,
  7445. "g": 255,
  7446. "b": 255,
  7447. "a": 255
  7448. },
  7449. "hoverColor": {
  7450. "__type__": "cc.Color",
  7451. "r": 255,
  7452. "g": 255,
  7453. "b": 255,
  7454. "a": 255
  7455. },
  7456. "_N$disabledColor": {
  7457. "__type__": "cc.Color",
  7458. "r": 120,
  7459. "g": 120,
  7460. "b": 120,
  7461. "a": 200
  7462. },
  7463. "_N$normalSprite": {
  7464. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7465. },
  7466. "_N$pressedSprite": {
  7467. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7468. },
  7469. "pressedSprite": {
  7470. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7471. },
  7472. "_N$hoverSprite": {
  7473. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7474. },
  7475. "hoverSprite": {
  7476. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7477. },
  7478. "_N$disabledSprite": {
  7479. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7480. },
  7481. "_N$target": {
  7482. "__id__": 147
  7483. },
  7484. "_id": "1e6TWTNa1HPJHMUxwUaGq0"
  7485. },
  7486. {
  7487. "__type__": "cc.ClickEvent",
  7488. "target": {
  7489. "__id__": 2
  7490. },
  7491. "component": "",
  7492. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  7493. "handler": "onSendWriteBLEDataValue",
  7494. "customEventData": "b"
  7495. },
  7496. {
  7497. "__type__": "cc.Node",
  7498. "_name": "c",
  7499. "_objFlags": 0,
  7500. "_parent": {
  7501. "__id__": 61
  7502. },
  7503. "_children": [
  7504. {
  7505. "__id__": 155
  7506. }
  7507. ],
  7508. "_active": true,
  7509. "_components": [
  7510. {
  7511. "__id__": 160
  7512. }
  7513. ],
  7514. "_prefab": null,
  7515. "_opacity": 255,
  7516. "_color": {
  7517. "__type__": "cc.Color",
  7518. "r": 255,
  7519. "g": 255,
  7520. "b": 255,
  7521. "a": 255
  7522. },
  7523. "_contentSize": {
  7524. "__type__": "cc.Size",
  7525. "width": 100,
  7526. "height": 40
  7527. },
  7528. "_anchorPoint": {
  7529. "__type__": "cc.Vec2",
  7530. "x": 0.5,
  7531. "y": 0.5
  7532. },
  7533. "_trs": {
  7534. "__type__": "TypedArray",
  7535. "ctor": "Float64Array",
  7536. "array": [
  7537. -147.217,
  7538. 21.015,
  7539. 0,
  7540. 0,
  7541. 0,
  7542. 0,
  7543. 1,
  7544. 1,
  7545. 1,
  7546. 1
  7547. ]
  7548. },
  7549. "_eulerAngles": {
  7550. "__type__": "cc.Vec3",
  7551. "x": 0,
  7552. "y": 0,
  7553. "z": 0
  7554. },
  7555. "_skewX": 0,
  7556. "_skewY": 0,
  7557. "_is3DNode": false,
  7558. "_groupIndex": 0,
  7559. "groupIndex": 0,
  7560. "_id": "3dt2Uc4g5H+bnihmQBD1tc"
  7561. },
  7562. {
  7563. "__type__": "cc.Node",
  7564. "_name": "Background",
  7565. "_objFlags": 512,
  7566. "_parent": {
  7567. "__id__": 154
  7568. },
  7569. "_children": [
  7570. {
  7571. "__id__": 156
  7572. }
  7573. ],
  7574. "_active": true,
  7575. "_components": [
  7576. {
  7577. "__id__": 158
  7578. },
  7579. {
  7580. "__id__": 159
  7581. }
  7582. ],
  7583. "_prefab": null,
  7584. "_opacity": 255,
  7585. "_color": {
  7586. "__type__": "cc.Color",
  7587. "r": 255,
  7588. "g": 255,
  7589. "b": 255,
  7590. "a": 255
  7591. },
  7592. "_contentSize": {
  7593. "__type__": "cc.Size",
  7594. "width": 100,
  7595. "height": 40
  7596. },
  7597. "_anchorPoint": {
  7598. "__type__": "cc.Vec2",
  7599. "x": 0.5,
  7600. "y": 0.5
  7601. },
  7602. "_trs": {
  7603. "__type__": "TypedArray",
  7604. "ctor": "Float64Array",
  7605. "array": [
  7606. 0,
  7607. 0,
  7608. 0,
  7609. 0,
  7610. 0,
  7611. 0,
  7612. 1,
  7613. 1,
  7614. 1,
  7615. 1
  7616. ]
  7617. },
  7618. "_eulerAngles": {
  7619. "__type__": "cc.Vec3",
  7620. "x": 0,
  7621. "y": 0,
  7622. "z": 0
  7623. },
  7624. "_skewX": 0,
  7625. "_skewY": 0,
  7626. "_is3DNode": false,
  7627. "_groupIndex": 0,
  7628. "groupIndex": 0,
  7629. "_id": "80fd17W0RCcbt6h+1r9drM"
  7630. },
  7631. {
  7632. "__type__": "cc.Node",
  7633. "_name": "Label",
  7634. "_objFlags": 512,
  7635. "_parent": {
  7636. "__id__": 155
  7637. },
  7638. "_children": [],
  7639. "_active": true,
  7640. "_components": [
  7641. {
  7642. "__id__": 157
  7643. }
  7644. ],
  7645. "_prefab": null,
  7646. "_opacity": 255,
  7647. "_color": {
  7648. "__type__": "cc.Color",
  7649. "r": 0,
  7650. "g": 0,
  7651. "b": 0,
  7652. "a": 255
  7653. },
  7654. "_contentSize": {
  7655. "__type__": "cc.Size",
  7656. "width": 100,
  7657. "height": 40
  7658. },
  7659. "_anchorPoint": {
  7660. "__type__": "cc.Vec2",
  7661. "x": 0.5,
  7662. "y": 0.5
  7663. },
  7664. "_trs": {
  7665. "__type__": "TypedArray",
  7666. "ctor": "Float64Array",
  7667. "array": [
  7668. 0,
  7669. 0,
  7670. 0,
  7671. 0,
  7672. 0,
  7673. 0,
  7674. 1,
  7675. 1,
  7676. 1,
  7677. 1
  7678. ]
  7679. },
  7680. "_eulerAngles": {
  7681. "__type__": "cc.Vec3",
  7682. "x": 0,
  7683. "y": 0,
  7684. "z": 0
  7685. },
  7686. "_skewX": 0,
  7687. "_skewY": 0,
  7688. "_is3DNode": false,
  7689. "_groupIndex": 0,
  7690. "groupIndex": 0,
  7691. "_id": "bdmokQ4GJNN4YdZJANJeSY"
  7692. },
  7693. {
  7694. "__type__": "cc.Label",
  7695. "_name": "",
  7696. "_objFlags": 0,
  7697. "node": {
  7698. "__id__": 156
  7699. },
  7700. "_enabled": true,
  7701. "_materials": [
  7702. {
  7703. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7704. }
  7705. ],
  7706. "_useOriginalSize": false,
  7707. "_string": "60ms",
  7708. "_N$string": "60ms",
  7709. "_fontSize": 20,
  7710. "_lineHeight": 40,
  7711. "_enableWrapText": false,
  7712. "_N$file": null,
  7713. "_isSystemFontUsed": true,
  7714. "_spacingX": 0,
  7715. "_batchAsBitmap": false,
  7716. "_styleFlags": 0,
  7717. "_underlineHeight": 0,
  7718. "_N$horizontalAlign": 1,
  7719. "_N$verticalAlign": 1,
  7720. "_N$fontFamily": "Arial",
  7721. "_N$overflow": 1,
  7722. "_N$cacheMode": 1,
  7723. "_id": "86tYw/dMpERZzEuwRgfUWW"
  7724. },
  7725. {
  7726. "__type__": "cc.Sprite",
  7727. "_name": "",
  7728. "_objFlags": 0,
  7729. "node": {
  7730. "__id__": 155
  7731. },
  7732. "_enabled": true,
  7733. "_materials": [
  7734. {
  7735. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7736. }
  7737. ],
  7738. "_srcBlendFactor": 770,
  7739. "_dstBlendFactor": 771,
  7740. "_spriteFrame": {
  7741. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7742. },
  7743. "_type": 1,
  7744. "_sizeMode": 0,
  7745. "_fillType": 0,
  7746. "_fillCenter": {
  7747. "__type__": "cc.Vec2",
  7748. "x": 0,
  7749. "y": 0
  7750. },
  7751. "_fillStart": 0,
  7752. "_fillRange": 0,
  7753. "_isTrimmedMode": true,
  7754. "_atlas": null,
  7755. "_id": "71yn9fPwJCXqQq5IkE6e5R"
  7756. },
  7757. {
  7758. "__type__": "cc.Widget",
  7759. "_name": "",
  7760. "_objFlags": 0,
  7761. "node": {
  7762. "__id__": 155
  7763. },
  7764. "_enabled": true,
  7765. "alignMode": 0,
  7766. "_target": null,
  7767. "_alignFlags": 45,
  7768. "_left": 0,
  7769. "_right": 0,
  7770. "_top": 0,
  7771. "_bottom": 0,
  7772. "_verticalCenter": 0,
  7773. "_horizontalCenter": 0,
  7774. "_isAbsLeft": true,
  7775. "_isAbsRight": true,
  7776. "_isAbsTop": true,
  7777. "_isAbsBottom": true,
  7778. "_isAbsHorizontalCenter": true,
  7779. "_isAbsVerticalCenter": true,
  7780. "_originalWidth": 100,
  7781. "_originalHeight": 40,
  7782. "_id": "166NZ6fIhAIK/JZvMZ4Krr"
  7783. },
  7784. {
  7785. "__type__": "cc.Button",
  7786. "_name": "",
  7787. "_objFlags": 0,
  7788. "node": {
  7789. "__id__": 154
  7790. },
  7791. "_enabled": true,
  7792. "_normalMaterial": {
  7793. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7794. },
  7795. "_grayMaterial": null,
  7796. "duration": 0.1,
  7797. "zoomScale": 1.2,
  7798. "clickEvents": [
  7799. {
  7800. "__id__": 161
  7801. }
  7802. ],
  7803. "_N$interactable": true,
  7804. "_N$enableAutoGrayEffect": false,
  7805. "_N$transition": 2,
  7806. "transition": 2,
  7807. "_N$normalColor": {
  7808. "__type__": "cc.Color",
  7809. "r": 230,
  7810. "g": 230,
  7811. "b": 230,
  7812. "a": 255
  7813. },
  7814. "_N$pressedColor": {
  7815. "__type__": "cc.Color",
  7816. "r": 200,
  7817. "g": 200,
  7818. "b": 200,
  7819. "a": 255
  7820. },
  7821. "pressedColor": {
  7822. "__type__": "cc.Color",
  7823. "r": 200,
  7824. "g": 200,
  7825. "b": 200,
  7826. "a": 255
  7827. },
  7828. "_N$hoverColor": {
  7829. "__type__": "cc.Color",
  7830. "r": 255,
  7831. "g": 255,
  7832. "b": 255,
  7833. "a": 255
  7834. },
  7835. "hoverColor": {
  7836. "__type__": "cc.Color",
  7837. "r": 255,
  7838. "g": 255,
  7839. "b": 255,
  7840. "a": 255
  7841. },
  7842. "_N$disabledColor": {
  7843. "__type__": "cc.Color",
  7844. "r": 120,
  7845. "g": 120,
  7846. "b": 120,
  7847. "a": 200
  7848. },
  7849. "_N$normalSprite": {
  7850. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7851. },
  7852. "_N$pressedSprite": {
  7853. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7854. },
  7855. "pressedSprite": {
  7856. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7857. },
  7858. "_N$hoverSprite": {
  7859. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7860. },
  7861. "hoverSprite": {
  7862. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7863. },
  7864. "_N$disabledSprite": {
  7865. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7866. },
  7867. "_N$target": {
  7868. "__id__": 155
  7869. },
  7870. "_id": "81BcjKXixKz47b9Up6WBwR"
  7871. },
  7872. {
  7873. "__type__": "cc.ClickEvent",
  7874. "target": {
  7875. "__id__": 2
  7876. },
  7877. "component": "",
  7878. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  7879. "handler": "onSendWriteBLEDataValue",
  7880. "customEventData": "c"
  7881. },
  7882. {
  7883. "__type__": "cc.Node",
  7884. "_name": "d",
  7885. "_objFlags": 0,
  7886. "_parent": {
  7887. "__id__": 61
  7888. },
  7889. "_children": [
  7890. {
  7891. "__id__": 163
  7892. }
  7893. ],
  7894. "_active": true,
  7895. "_components": [
  7896. {
  7897. "__id__": 168
  7898. }
  7899. ],
  7900. "_prefab": null,
  7901. "_opacity": 255,
  7902. "_color": {
  7903. "__type__": "cc.Color",
  7904. "r": 255,
  7905. "g": 255,
  7906. "b": 255,
  7907. "a": 255
  7908. },
  7909. "_contentSize": {
  7910. "__type__": "cc.Size",
  7911. "width": 100,
  7912. "height": 40
  7913. },
  7914. "_anchorPoint": {
  7915. "__type__": "cc.Vec2",
  7916. "x": 0.5,
  7917. "y": 0.5
  7918. },
  7919. "_trs": {
  7920. "__type__": "TypedArray",
  7921. "ctor": "Float64Array",
  7922. "array": [
  7923. -25.32,
  7924. 21.015,
  7925. 0,
  7926. 0,
  7927. 0,
  7928. 0,
  7929. 1,
  7930. 1,
  7931. 1,
  7932. 1
  7933. ]
  7934. },
  7935. "_eulerAngles": {
  7936. "__type__": "cc.Vec3",
  7937. "x": 0,
  7938. "y": 0,
  7939. "z": 0
  7940. },
  7941. "_skewX": 0,
  7942. "_skewY": 0,
  7943. "_is3DNode": false,
  7944. "_groupIndex": 0,
  7945. "groupIndex": 0,
  7946. "_id": "34L7/hVvJCy6ifTmx8oaII"
  7947. },
  7948. {
  7949. "__type__": "cc.Node",
  7950. "_name": "Background",
  7951. "_objFlags": 512,
  7952. "_parent": {
  7953. "__id__": 162
  7954. },
  7955. "_children": [
  7956. {
  7957. "__id__": 164
  7958. }
  7959. ],
  7960. "_active": true,
  7961. "_components": [
  7962. {
  7963. "__id__": 166
  7964. },
  7965. {
  7966. "__id__": 167
  7967. }
  7968. ],
  7969. "_prefab": null,
  7970. "_opacity": 255,
  7971. "_color": {
  7972. "__type__": "cc.Color",
  7973. "r": 255,
  7974. "g": 255,
  7975. "b": 255,
  7976. "a": 255
  7977. },
  7978. "_contentSize": {
  7979. "__type__": "cc.Size",
  7980. "width": 100,
  7981. "height": 40
  7982. },
  7983. "_anchorPoint": {
  7984. "__type__": "cc.Vec2",
  7985. "x": 0.5,
  7986. "y": 0.5
  7987. },
  7988. "_trs": {
  7989. "__type__": "TypedArray",
  7990. "ctor": "Float64Array",
  7991. "array": [
  7992. 0,
  7993. 0,
  7994. 0,
  7995. 0,
  7996. 0,
  7997. 0,
  7998. 1,
  7999. 1,
  8000. 1,
  8001. 1
  8002. ]
  8003. },
  8004. "_eulerAngles": {
  8005. "__type__": "cc.Vec3",
  8006. "x": 0,
  8007. "y": 0,
  8008. "z": 0
  8009. },
  8010. "_skewX": 0,
  8011. "_skewY": 0,
  8012. "_is3DNode": false,
  8013. "_groupIndex": 0,
  8014. "groupIndex": 0,
  8015. "_id": "48Z1iinF1IUpTgrq1IN1I6"
  8016. },
  8017. {
  8018. "__type__": "cc.Node",
  8019. "_name": "Label",
  8020. "_objFlags": 512,
  8021. "_parent": {
  8022. "__id__": 163
  8023. },
  8024. "_children": [],
  8025. "_active": true,
  8026. "_components": [
  8027. {
  8028. "__id__": 165
  8029. }
  8030. ],
  8031. "_prefab": null,
  8032. "_opacity": 255,
  8033. "_color": {
  8034. "__type__": "cc.Color",
  8035. "r": 0,
  8036. "g": 0,
  8037. "b": 0,
  8038. "a": 255
  8039. },
  8040. "_contentSize": {
  8041. "__type__": "cc.Size",
  8042. "width": 100,
  8043. "height": 40
  8044. },
  8045. "_anchorPoint": {
  8046. "__type__": "cc.Vec2",
  8047. "x": 0.5,
  8048. "y": 0.5
  8049. },
  8050. "_trs": {
  8051. "__type__": "TypedArray",
  8052. "ctor": "Float64Array",
  8053. "array": [
  8054. 0,
  8055. 0,
  8056. 0,
  8057. 0,
  8058. 0,
  8059. 0,
  8060. 1,
  8061. 1,
  8062. 1,
  8063. 1
  8064. ]
  8065. },
  8066. "_eulerAngles": {
  8067. "__type__": "cc.Vec3",
  8068. "x": 0,
  8069. "y": 0,
  8070. "z": 0
  8071. },
  8072. "_skewX": 0,
  8073. "_skewY": 0,
  8074. "_is3DNode": false,
  8075. "_groupIndex": 0,
  8076. "groupIndex": 0,
  8077. "_id": "09sguzbgdEwZ2/nWB9InI5"
  8078. },
  8079. {
  8080. "__type__": "cc.Label",
  8081. "_name": "",
  8082. "_objFlags": 0,
  8083. "node": {
  8084. "__id__": 164
  8085. },
  8086. "_enabled": true,
  8087. "_materials": [
  8088. {
  8089. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8090. }
  8091. ],
  8092. "_useOriginalSize": false,
  8093. "_string": "100ms",
  8094. "_N$string": "100ms",
  8095. "_fontSize": 20,
  8096. "_lineHeight": 40,
  8097. "_enableWrapText": false,
  8098. "_N$file": null,
  8099. "_isSystemFontUsed": true,
  8100. "_spacingX": 0,
  8101. "_batchAsBitmap": false,
  8102. "_styleFlags": 0,
  8103. "_underlineHeight": 0,
  8104. "_N$horizontalAlign": 1,
  8105. "_N$verticalAlign": 1,
  8106. "_N$fontFamily": "Arial",
  8107. "_N$overflow": 1,
  8108. "_N$cacheMode": 1,
  8109. "_id": "ff+qG+05tLgJhNFvUD06Ow"
  8110. },
  8111. {
  8112. "__type__": "cc.Sprite",
  8113. "_name": "",
  8114. "_objFlags": 0,
  8115. "node": {
  8116. "__id__": 163
  8117. },
  8118. "_enabled": true,
  8119. "_materials": [
  8120. {
  8121. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8122. }
  8123. ],
  8124. "_srcBlendFactor": 770,
  8125. "_dstBlendFactor": 771,
  8126. "_spriteFrame": {
  8127. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8128. },
  8129. "_type": 1,
  8130. "_sizeMode": 0,
  8131. "_fillType": 0,
  8132. "_fillCenter": {
  8133. "__type__": "cc.Vec2",
  8134. "x": 0,
  8135. "y": 0
  8136. },
  8137. "_fillStart": 0,
  8138. "_fillRange": 0,
  8139. "_isTrimmedMode": true,
  8140. "_atlas": null,
  8141. "_id": "ed3IMQoZlOVp8938wOOpoN"
  8142. },
  8143. {
  8144. "__type__": "cc.Widget",
  8145. "_name": "",
  8146. "_objFlags": 0,
  8147. "node": {
  8148. "__id__": 163
  8149. },
  8150. "_enabled": true,
  8151. "alignMode": 0,
  8152. "_target": null,
  8153. "_alignFlags": 45,
  8154. "_left": 0,
  8155. "_right": 0,
  8156. "_top": 0,
  8157. "_bottom": 0,
  8158. "_verticalCenter": 0,
  8159. "_horizontalCenter": 0,
  8160. "_isAbsLeft": true,
  8161. "_isAbsRight": true,
  8162. "_isAbsTop": true,
  8163. "_isAbsBottom": true,
  8164. "_isAbsHorizontalCenter": true,
  8165. "_isAbsVerticalCenter": true,
  8166. "_originalWidth": 100,
  8167. "_originalHeight": 40,
  8168. "_id": "075lUdEp1Idrw3RnhK/CX6"
  8169. },
  8170. {
  8171. "__type__": "cc.Button",
  8172. "_name": "",
  8173. "_objFlags": 0,
  8174. "node": {
  8175. "__id__": 162
  8176. },
  8177. "_enabled": true,
  8178. "_normalMaterial": {
  8179. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8180. },
  8181. "_grayMaterial": null,
  8182. "duration": 0.1,
  8183. "zoomScale": 1.2,
  8184. "clickEvents": [
  8185. {
  8186. "__id__": 169
  8187. }
  8188. ],
  8189. "_N$interactable": true,
  8190. "_N$enableAutoGrayEffect": false,
  8191. "_N$transition": 2,
  8192. "transition": 2,
  8193. "_N$normalColor": {
  8194. "__type__": "cc.Color",
  8195. "r": 230,
  8196. "g": 230,
  8197. "b": 230,
  8198. "a": 255
  8199. },
  8200. "_N$pressedColor": {
  8201. "__type__": "cc.Color",
  8202. "r": 200,
  8203. "g": 200,
  8204. "b": 200,
  8205. "a": 255
  8206. },
  8207. "pressedColor": {
  8208. "__type__": "cc.Color",
  8209. "r": 200,
  8210. "g": 200,
  8211. "b": 200,
  8212. "a": 255
  8213. },
  8214. "_N$hoverColor": {
  8215. "__type__": "cc.Color",
  8216. "r": 255,
  8217. "g": 255,
  8218. "b": 255,
  8219. "a": 255
  8220. },
  8221. "hoverColor": {
  8222. "__type__": "cc.Color",
  8223. "r": 255,
  8224. "g": 255,
  8225. "b": 255,
  8226. "a": 255
  8227. },
  8228. "_N$disabledColor": {
  8229. "__type__": "cc.Color",
  8230. "r": 120,
  8231. "g": 120,
  8232. "b": 120,
  8233. "a": 200
  8234. },
  8235. "_N$normalSprite": {
  8236. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8237. },
  8238. "_N$pressedSprite": {
  8239. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  8240. },
  8241. "pressedSprite": {
  8242. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  8243. },
  8244. "_N$hoverSprite": {
  8245. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8246. },
  8247. "hoverSprite": {
  8248. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8249. },
  8250. "_N$disabledSprite": {
  8251. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  8252. },
  8253. "_N$target": {
  8254. "__id__": 163
  8255. },
  8256. "_id": "7cYEEcAo5GFbWnu1VmHKLn"
  8257. },
  8258. {
  8259. "__type__": "cc.ClickEvent",
  8260. "target": {
  8261. "__id__": 2
  8262. },
  8263. "component": "",
  8264. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  8265. "handler": "onSendWriteBLEDataValue",
  8266. "customEventData": "d"
  8267. },
  8268. {
  8269. "__type__": "cc.Node",
  8270. "_name": "buttons",
  8271. "_objFlags": 0,
  8272. "_parent": {
  8273. "__id__": 2
  8274. },
  8275. "_children": [
  8276. {
  8277. "__id__": 171
  8278. },
  8279. {
  8280. "__id__": 277
  8281. },
  8282. {
  8283. "__id__": 286
  8284. }
  8285. ],
  8286. "_active": false,
  8287. "_components": [],
  8288. "_prefab": null,
  8289. "_opacity": 255,
  8290. "_color": {
  8291. "__type__": "cc.Color",
  8292. "r": 255,
  8293. "g": 255,
  8294. "b": 255,
  8295. "a": 255
  8296. },
  8297. "_contentSize": {
  8298. "__type__": "cc.Size",
  8299. "width": 0,
  8300. "height": 0
  8301. },
  8302. "_anchorPoint": {
  8303. "__type__": "cc.Vec2",
  8304. "x": 0.5,
  8305. "y": 0.5
  8306. },
  8307. "_trs": {
  8308. "__type__": "TypedArray",
  8309. "ctor": "Float64Array",
  8310. "array": [
  8311. 0,
  8312. 0,
  8313. 0,
  8314. 0,
  8315. 0,
  8316. 0,
  8317. 1,
  8318. 1,
  8319. 1,
  8320. 1
  8321. ]
  8322. },
  8323. "_eulerAngles": {
  8324. "__type__": "cc.Vec3",
  8325. "x": 0,
  8326. "y": 0,
  8327. "z": 0
  8328. },
  8329. "_skewX": 0,
  8330. "_skewY": 0,
  8331. "_is3DNode": false,
  8332. "_groupIndex": 0,
  8333. "groupIndex": 0,
  8334. "_id": "954ViNSXhEkYkUode9dMt4"
  8335. },
  8336. {
  8337. "__type__": "cc.Node",
  8338. "_name": "onButton",
  8339. "_objFlags": 0,
  8340. "_parent": {
  8341. "__id__": 170
  8342. },
  8343. "_children": [
  8344. {
  8345. "__id__": 172
  8346. }
  8347. ],
  8348. "_active": true,
  8349. "_components": [
  8350. {
  8351. "__id__": 177
  8352. }
  8353. ],
  8354. "_prefab": null,
  8355. "_opacity": 255,
  8356. "_color": {
  8357. "__type__": "cc.Color",
  8358. "r": 255,
  8359. "g": 255,
  8360. "b": 255,
  8361. "a": 255
  8362. },
  8363. "_contentSize": {
  8364. "__type__": "cc.Size",
  8365. "width": 100,
  8366. "height": 40
  8367. },
  8368. "_anchorPoint": {
  8369. "__type__": "cc.Vec2",
  8370. "x": 0.5,
  8371. "y": 0.5
  8372. },
  8373. "_trs": {
  8374. "__type__": "TypedArray",
  8375. "ctor": "Float64Array",
  8376. "array": [
  8377. -26.591,
  8378. 282.793,
  8379. 0,
  8380. 0,
  8381. 0,
  8382. 0,
  8383. 1,
  8384. 1,
  8385. 1,
  8386. 1
  8387. ]
  8388. },
  8389. "_eulerAngles": {
  8390. "__type__": "cc.Vec3",
  8391. "x": 0,
  8392. "y": 0,
  8393. "z": 0
  8394. },
  8395. "_skewX": 0,
  8396. "_skewY": 0,
  8397. "_is3DNode": false,
  8398. "_groupIndex": 0,
  8399. "groupIndex": 0,
  8400. "_id": "cdR3VBOXJGYoT0rIBYkfrt"
  8401. },
  8402. {
  8403. "__type__": "cc.Node",
  8404. "_name": "Background",
  8405. "_objFlags": 512,
  8406. "_parent": {
  8407. "__id__": 171
  8408. },
  8409. "_children": [
  8410. {
  8411. "__id__": 173
  8412. }
  8413. ],
  8414. "_active": true,
  8415. "_components": [
  8416. {
  8417. "__id__": 175
  8418. },
  8419. {
  8420. "__id__": 176
  8421. }
  8422. ],
  8423. "_prefab": null,
  8424. "_opacity": 255,
  8425. "_color": {
  8426. "__type__": "cc.Color",
  8427. "r": 255,
  8428. "g": 255,
  8429. "b": 255,
  8430. "a": 255
  8431. },
  8432. "_contentSize": {
  8433. "__type__": "cc.Size",
  8434. "width": 100,
  8435. "height": 40
  8436. },
  8437. "_anchorPoint": {
  8438. "__type__": "cc.Vec2",
  8439. "x": 0.5,
  8440. "y": 0.5
  8441. },
  8442. "_trs": {
  8443. "__type__": "TypedArray",
  8444. "ctor": "Float64Array",
  8445. "array": [
  8446. 0,
  8447. 0,
  8448. 0,
  8449. 0,
  8450. 0,
  8451. 0,
  8452. 1,
  8453. 1,
  8454. 1,
  8455. 1
  8456. ]
  8457. },
  8458. "_eulerAngles": {
  8459. "__type__": "cc.Vec3",
  8460. "x": 0,
  8461. "y": 0,
  8462. "z": 0
  8463. },
  8464. "_skewX": 0,
  8465. "_skewY": 0,
  8466. "_is3DNode": false,
  8467. "_groupIndex": 0,
  8468. "groupIndex": 0,
  8469. "_id": "11Y8kjmMVG44qIaVsILkJm"
  8470. },
  8471. {
  8472. "__type__": "cc.Node",
  8473. "_name": "Label",
  8474. "_objFlags": 512,
  8475. "_parent": {
  8476. "__id__": 172
  8477. },
  8478. "_children": [],
  8479. "_active": true,
  8480. "_components": [
  8481. {
  8482. "__id__": 174
  8483. }
  8484. ],
  8485. "_prefab": null,
  8486. "_opacity": 255,
  8487. "_color": {
  8488. "__type__": "cc.Color",
  8489. "r": 0,
  8490. "g": 0,
  8491. "b": 0,
  8492. "a": 255
  8493. },
  8494. "_contentSize": {
  8495. "__type__": "cc.Size",
  8496. "width": 100,
  8497. "height": 40
  8498. },
  8499. "_anchorPoint": {
  8500. "__type__": "cc.Vec2",
  8501. "x": 0.5,
  8502. "y": 0.5
  8503. },
  8504. "_trs": {
  8505. "__type__": "TypedArray",
  8506. "ctor": "Float64Array",
  8507. "array": [
  8508. 0,
  8509. 0,
  8510. 0,
  8511. 0,
  8512. 0,
  8513. 0,
  8514. 1,
  8515. 1,
  8516. 1,
  8517. 1
  8518. ]
  8519. },
  8520. "_eulerAngles": {
  8521. "__type__": "cc.Vec3",
  8522. "x": 0,
  8523. "y": 0,
  8524. "z": 0
  8525. },
  8526. "_skewX": 0,
  8527. "_skewY": 0,
  8528. "_is3DNode": false,
  8529. "_groupIndex": 0,
  8530. "groupIndex": 0,
  8531. "_id": "e0WrCT9m1PBrv1ENQ49Qc0"
  8532. },
  8533. {
  8534. "__type__": "cc.Label",
  8535. "_name": "",
  8536. "_objFlags": 0,
  8537. "node": {
  8538. "__id__": 173
  8539. },
  8540. "_enabled": true,
  8541. "_materials": [
  8542. {
  8543. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8544. }
  8545. ],
  8546. "_useOriginalSize": false,
  8547. "_string": "cal",
  8548. "_N$string": "cal",
  8549. "_fontSize": 20,
  8550. "_lineHeight": 40,
  8551. "_enableWrapText": false,
  8552. "_N$file": null,
  8553. "_isSystemFontUsed": true,
  8554. "_spacingX": 0,
  8555. "_batchAsBitmap": false,
  8556. "_styleFlags": 0,
  8557. "_underlineHeight": 0,
  8558. "_N$horizontalAlign": 1,
  8559. "_N$verticalAlign": 1,
  8560. "_N$fontFamily": "Arial",
  8561. "_N$overflow": 1,
  8562. "_N$cacheMode": 1,
  8563. "_id": "0d1u/U+M9EvItl1Nh9CkOk"
  8564. },
  8565. {
  8566. "__type__": "cc.Sprite",
  8567. "_name": "",
  8568. "_objFlags": 0,
  8569. "node": {
  8570. "__id__": 172
  8571. },
  8572. "_enabled": true,
  8573. "_materials": [
  8574. {
  8575. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8576. }
  8577. ],
  8578. "_srcBlendFactor": 770,
  8579. "_dstBlendFactor": 771,
  8580. "_spriteFrame": {
  8581. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8582. },
  8583. "_type": 1,
  8584. "_sizeMode": 0,
  8585. "_fillType": 0,
  8586. "_fillCenter": {
  8587. "__type__": "cc.Vec2",
  8588. "x": 0,
  8589. "y": 0
  8590. },
  8591. "_fillStart": 0,
  8592. "_fillRange": 0,
  8593. "_isTrimmedMode": true,
  8594. "_atlas": null,
  8595. "_id": "81klo0PgRGP7SN2dGKULFE"
  8596. },
  8597. {
  8598. "__type__": "cc.Widget",
  8599. "_name": "",
  8600. "_objFlags": 0,
  8601. "node": {
  8602. "__id__": 172
  8603. },
  8604. "_enabled": true,
  8605. "alignMode": 0,
  8606. "_target": null,
  8607. "_alignFlags": 45,
  8608. "_left": 0,
  8609. "_right": 0,
  8610. "_top": 0,
  8611. "_bottom": 0,
  8612. "_verticalCenter": 0,
  8613. "_horizontalCenter": 0,
  8614. "_isAbsLeft": true,
  8615. "_isAbsRight": true,
  8616. "_isAbsTop": true,
  8617. "_isAbsBottom": true,
  8618. "_isAbsHorizontalCenter": true,
  8619. "_isAbsVerticalCenter": true,
  8620. "_originalWidth": 100,
  8621. "_originalHeight": 40,
  8622. "_id": "983DgCJZhAd5hs7d7Pd07D"
  8623. },
  8624. {
  8625. "__type__": "cc.Button",
  8626. "_name": "",
  8627. "_objFlags": 0,
  8628. "node": {
  8629. "__id__": 171
  8630. },
  8631. "_enabled": true,
  8632. "_normalMaterial": null,
  8633. "_grayMaterial": null,
  8634. "duration": 0.1,
  8635. "zoomScale": 1.2,
  8636. "clickEvents": [
  8637. {
  8638. "__id__": 178
  8639. }
  8640. ],
  8641. "_N$interactable": true,
  8642. "_N$enableAutoGrayEffect": false,
  8643. "_N$transition": 2,
  8644. "transition": 2,
  8645. "_N$normalColor": {
  8646. "__type__": "cc.Color",
  8647. "r": 230,
  8648. "g": 230,
  8649. "b": 230,
  8650. "a": 255
  8651. },
  8652. "_N$pressedColor": {
  8653. "__type__": "cc.Color",
  8654. "r": 200,
  8655. "g": 200,
  8656. "b": 200,
  8657. "a": 255
  8658. },
  8659. "pressedColor": {
  8660. "__type__": "cc.Color",
  8661. "r": 200,
  8662. "g": 200,
  8663. "b": 200,
  8664. "a": 255
  8665. },
  8666. "_N$hoverColor": {
  8667. "__type__": "cc.Color",
  8668. "r": 255,
  8669. "g": 255,
  8670. "b": 255,
  8671. "a": 255
  8672. },
  8673. "hoverColor": {
  8674. "__type__": "cc.Color",
  8675. "r": 255,
  8676. "g": 255,
  8677. "b": 255,
  8678. "a": 255
  8679. },
  8680. "_N$disabledColor": {
  8681. "__type__": "cc.Color",
  8682. "r": 120,
  8683. "g": 120,
  8684. "b": 120,
  8685. "a": 200
  8686. },
  8687. "_N$normalSprite": {
  8688. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8689. },
  8690. "_N$pressedSprite": {
  8691. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  8692. },
  8693. "pressedSprite": {
  8694. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  8695. },
  8696. "_N$hoverSprite": {
  8697. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8698. },
  8699. "hoverSprite": {
  8700. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  8701. },
  8702. "_N$disabledSprite": {
  8703. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  8704. },
  8705. "_N$target": {
  8706. "__id__": 172
  8707. },
  8708. "_id": "9e+6xHcVNLGIwixHFeLRYl"
  8709. },
  8710. {
  8711. "__type__": "cc.ClickEvent",
  8712. "target": {
  8713. "__id__": 179
  8714. },
  8715. "component": "",
  8716. "_componentId": "febd5f6s95JWb1i/B7xQahG",
  8717. "handler": "onButton",
  8718. "customEventData": ""
  8719. },
  8720. {
  8721. "__type__": "cc.Node",
  8722. "_name": "LineX",
  8723. "_objFlags": 0,
  8724. "_parent": {
  8725. "__id__": 180
  8726. },
  8727. "_children": [
  8728. {
  8729. "__id__": 239
  8730. },
  8731. {
  8732. "__id__": 241
  8733. },
  8734. {
  8735. "__id__": 243
  8736. },
  8737. {
  8738. "__id__": 245
  8739. }
  8740. ],
  8741. "_active": true,
  8742. "_components": [
  8743. {
  8744. "__id__": 247
  8745. },
  8746. {
  8747. "__id__": 248
  8748. }
  8749. ],
  8750. "_prefab": null,
  8751. "_opacity": 255,
  8752. "_color": {
  8753. "__type__": "cc.Color",
  8754. "r": 255,
  8755. "g": 255,
  8756. "b": 255,
  8757. "a": 255
  8758. },
  8759. "_contentSize": {
  8760. "__type__": "cc.Size",
  8761. "width": 0,
  8762. "height": 0
  8763. },
  8764. "_anchorPoint": {
  8765. "__type__": "cc.Vec2",
  8766. "x": 0.5,
  8767. "y": 0.5
  8768. },
  8769. "_trs": {
  8770. "__type__": "TypedArray",
  8771. "ctor": "Float64Array",
  8772. "array": [
  8773. -272.888,
  8774. 20,
  8775. 0,
  8776. 0,
  8777. 0,
  8778. 0,
  8779. 1,
  8780. 1,
  8781. 1,
  8782. 1
  8783. ]
  8784. },
  8785. "_eulerAngles": {
  8786. "__type__": "cc.Vec3",
  8787. "x": 0,
  8788. "y": 0,
  8789. "z": 0
  8790. },
  8791. "_skewX": 0,
  8792. "_skewY": 0,
  8793. "_is3DNode": false,
  8794. "_groupIndex": 0,
  8795. "groupIndex": 0,
  8796. "_id": "73YQDQm2VAV4PFttQ1Tayr"
  8797. },
  8798. {
  8799. "__type__": "cc.Node",
  8800. "_name": "LineAcc",
  8801. "_objFlags": 0,
  8802. "_parent": {
  8803. "__id__": 2
  8804. },
  8805. "_children": [
  8806. {
  8807. "__id__": 179
  8808. },
  8809. {
  8810. "__id__": 181
  8811. },
  8812. {
  8813. "__id__": 188
  8814. },
  8815. {
  8816. "__id__": 195
  8817. },
  8818. {
  8819. "__id__": 202
  8820. },
  8821. {
  8822. "__id__": 209
  8823. },
  8824. {
  8825. "__id__": 218
  8826. }
  8827. ],
  8828. "_active": true,
  8829. "_components": [],
  8830. "_prefab": null,
  8831. "_opacity": 255,
  8832. "_color": {
  8833. "__type__": "cc.Color",
  8834. "r": 255,
  8835. "g": 255,
  8836. "b": 255,
  8837. "a": 255
  8838. },
  8839. "_contentSize": {
  8840. "__type__": "cc.Size",
  8841. "width": 0,
  8842. "height": 0
  8843. },
  8844. "_anchorPoint": {
  8845. "__type__": "cc.Vec2",
  8846. "x": 0.5,
  8847. "y": 0.5
  8848. },
  8849. "_trs": {
  8850. "__type__": "TypedArray",
  8851. "ctor": "Float64Array",
  8852. "array": [
  8853. 0,
  8854. 126.755,
  8855. 0,
  8856. 0,
  8857. 0,
  8858. 0,
  8859. 1,
  8860. 1,
  8861. 1,
  8862. 1
  8863. ]
  8864. },
  8865. "_eulerAngles": {
  8866. "__type__": "cc.Vec3",
  8867. "x": 0,
  8868. "y": 0,
  8869. "z": 0
  8870. },
  8871. "_skewX": 0,
  8872. "_skewY": 0,
  8873. "_is3DNode": false,
  8874. "_groupIndex": 0,
  8875. "groupIndex": 0,
  8876. "_id": "adHFoJ2LtKSrtAO3INPXWH"
  8877. },
  8878. {
  8879. "__type__": "cc.Node",
  8880. "_name": "LineY",
  8881. "_objFlags": 0,
  8882. "_parent": {
  8883. "__id__": 180
  8884. },
  8885. "_children": [
  8886. {
  8887. "__id__": 182
  8888. },
  8889. {
  8890. "__id__": 184
  8891. }
  8892. ],
  8893. "_active": true,
  8894. "_components": [
  8895. {
  8896. "__id__": 186
  8897. },
  8898. {
  8899. "__id__": 187
  8900. }
  8901. ],
  8902. "_prefab": null,
  8903. "_opacity": 255,
  8904. "_color": {
  8905. "__type__": "cc.Color",
  8906. "r": 255,
  8907. "g": 255,
  8908. "b": 255,
  8909. "a": 255
  8910. },
  8911. "_contentSize": {
  8912. "__type__": "cc.Size",
  8913. "width": 0,
  8914. "height": 0
  8915. },
  8916. "_anchorPoint": {
  8917. "__type__": "cc.Vec2",
  8918. "x": 0.5,
  8919. "y": 0.5
  8920. },
  8921. "_trs": {
  8922. "__type__": "TypedArray",
  8923. "ctor": "Float64Array",
  8924. "array": [
  8925. -272.888,
  8926. 0,
  8927. 0,
  8928. 0,
  8929. 0,
  8930. 0,
  8931. 1,
  8932. 1,
  8933. 1,
  8934. 1
  8935. ]
  8936. },
  8937. "_eulerAngles": {
  8938. "__type__": "cc.Vec3",
  8939. "x": 0,
  8940. "y": 0,
  8941. "z": 0
  8942. },
  8943. "_skewX": 0,
  8944. "_skewY": 0,
  8945. "_is3DNode": false,
  8946. "_groupIndex": 0,
  8947. "groupIndex": 0,
  8948. "_id": "bchXKiJoxNyLAj3YEyNfiz"
  8949. },
  8950. {
  8951. "__type__": "cc.Node",
  8952. "_name": "yLabel",
  8953. "_objFlags": 0,
  8954. "_parent": {
  8955. "__id__": 181
  8956. },
  8957. "_children": [],
  8958. "_active": false,
  8959. "_components": [
  8960. {
  8961. "__id__": 183
  8962. }
  8963. ],
  8964. "_prefab": null,
  8965. "_opacity": 255,
  8966. "_color": {
  8967. "__type__": "cc.Color",
  8968. "r": 255,
  8969. "g": 255,
  8970. "b": 255,
  8971. "a": 255
  8972. },
  8973. "_contentSize": {
  8974. "__type__": "cc.Size",
  8975. "width": 35.59,
  8976. "height": 50.4
  8977. },
  8978. "_anchorPoint": {
  8979. "__type__": "cc.Vec2",
  8980. "x": 0.5,
  8981. "y": 0.5
  8982. },
  8983. "_trs": {
  8984. "__type__": "TypedArray",
  8985. "ctor": "Float64Array",
  8986. "array": [
  8987. -10,
  8988. 0,
  8989. 0,
  8990. 0,
  8991. 0,
  8992. 0,
  8993. 1,
  8994. 1,
  8995. 1,
  8996. 1
  8997. ]
  8998. },
  8999. "_eulerAngles": {
  9000. "__type__": "cc.Vec3",
  9001. "x": 0,
  9002. "y": 0,
  9003. "z": 0
  9004. },
  9005. "_skewX": 0,
  9006. "_skewY": 0,
  9007. "_is3DNode": false,
  9008. "_groupIndex": 0,
  9009. "groupIndex": 0,
  9010. "_id": "d3aPGrO9dPQbEGVPn0aBQ0"
  9011. },
  9012. {
  9013. "__type__": "cc.Label",
  9014. "_name": "",
  9015. "_objFlags": 0,
  9016. "node": {
  9017. "__id__": 182
  9018. },
  9019. "_enabled": true,
  9020. "_materials": [
  9021. {
  9022. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9023. }
  9024. ],
  9025. "_useOriginalSize": false,
  9026. "_string": "Y:",
  9027. "_N$string": "Y:",
  9028. "_fontSize": 40,
  9029. "_lineHeight": 40,
  9030. "_enableWrapText": true,
  9031. "_N$file": null,
  9032. "_isSystemFontUsed": true,
  9033. "_spacingX": 0,
  9034. "_batchAsBitmap": false,
  9035. "_styleFlags": 0,
  9036. "_underlineHeight": 0,
  9037. "_N$horizontalAlign": 1,
  9038. "_N$verticalAlign": 1,
  9039. "_N$fontFamily": "Arial",
  9040. "_N$overflow": 0,
  9041. "_N$cacheMode": 0,
  9042. "_id": "dcHMdrJmpHZ6AU8D96Gkyt"
  9043. },
  9044. {
  9045. "__type__": "cc.Node",
  9046. "_name": "circle",
  9047. "_objFlags": 0,
  9048. "_parent": {
  9049. "__id__": 181
  9050. },
  9051. "_children": [],
  9052. "_active": true,
  9053. "_components": [
  9054. {
  9055. "__id__": 185
  9056. }
  9057. ],
  9058. "_prefab": null,
  9059. "_opacity": 255,
  9060. "_color": {
  9061. "__type__": "cc.Color",
  9062. "r": 255,
  9063. "g": 255,
  9064. "b": 255,
  9065. "a": 255
  9066. },
  9067. "_contentSize": {
  9068. "__type__": "cc.Size",
  9069. "width": 0,
  9070. "height": 0
  9071. },
  9072. "_anchorPoint": {
  9073. "__type__": "cc.Vec2",
  9074. "x": 0.5,
  9075. "y": 0.5
  9076. },
  9077. "_trs": {
  9078. "__type__": "TypedArray",
  9079. "ctor": "Float64Array",
  9080. "array": [
  9081. 0,
  9082. 0,
  9083. 0,
  9084. 0,
  9085. 0,
  9086. 0,
  9087. 1,
  9088. 1,
  9089. 1,
  9090. 1
  9091. ]
  9092. },
  9093. "_eulerAngles": {
  9094. "__type__": "cc.Vec3",
  9095. "x": 0,
  9096. "y": 0,
  9097. "z": 0
  9098. },
  9099. "_skewX": 0,
  9100. "_skewY": 0,
  9101. "_is3DNode": false,
  9102. "_groupIndex": 0,
  9103. "groupIndex": 0,
  9104. "_id": "a4V+YbaFVAMI70T9/BO30u"
  9105. },
  9106. {
  9107. "__type__": "cc.Graphics",
  9108. "_name": "",
  9109. "_objFlags": 0,
  9110. "node": {
  9111. "__id__": 184
  9112. },
  9113. "_enabled": true,
  9114. "_materials": [
  9115. {
  9116. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  9117. }
  9118. ],
  9119. "_lineWidth": 1,
  9120. "_strokeColor": {
  9121. "__type__": "cc.Color",
  9122. "r": 0,
  9123. "g": 255,
  9124. "b": 0,
  9125. "a": 255
  9126. },
  9127. "_lineJoin": 2,
  9128. "_lineCap": 0,
  9129. "_fillColor": {
  9130. "__type__": "cc.Color",
  9131. "r": 255,
  9132. "g": 255,
  9133. "b": 255,
  9134. "a": 255
  9135. },
  9136. "_miterLimit": 10,
  9137. "_id": "94VMDvOcdDX7KReVtn9D52"
  9138. },
  9139. {
  9140. "__type__": "cc.Graphics",
  9141. "_name": "",
  9142. "_objFlags": 0,
  9143. "node": {
  9144. "__id__": 181
  9145. },
  9146. "_enabled": true,
  9147. "_materials": [
  9148. {
  9149. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  9150. }
  9151. ],
  9152. "_lineWidth": 1,
  9153. "_strokeColor": {
  9154. "__type__": "cc.Color",
  9155. "r": 0,
  9156. "g": 255,
  9157. "b": 0,
  9158. "a": 255
  9159. },
  9160. "_lineJoin": 2,
  9161. "_lineCap": 0,
  9162. "_fillColor": {
  9163. "__type__": "cc.Color",
  9164. "r": 255,
  9165. "g": 255,
  9166. "b": 255,
  9167. "a": 255
  9168. },
  9169. "_miterLimit": 10,
  9170. "_id": "5duMpkQkZMzpnp95lhPB8k"
  9171. },
  9172. {
  9173. "__type__": "febd5f6s95JWb1i/B7xQahG",
  9174. "_name": "",
  9175. "_objFlags": 0,
  9176. "node": {
  9177. "__id__": 181
  9178. },
  9179. "_enabled": true,
  9180. "line": null,
  9181. "index": 0,
  9182. "circle": {
  9183. "__id__": 185
  9184. },
  9185. "temp": null,
  9186. "oriBeta": null,
  9187. "oriGamma": null,
  9188. "oriAlpha": null,
  9189. "oriX": null,
  9190. "lineArray": [],
  9191. "tempArray": [],
  9192. "limitArray": [],
  9193. "bPause": false,
  9194. "_id": "96tTmA4PBF8L5R0A06feWP"
  9195. },
  9196. {
  9197. "__type__": "cc.Node",
  9198. "_name": "LineZ",
  9199. "_objFlags": 0,
  9200. "_parent": {
  9201. "__id__": 180
  9202. },
  9203. "_children": [
  9204. {
  9205. "__id__": 189
  9206. },
  9207. {
  9208. "__id__": 191
  9209. }
  9210. ],
  9211. "_active": true,
  9212. "_components": [
  9213. {
  9214. "__id__": 193
  9215. },
  9216. {
  9217. "__id__": 194
  9218. }
  9219. ],
  9220. "_prefab": null,
  9221. "_opacity": 255,
  9222. "_color": {
  9223. "__type__": "cc.Color",
  9224. "r": 255,
  9225. "g": 255,
  9226. "b": 255,
  9227. "a": 255
  9228. },
  9229. "_contentSize": {
  9230. "__type__": "cc.Size",
  9231. "width": 0,
  9232. "height": 0
  9233. },
  9234. "_anchorPoint": {
  9235. "__type__": "cc.Vec2",
  9236. "x": 0.5,
  9237. "y": 0.5
  9238. },
  9239. "_trs": {
  9240. "__type__": "TypedArray",
  9241. "ctor": "Float64Array",
  9242. "array": [
  9243. -272.888,
  9244. -20,
  9245. 0,
  9246. 0,
  9247. 0,
  9248. 0,
  9249. 1,
  9250. 1,
  9251. 1,
  9252. 1
  9253. ]
  9254. },
  9255. "_eulerAngles": {
  9256. "__type__": "cc.Vec3",
  9257. "x": 0,
  9258. "y": 0,
  9259. "z": 0
  9260. },
  9261. "_skewX": 0,
  9262. "_skewY": 0,
  9263. "_is3DNode": false,
  9264. "_groupIndex": 0,
  9265. "groupIndex": 0,
  9266. "_id": "eeN3QvHPhHUISYdmc/IBci"
  9267. },
  9268. {
  9269. "__type__": "cc.Node",
  9270. "_name": "zLabel",
  9271. "_objFlags": 0,
  9272. "_parent": {
  9273. "__id__": 188
  9274. },
  9275. "_children": [],
  9276. "_active": false,
  9277. "_components": [
  9278. {
  9279. "__id__": 190
  9280. }
  9281. ],
  9282. "_prefab": null,
  9283. "_opacity": 255,
  9284. "_color": {
  9285. "__type__": "cc.Color",
  9286. "r": 255,
  9287. "g": 255,
  9288. "b": 255,
  9289. "a": 255
  9290. },
  9291. "_contentSize": {
  9292. "__type__": "cc.Size",
  9293. "width": 35.55,
  9294. "height": 50.4
  9295. },
  9296. "_anchorPoint": {
  9297. "__type__": "cc.Vec2",
  9298. "x": 0.5,
  9299. "y": 0.5
  9300. },
  9301. "_trs": {
  9302. "__type__": "TypedArray",
  9303. "ctor": "Float64Array",
  9304. "array": [
  9305. -10,
  9306. 0,
  9307. 0,
  9308. 0,
  9309. 0,
  9310. 0,
  9311. 1,
  9312. 1,
  9313. 1,
  9314. 1
  9315. ]
  9316. },
  9317. "_eulerAngles": {
  9318. "__type__": "cc.Vec3",
  9319. "x": 0,
  9320. "y": 0,
  9321. "z": 0
  9322. },
  9323. "_skewX": 0,
  9324. "_skewY": 0,
  9325. "_is3DNode": false,
  9326. "_groupIndex": 0,
  9327. "groupIndex": 0,
  9328. "_id": "cdjiSQNJ5GjINq5aIyLl03"
  9329. },
  9330. {
  9331. "__type__": "cc.Label",
  9332. "_name": "",
  9333. "_objFlags": 0,
  9334. "node": {
  9335. "__id__": 189
  9336. },
  9337. "_enabled": true,
  9338. "_materials": [
  9339. {
  9340. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9341. }
  9342. ],
  9343. "_useOriginalSize": false,
  9344. "_string": "Z:",
  9345. "_N$string": "Z:",
  9346. "_fontSize": 40,
  9347. "_lineHeight": 40,
  9348. "_enableWrapText": true,
  9349. "_N$file": null,
  9350. "_isSystemFontUsed": true,
  9351. "_spacingX": 0,
  9352. "_batchAsBitmap": false,
  9353. "_styleFlags": 0,
  9354. "_underlineHeight": 0,
  9355. "_N$horizontalAlign": 1,
  9356. "_N$verticalAlign": 1,
  9357. "_N$fontFamily": "Arial",
  9358. "_N$overflow": 0,
  9359. "_N$cacheMode": 0,
  9360. "_id": "ce++sbAHZKh5P08ctV8Bow"
  9361. },
  9362. {
  9363. "__type__": "cc.Node",
  9364. "_name": "circle",
  9365. "_objFlags": 0,
  9366. "_parent": {
  9367. "__id__": 188
  9368. },
  9369. "_children": [],
  9370. "_active": true,
  9371. "_components": [
  9372. {
  9373. "__id__": 192
  9374. }
  9375. ],
  9376. "_prefab": null,
  9377. "_opacity": 255,
  9378. "_color": {
  9379. "__type__": "cc.Color",
  9380. "r": 255,
  9381. "g": 255,
  9382. "b": 255,
  9383. "a": 255
  9384. },
  9385. "_contentSize": {
  9386. "__type__": "cc.Size",
  9387. "width": 0,
  9388. "height": 0
  9389. },
  9390. "_anchorPoint": {
  9391. "__type__": "cc.Vec2",
  9392. "x": 0.5,
  9393. "y": 0.5
  9394. },
  9395. "_trs": {
  9396. "__type__": "TypedArray",
  9397. "ctor": "Float64Array",
  9398. "array": [
  9399. 0,
  9400. 0,
  9401. 0,
  9402. 0,
  9403. 0,
  9404. 0,
  9405. 1,
  9406. 1,
  9407. 1,
  9408. 1
  9409. ]
  9410. },
  9411. "_eulerAngles": {
  9412. "__type__": "cc.Vec3",
  9413. "x": 0,
  9414. "y": 0,
  9415. "z": 0
  9416. },
  9417. "_skewX": 0,
  9418. "_skewY": 0,
  9419. "_is3DNode": false,
  9420. "_groupIndex": 0,
  9421. "groupIndex": 0,
  9422. "_id": "delclz/EVBwaVGFUQSWFkA"
  9423. },
  9424. {
  9425. "__type__": "cc.Graphics",
  9426. "_name": "",
  9427. "_objFlags": 0,
  9428. "node": {
  9429. "__id__": 191
  9430. },
  9431. "_enabled": true,
  9432. "_materials": [
  9433. {
  9434. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  9435. }
  9436. ],
  9437. "_lineWidth": 1,
  9438. "_strokeColor": {
  9439. "__type__": "cc.Color",
  9440. "r": 0,
  9441. "g": 0,
  9442. "b": 255,
  9443. "a": 255
  9444. },
  9445. "_lineJoin": 2,
  9446. "_lineCap": 0,
  9447. "_fillColor": {
  9448. "__type__": "cc.Color",
  9449. "r": 255,
  9450. "g": 255,
  9451. "b": 255,
  9452. "a": 255
  9453. },
  9454. "_miterLimit": 10,
  9455. "_id": "cde66JXBFAHrsxARqcImHg"
  9456. },
  9457. {
  9458. "__type__": "cc.Graphics",
  9459. "_name": "",
  9460. "_objFlags": 0,
  9461. "node": {
  9462. "__id__": 188
  9463. },
  9464. "_enabled": true,
  9465. "_materials": [
  9466. {
  9467. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  9468. }
  9469. ],
  9470. "_lineWidth": 1,
  9471. "_strokeColor": {
  9472. "__type__": "cc.Color",
  9473. "r": 0,
  9474. "g": 0,
  9475. "b": 255,
  9476. "a": 255
  9477. },
  9478. "_lineJoin": 2,
  9479. "_lineCap": 0,
  9480. "_fillColor": {
  9481. "__type__": "cc.Color",
  9482. "r": 255,
  9483. "g": 255,
  9484. "b": 255,
  9485. "a": 255
  9486. },
  9487. "_miterLimit": 10,
  9488. "_id": "5cPZ2fsMZNuZ//hbLdHGKY"
  9489. },
  9490. {
  9491. "__type__": "febd5f6s95JWb1i/B7xQahG",
  9492. "_name": "",
  9493. "_objFlags": 0,
  9494. "node": {
  9495. "__id__": 188
  9496. },
  9497. "_enabled": true,
  9498. "line": null,
  9499. "index": 0,
  9500. "circle": {
  9501. "__id__": 192
  9502. },
  9503. "temp": null,
  9504. "oriBeta": null,
  9505. "oriGamma": null,
  9506. "oriAlpha": null,
  9507. "oriX": null,
  9508. "lineArray": [],
  9509. "tempArray": [],
  9510. "limitArray": [],
  9511. "bPause": false,
  9512. "_id": "7a6PT1WXhFKb9L/poqZocE"
  9513. },
  9514. {
  9515. "__type__": "cc.Node",
  9516. "_name": "LineS",
  9517. "_objFlags": 0,
  9518. "_parent": {
  9519. "__id__": 180
  9520. },
  9521. "_children": [
  9522. {
  9523. "__id__": 196
  9524. },
  9525. {
  9526. "__id__": 198
  9527. }
  9528. ],
  9529. "_active": true,
  9530. "_components": [
  9531. {
  9532. "__id__": 200
  9533. },
  9534. {
  9535. "__id__": 201
  9536. }
  9537. ],
  9538. "_prefab": null,
  9539. "_opacity": 255,
  9540. "_color": {
  9541. "__type__": "cc.Color",
  9542. "r": 255,
  9543. "g": 255,
  9544. "b": 255,
  9545. "a": 255
  9546. },
  9547. "_contentSize": {
  9548. "__type__": "cc.Size",
  9549. "width": 0,
  9550. "height": 0
  9551. },
  9552. "_anchorPoint": {
  9553. "__type__": "cc.Vec2",
  9554. "x": 0.5,
  9555. "y": 0.5
  9556. },
  9557. "_trs": {
  9558. "__type__": "TypedArray",
  9559. "ctor": "Float64Array",
  9560. "array": [
  9561. -272.888,
  9562. -300,
  9563. 0,
  9564. 0,
  9565. 0,
  9566. 0,
  9567. 1,
  9568. 1,
  9569. 1,
  9570. 1
  9571. ]
  9572. },
  9573. "_eulerAngles": {
  9574. "__type__": "cc.Vec3",
  9575. "x": 0,
  9576. "y": 0,
  9577. "z": 0
  9578. },
  9579. "_skewX": 0,
  9580. "_skewY": 0,
  9581. "_is3DNode": false,
  9582. "_groupIndex": 0,
  9583. "groupIndex": 0,
  9584. "_id": "f4fhOrn7dIDJLccQFRkyUu"
  9585. },
  9586. {
  9587. "__type__": "cc.Node",
  9588. "_name": "zLabel",
  9589. "_objFlags": 0,
  9590. "_parent": {
  9591. "__id__": 195
  9592. },
  9593. "_children": [],
  9594. "_active": false,
  9595. "_components": [
  9596. {
  9597. "__id__": 197
  9598. }
  9599. ],
  9600. "_prefab": null,
  9601. "_opacity": 255,
  9602. "_color": {
  9603. "__type__": "cc.Color",
  9604. "r": 255,
  9605. "g": 255,
  9606. "b": 255,
  9607. "a": 255
  9608. },
  9609. "_contentSize": {
  9610. "__type__": "cc.Size",
  9611. "width": 35.55,
  9612. "height": 50.4
  9613. },
  9614. "_anchorPoint": {
  9615. "__type__": "cc.Vec2",
  9616. "x": 0.5,
  9617. "y": 0.5
  9618. },
  9619. "_trs": {
  9620. "__type__": "TypedArray",
  9621. "ctor": "Float64Array",
  9622. "array": [
  9623. -10,
  9624. 0,
  9625. 0,
  9626. 0,
  9627. 0,
  9628. 0,
  9629. 1,
  9630. 1,
  9631. 1,
  9632. 1
  9633. ]
  9634. },
  9635. "_eulerAngles": {
  9636. "__type__": "cc.Vec3",
  9637. "x": 0,
  9638. "y": 0,
  9639. "z": 0
  9640. },
  9641. "_skewX": 0,
  9642. "_skewY": 0,
  9643. "_is3DNode": false,
  9644. "_groupIndex": 0,
  9645. "groupIndex": 0,
  9646. "_id": "fd0De3ILpKv6TWRR+7Ck64"
  9647. },
  9648. {
  9649. "__type__": "cc.Label",
  9650. "_name": "",
  9651. "_objFlags": 0,
  9652. "node": {
  9653. "__id__": 196
  9654. },
  9655. "_enabled": true,
  9656. "_materials": [
  9657. {
  9658. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9659. }
  9660. ],
  9661. "_useOriginalSize": false,
  9662. "_string": "Z:",
  9663. "_N$string": "Z:",
  9664. "_fontSize": 40,
  9665. "_lineHeight": 40,
  9666. "_enableWrapText": true,
  9667. "_N$file": null,
  9668. "_isSystemFontUsed": true,
  9669. "_spacingX": 0,
  9670. "_batchAsBitmap": false,
  9671. "_styleFlags": 0,
  9672. "_underlineHeight": 0,
  9673. "_N$horizontalAlign": 1,
  9674. "_N$verticalAlign": 1,
  9675. "_N$fontFamily": "Arial",
  9676. "_N$overflow": 0,
  9677. "_N$cacheMode": 0,
  9678. "_id": "64Ju7LT9lOnZOdeEbgnuj0"
  9679. },
  9680. {
  9681. "__type__": "cc.Node",
  9682. "_name": "circle",
  9683. "_objFlags": 0,
  9684. "_parent": {
  9685. "__id__": 195
  9686. },
  9687. "_children": [],
  9688. "_active": true,
  9689. "_components": [
  9690. {
  9691. "__id__": 199
  9692. }
  9693. ],
  9694. "_prefab": null,
  9695. "_opacity": 255,
  9696. "_color": {
  9697. "__type__": "cc.Color",
  9698. "r": 255,
  9699. "g": 255,
  9700. "b": 255,
  9701. "a": 255
  9702. },
  9703. "_contentSize": {
  9704. "__type__": "cc.Size",
  9705. "width": 0,
  9706. "height": 0
  9707. },
  9708. "_anchorPoint": {
  9709. "__type__": "cc.Vec2",
  9710. "x": 0.5,
  9711. "y": 0.5
  9712. },
  9713. "_trs": {
  9714. "__type__": "TypedArray",
  9715. "ctor": "Float64Array",
  9716. "array": [
  9717. 0,
  9718. 0,
  9719. 0,
  9720. 0,
  9721. 0,
  9722. 0,
  9723. 1,
  9724. 1,
  9725. 1,
  9726. 1
  9727. ]
  9728. },
  9729. "_eulerAngles": {
  9730. "__type__": "cc.Vec3",
  9731. "x": 0,
  9732. "y": 0,
  9733. "z": 0
  9734. },
  9735. "_skewX": 0,
  9736. "_skewY": 0,
  9737. "_is3DNode": false,
  9738. "_groupIndex": 0,
  9739. "groupIndex": 0,
  9740. "_id": "cdzaZjEFxDyZ3OwfLiJ3fp"
  9741. },
  9742. {
  9743. "__type__": "cc.Graphics",
  9744. "_name": "",
  9745. "_objFlags": 0,
  9746. "node": {
  9747. "__id__": 198
  9748. },
  9749. "_enabled": true,
  9750. "_materials": [
  9751. {
  9752. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  9753. }
  9754. ],
  9755. "_lineWidth": 1,
  9756. "_strokeColor": {
  9757. "__type__": "cc.Color",
  9758. "r": 150,
  9759. "g": 0,
  9760. "b": 255,
  9761. "a": 255
  9762. },
  9763. "_lineJoin": 2,
  9764. "_lineCap": 0,
  9765. "_fillColor": {
  9766. "__type__": "cc.Color",
  9767. "r": 255,
  9768. "g": 255,
  9769. "b": 255,
  9770. "a": 255
  9771. },
  9772. "_miterLimit": 10,
  9773. "_id": "e0/QvUf5xMyK0+BbqTvs+Z"
  9774. },
  9775. {
  9776. "__type__": "cc.Graphics",
  9777. "_name": "",
  9778. "_objFlags": 0,
  9779. "node": {
  9780. "__id__": 195
  9781. },
  9782. "_enabled": true,
  9783. "_materials": [
  9784. {
  9785. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  9786. }
  9787. ],
  9788. "_lineWidth": 1,
  9789. "_strokeColor": {
  9790. "__type__": "cc.Color",
  9791. "r": 150,
  9792. "g": 0,
  9793. "b": 255,
  9794. "a": 255
  9795. },
  9796. "_lineJoin": 2,
  9797. "_lineCap": 0,
  9798. "_fillColor": {
  9799. "__type__": "cc.Color",
  9800. "r": 255,
  9801. "g": 255,
  9802. "b": 255,
  9803. "a": 255
  9804. },
  9805. "_miterLimit": 10,
  9806. "_id": "3aioxzFD5M/r4VLn+HxwD7"
  9807. },
  9808. {
  9809. "__type__": "febd5f6s95JWb1i/B7xQahG",
  9810. "_name": "",
  9811. "_objFlags": 0,
  9812. "node": {
  9813. "__id__": 195
  9814. },
  9815. "_enabled": true,
  9816. "line": null,
  9817. "index": 0,
  9818. "circle": {
  9819. "__id__": 199
  9820. },
  9821. "temp": null,
  9822. "oriBeta": null,
  9823. "oriGamma": null,
  9824. "oriAlpha": null,
  9825. "oriX": null,
  9826. "lineArray": [],
  9827. "tempArray": [],
  9828. "limitArray": [],
  9829. "bPause": false,
  9830. "_id": "b3etmDmmJJtruj8gdpR42P"
  9831. },
  9832. {
  9833. "__type__": "cc.Node",
  9834. "_name": "oriSqrt",
  9835. "_objFlags": 0,
  9836. "_parent": {
  9837. "__id__": 180
  9838. },
  9839. "_children": [
  9840. {
  9841. "__id__": 203
  9842. },
  9843. {
  9844. "__id__": 205
  9845. }
  9846. ],
  9847. "_active": true,
  9848. "_components": [
  9849. {
  9850. "__id__": 207
  9851. },
  9852. {
  9853. "__id__": 208
  9854. }
  9855. ],
  9856. "_prefab": null,
  9857. "_opacity": 255,
  9858. "_color": {
  9859. "__type__": "cc.Color",
  9860. "r": 255,
  9861. "g": 255,
  9862. "b": 255,
  9863. "a": 255
  9864. },
  9865. "_contentSize": {
  9866. "__type__": "cc.Size",
  9867. "width": 0,
  9868. "height": 0
  9869. },
  9870. "_anchorPoint": {
  9871. "__type__": "cc.Vec2",
  9872. "x": 0.5,
  9873. "y": 0.5
  9874. },
  9875. "_trs": {
  9876. "__type__": "TypedArray",
  9877. "ctor": "Float64Array",
  9878. "array": [
  9879. -272.888,
  9880. -333.796,
  9881. 0,
  9882. 0,
  9883. 0,
  9884. 0,
  9885. 1,
  9886. 1,
  9887. 1,
  9888. 1
  9889. ]
  9890. },
  9891. "_eulerAngles": {
  9892. "__type__": "cc.Vec3",
  9893. "x": 0,
  9894. "y": 0,
  9895. "z": 0
  9896. },
  9897. "_skewX": 0,
  9898. "_skewY": 0,
  9899. "_is3DNode": false,
  9900. "_groupIndex": 0,
  9901. "groupIndex": 0,
  9902. "_id": "f4oKbaDDdG9I7ofhjBJ10K"
  9903. },
  9904. {
  9905. "__type__": "cc.Node",
  9906. "_name": "zLabel",
  9907. "_objFlags": 0,
  9908. "_parent": {
  9909. "__id__": 202
  9910. },
  9911. "_children": [],
  9912. "_active": false,
  9913. "_components": [
  9914. {
  9915. "__id__": 204
  9916. }
  9917. ],
  9918. "_prefab": null,
  9919. "_opacity": 255,
  9920. "_color": {
  9921. "__type__": "cc.Color",
  9922. "r": 255,
  9923. "g": 255,
  9924. "b": 255,
  9925. "a": 255
  9926. },
  9927. "_contentSize": {
  9928. "__type__": "cc.Size",
  9929. "width": 35.55,
  9930. "height": 50.4
  9931. },
  9932. "_anchorPoint": {
  9933. "__type__": "cc.Vec2",
  9934. "x": 0.5,
  9935. "y": 0.5
  9936. },
  9937. "_trs": {
  9938. "__type__": "TypedArray",
  9939. "ctor": "Float64Array",
  9940. "array": [
  9941. -10,
  9942. 0,
  9943. 0,
  9944. 0,
  9945. 0,
  9946. 0,
  9947. 1,
  9948. 1,
  9949. 1,
  9950. 1
  9951. ]
  9952. },
  9953. "_eulerAngles": {
  9954. "__type__": "cc.Vec3",
  9955. "x": 0,
  9956. "y": 0,
  9957. "z": 0
  9958. },
  9959. "_skewX": 0,
  9960. "_skewY": 0,
  9961. "_is3DNode": false,
  9962. "_groupIndex": 0,
  9963. "groupIndex": 0,
  9964. "_id": "01cAAHFFJG7o7KbPaFEUiR"
  9965. },
  9966. {
  9967. "__type__": "cc.Label",
  9968. "_name": "",
  9969. "_objFlags": 0,
  9970. "node": {
  9971. "__id__": 203
  9972. },
  9973. "_enabled": true,
  9974. "_materials": [
  9975. {
  9976. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9977. }
  9978. ],
  9979. "_useOriginalSize": false,
  9980. "_string": "Z:",
  9981. "_N$string": "Z:",
  9982. "_fontSize": 40,
  9983. "_lineHeight": 40,
  9984. "_enableWrapText": true,
  9985. "_N$file": null,
  9986. "_isSystemFontUsed": true,
  9987. "_spacingX": 0,
  9988. "_batchAsBitmap": false,
  9989. "_styleFlags": 0,
  9990. "_underlineHeight": 0,
  9991. "_N$horizontalAlign": 1,
  9992. "_N$verticalAlign": 1,
  9993. "_N$fontFamily": "Arial",
  9994. "_N$overflow": 0,
  9995. "_N$cacheMode": 0,
  9996. "_id": "8aBntYJEtP9JyI6pUtpuIl"
  9997. },
  9998. {
  9999. "__type__": "cc.Node",
  10000. "_name": "circle",
  10001. "_objFlags": 0,
  10002. "_parent": {
  10003. "__id__": 202
  10004. },
  10005. "_children": [],
  10006. "_active": true,
  10007. "_components": [
  10008. {
  10009. "__id__": 206
  10010. }
  10011. ],
  10012. "_prefab": null,
  10013. "_opacity": 255,
  10014. "_color": {
  10015. "__type__": "cc.Color",
  10016. "r": 255,
  10017. "g": 255,
  10018. "b": 255,
  10019. "a": 255
  10020. },
  10021. "_contentSize": {
  10022. "__type__": "cc.Size",
  10023. "width": 0,
  10024. "height": 0
  10025. },
  10026. "_anchorPoint": {
  10027. "__type__": "cc.Vec2",
  10028. "x": 0.5,
  10029. "y": 0.5
  10030. },
  10031. "_trs": {
  10032. "__type__": "TypedArray",
  10033. "ctor": "Float64Array",
  10034. "array": [
  10035. 0,
  10036. 0,
  10037. 0,
  10038. 0,
  10039. 0,
  10040. 0,
  10041. 1,
  10042. 1,
  10043. 1,
  10044. 1
  10045. ]
  10046. },
  10047. "_eulerAngles": {
  10048. "__type__": "cc.Vec3",
  10049. "x": 0,
  10050. "y": 0,
  10051. "z": 0
  10052. },
  10053. "_skewX": 0,
  10054. "_skewY": 0,
  10055. "_is3DNode": false,
  10056. "_groupIndex": 0,
  10057. "groupIndex": 0,
  10058. "_id": "bfUC/UGOJI3bFUATOY3eu8"
  10059. },
  10060. {
  10061. "__type__": "cc.Graphics",
  10062. "_name": "",
  10063. "_objFlags": 0,
  10064. "node": {
  10065. "__id__": 205
  10066. },
  10067. "_enabled": true,
  10068. "_materials": [
  10069. {
  10070. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  10071. }
  10072. ],
  10073. "_lineWidth": 1,
  10074. "_strokeColor": {
  10075. "__type__": "cc.Color",
  10076. "r": 255,
  10077. "g": 0,
  10078. "b": 0,
  10079. "a": 255
  10080. },
  10081. "_lineJoin": 2,
  10082. "_lineCap": 0,
  10083. "_fillColor": {
  10084. "__type__": "cc.Color",
  10085. "r": 255,
  10086. "g": 255,
  10087. "b": 255,
  10088. "a": 255
  10089. },
  10090. "_miterLimit": 10,
  10091. "_id": "a6J20TzqlKIp6BW8Ux/JHS"
  10092. },
  10093. {
  10094. "__type__": "cc.Graphics",
  10095. "_name": "",
  10096. "_objFlags": 0,
  10097. "node": {
  10098. "__id__": 202
  10099. },
  10100. "_enabled": true,
  10101. "_materials": [
  10102. {
  10103. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  10104. }
  10105. ],
  10106. "_lineWidth": 1,
  10107. "_strokeColor": {
  10108. "__type__": "cc.Color",
  10109. "r": 255,
  10110. "g": 0,
  10111. "b": 0,
  10112. "a": 255
  10113. },
  10114. "_lineJoin": 2,
  10115. "_lineCap": 0,
  10116. "_fillColor": {
  10117. "__type__": "cc.Color",
  10118. "r": 255,
  10119. "g": 255,
  10120. "b": 255,
  10121. "a": 255
  10122. },
  10123. "_miterLimit": 10,
  10124. "_id": "aczu4fqc5M0rnOeKWvOOX/"
  10125. },
  10126. {
  10127. "__type__": "febd5f6s95JWb1i/B7xQahG",
  10128. "_name": "",
  10129. "_objFlags": 0,
  10130. "node": {
  10131. "__id__": 202
  10132. },
  10133. "_enabled": true,
  10134. "line": null,
  10135. "index": 0,
  10136. "circle": {
  10137. "__id__": 206
  10138. },
  10139. "temp": null,
  10140. "oriBeta": null,
  10141. "oriGamma": null,
  10142. "oriAlpha": null,
  10143. "oriX": null,
  10144. "lineArray": [],
  10145. "tempArray": [],
  10146. "limitArray": [],
  10147. "bPause": false,
  10148. "_id": "5cFcVSFa1N8rJouj9lPp1U"
  10149. },
  10150. {
  10151. "__type__": "cc.Node",
  10152. "_name": "acc",
  10153. "_objFlags": 0,
  10154. "_parent": {
  10155. "__id__": 180
  10156. },
  10157. "_children": [
  10158. {
  10159. "__id__": 210
  10160. },
  10161. {
  10162. "__id__": 212
  10163. },
  10164. {
  10165. "__id__": 214
  10166. },
  10167. {
  10168. "__id__": 216
  10169. }
  10170. ],
  10171. "_active": true,
  10172. "_components": [],
  10173. "_prefab": null,
  10174. "_opacity": 255,
  10175. "_color": {
  10176. "__type__": "cc.Color",
  10177. "r": 255,
  10178. "g": 255,
  10179. "b": 255,
  10180. "a": 255
  10181. },
  10182. "_contentSize": {
  10183. "__type__": "cc.Size",
  10184. "width": 0,
  10185. "height": 0
  10186. },
  10187. "_anchorPoint": {
  10188. "__type__": "cc.Vec2",
  10189. "x": 0.5,
  10190. "y": 0.5
  10191. },
  10192. "_trs": {
  10193. "__type__": "TypedArray",
  10194. "ctor": "Float64Array",
  10195. "array": [
  10196. 180.533,
  10197. 0,
  10198. 0,
  10199. 0,
  10200. 0,
  10201. 0,
  10202. 1,
  10203. 1,
  10204. 1,
  10205. 1
  10206. ]
  10207. },
  10208. "_eulerAngles": {
  10209. "__type__": "cc.Vec3",
  10210. "x": 0,
  10211. "y": 0,
  10212. "z": 0
  10213. },
  10214. "_skewX": 0,
  10215. "_skewY": 0,
  10216. "_is3DNode": false,
  10217. "_groupIndex": 0,
  10218. "groupIndex": 0,
  10219. "_id": "45Z+4uwBJNk40zTI1ygl1U"
  10220. },
  10221. {
  10222. "__type__": "cc.Node",
  10223. "_name": "x",
  10224. "_objFlags": 0,
  10225. "_parent": {
  10226. "__id__": 209
  10227. },
  10228. "_children": [],
  10229. "_active": true,
  10230. "_components": [
  10231. {
  10232. "__id__": 211
  10233. }
  10234. ],
  10235. "_prefab": null,
  10236. "_opacity": 255,
  10237. "_color": {
  10238. "__type__": "cc.Color",
  10239. "r": 255,
  10240. "g": 255,
  10241. "b": 255,
  10242. "a": 255
  10243. },
  10244. "_contentSize": {
  10245. "__type__": "cc.Size",
  10246. "width": 97.87,
  10247. "height": 50.4
  10248. },
  10249. "_anchorPoint": {
  10250. "__type__": "cc.Vec2",
  10251. "x": 0,
  10252. "y": 0.5
  10253. },
  10254. "_trs": {
  10255. "__type__": "TypedArray",
  10256. "ctor": "Float64Array",
  10257. "array": [
  10258. 0,
  10259. 70,
  10260. 0,
  10261. 0,
  10262. 0,
  10263. 0,
  10264. 1,
  10265. 1,
  10266. 1,
  10267. 1
  10268. ]
  10269. },
  10270. "_eulerAngles": {
  10271. "__type__": "cc.Vec3",
  10272. "x": 0,
  10273. "y": 0,
  10274. "z": 0
  10275. },
  10276. "_skewX": 0,
  10277. "_skewY": 0,
  10278. "_is3DNode": false,
  10279. "_groupIndex": 0,
  10280. "groupIndex": 0,
  10281. "_id": "10/DDEMJtL/K/1q1hsxO3i"
  10282. },
  10283. {
  10284. "__type__": "cc.Label",
  10285. "_name": "",
  10286. "_objFlags": 0,
  10287. "node": {
  10288. "__id__": 210
  10289. },
  10290. "_enabled": true,
  10291. "_materials": [
  10292. {
  10293. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10294. }
  10295. ],
  10296. "_useOriginalSize": false,
  10297. "_string": "Label",
  10298. "_N$string": "Label",
  10299. "_fontSize": 40,
  10300. "_lineHeight": 40,
  10301. "_enableWrapText": true,
  10302. "_N$file": null,
  10303. "_isSystemFontUsed": true,
  10304. "_spacingX": 0,
  10305. "_batchAsBitmap": false,
  10306. "_styleFlags": 0,
  10307. "_underlineHeight": 0,
  10308. "_N$horizontalAlign": 1,
  10309. "_N$verticalAlign": 1,
  10310. "_N$fontFamily": "Arial",
  10311. "_N$overflow": 0,
  10312. "_N$cacheMode": 0,
  10313. "_id": "8cYJQw1ixArIikZXkKcrKc"
  10314. },
  10315. {
  10316. "__type__": "cc.Node",
  10317. "_name": "y",
  10318. "_objFlags": 0,
  10319. "_parent": {
  10320. "__id__": 209
  10321. },
  10322. "_children": [],
  10323. "_active": true,
  10324. "_components": [
  10325. {
  10326. "__id__": 213
  10327. }
  10328. ],
  10329. "_prefab": null,
  10330. "_opacity": 255,
  10331. "_color": {
  10332. "__type__": "cc.Color",
  10333. "r": 255,
  10334. "g": 255,
  10335. "b": 255,
  10336. "a": 255
  10337. },
  10338. "_contentSize": {
  10339. "__type__": "cc.Size",
  10340. "width": 97.87,
  10341. "height": 50.4
  10342. },
  10343. "_anchorPoint": {
  10344. "__type__": "cc.Vec2",
  10345. "x": 0,
  10346. "y": 0.5
  10347. },
  10348. "_trs": {
  10349. "__type__": "TypedArray",
  10350. "ctor": "Float64Array",
  10351. "array": [
  10352. 0,
  10353. 0,
  10354. 0,
  10355. 0,
  10356. 0,
  10357. 0,
  10358. 1,
  10359. 1,
  10360. 1,
  10361. 1
  10362. ]
  10363. },
  10364. "_eulerAngles": {
  10365. "__type__": "cc.Vec3",
  10366. "x": 0,
  10367. "y": 0,
  10368. "z": 0
  10369. },
  10370. "_skewX": 0,
  10371. "_skewY": 0,
  10372. "_is3DNode": false,
  10373. "_groupIndex": 0,
  10374. "groupIndex": 0,
  10375. "_id": "39RncP48JCMLiWQC5YySmU"
  10376. },
  10377. {
  10378. "__type__": "cc.Label",
  10379. "_name": "",
  10380. "_objFlags": 0,
  10381. "node": {
  10382. "__id__": 212
  10383. },
  10384. "_enabled": true,
  10385. "_materials": [
  10386. {
  10387. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10388. }
  10389. ],
  10390. "_useOriginalSize": false,
  10391. "_string": "Label",
  10392. "_N$string": "Label",
  10393. "_fontSize": 40,
  10394. "_lineHeight": 40,
  10395. "_enableWrapText": true,
  10396. "_N$file": null,
  10397. "_isSystemFontUsed": true,
  10398. "_spacingX": 0,
  10399. "_batchAsBitmap": false,
  10400. "_styleFlags": 0,
  10401. "_underlineHeight": 0,
  10402. "_N$horizontalAlign": 1,
  10403. "_N$verticalAlign": 1,
  10404. "_N$fontFamily": "Arial",
  10405. "_N$overflow": 0,
  10406. "_N$cacheMode": 0,
  10407. "_id": "aaKesRsY1Fx5zUGh7GXYdc"
  10408. },
  10409. {
  10410. "__type__": "cc.Node",
  10411. "_name": "z",
  10412. "_objFlags": 0,
  10413. "_parent": {
  10414. "__id__": 209
  10415. },
  10416. "_children": [],
  10417. "_active": true,
  10418. "_components": [
  10419. {
  10420. "__id__": 215
  10421. }
  10422. ],
  10423. "_prefab": null,
  10424. "_opacity": 255,
  10425. "_color": {
  10426. "__type__": "cc.Color",
  10427. "r": 255,
  10428. "g": 255,
  10429. "b": 255,
  10430. "a": 255
  10431. },
  10432. "_contentSize": {
  10433. "__type__": "cc.Size",
  10434. "width": 97.87,
  10435. "height": 50.4
  10436. },
  10437. "_anchorPoint": {
  10438. "__type__": "cc.Vec2",
  10439. "x": 0,
  10440. "y": 0.5
  10441. },
  10442. "_trs": {
  10443. "__type__": "TypedArray",
  10444. "ctor": "Float64Array",
  10445. "array": [
  10446. 0,
  10447. -70,
  10448. 0,
  10449. 0,
  10450. 0,
  10451. 0,
  10452. 1,
  10453. 1,
  10454. 1,
  10455. 1
  10456. ]
  10457. },
  10458. "_eulerAngles": {
  10459. "__type__": "cc.Vec3",
  10460. "x": 0,
  10461. "y": 0,
  10462. "z": 0
  10463. },
  10464. "_skewX": 0,
  10465. "_skewY": 0,
  10466. "_is3DNode": false,
  10467. "_groupIndex": 0,
  10468. "groupIndex": 0,
  10469. "_id": "74vAHRGMZEf7XDljIRywdz"
  10470. },
  10471. {
  10472. "__type__": "cc.Label",
  10473. "_name": "",
  10474. "_objFlags": 0,
  10475. "node": {
  10476. "__id__": 214
  10477. },
  10478. "_enabled": true,
  10479. "_materials": [
  10480. {
  10481. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10482. }
  10483. ],
  10484. "_useOriginalSize": false,
  10485. "_string": "Label",
  10486. "_N$string": "Label",
  10487. "_fontSize": 40,
  10488. "_lineHeight": 40,
  10489. "_enableWrapText": true,
  10490. "_N$file": null,
  10491. "_isSystemFontUsed": true,
  10492. "_spacingX": 0,
  10493. "_batchAsBitmap": false,
  10494. "_styleFlags": 0,
  10495. "_underlineHeight": 0,
  10496. "_N$horizontalAlign": 1,
  10497. "_N$verticalAlign": 1,
  10498. "_N$fontFamily": "Arial",
  10499. "_N$overflow": 0,
  10500. "_N$cacheMode": 0,
  10501. "_id": "ac1WtvmXBBxZu1rTYOkQr3"
  10502. },
  10503. {
  10504. "__type__": "cc.Node",
  10505. "_name": "sqrt",
  10506. "_objFlags": 0,
  10507. "_parent": {
  10508. "__id__": 209
  10509. },
  10510. "_children": [],
  10511. "_active": true,
  10512. "_components": [
  10513. {
  10514. "__id__": 217
  10515. }
  10516. ],
  10517. "_prefab": null,
  10518. "_opacity": 255,
  10519. "_color": {
  10520. "__type__": "cc.Color",
  10521. "r": 255,
  10522. "g": 255,
  10523. "b": 255,
  10524. "a": 255
  10525. },
  10526. "_contentSize": {
  10527. "__type__": "cc.Size",
  10528. "width": 97.87,
  10529. "height": 50.4
  10530. },
  10531. "_anchorPoint": {
  10532. "__type__": "cc.Vec2",
  10533. "x": 0,
  10534. "y": 0.5
  10535. },
  10536. "_trs": {
  10537. "__type__": "TypedArray",
  10538. "ctor": "Float64Array",
  10539. "array": [
  10540. 0,
  10541. -300,
  10542. 0,
  10543. 0,
  10544. 0,
  10545. 0,
  10546. 1,
  10547. 1,
  10548. 1,
  10549. 1
  10550. ]
  10551. },
  10552. "_eulerAngles": {
  10553. "__type__": "cc.Vec3",
  10554. "x": 0,
  10555. "y": 0,
  10556. "z": 0
  10557. },
  10558. "_skewX": 0,
  10559. "_skewY": 0,
  10560. "_is3DNode": false,
  10561. "_groupIndex": 0,
  10562. "groupIndex": 0,
  10563. "_id": "aa2hMljb5G4YUEuzn56gAj"
  10564. },
  10565. {
  10566. "__type__": "cc.Label",
  10567. "_name": "",
  10568. "_objFlags": 0,
  10569. "node": {
  10570. "__id__": 216
  10571. },
  10572. "_enabled": true,
  10573. "_materials": [
  10574. {
  10575. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10576. }
  10577. ],
  10578. "_useOriginalSize": false,
  10579. "_string": "Label",
  10580. "_N$string": "Label",
  10581. "_fontSize": 40,
  10582. "_lineHeight": 40,
  10583. "_enableWrapText": true,
  10584. "_N$file": null,
  10585. "_isSystemFontUsed": true,
  10586. "_spacingX": 0,
  10587. "_batchAsBitmap": false,
  10588. "_styleFlags": 0,
  10589. "_underlineHeight": 0,
  10590. "_N$horizontalAlign": 1,
  10591. "_N$verticalAlign": 1,
  10592. "_N$fontFamily": "Arial",
  10593. "_N$overflow": 0,
  10594. "_N$cacheMode": 0,
  10595. "_id": "56kiYBbKRJNqtzefVwlP03"
  10596. },
  10597. {
  10598. "__type__": "cc.Node",
  10599. "_name": "tip",
  10600. "_objFlags": 0,
  10601. "_parent": {
  10602. "__id__": 180
  10603. },
  10604. "_children": [
  10605. {
  10606. "__id__": 219
  10607. },
  10608. {
  10609. "__id__": 223
  10610. },
  10611. {
  10612. "__id__": 227
  10613. },
  10614. {
  10615. "__id__": 231
  10616. },
  10617. {
  10618. "__id__": 235
  10619. }
  10620. ],
  10621. "_active": true,
  10622. "_components": [],
  10623. "_prefab": null,
  10624. "_opacity": 255,
  10625. "_color": {
  10626. "__type__": "cc.Color",
  10627. "r": 255,
  10628. "g": 255,
  10629. "b": 255,
  10630. "a": 255
  10631. },
  10632. "_contentSize": {
  10633. "__type__": "cc.Size",
  10634. "width": 0,
  10635. "height": 0
  10636. },
  10637. "_anchorPoint": {
  10638. "__type__": "cc.Vec2",
  10639. "x": 0.5,
  10640. "y": 0.5
  10641. },
  10642. "_trs": {
  10643. "__type__": "TypedArray",
  10644. "ctor": "Float64Array",
  10645. "array": [
  10646. -335.789,
  10647. 0,
  10648. 0,
  10649. 0,
  10650. 0,
  10651. 0,
  10652. 1,
  10653. 1,
  10654. 1,
  10655. 1
  10656. ]
  10657. },
  10658. "_eulerAngles": {
  10659. "__type__": "cc.Vec3",
  10660. "x": 0,
  10661. "y": 0,
  10662. "z": 0
  10663. },
  10664. "_skewX": 0,
  10665. "_skewY": 0,
  10666. "_is3DNode": false,
  10667. "_groupIndex": 0,
  10668. "groupIndex": 0,
  10669. "_id": "0bqLP3OrlO46wFWFOyWZlT"
  10670. },
  10671. {
  10672. "__type__": "cc.Node",
  10673. "_name": "X",
  10674. "_objFlags": 0,
  10675. "_parent": {
  10676. "__id__": 218
  10677. },
  10678. "_children": [
  10679. {
  10680. "__id__": 220
  10681. }
  10682. ],
  10683. "_active": true,
  10684. "_components": [
  10685. {
  10686. "__id__": 222
  10687. }
  10688. ],
  10689. "_prefab": null,
  10690. "_opacity": 255,
  10691. "_color": {
  10692. "__type__": "cc.Color",
  10693. "r": 255,
  10694. "g": 255,
  10695. "b": 255,
  10696. "a": 255
  10697. },
  10698. "_contentSize": {
  10699. "__type__": "cc.Size",
  10700. "width": 18.9,
  10701. "height": 25.2
  10702. },
  10703. "_anchorPoint": {
  10704. "__type__": "cc.Vec2",
  10705. "x": 0.5,
  10706. "y": 0.5
  10707. },
  10708. "_trs": {
  10709. "__type__": "TypedArray",
  10710. "ctor": "Float64Array",
  10711. "array": [
  10712. 0,
  10713. 70,
  10714. 0,
  10715. 0,
  10716. 0,
  10717. 0,
  10718. 1,
  10719. 1,
  10720. 1,
  10721. 1
  10722. ]
  10723. },
  10724. "_eulerAngles": {
  10725. "__type__": "cc.Vec3",
  10726. "x": 0,
  10727. "y": 0,
  10728. "z": 0
  10729. },
  10730. "_skewX": 0,
  10731. "_skewY": 0,
  10732. "_is3DNode": false,
  10733. "_groupIndex": 0,
  10734. "groupIndex": 0,
  10735. "_id": "64Dine4fJBKL51l3WFewQu"
  10736. },
  10737. {
  10738. "__type__": "cc.Node",
  10739. "_name": "red",
  10740. "_objFlags": 0,
  10741. "_parent": {
  10742. "__id__": 219
  10743. },
  10744. "_children": [],
  10745. "_active": true,
  10746. "_components": [
  10747. {
  10748. "__id__": 221
  10749. }
  10750. ],
  10751. "_prefab": null,
  10752. "_opacity": 255,
  10753. "_color": {
  10754. "__type__": "cc.Color",
  10755. "r": 255,
  10756. "g": 0,
  10757. "b": 0,
  10758. "a": 255
  10759. },
  10760. "_contentSize": {
  10761. "__type__": "cc.Size",
  10762. "width": 20,
  10763. "height": 20
  10764. },
  10765. "_anchorPoint": {
  10766. "__type__": "cc.Vec2",
  10767. "x": 0.5,
  10768. "y": 0.5
  10769. },
  10770. "_trs": {
  10771. "__type__": "TypedArray",
  10772. "ctor": "Float64Array",
  10773. "array": [
  10774. 27.86,
  10775. 0,
  10776. 0,
  10777. 0,
  10778. 0,
  10779. 0,
  10780. 1,
  10781. 1,
  10782. 1,
  10783. 1
  10784. ]
  10785. },
  10786. "_eulerAngles": {
  10787. "__type__": "cc.Vec3",
  10788. "x": 0,
  10789. "y": 0,
  10790. "z": 0
  10791. },
  10792. "_skewX": 0,
  10793. "_skewY": 0,
  10794. "_is3DNode": false,
  10795. "_groupIndex": 0,
  10796. "groupIndex": 0,
  10797. "_id": "faInrBSCtPjpwyf1VDUIwI"
  10798. },
  10799. {
  10800. "__type__": "cc.Sprite",
  10801. "_name": "",
  10802. "_objFlags": 0,
  10803. "node": {
  10804. "__id__": 220
  10805. },
  10806. "_enabled": true,
  10807. "_materials": [
  10808. {
  10809. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10810. }
  10811. ],
  10812. "_srcBlendFactor": 770,
  10813. "_dstBlendFactor": 771,
  10814. "_spriteFrame": {
  10815. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  10816. },
  10817. "_type": 0,
  10818. "_sizeMode": 0,
  10819. "_fillType": 0,
  10820. "_fillCenter": {
  10821. "__type__": "cc.Vec2",
  10822. "x": 0,
  10823. "y": 0
  10824. },
  10825. "_fillStart": 0,
  10826. "_fillRange": 0,
  10827. "_isTrimmedMode": true,
  10828. "_atlas": null,
  10829. "_id": "82hxQU5iNJl6aFLEAw8ekq"
  10830. },
  10831. {
  10832. "__type__": "cc.Label",
  10833. "_name": "",
  10834. "_objFlags": 0,
  10835. "node": {
  10836. "__id__": 219
  10837. },
  10838. "_enabled": true,
  10839. "_materials": [
  10840. {
  10841. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10842. }
  10843. ],
  10844. "_useOriginalSize": false,
  10845. "_string": "X:",
  10846. "_N$string": "X:",
  10847. "_fontSize": 20,
  10848. "_lineHeight": 20,
  10849. "_enableWrapText": true,
  10850. "_N$file": null,
  10851. "_isSystemFontUsed": true,
  10852. "_spacingX": 0,
  10853. "_batchAsBitmap": false,
  10854. "_styleFlags": 0,
  10855. "_underlineHeight": 0,
  10856. "_N$horizontalAlign": 1,
  10857. "_N$verticalAlign": 1,
  10858. "_N$fontFamily": "Arial",
  10859. "_N$overflow": 0,
  10860. "_N$cacheMode": 0,
  10861. "_id": "dbO2pmpeNASKfQ7PgYdgxz"
  10862. },
  10863. {
  10864. "__type__": "cc.Node",
  10865. "_name": "Y",
  10866. "_objFlags": 0,
  10867. "_parent": {
  10868. "__id__": 218
  10869. },
  10870. "_children": [
  10871. {
  10872. "__id__": 224
  10873. }
  10874. ],
  10875. "_active": true,
  10876. "_components": [
  10877. {
  10878. "__id__": 226
  10879. }
  10880. ],
  10881. "_prefab": null,
  10882. "_opacity": 255,
  10883. "_color": {
  10884. "__type__": "cc.Color",
  10885. "r": 255,
  10886. "g": 255,
  10887. "b": 255,
  10888. "a": 255
  10889. },
  10890. "_contentSize": {
  10891. "__type__": "cc.Size",
  10892. "width": 17.79,
  10893. "height": 25.2
  10894. },
  10895. "_anchorPoint": {
  10896. "__type__": "cc.Vec2",
  10897. "x": 0.5,
  10898. "y": 0.5
  10899. },
  10900. "_trs": {
  10901. "__type__": "TypedArray",
  10902. "ctor": "Float64Array",
  10903. "array": [
  10904. 0,
  10905. 0,
  10906. 0,
  10907. 0,
  10908. 0,
  10909. 0,
  10910. 1,
  10911. 1,
  10912. 1,
  10913. 1
  10914. ]
  10915. },
  10916. "_eulerAngles": {
  10917. "__type__": "cc.Vec3",
  10918. "x": 0,
  10919. "y": 0,
  10920. "z": 0
  10921. },
  10922. "_skewX": 0,
  10923. "_skewY": 0,
  10924. "_is3DNode": false,
  10925. "_groupIndex": 0,
  10926. "groupIndex": 0,
  10927. "_id": "2d//opoMdHKpNL0ILMFVS1"
  10928. },
  10929. {
  10930. "__type__": "cc.Node",
  10931. "_name": "green",
  10932. "_objFlags": 0,
  10933. "_parent": {
  10934. "__id__": 223
  10935. },
  10936. "_children": [],
  10937. "_active": true,
  10938. "_components": [
  10939. {
  10940. "__id__": 225
  10941. }
  10942. ],
  10943. "_prefab": null,
  10944. "_opacity": 255,
  10945. "_color": {
  10946. "__type__": "cc.Color",
  10947. "r": 0,
  10948. "g": 255,
  10949. "b": 0,
  10950. "a": 255
  10951. },
  10952. "_contentSize": {
  10953. "__type__": "cc.Size",
  10954. "width": 20,
  10955. "height": 20
  10956. },
  10957. "_anchorPoint": {
  10958. "__type__": "cc.Vec2",
  10959. "x": 0.5,
  10960. "y": 0.5
  10961. },
  10962. "_trs": {
  10963. "__type__": "TypedArray",
  10964. "ctor": "Float64Array",
  10965. "array": [
  10966. 27.86,
  10967. 0,
  10968. 0,
  10969. 0,
  10970. 0,
  10971. 0,
  10972. 1,
  10973. 1,
  10974. 1,
  10975. 1
  10976. ]
  10977. },
  10978. "_eulerAngles": {
  10979. "__type__": "cc.Vec3",
  10980. "x": 0,
  10981. "y": 0,
  10982. "z": 0
  10983. },
  10984. "_skewX": 0,
  10985. "_skewY": 0,
  10986. "_is3DNode": false,
  10987. "_groupIndex": 0,
  10988. "groupIndex": 0,
  10989. "_id": "a8FSZXdjtAMr74NKdtoh/f"
  10990. },
  10991. {
  10992. "__type__": "cc.Sprite",
  10993. "_name": "",
  10994. "_objFlags": 0,
  10995. "node": {
  10996. "__id__": 224
  10997. },
  10998. "_enabled": true,
  10999. "_materials": [
  11000. {
  11001. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11002. }
  11003. ],
  11004. "_srcBlendFactor": 770,
  11005. "_dstBlendFactor": 771,
  11006. "_spriteFrame": {
  11007. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  11008. },
  11009. "_type": 0,
  11010. "_sizeMode": 0,
  11011. "_fillType": 0,
  11012. "_fillCenter": {
  11013. "__type__": "cc.Vec2",
  11014. "x": 0,
  11015. "y": 0
  11016. },
  11017. "_fillStart": 0,
  11018. "_fillRange": 0,
  11019. "_isTrimmedMode": true,
  11020. "_atlas": null,
  11021. "_id": "faIcKbb9ZB/qOwXaWPWV4U"
  11022. },
  11023. {
  11024. "__type__": "cc.Label",
  11025. "_name": "",
  11026. "_objFlags": 0,
  11027. "node": {
  11028. "__id__": 223
  11029. },
  11030. "_enabled": true,
  11031. "_materials": [
  11032. {
  11033. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11034. }
  11035. ],
  11036. "_useOriginalSize": false,
  11037. "_string": "Y:",
  11038. "_N$string": "Y:",
  11039. "_fontSize": 20,
  11040. "_lineHeight": 20,
  11041. "_enableWrapText": true,
  11042. "_N$file": null,
  11043. "_isSystemFontUsed": true,
  11044. "_spacingX": 0,
  11045. "_batchAsBitmap": false,
  11046. "_styleFlags": 0,
  11047. "_underlineHeight": 0,
  11048. "_N$horizontalAlign": 1,
  11049. "_N$verticalAlign": 1,
  11050. "_N$fontFamily": "Arial",
  11051. "_N$overflow": 0,
  11052. "_N$cacheMode": 0,
  11053. "_id": "6ekx6utHRLmoYQIDl7Q+bN"
  11054. },
  11055. {
  11056. "__type__": "cc.Node",
  11057. "_name": "Z",
  11058. "_objFlags": 0,
  11059. "_parent": {
  11060. "__id__": 218
  11061. },
  11062. "_children": [
  11063. {
  11064. "__id__": 228
  11065. }
  11066. ],
  11067. "_active": true,
  11068. "_components": [
  11069. {
  11070. "__id__": 230
  11071. }
  11072. ],
  11073. "_prefab": null,
  11074. "_opacity": 255,
  11075. "_color": {
  11076. "__type__": "cc.Color",
  11077. "r": 255,
  11078. "g": 255,
  11079. "b": 255,
  11080. "a": 255
  11081. },
  11082. "_contentSize": {
  11083. "__type__": "cc.Size",
  11084. "width": 17.77,
  11085. "height": 25.2
  11086. },
  11087. "_anchorPoint": {
  11088. "__type__": "cc.Vec2",
  11089. "x": 0.5,
  11090. "y": 0.5
  11091. },
  11092. "_trs": {
  11093. "__type__": "TypedArray",
  11094. "ctor": "Float64Array",
  11095. "array": [
  11096. 0,
  11097. -70,
  11098. 0,
  11099. 0,
  11100. 0,
  11101. 0,
  11102. 1,
  11103. 1,
  11104. 1,
  11105. 1
  11106. ]
  11107. },
  11108. "_eulerAngles": {
  11109. "__type__": "cc.Vec3",
  11110. "x": 0,
  11111. "y": 0,
  11112. "z": 0
  11113. },
  11114. "_skewX": 0,
  11115. "_skewY": 0,
  11116. "_is3DNode": false,
  11117. "_groupIndex": 0,
  11118. "groupIndex": 0,
  11119. "_id": "ecnJjPIY9Eg7HSIVQ5UytZ"
  11120. },
  11121. {
  11122. "__type__": "cc.Node",
  11123. "_name": "blue",
  11124. "_objFlags": 0,
  11125. "_parent": {
  11126. "__id__": 227
  11127. },
  11128. "_children": [],
  11129. "_active": true,
  11130. "_components": [
  11131. {
  11132. "__id__": 229
  11133. }
  11134. ],
  11135. "_prefab": null,
  11136. "_opacity": 255,
  11137. "_color": {
  11138. "__type__": "cc.Color",
  11139. "r": 0,
  11140. "g": 0,
  11141. "b": 255,
  11142. "a": 255
  11143. },
  11144. "_contentSize": {
  11145. "__type__": "cc.Size",
  11146. "width": 20,
  11147. "height": 20
  11148. },
  11149. "_anchorPoint": {
  11150. "__type__": "cc.Vec2",
  11151. "x": 0.5,
  11152. "y": 0.5
  11153. },
  11154. "_trs": {
  11155. "__type__": "TypedArray",
  11156. "ctor": "Float64Array",
  11157. "array": [
  11158. 27.86,
  11159. 0,
  11160. 0,
  11161. 0,
  11162. 0,
  11163. 0,
  11164. 1,
  11165. 1,
  11166. 1,
  11167. 1
  11168. ]
  11169. },
  11170. "_eulerAngles": {
  11171. "__type__": "cc.Vec3",
  11172. "x": 0,
  11173. "y": 0,
  11174. "z": 0
  11175. },
  11176. "_skewX": 0,
  11177. "_skewY": 0,
  11178. "_is3DNode": false,
  11179. "_groupIndex": 0,
  11180. "groupIndex": 0,
  11181. "_id": "18pHuuAX5Mjrh2fk+rZ1qJ"
  11182. },
  11183. {
  11184. "__type__": "cc.Sprite",
  11185. "_name": "",
  11186. "_objFlags": 0,
  11187. "node": {
  11188. "__id__": 228
  11189. },
  11190. "_enabled": true,
  11191. "_materials": [
  11192. {
  11193. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11194. }
  11195. ],
  11196. "_srcBlendFactor": 770,
  11197. "_dstBlendFactor": 771,
  11198. "_spriteFrame": {
  11199. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  11200. },
  11201. "_type": 0,
  11202. "_sizeMode": 0,
  11203. "_fillType": 0,
  11204. "_fillCenter": {
  11205. "__type__": "cc.Vec2",
  11206. "x": 0,
  11207. "y": 0
  11208. },
  11209. "_fillStart": 0,
  11210. "_fillRange": 0,
  11211. "_isTrimmedMode": true,
  11212. "_atlas": null,
  11213. "_id": "ecJi9rHO9FCaUJm1fZTRmU"
  11214. },
  11215. {
  11216. "__type__": "cc.Label",
  11217. "_name": "",
  11218. "_objFlags": 0,
  11219. "node": {
  11220. "__id__": 227
  11221. },
  11222. "_enabled": true,
  11223. "_materials": [
  11224. {
  11225. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11226. }
  11227. ],
  11228. "_useOriginalSize": false,
  11229. "_string": "Z:",
  11230. "_N$string": "Z:",
  11231. "_fontSize": 20,
  11232. "_lineHeight": 20,
  11233. "_enableWrapText": true,
  11234. "_N$file": null,
  11235. "_isSystemFontUsed": true,
  11236. "_spacingX": 0,
  11237. "_batchAsBitmap": false,
  11238. "_styleFlags": 0,
  11239. "_underlineHeight": 0,
  11240. "_N$horizontalAlign": 1,
  11241. "_N$verticalAlign": 1,
  11242. "_N$fontFamily": "Arial",
  11243. "_N$overflow": 0,
  11244. "_N$cacheMode": 0,
  11245. "_id": "a1ktwhU0RAf7XVs3zYe5Or"
  11246. },
  11247. {
  11248. "__type__": "cc.Node",
  11249. "_name": "sqrt",
  11250. "_objFlags": 0,
  11251. "_parent": {
  11252. "__id__": 218
  11253. },
  11254. "_children": [
  11255. {
  11256. "__id__": 232
  11257. }
  11258. ],
  11259. "_active": true,
  11260. "_components": [
  11261. {
  11262. "__id__": 234
  11263. }
  11264. ],
  11265. "_prefab": null,
  11266. "_opacity": 255,
  11267. "_color": {
  11268. "__type__": "cc.Color",
  11269. "r": 255,
  11270. "g": 255,
  11271. "b": 255,
  11272. "a": 255
  11273. },
  11274. "_contentSize": {
  11275. "__type__": "cc.Size",
  11276. "width": 17.77,
  11277. "height": 25.2
  11278. },
  11279. "_anchorPoint": {
  11280. "__type__": "cc.Vec2",
  11281. "x": 0.5,
  11282. "y": 0.5
  11283. },
  11284. "_trs": {
  11285. "__type__": "TypedArray",
  11286. "ctor": "Float64Array",
  11287. "array": [
  11288. 0,
  11289. -300,
  11290. 0,
  11291. 0,
  11292. 0,
  11293. 0,
  11294. 1,
  11295. 1,
  11296. 1,
  11297. 1
  11298. ]
  11299. },
  11300. "_eulerAngles": {
  11301. "__type__": "cc.Vec3",
  11302. "x": 0,
  11303. "y": 0,
  11304. "z": 0
  11305. },
  11306. "_skewX": 0,
  11307. "_skewY": 0,
  11308. "_is3DNode": false,
  11309. "_groupIndex": 0,
  11310. "groupIndex": 0,
  11311. "_id": "6d7JsdW15FyoBYKk/VIFhF"
  11312. },
  11313. {
  11314. "__type__": "cc.Node",
  11315. "_name": "blue",
  11316. "_objFlags": 0,
  11317. "_parent": {
  11318. "__id__": 231
  11319. },
  11320. "_children": [],
  11321. "_active": true,
  11322. "_components": [
  11323. {
  11324. "__id__": 233
  11325. }
  11326. ],
  11327. "_prefab": null,
  11328. "_opacity": 255,
  11329. "_color": {
  11330. "__type__": "cc.Color",
  11331. "r": 150,
  11332. "g": 0,
  11333. "b": 255,
  11334. "a": 255
  11335. },
  11336. "_contentSize": {
  11337. "__type__": "cc.Size",
  11338. "width": 20,
  11339. "height": 20
  11340. },
  11341. "_anchorPoint": {
  11342. "__type__": "cc.Vec2",
  11343. "x": 0.5,
  11344. "y": 0.5
  11345. },
  11346. "_trs": {
  11347. "__type__": "TypedArray",
  11348. "ctor": "Float64Array",
  11349. "array": [
  11350. 27.86,
  11351. 0,
  11352. 0,
  11353. 0,
  11354. 0,
  11355. 0,
  11356. 1,
  11357. 1,
  11358. 1,
  11359. 1
  11360. ]
  11361. },
  11362. "_eulerAngles": {
  11363. "__type__": "cc.Vec3",
  11364. "x": 0,
  11365. "y": 0,
  11366. "z": 0
  11367. },
  11368. "_skewX": 0,
  11369. "_skewY": 0,
  11370. "_is3DNode": false,
  11371. "_groupIndex": 0,
  11372. "groupIndex": 0,
  11373. "_id": "b4IchBfSdLRbsSJPtm+06A"
  11374. },
  11375. {
  11376. "__type__": "cc.Sprite",
  11377. "_name": "",
  11378. "_objFlags": 0,
  11379. "node": {
  11380. "__id__": 232
  11381. },
  11382. "_enabled": true,
  11383. "_materials": [
  11384. {
  11385. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11386. }
  11387. ],
  11388. "_srcBlendFactor": 770,
  11389. "_dstBlendFactor": 771,
  11390. "_spriteFrame": {
  11391. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  11392. },
  11393. "_type": 0,
  11394. "_sizeMode": 0,
  11395. "_fillType": 0,
  11396. "_fillCenter": {
  11397. "__type__": "cc.Vec2",
  11398. "x": 0,
  11399. "y": 0
  11400. },
  11401. "_fillStart": 0,
  11402. "_fillRange": 0,
  11403. "_isTrimmedMode": true,
  11404. "_atlas": null,
  11405. "_id": "76ftoYmAlP37YOAkvN8o8B"
  11406. },
  11407. {
  11408. "__type__": "cc.Label",
  11409. "_name": "",
  11410. "_objFlags": 0,
  11411. "node": {
  11412. "__id__": 231
  11413. },
  11414. "_enabled": true,
  11415. "_materials": [
  11416. {
  11417. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11418. }
  11419. ],
  11420. "_useOriginalSize": false,
  11421. "_string": "Z:",
  11422. "_N$string": "Z:",
  11423. "_fontSize": 20,
  11424. "_lineHeight": 20,
  11425. "_enableWrapText": true,
  11426. "_N$file": null,
  11427. "_isSystemFontUsed": true,
  11428. "_spacingX": 0,
  11429. "_batchAsBitmap": false,
  11430. "_styleFlags": 0,
  11431. "_underlineHeight": 0,
  11432. "_N$horizontalAlign": 1,
  11433. "_N$verticalAlign": 1,
  11434. "_N$fontFamily": "Arial",
  11435. "_N$overflow": 0,
  11436. "_N$cacheMode": 0,
  11437. "_id": "17/eDc3qVPOrLJlCWXXEpg"
  11438. },
  11439. {
  11440. "__type__": "cc.Node",
  11441. "_name": "oriSqrt",
  11442. "_objFlags": 0,
  11443. "_parent": {
  11444. "__id__": 218
  11445. },
  11446. "_children": [
  11447. {
  11448. "__id__": 236
  11449. }
  11450. ],
  11451. "_active": true,
  11452. "_components": [
  11453. {
  11454. "__id__": 238
  11455. }
  11456. ],
  11457. "_prefab": null,
  11458. "_opacity": 255,
  11459. "_color": {
  11460. "__type__": "cc.Color",
  11461. "r": 255,
  11462. "g": 255,
  11463. "b": 255,
  11464. "a": 255
  11465. },
  11466. "_contentSize": {
  11467. "__type__": "cc.Size",
  11468. "width": 17.77,
  11469. "height": 25.2
  11470. },
  11471. "_anchorPoint": {
  11472. "__type__": "cc.Vec2",
  11473. "x": 0.5,
  11474. "y": 0.5
  11475. },
  11476. "_trs": {
  11477. "__type__": "TypedArray",
  11478. "ctor": "Float64Array",
  11479. "array": [
  11480. 0,
  11481. -334,
  11482. 0,
  11483. 0,
  11484. 0,
  11485. 0,
  11486. 1,
  11487. 1,
  11488. 1,
  11489. 1
  11490. ]
  11491. },
  11492. "_eulerAngles": {
  11493. "__type__": "cc.Vec3",
  11494. "x": 0,
  11495. "y": 0,
  11496. "z": 0
  11497. },
  11498. "_skewX": 0,
  11499. "_skewY": 0,
  11500. "_is3DNode": false,
  11501. "_groupIndex": 0,
  11502. "groupIndex": 0,
  11503. "_id": "8acahSQRxMgZbJ7boOUkrT"
  11504. },
  11505. {
  11506. "__type__": "cc.Node",
  11507. "_name": "blue",
  11508. "_objFlags": 0,
  11509. "_parent": {
  11510. "__id__": 235
  11511. },
  11512. "_children": [],
  11513. "_active": true,
  11514. "_components": [
  11515. {
  11516. "__id__": 237
  11517. }
  11518. ],
  11519. "_prefab": null,
  11520. "_opacity": 255,
  11521. "_color": {
  11522. "__type__": "cc.Color",
  11523. "r": 255,
  11524. "g": 0,
  11525. "b": 0,
  11526. "a": 255
  11527. },
  11528. "_contentSize": {
  11529. "__type__": "cc.Size",
  11530. "width": 20,
  11531. "height": 20
  11532. },
  11533. "_anchorPoint": {
  11534. "__type__": "cc.Vec2",
  11535. "x": 0.5,
  11536. "y": 0.5
  11537. },
  11538. "_trs": {
  11539. "__type__": "TypedArray",
  11540. "ctor": "Float64Array",
  11541. "array": [
  11542. 27.86,
  11543. 0,
  11544. 0,
  11545. 0,
  11546. 0,
  11547. 0,
  11548. 1,
  11549. 1,
  11550. 1,
  11551. 1
  11552. ]
  11553. },
  11554. "_eulerAngles": {
  11555. "__type__": "cc.Vec3",
  11556. "x": 0,
  11557. "y": 0,
  11558. "z": 0
  11559. },
  11560. "_skewX": 0,
  11561. "_skewY": 0,
  11562. "_is3DNode": false,
  11563. "_groupIndex": 0,
  11564. "groupIndex": 0,
  11565. "_id": "afM9+a+7NBQIss/JnWUrK2"
  11566. },
  11567. {
  11568. "__type__": "cc.Sprite",
  11569. "_name": "",
  11570. "_objFlags": 0,
  11571. "node": {
  11572. "__id__": 236
  11573. },
  11574. "_enabled": true,
  11575. "_materials": [
  11576. {
  11577. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11578. }
  11579. ],
  11580. "_srcBlendFactor": 770,
  11581. "_dstBlendFactor": 771,
  11582. "_spriteFrame": {
  11583. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  11584. },
  11585. "_type": 0,
  11586. "_sizeMode": 0,
  11587. "_fillType": 0,
  11588. "_fillCenter": {
  11589. "__type__": "cc.Vec2",
  11590. "x": 0,
  11591. "y": 0
  11592. },
  11593. "_fillStart": 0,
  11594. "_fillRange": 0,
  11595. "_isTrimmedMode": true,
  11596. "_atlas": null,
  11597. "_id": "ddsp4+W5dHBZjIQtX8uXW2"
  11598. },
  11599. {
  11600. "__type__": "cc.Label",
  11601. "_name": "",
  11602. "_objFlags": 0,
  11603. "node": {
  11604. "__id__": 235
  11605. },
  11606. "_enabled": true,
  11607. "_materials": [
  11608. {
  11609. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11610. }
  11611. ],
  11612. "_useOriginalSize": false,
  11613. "_string": "Z:",
  11614. "_N$string": "Z:",
  11615. "_fontSize": 20,
  11616. "_lineHeight": 20,
  11617. "_enableWrapText": true,
  11618. "_N$file": null,
  11619. "_isSystemFontUsed": true,
  11620. "_spacingX": 0,
  11621. "_batchAsBitmap": false,
  11622. "_styleFlags": 0,
  11623. "_underlineHeight": 0,
  11624. "_N$horizontalAlign": 1,
  11625. "_N$verticalAlign": 1,
  11626. "_N$fontFamily": "Arial",
  11627. "_N$overflow": 0,
  11628. "_N$cacheMode": 0,
  11629. "_id": "1ayoC/Dz5E940fPtYsdyvY"
  11630. },
  11631. {
  11632. "__type__": "cc.Node",
  11633. "_name": "xLabel",
  11634. "_objFlags": 0,
  11635. "_parent": {
  11636. "__id__": 179
  11637. },
  11638. "_children": [],
  11639. "_active": false,
  11640. "_components": [
  11641. {
  11642. "__id__": 240
  11643. }
  11644. ],
  11645. "_prefab": null,
  11646. "_opacity": 255,
  11647. "_color": {
  11648. "__type__": "cc.Color",
  11649. "r": 255,
  11650. "g": 255,
  11651. "b": 255,
  11652. "a": 255
  11653. },
  11654. "_contentSize": {
  11655. "__type__": "cc.Size",
  11656. "width": 31.11,
  11657. "height": 50.4
  11658. },
  11659. "_anchorPoint": {
  11660. "__type__": "cc.Vec2",
  11661. "x": 0.5,
  11662. "y": 0.5
  11663. },
  11664. "_trs": {
  11665. "__type__": "TypedArray",
  11666. "ctor": "Float64Array",
  11667. "array": [
  11668. -10,
  11669. 0,
  11670. 0,
  11671. 0,
  11672. 0,
  11673. 0,
  11674. 1,
  11675. 1,
  11676. 1,
  11677. 1
  11678. ]
  11679. },
  11680. "_eulerAngles": {
  11681. "__type__": "cc.Vec3",
  11682. "x": 0,
  11683. "y": 0,
  11684. "z": 0
  11685. },
  11686. "_skewX": 0,
  11687. "_skewY": 0,
  11688. "_is3DNode": false,
  11689. "_groupIndex": 0,
  11690. "groupIndex": 0,
  11691. "_id": "b19GmnqUJBCpXzKYoN3fBj"
  11692. },
  11693. {
  11694. "__type__": "cc.Label",
  11695. "_name": "",
  11696. "_objFlags": 0,
  11697. "node": {
  11698. "__id__": 239
  11699. },
  11700. "_enabled": true,
  11701. "_materials": [
  11702. {
  11703. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  11704. }
  11705. ],
  11706. "_useOriginalSize": false,
  11707. "_string": "x:",
  11708. "_N$string": "x:",
  11709. "_fontSize": 40,
  11710. "_lineHeight": 40,
  11711. "_enableWrapText": true,
  11712. "_N$file": null,
  11713. "_isSystemFontUsed": true,
  11714. "_spacingX": 0,
  11715. "_batchAsBitmap": false,
  11716. "_styleFlags": 0,
  11717. "_underlineHeight": 0,
  11718. "_N$horizontalAlign": 1,
  11719. "_N$verticalAlign": 1,
  11720. "_N$fontFamily": "Arial",
  11721. "_N$overflow": 0,
  11722. "_N$cacheMode": 0,
  11723. "_id": "3bKLNPJP1MUoK5mxXiiZg5"
  11724. },
  11725. {
  11726. "__type__": "cc.Node",
  11727. "_name": "circle",
  11728. "_objFlags": 0,
  11729. "_parent": {
  11730. "__id__": 179
  11731. },
  11732. "_children": [],
  11733. "_active": true,
  11734. "_components": [
  11735. {
  11736. "__id__": 242
  11737. }
  11738. ],
  11739. "_prefab": null,
  11740. "_opacity": 255,
  11741. "_color": {
  11742. "__type__": "cc.Color",
  11743. "r": 255,
  11744. "g": 255,
  11745. "b": 255,
  11746. "a": 255
  11747. },
  11748. "_contentSize": {
  11749. "__type__": "cc.Size",
  11750. "width": 0,
  11751. "height": 0
  11752. },
  11753. "_anchorPoint": {
  11754. "__type__": "cc.Vec2",
  11755. "x": 0.5,
  11756. "y": 0.5
  11757. },
  11758. "_trs": {
  11759. "__type__": "TypedArray",
  11760. "ctor": "Float64Array",
  11761. "array": [
  11762. 0,
  11763. 0,
  11764. 0,
  11765. 0,
  11766. 0,
  11767. 0,
  11768. 1,
  11769. 1,
  11770. 1,
  11771. 1
  11772. ]
  11773. },
  11774. "_eulerAngles": {
  11775. "__type__": "cc.Vec3",
  11776. "x": 0,
  11777. "y": 0,
  11778. "z": 0
  11779. },
  11780. "_skewX": 0,
  11781. "_skewY": 0,
  11782. "_is3DNode": false,
  11783. "_groupIndex": 0,
  11784. "groupIndex": 0,
  11785. "_id": "eay5/8y01DlKOON5+n9kZT"
  11786. },
  11787. {
  11788. "__type__": "cc.Graphics",
  11789. "_name": "",
  11790. "_objFlags": 0,
  11791. "node": {
  11792. "__id__": 241
  11793. },
  11794. "_enabled": true,
  11795. "_materials": [
  11796. {
  11797. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  11798. }
  11799. ],
  11800. "_lineWidth": 1,
  11801. "_strokeColor": {
  11802. "__type__": "cc.Color",
  11803. "r": 255,
  11804. "g": 0,
  11805. "b": 0,
  11806. "a": 255
  11807. },
  11808. "_lineJoin": 2,
  11809. "_lineCap": 0,
  11810. "_fillColor": {
  11811. "__type__": "cc.Color",
  11812. "r": 255,
  11813. "g": 255,
  11814. "b": 255,
  11815. "a": 255
  11816. },
  11817. "_miterLimit": 10,
  11818. "_id": "c9ejdZJfRMO6ZZIS0Yg1gh"
  11819. },
  11820. {
  11821. "__type__": "cc.Node",
  11822. "_name": "temp",
  11823. "_objFlags": 0,
  11824. "_parent": {
  11825. "__id__": 179
  11826. },
  11827. "_children": [],
  11828. "_active": true,
  11829. "_components": [
  11830. {
  11831. "__id__": 244
  11832. }
  11833. ],
  11834. "_prefab": null,
  11835. "_opacity": 255,
  11836. "_color": {
  11837. "__type__": "cc.Color",
  11838. "r": 255,
  11839. "g": 255,
  11840. "b": 255,
  11841. "a": 255
  11842. },
  11843. "_contentSize": {
  11844. "__type__": "cc.Size",
  11845. "width": 0,
  11846. "height": 0
  11847. },
  11848. "_anchorPoint": {
  11849. "__type__": "cc.Vec2",
  11850. "x": 0.5,
  11851. "y": 0.5
  11852. },
  11853. "_trs": {
  11854. "__type__": "TypedArray",
  11855. "ctor": "Float64Array",
  11856. "array": [
  11857. 0,
  11858. 91,
  11859. 0,
  11860. 0,
  11861. 0,
  11862. 0,
  11863. 1,
  11864. 1,
  11865. 1,
  11866. 1
  11867. ]
  11868. },
  11869. "_eulerAngles": {
  11870. "__type__": "cc.Vec3",
  11871. "x": 0,
  11872. "y": 0,
  11873. "z": 0
  11874. },
  11875. "_skewX": 0,
  11876. "_skewY": 0,
  11877. "_is3DNode": false,
  11878. "_groupIndex": 0,
  11879. "groupIndex": 0,
  11880. "_id": "f6ZC+1F9dAHYt8thzIxY3m"
  11881. },
  11882. {
  11883. "__type__": "cc.Graphics",
  11884. "_name": "",
  11885. "_objFlags": 0,
  11886. "node": {
  11887. "__id__": 243
  11888. },
  11889. "_enabled": true,
  11890. "_materials": [
  11891. {
  11892. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  11893. }
  11894. ],
  11895. "_lineWidth": 1,
  11896. "_strokeColor": {
  11897. "__type__": "cc.Color",
  11898. "r": 0,
  11899. "g": 15,
  11900. "b": 255,
  11901. "a": 255
  11902. },
  11903. "_lineJoin": 2,
  11904. "_lineCap": 0,
  11905. "_fillColor": {
  11906. "__type__": "cc.Color",
  11907. "r": 255,
  11908. "g": 255,
  11909. "b": 255,
  11910. "a": 255
  11911. },
  11912. "_miterLimit": 10,
  11913. "_id": "afp7UsmMpLWoQyWHqMorTI"
  11914. },
  11915. {
  11916. "__type__": "cc.Node",
  11917. "_name": "oriX",
  11918. "_objFlags": 0,
  11919. "_parent": {
  11920. "__id__": 179
  11921. },
  11922. "_children": [],
  11923. "_active": true,
  11924. "_components": [
  11925. {
  11926. "__id__": 246
  11927. }
  11928. ],
  11929. "_prefab": null,
  11930. "_opacity": 255,
  11931. "_color": {
  11932. "__type__": "cc.Color",
  11933. "r": 255,
  11934. "g": 255,
  11935. "b": 255,
  11936. "a": 255
  11937. },
  11938. "_contentSize": {
  11939. "__type__": "cc.Size",
  11940. "width": 0,
  11941. "height": 0
  11942. },
  11943. "_anchorPoint": {
  11944. "__type__": "cc.Vec2",
  11945. "x": 0.5,
  11946. "y": 0.5
  11947. },
  11948. "_trs": {
  11949. "__type__": "TypedArray",
  11950. "ctor": "Float64Array",
  11951. "array": [
  11952. 0,
  11953. -185.255,
  11954. 0,
  11955. 0,
  11956. 0,
  11957. 0,
  11958. 1,
  11959. 1,
  11960. 1,
  11961. 1
  11962. ]
  11963. },
  11964. "_eulerAngles": {
  11965. "__type__": "cc.Vec3",
  11966. "x": 0,
  11967. "y": 0,
  11968. "z": 0
  11969. },
  11970. "_skewX": 0,
  11971. "_skewY": 0,
  11972. "_is3DNode": false,
  11973. "_groupIndex": 0,
  11974. "groupIndex": 0,
  11975. "_id": "a6jQQMjvtB8rpq9olPWeBr"
  11976. },
  11977. {
  11978. "__type__": "cc.Graphics",
  11979. "_name": "",
  11980. "_objFlags": 0,
  11981. "node": {
  11982. "__id__": 245
  11983. },
  11984. "_enabled": true,
  11985. "_materials": [
  11986. {
  11987. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  11988. }
  11989. ],
  11990. "_lineWidth": 1,
  11991. "_strokeColor": {
  11992. "__type__": "cc.Color",
  11993. "r": 255,
  11994. "g": 255,
  11995. "b": 255,
  11996. "a": 255
  11997. },
  11998. "_lineJoin": 2,
  11999. "_lineCap": 0,
  12000. "_fillColor": {
  12001. "__type__": "cc.Color",
  12002. "r": 255,
  12003. "g": 255,
  12004. "b": 255,
  12005. "a": 255
  12006. },
  12007. "_miterLimit": 10,
  12008. "_id": "eeFM9gWupMsbEu8BC5YXJ3"
  12009. },
  12010. {
  12011. "__type__": "cc.Graphics",
  12012. "_name": "",
  12013. "_objFlags": 0,
  12014. "node": {
  12015. "__id__": 179
  12016. },
  12017. "_enabled": true,
  12018. "_materials": [
  12019. {
  12020. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  12021. }
  12022. ],
  12023. "_lineWidth": 1,
  12024. "_strokeColor": {
  12025. "__type__": "cc.Color",
  12026. "r": 255,
  12027. "g": 0,
  12028. "b": 0,
  12029. "a": 255
  12030. },
  12031. "_lineJoin": 2,
  12032. "_lineCap": 0,
  12033. "_fillColor": {
  12034. "__type__": "cc.Color",
  12035. "r": 255,
  12036. "g": 255,
  12037. "b": 255,
  12038. "a": 255
  12039. },
  12040. "_miterLimit": 10,
  12041. "_id": "d4u3IpquFEZr4b7Nw8tbcb"
  12042. },
  12043. {
  12044. "__type__": "febd5f6s95JWb1i/B7xQahG",
  12045. "_name": "",
  12046. "_objFlags": 0,
  12047. "node": {
  12048. "__id__": 179
  12049. },
  12050. "_enabled": true,
  12051. "line": null,
  12052. "index": 0,
  12053. "circle": {
  12054. "__id__": 242
  12055. },
  12056. "temp": {
  12057. "__id__": 244
  12058. },
  12059. "oriBeta": {
  12060. "__id__": 249
  12061. },
  12062. "oriGamma": {
  12063. "__id__": 263
  12064. },
  12065. "oriAlpha": {
  12066. "__id__": 257
  12067. },
  12068. "oriX": {
  12069. "__id__": 246
  12070. },
  12071. "lineArray": [],
  12072. "tempArray": [],
  12073. "limitArray": [],
  12074. "bPause": false,
  12075. "_id": "63lLp+sEVMPo+Dd/09zZl5"
  12076. },
  12077. {
  12078. "__type__": "cc.Graphics",
  12079. "_name": "",
  12080. "_objFlags": 0,
  12081. "node": {
  12082. "__id__": 250
  12083. },
  12084. "_enabled": true,
  12085. "_materials": [
  12086. {
  12087. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  12088. }
  12089. ],
  12090. "_lineWidth": 1,
  12091. "_strokeColor": {
  12092. "__type__": "cc.Color",
  12093. "r": 255,
  12094. "g": 255,
  12095. "b": 0,
  12096. "a": 255
  12097. },
  12098. "_lineJoin": 2,
  12099. "_lineCap": 0,
  12100. "_fillColor": {
  12101. "__type__": "cc.Color",
  12102. "r": 255,
  12103. "g": 255,
  12104. "b": 255,
  12105. "a": 255
  12106. },
  12107. "_miterLimit": 10,
  12108. "_id": "b4Lrbu5RxHR6/000YgyK9h"
  12109. },
  12110. {
  12111. "__type__": "cc.Node",
  12112. "_name": "oriBeta",
  12113. "_objFlags": 0,
  12114. "_parent": {
  12115. "__id__": 251
  12116. },
  12117. "_children": [
  12118. {
  12119. "__id__": 273
  12120. }
  12121. ],
  12122. "_active": true,
  12123. "_components": [
  12124. {
  12125. "__id__": 249
  12126. }
  12127. ],
  12128. "_prefab": null,
  12129. "_opacity": 255,
  12130. "_color": {
  12131. "__type__": "cc.Color",
  12132. "r": 255,
  12133. "g": 255,
  12134. "b": 255,
  12135. "a": 255
  12136. },
  12137. "_contentSize": {
  12138. "__type__": "cc.Size",
  12139. "width": 0,
  12140. "height": 0
  12141. },
  12142. "_anchorPoint": {
  12143. "__type__": "cc.Vec2",
  12144. "x": 0.5,
  12145. "y": 0.5
  12146. },
  12147. "_trs": {
  12148. "__type__": "TypedArray",
  12149. "ctor": "Float64Array",
  12150. "array": [
  12151. -250,
  12152. 70,
  12153. 0,
  12154. 0,
  12155. 0,
  12156. 0,
  12157. 1,
  12158. 1,
  12159. 1,
  12160. 1
  12161. ]
  12162. },
  12163. "_eulerAngles": {
  12164. "__type__": "cc.Vec3",
  12165. "x": 0,
  12166. "y": 0,
  12167. "z": 0
  12168. },
  12169. "_skewX": 0,
  12170. "_skewY": 0,
  12171. "_is3DNode": false,
  12172. "_groupIndex": 0,
  12173. "groupIndex": 0,
  12174. "_id": "11gN+NXV1FyoLxyzIdVq3s"
  12175. },
  12176. {
  12177. "__type__": "cc.Node",
  12178. "_name": "LineOri",
  12179. "_objFlags": 0,
  12180. "_parent": {
  12181. "__id__": 2
  12182. },
  12183. "_children": [
  12184. {
  12185. "__id__": 252
  12186. },
  12187. {
  12188. "__id__": 250
  12189. },
  12190. {
  12191. "__id__": 258
  12192. },
  12193. {
  12194. "__id__": 264
  12195. }
  12196. ],
  12197. "_active": true,
  12198. "_components": [],
  12199. "_prefab": null,
  12200. "_opacity": 255,
  12201. "_color": {
  12202. "__type__": "cc.Color",
  12203. "r": 255,
  12204. "g": 255,
  12205. "b": 255,
  12206. "a": 255
  12207. },
  12208. "_contentSize": {
  12209. "__type__": "cc.Size",
  12210. "width": 0,
  12211. "height": 0
  12212. },
  12213. "_anchorPoint": {
  12214. "__type__": "cc.Vec2",
  12215. "x": 0.5,
  12216. "y": 0.5
  12217. },
  12218. "_trs": {
  12219. "__type__": "TypedArray",
  12220. "ctor": "Float64Array",
  12221. "array": [
  12222. 0,
  12223. -400.415,
  12224. 0,
  12225. 0,
  12226. 0,
  12227. 0,
  12228. 1,
  12229. 1,
  12230. 1,
  12231. 1
  12232. ]
  12233. },
  12234. "_eulerAngles": {
  12235. "__type__": "cc.Vec3",
  12236. "x": 0,
  12237. "y": 0,
  12238. "z": 0
  12239. },
  12240. "_skewX": 0,
  12241. "_skewY": 0,
  12242. "_is3DNode": false,
  12243. "_groupIndex": 0,
  12244. "groupIndex": 0,
  12245. "_id": "f4UwQB3nRJj6keSCLt8Srh"
  12246. },
  12247. {
  12248. "__type__": "cc.Node",
  12249. "_name": "oriAlpha",
  12250. "_objFlags": 0,
  12251. "_parent": {
  12252. "__id__": 251
  12253. },
  12254. "_children": [
  12255. {
  12256. "__id__": 253
  12257. }
  12258. ],
  12259. "_active": true,
  12260. "_components": [
  12261. {
  12262. "__id__": 257
  12263. }
  12264. ],
  12265. "_prefab": null,
  12266. "_opacity": 255,
  12267. "_color": {
  12268. "__type__": "cc.Color",
  12269. "r": 255,
  12270. "g": 255,
  12271. "b": 255,
  12272. "a": 255
  12273. },
  12274. "_contentSize": {
  12275. "__type__": "cc.Size",
  12276. "width": 0,
  12277. "height": 0
  12278. },
  12279. "_anchorPoint": {
  12280. "__type__": "cc.Vec2",
  12281. "x": 0.5,
  12282. "y": 0.5
  12283. },
  12284. "_trs": {
  12285. "__type__": "TypedArray",
  12286. "ctor": "Float64Array",
  12287. "array": [
  12288. -250,
  12289. 0,
  12290. 0,
  12291. 0,
  12292. 0,
  12293. 0,
  12294. 1,
  12295. 1,
  12296. 1,
  12297. 1
  12298. ]
  12299. },
  12300. "_eulerAngles": {
  12301. "__type__": "cc.Vec3",
  12302. "x": 0,
  12303. "y": 0,
  12304. "z": 0
  12305. },
  12306. "_skewX": 0,
  12307. "_skewY": 0,
  12308. "_is3DNode": false,
  12309. "_groupIndex": 0,
  12310. "groupIndex": 0,
  12311. "_id": "27SETs+YJIiaIaRCCrW8mQ"
  12312. },
  12313. {
  12314. "__type__": "cc.Node",
  12315. "_name": "Alpha",
  12316. "_objFlags": 0,
  12317. "_parent": {
  12318. "__id__": 252
  12319. },
  12320. "_children": [
  12321. {
  12322. "__id__": 254
  12323. }
  12324. ],
  12325. "_active": true,
  12326. "_components": [
  12327. {
  12328. "__id__": 256
  12329. }
  12330. ],
  12331. "_prefab": null,
  12332. "_opacity": 255,
  12333. "_color": {
  12334. "__type__": "cc.Color",
  12335. "r": 255,
  12336. "g": 255,
  12337. "b": 255,
  12338. "a": 255
  12339. },
  12340. "_contentSize": {
  12341. "__type__": "cc.Size",
  12342. "width": 20.01,
  12343. "height": 37.8
  12344. },
  12345. "_anchorPoint": {
  12346. "__type__": "cc.Vec2",
  12347. "x": 1,
  12348. "y": 0.5
  12349. },
  12350. "_trs": {
  12351. "__type__": "TypedArray",
  12352. "ctor": "Float64Array",
  12353. "array": [
  12354. -70,
  12355. 0,
  12356. 0,
  12357. 0,
  12358. 0,
  12359. 0,
  12360. 1,
  12361. 1,
  12362. 1,
  12363. 1
  12364. ]
  12365. },
  12366. "_eulerAngles": {
  12367. "__type__": "cc.Vec3",
  12368. "x": 0,
  12369. "y": 0,
  12370. "z": 0
  12371. },
  12372. "_skewX": 0,
  12373. "_skewY": 0,
  12374. "_is3DNode": false,
  12375. "_groupIndex": 0,
  12376. "groupIndex": 0,
  12377. "_id": "b9NzogL75Jo4NOaN24k2ED"
  12378. },
  12379. {
  12380. "__type__": "cc.Node",
  12381. "_name": "purple",
  12382. "_objFlags": 0,
  12383. "_parent": {
  12384. "__id__": 253
  12385. },
  12386. "_children": [],
  12387. "_active": true,
  12388. "_components": [
  12389. {
  12390. "__id__": 255
  12391. }
  12392. ],
  12393. "_prefab": null,
  12394. "_opacity": 255,
  12395. "_color": {
  12396. "__type__": "cc.Color",
  12397. "r": 255,
  12398. "g": 0,
  12399. "b": 255,
  12400. "a": 255
  12401. },
  12402. "_contentSize": {
  12403. "__type__": "cc.Size",
  12404. "width": 20,
  12405. "height": 20
  12406. },
  12407. "_anchorPoint": {
  12408. "__type__": "cc.Vec2",
  12409. "x": 0.5,
  12410. "y": 0.5
  12411. },
  12412. "_trs": {
  12413. "__type__": "TypedArray",
  12414. "ctor": "Float64Array",
  12415. "array": [
  12416. 20,
  12417. 0,
  12418. 0,
  12419. 0,
  12420. 0,
  12421. 0,
  12422. 1,
  12423. 1,
  12424. 1,
  12425. 1
  12426. ]
  12427. },
  12428. "_eulerAngles": {
  12429. "__type__": "cc.Vec3",
  12430. "x": 0,
  12431. "y": 0,
  12432. "z": 0
  12433. },
  12434. "_skewX": 0,
  12435. "_skewY": 0,
  12436. "_is3DNode": false,
  12437. "_groupIndex": 0,
  12438. "groupIndex": 0,
  12439. "_id": "earh4YEwVJWKnBHfmhS9ah"
  12440. },
  12441. {
  12442. "__type__": "cc.Sprite",
  12443. "_name": "",
  12444. "_objFlags": 0,
  12445. "node": {
  12446. "__id__": 254
  12447. },
  12448. "_enabled": true,
  12449. "_materials": [
  12450. {
  12451. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12452. }
  12453. ],
  12454. "_srcBlendFactor": 770,
  12455. "_dstBlendFactor": 771,
  12456. "_spriteFrame": {
  12457. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  12458. },
  12459. "_type": 0,
  12460. "_sizeMode": 0,
  12461. "_fillType": 0,
  12462. "_fillCenter": {
  12463. "__type__": "cc.Vec2",
  12464. "x": 0,
  12465. "y": 0
  12466. },
  12467. "_fillStart": 0,
  12468. "_fillRange": 0,
  12469. "_isTrimmedMode": true,
  12470. "_atlas": null,
  12471. "_id": "f5b0EzxP5MvZoHocvTNyOe"
  12472. },
  12473. {
  12474. "__type__": "cc.Label",
  12475. "_name": "",
  12476. "_objFlags": 0,
  12477. "node": {
  12478. "__id__": 253
  12479. },
  12480. "_enabled": true,
  12481. "_materials": [
  12482. {
  12483. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12484. }
  12485. ],
  12486. "_useOriginalSize": false,
  12487. "_string": "A",
  12488. "_N$string": "A",
  12489. "_fontSize": 30,
  12490. "_lineHeight": 30,
  12491. "_enableWrapText": true,
  12492. "_N$file": null,
  12493. "_isSystemFontUsed": true,
  12494. "_spacingX": 0,
  12495. "_batchAsBitmap": false,
  12496. "_styleFlags": 0,
  12497. "_underlineHeight": 0,
  12498. "_N$horizontalAlign": 1,
  12499. "_N$verticalAlign": 1,
  12500. "_N$fontFamily": "Arial",
  12501. "_N$overflow": 0,
  12502. "_N$cacheMode": 0,
  12503. "_id": "4dDVwhqphCOaeEBEUCQitm"
  12504. },
  12505. {
  12506. "__type__": "cc.Graphics",
  12507. "_name": "",
  12508. "_objFlags": 0,
  12509. "node": {
  12510. "__id__": 252
  12511. },
  12512. "_enabled": true,
  12513. "_materials": [
  12514. {
  12515. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  12516. }
  12517. ],
  12518. "_lineWidth": 1,
  12519. "_strokeColor": {
  12520. "__type__": "cc.Color",
  12521. "r": 255,
  12522. "g": 0,
  12523. "b": 255,
  12524. "a": 255
  12525. },
  12526. "_lineJoin": 2,
  12527. "_lineCap": 0,
  12528. "_fillColor": {
  12529. "__type__": "cc.Color",
  12530. "r": 255,
  12531. "g": 255,
  12532. "b": 255,
  12533. "a": 255
  12534. },
  12535. "_miterLimit": 10,
  12536. "_id": "d0X5mO+5VI7IJCx5BsPvAy"
  12537. },
  12538. {
  12539. "__type__": "cc.Node",
  12540. "_name": "oriGamma",
  12541. "_objFlags": 0,
  12542. "_parent": {
  12543. "__id__": 251
  12544. },
  12545. "_children": [
  12546. {
  12547. "__id__": 259
  12548. }
  12549. ],
  12550. "_active": true,
  12551. "_components": [
  12552. {
  12553. "__id__": 263
  12554. }
  12555. ],
  12556. "_prefab": null,
  12557. "_opacity": 255,
  12558. "_color": {
  12559. "__type__": "cc.Color",
  12560. "r": 255,
  12561. "g": 255,
  12562. "b": 255,
  12563. "a": 255
  12564. },
  12565. "_contentSize": {
  12566. "__type__": "cc.Size",
  12567. "width": 0,
  12568. "height": 0
  12569. },
  12570. "_anchorPoint": {
  12571. "__type__": "cc.Vec2",
  12572. "x": 0.5,
  12573. "y": 0.5
  12574. },
  12575. "_trs": {
  12576. "__type__": "TypedArray",
  12577. "ctor": "Float64Array",
  12578. "array": [
  12579. -250,
  12580. -70,
  12581. 0,
  12582. 0,
  12583. 0,
  12584. 0,
  12585. 1,
  12586. 1,
  12587. 1,
  12588. 1
  12589. ]
  12590. },
  12591. "_eulerAngles": {
  12592. "__type__": "cc.Vec3",
  12593. "x": 0,
  12594. "y": 0,
  12595. "z": 0
  12596. },
  12597. "_skewX": 0,
  12598. "_skewY": 0,
  12599. "_is3DNode": false,
  12600. "_groupIndex": 0,
  12601. "groupIndex": 0,
  12602. "_id": "d8w7s44E5K+49xr8o1D78k"
  12603. },
  12604. {
  12605. "__type__": "cc.Node",
  12606. "_name": "Gamma",
  12607. "_objFlags": 0,
  12608. "_parent": {
  12609. "__id__": 258
  12610. },
  12611. "_children": [
  12612. {
  12613. "__id__": 260
  12614. }
  12615. ],
  12616. "_active": true,
  12617. "_components": [
  12618. {
  12619. "__id__": 262
  12620. }
  12621. ],
  12622. "_prefab": null,
  12623. "_opacity": 255,
  12624. "_color": {
  12625. "__type__": "cc.Color",
  12626. "r": 255,
  12627. "g": 255,
  12628. "b": 255,
  12629. "a": 255
  12630. },
  12631. "_contentSize": {
  12632. "__type__": "cc.Size",
  12633. "width": 23.33,
  12634. "height": 37.8
  12635. },
  12636. "_anchorPoint": {
  12637. "__type__": "cc.Vec2",
  12638. "x": 1,
  12639. "y": 0.5
  12640. },
  12641. "_trs": {
  12642. "__type__": "TypedArray",
  12643. "ctor": "Float64Array",
  12644. "array": [
  12645. -70,
  12646. 0,
  12647. 0,
  12648. 0,
  12649. 0,
  12650. 0,
  12651. 1,
  12652. 1,
  12653. 1,
  12654. 1
  12655. ]
  12656. },
  12657. "_eulerAngles": {
  12658. "__type__": "cc.Vec3",
  12659. "x": 0,
  12660. "y": 0,
  12661. "z": 0
  12662. },
  12663. "_skewX": 0,
  12664. "_skewY": 0,
  12665. "_is3DNode": false,
  12666. "_groupIndex": 0,
  12667. "groupIndex": 0,
  12668. "_id": "d97XoASWJOPo2iZVy8YYlX"
  12669. },
  12670. {
  12671. "__type__": "cc.Node",
  12672. "_name": "cyan",
  12673. "_objFlags": 0,
  12674. "_parent": {
  12675. "__id__": 259
  12676. },
  12677. "_children": [],
  12678. "_active": true,
  12679. "_components": [
  12680. {
  12681. "__id__": 261
  12682. }
  12683. ],
  12684. "_prefab": null,
  12685. "_opacity": 255,
  12686. "_color": {
  12687. "__type__": "cc.Color",
  12688. "r": 0,
  12689. "g": 255,
  12690. "b": 255,
  12691. "a": 255
  12692. },
  12693. "_contentSize": {
  12694. "__type__": "cc.Size",
  12695. "width": 20,
  12696. "height": 20
  12697. },
  12698. "_anchorPoint": {
  12699. "__type__": "cc.Vec2",
  12700. "x": 0.5,
  12701. "y": 0.5
  12702. },
  12703. "_trs": {
  12704. "__type__": "TypedArray",
  12705. "ctor": "Float64Array",
  12706. "array": [
  12707. 20,
  12708. 0,
  12709. 0,
  12710. 0,
  12711. 0,
  12712. 0,
  12713. 1,
  12714. 1,
  12715. 1,
  12716. 1
  12717. ]
  12718. },
  12719. "_eulerAngles": {
  12720. "__type__": "cc.Vec3",
  12721. "x": 0,
  12722. "y": 0,
  12723. "z": 0
  12724. },
  12725. "_skewX": 0,
  12726. "_skewY": 0,
  12727. "_is3DNode": false,
  12728. "_groupIndex": 0,
  12729. "groupIndex": 0,
  12730. "_id": "9ecAXq+MdM+Z/4CRMAGLvm"
  12731. },
  12732. {
  12733. "__type__": "cc.Sprite",
  12734. "_name": "",
  12735. "_objFlags": 0,
  12736. "node": {
  12737. "__id__": 260
  12738. },
  12739. "_enabled": true,
  12740. "_materials": [
  12741. {
  12742. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12743. }
  12744. ],
  12745. "_srcBlendFactor": 770,
  12746. "_dstBlendFactor": 771,
  12747. "_spriteFrame": {
  12748. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  12749. },
  12750. "_type": 0,
  12751. "_sizeMode": 0,
  12752. "_fillType": 0,
  12753. "_fillCenter": {
  12754. "__type__": "cc.Vec2",
  12755. "x": 0,
  12756. "y": 0
  12757. },
  12758. "_fillStart": 0,
  12759. "_fillRange": 0,
  12760. "_isTrimmedMode": true,
  12761. "_atlas": null,
  12762. "_id": "f7JCtiMXNPP6mMow7jFDOF"
  12763. },
  12764. {
  12765. "__type__": "cc.Label",
  12766. "_name": "",
  12767. "_objFlags": 0,
  12768. "node": {
  12769. "__id__": 259
  12770. },
  12771. "_enabled": true,
  12772. "_materials": [
  12773. {
  12774. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12775. }
  12776. ],
  12777. "_useOriginalSize": false,
  12778. "_string": "G",
  12779. "_N$string": "G",
  12780. "_fontSize": 30,
  12781. "_lineHeight": 30,
  12782. "_enableWrapText": true,
  12783. "_N$file": null,
  12784. "_isSystemFontUsed": true,
  12785. "_spacingX": 0,
  12786. "_batchAsBitmap": false,
  12787. "_styleFlags": 0,
  12788. "_underlineHeight": 0,
  12789. "_N$horizontalAlign": 1,
  12790. "_N$verticalAlign": 1,
  12791. "_N$fontFamily": "Arial",
  12792. "_N$overflow": 0,
  12793. "_N$cacheMode": 0,
  12794. "_id": "d8++oqW99PFLVvxb0ZgoQD"
  12795. },
  12796. {
  12797. "__type__": "cc.Graphics",
  12798. "_name": "",
  12799. "_objFlags": 0,
  12800. "node": {
  12801. "__id__": 258
  12802. },
  12803. "_enabled": true,
  12804. "_materials": [
  12805. {
  12806. "__uuid__": "6f801092-0c37-4f30-89ef-c8d960825b36"
  12807. }
  12808. ],
  12809. "_lineWidth": 1,
  12810. "_strokeColor": {
  12811. "__type__": "cc.Color",
  12812. "r": 0,
  12813. "g": 255,
  12814. "b": 255,
  12815. "a": 255
  12816. },
  12817. "_lineJoin": 2,
  12818. "_lineCap": 0,
  12819. "_fillColor": {
  12820. "__type__": "cc.Color",
  12821. "r": 255,
  12822. "g": 255,
  12823. "b": 255,
  12824. "a": 255
  12825. },
  12826. "_miterLimit": 10,
  12827. "_id": "18qb0PYAdPmqpo558ZIQnP"
  12828. },
  12829. {
  12830. "__type__": "cc.Node",
  12831. "_name": "ori",
  12832. "_objFlags": 0,
  12833. "_parent": {
  12834. "__id__": 251
  12835. },
  12836. "_children": [
  12837. {
  12838. "__id__": 265
  12839. },
  12840. {
  12841. "__id__": 267
  12842. },
  12843. {
  12844. "__id__": 269
  12845. },
  12846. {
  12847. "__id__": 271
  12848. }
  12849. ],
  12850. "_active": true,
  12851. "_components": [],
  12852. "_prefab": null,
  12853. "_opacity": 255,
  12854. "_color": {
  12855. "__type__": "cc.Color",
  12856. "r": 255,
  12857. "g": 255,
  12858. "b": 255,
  12859. "a": 255
  12860. },
  12861. "_contentSize": {
  12862. "__type__": "cc.Size",
  12863. "width": 0,
  12864. "height": 0
  12865. },
  12866. "_anchorPoint": {
  12867. "__type__": "cc.Vec2",
  12868. "x": 0.5,
  12869. "y": 0.5
  12870. },
  12871. "_trs": {
  12872. "__type__": "TypedArray",
  12873. "ctor": "Float64Array",
  12874. "array": [
  12875. 182.966,
  12876. 0,
  12877. 0,
  12878. 0,
  12879. 0,
  12880. 0,
  12881. 1,
  12882. 1,
  12883. 1,
  12884. 1
  12885. ]
  12886. },
  12887. "_eulerAngles": {
  12888. "__type__": "cc.Vec3",
  12889. "x": 0,
  12890. "y": 0,
  12891. "z": 0
  12892. },
  12893. "_skewX": 0,
  12894. "_skewY": 0,
  12895. "_is3DNode": false,
  12896. "_groupIndex": 0,
  12897. "groupIndex": 0,
  12898. "_id": "585nlb9VREB69V4q9H+Ruf"
  12899. },
  12900. {
  12901. "__type__": "cc.Node",
  12902. "_name": "x",
  12903. "_objFlags": 0,
  12904. "_parent": {
  12905. "__id__": 264
  12906. },
  12907. "_children": [],
  12908. "_active": true,
  12909. "_components": [
  12910. {
  12911. "__id__": 266
  12912. }
  12913. ],
  12914. "_prefab": null,
  12915. "_opacity": 255,
  12916. "_color": {
  12917. "__type__": "cc.Color",
  12918. "r": 255,
  12919. "g": 255,
  12920. "b": 255,
  12921. "a": 255
  12922. },
  12923. "_contentSize": {
  12924. "__type__": "cc.Size",
  12925. "width": 97.87,
  12926. "height": 50.4
  12927. },
  12928. "_anchorPoint": {
  12929. "__type__": "cc.Vec2",
  12930. "x": 0,
  12931. "y": 0.5
  12932. },
  12933. "_trs": {
  12934. "__type__": "TypedArray",
  12935. "ctor": "Float64Array",
  12936. "array": [
  12937. 0,
  12938. 70,
  12939. 0,
  12940. 0,
  12941. 0,
  12942. 0,
  12943. 1,
  12944. 1,
  12945. 1,
  12946. 1
  12947. ]
  12948. },
  12949. "_eulerAngles": {
  12950. "__type__": "cc.Vec3",
  12951. "x": 0,
  12952. "y": 0,
  12953. "z": 0
  12954. },
  12955. "_skewX": 0,
  12956. "_skewY": 0,
  12957. "_is3DNode": false,
  12958. "_groupIndex": 0,
  12959. "groupIndex": 0,
  12960. "_id": "52qQ87Z8lCMY0Z0we2kqY/"
  12961. },
  12962. {
  12963. "__type__": "cc.Label",
  12964. "_name": "",
  12965. "_objFlags": 0,
  12966. "node": {
  12967. "__id__": 265
  12968. },
  12969. "_enabled": true,
  12970. "_materials": [
  12971. {
  12972. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  12973. }
  12974. ],
  12975. "_useOriginalSize": false,
  12976. "_string": "Label",
  12977. "_N$string": "Label",
  12978. "_fontSize": 40,
  12979. "_lineHeight": 40,
  12980. "_enableWrapText": true,
  12981. "_N$file": null,
  12982. "_isSystemFontUsed": true,
  12983. "_spacingX": 0,
  12984. "_batchAsBitmap": false,
  12985. "_styleFlags": 0,
  12986. "_underlineHeight": 0,
  12987. "_N$horizontalAlign": 0,
  12988. "_N$verticalAlign": 1,
  12989. "_N$fontFamily": "Arial",
  12990. "_N$overflow": 0,
  12991. "_N$cacheMode": 0,
  12992. "_id": "fcRIpC1PFBS5w2bxttTq+f"
  12993. },
  12994. {
  12995. "__type__": "cc.Node",
  12996. "_name": "y",
  12997. "_objFlags": 0,
  12998. "_parent": {
  12999. "__id__": 264
  13000. },
  13001. "_children": [],
  13002. "_active": true,
  13003. "_components": [
  13004. {
  13005. "__id__": 268
  13006. }
  13007. ],
  13008. "_prefab": null,
  13009. "_opacity": 255,
  13010. "_color": {
  13011. "__type__": "cc.Color",
  13012. "r": 255,
  13013. "g": 255,
  13014. "b": 255,
  13015. "a": 255
  13016. },
  13017. "_contentSize": {
  13018. "__type__": "cc.Size",
  13019. "width": 97.87,
  13020. "height": 50.4
  13021. },
  13022. "_anchorPoint": {
  13023. "__type__": "cc.Vec2",
  13024. "x": 0,
  13025. "y": 0.5
  13026. },
  13027. "_trs": {
  13028. "__type__": "TypedArray",
  13029. "ctor": "Float64Array",
  13030. "array": [
  13031. 0,
  13032. 0,
  13033. 0,
  13034. 0,
  13035. 0,
  13036. 0,
  13037. 1,
  13038. 1,
  13039. 1,
  13040. 1
  13041. ]
  13042. },
  13043. "_eulerAngles": {
  13044. "__type__": "cc.Vec3",
  13045. "x": 0,
  13046. "y": 0,
  13047. "z": 0
  13048. },
  13049. "_skewX": 0,
  13050. "_skewY": 0,
  13051. "_is3DNode": false,
  13052. "_groupIndex": 0,
  13053. "groupIndex": 0,
  13054. "_id": "d6bnt1lQ5H0I1lxqrCIQ7z"
  13055. },
  13056. {
  13057. "__type__": "cc.Label",
  13058. "_name": "",
  13059. "_objFlags": 0,
  13060. "node": {
  13061. "__id__": 267
  13062. },
  13063. "_enabled": true,
  13064. "_materials": [
  13065. {
  13066. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13067. }
  13068. ],
  13069. "_useOriginalSize": false,
  13070. "_string": "Label",
  13071. "_N$string": "Label",
  13072. "_fontSize": 40,
  13073. "_lineHeight": 40,
  13074. "_enableWrapText": true,
  13075. "_N$file": null,
  13076. "_isSystemFontUsed": true,
  13077. "_spacingX": 0,
  13078. "_batchAsBitmap": false,
  13079. "_styleFlags": 0,
  13080. "_underlineHeight": 0,
  13081. "_N$horizontalAlign": 1,
  13082. "_N$verticalAlign": 1,
  13083. "_N$fontFamily": "Arial",
  13084. "_N$overflow": 0,
  13085. "_N$cacheMode": 0,
  13086. "_id": "db91Yd+bFCkJfZ2MFAlk2w"
  13087. },
  13088. {
  13089. "__type__": "cc.Node",
  13090. "_name": "z",
  13091. "_objFlags": 0,
  13092. "_parent": {
  13093. "__id__": 264
  13094. },
  13095. "_children": [],
  13096. "_active": true,
  13097. "_components": [
  13098. {
  13099. "__id__": 270
  13100. }
  13101. ],
  13102. "_prefab": null,
  13103. "_opacity": 255,
  13104. "_color": {
  13105. "__type__": "cc.Color",
  13106. "r": 255,
  13107. "g": 255,
  13108. "b": 255,
  13109. "a": 255
  13110. },
  13111. "_contentSize": {
  13112. "__type__": "cc.Size",
  13113. "width": 97.87,
  13114. "height": 50.4
  13115. },
  13116. "_anchorPoint": {
  13117. "__type__": "cc.Vec2",
  13118. "x": 0,
  13119. "y": 0.5
  13120. },
  13121. "_trs": {
  13122. "__type__": "TypedArray",
  13123. "ctor": "Float64Array",
  13124. "array": [
  13125. 0,
  13126. -70,
  13127. 0,
  13128. 0,
  13129. 0,
  13130. 0,
  13131. 1,
  13132. 1,
  13133. 1,
  13134. 1
  13135. ]
  13136. },
  13137. "_eulerAngles": {
  13138. "__type__": "cc.Vec3",
  13139. "x": 0,
  13140. "y": 0,
  13141. "z": 0
  13142. },
  13143. "_skewX": 0,
  13144. "_skewY": 0,
  13145. "_is3DNode": false,
  13146. "_groupIndex": 0,
  13147. "groupIndex": 0,
  13148. "_id": "843JteZwNBrpHpz7x9wEER"
  13149. },
  13150. {
  13151. "__type__": "cc.Label",
  13152. "_name": "",
  13153. "_objFlags": 0,
  13154. "node": {
  13155. "__id__": 269
  13156. },
  13157. "_enabled": true,
  13158. "_materials": [
  13159. {
  13160. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13161. }
  13162. ],
  13163. "_useOriginalSize": false,
  13164. "_string": "Label",
  13165. "_N$string": "Label",
  13166. "_fontSize": 40,
  13167. "_lineHeight": 40,
  13168. "_enableWrapText": true,
  13169. "_N$file": null,
  13170. "_isSystemFontUsed": true,
  13171. "_spacingX": 0,
  13172. "_batchAsBitmap": false,
  13173. "_styleFlags": 0,
  13174. "_underlineHeight": 0,
  13175. "_N$horizontalAlign": 1,
  13176. "_N$verticalAlign": 1,
  13177. "_N$fontFamily": "Arial",
  13178. "_N$overflow": 0,
  13179. "_N$cacheMode": 0,
  13180. "_id": "2dCILcY8BCE6UfHfWGvahC"
  13181. },
  13182. {
  13183. "__type__": "cc.Node",
  13184. "_name": "oriSqrt",
  13185. "_objFlags": 0,
  13186. "_parent": {
  13187. "__id__": 264
  13188. },
  13189. "_children": [],
  13190. "_active": true,
  13191. "_components": [
  13192. {
  13193. "__id__": 272
  13194. }
  13195. ],
  13196. "_prefab": null,
  13197. "_opacity": 255,
  13198. "_color": {
  13199. "__type__": "cc.Color",
  13200. "r": 255,
  13201. "g": 255,
  13202. "b": 255,
  13203. "a": 255
  13204. },
  13205. "_contentSize": {
  13206. "__type__": "cc.Size",
  13207. "width": 97.87,
  13208. "height": 50.4
  13209. },
  13210. "_anchorPoint": {
  13211. "__type__": "cc.Vec2",
  13212. "x": 0,
  13213. "y": 0.5
  13214. },
  13215. "_trs": {
  13216. "__type__": "TypedArray",
  13217. "ctor": "Float64Array",
  13218. "array": [
  13219. 0,
  13220. 177.027,
  13221. 0,
  13222. 0,
  13223. 0,
  13224. 0,
  13225. 1,
  13226. 1,
  13227. 1,
  13228. 1
  13229. ]
  13230. },
  13231. "_eulerAngles": {
  13232. "__type__": "cc.Vec3",
  13233. "x": 0,
  13234. "y": 0,
  13235. "z": 0
  13236. },
  13237. "_skewX": 0,
  13238. "_skewY": 0,
  13239. "_is3DNode": false,
  13240. "_groupIndex": 0,
  13241. "groupIndex": 0,
  13242. "_id": "21GY+4FINOlZG3/440jDLq"
  13243. },
  13244. {
  13245. "__type__": "cc.Label",
  13246. "_name": "",
  13247. "_objFlags": 0,
  13248. "node": {
  13249. "__id__": 271
  13250. },
  13251. "_enabled": true,
  13252. "_materials": [
  13253. {
  13254. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13255. }
  13256. ],
  13257. "_useOriginalSize": false,
  13258. "_string": "Label",
  13259. "_N$string": "Label",
  13260. "_fontSize": 40,
  13261. "_lineHeight": 40,
  13262. "_enableWrapText": true,
  13263. "_N$file": null,
  13264. "_isSystemFontUsed": true,
  13265. "_spacingX": 0,
  13266. "_batchAsBitmap": false,
  13267. "_styleFlags": 0,
  13268. "_underlineHeight": 0,
  13269. "_N$horizontalAlign": 1,
  13270. "_N$verticalAlign": 1,
  13271. "_N$fontFamily": "Arial",
  13272. "_N$overflow": 0,
  13273. "_N$cacheMode": 0,
  13274. "_id": "05DdH1WwpIkIXy84qolgvV"
  13275. },
  13276. {
  13277. "__type__": "cc.Node",
  13278. "_name": "Beta",
  13279. "_objFlags": 0,
  13280. "_parent": {
  13281. "__id__": 250
  13282. },
  13283. "_children": [
  13284. {
  13285. "__id__": 274
  13286. }
  13287. ],
  13288. "_active": true,
  13289. "_components": [
  13290. {
  13291. "__id__": 276
  13292. }
  13293. ],
  13294. "_prefab": null,
  13295. "_opacity": 255,
  13296. "_color": {
  13297. "__type__": "cc.Color",
  13298. "r": 255,
  13299. "g": 255,
  13300. "b": 255,
  13301. "a": 255
  13302. },
  13303. "_contentSize": {
  13304. "__type__": "cc.Size",
  13305. "width": 20.01,
  13306. "height": 37.8
  13307. },
  13308. "_anchorPoint": {
  13309. "__type__": "cc.Vec2",
  13310. "x": 1,
  13311. "y": 0.5
  13312. },
  13313. "_trs": {
  13314. "__type__": "TypedArray",
  13315. "ctor": "Float64Array",
  13316. "array": [
  13317. -70,
  13318. 0,
  13319. 0,
  13320. 0,
  13321. 0,
  13322. 0,
  13323. 1,
  13324. 1,
  13325. 1,
  13326. 1
  13327. ]
  13328. },
  13329. "_eulerAngles": {
  13330. "__type__": "cc.Vec3",
  13331. "x": 0,
  13332. "y": 0,
  13333. "z": 0
  13334. },
  13335. "_skewX": 0,
  13336. "_skewY": 0,
  13337. "_is3DNode": false,
  13338. "_groupIndex": 0,
  13339. "groupIndex": 0,
  13340. "_id": "ac6lgBS6xPz6pgfBX6Kgj/"
  13341. },
  13342. {
  13343. "__type__": "cc.Node",
  13344. "_name": "yellow",
  13345. "_objFlags": 0,
  13346. "_parent": {
  13347. "__id__": 273
  13348. },
  13349. "_children": [],
  13350. "_active": true,
  13351. "_components": [
  13352. {
  13353. "__id__": 275
  13354. }
  13355. ],
  13356. "_prefab": null,
  13357. "_opacity": 255,
  13358. "_color": {
  13359. "__type__": "cc.Color",
  13360. "r": 255,
  13361. "g": 255,
  13362. "b": 0,
  13363. "a": 255
  13364. },
  13365. "_contentSize": {
  13366. "__type__": "cc.Size",
  13367. "width": 20,
  13368. "height": 20
  13369. },
  13370. "_anchorPoint": {
  13371. "__type__": "cc.Vec2",
  13372. "x": 0.5,
  13373. "y": 0.5
  13374. },
  13375. "_trs": {
  13376. "__type__": "TypedArray",
  13377. "ctor": "Float64Array",
  13378. "array": [
  13379. 20,
  13380. 0,
  13381. 0,
  13382. 0,
  13383. 0,
  13384. 0,
  13385. 1,
  13386. 1,
  13387. 1,
  13388. 1
  13389. ]
  13390. },
  13391. "_eulerAngles": {
  13392. "__type__": "cc.Vec3",
  13393. "x": 0,
  13394. "y": 0,
  13395. "z": 0
  13396. },
  13397. "_skewX": 0,
  13398. "_skewY": 0,
  13399. "_is3DNode": false,
  13400. "_groupIndex": 0,
  13401. "groupIndex": 0,
  13402. "_id": "97P7EOxVFBkKZtJCr/3DQL"
  13403. },
  13404. {
  13405. "__type__": "cc.Sprite",
  13406. "_name": "",
  13407. "_objFlags": 0,
  13408. "node": {
  13409. "__id__": 274
  13410. },
  13411. "_enabled": true,
  13412. "_materials": [
  13413. {
  13414. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13415. }
  13416. ],
  13417. "_srcBlendFactor": 770,
  13418. "_dstBlendFactor": 771,
  13419. "_spriteFrame": {
  13420. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  13421. },
  13422. "_type": 0,
  13423. "_sizeMode": 0,
  13424. "_fillType": 0,
  13425. "_fillCenter": {
  13426. "__type__": "cc.Vec2",
  13427. "x": 0,
  13428. "y": 0
  13429. },
  13430. "_fillStart": 0,
  13431. "_fillRange": 0,
  13432. "_isTrimmedMode": true,
  13433. "_atlas": null,
  13434. "_id": "b6jw7uMJ1N3rWS+Mr2hxL+"
  13435. },
  13436. {
  13437. "__type__": "cc.Label",
  13438. "_name": "",
  13439. "_objFlags": 0,
  13440. "node": {
  13441. "__id__": 273
  13442. },
  13443. "_enabled": true,
  13444. "_materials": [
  13445. {
  13446. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13447. }
  13448. ],
  13449. "_useOriginalSize": false,
  13450. "_string": "B",
  13451. "_N$string": "B",
  13452. "_fontSize": 30,
  13453. "_lineHeight": 30,
  13454. "_enableWrapText": true,
  13455. "_N$file": null,
  13456. "_isSystemFontUsed": true,
  13457. "_spacingX": 0,
  13458. "_batchAsBitmap": false,
  13459. "_styleFlags": 0,
  13460. "_underlineHeight": 0,
  13461. "_N$horizontalAlign": 1,
  13462. "_N$verticalAlign": 1,
  13463. "_N$fontFamily": "Arial",
  13464. "_N$overflow": 0,
  13465. "_N$cacheMode": 0,
  13466. "_id": "55eZpvlDFIlLXIxPdUobKx"
  13467. },
  13468. {
  13469. "__type__": "cc.Node",
  13470. "_name": "pause",
  13471. "_objFlags": 0,
  13472. "_parent": {
  13473. "__id__": 170
  13474. },
  13475. "_children": [
  13476. {
  13477. "__id__": 278
  13478. }
  13479. ],
  13480. "_active": true,
  13481. "_components": [
  13482. {
  13483. "__id__": 283
  13484. }
  13485. ],
  13486. "_prefab": null,
  13487. "_opacity": 255,
  13488. "_color": {
  13489. "__type__": "cc.Color",
  13490. "r": 255,
  13491. "g": 255,
  13492. "b": 255,
  13493. "a": 255
  13494. },
  13495. "_contentSize": {
  13496. "__type__": "cc.Size",
  13497. "width": 100,
  13498. "height": 40
  13499. },
  13500. "_anchorPoint": {
  13501. "__type__": "cc.Vec2",
  13502. "x": 0.5,
  13503. "y": 0.5
  13504. },
  13505. "_trs": {
  13506. "__type__": "TypedArray",
  13507. "ctor": "Float64Array",
  13508. "array": [
  13509. -229.787,
  13510. 282.793,
  13511. 0,
  13512. 0,
  13513. 0,
  13514. 0,
  13515. 1,
  13516. 1,
  13517. 1,
  13518. 1
  13519. ]
  13520. },
  13521. "_eulerAngles": {
  13522. "__type__": "cc.Vec3",
  13523. "x": 0,
  13524. "y": 0,
  13525. "z": 0
  13526. },
  13527. "_skewX": 0,
  13528. "_skewY": 0,
  13529. "_is3DNode": false,
  13530. "_groupIndex": 0,
  13531. "groupIndex": 0,
  13532. "_id": "b54DRvbptJDYhS9uwYHyjf"
  13533. },
  13534. {
  13535. "__type__": "cc.Node",
  13536. "_name": "Background",
  13537. "_objFlags": 512,
  13538. "_parent": {
  13539. "__id__": 277
  13540. },
  13541. "_children": [
  13542. {
  13543. "__id__": 279
  13544. }
  13545. ],
  13546. "_active": true,
  13547. "_components": [
  13548. {
  13549. "__id__": 281
  13550. },
  13551. {
  13552. "__id__": 282
  13553. }
  13554. ],
  13555. "_prefab": null,
  13556. "_opacity": 255,
  13557. "_color": {
  13558. "__type__": "cc.Color",
  13559. "r": 255,
  13560. "g": 255,
  13561. "b": 255,
  13562. "a": 255
  13563. },
  13564. "_contentSize": {
  13565. "__type__": "cc.Size",
  13566. "width": 100,
  13567. "height": 40
  13568. },
  13569. "_anchorPoint": {
  13570. "__type__": "cc.Vec2",
  13571. "x": 0.5,
  13572. "y": 0.5
  13573. },
  13574. "_trs": {
  13575. "__type__": "TypedArray",
  13576. "ctor": "Float64Array",
  13577. "array": [
  13578. 0,
  13579. 0,
  13580. 0,
  13581. 0,
  13582. 0,
  13583. 0,
  13584. 1,
  13585. 1,
  13586. 1,
  13587. 1
  13588. ]
  13589. },
  13590. "_eulerAngles": {
  13591. "__type__": "cc.Vec3",
  13592. "x": 0,
  13593. "y": 0,
  13594. "z": 0
  13595. },
  13596. "_skewX": 0,
  13597. "_skewY": 0,
  13598. "_is3DNode": false,
  13599. "_groupIndex": 0,
  13600. "groupIndex": 0,
  13601. "_id": "c0Nbrd+MxKnYkoqNIX6vMi"
  13602. },
  13603. {
  13604. "__type__": "cc.Node",
  13605. "_name": "Label",
  13606. "_objFlags": 512,
  13607. "_parent": {
  13608. "__id__": 278
  13609. },
  13610. "_children": [],
  13611. "_active": true,
  13612. "_components": [
  13613. {
  13614. "__id__": 280
  13615. }
  13616. ],
  13617. "_prefab": null,
  13618. "_opacity": 255,
  13619. "_color": {
  13620. "__type__": "cc.Color",
  13621. "r": 0,
  13622. "g": 0,
  13623. "b": 0,
  13624. "a": 255
  13625. },
  13626. "_contentSize": {
  13627. "__type__": "cc.Size",
  13628. "width": 100,
  13629. "height": 40
  13630. },
  13631. "_anchorPoint": {
  13632. "__type__": "cc.Vec2",
  13633. "x": 0.5,
  13634. "y": 0.5
  13635. },
  13636. "_trs": {
  13637. "__type__": "TypedArray",
  13638. "ctor": "Float64Array",
  13639. "array": [
  13640. 0,
  13641. 0,
  13642. 0,
  13643. 0,
  13644. 0,
  13645. 0,
  13646. 1,
  13647. 1,
  13648. 1,
  13649. 1
  13650. ]
  13651. },
  13652. "_eulerAngles": {
  13653. "__type__": "cc.Vec3",
  13654. "x": 0,
  13655. "y": 0,
  13656. "z": 0
  13657. },
  13658. "_skewX": 0,
  13659. "_skewY": 0,
  13660. "_is3DNode": false,
  13661. "_groupIndex": 0,
  13662. "groupIndex": 0,
  13663. "_id": "24jJummshOXYD/X5S+5R2M"
  13664. },
  13665. {
  13666. "__type__": "cc.Label",
  13667. "_name": "",
  13668. "_objFlags": 0,
  13669. "node": {
  13670. "__id__": 279
  13671. },
  13672. "_enabled": true,
  13673. "_materials": [
  13674. {
  13675. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13676. }
  13677. ],
  13678. "_useOriginalSize": false,
  13679. "_string": "pause",
  13680. "_N$string": "pause",
  13681. "_fontSize": 20,
  13682. "_lineHeight": 40,
  13683. "_enableWrapText": false,
  13684. "_N$file": null,
  13685. "_isSystemFontUsed": true,
  13686. "_spacingX": 0,
  13687. "_batchAsBitmap": false,
  13688. "_styleFlags": 0,
  13689. "_underlineHeight": 0,
  13690. "_N$horizontalAlign": 1,
  13691. "_N$verticalAlign": 1,
  13692. "_N$fontFamily": "Arial",
  13693. "_N$overflow": 1,
  13694. "_N$cacheMode": 1,
  13695. "_id": "20i/Ny/s5KGo3seDoQOC82"
  13696. },
  13697. {
  13698. "__type__": "cc.Sprite",
  13699. "_name": "",
  13700. "_objFlags": 0,
  13701. "node": {
  13702. "__id__": 278
  13703. },
  13704. "_enabled": true,
  13705. "_materials": [
  13706. {
  13707. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  13708. }
  13709. ],
  13710. "_srcBlendFactor": 770,
  13711. "_dstBlendFactor": 771,
  13712. "_spriteFrame": {
  13713. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  13714. },
  13715. "_type": 1,
  13716. "_sizeMode": 0,
  13717. "_fillType": 0,
  13718. "_fillCenter": {
  13719. "__type__": "cc.Vec2",
  13720. "x": 0,
  13721. "y": 0
  13722. },
  13723. "_fillStart": 0,
  13724. "_fillRange": 0,
  13725. "_isTrimmedMode": true,
  13726. "_atlas": null,
  13727. "_id": "76il/gEu5PMIz0zeK5NLOT"
  13728. },
  13729. {
  13730. "__type__": "cc.Widget",
  13731. "_name": "",
  13732. "_objFlags": 0,
  13733. "node": {
  13734. "__id__": 278
  13735. },
  13736. "_enabled": true,
  13737. "alignMode": 0,
  13738. "_target": null,
  13739. "_alignFlags": 45,
  13740. "_left": 0,
  13741. "_right": 0,
  13742. "_top": 0,
  13743. "_bottom": 0,
  13744. "_verticalCenter": 0,
  13745. "_horizontalCenter": 0,
  13746. "_isAbsLeft": true,
  13747. "_isAbsRight": true,
  13748. "_isAbsTop": true,
  13749. "_isAbsBottom": true,
  13750. "_isAbsHorizontalCenter": true,
  13751. "_isAbsVerticalCenter": true,
  13752. "_originalWidth": 100,
  13753. "_originalHeight": 40,
  13754. "_id": "26rTolwENOU5a7xwmHsR98"
  13755. },
  13756. {
  13757. "__type__": "cc.Button",
  13758. "_name": "",
  13759. "_objFlags": 0,
  13760. "node": {
  13761. "__id__": 277
  13762. },
  13763. "_enabled": true,
  13764. "_normalMaterial": null,
  13765. "_grayMaterial": null,
  13766. "duration": 0.1,
  13767. "zoomScale": 1.2,
  13768. "clickEvents": [
  13769. {
  13770. "__id__": 284
  13771. },
  13772. {
  13773. "__id__": 285
  13774. }
  13775. ],
  13776. "_N$interactable": true,
  13777. "_N$enableAutoGrayEffect": false,
  13778. "_N$transition": 2,
  13779. "transition": 2,
  13780. "_N$normalColor": {
  13781. "__type__": "cc.Color",
  13782. "r": 230,
  13783. "g": 230,
  13784. "b": 230,
  13785. "a": 255
  13786. },
  13787. "_N$pressedColor": {
  13788. "__type__": "cc.Color",
  13789. "r": 200,
  13790. "g": 200,
  13791. "b": 200,
  13792. "a": 255
  13793. },
  13794. "pressedColor": {
  13795. "__type__": "cc.Color",
  13796. "r": 200,
  13797. "g": 200,
  13798. "b": 200,
  13799. "a": 255
  13800. },
  13801. "_N$hoverColor": {
  13802. "__type__": "cc.Color",
  13803. "r": 255,
  13804. "g": 255,
  13805. "b": 255,
  13806. "a": 255
  13807. },
  13808. "hoverColor": {
  13809. "__type__": "cc.Color",
  13810. "r": 255,
  13811. "g": 255,
  13812. "b": 255,
  13813. "a": 255
  13814. },
  13815. "_N$disabledColor": {
  13816. "__type__": "cc.Color",
  13817. "r": 120,
  13818. "g": 120,
  13819. "b": 120,
  13820. "a": 200
  13821. },
  13822. "_N$normalSprite": {
  13823. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  13824. },
  13825. "_N$pressedSprite": {
  13826. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  13827. },
  13828. "pressedSprite": {
  13829. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  13830. },
  13831. "_N$hoverSprite": {
  13832. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  13833. },
  13834. "hoverSprite": {
  13835. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  13836. },
  13837. "_N$disabledSprite": {
  13838. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  13839. },
  13840. "_N$target": {
  13841. "__id__": 278
  13842. },
  13843. "_id": "61PMCwCrhJbLYPtrNxZX1C"
  13844. },
  13845. {
  13846. "__type__": "cc.ClickEvent",
  13847. "target": {
  13848. "__id__": 179
  13849. },
  13850. "component": "",
  13851. "_componentId": "febd5f6s95JWb1i/B7xQahG",
  13852. "handler": "onPause",
  13853. "customEventData": ""
  13854. },
  13855. {
  13856. "__type__": "cc.ClickEvent",
  13857. "target": {
  13858. "__id__": 2
  13859. },
  13860. "component": "",
  13861. "_componentId": "3ba62KptSxJPoIcTrFTcDEC",
  13862. "handler": "onResetState",
  13863. "customEventData": ""
  13864. },
  13865. {
  13866. "__type__": "cc.Node",
  13867. "_name": "clear",
  13868. "_objFlags": 0,
  13869. "_parent": {
  13870. "__id__": 170
  13871. },
  13872. "_children": [
  13873. {
  13874. "__id__": 287
  13875. }
  13876. ],
  13877. "_active": true,
  13878. "_components": [
  13879. {
  13880. "__id__": 292
  13881. }
  13882. ],
  13883. "_prefab": null,
  13884. "_opacity": 255,
  13885. "_color": {
  13886. "__type__": "cc.Color",
  13887. "r": 255,
  13888. "g": 255,
  13889. "b": 255,
  13890. "a": 255
  13891. },
  13892. "_contentSize": {
  13893. "__type__": "cc.Size",
  13894. "width": 100,
  13895. "height": 40
  13896. },
  13897. "_anchorPoint": {
  13898. "__type__": "cc.Vec2",
  13899. "x": 0.5,
  13900. "y": 0.5
  13901. },
  13902. "_trs": {
  13903. "__type__": "TypedArray",
  13904. "ctor": "Float64Array",
  13905. "array": [
  13906. 155.114,
  13907. 282.793,
  13908. 0,
  13909. 0,
  13910. 0,
  13911. 0,
  13912. 1,
  13913. 1,
  13914. 1,
  13915. 1
  13916. ]
  13917. },
  13918. "_eulerAngles": {
  13919. "__type__": "cc.Vec3",
  13920. "x": 0,
  13921. "y": 0,
  13922. "z": 0
  13923. },
  13924. "_skewX": 0,
  13925. "_skewY": 0,
  13926. "_is3DNode": false,
  13927. "_groupIndex": 0,
  13928. "groupIndex": 0,
  13929. "_id": "69ZvmdbFJIsY0hqVRkndOL"
  13930. },
  13931. {
  13932. "__type__": "cc.Node",
  13933. "_name": "Background",
  13934. "_objFlags": 512,
  13935. "_parent": {
  13936. "__id__": 286
  13937. },
  13938. "_children": [
  13939. {
  13940. "__id__": 288
  13941. }
  13942. ],
  13943. "_active": true,
  13944. "_components": [
  13945. {
  13946. "__id__": 290
  13947. },
  13948. {
  13949. "__id__": 291
  13950. }
  13951. ],
  13952. "_prefab": null,
  13953. "_opacity": 255,
  13954. "_color": {
  13955. "__type__": "cc.Color",
  13956. "r": 255,
  13957. "g": 255,
  13958. "b": 255,
  13959. "a": 255
  13960. },
  13961. "_contentSize": {
  13962. "__type__": "cc.Size",
  13963. "width": 100,
  13964. "height": 40
  13965. },
  13966. "_anchorPoint": {
  13967. "__type__": "cc.Vec2",
  13968. "x": 0.5,
  13969. "y": 0.5
  13970. },
  13971. "_trs": {
  13972. "__type__": "TypedArray",
  13973. "ctor": "Float64Array",
  13974. "array": [
  13975. 0,
  13976. 0,
  13977. 0,
  13978. 0,
  13979. 0,
  13980. 0,
  13981. 1,
  13982. 1,
  13983. 1,
  13984. 1
  13985. ]
  13986. },
  13987. "_eulerAngles": {
  13988. "__type__": "cc.Vec3",
  13989. "x": 0,
  13990. "y": 0,
  13991. "z": 0
  13992. },
  13993. "_skewX": 0,
  13994. "_skewY": 0,
  13995. "_is3DNode": false,
  13996. "_groupIndex": 0,
  13997. "groupIndex": 0,
  13998. "_id": "e9ERQTSt9H4JjLhjFS99HU"
  13999. },
  14000. {
  14001. "__type__": "cc.Node",
  14002. "_name": "Label",
  14003. "_objFlags": 512,
  14004. "_parent": {
  14005. "__id__": 287
  14006. },
  14007. "_children": [],
  14008. "_active": true,
  14009. "_components": [
  14010. {
  14011. "__id__": 289
  14012. }
  14013. ],
  14014. "_prefab": null,
  14015. "_opacity": 255,
  14016. "_color": {
  14017. "__type__": "cc.Color",
  14018. "r": 0,
  14019. "g": 0,
  14020. "b": 0,
  14021. "a": 255
  14022. },
  14023. "_contentSize": {
  14024. "__type__": "cc.Size",
  14025. "width": 100,
  14026. "height": 40
  14027. },
  14028. "_anchorPoint": {
  14029. "__type__": "cc.Vec2",
  14030. "x": 0.5,
  14031. "y": 0.5
  14032. },
  14033. "_trs": {
  14034. "__type__": "TypedArray",
  14035. "ctor": "Float64Array",
  14036. "array": [
  14037. 0,
  14038. 0,
  14039. 0,
  14040. 0,
  14041. 0,
  14042. 0,
  14043. 1,
  14044. 1,
  14045. 1,
  14046. 1
  14047. ]
  14048. },
  14049. "_eulerAngles": {
  14050. "__type__": "cc.Vec3",
  14051. "x": 0,
  14052. "y": 0,
  14053. "z": 0
  14054. },
  14055. "_skewX": 0,
  14056. "_skewY": 0,
  14057. "_is3DNode": false,
  14058. "_groupIndex": 0,
  14059. "groupIndex": 0,
  14060. "_id": "77HB4Lt5ZLBbAVfs0eX8jj"
  14061. },
  14062. {
  14063. "__type__": "cc.Label",
  14064. "_name": "",
  14065. "_objFlags": 0,
  14066. "node": {
  14067. "__id__": 288
  14068. },
  14069. "_enabled": true,
  14070. "_materials": [
  14071. {
  14072. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14073. }
  14074. ],
  14075. "_useOriginalSize": false,
  14076. "_string": "clear",
  14077. "_N$string": "clear",
  14078. "_fontSize": 20,
  14079. "_lineHeight": 40,
  14080. "_enableWrapText": false,
  14081. "_N$file": null,
  14082. "_isSystemFontUsed": true,
  14083. "_spacingX": 0,
  14084. "_batchAsBitmap": false,
  14085. "_styleFlags": 0,
  14086. "_underlineHeight": 0,
  14087. "_N$horizontalAlign": 1,
  14088. "_N$verticalAlign": 1,
  14089. "_N$fontFamily": "Arial",
  14090. "_N$overflow": 1,
  14091. "_N$cacheMode": 1,
  14092. "_id": "8caRbLW6pJla/TfSWqSkHU"
  14093. },
  14094. {
  14095. "__type__": "cc.Sprite",
  14096. "_name": "",
  14097. "_objFlags": 0,
  14098. "node": {
  14099. "__id__": 287
  14100. },
  14101. "_enabled": true,
  14102. "_materials": [
  14103. {
  14104. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14105. }
  14106. ],
  14107. "_srcBlendFactor": 770,
  14108. "_dstBlendFactor": 771,
  14109. "_spriteFrame": {
  14110. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  14111. },
  14112. "_type": 1,
  14113. "_sizeMode": 0,
  14114. "_fillType": 0,
  14115. "_fillCenter": {
  14116. "__type__": "cc.Vec2",
  14117. "x": 0,
  14118. "y": 0
  14119. },
  14120. "_fillStart": 0,
  14121. "_fillRange": 0,
  14122. "_isTrimmedMode": true,
  14123. "_atlas": null,
  14124. "_id": "6aWzDkC39LpJpfjQxOeWSK"
  14125. },
  14126. {
  14127. "__type__": "cc.Widget",
  14128. "_name": "",
  14129. "_objFlags": 0,
  14130. "node": {
  14131. "__id__": 287
  14132. },
  14133. "_enabled": true,
  14134. "alignMode": 0,
  14135. "_target": null,
  14136. "_alignFlags": 45,
  14137. "_left": 0,
  14138. "_right": 0,
  14139. "_top": 0,
  14140. "_bottom": 0,
  14141. "_verticalCenter": 0,
  14142. "_horizontalCenter": 0,
  14143. "_isAbsLeft": true,
  14144. "_isAbsRight": true,
  14145. "_isAbsTop": true,
  14146. "_isAbsBottom": true,
  14147. "_isAbsHorizontalCenter": true,
  14148. "_isAbsVerticalCenter": true,
  14149. "_originalWidth": 100,
  14150. "_originalHeight": 40,
  14151. "_id": "7fhv0WcpFJYbFR8leHn6or"
  14152. },
  14153. {
  14154. "__type__": "cc.Button",
  14155. "_name": "",
  14156. "_objFlags": 0,
  14157. "node": {
  14158. "__id__": 286
  14159. },
  14160. "_enabled": true,
  14161. "_normalMaterial": null,
  14162. "_grayMaterial": null,
  14163. "duration": 0.1,
  14164. "zoomScale": 1.2,
  14165. "clickEvents": [
  14166. {
  14167. "__id__": 293
  14168. }
  14169. ],
  14170. "_N$interactable": true,
  14171. "_N$enableAutoGrayEffect": false,
  14172. "_N$transition": 2,
  14173. "transition": 2,
  14174. "_N$normalColor": {
  14175. "__type__": "cc.Color",
  14176. "r": 230,
  14177. "g": 230,
  14178. "b": 230,
  14179. "a": 255
  14180. },
  14181. "_N$pressedColor": {
  14182. "__type__": "cc.Color",
  14183. "r": 200,
  14184. "g": 200,
  14185. "b": 200,
  14186. "a": 255
  14187. },
  14188. "pressedColor": {
  14189. "__type__": "cc.Color",
  14190. "r": 200,
  14191. "g": 200,
  14192. "b": 200,
  14193. "a": 255
  14194. },
  14195. "_N$hoverColor": {
  14196. "__type__": "cc.Color",
  14197. "r": 255,
  14198. "g": 255,
  14199. "b": 255,
  14200. "a": 255
  14201. },
  14202. "hoverColor": {
  14203. "__type__": "cc.Color",
  14204. "r": 255,
  14205. "g": 255,
  14206. "b": 255,
  14207. "a": 255
  14208. },
  14209. "_N$disabledColor": {
  14210. "__type__": "cc.Color",
  14211. "r": 120,
  14212. "g": 120,
  14213. "b": 120,
  14214. "a": 200
  14215. },
  14216. "_N$normalSprite": {
  14217. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  14218. },
  14219. "_N$pressedSprite": {
  14220. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  14221. },
  14222. "pressedSprite": {
  14223. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  14224. },
  14225. "_N$hoverSprite": {
  14226. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  14227. },
  14228. "hoverSprite": {
  14229. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  14230. },
  14231. "_N$disabledSprite": {
  14232. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  14233. },
  14234. "_N$target": {
  14235. "__id__": 287
  14236. },
  14237. "_id": "42M0y1YR5BAaL71z6aomX5"
  14238. },
  14239. {
  14240. "__type__": "cc.ClickEvent",
  14241. "target": {
  14242. "__id__": 2
  14243. },
  14244. "component": "",
  14245. "_componentId": "c003e4ppk5DWYqtZqFr9eQL",
  14246. "handler": "onClearDraw",
  14247. "customEventData": ""
  14248. },
  14249. {
  14250. "__type__": "cc.Node",
  14251. "_name": "bg",
  14252. "_objFlags": 0,
  14253. "_parent": {
  14254. "__id__": 2
  14255. },
  14256. "_children": [],
  14257. "_active": false,
  14258. "_components": [
  14259. {
  14260. "__id__": 295
  14261. },
  14262. {
  14263. "__id__": 296
  14264. }
  14265. ],
  14266. "_prefab": null,
  14267. "_opacity": 255,
  14268. "_color": {
  14269. "__type__": "cc.Color",
  14270. "r": 56,
  14271. "g": 59,
  14272. "b": 65,
  14273. "a": 255
  14274. },
  14275. "_contentSize": {
  14276. "__type__": "cc.Size",
  14277. "width": 720,
  14278. "height": 750
  14279. },
  14280. "_anchorPoint": {
  14281. "__type__": "cc.Vec2",
  14282. "x": 0.5,
  14283. "y": 0.5
  14284. },
  14285. "_trs": {
  14286. "__type__": "TypedArray",
  14287. "ctor": "Float64Array",
  14288. "array": [
  14289. 0,
  14290. -265,
  14291. 0,
  14292. 0,
  14293. 0,
  14294. 0,
  14295. 1,
  14296. 1,
  14297. 1,
  14298. 1
  14299. ]
  14300. },
  14301. "_eulerAngles": {
  14302. "__type__": "cc.Vec3",
  14303. "x": 0,
  14304. "y": 0,
  14305. "z": 0
  14306. },
  14307. "_skewX": 0,
  14308. "_skewY": 0,
  14309. "_is3DNode": false,
  14310. "_groupIndex": 0,
  14311. "groupIndex": 0,
  14312. "_id": "26GQhft3lP5Z9fgAmdfVxQ"
  14313. },
  14314. {
  14315. "__type__": "cc.Sprite",
  14316. "_name": "",
  14317. "_objFlags": 0,
  14318. "node": {
  14319. "__id__": 294
  14320. },
  14321. "_enabled": true,
  14322. "_materials": [
  14323. {
  14324. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14325. }
  14326. ],
  14327. "_srcBlendFactor": 770,
  14328. "_dstBlendFactor": 771,
  14329. "_spriteFrame": {
  14330. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  14331. },
  14332. "_type": 0,
  14333. "_sizeMode": 0,
  14334. "_fillType": 0,
  14335. "_fillCenter": {
  14336. "__type__": "cc.Vec2",
  14337. "x": 0,
  14338. "y": 0
  14339. },
  14340. "_fillStart": 0,
  14341. "_fillRange": 0,
  14342. "_isTrimmedMode": true,
  14343. "_atlas": null,
  14344. "_id": "940dq40BlKVqplzmN8aVuE"
  14345. },
  14346. {
  14347. "__type__": "cc.Widget",
  14348. "_name": "",
  14349. "_objFlags": 0,
  14350. "node": {
  14351. "__id__": 294
  14352. },
  14353. "_enabled": true,
  14354. "alignMode": 1,
  14355. "_target": {
  14356. "__id__": 2
  14357. },
  14358. "_alignFlags": 44,
  14359. "_left": 1.7319479184152442e-14,
  14360. "_right": -1.7319479184152442e-14,
  14361. "_top": 527.678,
  14362. "_bottom": 0,
  14363. "_verticalCenter": 0,
  14364. "_horizontalCenter": 0,
  14365. "_isAbsLeft": true,
  14366. "_isAbsRight": true,
  14367. "_isAbsTop": true,
  14368. "_isAbsBottom": true,
  14369. "_isAbsHorizontalCenter": true,
  14370. "_isAbsVerticalCenter": true,
  14371. "_originalWidth": 720,
  14372. "_originalHeight": 800,
  14373. "_id": "81CDpLRRtLv6kihkwf6+n3"
  14374. },
  14375. {
  14376. "__type__": "cc.Node",
  14377. "_name": "moveState",
  14378. "_objFlags": 0,
  14379. "_parent": {
  14380. "__id__": 2
  14381. },
  14382. "_children": [
  14383. {
  14384. "__id__": 298
  14385. }
  14386. ],
  14387. "_active": true,
  14388. "_components": [],
  14389. "_prefab": null,
  14390. "_opacity": 255,
  14391. "_color": {
  14392. "__type__": "cc.Color",
  14393. "r": 255,
  14394. "g": 255,
  14395. "b": 255,
  14396. "a": 255
  14397. },
  14398. "_contentSize": {
  14399. "__type__": "cc.Size",
  14400. "width": 0,
  14401. "height": 0
  14402. },
  14403. "_anchorPoint": {
  14404. "__type__": "cc.Vec2",
  14405. "x": 0.5,
  14406. "y": 0.5
  14407. },
  14408. "_trs": {
  14409. "__type__": "TypedArray",
  14410. "ctor": "Float64Array",
  14411. "array": [
  14412. 45.88,
  14413. 563.395,
  14414. 0,
  14415. 0,
  14416. 0,
  14417. 0,
  14418. 1,
  14419. 1,
  14420. 1,
  14421. 1
  14422. ]
  14423. },
  14424. "_eulerAngles": {
  14425. "__type__": "cc.Vec3",
  14426. "x": 0,
  14427. "y": 0,
  14428. "z": 0
  14429. },
  14430. "_skewX": 0,
  14431. "_skewY": 0,
  14432. "_is3DNode": false,
  14433. "_groupIndex": 0,
  14434. "groupIndex": 0,
  14435. "_id": "3aAkfVI81HUYvS8wtenEGg"
  14436. },
  14437. {
  14438. "__type__": "cc.Node",
  14439. "_name": "state",
  14440. "_objFlags": 0,
  14441. "_parent": {
  14442. "__id__": 297
  14443. },
  14444. "_children": [],
  14445. "_active": true,
  14446. "_components": [
  14447. {
  14448. "__id__": 299
  14449. }
  14450. ],
  14451. "_prefab": null,
  14452. "_opacity": 255,
  14453. "_color": {
  14454. "__type__": "cc.Color",
  14455. "r": 255,
  14456. "g": 255,
  14457. "b": 255,
  14458. "a": 255
  14459. },
  14460. "_contentSize": {
  14461. "__type__": "cc.Size",
  14462. "width": 97.87,
  14463. "height": 50.4
  14464. },
  14465. "_anchorPoint": {
  14466. "__type__": "cc.Vec2",
  14467. "x": 0.5,
  14468. "y": 0.5
  14469. },
  14470. "_trs": {
  14471. "__type__": "TypedArray",
  14472. "ctor": "Float64Array",
  14473. "array": [
  14474. 43.966,
  14475. 2.438,
  14476. 0,
  14477. 0,
  14478. 0,
  14479. 0,
  14480. 1,
  14481. 1,
  14482. 1,
  14483. 1
  14484. ]
  14485. },
  14486. "_eulerAngles": {
  14487. "__type__": "cc.Vec3",
  14488. "x": 0,
  14489. "y": 0,
  14490. "z": 0
  14491. },
  14492. "_skewX": 0,
  14493. "_skewY": 0,
  14494. "_is3DNode": false,
  14495. "_groupIndex": 0,
  14496. "groupIndex": 0,
  14497. "_id": "54FWVPqjxIUro2+0P/Y+m1"
  14498. },
  14499. {
  14500. "__type__": "cc.Label",
  14501. "_name": "",
  14502. "_objFlags": 0,
  14503. "node": {
  14504. "__id__": 298
  14505. },
  14506. "_enabled": true,
  14507. "_materials": [
  14508. {
  14509. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14510. }
  14511. ],
  14512. "_useOriginalSize": false,
  14513. "_string": "Label",
  14514. "_N$string": "Label",
  14515. "_fontSize": 40,
  14516. "_lineHeight": 40,
  14517. "_enableWrapText": true,
  14518. "_N$file": null,
  14519. "_isSystemFontUsed": true,
  14520. "_spacingX": 0,
  14521. "_batchAsBitmap": false,
  14522. "_styleFlags": 0,
  14523. "_underlineHeight": 0,
  14524. "_N$horizontalAlign": 1,
  14525. "_N$verticalAlign": 1,
  14526. "_N$fontFamily": "Arial",
  14527. "_N$overflow": 0,
  14528. "_N$cacheMode": 0,
  14529. "_id": "03vCBlm7VIVJrIezzYJ7bZ"
  14530. },
  14531. {
  14532. "__type__": "cc.Node",
  14533. "_name": "time",
  14534. "_objFlags": 0,
  14535. "_parent": {
  14536. "__id__": 2
  14537. },
  14538. "_children": [
  14539. {
  14540. "__id__": 301
  14541. },
  14542. {
  14543. "__id__": 303
  14544. },
  14545. {
  14546. "__id__": 305
  14547. }
  14548. ],
  14549. "_active": true,
  14550. "_components": [],
  14551. "_prefab": null,
  14552. "_opacity": 255,
  14553. "_color": {
  14554. "__type__": "cc.Color",
  14555. "r": 255,
  14556. "g": 255,
  14557. "b": 255,
  14558. "a": 255
  14559. },
  14560. "_contentSize": {
  14561. "__type__": "cc.Size",
  14562. "width": 0,
  14563. "height": 0
  14564. },
  14565. "_anchorPoint": {
  14566. "__type__": "cc.Vec2",
  14567. "x": 0.5,
  14568. "y": 0.5
  14569. },
  14570. "_trs": {
  14571. "__type__": "TypedArray",
  14572. "ctor": "Float64Array",
  14573. "array": [
  14574. -163.299,
  14575. -548.259,
  14576. 0,
  14577. 0,
  14578. 0,
  14579. 0,
  14580. 1,
  14581. 1,
  14582. 1,
  14583. 1
  14584. ]
  14585. },
  14586. "_eulerAngles": {
  14587. "__type__": "cc.Vec3",
  14588. "x": 0,
  14589. "y": 0,
  14590. "z": 0
  14591. },
  14592. "_skewX": 0,
  14593. "_skewY": 0,
  14594. "_is3DNode": false,
  14595. "_groupIndex": 0,
  14596. "groupIndex": 0,
  14597. "_id": "f5t62y5MRC0LrFO7S3F4Zk"
  14598. },
  14599. {
  14600. "__type__": "cc.Node",
  14601. "_name": "min",
  14602. "_objFlags": 0,
  14603. "_parent": {
  14604. "__id__": 300
  14605. },
  14606. "_children": [],
  14607. "_active": true,
  14608. "_components": [
  14609. {
  14610. "__id__": 302
  14611. }
  14612. ],
  14613. "_prefab": null,
  14614. "_opacity": 255,
  14615. "_color": {
  14616. "__type__": "cc.Color",
  14617. "r": 255,
  14618. "g": 255,
  14619. "b": 255,
  14620. "a": 255
  14621. },
  14622. "_contentSize": {
  14623. "__type__": "cc.Size",
  14624. "width": 97.87,
  14625. "height": 50.4
  14626. },
  14627. "_anchorPoint": {
  14628. "__type__": "cc.Vec2",
  14629. "x": 0,
  14630. "y": 0.5
  14631. },
  14632. "_trs": {
  14633. "__type__": "TypedArray",
  14634. "ctor": "Float64Array",
  14635. "array": [
  14636. -136.172,
  14637. 29.665,
  14638. 0,
  14639. 0,
  14640. 0,
  14641. 0,
  14642. 1,
  14643. 1,
  14644. 1,
  14645. 1
  14646. ]
  14647. },
  14648. "_eulerAngles": {
  14649. "__type__": "cc.Vec3",
  14650. "x": 0,
  14651. "y": 0,
  14652. "z": 0
  14653. },
  14654. "_skewX": 0,
  14655. "_skewY": 0,
  14656. "_is3DNode": false,
  14657. "_groupIndex": 0,
  14658. "groupIndex": 0,
  14659. "_id": "2a6EK1/c1EvY4/sd0bVUOG"
  14660. },
  14661. {
  14662. "__type__": "cc.Label",
  14663. "_name": "",
  14664. "_objFlags": 0,
  14665. "node": {
  14666. "__id__": 301
  14667. },
  14668. "_enabled": true,
  14669. "_materials": [
  14670. {
  14671. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14672. }
  14673. ],
  14674. "_useOriginalSize": false,
  14675. "_string": "Label",
  14676. "_N$string": "Label",
  14677. "_fontSize": 40,
  14678. "_lineHeight": 40,
  14679. "_enableWrapText": true,
  14680. "_N$file": null,
  14681. "_isSystemFontUsed": true,
  14682. "_spacingX": 0,
  14683. "_batchAsBitmap": false,
  14684. "_styleFlags": 0,
  14685. "_underlineHeight": 0,
  14686. "_N$horizontalAlign": 0,
  14687. "_N$verticalAlign": 1,
  14688. "_N$fontFamily": "Arial",
  14689. "_N$overflow": 0,
  14690. "_N$cacheMode": 0,
  14691. "_id": "50tb1nJ1xF16JLLXIovaoQ"
  14692. },
  14693. {
  14694. "__type__": "cc.Node",
  14695. "_name": "s",
  14696. "_objFlags": 0,
  14697. "_parent": {
  14698. "__id__": 300
  14699. },
  14700. "_children": [],
  14701. "_active": true,
  14702. "_components": [
  14703. {
  14704. "__id__": 304
  14705. }
  14706. ],
  14707. "_prefab": null,
  14708. "_opacity": 255,
  14709. "_color": {
  14710. "__type__": "cc.Color",
  14711. "r": 255,
  14712. "g": 255,
  14713. "b": 255,
  14714. "a": 255
  14715. },
  14716. "_contentSize": {
  14717. "__type__": "cc.Size",
  14718. "width": 97.87,
  14719. "height": 50.4
  14720. },
  14721. "_anchorPoint": {
  14722. "__type__": "cc.Vec2",
  14723. "x": 0,
  14724. "y": 0.5
  14725. },
  14726. "_trs": {
  14727. "__type__": "TypedArray",
  14728. "ctor": "Float64Array",
  14729. "array": [
  14730. -136.172,
  14731. -15.076,
  14732. 0,
  14733. 0,
  14734. 0,
  14735. 0,
  14736. 1,
  14737. 1,
  14738. 1,
  14739. 1
  14740. ]
  14741. },
  14742. "_eulerAngles": {
  14743. "__type__": "cc.Vec3",
  14744. "x": 0,
  14745. "y": 0,
  14746. "z": 0
  14747. },
  14748. "_skewX": 0,
  14749. "_skewY": 0,
  14750. "_is3DNode": false,
  14751. "_groupIndex": 0,
  14752. "groupIndex": 0,
  14753. "_id": "82CiPUL7dMa6Jc5PAUVian"
  14754. },
  14755. {
  14756. "__type__": "cc.Label",
  14757. "_name": "",
  14758. "_objFlags": 0,
  14759. "node": {
  14760. "__id__": 303
  14761. },
  14762. "_enabled": true,
  14763. "_materials": [
  14764. {
  14765. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14766. }
  14767. ],
  14768. "_useOriginalSize": false,
  14769. "_string": "Label",
  14770. "_N$string": "Label",
  14771. "_fontSize": 40,
  14772. "_lineHeight": 40,
  14773. "_enableWrapText": true,
  14774. "_N$file": null,
  14775. "_isSystemFontUsed": true,
  14776. "_spacingX": 0,
  14777. "_batchAsBitmap": false,
  14778. "_styleFlags": 0,
  14779. "_underlineHeight": 0,
  14780. "_N$horizontalAlign": 1,
  14781. "_N$verticalAlign": 1,
  14782. "_N$fontFamily": "Arial",
  14783. "_N$overflow": 0,
  14784. "_N$cacheMode": 0,
  14785. "_id": "d4ahbRhmRK3LVxHPA19hNC"
  14786. },
  14787. {
  14788. "__type__": "cc.Node",
  14789. "_name": "ms",
  14790. "_objFlags": 0,
  14791. "_parent": {
  14792. "__id__": 300
  14793. },
  14794. "_children": [],
  14795. "_active": true,
  14796. "_components": [
  14797. {
  14798. "__id__": 306
  14799. }
  14800. ],
  14801. "_prefab": null,
  14802. "_opacity": 255,
  14803. "_color": {
  14804. "__type__": "cc.Color",
  14805. "r": 255,
  14806. "g": 255,
  14807. "b": 255,
  14808. "a": 255
  14809. },
  14810. "_contentSize": {
  14811. "__type__": "cc.Size",
  14812. "width": 97.87,
  14813. "height": 50.4
  14814. },
  14815. "_anchorPoint": {
  14816. "__type__": "cc.Vec2",
  14817. "x": 0,
  14818. "y": 0.5
  14819. },
  14820. "_trs": {
  14821. "__type__": "TypedArray",
  14822. "ctor": "Float64Array",
  14823. "array": [
  14824. -136.172,
  14825. -62.25,
  14826. 0,
  14827. 0,
  14828. 0,
  14829. 0,
  14830. 1,
  14831. 1,
  14832. 1,
  14833. 1
  14834. ]
  14835. },
  14836. "_eulerAngles": {
  14837. "__type__": "cc.Vec3",
  14838. "x": 0,
  14839. "y": 0,
  14840. "z": 0
  14841. },
  14842. "_skewX": 0,
  14843. "_skewY": 0,
  14844. "_is3DNode": false,
  14845. "_groupIndex": 0,
  14846. "groupIndex": 0,
  14847. "_id": "f5OOYUEeVH7YpEbHJL9vCo"
  14848. },
  14849. {
  14850. "__type__": "cc.Label",
  14851. "_name": "",
  14852. "_objFlags": 0,
  14853. "node": {
  14854. "__id__": 305
  14855. },
  14856. "_enabled": true,
  14857. "_materials": [
  14858. {
  14859. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  14860. }
  14861. ],
  14862. "_useOriginalSize": false,
  14863. "_string": "Label",
  14864. "_N$string": "Label",
  14865. "_fontSize": 40,
  14866. "_lineHeight": 40,
  14867. "_enableWrapText": true,
  14868. "_N$file": null,
  14869. "_isSystemFontUsed": true,
  14870. "_spacingX": 0,
  14871. "_batchAsBitmap": false,
  14872. "_styleFlags": 0,
  14873. "_underlineHeight": 0,
  14874. "_N$horizontalAlign": 1,
  14875. "_N$verticalAlign": 1,
  14876. "_N$fontFamily": "Arial",
  14877. "_N$overflow": 0,
  14878. "_N$cacheMode": 0,
  14879. "_id": "7fOXR/RGZI/rZyZXePKLVu"
  14880. },
  14881. {
  14882. "__type__": "cc.Canvas",
  14883. "_name": "",
  14884. "_objFlags": 0,
  14885. "node": {
  14886. "__id__": 2
  14887. },
  14888. "_enabled": true,
  14889. "_designResolution": {
  14890. "__type__": "cc.Size",
  14891. "width": 720,
  14892. "height": 1280
  14893. },
  14894. "_fitWidth": true,
  14895. "_fitHeight": false,
  14896. "_id": "9dEsWmPUBChJjGo2mp4/2m"
  14897. },
  14898. {
  14899. "__type__": "cc.Widget",
  14900. "_name": "",
  14901. "_objFlags": 0,
  14902. "node": {
  14903. "__id__": 2
  14904. },
  14905. "_enabled": true,
  14906. "alignMode": 1,
  14907. "_target": null,
  14908. "_alignFlags": 45,
  14909. "_left": 0,
  14910. "_right": 0,
  14911. "_top": 0,
  14912. "_bottom": 0,
  14913. "_verticalCenter": 0,
  14914. "_horizontalCenter": 0,
  14915. "_isAbsLeft": true,
  14916. "_isAbsRight": true,
  14917. "_isAbsTop": true,
  14918. "_isAbsBottom": true,
  14919. "_isAbsHorizontalCenter": true,
  14920. "_isAbsVerticalCenter": true,
  14921. "_originalWidth": 0,
  14922. "_originalHeight": 0,
  14923. "_id": "68c6BsRFBHMqqJL7vKvJv3"
  14924. },
  14925. {
  14926. "__type__": "c003e4ppk5DWYqtZqFr9eQL",
  14927. "_name": "",
  14928. "_objFlags": 0,
  14929. "node": {
  14930. "__id__": 2
  14931. },
  14932. "_enabled": true,
  14933. "playerContro": {
  14934. "__id__": 2
  14935. },
  14936. "playerControScript": null,
  14937. "mass": 50,
  14938. "hitFirst": null,
  14939. "staticTime": 1,
  14940. "bSwing": false,
  14941. "showCalorieLabel": null,
  14942. "bRAnimation": false,
  14943. "bLAnimation": false,
  14944. "bMAnimation": false,
  14945. "drawNodeX": {
  14946. "__id__": 179
  14947. },
  14948. "drawNodeZ": {
  14949. "__id__": 188
  14950. },
  14951. "drawNodeY": {
  14952. "__id__": 181
  14953. },
  14954. "drawNodeSqrt": {
  14955. "__id__": 195
  14956. },
  14957. "drawNodeOriSqrt": {
  14958. "__id__": 202
  14959. },
  14960. "xAccArray": [],
  14961. "xMax": 0,
  14962. "maxTimeoutId": null,
  14963. "bMaxPause": false,
  14964. "xMin": 0,
  14965. "minTimeoutId": null,
  14966. "bMinPause": false,
  14967. "bCalculation": false,
  14968. "calTimeout": null,
  14969. "xArray": [],
  14970. "zArray": [],
  14971. "updateIndex": 0,
  14972. "bCalX": false,
  14973. "bCalZ": false,
  14974. "xDifference": 0,
  14975. "zDifference": 0,
  14976. "xMaxDifference": 0,
  14977. "zMaxDifference": 0,
  14978. "xMaxAddCount": 0,
  14979. "xAddDifferenceCount": 0,
  14980. "zMaxAddCount": 0,
  14981. "zAddDifferenceCount": 0,
  14982. "hitCountL": 0,
  14983. "hitCountZ": 0,
  14984. "bJudging": false,
  14985. "ratio": 0.5,
  14986. "oldResultantDifference": 0,
  14987. "resultantDifference": 0,
  14988. "bCalResultant": false,
  14989. "resultantMaxDifference": 0,
  14990. "resultantMaxX": 0,
  14991. "resultantMaxZ": 0,
  14992. "resultantMaxAddCount": 0,
  14993. "resultAddDifferenceCount": 0,
  14994. "sensorHit": false,
  14995. "phoneAccIndex": 0,
  14996. "BLEAccIndex": 0,
  14997. "oldPhoneIndex": 0,
  14998. "oldBLEAccIndex": 0,
  14999. "alpha": 0,
  15000. "beta": 0,
  15001. "gamma": 0,
  15002. "oldOriAlpha": 0,
  15003. "oldOriBeta": 0,
  15004. "oldOriGamma": 0,
  15005. "oldOriCount": 0,
  15006. "jump": false,
  15007. "jumpCount": 0,
  15008. "runCount": 0,
  15009. "bGyroDraw": true,
  15010. "bAccDraw": true,
  15011. "gyroDrawLabel": {
  15012. "__id__": 133
  15013. },
  15014. "accDrawLabel": {
  15015. "__id__": 117
  15016. },
  15017. "bGyroLog": false,
  15018. "bAccLog": false,
  15019. "gyroLogLabel": {
  15020. "__id__": 141
  15021. },
  15022. "accLogLabel": {
  15023. "__id__": 125
  15024. },
  15025. "_id": "78Fj0tXiNCUYr3gLq3pSj0"
  15026. },
  15027. {
  15028. "__type__": "3ba62KptSxJPoIcTrFTcDEC",
  15029. "_name": "",
  15030. "_objFlags": 0,
  15031. "node": {
  15032. "__id__": 2
  15033. },
  15034. "_enabled": true,
  15035. "left": {
  15036. "__id__": 7
  15037. },
  15038. "mid": {
  15039. "__id__": 9
  15040. },
  15041. "right": {
  15042. "__id__": 11
  15043. },
  15044. "limitLabel": {
  15045. "__id__": 45
  15046. },
  15047. "limitDirectionLabel": {
  15048. "__id__": 58
  15049. },
  15050. "x": {
  15051. "__id__": 211
  15052. },
  15053. "y": {
  15054. "__id__": 213
  15055. },
  15056. "z": {
  15057. "__id__": 215
  15058. },
  15059. "sqrt": {
  15060. "__id__": 217
  15061. },
  15062. "ox": {
  15063. "__id__": 266
  15064. },
  15065. "oy": {
  15066. "__id__": 268
  15067. },
  15068. "oz": {
  15069. "__id__": 270
  15070. },
  15071. "oriSqrt": {
  15072. "__id__": 272
  15073. },
  15074. "hitCountL": {
  15075. "__id__": 13
  15076. },
  15077. "hitCountZ": {
  15078. "__id__": 15
  15079. },
  15080. "phoneIndex": {
  15081. "__id__": 27
  15082. },
  15083. "BLEIndex": {
  15084. "__id__": 29
  15085. },
  15086. "avePhoneIndex": {
  15087. "__id__": 32
  15088. },
  15089. "aveBLEIndex": {
  15090. "__id__": 34
  15091. },
  15092. "writeValue": "",
  15093. "jumpCount": {
  15094. "__id__": 18
  15095. },
  15096. "runCount": {
  15097. "__id__": 21
  15098. },
  15099. "moveState": {
  15100. "__id__": 299
  15101. },
  15102. "handleState": {
  15103. "__id__": 24
  15104. },
  15105. "min": {
  15106. "__id__": 302
  15107. },
  15108. "s": {
  15109. "__id__": 304
  15110. },
  15111. "ms": {
  15112. "__id__": 306
  15113. },
  15114. "_id": "21f7pbaDBLCYRQusWLM+3n"
  15115. }
  15116. ]