scene.gltf 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532
  1. {
  2. "accessors": [
  3. {
  4. "bufferView": 3,
  5. "componentType": 5126,
  6. "count": 16798,
  7. "max": [
  8. 409.74639892578125,
  9. 1486.694091796875,
  10. 362.8570251464844
  11. ],
  12. "min": [
  13. -273.6598205566406,
  14. 0.15262603759765625,
  15. -362.8392639160156
  16. ],
  17. "type": "VEC3"
  18. },
  19. {
  20. "bufferView": 3,
  21. "byteOffset": 201576,
  22. "componentType": 5126,
  23. "count": 16798,
  24. "max": [
  25. 0.9996960163116455,
  26. 1.0,
  27. 1.0
  28. ],
  29. "min": [
  30. -0.9999091029167175,
  31. -0.999981701374054,
  32. -1.0
  33. ],
  34. "type": "VEC3"
  35. },
  36. {
  37. "bufferView": 2,
  38. "componentType": 5126,
  39. "count": 16798,
  40. "max": [
  41. 0.9990234375,
  42. 0.9938035607337952
  43. ],
  44. "min": [
  45. 0.0009765625,
  46. 0.0009765625
  47. ],
  48. "type": "VEC2"
  49. },
  50. {
  51. "bufferView": 1,
  52. "componentType": 5125,
  53. "count": 45087,
  54. "type": "SCALAR"
  55. },
  56. {
  57. "bufferView": 5,
  58. "componentType": 5126,
  59. "count": 20,
  60. "max": [
  61. 1.0,
  62. 2.373163425772873e-07,
  63. 0.009999999776482582,
  64. 0.0,
  65. 0.003920685965567827,
  66. 1.0,
  67. 0.00425825547426939,
  68. 0.0,
  69. 0.00926137063652277,
  70. 0.003920680843293667,
  71. 1.0,
  72. 0.0,
  73. 4.263574600219727,
  74. 6.588780879974365,
  75. 0.0,
  76. 1.0
  77. ],
  78. "min": [
  79. -0.00998775940388441,
  80. -0.004258507397025824,
  81. 0.0,
  82. 0.0,
  83. -0.003920685965567827,
  84. -0.009999995119869709,
  85. -1.6179949602346255e-09,
  86. 0.0,
  87. -0.009999999776482582,
  88. -0.003920680843293667,
  89. -0.009999997913837433,
  90. 0.0,
  91. -4.168859481811523,
  92. -10.62368106842041,
  93. -5.068729877471924,
  94. 1.0
  95. ],
  96. "type": "MAT4"
  97. },
  98. {
  99. "bufferView": 0,
  100. "componentType": 5123,
  101. "count": 16798,
  102. "type": "VEC4"
  103. },
  104. {
  105. "bufferView": 4,
  106. "componentType": 5126,
  107. "count": 16798,
  108. "max": [
  109. 1.0,
  110. 0.0,
  111. 0.0,
  112. 0.0
  113. ],
  114. "min": [
  115. 1.0,
  116. 0.0,
  117. 0.0,
  118. 0.0
  119. ],
  120. "type": "VEC4"
  121. },
  122. {
  123. "bufferView": 6,
  124. "componentType": 5126,
  125. "count": 35,
  126. "max": [
  127. 1.4583333730697632
  128. ],
  129. "min": [
  130. 0.0416666679084301
  131. ],
  132. "type": "SCALAR"
  133. },
  134. {
  135. "bufferView": 7,
  136. "componentType": 5126,
  137. "count": 35,
  138. "max": [
  139. 870.926025390625,
  140. 1.9663488615151437e-07,
  141. -102.21495819091797
  142. ],
  143. "min": [
  144. 2.4578332901000977,
  145. -3.7765315937576815e-05,
  146. -102.21495819091797
  147. ],
  148. "type": "VEC3"
  149. },
  150. {
  151. "bufferView": 6,
  152. "byteOffset": 140,
  153. "componentType": 5126,
  154. "count": 66,
  155. "max": [
  156. 1.4583333730697632
  157. ],
  158. "min": [
  159. 0.0416666679084301
  160. ],
  161. "type": "SCALAR"
  162. },
  163. {
  164. "bufferView": 7,
  165. "byteOffset": 420,
  166. "componentType": 5126,
  167. "count": 66,
  168. "max": [
  169. 3.2382278442382813,
  170. 3.7359113693237305,
  171. -0.07579355686903
  172. ],
  173. "min": [
  174. 3.238227367401123,
  175. 3.7359097003936768,
  176. -0.07579690217971802
  177. ],
  178. "type": "VEC3"
  179. },
  180. {
  181. "bufferView": 6,
  182. "byteOffset": 404,
  183. "componentType": 5126,
  184. "count": 60,
  185. "max": [
  186. 1.4583333730697632
  187. ],
  188. "min": [
  189. 0.0416666679084301
  190. ],
  191. "type": "SCALAR"
  192. },
  193. {
  194. "bufferView": 7,
  195. "byteOffset": 1212,
  196. "componentType": 5126,
  197. "count": 60,
  198. "max": [
  199. 1.0,
  200. 1.0000001192092896,
  201. 1.0000001192092896
  202. ],
  203. "min": [
  204. 1.0,
  205. 0.9999998807907104,
  206. 0.9999997019767761
  207. ],
  208. "type": "VEC3"
  209. },
  210. {
  211. "bufferView": 6,
  212. "byteOffset": 644,
  213. "componentType": 5126,
  214. "count": 68,
  215. "max": [
  216. 1.4583333730697632
  217. ],
  218. "min": [
  219. 0.0416666679084301
  220. ],
  221. "type": "SCALAR"
  222. },
  223. {
  224. "bufferView": 8,
  225. "componentType": 5126,
  226. "count": 68,
  227. "max": [
  228. 0.6540536284446716,
  229. 0.0035855381283909082,
  230. 0.005467443261295557,
  231. 0.9998916983604431
  232. ],
  233. "min": [
  234. -0.6987945437431335,
  235. -0.0038121629040688276,
  236. 0.003919726703315973,
  237. 0.715301513671875
  238. ],
  239. "type": "VEC4"
  240. },
  241. {
  242. "bufferView": 6,
  243. "byteOffset": 916,
  244. "componentType": 5126,
  245. "count": 67,
  246. "max": [
  247. 1.4583333730697632
  248. ],
  249. "min": [
  250. 0.0416666679084301
  251. ],
  252. "type": "SCALAR"
  253. },
  254. {
  255. "bufferView": 7,
  256. "byteOffset": 1932,
  257. "componentType": 5126,
  258. "count": 67,
  259. "max": [
  260. -3.238227367401123,
  261. 3.7359113693237305,
  262. -0.07579591870307922
  263. ],
  264. "min": [
  265. -3.2382278442382813,
  266. 3.735909938812256,
  267. -0.07579778879880905
  268. ],
  269. "type": "VEC3"
  270. },
  271. {
  272. "bufferView": 6,
  273. "byteOffset": 1184,
  274. "componentType": 5126,
  275. "count": 55,
  276. "max": [
  277. 1.4583333730697632
  278. ],
  279. "min": [
  280. 0.0416666679084301
  281. ],
  282. "type": "SCALAR"
  283. },
  284. {
  285. "bufferView": 7,
  286. "byteOffset": 2736,
  287. "componentType": 5126,
  288. "count": 55,
  289. "max": [
  290. 1.0,
  291. 1.000000238418579,
  292. 1.0000001192092896
  293. ],
  294. "min": [
  295. 1.0,
  296. 0.9999998211860657,
  297. 0.9999998211860657
  298. ],
  299. "type": "VEC3"
  300. },
  301. {
  302. "bufferView": 6,
  303. "byteOffset": 1404,
  304. "componentType": 5126,
  305. "count": 68,
  306. "max": [
  307. 1.4583333730697632
  308. ],
  309. "min": [
  310. 0.0416666679084301
  311. ],
  312. "type": "SCALAR"
  313. },
  314. {
  315. "bufferView": 8,
  316. "byteOffset": 1088,
  317. "componentType": 5126,
  318. "count": 68,
  319. "max": [
  320. 0.6598827242851257,
  321. 0.0038297821301966906,
  322. -0.0039024800062179565,
  323. 0.9999011754989624
  324. ],
  325. "min": [
  326. -0.7020425796508789,
  327. -0.003617502748966217,
  328. -0.0054674651473760605,
  329. 0.7121139764785767
  330. ],
  331. "type": "VEC4"
  332. },
  333. {
  334. "bufferView": 6,
  335. "byteOffset": 1676,
  336. "componentType": 5126,
  337. "count": 68,
  338. "max": [
  339. 1.4583333730697632
  340. ],
  341. "min": [
  342. 0.0416666679084301
  343. ],
  344. "type": "SCALAR"
  345. },
  346. {
  347. "bufferView": 7,
  348. "byteOffset": 3396,
  349. "componentType": 5126,
  350. "count": 68,
  351. "max": [
  352. 3.126388037344441e-13,
  353. 2.281100034713745,
  354. 4.2468306560294877e-07
  355. ],
  356. "min": [
  357. -1.6342482922482304e-13,
  358. 2.281099557876587,
  359. -1.1175870895385742e-06
  360. ],
  361. "type": "VEC3"
  362. },
  363. {
  364. "bufferView": 6,
  365. "byteOffset": 1948,
  366. "componentType": 5126,
  367. "count": 6,
  368. "max": [
  369. 1.4583333730697632
  370. ],
  371. "min": [
  372. 0.0416666679084301
  373. ],
  374. "type": "SCALAR"
  375. },
  376. {
  377. "bufferView": 7,
  378. "byteOffset": 4212,
  379. "componentType": 5126,
  380. "count": 6,
  381. "max": [
  382. 1.0,
  383. 1.0,
  384. 1.0
  385. ],
  386. "min": [
  387. 1.0,
  388. 0.9999999403953552,
  389. 0.9999999403953552
  390. ],
  391. "type": "VEC3"
  392. },
  393. {
  394. "bufferView": 6,
  395. "byteOffset": 1972,
  396. "componentType": 5126,
  397. "count": 48,
  398. "max": [
  399. 1.4583333730697632
  400. ],
  401. "min": [
  402. 0.0416666679084301
  403. ],
  404. "type": "SCALAR"
  405. },
  406. {
  407. "bufferView": 8,
  408. "byteOffset": 2176,
  409. "componentType": 5126,
  410. "count": 48,
  411. "max": [
  412. 2.6642316242585646e-17,
  413. 7.077671781985373e-15,
  414. 9.02056313387058e-16,
  415. 1.0
  416. ],
  417. "min": [
  418. -4.656612873077393e-10,
  419. -1.065814188343445e-14,
  420. -1.4432899320127035e-15,
  421. 1.0
  422. ],
  423. "type": "VEC4"
  424. },
  425. {
  426. "bufferView": 6,
  427. "byteOffset": 2164,
  428. "componentType": 5126,
  429. "count": 68,
  430. "max": [
  431. 1.4583333730697632
  432. ],
  433. "min": [
  434. 0.0416666679084301
  435. ],
  436. "type": "SCALAR"
  437. },
  438. {
  439. "bufferView": 7,
  440. "byteOffset": 4284,
  441. "componentType": 5126,
  442. "count": 68,
  443. "max": [
  444. 5.960464477539063e-07,
  445. 2.758873701095581,
  446. 1.323409378528595e-06
  447. ],
  448. "min": [
  449. -3.3527612686157227e-07,
  450. 2.7588722705841064,
  451. -1.2367963790893555e-06
  452. ],
  453. "type": "VEC3"
  454. },
  455. {
  456. "bufferView": 6,
  457. "byteOffset": 2436,
  458. "componentType": 5126,
  459. "count": 58,
  460. "max": [
  461. 1.4583333730697632
  462. ],
  463. "min": [
  464. 0.0416666679084301
  465. ],
  466. "type": "SCALAR"
  467. },
  468. {
  469. "bufferView": 7,
  470. "byteOffset": 5100,
  471. "componentType": 5126,
  472. "count": 58,
  473. "max": [
  474. 1.000000238418579,
  475. 1.0000001192092896,
  476. 1.000000238418579
  477. ],
  478. "min": [
  479. 0.9999998807907104,
  480. 0.9999998807907104,
  481. 0.9999998807907104
  482. ],
  483. "type": "VEC3"
  484. },
  485. {
  486. "bufferView": 6,
  487. "byteOffset": 2668,
  488. "componentType": 5126,
  489. "count": 68,
  490. "max": [
  491. 1.4583333730697632
  492. ],
  493. "min": [
  494. 0.0416666679084301
  495. ],
  496. "type": "SCALAR"
  497. },
  498. {
  499. "bufferView": 8,
  500. "byteOffset": 2944,
  501. "componentType": 5126,
  502. "count": 68,
  503. "max": [
  504. 0.2645414173603058,
  505. 0.7002617120742798,
  506. 0.25898295640945435,
  507. 0.9995037913322449
  508. ],
  509. "min": [
  510. 0.00024535489501431584,
  511. 0.030449772253632545,
  512. -0.008055141195654869,
  513. 0.6652288436889648
  514. ],
  515. "type": "VEC4"
  516. },
  517. {
  518. "bufferView": 6,
  519. "byteOffset": 2940,
  520. "componentType": 5126,
  521. "count": 68,
  522. "max": [
  523. 1.4583333730697632
  524. ],
  525. "min": [
  526. 0.0416666679084301
  527. ],
  528. "type": "SCALAR"
  529. },
  530. {
  531. "bufferView": 7,
  532. "byteOffset": 5796,
  533. "componentType": 5126,
  534. "count": 68,
  535. "max": [
  536. 1.3033084869384766,
  537. 1.9064295291900635,
  538. 9.849086382018868e-07
  539. ],
  540. "min": [
  541. 1.3033084869384766,
  542. 1.9064290523529053,
  543. -9.041751809490961e-07
  544. ],
  545. "type": "VEC3"
  546. },
  547. {
  548. "bufferView": 6,
  549. "byteOffset": 3212,
  550. "componentType": 5126,
  551. "count": 58,
  552. "max": [
  553. 1.4583333730697632
  554. ],
  555. "min": [
  556. 0.0416666679084301
  557. ],
  558. "type": "SCALAR"
  559. },
  560. {
  561. "bufferView": 7,
  562. "byteOffset": 6612,
  563. "componentType": 5126,
  564. "count": 58,
  565. "max": [
  566. 0.9999986886978149,
  567. 1.000000238418579,
  568. 1.0000001192092896
  569. ],
  570. "min": [
  571. 0.9999986290931702,
  572. 0.9999998211860657,
  573. 0.9999998211860657
  574. ],
  575. "type": "VEC3"
  576. },
  577. {
  578. "bufferView": 6,
  579. "byteOffset": 3444,
  580. "componentType": 5126,
  581. "count": 68,
  582. "max": [
  583. 1.4583333730697632
  584. ],
  585. "min": [
  586. 0.0416666679084301
  587. ],
  588. "type": "SCALAR"
  589. },
  590. {
  591. "bufferView": 8,
  592. "byteOffset": 4032,
  593. "componentType": 5126,
  594. "count": 68,
  595. "max": [
  596. 0.07260923832654953,
  597. 0.6989861130714417,
  598. 0.9797722697257996,
  599. -0.14020411670207977
  600. ],
  601. "min": [
  602. -0.14273881912231445,
  603. -0.35556697845458984,
  604. 0.6865761876106262,
  605. -0.20007722079753876
  606. ],
  607. "type": "VEC4"
  608. },
  609. {
  610. "bufferView": 6,
  611. "byteOffset": 3716,
  612. "componentType": 5126,
  613. "count": 68,
  614. "max": [
  615. 1.4583333730697632
  616. ],
  617. "min": [
  618. 0.0416666679084301
  619. ],
  620. "type": "SCALAR"
  621. },
  622. {
  623. "bufferView": 7,
  624. "byteOffset": 7308,
  625. "componentType": 5126,
  626. "count": 68,
  627. "max": [
  628. 4.6938657760620117e-07,
  629. 2.758873462677002,
  630. 1.5050172805786133e-06
  631. ],
  632. "min": [
  633. -1.9371509552001953e-07,
  634. 2.758871555328369,
  635. -8.940696716308594e-07
  636. ],
  637. "type": "VEC3"
  638. },
  639. {
  640. "bufferView": 6,
  641. "byteOffset": 3988,
  642. "componentType": 5126,
  643. "count": 63,
  644. "max": [
  645. 1.4583333730697632
  646. ],
  647. "min": [
  648. 0.0416666679084301
  649. ],
  650. "type": "SCALAR"
  651. },
  652. {
  653. "bufferView": 7,
  654. "byteOffset": 8124,
  655. "componentType": 5126,
  656. "count": 63,
  657. "max": [
  658. 1.0000001192092896,
  659. 1.0000001192092896,
  660. 1.0000001192092896
  661. ],
  662. "min": [
  663. 0.9999998807907104,
  664. 0.9999998211860657,
  665. 0.9999998211860657
  666. ],
  667. "type": "VEC3"
  668. },
  669. {
  670. "bufferView": 6,
  671. "byteOffset": 4240,
  672. "componentType": 5126,
  673. "count": 68,
  674. "max": [
  675. 1.4583333730697632
  676. ],
  677. "min": [
  678. 0.0416666679084301
  679. ],
  680. "type": "SCALAR"
  681. },
  682. {
  683. "bufferView": 8,
  684. "byteOffset": 5120,
  685. "componentType": 5126,
  686. "count": 68,
  687. "max": [
  688. 0.2520925998687744,
  689. -0.030508004128932953,
  690. 0.008055126294493675,
  691. 0.9995020627975464
  692. ],
  693. "min": [
  694. 0.00024582198238931596,
  695. -0.7015630006790161,
  696. -0.2452935427427292,
  697. 0.6690354943275452
  698. ],
  699. "type": "VEC4"
  700. },
  701. {
  702. "bufferView": 6,
  703. "byteOffset": 4512,
  704. "componentType": 5126,
  705. "count": 68,
  706. "max": [
  707. 1.4583333730697632
  708. ],
  709. "min": [
  710. 0.0416666679084301
  711. ],
  712. "type": "SCALAR"
  713. },
  714. {
  715. "bufferView": 7,
  716. "byteOffset": 8880,
  717. "componentType": 5126,
  718. "count": 68,
  719. "max": [
  720. -1.3033084869384766,
  721. 1.9064295291900635,
  722. 6.208566674104077e-07
  723. ],
  724. "min": [
  725. -1.3033084869384766,
  726. 1.9064290523529053,
  727. -1.3304887716003577e-06
  728. ],
  729. "type": "VEC3"
  730. },
  731. {
  732. "bufferView": 6,
  733. "byteOffset": 4784,
  734. "componentType": 5126,
  735. "count": 61,
  736. "max": [
  737. 1.4583333730697632
  738. ],
  739. "min": [
  740. 0.0416666679084301
  741. ],
  742. "type": "SCALAR"
  743. },
  744. {
  745. "bufferView": 7,
  746. "byteOffset": 9696,
  747. "componentType": 5126,
  748. "count": 61,
  749. "max": [
  750. 0.9999986886978149,
  751. 1.0000001192092896,
  752. 1.0
  753. ],
  754. "min": [
  755. 0.9999986290931702,
  756. 0.9999998211860657,
  757. 0.9999997615814209
  758. ],
  759. "type": "VEC3"
  760. },
  761. {
  762. "bufferView": 6,
  763. "byteOffset": 5028,
  764. "componentType": 5126,
  765. "count": 68,
  766. "max": [
  767. 1.4583333730697632
  768. ],
  769. "min": [
  770. 0.0416666679084301
  771. ],
  772. "type": "SCALAR"
  773. },
  774. {
  775. "bufferView": 8,
  776. "byteOffset": 6208,
  777. "componentType": 5126,
  778. "count": 68,
  779. "max": [
  780. 0.14054062962532043,
  781. 0.6882219910621643,
  782. 0.97966068983078,
  783. 0.20005539059638977
  784. ],
  785. "min": [
  786. -0.07255568355321884,
  787. -0.3553020656108856,
  788. 0.6973656415939331,
  789. 0.14240767061710358
  790. ],
  791. "type": "VEC4"
  792. },
  793. {
  794. "bufferView": 6,
  795. "byteOffset": 5300,
  796. "componentType": 5126,
  797. "count": 48,
  798. "max": [
  799. 1.4583333730697632
  800. ],
  801. "min": [
  802. 0.0416666679084301
  803. ],
  804. "type": "SCALAR"
  805. },
  806. {
  807. "bufferView": 7,
  808. "byteOffset": 10428,
  809. "componentType": 5126,
  810. "count": 48,
  811. "max": [
  812. 0.0,
  813. 1.1886043548583984,
  814. 1.7763568394002505e-15
  815. ],
  816. "min": [
  817. 0.0,
  818. 1.1886043548583984,
  819. -1.7763568394002505e-15
  820. ],
  821. "type": "VEC3"
  822. },
  823. {
  824. "bufferView": 6,
  825. "byteOffset": 5492,
  826. "componentType": 5126,
  827. "count": 15,
  828. "max": [
  829. 1.4583333730697632
  830. ],
  831. "min": [
  832. 0.0416666679084301
  833. ],
  834. "type": "SCALAR"
  835. },
  836. {
  837. "bufferView": 7,
  838. "byteOffset": 11004,
  839. "componentType": 5126,
  840. "count": 15,
  841. "max": [
  842. 1.0,
  843. 1.0,
  844. 1.0
  845. ],
  846. "min": [
  847. 1.0,
  848. 0.9999999403953552,
  849. 0.9999999403953552
  850. ],
  851. "type": "VEC3"
  852. },
  853. {
  854. "bufferView": 6,
  855. "byteOffset": 5552,
  856. "componentType": 5126,
  857. "count": 48,
  858. "max": [
  859. 1.4583333730697632
  860. ],
  861. "min": [
  862. 0.0416666679084301
  863. ],
  864. "type": "SCALAR"
  865. },
  866. {
  867. "bufferView": 8,
  868. "byteOffset": 7296,
  869. "componentType": 5126,
  870. "count": 48,
  871. "max": [
  872. 0.06521261483430862,
  873. 1.1920922560193503e-07,
  874. 1.708500185770845e-08,
  875. 0.999999463558197
  876. ],
  877. "min": [
  878. -0.013296341523528099,
  879. 1.1797864374329947e-07,
  880. -7.44056505297408e-09,
  881. 0.9978713989257813
  882. ],
  883. "type": "VEC4"
  884. },
  885. {
  886. "bufferView": 6,
  887. "byteOffset": 5744,
  888. "componentType": 5126,
  889. "count": 68,
  890. "max": [
  891. 1.4583333730697632
  892. ],
  893. "min": [
  894. 0.0416666679084301
  895. ],
  896. "type": "SCALAR"
  897. },
  898. {
  899. "bufferView": 7,
  900. "byteOffset": 11184,
  901. "componentType": 5126,
  902. "count": 68,
  903. "max": [
  904. 1.6149133443832397e-06,
  905. 2.2739923000335693,
  906. 1.685693860054016e-07
  907. ],
  908. "min": [
  909. -1.5329569578170776e-06,
  910. 2.273991107940674,
  911. -1.5599653124809265e-07
  912. ],
  913. "type": "VEC3"
  914. },
  915. {
  916. "bufferView": 6,
  917. "byteOffset": 6016,
  918. "componentType": 5126,
  919. "count": 67,
  920. "max": [
  921. 1.4583333730697632
  922. ],
  923. "min": [
  924. 0.0416666679084301
  925. ],
  926. "type": "SCALAR"
  927. },
  928. {
  929. "bufferView": 7,
  930. "byteOffset": 12000,
  931. "componentType": 5126,
  932. "count": 67,
  933. "max": [
  934. 1.0018012523651123,
  935. 1.0,
  936. 1.0000001192092896
  937. ],
  938. "min": [
  939. 1.0,
  940. 0.9976766109466553,
  941. 0.9999998211860657
  942. ],
  943. "type": "VEC3"
  944. },
  945. {
  946. "bufferView": 6,
  947. "byteOffset": 6284,
  948. "componentType": 5126,
  949. "count": 68,
  950. "max": [
  951. 1.4583333730697632
  952. ],
  953. "min": [
  954. 0.0416666679084301
  955. ],
  956. "type": "SCALAR"
  957. },
  958. {
  959. "bufferView": 8,
  960. "byteOffset": 8064,
  961. "componentType": 5126,
  962. "count": 68,
  963. "max": [
  964. -0.008567631244659424,
  965. 0.004559195600450039,
  966. 0.4697008728981018,
  967. 0.9999529123306274
  968. ],
  969. "min": [
  970. -0.009696616791188717,
  971. -2.698243952181656e-05,
  972. -0.0027335009071975946,
  973. 0.8827722668647766
  974. ],
  975. "type": "VEC4"
  976. },
  977. {
  978. "bufferView": 6,
  979. "byteOffset": 6556,
  980. "componentType": 5126,
  981. "count": 15,
  982. "max": [
  983. 1.4583333730697632
  984. ],
  985. "min": [
  986. 0.0416666679084301
  987. ],
  988. "type": "SCALAR"
  989. },
  990. {
  991. "bufferView": 7,
  992. "byteOffset": 12804,
  993. "componentType": 5126,
  994. "count": 15,
  995. "max": [
  996. 0.8008494973182678,
  997. 0.11276865005493164,
  998. -0.050530433654785156
  999. ],
  1000. "min": [
  1001. 0.8008494973182678,
  1002. 0.11276859045028687,
  1003. -0.05053067207336426
  1004. ],
  1005. "type": "VEC3"
  1006. },
  1007. {
  1008. "bufferView": 6,
  1009. "byteOffset": 6616,
  1010. "componentType": 5126,
  1011. "count": 68,
  1012. "max": [
  1013. 1.4583333730697632
  1014. ],
  1015. "min": [
  1016. 0.0416666679084301
  1017. ],
  1018. "type": "SCALAR"
  1019. },
  1020. {
  1021. "bufferView": 7,
  1022. "byteOffset": 12984,
  1023. "componentType": 5126,
  1024. "count": 68,
  1025. "max": [
  1026. 1.0036818981170654,
  1027. 1.0003011226654053,
  1028. 1.0000004768371582
  1029. ],
  1030. "min": [
  1031. 1.0033730268478394,
  1032. 0.9999997615814209,
  1033. 1.0000001192092896
  1034. ],
  1035. "type": "VEC3"
  1036. },
  1037. {
  1038. "bufferView": 6,
  1039. "byteOffset": 6888,
  1040. "componentType": 5126,
  1041. "count": 68,
  1042. "max": [
  1043. 1.4583333730697632
  1044. ],
  1045. "min": [
  1046. 0.0416666679084301
  1047. ],
  1048. "type": "SCALAR"
  1049. },
  1050. {
  1051. "bufferView": 8,
  1052. "byteOffset": 9152,
  1053. "componentType": 5126,
  1054. "count": 68,
  1055. "max": [
  1056. 0.7069067358970642,
  1057. 0.1512317955493927,
  1058. 0.7070021033287048,
  1059. 0.11729905754327774
  1060. ],
  1061. "min": [
  1062. 0.6918647885322571,
  1063. 0.00023744879581499845,
  1064. 0.6961989402770996,
  1065. -0.0326845645904541
  1066. ],
  1067. "type": "VEC4"
  1068. },
  1069. {
  1070. "bufferView": 6,
  1071. "byteOffset": 7160,
  1072. "componentType": 5126,
  1073. "count": 68,
  1074. "max": [
  1075. 1.4583333730697632
  1076. ],
  1077. "min": [
  1078. 0.0416666679084301
  1079. ],
  1080. "type": "SCALAR"
  1081. },
  1082. {
  1083. "bufferView": 7,
  1084. "byteOffset": 13800,
  1085. "componentType": 5126,
  1086. "count": 68,
  1087. "max": [
  1088. 1.0835938155651093e-06,
  1089. 2.2739920616149902,
  1090. 1.2386590242385864e-07
  1091. ],
  1092. "min": [
  1093. -2.1029263734817505e-06,
  1094. 2.2739906311035156,
  1095. -1.4901161193847656e-07
  1096. ],
  1097. "type": "VEC3"
  1098. },
  1099. {
  1100. "bufferView": 6,
  1101. "byteOffset": 7432,
  1102. "componentType": 5126,
  1103. "count": 68,
  1104. "max": [
  1105. 1.4583333730697632
  1106. ],
  1107. "min": [
  1108. 0.0416666679084301
  1109. ],
  1110. "type": "SCALAR"
  1111. },
  1112. {
  1113. "bufferView": 7,
  1114. "byteOffset": 14616,
  1115. "componentType": 5126,
  1116. "count": 68,
  1117. "max": [
  1118. 1.0017509460449219,
  1119. 1.0,
  1120. 1.0
  1121. ],
  1122. "min": [
  1123. 0.9999991059303284,
  1124. 0.9976644515991211,
  1125. 0.9999997019767761
  1126. ],
  1127. "type": "VEC3"
  1128. },
  1129. {
  1130. "bufferView": 6,
  1131. "byteOffset": 7704,
  1132. "componentType": 5126,
  1133. "count": 68,
  1134. "max": [
  1135. 1.4583333730697632
  1136. ],
  1137. "min": [
  1138. 0.0416666679084301
  1139. ],
  1140. "type": "SCALAR"
  1141. },
  1142. {
  1143. "bufferView": 8,
  1144. "byteOffset": 10240,
  1145. "componentType": 5126,
  1146. "count": 68,
  1147. "max": [
  1148. -0.008508635684847832,
  1149. 0.0012000110000371933,
  1150. 0.12329567223787308,
  1151. 0.9999529123306274
  1152. ],
  1153. "min": [
  1154. -0.009696613997220993,
  1155. -0.00466766394674778,
  1156. -0.48092564940452576,
  1157. 0.8767076730728149
  1158. ],
  1159. "type": "VEC4"
  1160. },
  1161. {
  1162. "bufferView": 6,
  1163. "byteOffset": 7976,
  1164. "componentType": 5126,
  1165. "count": 15,
  1166. "max": [
  1167. 1.4583333730697632
  1168. ],
  1169. "min": [
  1170. 0.0416666679084301
  1171. ],
  1172. "type": "SCALAR"
  1173. },
  1174. {
  1175. "bufferView": 7,
  1176. "byteOffset": 15432,
  1177. "componentType": 5126,
  1178. "count": 15,
  1179. "max": [
  1180. -0.8008494973182678,
  1181. 0.11276865005493164,
  1182. -0.050530433654785156
  1183. ],
  1184. "min": [
  1185. -0.8008494973182678,
  1186. 0.11276859045028687,
  1187. -0.05053067207336426
  1188. ],
  1189. "type": "VEC3"
  1190. },
  1191. {
  1192. "bufferView": 6,
  1193. "byteOffset": 8036,
  1194. "componentType": 5126,
  1195. "count": 68,
  1196. "max": [
  1197. 1.4583333730697632
  1198. ],
  1199. "min": [
  1200. 0.0416666679084301
  1201. ],
  1202. "type": "SCALAR"
  1203. },
  1204. {
  1205. "bufferView": 7,
  1206. "byteOffset": 15612,
  1207. "componentType": 5126,
  1208. "count": 68,
  1209. "max": [
  1210. 1.003682017326355,
  1211. 1.000352382659912,
  1212. 1.0000004768371582
  1213. ],
  1214. "min": [
  1215. 1.003321647644043,
  1216. 1.0,
  1217. 1.0000003576278687
  1218. ],
  1219. "type": "VEC3"
  1220. },
  1221. {
  1222. "bufferView": 6,
  1223. "byteOffset": 8308,
  1224. "componentType": 5126,
  1225. "count": 68,
  1226. "max": [
  1227. 1.4583333730697632
  1228. ],
  1229. "min": [
  1230. 0.0416666679084301
  1231. ],
  1232. "type": "SCALAR"
  1233. },
  1234. {
  1235. "bufferView": 8,
  1236. "byteOffset": 11328,
  1237. "componentType": 5126,
  1238. "count": 68,
  1239. "max": [
  1240. 0.7105586528778076,
  1241. 0.15906037390232086,
  1242. 0.7086091637611389,
  1243. 0.07343249768018723
  1244. ],
  1245. "min": [
  1246. -0.7069636583328247,
  1247. -0.09754300117492676,
  1248. -0.7069477438926697,
  1249. -0.13078966736793518
  1250. ],
  1251. "type": "VEC4"
  1252. },
  1253. {
  1254. "bufferView": 6,
  1255. "byteOffset": 8580,
  1256. "componentType": 5126,
  1257. "count": 68,
  1258. "max": [
  1259. 1.4583333730697632
  1260. ],
  1261. "min": [
  1262. 0.0416666679084301
  1263. ],
  1264. "type": "SCALAR"
  1265. },
  1266. {
  1267. "bufferView": 7,
  1268. "byteOffset": 16428,
  1269. "componentType": 5126,
  1270. "count": 68,
  1271. "max": [
  1272. 6.938893903907228e-18,
  1273. -0.0010119465878233314,
  1274. 0.9010737538337708
  1275. ],
  1276. "min": [
  1277. -6.938893903907228e-18,
  1278. -9.573902130126953,
  1279. -0.7208581566810608
  1280. ],
  1281. "type": "VEC3"
  1282. },
  1283. {
  1284. "bufferView": 6,
  1285. "byteOffset": 8852,
  1286. "componentType": 5126,
  1287. "count": 1,
  1288. "max": [
  1289. 0.0416666679084301
  1290. ],
  1291. "min": [
  1292. 0.0416666679084301
  1293. ],
  1294. "type": "SCALAR"
  1295. },
  1296. {
  1297. "bufferView": 8,
  1298. "byteOffset": 12416,
  1299. "componentType": 5126,
  1300. "count": 1,
  1301. "max": [
  1302. -0.5,
  1303. 0.5,
  1304. 0.5,
  1305. 0.5
  1306. ],
  1307. "min": [
  1308. -0.5,
  1309. 0.5,
  1310. 0.5,
  1311. 0.5
  1312. ],
  1313. "type": "VEC4"
  1314. },
  1315. {
  1316. "bufferView": 6,
  1317. "byteOffset": 8856,
  1318. "componentType": 5126,
  1319. "count": 35,
  1320. "max": [
  1321. 1.4583333730697632
  1322. ],
  1323. "min": [
  1324. 0.0416666679084301
  1325. ],
  1326. "type": "SCALAR"
  1327. },
  1328. {
  1329. "bufferView": 7,
  1330. "byteOffset": 17244,
  1331. "componentType": 5126,
  1332. "count": 35,
  1333. "max": [
  1334. 881.6058349609375,
  1335. 0.3689606785774231,
  1336. 88.47867584228516
  1337. ],
  1338. "min": [
  1339. 13.137669563293457,
  1340. 0.36892274022102356,
  1341. 88.47867584228516
  1342. ],
  1343. "type": "VEC3"
  1344. }
  1345. ],
  1346. "animations": [
  1347. {
  1348. "channels": [
  1349. {
  1350. "sampler": 0,
  1351. "target": {
  1352. "node": 5,
  1353. "path": "translation"
  1354. }
  1355. },
  1356. {
  1357. "sampler": 1,
  1358. "target": {
  1359. "node": 14,
  1360. "path": "translation"
  1361. }
  1362. },
  1363. {
  1364. "sampler": 2,
  1365. "target": {
  1366. "node": 14,
  1367. "path": "scale"
  1368. }
  1369. },
  1370. {
  1371. "sampler": 3,
  1372. "target": {
  1373. "node": 14,
  1374. "path": "rotation"
  1375. }
  1376. },
  1377. {
  1378. "sampler": 4,
  1379. "target": {
  1380. "node": 16,
  1381. "path": "translation"
  1382. }
  1383. },
  1384. {
  1385. "sampler": 5,
  1386. "target": {
  1387. "node": 16,
  1388. "path": "scale"
  1389. }
  1390. },
  1391. {
  1392. "sampler": 6,
  1393. "target": {
  1394. "node": 16,
  1395. "path": "rotation"
  1396. }
  1397. },
  1398. {
  1399. "sampler": 7,
  1400. "target": {
  1401. "node": 13,
  1402. "path": "translation"
  1403. }
  1404. },
  1405. {
  1406. "sampler": 8,
  1407. "target": {
  1408. "node": 13,
  1409. "path": "scale"
  1410. }
  1411. },
  1412. {
  1413. "sampler": 9,
  1414. "target": {
  1415. "node": 13,
  1416. "path": "rotation"
  1417. }
  1418. },
  1419. {
  1420. "sampler": 10,
  1421. "target": {
  1422. "node": 19,
  1423. "path": "translation"
  1424. }
  1425. },
  1426. {
  1427. "sampler": 11,
  1428. "target": {
  1429. "node": 19,
  1430. "path": "scale"
  1431. }
  1432. },
  1433. {
  1434. "sampler": 12,
  1435. "target": {
  1436. "node": 19,
  1437. "path": "rotation"
  1438. }
  1439. },
  1440. {
  1441. "sampler": 13,
  1442. "target": {
  1443. "node": 18,
  1444. "path": "translation"
  1445. }
  1446. },
  1447. {
  1448. "sampler": 14,
  1449. "target": {
  1450. "node": 18,
  1451. "path": "scale"
  1452. }
  1453. },
  1454. {
  1455. "sampler": 15,
  1456. "target": {
  1457. "node": 18,
  1458. "path": "rotation"
  1459. }
  1460. },
  1461. {
  1462. "sampler": 16,
  1463. "target": {
  1464. "node": 22,
  1465. "path": "translation"
  1466. }
  1467. },
  1468. {
  1469. "sampler": 17,
  1470. "target": {
  1471. "node": 22,
  1472. "path": "scale"
  1473. }
  1474. },
  1475. {
  1476. "sampler": 18,
  1477. "target": {
  1478. "node": 22,
  1479. "path": "rotation"
  1480. }
  1481. },
  1482. {
  1483. "sampler": 19,
  1484. "target": {
  1485. "node": 21,
  1486. "path": "translation"
  1487. }
  1488. },
  1489. {
  1490. "sampler": 20,
  1491. "target": {
  1492. "node": 21,
  1493. "path": "scale"
  1494. }
  1495. },
  1496. {
  1497. "sampler": 21,
  1498. "target": {
  1499. "node": 21,
  1500. "path": "rotation"
  1501. }
  1502. },
  1503. {
  1504. "sampler": 22,
  1505. "target": {
  1506. "node": 12,
  1507. "path": "translation"
  1508. }
  1509. },
  1510. {
  1511. "sampler": 23,
  1512. "target": {
  1513. "node": 12,
  1514. "path": "scale"
  1515. }
  1516. },
  1517. {
  1518. "sampler": 24,
  1519. "target": {
  1520. "node": 12,
  1521. "path": "rotation"
  1522. }
  1523. },
  1524. {
  1525. "sampler": 25,
  1526. "target": {
  1527. "node": 25,
  1528. "path": "translation"
  1529. }
  1530. },
  1531. {
  1532. "sampler": 26,
  1533. "target": {
  1534. "node": 25,
  1535. "path": "scale"
  1536. }
  1537. },
  1538. {
  1539. "sampler": 27,
  1540. "target": {
  1541. "node": 25,
  1542. "path": "rotation"
  1543. }
  1544. },
  1545. {
  1546. "sampler": 28,
  1547. "target": {
  1548. "node": 24,
  1549. "path": "translation"
  1550. }
  1551. },
  1552. {
  1553. "sampler": 29,
  1554. "target": {
  1555. "node": 24,
  1556. "path": "scale"
  1557. }
  1558. },
  1559. {
  1560. "sampler": 30,
  1561. "target": {
  1562. "node": 24,
  1563. "path": "rotation"
  1564. }
  1565. },
  1566. {
  1567. "sampler": 31,
  1568. "target": {
  1569. "node": 28,
  1570. "path": "translation"
  1571. }
  1572. },
  1573. {
  1574. "sampler": 32,
  1575. "target": {
  1576. "node": 28,
  1577. "path": "scale"
  1578. }
  1579. },
  1580. {
  1581. "sampler": 33,
  1582. "target": {
  1583. "node": 28,
  1584. "path": "rotation"
  1585. }
  1586. },
  1587. {
  1588. "sampler": 34,
  1589. "target": {
  1590. "node": 27,
  1591. "path": "translation"
  1592. }
  1593. },
  1594. {
  1595. "sampler": 35,
  1596. "target": {
  1597. "node": 27,
  1598. "path": "scale"
  1599. }
  1600. },
  1601. {
  1602. "sampler": 36,
  1603. "target": {
  1604. "node": 27,
  1605. "path": "rotation"
  1606. }
  1607. },
  1608. {
  1609. "sampler": 37,
  1610. "target": {
  1611. "node": 11,
  1612. "path": "translation"
  1613. }
  1614. },
  1615. {
  1616. "sampler": 38,
  1617. "target": {
  1618. "node": 6,
  1619. "path": "rotation"
  1620. }
  1621. },
  1622. {
  1623. "sampler": 39,
  1624. "target": {
  1625. "node": 30,
  1626. "path": "translation"
  1627. }
  1628. }
  1629. ],
  1630. "name": "Scene",
  1631. "samplers": [
  1632. {
  1633. "input": 7,
  1634. "interpolation": "LINEAR",
  1635. "output": 8
  1636. },
  1637. {
  1638. "input": 9,
  1639. "interpolation": "LINEAR",
  1640. "output": 10
  1641. },
  1642. {
  1643. "input": 11,
  1644. "interpolation": "LINEAR",
  1645. "output": 12
  1646. },
  1647. {
  1648. "input": 13,
  1649. "interpolation": "LINEAR",
  1650. "output": 14
  1651. },
  1652. {
  1653. "input": 15,
  1654. "interpolation": "LINEAR",
  1655. "output": 16
  1656. },
  1657. {
  1658. "input": 17,
  1659. "interpolation": "LINEAR",
  1660. "output": 18
  1661. },
  1662. {
  1663. "input": 19,
  1664. "interpolation": "LINEAR",
  1665. "output": 20
  1666. },
  1667. {
  1668. "input": 21,
  1669. "interpolation": "LINEAR",
  1670. "output": 22
  1671. },
  1672. {
  1673. "input": 23,
  1674. "interpolation": "LINEAR",
  1675. "output": 24
  1676. },
  1677. {
  1678. "input": 25,
  1679. "interpolation": "LINEAR",
  1680. "output": 26
  1681. },
  1682. {
  1683. "input": 27,
  1684. "interpolation": "LINEAR",
  1685. "output": 28
  1686. },
  1687. {
  1688. "input": 29,
  1689. "interpolation": "LINEAR",
  1690. "output": 30
  1691. },
  1692. {
  1693. "input": 31,
  1694. "interpolation": "LINEAR",
  1695. "output": 32
  1696. },
  1697. {
  1698. "input": 33,
  1699. "interpolation": "LINEAR",
  1700. "output": 34
  1701. },
  1702. {
  1703. "input": 35,
  1704. "interpolation": "LINEAR",
  1705. "output": 36
  1706. },
  1707. {
  1708. "input": 37,
  1709. "interpolation": "LINEAR",
  1710. "output": 38
  1711. },
  1712. {
  1713. "input": 39,
  1714. "interpolation": "LINEAR",
  1715. "output": 40
  1716. },
  1717. {
  1718. "input": 41,
  1719. "interpolation": "LINEAR",
  1720. "output": 42
  1721. },
  1722. {
  1723. "input": 43,
  1724. "interpolation": "LINEAR",
  1725. "output": 44
  1726. },
  1727. {
  1728. "input": 45,
  1729. "interpolation": "LINEAR",
  1730. "output": 46
  1731. },
  1732. {
  1733. "input": 47,
  1734. "interpolation": "LINEAR",
  1735. "output": 48
  1736. },
  1737. {
  1738. "input": 49,
  1739. "interpolation": "LINEAR",
  1740. "output": 50
  1741. },
  1742. {
  1743. "input": 51,
  1744. "interpolation": "LINEAR",
  1745. "output": 52
  1746. },
  1747. {
  1748. "input": 53,
  1749. "interpolation": "LINEAR",
  1750. "output": 54
  1751. },
  1752. {
  1753. "input": 55,
  1754. "interpolation": "LINEAR",
  1755. "output": 56
  1756. },
  1757. {
  1758. "input": 57,
  1759. "interpolation": "LINEAR",
  1760. "output": 58
  1761. },
  1762. {
  1763. "input": 59,
  1764. "interpolation": "LINEAR",
  1765. "output": 60
  1766. },
  1767. {
  1768. "input": 61,
  1769. "interpolation": "LINEAR",
  1770. "output": 62
  1771. },
  1772. {
  1773. "input": 63,
  1774. "interpolation": "LINEAR",
  1775. "output": 64
  1776. },
  1777. {
  1778. "input": 65,
  1779. "interpolation": "LINEAR",
  1780. "output": 66
  1781. },
  1782. {
  1783. "input": 67,
  1784. "interpolation": "LINEAR",
  1785. "output": 68
  1786. },
  1787. {
  1788. "input": 69,
  1789. "interpolation": "LINEAR",
  1790. "output": 70
  1791. },
  1792. {
  1793. "input": 71,
  1794. "interpolation": "LINEAR",
  1795. "output": 72
  1796. },
  1797. {
  1798. "input": 73,
  1799. "interpolation": "LINEAR",
  1800. "output": 74
  1801. },
  1802. {
  1803. "input": 75,
  1804. "interpolation": "LINEAR",
  1805. "output": 76
  1806. },
  1807. {
  1808. "input": 77,
  1809. "interpolation": "LINEAR",
  1810. "output": 78
  1811. },
  1812. {
  1813. "input": 79,
  1814. "interpolation": "LINEAR",
  1815. "output": 80
  1816. },
  1817. {
  1818. "input": 81,
  1819. "interpolation": "LINEAR",
  1820. "output": 82
  1821. },
  1822. {
  1823. "input": 83,
  1824. "interpolation": "LINEAR",
  1825. "output": 84
  1826. },
  1827. {
  1828. "input": 85,
  1829. "interpolation": "LINEAR",
  1830. "output": 86
  1831. }
  1832. ]
  1833. }
  1834. ],
  1835. "asset": {
  1836. "extras": {
  1837. "author": "GreenG (https://sketchfab.com/AngelNebesniy)",
  1838. "license": "CC-BY-4.0 (http://creativecommons.org/licenses/by/4.0/)",
  1839. "source": "https://sketchfab.com/3d-models/robot-from-the-series-love-death-and-robots-3c2c43c8737341e5816c61634782373a",
  1840. "title": "Robot from the series \"Love death and robots\""
  1841. },
  1842. "generator": "Sketchfab-13.21.0",
  1843. "version": "2.0"
  1844. },
  1845. "bufferViews": [
  1846. {
  1847. "buffer": 0,
  1848. "byteLength": 134384,
  1849. "byteStride": 8,
  1850. "name": "shortBufferViews",
  1851. "target": 34962
  1852. },
  1853. {
  1854. "buffer": 0,
  1855. "byteLength": 180348,
  1856. "byteOffset": 134384,
  1857. "name": "floatBufferViews",
  1858. "target": 34963
  1859. },
  1860. {
  1861. "buffer": 0,
  1862. "byteLength": 134384,
  1863. "byteOffset": 314732,
  1864. "byteStride": 8,
  1865. "name": "floatBufferViews",
  1866. "target": 34962
  1867. },
  1868. {
  1869. "buffer": 0,
  1870. "byteLength": 403152,
  1871. "byteOffset": 449116,
  1872. "byteStride": 12,
  1873. "name": "floatBufferViews",
  1874. "target": 34962
  1875. },
  1876. {
  1877. "buffer": 0,
  1878. "byteLength": 268768,
  1879. "byteOffset": 852268,
  1880. "byteStride": 16,
  1881. "name": "floatBufferViews",
  1882. "target": 34962
  1883. },
  1884. {
  1885. "buffer": 0,
  1886. "byteLength": 1280,
  1887. "byteOffset": 1121036,
  1888. "name": "floatBufferViews"
  1889. },
  1890. {
  1891. "buffer": 0,
  1892. "byteLength": 8996,
  1893. "byteOffset": 1122316,
  1894. "name": "floatBufferViews"
  1895. },
  1896. {
  1897. "buffer": 0,
  1898. "byteLength": 17664,
  1899. "byteOffset": 1131312,
  1900. "byteStride": 12,
  1901. "name": "floatBufferViews"
  1902. },
  1903. {
  1904. "buffer": 0,
  1905. "byteLength": 12432,
  1906. "byteOffset": 1148976,
  1907. "byteStride": 16,
  1908. "name": "floatBufferViews"
  1909. }
  1910. ],
  1911. "buffers": [
  1912. {
  1913. "byteLength": 1161408,
  1914. "uri": "scene.bin"
  1915. }
  1916. ],
  1917. "images": [
  1918. {
  1919. "uri": "textures/Material_baseColor.jpeg"
  1920. },
  1921. {
  1922. "uri": "textures/Material_metallicRoughness.png"
  1923. },
  1924. {
  1925. "uri": "textures/Material_emissive.jpeg"
  1926. }
  1927. ],
  1928. "materials": [
  1929. {
  1930. "doubleSided": true,
  1931. "emissiveFactor": [
  1932. 1.0,
  1933. 1.0,
  1934. 1.0
  1935. ],
  1936. "emissiveTexture": {
  1937. "index": 2
  1938. },
  1939. "name": "Material",
  1940. "occlusionTexture": {
  1941. "index": 1
  1942. },
  1943. "pbrMetallicRoughness": {
  1944. "baseColorTexture": {
  1945. "index": 0
  1946. },
  1947. "metallicRoughnessTexture": {
  1948. "index": 1
  1949. }
  1950. }
  1951. }
  1952. ],
  1953. "meshes": [
  1954. {
  1955. "name": "1 L_Material_0",
  1956. "primitives": [
  1957. {
  1958. "attributes": {
  1959. "JOINTS_0": 5,
  1960. "NORMAL": 1,
  1961. "POSITION": 0,
  1962. "TEXCOORD_0": 2,
  1963. "TEXCOORD_1": 2,
  1964. "TEXCOORD_2": 2,
  1965. "TEXCOORD_3": 2,
  1966. "WEIGHTS_0": 6
  1967. },
  1968. "indices": 3,
  1969. "material": 0,
  1970. "mode": 4
  1971. }
  1972. ]
  1973. }
  1974. ],
  1975. "nodes": [
  1976. {
  1977. "children": [
  1978. 1
  1979. ],
  1980. "matrix": [
  1981. 1.0,
  1982. 0.0,
  1983. 0.0,
  1984. 0.0,
  1985. 0.0,
  1986. 2.220446049250313e-16,
  1987. -1.0,
  1988. 0.0,
  1989. 0.0,
  1990. 1.0,
  1991. 2.220446049250313e-16,
  1992. 0.0,
  1993. 0.0,
  1994. 0.0,
  1995. 0.0,
  1996. 1.0
  1997. ],
  1998. "name": "Sketchfab_model"
  1999. },
  2000. {
  2001. "children": [
  2002. 2
  2003. ],
  2004. "matrix": [
  2005. 0.009999999776482582,
  2006. 0.0,
  2007. 0.0,
  2008. 0.0,
  2009. 0.0,
  2010. 0.0,
  2011. 0.009999999776482582,
  2012. 0.0,
  2013. 0.0,
  2014. -0.009999999776482582,
  2015. 0.0,
  2016. 0.0,
  2017. 0.0,
  2018. 0.0,
  2019. 0.0,
  2020. 1.0
  2021. ],
  2022. "name": "13b38b2398744f4295b469a8c9d906d1.fbx"
  2023. },
  2024. {
  2025. "children": [
  2026. 3
  2027. ],
  2028. "name": "Object_2"
  2029. },
  2030. {
  2031. "children": [
  2032. 4,
  2033. 5,
  2034. 6,
  2035. 30
  2036. ],
  2037. "name": "RootNode"
  2038. },
  2039. {
  2040. "name": "1 L"
  2041. },
  2042. {
  2043. "name": "Empty",
  2044. "rotation": [
  2045. 0.0,
  2046. 0.0,
  2047. 0.7071068286895752,
  2048. 0.7071067094802856
  2049. ],
  2050. "translation": [
  2051. 2.4578332901000977,
  2052. 1.9663488615151437e-07,
  2053. -102.21495819091797
  2054. ]
  2055. },
  2056. {
  2057. "children": [
  2058. 7
  2059. ],
  2060. "name": "Kosti",
  2061. "rotation": [
  2062. 0.5,
  2063. -0.4999999701976776,
  2064. -0.5,
  2065. -0.5
  2066. ],
  2067. "scale": [
  2068. 100.0,
  2069. 100.0,
  2070. 100.0
  2071. ],
  2072. "translation": [
  2073. 13.776506423950195,
  2074. 460.06988525390625,
  2075. -5.14791202545166
  2076. ]
  2077. },
  2078. {
  2079. "children": [
  2080. 8,
  2081. 10,
  2082. 9
  2083. ],
  2084. "name": "Object_7"
  2085. },
  2086. {
  2087. "children": [
  2088. 11
  2089. ],
  2090. "name": "_rootJoint"
  2091. },
  2092. {
  2093. "matrix": [
  2094. 0.9999999776482582,
  2095. 0.0,
  2096. 0.0,
  2097. 0.0,
  2098. 0.0,
  2099. 0.9999999776482582,
  2100. 0.0,
  2101. 0.0,
  2102. 0.0,
  2103. 0.0,
  2104. 0.9999999776482582,
  2105. 0.0,
  2106. -5.960464477539063e-08,
  2107. -9.5367431640625e-06,
  2108. -4.470348358154297e-08,
  2109. 1.0
  2110. ],
  2111. "name": "Object_9"
  2112. },
  2113. {
  2114. "mesh": 0,
  2115. "name": "Object_10",
  2116. "skin": 0
  2117. },
  2118. {
  2119. "children": [
  2120. 12,
  2121. 24,
  2122. 27
  2123. ],
  2124. "name": "Taz_00",
  2125. "rotation": [
  2126. 0.7071068286895752,
  2127. 0.0,
  2128. 0.0,
  2129. 0.7071067094802856
  2130. ]
  2131. },
  2132. {
  2133. "children": [
  2134. 13,
  2135. 18,
  2136. 21
  2137. ],
  2138. "name": "spina_01",
  2139. "rotation": [
  2140. -1.1845716001946009e-23,
  2141. 1.1920928955078125e-07,
  2142. 6.934146007478031e-30,
  2143. 1.0
  2144. ],
  2145. "translation": [
  2146. -6.938893903907228e-18,
  2147. 1.1886043548583984,
  2148. 0.0
  2149. ]
  2150. },
  2151. {
  2152. "children": [
  2153. 14,
  2154. 16
  2155. ],
  2156. "name": "Head_02",
  2157. "rotation": [
  2158. -1.2709323844519427e-23,
  2159. 2.6469779601696886e-23,
  2160. -1.5777218104420236e-30,
  2161. 1.0
  2162. ],
  2163. "translation": [
  2164. 0.0,
  2165. 2.281099796295166,
  2166. 0.0
  2167. ]
  2168. },
  2169. {
  2170. "children": [
  2171. 15
  2172. ],
  2173. "name": "uho.L_03",
  2174. "rotation": [
  2175. -0.2181786298751831,
  2176. -0.001181027851998806,
  2177. 0.005338727962225676,
  2178. 0.9758935570716858
  2179. ],
  2180. "scale": [
  2181. 1.0,
  2182. 0.9999998807907104,
  2183. 1.0
  2184. ],
  2185. "translation": [
  2186. 3.238227605819702,
  2187. 3.735910415649414,
  2188. -0.07579512149095535
  2189. ]
  2190. },
  2191. {
  2192. "name": "uho.L_end_013",
  2193. "rotation": [
  2194. -5.152332011558458e-17,
  2195. -0.0,
  2196. 0.0,
  2197. 1.0
  2198. ],
  2199. "translation": [
  2200. 0.0,
  2201. 3.1587722301483154,
  2202. 0.0
  2203. ]
  2204. },
  2205. {
  2206. "children": [
  2207. 17
  2208. ],
  2209. "name": "uho.R_04",
  2210. "rotation": [
  2211. -0.21817860007286072,
  2212. 0.0011808006092905998,
  2213. -0.0053387535735964775,
  2214. 0.9758935570716858
  2215. ],
  2216. "translation": [
  2217. -3.238227605819702,
  2218. 3.735910415649414,
  2219. -0.07579667121171951
  2220. ]
  2221. },
  2222. {
  2223. "name": "uho.R_end_014",
  2224. "rotation": [
  2225. -4.1555436392295975e-17,
  2226. -4.336808689942018e-19,
  2227. -1.8021797766044195e-35,
  2228. 1.0
  2229. ],
  2230. "translation": [
  2231. 0.0,
  2232. 3.1587722301483154,
  2233. 0.0
  2234. ]
  2235. },
  2236. {
  2237. "children": [
  2238. 19
  2239. ],
  2240. "name": "ruka1.L_05",
  2241. "rotation": [
  2242. -1.9321105071412603e-07,
  2243. -9.711625947872449e-10,
  2244. 0.9797796607017517,
  2245. -0.2000795304775238
  2246. ],
  2247. "scale": [
  2248. 0.9999986886978149,
  2249. 0.9999999403953552,
  2250. 1.0
  2251. ],
  2252. "translation": [
  2253. 1.3033084869384766,
  2254. 1.9064292907714844,
  2255. 3.107329575868789e-07
  2256. ]
  2257. },
  2258. {
  2259. "children": [
  2260. 20
  2261. ],
  2262. "name": "ruka2.L_06",
  2263. "rotation": [
  2264. -5.2042761211623656e-08,
  2265. -1.754538025977581e-08,
  2266. -0.00805887021124363,
  2267. 0.9999675154685974
  2268. ],
  2269. "translation": [
  2270. -1.341104365337742e-07,
  2271. 2.7588725090026855,
  2272. -1.7791323969618134e-14
  2273. ]
  2274. },
  2275. {
  2276. "name": "ruka2.L_end_015",
  2277. "rotation": [
  2278. -5.790264287871194e-24,
  2279. -1.6071211827648462e-40,
  2280. 2.7755575615628914e-17,
  2281. 1.0
  2282. ],
  2283. "translation": [
  2284. -8.881784197001252e-16,
  2285. 1.555633783340454,
  2286. 0.0
  2287. ]
  2288. },
  2289. {
  2290. "children": [
  2291. 22
  2292. ],
  2293. "name": "ruka1.R_07",
  2294. "rotation": [
  2295. -4.038688672380886e-08,
  2296. -4.867379388429072e-08,
  2297. 0.9797796607017517,
  2298. 0.2000795304775238
  2299. ],
  2300. "scale": [
  2301. 0.9999986886978149,
  2302. 0.9999999403953552,
  2303. 1.0
  2304. ],
  2305. "translation": [
  2306. -1.3033084869384766,
  2307. 1.9064292907714844,
  2308. -3.107329575868789e-07
  2309. ]
  2310. },
  2311. {
  2312. "children": [
  2313. 23
  2314. ],
  2315. "name": "ruka2.R_08",
  2316. "rotation": [
  2317. -5.2042761211623656e-08,
  2318. 1.7545390917916848e-08,
  2319. 0.00805887021124363,
  2320. 0.9999675154685974
  2321. ],
  2322. "translation": [
  2323. 1.341104365337742e-07,
  2324. 2.7588725090026855,
  2325. -2.4868995751603507e-14
  2326. ]
  2327. },
  2328. {
  2329. "name": "ruka2.R_end_016",
  2330. "rotation": [
  2331. -9.926167350636332e-24,
  2332. 8.265194654219209e-40,
  2333. -8.326672684688674e-17,
  2334. 1.0
  2335. ],
  2336. "translation": [
  2337. 0.0,
  2338. 1.555633783340454,
  2339. 2.7755575615628914e-17
  2340. ]
  2341. },
  2342. {
  2343. "children": [
  2344. 25
  2345. ],
  2346. "name": "Noga1.L_09",
  2347. "rotation": [
  2348. 0.7069091200828552,
  2349. 0.011749467812478542,
  2350. 0.7069016695022583,
  2351. -0.020771833136677742
  2352. ],
  2353. "scale": [
  2354. 1.003679633140564,
  2355. 1.0000028610229492,
  2356. 1.0000003576278687
  2357. ],
  2358. "translation": [
  2359. 0.8008494973182678,
  2360. 0.11276865005493164,
  2361. -0.0505305677652359
  2362. ]
  2363. },
  2364. {
  2365. "children": [
  2366. 26
  2367. ],
  2368. "name": "Noga2.L_010",
  2369. "rotation": [
  2370. -0.009696613065898418,
  2371. 3.951330654672347e-06,
  2372. 0.0004453247820492834,
  2373. 0.9999529123306274
  2374. ],
  2375. "scale": [
  2376. 0.9999998211860657,
  2377. 0.9999997615814209,
  2378. 0.9999998211860657
  2379. ],
  2380. "translation": [
  2381. 1.4173565432429314e-08,
  2382. 2.273991346359253,
  2383. 9.642099030315876e-08
  2384. ]
  2385. },
  2386. {
  2387. "name": "Noga2.L_end_017",
  2388. "rotation": [
  2389. 3.469446951953614e-18,
  2390. -5.8657168106032147e-36,
  2391. -1.6906777627195835e-18,
  2392. 1.0
  2393. ],
  2394. "translation": [
  2395. 1.0408340855860843e-17,
  2396. 2.3786160945892334,
  2397. 2.220446049250313e-16
  2398. ]
  2399. },
  2400. {
  2401. "children": [
  2402. 28
  2403. ],
  2404. "name": "Noga1.R_011",
  2405. "rotation": [
  2406. -0.7069644927978516,
  2407. 0.016866782680153847,
  2408. 0.7069705128669739,
  2409. 0.01046205684542656
  2410. ],
  2411. "scale": [
  2412. 1.0036818981170654,
  2413. 1.0000001192092896,
  2414. 1.0000003576278687
  2415. ],
  2416. "translation": [
  2417. -0.8008494973182678,
  2418. 0.11276865005493164,
  2419. -0.0505305677652359
  2420. ]
  2421. },
  2422. {
  2423. "children": [
  2424. 29
  2425. ],
  2426. "name": "Noga2.R_012",
  2427. "rotation": [
  2428. -0.009696617722511292,
  2429. 3.4534125461505027e-06,
  2430. 0.00031549172126688063,
  2431. 0.999953031539917
  2432. ],
  2433. "scale": [
  2434. 0.9999999403953552,
  2435. 1.0000001192092896,
  2436. 1.0
  2437. ],
  2438. "translation": [
  2439. -8.163624443113804e-09,
  2440. 2.273991823196411,
  2441. -1.347152647213079e-07
  2442. ]
  2443. },
  2444. {
  2445. "name": "Noga2.R_end_018",
  2446. "rotation": [
  2447. 1.734723475976807e-18,
  2448. -1.3552527156068805e-20,
  2449. -1.4166626042828173e-19,
  2450. 1.0
  2451. ],
  2452. "translation": [
  2453. 2.7755575615628914e-17,
  2454. 2.3786160945892334,
  2455. 0.0
  2456. ]
  2457. },
  2458. {
  2459. "name": "Empty.001",
  2460. "rotation": [
  2461. 0.0,
  2462. 0.0,
  2463. -0.7071068286895752,
  2464. 0.7071067094802856
  2465. ],
  2466. "translation": [
  2467. 13.137669563293457,
  2468. 0.3689606785774231,
  2469. 88.47867584228516
  2470. ]
  2471. }
  2472. ],
  2473. "samplers": [
  2474. {
  2475. "magFilter": 9729,
  2476. "minFilter": 9987,
  2477. "wrapS": 10497,
  2478. "wrapT": 10497
  2479. }
  2480. ],
  2481. "scene": 0,
  2482. "scenes": [
  2483. {
  2484. "name": "Sketchfab_Scene",
  2485. "nodes": [
  2486. 0
  2487. ]
  2488. }
  2489. ],
  2490. "skins": [
  2491. {
  2492. "inverseBindMatrices": 4,
  2493. "joints": [
  2494. 8,
  2495. 11,
  2496. 12,
  2497. 13,
  2498. 14,
  2499. 15,
  2500. 16,
  2501. 17,
  2502. 18,
  2503. 19,
  2504. 20,
  2505. 21,
  2506. 22,
  2507. 23,
  2508. 24,
  2509. 25,
  2510. 26,
  2511. 27,
  2512. 28,
  2513. 29
  2514. ],
  2515. "skeleton": 8
  2516. }
  2517. ],
  2518. "textures": [
  2519. {
  2520. "sampler": 0,
  2521. "source": 0
  2522. },
  2523. {
  2524. "sampler": 0,
  2525. "source": 1
  2526. },
  2527. {
  2528. "sampler": 0,
  2529. "source": 2
  2530. }
  2531. ]
  2532. }