123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532 |
- {
- "accessors": [
- {
- "bufferView": 3,
- "componentType": 5126,
- "count": 16798,
- "max": [
- 409.74639892578125,
- 1486.694091796875,
- 362.8570251464844
- ],
- "min": [
- -273.6598205566406,
- 0.15262603759765625,
- -362.8392639160156
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 3,
- "byteOffset": 201576,
- "componentType": 5126,
- "count": 16798,
- "max": [
- 0.9996960163116455,
- 1.0,
- 1.0
- ],
- "min": [
- -0.9999091029167175,
- -0.999981701374054,
- -1.0
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 2,
- "componentType": 5126,
- "count": 16798,
- "max": [
- 0.9990234375,
- 0.9938035607337952
- ],
- "min": [
- 0.0009765625,
- 0.0009765625
- ],
- "type": "VEC2"
- },
- {
- "bufferView": 1,
- "componentType": 5125,
- "count": 45087,
- "type": "SCALAR"
- },
- {
- "bufferView": 5,
- "componentType": 5126,
- "count": 20,
- "max": [
- 1.0,
- 2.373163425772873e-07,
- 0.009999999776482582,
- 0.0,
- 0.003920685965567827,
- 1.0,
- 0.00425825547426939,
- 0.0,
- 0.00926137063652277,
- 0.003920680843293667,
- 1.0,
- 0.0,
- 4.263574600219727,
- 6.588780879974365,
- 0.0,
- 1.0
- ],
- "min": [
- -0.00998775940388441,
- -0.004258507397025824,
- 0.0,
- 0.0,
- -0.003920685965567827,
- -0.009999995119869709,
- -1.6179949602346255e-09,
- 0.0,
- -0.009999999776482582,
- -0.003920680843293667,
- -0.009999997913837433,
- 0.0,
- -4.168859481811523,
- -10.62368106842041,
- -5.068729877471924,
- 1.0
- ],
- "type": "MAT4"
- },
- {
- "bufferView": 0,
- "componentType": 5123,
- "count": 16798,
- "type": "VEC4"
- },
- {
- "bufferView": 4,
- "componentType": 5126,
- "count": 16798,
- "max": [
- 1.0,
- 0.0,
- 0.0,
- 0.0
- ],
- "min": [
- 1.0,
- 0.0,
- 0.0,
- 0.0
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "componentType": 5126,
- "count": 35,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "componentType": 5126,
- "count": 35,
- "max": [
- 870.926025390625,
- 1.9663488615151437e-07,
- -102.21495819091797
- ],
- "min": [
- 2.4578332901000977,
- -3.7765315937576815e-05,
- -102.21495819091797
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 140,
- "componentType": 5126,
- "count": 66,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 420,
- "componentType": 5126,
- "count": 66,
- "max": [
- 3.2382278442382813,
- 3.7359113693237305,
- -0.07579355686903
- ],
- "min": [
- 3.238227367401123,
- 3.7359097003936768,
- -0.07579690217971802
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 404,
- "componentType": 5126,
- "count": 60,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 1212,
- "componentType": 5126,
- "count": 60,
- "max": [
- 1.0,
- 1.0000001192092896,
- 1.0000001192092896
- ],
- "min": [
- 1.0,
- 0.9999998807907104,
- 0.9999997019767761
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 644,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.6540536284446716,
- 0.0035855381283909082,
- 0.005467443261295557,
- 0.9998916983604431
- ],
- "min": [
- -0.6987945437431335,
- -0.0038121629040688276,
- 0.003919726703315973,
- 0.715301513671875
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 916,
- "componentType": 5126,
- "count": 67,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 1932,
- "componentType": 5126,
- "count": 67,
- "max": [
- -3.238227367401123,
- 3.7359113693237305,
- -0.07579591870307922
- ],
- "min": [
- -3.2382278442382813,
- 3.735909938812256,
- -0.07579778879880905
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 1184,
- "componentType": 5126,
- "count": 55,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 2736,
- "componentType": 5126,
- "count": 55,
- "max": [
- 1.0,
- 1.000000238418579,
- 1.0000001192092896
- ],
- "min": [
- 1.0,
- 0.9999998211860657,
- 0.9999998211860657
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 1404,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 1088,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.6598827242851257,
- 0.0038297821301966906,
- -0.0039024800062179565,
- 0.9999011754989624
- ],
- "min": [
- -0.7020425796508789,
- -0.003617502748966217,
- -0.0054674651473760605,
- 0.7121139764785767
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 1676,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 3396,
- "componentType": 5126,
- "count": 68,
- "max": [
- 3.126388037344441e-13,
- 2.281100034713745,
- 4.2468306560294877e-07
- ],
- "min": [
- -1.6342482922482304e-13,
- 2.281099557876587,
- -1.1175870895385742e-06
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 1948,
- "componentType": 5126,
- "count": 6,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 4212,
- "componentType": 5126,
- "count": 6,
- "max": [
- 1.0,
- 1.0,
- 1.0
- ],
- "min": [
- 1.0,
- 0.9999999403953552,
- 0.9999999403953552
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 1972,
- "componentType": 5126,
- "count": 48,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 2176,
- "componentType": 5126,
- "count": 48,
- "max": [
- 2.6642316242585646e-17,
- 7.077671781985373e-15,
- 9.02056313387058e-16,
- 1.0
- ],
- "min": [
- -4.656612873077393e-10,
- -1.065814188343445e-14,
- -1.4432899320127035e-15,
- 1.0
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 2164,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 4284,
- "componentType": 5126,
- "count": 68,
- "max": [
- 5.960464477539063e-07,
- 2.758873701095581,
- 1.323409378528595e-06
- ],
- "min": [
- -3.3527612686157227e-07,
- 2.7588722705841064,
- -1.2367963790893555e-06
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 2436,
- "componentType": 5126,
- "count": 58,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 5100,
- "componentType": 5126,
- "count": 58,
- "max": [
- 1.000000238418579,
- 1.0000001192092896,
- 1.000000238418579
- ],
- "min": [
- 0.9999998807907104,
- 0.9999998807907104,
- 0.9999998807907104
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 2668,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 2944,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.2645414173603058,
- 0.7002617120742798,
- 0.25898295640945435,
- 0.9995037913322449
- ],
- "min": [
- 0.00024535489501431584,
- 0.030449772253632545,
- -0.008055141195654869,
- 0.6652288436889648
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 2940,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 5796,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.3033084869384766,
- 1.9064295291900635,
- 9.849086382018868e-07
- ],
- "min": [
- 1.3033084869384766,
- 1.9064290523529053,
- -9.041751809490961e-07
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 3212,
- "componentType": 5126,
- "count": 58,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 6612,
- "componentType": 5126,
- "count": 58,
- "max": [
- 0.9999986886978149,
- 1.000000238418579,
- 1.0000001192092896
- ],
- "min": [
- 0.9999986290931702,
- 0.9999998211860657,
- 0.9999998211860657
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 3444,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 4032,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.07260923832654953,
- 0.6989861130714417,
- 0.9797722697257996,
- -0.14020411670207977
- ],
- "min": [
- -0.14273881912231445,
- -0.35556697845458984,
- 0.6865761876106262,
- -0.20007722079753876
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 3716,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 7308,
- "componentType": 5126,
- "count": 68,
- "max": [
- 4.6938657760620117e-07,
- 2.758873462677002,
- 1.5050172805786133e-06
- ],
- "min": [
- -1.9371509552001953e-07,
- 2.758871555328369,
- -8.940696716308594e-07
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 3988,
- "componentType": 5126,
- "count": 63,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 8124,
- "componentType": 5126,
- "count": 63,
- "max": [
- 1.0000001192092896,
- 1.0000001192092896,
- 1.0000001192092896
- ],
- "min": [
- 0.9999998807907104,
- 0.9999998211860657,
- 0.9999998211860657
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 4240,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 5120,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.2520925998687744,
- -0.030508004128932953,
- 0.008055126294493675,
- 0.9995020627975464
- ],
- "min": [
- 0.00024582198238931596,
- -0.7015630006790161,
- -0.2452935427427292,
- 0.6690354943275452
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 4512,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 8880,
- "componentType": 5126,
- "count": 68,
- "max": [
- -1.3033084869384766,
- 1.9064295291900635,
- 6.208566674104077e-07
- ],
- "min": [
- -1.3033084869384766,
- 1.9064290523529053,
- -1.3304887716003577e-06
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 4784,
- "componentType": 5126,
- "count": 61,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 9696,
- "componentType": 5126,
- "count": 61,
- "max": [
- 0.9999986886978149,
- 1.0000001192092896,
- 1.0
- ],
- "min": [
- 0.9999986290931702,
- 0.9999998211860657,
- 0.9999997615814209
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 5028,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 6208,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.14054062962532043,
- 0.6882219910621643,
- 0.97966068983078,
- 0.20005539059638977
- ],
- "min": [
- -0.07255568355321884,
- -0.3553020656108856,
- 0.6973656415939331,
- 0.14240767061710358
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 5300,
- "componentType": 5126,
- "count": 48,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 10428,
- "componentType": 5126,
- "count": 48,
- "max": [
- 0.0,
- 1.1886043548583984,
- 1.7763568394002505e-15
- ],
- "min": [
- 0.0,
- 1.1886043548583984,
- -1.7763568394002505e-15
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 5492,
- "componentType": 5126,
- "count": 15,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 11004,
- "componentType": 5126,
- "count": 15,
- "max": [
- 1.0,
- 1.0,
- 1.0
- ],
- "min": [
- 1.0,
- 0.9999999403953552,
- 0.9999999403953552
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 5552,
- "componentType": 5126,
- "count": 48,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 7296,
- "componentType": 5126,
- "count": 48,
- "max": [
- 0.06521261483430862,
- 1.1920922560193503e-07,
- 1.708500185770845e-08,
- 0.999999463558197
- ],
- "min": [
- -0.013296341523528099,
- 1.1797864374329947e-07,
- -7.44056505297408e-09,
- 0.9978713989257813
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 5744,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 11184,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.6149133443832397e-06,
- 2.2739923000335693,
- 1.685693860054016e-07
- ],
- "min": [
- -1.5329569578170776e-06,
- 2.273991107940674,
- -1.5599653124809265e-07
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 6016,
- "componentType": 5126,
- "count": 67,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 12000,
- "componentType": 5126,
- "count": 67,
- "max": [
- 1.0018012523651123,
- 1.0,
- 1.0000001192092896
- ],
- "min": [
- 1.0,
- 0.9976766109466553,
- 0.9999998211860657
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 6284,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 8064,
- "componentType": 5126,
- "count": 68,
- "max": [
- -0.008567631244659424,
- 0.004559195600450039,
- 0.4697008728981018,
- 0.9999529123306274
- ],
- "min": [
- -0.009696616791188717,
- -2.698243952181656e-05,
- -0.0027335009071975946,
- 0.8827722668647766
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 6556,
- "componentType": 5126,
- "count": 15,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 12804,
- "componentType": 5126,
- "count": 15,
- "max": [
- 0.8008494973182678,
- 0.11276865005493164,
- -0.050530433654785156
- ],
- "min": [
- 0.8008494973182678,
- 0.11276859045028687,
- -0.05053067207336426
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 6616,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 12984,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.0036818981170654,
- 1.0003011226654053,
- 1.0000004768371582
- ],
- "min": [
- 1.0033730268478394,
- 0.9999997615814209,
- 1.0000001192092896
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 6888,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 9152,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.7069067358970642,
- 0.1512317955493927,
- 0.7070021033287048,
- 0.11729905754327774
- ],
- "min": [
- 0.6918647885322571,
- 0.00023744879581499845,
- 0.6961989402770996,
- -0.0326845645904541
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 7160,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 13800,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.0835938155651093e-06,
- 2.2739920616149902,
- 1.2386590242385864e-07
- ],
- "min": [
- -2.1029263734817505e-06,
- 2.2739906311035156,
- -1.4901161193847656e-07
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 7432,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 14616,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.0017509460449219,
- 1.0,
- 1.0
- ],
- "min": [
- 0.9999991059303284,
- 0.9976644515991211,
- 0.9999997019767761
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 7704,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 10240,
- "componentType": 5126,
- "count": 68,
- "max": [
- -0.008508635684847832,
- 0.0012000110000371933,
- 0.12329567223787308,
- 0.9999529123306274
- ],
- "min": [
- -0.009696613997220993,
- -0.00466766394674778,
- -0.48092564940452576,
- 0.8767076730728149
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 7976,
- "componentType": 5126,
- "count": 15,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 15432,
- "componentType": 5126,
- "count": 15,
- "max": [
- -0.8008494973182678,
- 0.11276865005493164,
- -0.050530433654785156
- ],
- "min": [
- -0.8008494973182678,
- 0.11276859045028687,
- -0.05053067207336426
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 8036,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 15612,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.003682017326355,
- 1.000352382659912,
- 1.0000004768371582
- ],
- "min": [
- 1.003321647644043,
- 1.0,
- 1.0000003576278687
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 8308,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 11328,
- "componentType": 5126,
- "count": 68,
- "max": [
- 0.7105586528778076,
- 0.15906037390232086,
- 0.7086091637611389,
- 0.07343249768018723
- ],
- "min": [
- -0.7069636583328247,
- -0.09754300117492676,
- -0.7069477438926697,
- -0.13078966736793518
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 8580,
- "componentType": 5126,
- "count": 68,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 16428,
- "componentType": 5126,
- "count": 68,
- "max": [
- 6.938893903907228e-18,
- -0.0010119465878233314,
- 0.9010737538337708
- ],
- "min": [
- -6.938893903907228e-18,
- -9.573902130126953,
- -0.7208581566810608
- ],
- "type": "VEC3"
- },
- {
- "bufferView": 6,
- "byteOffset": 8852,
- "componentType": 5126,
- "count": 1,
- "max": [
- 0.0416666679084301
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 8,
- "byteOffset": 12416,
- "componentType": 5126,
- "count": 1,
- "max": [
- -0.5,
- 0.5,
- 0.5,
- 0.5
- ],
- "min": [
- -0.5,
- 0.5,
- 0.5,
- 0.5
- ],
- "type": "VEC4"
- },
- {
- "bufferView": 6,
- "byteOffset": 8856,
- "componentType": 5126,
- "count": 35,
- "max": [
- 1.4583333730697632
- ],
- "min": [
- 0.0416666679084301
- ],
- "type": "SCALAR"
- },
- {
- "bufferView": 7,
- "byteOffset": 17244,
- "componentType": 5126,
- "count": 35,
- "max": [
- 881.6058349609375,
- 0.3689606785774231,
- 88.47867584228516
- ],
- "min": [
- 13.137669563293457,
- 0.36892274022102356,
- 88.47867584228516
- ],
- "type": "VEC3"
- }
- ],
- "animations": [
- {
- "channels": [
- {
- "sampler": 0,
- "target": {
- "node": 5,
- "path": "translation"
- }
- },
- {
- "sampler": 1,
- "target": {
- "node": 14,
- "path": "translation"
- }
- },
- {
- "sampler": 2,
- "target": {
- "node": 14,
- "path": "scale"
- }
- },
- {
- "sampler": 3,
- "target": {
- "node": 14,
- "path": "rotation"
- }
- },
- {
- "sampler": 4,
- "target": {
- "node": 16,
- "path": "translation"
- }
- },
- {
- "sampler": 5,
- "target": {
- "node": 16,
- "path": "scale"
- }
- },
- {
- "sampler": 6,
- "target": {
- "node": 16,
- "path": "rotation"
- }
- },
- {
- "sampler": 7,
- "target": {
- "node": 13,
- "path": "translation"
- }
- },
- {
- "sampler": 8,
- "target": {
- "node": 13,
- "path": "scale"
- }
- },
- {
- "sampler": 9,
- "target": {
- "node": 13,
- "path": "rotation"
- }
- },
- {
- "sampler": 10,
- "target": {
- "node": 19,
- "path": "translation"
- }
- },
- {
- "sampler": 11,
- "target": {
- "node": 19,
- "path": "scale"
- }
- },
- {
- "sampler": 12,
- "target": {
- "node": 19,
- "path": "rotation"
- }
- },
- {
- "sampler": 13,
- "target": {
- "node": 18,
- "path": "translation"
- }
- },
- {
- "sampler": 14,
- "target": {
- "node": 18,
- "path": "scale"
- }
- },
- {
- "sampler": 15,
- "target": {
- "node": 18,
- "path": "rotation"
- }
- },
- {
- "sampler": 16,
- "target": {
- "node": 22,
- "path": "translation"
- }
- },
- {
- "sampler": 17,
- "target": {
- "node": 22,
- "path": "scale"
- }
- },
- {
- "sampler": 18,
- "target": {
- "node": 22,
- "path": "rotation"
- }
- },
- {
- "sampler": 19,
- "target": {
- "node": 21,
- "path": "translation"
- }
- },
- {
- "sampler": 20,
- "target": {
- "node": 21,
- "path": "scale"
- }
- },
- {
- "sampler": 21,
- "target": {
- "node": 21,
- "path": "rotation"
- }
- },
- {
- "sampler": 22,
- "target": {
- "node": 12,
- "path": "translation"
- }
- },
- {
- "sampler": 23,
- "target": {
- "node": 12,
- "path": "scale"
- }
- },
- {
- "sampler": 24,
- "target": {
- "node": 12,
- "path": "rotation"
- }
- },
- {
- "sampler": 25,
- "target": {
- "node": 25,
- "path": "translation"
- }
- },
- {
- "sampler": 26,
- "target": {
- "node": 25,
- "path": "scale"
- }
- },
- {
- "sampler": 27,
- "target": {
- "node": 25,
- "path": "rotation"
- }
- },
- {
- "sampler": 28,
- "target": {
- "node": 24,
- "path": "translation"
- }
- },
- {
- "sampler": 29,
- "target": {
- "node": 24,
- "path": "scale"
- }
- },
- {
- "sampler": 30,
- "target": {
- "node": 24,
- "path": "rotation"
- }
- },
- {
- "sampler": 31,
- "target": {
- "node": 28,
- "path": "translation"
- }
- },
- {
- "sampler": 32,
- "target": {
- "node": 28,
- "path": "scale"
- }
- },
- {
- "sampler": 33,
- "target": {
- "node": 28,
- "path": "rotation"
- }
- },
- {
- "sampler": 34,
- "target": {
- "node": 27,
- "path": "translation"
- }
- },
- {
- "sampler": 35,
- "target": {
- "node": 27,
- "path": "scale"
- }
- },
- {
- "sampler": 36,
- "target": {
- "node": 27,
- "path": "rotation"
- }
- },
- {
- "sampler": 37,
- "target": {
- "node": 11,
- "path": "translation"
- }
- },
- {
- "sampler": 38,
- "target": {
- "node": 6,
- "path": "rotation"
- }
- },
- {
- "sampler": 39,
- "target": {
- "node": 30,
- "path": "translation"
- }
- }
- ],
- "name": "Scene",
- "samplers": [
- {
- "input": 7,
- "interpolation": "LINEAR",
- "output": 8
- },
- {
- "input": 9,
- "interpolation": "LINEAR",
- "output": 10
- },
- {
- "input": 11,
- "interpolation": "LINEAR",
- "output": 12
- },
- {
- "input": 13,
- "interpolation": "LINEAR",
- "output": 14
- },
- {
- "input": 15,
- "interpolation": "LINEAR",
- "output": 16
- },
- {
- "input": 17,
- "interpolation": "LINEAR",
- "output": 18
- },
- {
- "input": 19,
- "interpolation": "LINEAR",
- "output": 20
- },
- {
- "input": 21,
- "interpolation": "LINEAR",
- "output": 22
- },
- {
- "input": 23,
- "interpolation": "LINEAR",
- "output": 24
- },
- {
- "input": 25,
- "interpolation": "LINEAR",
- "output": 26
- },
- {
- "input": 27,
- "interpolation": "LINEAR",
- "output": 28
- },
- {
- "input": 29,
- "interpolation": "LINEAR",
- "output": 30
- },
- {
- "input": 31,
- "interpolation": "LINEAR",
- "output": 32
- },
- {
- "input": 33,
- "interpolation": "LINEAR",
- "output": 34
- },
- {
- "input": 35,
- "interpolation": "LINEAR",
- "output": 36
- },
- {
- "input": 37,
- "interpolation": "LINEAR",
- "output": 38
- },
- {
- "input": 39,
- "interpolation": "LINEAR",
- "output": 40
- },
- {
- "input": 41,
- "interpolation": "LINEAR",
- "output": 42
- },
- {
- "input": 43,
- "interpolation": "LINEAR",
- "output": 44
- },
- {
- "input": 45,
- "interpolation": "LINEAR",
- "output": 46
- },
- {
- "input": 47,
- "interpolation": "LINEAR",
- "output": 48
- },
- {
- "input": 49,
- "interpolation": "LINEAR",
- "output": 50
- },
- {
- "input": 51,
- "interpolation": "LINEAR",
- "output": 52
- },
- {
- "input": 53,
- "interpolation": "LINEAR",
- "output": 54
- },
- {
- "input": 55,
- "interpolation": "LINEAR",
- "output": 56
- },
- {
- "input": 57,
- "interpolation": "LINEAR",
- "output": 58
- },
- {
- "input": 59,
- "interpolation": "LINEAR",
- "output": 60
- },
- {
- "input": 61,
- "interpolation": "LINEAR",
- "output": 62
- },
- {
- "input": 63,
- "interpolation": "LINEAR",
- "output": 64
- },
- {
- "input": 65,
- "interpolation": "LINEAR",
- "output": 66
- },
- {
- "input": 67,
- "interpolation": "LINEAR",
- "output": 68
- },
- {
- "input": 69,
- "interpolation": "LINEAR",
- "output": 70
- },
- {
- "input": 71,
- "interpolation": "LINEAR",
- "output": 72
- },
- {
- "input": 73,
- "interpolation": "LINEAR",
- "output": 74
- },
- {
- "input": 75,
- "interpolation": "LINEAR",
- "output": 76
- },
- {
- "input": 77,
- "interpolation": "LINEAR",
- "output": 78
- },
- {
- "input": 79,
- "interpolation": "LINEAR",
- "output": 80
- },
- {
- "input": 81,
- "interpolation": "LINEAR",
- "output": 82
- },
- {
- "input": 83,
- "interpolation": "LINEAR",
- "output": 84
- },
- {
- "input": 85,
- "interpolation": "LINEAR",
- "output": 86
- }
- ]
- }
- ],
- "asset": {
- "extras": {
- "author": "GreenG (https://sketchfab.com/AngelNebesniy)",
- "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)",
- "source": "https://sketchfab.com/3d-models/robot-from-the-series-love-death-and-robots-3c2c43c8737341e5816c61634782373a",
- "title": "Robot from the series \"Love death and robots\""
- },
- "generator": "Sketchfab-13.21.0",
- "version": "2.0"
- },
- "bufferViews": [
- {
- "buffer": 0,
- "byteLength": 134384,
- "byteStride": 8,
- "name": "shortBufferViews",
- "target": 34962
- },
- {
- "buffer": 0,
- "byteLength": 180348,
- "byteOffset": 134384,
- "name": "floatBufferViews",
- "target": 34963
- },
- {
- "buffer": 0,
- "byteLength": 134384,
- "byteOffset": 314732,
- "byteStride": 8,
- "name": "floatBufferViews",
- "target": 34962
- },
- {
- "buffer": 0,
- "byteLength": 403152,
- "byteOffset": 449116,
- "byteStride": 12,
- "name": "floatBufferViews",
- "target": 34962
- },
- {
- "buffer": 0,
- "byteLength": 268768,
- "byteOffset": 852268,
- "byteStride": 16,
- "name": "floatBufferViews",
- "target": 34962
- },
- {
- "buffer": 0,
- "byteLength": 1280,
- "byteOffset": 1121036,
- "name": "floatBufferViews"
- },
- {
- "buffer": 0,
- "byteLength": 8996,
- "byteOffset": 1122316,
- "name": "floatBufferViews"
- },
- {
- "buffer": 0,
- "byteLength": 17664,
- "byteOffset": 1131312,
- "byteStride": 12,
- "name": "floatBufferViews"
- },
- {
- "buffer": 0,
- "byteLength": 12432,
- "byteOffset": 1148976,
- "byteStride": 16,
- "name": "floatBufferViews"
- }
- ],
- "buffers": [
- {
- "byteLength": 1161408,
- "uri": "scene.bin"
- }
- ],
- "images": [
- {
- "uri": "textures/Material_baseColor.jpeg"
- },
- {
- "uri": "textures/Material_metallicRoughness.png"
- },
- {
- "uri": "textures/Material_emissive.jpeg"
- }
- ],
- "materials": [
- {
- "doubleSided": true,
- "emissiveFactor": [
- 1.0,
- 1.0,
- 1.0
- ],
- "emissiveTexture": {
- "index": 2
- },
- "name": "Material",
- "occlusionTexture": {
- "index": 1
- },
- "pbrMetallicRoughness": {
- "baseColorTexture": {
- "index": 0
- },
- "metallicRoughnessTexture": {
- "index": 1
- }
- }
- }
- ],
- "meshes": [
- {
- "name": "1 L_Material_0",
- "primitives": [
- {
- "attributes": {
- "JOINTS_0": 5,
- "NORMAL": 1,
- "POSITION": 0,
- "TEXCOORD_0": 2,
- "TEXCOORD_1": 2,
- "TEXCOORD_2": 2,
- "TEXCOORD_3": 2,
- "WEIGHTS_0": 6
- },
- "indices": 3,
- "material": 0,
- "mode": 4
- }
- ]
- }
- ],
- "nodes": [
- {
- "children": [
- 1
- ],
- "matrix": [
- 1.0,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 2.220446049250313e-16,
- -1.0,
- 0.0,
- 0.0,
- 1.0,
- 2.220446049250313e-16,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 1.0
- ],
- "name": "Sketchfab_model"
- },
- {
- "children": [
- 2
- ],
- "matrix": [
- 0.009999999776482582,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 0.009999999776482582,
- 0.0,
- 0.0,
- -0.009999999776482582,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 1.0
- ],
- "name": "13b38b2398744f4295b469a8c9d906d1.fbx"
- },
- {
- "children": [
- 3
- ],
- "name": "Object_2"
- },
- {
- "children": [
- 4,
- 5,
- 6,
- 30
- ],
- "name": "RootNode"
- },
- {
- "name": "1 L"
- },
- {
- "name": "Empty",
- "rotation": [
- 0.0,
- 0.0,
- 0.7071068286895752,
- 0.7071067094802856
- ],
- "translation": [
- 2.4578332901000977,
- 1.9663488615151437e-07,
- -102.21495819091797
- ]
- },
- {
- "children": [
- 7
- ],
- "name": "Kosti",
- "rotation": [
- 0.5,
- -0.4999999701976776,
- -0.5,
- -0.5
- ],
- "scale": [
- 100.0,
- 100.0,
- 100.0
- ],
- "translation": [
- 13.776506423950195,
- 460.06988525390625,
- -5.14791202545166
- ]
- },
- {
- "children": [
- 8,
- 10,
- 9
- ],
- "name": "Object_7"
- },
- {
- "children": [
- 11
- ],
- "name": "_rootJoint"
- },
- {
- "matrix": [
- 0.9999999776482582,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 0.9999999776482582,
- 0.0,
- 0.0,
- 0.0,
- 0.0,
- 0.9999999776482582,
- 0.0,
- -5.960464477539063e-08,
- -9.5367431640625e-06,
- -4.470348358154297e-08,
- 1.0
- ],
- "name": "Object_9"
- },
- {
- "mesh": 0,
- "name": "Object_10",
- "skin": 0
- },
- {
- "children": [
- 12,
- 24,
- 27
- ],
- "name": "Taz_00",
- "rotation": [
- 0.7071068286895752,
- 0.0,
- 0.0,
- 0.7071067094802856
- ]
- },
- {
- "children": [
- 13,
- 18,
- 21
- ],
- "name": "spina_01",
- "rotation": [
- -1.1845716001946009e-23,
- 1.1920928955078125e-07,
- 6.934146007478031e-30,
- 1.0
- ],
- "translation": [
- -6.938893903907228e-18,
- 1.1886043548583984,
- 0.0
- ]
- },
- {
- "children": [
- 14,
- 16
- ],
- "name": "Head_02",
- "rotation": [
- -1.2709323844519427e-23,
- 2.6469779601696886e-23,
- -1.5777218104420236e-30,
- 1.0
- ],
- "translation": [
- 0.0,
- 2.281099796295166,
- 0.0
- ]
- },
- {
- "children": [
- 15
- ],
- "name": "uho.L_03",
- "rotation": [
- -0.2181786298751831,
- -0.001181027851998806,
- 0.005338727962225676,
- 0.9758935570716858
- ],
- "scale": [
- 1.0,
- 0.9999998807907104,
- 1.0
- ],
- "translation": [
- 3.238227605819702,
- 3.735910415649414,
- -0.07579512149095535
- ]
- },
- {
- "name": "uho.L_end_013",
- "rotation": [
- -5.152332011558458e-17,
- -0.0,
- 0.0,
- 1.0
- ],
- "translation": [
- 0.0,
- 3.1587722301483154,
- 0.0
- ]
- },
- {
- "children": [
- 17
- ],
- "name": "uho.R_04",
- "rotation": [
- -0.21817860007286072,
- 0.0011808006092905998,
- -0.0053387535735964775,
- 0.9758935570716858
- ],
- "translation": [
- -3.238227605819702,
- 3.735910415649414,
- -0.07579667121171951
- ]
- },
- {
- "name": "uho.R_end_014",
- "rotation": [
- -4.1555436392295975e-17,
- -4.336808689942018e-19,
- -1.8021797766044195e-35,
- 1.0
- ],
- "translation": [
- 0.0,
- 3.1587722301483154,
- 0.0
- ]
- },
- {
- "children": [
- 19
- ],
- "name": "ruka1.L_05",
- "rotation": [
- -1.9321105071412603e-07,
- -9.711625947872449e-10,
- 0.9797796607017517,
- -0.2000795304775238
- ],
- "scale": [
- 0.9999986886978149,
- 0.9999999403953552,
- 1.0
- ],
- "translation": [
- 1.3033084869384766,
- 1.9064292907714844,
- 3.107329575868789e-07
- ]
- },
- {
- "children": [
- 20
- ],
- "name": "ruka2.L_06",
- "rotation": [
- -5.2042761211623656e-08,
- -1.754538025977581e-08,
- -0.00805887021124363,
- 0.9999675154685974
- ],
- "translation": [
- -1.341104365337742e-07,
- 2.7588725090026855,
- -1.7791323969618134e-14
- ]
- },
- {
- "name": "ruka2.L_end_015",
- "rotation": [
- -5.790264287871194e-24,
- -1.6071211827648462e-40,
- 2.7755575615628914e-17,
- 1.0
- ],
- "translation": [
- -8.881784197001252e-16,
- 1.555633783340454,
- 0.0
- ]
- },
- {
- "children": [
- 22
- ],
- "name": "ruka1.R_07",
- "rotation": [
- -4.038688672380886e-08,
- -4.867379388429072e-08,
- 0.9797796607017517,
- 0.2000795304775238
- ],
- "scale": [
- 0.9999986886978149,
- 0.9999999403953552,
- 1.0
- ],
- "translation": [
- -1.3033084869384766,
- 1.9064292907714844,
- -3.107329575868789e-07
- ]
- },
- {
- "children": [
- 23
- ],
- "name": "ruka2.R_08",
- "rotation": [
- -5.2042761211623656e-08,
- 1.7545390917916848e-08,
- 0.00805887021124363,
- 0.9999675154685974
- ],
- "translation": [
- 1.341104365337742e-07,
- 2.7588725090026855,
- -2.4868995751603507e-14
- ]
- },
- {
- "name": "ruka2.R_end_016",
- "rotation": [
- -9.926167350636332e-24,
- 8.265194654219209e-40,
- -8.326672684688674e-17,
- 1.0
- ],
- "translation": [
- 0.0,
- 1.555633783340454,
- 2.7755575615628914e-17
- ]
- },
- {
- "children": [
- 25
- ],
- "name": "Noga1.L_09",
- "rotation": [
- 0.7069091200828552,
- 0.011749467812478542,
- 0.7069016695022583,
- -0.020771833136677742
- ],
- "scale": [
- 1.003679633140564,
- 1.0000028610229492,
- 1.0000003576278687
- ],
- "translation": [
- 0.8008494973182678,
- 0.11276865005493164,
- -0.0505305677652359
- ]
- },
- {
- "children": [
- 26
- ],
- "name": "Noga2.L_010",
- "rotation": [
- -0.009696613065898418,
- 3.951330654672347e-06,
- 0.0004453247820492834,
- 0.9999529123306274
- ],
- "scale": [
- 0.9999998211860657,
- 0.9999997615814209,
- 0.9999998211860657
- ],
- "translation": [
- 1.4173565432429314e-08,
- 2.273991346359253,
- 9.642099030315876e-08
- ]
- },
- {
- "name": "Noga2.L_end_017",
- "rotation": [
- 3.469446951953614e-18,
- -5.8657168106032147e-36,
- -1.6906777627195835e-18,
- 1.0
- ],
- "translation": [
- 1.0408340855860843e-17,
- 2.3786160945892334,
- 2.220446049250313e-16
- ]
- },
- {
- "children": [
- 28
- ],
- "name": "Noga1.R_011",
- "rotation": [
- -0.7069644927978516,
- 0.016866782680153847,
- 0.7069705128669739,
- 0.01046205684542656
- ],
- "scale": [
- 1.0036818981170654,
- 1.0000001192092896,
- 1.0000003576278687
- ],
- "translation": [
- -0.8008494973182678,
- 0.11276865005493164,
- -0.0505305677652359
- ]
- },
- {
- "children": [
- 29
- ],
- "name": "Noga2.R_012",
- "rotation": [
- -0.009696617722511292,
- 3.4534125461505027e-06,
- 0.00031549172126688063,
- 0.999953031539917
- ],
- "scale": [
- 0.9999999403953552,
- 1.0000001192092896,
- 1.0
- ],
- "translation": [
- -8.163624443113804e-09,
- 2.273991823196411,
- -1.347152647213079e-07
- ]
- },
- {
- "name": "Noga2.R_end_018",
- "rotation": [
- 1.734723475976807e-18,
- -1.3552527156068805e-20,
- -1.4166626042828173e-19,
- 1.0
- ],
- "translation": [
- 2.7755575615628914e-17,
- 2.3786160945892334,
- 0.0
- ]
- },
- {
- "name": "Empty.001",
- "rotation": [
- 0.0,
- 0.0,
- -0.7071068286895752,
- 0.7071067094802856
- ],
- "translation": [
- 13.137669563293457,
- 0.3689606785774231,
- 88.47867584228516
- ]
- }
- ],
- "samplers": [
- {
- "magFilter": 9729,
- "minFilter": 9987,
- "wrapS": 10497,
- "wrapT": 10497
- }
- ],
- "scene": 0,
- "scenes": [
- {
- "name": "Sketchfab_Scene",
- "nodes": [
- 0
- ]
- }
- ],
- "skins": [
- {
- "inverseBindMatrices": 4,
- "joints": [
- 8,
- 11,
- 12,
- 13,
- 14,
- 15,
- 16,
- 17,
- 18,
- 19,
- 20,
- 21,
- 22,
- 23,
- 24,
- 25,
- 26,
- 27,
- 28,
- 29
- ],
- "skeleton": 8
- }
- ],
- "textures": [
- {
- "sampler": 0,
- "source": 0
- },
- {
- "sampler": 0,
- "source": 1
- },
- {
- "sampler": 0,
- "source": 2
- }
- ]
- }
|