CesiumMan.gltf 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  1. {
  2. "asset": {
  3. "generator": "COLLADA2GLTF",
  4. "version": "2.0"
  5. },
  6. "scene": 0,
  7. "scenes": [
  8. {
  9. "nodes": [
  10. 0
  11. ]
  12. }
  13. ],
  14. "nodes": [
  15. {
  16. "children": [
  17. 21,
  18. 1
  19. ],
  20. "matrix": [
  21. 1.0,
  22. 0.0,
  23. 0.0,
  24. 0.0,
  25. 0.0,
  26. 0.0,
  27. -1.0,
  28. 0.0,
  29. 0.0,
  30. 1.0,
  31. 0.0,
  32. 0.0,
  33. 0.0,
  34. 0.0,
  35. 0.0,
  36. 1.0
  37. ]
  38. },
  39. {
  40. "mesh": 0,
  41. "skin": 0
  42. },
  43. {
  44. "children": [
  45. 11,
  46. 7,
  47. 3
  48. ],
  49. "translation": [
  50. -3.352759847530251e-8,
  51. 0.00499989278614521,
  52. 0.6789997816085815
  53. ],
  54. "rotation": [
  55. -0.02679471485316753,
  56. -0.026732556521892549,
  57. -0.7065614461898804,
  58. -0.706638753414154
  59. ],
  60. "scale": [
  61. 0.9999999403953552,
  62. 0.9999998211860656,
  63. 0.9999999403953552
  64. ]
  65. },
  66. {
  67. "children": [
  68. 4
  69. ],
  70. "translation": [
  71. -0.06804201006889343,
  72. -0.02857022918760777,
  73. -0.06294959783554077
  74. ],
  75. "rotation": [
  76. -0.06642699986696243,
  77. -0.6115013957023621,
  78. 0.7850273251533508,
  79. 0.073387511074543
  80. ],
  81. "scale": [
  82. 0.9999999403953552,
  83. 1.000000238418579,
  84. 1.0
  85. ]
  86. },
  87. {
  88. "children": [
  89. 5
  90. ],
  91. "translation": [
  92. 0.0,
  93. 0.2661114931106568,
  94. 0.0
  95. ],
  96. "rotation": [
  97. 0.2162912338972092,
  98. 0.12430649250745774,
  99. 0.0015752052422612906,
  100. -0.9683818817138672
  101. ],
  102. "scale": [
  103. 1.0,
  104. 0.9999998807907105,
  105. 1.0
  106. ]
  107. },
  108. {
  109. "children": [
  110. 6
  111. ],
  112. "translation": [
  113. 0.0,
  114. 0.2758249044418335,
  115. -1.1175900205273593e-8
  116. ],
  117. "rotation": [
  118. 0.8472740650177002,
  119. -0.029564039781689645,
  120. -0.020868001505732538,
  121. -0.5299217700958252
  122. ],
  123. "scale": [
  124. 0.9999999403953552,
  125. 0.9999998807907105,
  126. 1.0
  127. ]
  128. },
  129. {
  130. "translation": [
  131. -0.001458480954170227,
  132. -0.06619883328676224,
  133. 0.027856720611453058
  134. ],
  135. "rotation": [
  136. -0.03726436197757721,
  137. -0.31931325793266299,
  138. 0.9460535645484924,
  139. -0.040414959192276
  140. ],
  141. "scale": [
  142. 1.0,
  143. 1.0000003576278689,
  144. 1.0000005960464478
  145. ]
  146. },
  147. {
  148. "children": [
  149. 8
  150. ],
  151. "translation": [
  152. 0.06803668290376663,
  153. -0.028518669307231904,
  154. -0.06296277046203613
  155. ],
  156. "rotation": [
  157. 0.2475697100162506,
  158. -0.5775680541992188,
  159. 0.7479144334793091,
  160. -0.2138892114162445
  161. ],
  162. "scale": [
  163. 1.0,
  164. 1.000000238418579,
  165. 1.0000001192092896
  166. ]
  167. },
  168. {
  169. "children": [
  170. 9
  171. ],
  172. "translation": [
  173. 3.725289854372704e-9,
  174. 0.2661128044128418,
  175. 1.4901200273698124e-8
  176. ],
  177. "rotation": [
  178. 0.20902779698371888,
  179. -0.32988959550857546,
  180. -0.05559924244880676,
  181. -0.9189064502716065
  182. ],
  183. "scale": [
  184. 1.0,
  185. 1.0000001192092896,
  186. 1.0000001192092896
  187. ]
  188. },
  189. {
  190. "children": [
  191. 10
  192. ],
  193. "translation": [
  194. -7.450579708745408e-9,
  195. 0.2758241891860962,
  196. 5.5879398885849708e-9
  197. ],
  198. "rotation": [
  199. 0.8477396965026856,
  200. -0.004254077095538378,
  201. -0.009491981938481333,
  202. -0.5303107500076294
  203. ],
  204. "scale": [
  205. 0.9999998807907105,
  206. 1.0000001192092896,
  207. 1.0000001192092896
  208. ]
  209. },
  210. {
  211. "translation": [
  212. -0.002346522873267532,
  213. -0.06617332994937897,
  214. 0.027856789529323576
  215. ],
  216. "rotation": [
  217. 0.026573536917567254,
  218. -0.3201442956924439,
  219. 0.9445450901985169,
  220. 0.06808964908123017
  221. ],
  222. "scale": [
  223. 1.0,
  224. 1.000000238418579,
  225. 1.000000238418579
  226. ]
  227. },
  228. {
  229. "children": [
  230. 12
  231. ],
  232. "translation": [
  233. -1.024449947095718e-8,
  234. 1.4901200273698124e-8,
  235. 0.14541690051555634
  236. ],
  237. "rotation": [
  238. -0.6572523713111877,
  239. -0.00017969288455788046,
  240. -0.00010428009409224616,
  241. -0.7536706328392029
  242. ],
  243. "scale": [
  244. 1.0,
  245. 1.0,
  246. 1.0000001192092896
  247. ]
  248. },
  249. {
  250. "children": [
  251. 19,
  252. 16,
  253. 13
  254. ],
  255. "translation": [
  256. 4.6566100975198307e-10,
  257. 0.250516802072525,
  258. 3.725289854372704e-9
  259. ],
  260. "rotation": [
  261. 0.6226037740707398,
  262. 0.00001678345142863691,
  263. -0.0000031824047255213374,
  264. -0.7825372219085693
  265. ],
  266. "scale": [
  267. 1.0,
  268. 1.0,
  269. 0.9999999403953552
  270. ]
  271. },
  272. {
  273. "children": [
  274. 14
  275. ],
  276. "translation": [
  277. -0.09098775684833528,
  278. 0.00006259980000322685,
  279. -0.00006532669794978574
  280. ],
  281. "rotation": [
  282. 0.2964428961277008,
  283. 0.031510334461927417,
  284. -0.6522551774978638,
  285. -0.6969160437583923
  286. ],
  287. "scale": [
  288. 1.0000001192092896,
  289. 0.9999999403953552,
  290. 1.0000001192092896
  291. ]
  292. },
  293. {
  294. "children": [
  295. 15
  296. ],
  297. "translation": [
  298. 0.0,
  299. 0.24200820922851566,
  300. -5.96045985901128e-8
  301. ],
  302. "rotation": [
  303. -0.1887933611869812,
  304. 0.9157071709632874,
  305. -0.16780903935432438,
  306. -0.3125341236591339
  307. ],
  308. "scale": [
  309. 0.9999999403953552,
  310. 0.9999999403953552,
  311. 0.9999998807907105
  312. ]
  313. },
  314. {
  315. "translation": [
  316. 0.0,
  317. 0.18779200315475465,
  318. 0.0
  319. ],
  320. "rotation": [
  321. -0.058613914996385577,
  322. 0.2637767195701599,
  323. 0.05226854607462883,
  324. -0.9613814353942872
  325. ],
  326. "scale": [
  327. 1.0,
  328. 1.0000001192092896,
  329. 0.9999999403953552
  330. ]
  331. },
  332. {
  333. "children": [
  334. 17
  335. ],
  336. "translation": [
  337. 0.0910135880112648,
  338. 0.000014185899999574758,
  339. -0.000058054902183357629
  340. ],
  341. "rotation": [
  342. 0.6797328591346741,
  343. 0.689685583114624,
  344. -0.2269716113805771,
  345. -0.10383165627717972
  346. ],
  347. "scale": [
  348. 1.0000001192092896,
  349. 1.0000001192092896,
  350. 1.0
  351. ]
  352. },
  353. {
  354. "children": [
  355. 18
  356. ],
  357. "translation": [
  358. 1.1641500263781524e-10,
  359. 0.2420089989900589,
  360. 0.0
  361. ],
  362. "rotation": [
  363. -0.013960935175418854,
  364. -0.12937255203723908,
  365. -0.2522056996822357,
  366. -0.9588848352432252
  367. ],
  368. "scale": [
  369. 1.0,
  370. 0.9999999403953552,
  371. 1.0
  372. ]
  373. },
  374. {
  375. "translation": [
  376. 1.4901200273698124e-8,
  377. 0.18779149651527408,
  378. 5.96045985901128e-8
  379. ],
  380. "rotation": [
  381. 0.006119169760495424,
  382. -0.042325541377067569,
  383. -0.07877591997385025,
  384. -0.9959746599197388
  385. ],
  386. "scale": [
  387. 0.9999998807907105,
  388. 1.000000238418579,
  389. 0.9999999403953552
  390. ]
  391. },
  392. {
  393. "children": [
  394. 20
  395. ],
  396. "translation": [
  397. -8.847560017954948e-9,
  398. 5.96045985901128e-8,
  399. 0.06483662128448487
  400. ],
  401. "rotation": [
  402. -0.6606296300888062,
  403. 0.00008344435627805069,
  404. 0.0000710925814928487,
  405. -0.750711977481842
  406. ]
  407. },
  408. {
  409. "translation": [
  410. 0.0,
  411. 0.0520397387444973,
  412. 0.0
  413. ],
  414. "rotation": [
  415. 0.000002552607384131989,
  416. 0.9996904730796814,
  417. -0.02487966977059841,
  418. -4.329927776325349e-7
  419. ],
  420. "scale": [
  421. 1.0,
  422. 1.0000001192092896,
  423. 1.0
  424. ]
  425. },
  426. {
  427. "children": [
  428. 2
  429. ]
  430. }
  431. ],
  432. "meshes": [
  433. {
  434. "primitives": [
  435. {
  436. "attributes": {
  437. "JOINTS_0": 1,
  438. "NORMAL": 2,
  439. "POSITION": 3,
  440. "TEXCOORD_0": 4,
  441. "WEIGHTS_0": 5
  442. },
  443. "indices": 0,
  444. "mode": 4,
  445. "material": 0
  446. }
  447. ],
  448. "name": "Cesium_Man"
  449. }
  450. ],
  451. "animations": [
  452. {
  453. "channels": [
  454. {
  455. "sampler": 0,
  456. "target": {
  457. "node": 2,
  458. "path": "translation"
  459. }
  460. },
  461. {
  462. "sampler": 1,
  463. "target": {
  464. "node": 2,
  465. "path": "rotation"
  466. }
  467. },
  468. {
  469. "sampler": 2,
  470. "target": {
  471. "node": 2,
  472. "path": "scale"
  473. }
  474. }
  475. ],
  476. "samplers": [
  477. {
  478. "input": 6,
  479. "interpolation": "LINEAR",
  480. "output": 7
  481. },
  482. {
  483. "input": 6,
  484. "interpolation": "LINEAR",
  485. "output": 8
  486. },
  487. {
  488. "input": 6,
  489. "interpolation": "LINEAR",
  490. "output": 9
  491. }
  492. ]
  493. },
  494. {
  495. "channels": [
  496. {
  497. "sampler": 0,
  498. "target": {
  499. "node": 11,
  500. "path": "translation"
  501. }
  502. },
  503. {
  504. "sampler": 1,
  505. "target": {
  506. "node": 11,
  507. "path": "rotation"
  508. }
  509. },
  510. {
  511. "sampler": 2,
  512. "target": {
  513. "node": 11,
  514. "path": "scale"
  515. }
  516. }
  517. ],
  518. "samplers": [
  519. {
  520. "input": 10,
  521. "interpolation": "LINEAR",
  522. "output": 11
  523. },
  524. {
  525. "input": 10,
  526. "interpolation": "LINEAR",
  527. "output": 12
  528. },
  529. {
  530. "input": 10,
  531. "interpolation": "LINEAR",
  532. "output": 13
  533. }
  534. ]
  535. },
  536. {
  537. "channels": [
  538. {
  539. "sampler": 0,
  540. "target": {
  541. "node": 12,
  542. "path": "translation"
  543. }
  544. },
  545. {
  546. "sampler": 1,
  547. "target": {
  548. "node": 12,
  549. "path": "rotation"
  550. }
  551. },
  552. {
  553. "sampler": 2,
  554. "target": {
  555. "node": 12,
  556. "path": "scale"
  557. }
  558. }
  559. ],
  560. "samplers": [
  561. {
  562. "input": 14,
  563. "interpolation": "LINEAR",
  564. "output": 15
  565. },
  566. {
  567. "input": 14,
  568. "interpolation": "LINEAR",
  569. "output": 16
  570. },
  571. {
  572. "input": 14,
  573. "interpolation": "LINEAR",
  574. "output": 17
  575. }
  576. ]
  577. },
  578. {
  579. "channels": [
  580. {
  581. "sampler": 0,
  582. "target": {
  583. "node": 19,
  584. "path": "translation"
  585. }
  586. },
  587. {
  588. "sampler": 1,
  589. "target": {
  590. "node": 19,
  591. "path": "rotation"
  592. }
  593. },
  594. {
  595. "sampler": 2,
  596. "target": {
  597. "node": 19,
  598. "path": "scale"
  599. }
  600. }
  601. ],
  602. "samplers": [
  603. {
  604. "input": 18,
  605. "interpolation": "LINEAR",
  606. "output": 19
  607. },
  608. {
  609. "input": 18,
  610. "interpolation": "LINEAR",
  611. "output": 20
  612. },
  613. {
  614. "input": 18,
  615. "interpolation": "LINEAR",
  616. "output": 21
  617. }
  618. ]
  619. },
  620. {
  621. "channels": [
  622. {
  623. "sampler": 0,
  624. "target": {
  625. "node": 20,
  626. "path": "translation"
  627. }
  628. },
  629. {
  630. "sampler": 1,
  631. "target": {
  632. "node": 20,
  633. "path": "rotation"
  634. }
  635. },
  636. {
  637. "sampler": 2,
  638. "target": {
  639. "node": 20,
  640. "path": "scale"
  641. }
  642. }
  643. ],
  644. "samplers": [
  645. {
  646. "input": 22,
  647. "interpolation": "LINEAR",
  648. "output": 23
  649. },
  650. {
  651. "input": 22,
  652. "interpolation": "LINEAR",
  653. "output": 24
  654. },
  655. {
  656. "input": 22,
  657. "interpolation": "LINEAR",
  658. "output": 25
  659. }
  660. ]
  661. },
  662. {
  663. "channels": [
  664. {
  665. "sampler": 0,
  666. "target": {
  667. "node": 16,
  668. "path": "translation"
  669. }
  670. },
  671. {
  672. "sampler": 1,
  673. "target": {
  674. "node": 16,
  675. "path": "rotation"
  676. }
  677. },
  678. {
  679. "sampler": 2,
  680. "target": {
  681. "node": 16,
  682. "path": "scale"
  683. }
  684. }
  685. ],
  686. "samplers": [
  687. {
  688. "input": 26,
  689. "interpolation": "LINEAR",
  690. "output": 27
  691. },
  692. {
  693. "input": 26,
  694. "interpolation": "LINEAR",
  695. "output": 28
  696. },
  697. {
  698. "input": 26,
  699. "interpolation": "LINEAR",
  700. "output": 29
  701. }
  702. ]
  703. },
  704. {
  705. "channels": [
  706. {
  707. "sampler": 0,
  708. "target": {
  709. "node": 17,
  710. "path": "translation"
  711. }
  712. },
  713. {
  714. "sampler": 1,
  715. "target": {
  716. "node": 17,
  717. "path": "rotation"
  718. }
  719. },
  720. {
  721. "sampler": 2,
  722. "target": {
  723. "node": 17,
  724. "path": "scale"
  725. }
  726. }
  727. ],
  728. "samplers": [
  729. {
  730. "input": 30,
  731. "interpolation": "LINEAR",
  732. "output": 31
  733. },
  734. {
  735. "input": 30,
  736. "interpolation": "LINEAR",
  737. "output": 32
  738. },
  739. {
  740. "input": 30,
  741. "interpolation": "LINEAR",
  742. "output": 33
  743. }
  744. ]
  745. },
  746. {
  747. "channels": [
  748. {
  749. "sampler": 0,
  750. "target": {
  751. "node": 18,
  752. "path": "translation"
  753. }
  754. },
  755. {
  756. "sampler": 1,
  757. "target": {
  758. "node": 18,
  759. "path": "rotation"
  760. }
  761. },
  762. {
  763. "sampler": 2,
  764. "target": {
  765. "node": 18,
  766. "path": "scale"
  767. }
  768. }
  769. ],
  770. "samplers": [
  771. {
  772. "input": 34,
  773. "interpolation": "LINEAR",
  774. "output": 35
  775. },
  776. {
  777. "input": 34,
  778. "interpolation": "LINEAR",
  779. "output": 36
  780. },
  781. {
  782. "input": 34,
  783. "interpolation": "LINEAR",
  784. "output": 37
  785. }
  786. ]
  787. },
  788. {
  789. "channels": [
  790. {
  791. "sampler": 0,
  792. "target": {
  793. "node": 13,
  794. "path": "translation"
  795. }
  796. },
  797. {
  798. "sampler": 1,
  799. "target": {
  800. "node": 13,
  801. "path": "rotation"
  802. }
  803. },
  804. {
  805. "sampler": 2,
  806. "target": {
  807. "node": 13,
  808. "path": "scale"
  809. }
  810. }
  811. ],
  812. "samplers": [
  813. {
  814. "input": 38,
  815. "interpolation": "LINEAR",
  816. "output": 39
  817. },
  818. {
  819. "input": 38,
  820. "interpolation": "LINEAR",
  821. "output": 40
  822. },
  823. {
  824. "input": 38,
  825. "interpolation": "LINEAR",
  826. "output": 41
  827. }
  828. ]
  829. },
  830. {
  831. "channels": [
  832. {
  833. "sampler": 0,
  834. "target": {
  835. "node": 14,
  836. "path": "translation"
  837. }
  838. },
  839. {
  840. "sampler": 1,
  841. "target": {
  842. "node": 14,
  843. "path": "rotation"
  844. }
  845. },
  846. {
  847. "sampler": 2,
  848. "target": {
  849. "node": 14,
  850. "path": "scale"
  851. }
  852. }
  853. ],
  854. "samplers": [
  855. {
  856. "input": 42,
  857. "interpolation": "LINEAR",
  858. "output": 43
  859. },
  860. {
  861. "input": 42,
  862. "interpolation": "LINEAR",
  863. "output": 44
  864. },
  865. {
  866. "input": 42,
  867. "interpolation": "LINEAR",
  868. "output": 45
  869. }
  870. ]
  871. },
  872. {
  873. "channels": [
  874. {
  875. "sampler": 0,
  876. "target": {
  877. "node": 15,
  878. "path": "translation"
  879. }
  880. },
  881. {
  882. "sampler": 1,
  883. "target": {
  884. "node": 15,
  885. "path": "rotation"
  886. }
  887. },
  888. {
  889. "sampler": 2,
  890. "target": {
  891. "node": 15,
  892. "path": "scale"
  893. }
  894. }
  895. ],
  896. "samplers": [
  897. {
  898. "input": 46,
  899. "interpolation": "LINEAR",
  900. "output": 47
  901. },
  902. {
  903. "input": 46,
  904. "interpolation": "LINEAR",
  905. "output": 48
  906. },
  907. {
  908. "input": 46,
  909. "interpolation": "LINEAR",
  910. "output": 49
  911. }
  912. ]
  913. },
  914. {
  915. "channels": [
  916. {
  917. "sampler": 0,
  918. "target": {
  919. "node": 7,
  920. "path": "translation"
  921. }
  922. },
  923. {
  924. "sampler": 1,
  925. "target": {
  926. "node": 7,
  927. "path": "rotation"
  928. }
  929. },
  930. {
  931. "sampler": 2,
  932. "target": {
  933. "node": 7,
  934. "path": "scale"
  935. }
  936. }
  937. ],
  938. "samplers": [
  939. {
  940. "input": 50,
  941. "interpolation": "LINEAR",
  942. "output": 51
  943. },
  944. {
  945. "input": 50,
  946. "interpolation": "LINEAR",
  947. "output": 52
  948. },
  949. {
  950. "input": 50,
  951. "interpolation": "LINEAR",
  952. "output": 53
  953. }
  954. ]
  955. },
  956. {
  957. "channels": [
  958. {
  959. "sampler": 0,
  960. "target": {
  961. "node": 8,
  962. "path": "translation"
  963. }
  964. },
  965. {
  966. "sampler": 1,
  967. "target": {
  968. "node": 8,
  969. "path": "rotation"
  970. }
  971. },
  972. {
  973. "sampler": 2,
  974. "target": {
  975. "node": 8,
  976. "path": "scale"
  977. }
  978. }
  979. ],
  980. "samplers": [
  981. {
  982. "input": 54,
  983. "interpolation": "LINEAR",
  984. "output": 55
  985. },
  986. {
  987. "input": 54,
  988. "interpolation": "LINEAR",
  989. "output": 56
  990. },
  991. {
  992. "input": 54,
  993. "interpolation": "LINEAR",
  994. "output": 57
  995. }
  996. ]
  997. },
  998. {
  999. "channels": [
  1000. {
  1001. "sampler": 0,
  1002. "target": {
  1003. "node": 9,
  1004. "path": "translation"
  1005. }
  1006. },
  1007. {
  1008. "sampler": 1,
  1009. "target": {
  1010. "node": 9,
  1011. "path": "rotation"
  1012. }
  1013. },
  1014. {
  1015. "sampler": 2,
  1016. "target": {
  1017. "node": 9,
  1018. "path": "scale"
  1019. }
  1020. }
  1021. ],
  1022. "samplers": [
  1023. {
  1024. "input": 58,
  1025. "interpolation": "LINEAR",
  1026. "output": 59
  1027. },
  1028. {
  1029. "input": 58,
  1030. "interpolation": "LINEAR",
  1031. "output": 60
  1032. },
  1033. {
  1034. "input": 58,
  1035. "interpolation": "LINEAR",
  1036. "output": 61
  1037. }
  1038. ]
  1039. },
  1040. {
  1041. "channels": [
  1042. {
  1043. "sampler": 0,
  1044. "target": {
  1045. "node": 10,
  1046. "path": "translation"
  1047. }
  1048. },
  1049. {
  1050. "sampler": 1,
  1051. "target": {
  1052. "node": 10,
  1053. "path": "rotation"
  1054. }
  1055. },
  1056. {
  1057. "sampler": 2,
  1058. "target": {
  1059. "node": 10,
  1060. "path": "scale"
  1061. }
  1062. }
  1063. ],
  1064. "samplers": [
  1065. {
  1066. "input": 62,
  1067. "interpolation": "LINEAR",
  1068. "output": 63
  1069. },
  1070. {
  1071. "input": 62,
  1072. "interpolation": "LINEAR",
  1073. "output": 64
  1074. },
  1075. {
  1076. "input": 62,
  1077. "interpolation": "LINEAR",
  1078. "output": 65
  1079. }
  1080. ]
  1081. },
  1082. {
  1083. "channels": [
  1084. {
  1085. "sampler": 0,
  1086. "target": {
  1087. "node": 3,
  1088. "path": "translation"
  1089. }
  1090. },
  1091. {
  1092. "sampler": 1,
  1093. "target": {
  1094. "node": 3,
  1095. "path": "rotation"
  1096. }
  1097. },
  1098. {
  1099. "sampler": 2,
  1100. "target": {
  1101. "node": 3,
  1102. "path": "scale"
  1103. }
  1104. }
  1105. ],
  1106. "samplers": [
  1107. {
  1108. "input": 66,
  1109. "interpolation": "LINEAR",
  1110. "output": 67
  1111. },
  1112. {
  1113. "input": 66,
  1114. "interpolation": "LINEAR",
  1115. "output": 68
  1116. },
  1117. {
  1118. "input": 66,
  1119. "interpolation": "LINEAR",
  1120. "output": 69
  1121. }
  1122. ]
  1123. },
  1124. {
  1125. "channels": [
  1126. {
  1127. "sampler": 0,
  1128. "target": {
  1129. "node": 4,
  1130. "path": "translation"
  1131. }
  1132. },
  1133. {
  1134. "sampler": 1,
  1135. "target": {
  1136. "node": 4,
  1137. "path": "rotation"
  1138. }
  1139. },
  1140. {
  1141. "sampler": 2,
  1142. "target": {
  1143. "node": 4,
  1144. "path": "scale"
  1145. }
  1146. }
  1147. ],
  1148. "samplers": [
  1149. {
  1150. "input": 70,
  1151. "interpolation": "LINEAR",
  1152. "output": 71
  1153. },
  1154. {
  1155. "input": 70,
  1156. "interpolation": "LINEAR",
  1157. "output": 72
  1158. },
  1159. {
  1160. "input": 70,
  1161. "interpolation": "LINEAR",
  1162. "output": 73
  1163. }
  1164. ]
  1165. },
  1166. {
  1167. "channels": [
  1168. {
  1169. "sampler": 0,
  1170. "target": {
  1171. "node": 5,
  1172. "path": "translation"
  1173. }
  1174. },
  1175. {
  1176. "sampler": 1,
  1177. "target": {
  1178. "node": 5,
  1179. "path": "rotation"
  1180. }
  1181. },
  1182. {
  1183. "sampler": 2,
  1184. "target": {
  1185. "node": 5,
  1186. "path": "scale"
  1187. }
  1188. }
  1189. ],
  1190. "samplers": [
  1191. {
  1192. "input": 74,
  1193. "interpolation": "LINEAR",
  1194. "output": 75
  1195. },
  1196. {
  1197. "input": 74,
  1198. "interpolation": "LINEAR",
  1199. "output": 76
  1200. },
  1201. {
  1202. "input": 74,
  1203. "interpolation": "LINEAR",
  1204. "output": 77
  1205. }
  1206. ]
  1207. },
  1208. {
  1209. "channels": [
  1210. {
  1211. "sampler": 0,
  1212. "target": {
  1213. "node": 6,
  1214. "path": "translation"
  1215. }
  1216. },
  1217. {
  1218. "sampler": 1,
  1219. "target": {
  1220. "node": 6,
  1221. "path": "rotation"
  1222. }
  1223. },
  1224. {
  1225. "sampler": 2,
  1226. "target": {
  1227. "node": 6,
  1228. "path": "scale"
  1229. }
  1230. }
  1231. ],
  1232. "samplers": [
  1233. {
  1234. "input": 78,
  1235. "interpolation": "LINEAR",
  1236. "output": 79
  1237. },
  1238. {
  1239. "input": 78,
  1240. "interpolation": "LINEAR",
  1241. "output": 80
  1242. },
  1243. {
  1244. "input": 78,
  1245. "interpolation": "LINEAR",
  1246. "output": 81
  1247. }
  1248. ]
  1249. }
  1250. ],
  1251. "skins": [
  1252. {
  1253. "inverseBindMatrices": 82,
  1254. "skeleton": 2,
  1255. "joints": [
  1256. 2,
  1257. 11,
  1258. 12,
  1259. 19,
  1260. 20,
  1261. 16,
  1262. 13,
  1263. 17,
  1264. 14,
  1265. 18,
  1266. 15,
  1267. 7,
  1268. 3,
  1269. 8,
  1270. 4,
  1271. 9,
  1272. 5,
  1273. 10,
  1274. 6
  1275. ],
  1276. "name": "Armature"
  1277. }
  1278. ],
  1279. "accessors": [
  1280. {
  1281. "bufferView": 0,
  1282. "byteOffset": 0,
  1283. "componentType": 5123,
  1284. "count": 14016,
  1285. "max": [
  1286. 3272
  1287. ],
  1288. "min": [
  1289. 0
  1290. ],
  1291. "type": "SCALAR"
  1292. },
  1293. {
  1294. "bufferView": 1,
  1295. "byteOffset": 0,
  1296. "componentType": 5123,
  1297. "count": 3273,
  1298. "max": [
  1299. 18,
  1300. 18,
  1301. 18,
  1302. 18
  1303. ],
  1304. "min": [
  1305. 0,
  1306. 0,
  1307. 0,
  1308. 0
  1309. ],
  1310. "type": "VEC4"
  1311. },
  1312. {
  1313. "bufferView": 2,
  1314. "byteOffset": 0,
  1315. "componentType": 5126,
  1316. "count": 3273,
  1317. "max": [
  1318. 1.0,
  1319. 0.9999808073043824,
  1320. 0.9944446086883544
  1321. ],
  1322. "min": [
  1323. -1.0,
  1324. -0.9999808073043824,
  1325. -1.0
  1326. ],
  1327. "type": "VEC3"
  1328. },
  1329. {
  1330. "bufferView": 2,
  1331. "byteOffset": 39276,
  1332. "componentType": 5126,
  1333. "count": 3273,
  1334. "max": [
  1335. 0.1809539943933487,
  1336. 0.569136917591095,
  1337. 1.5065499544143677
  1338. ],
  1339. "min": [
  1340. -0.13100001215934754,
  1341. -0.5691370964050293,
  1342. 0.0
  1343. ],
  1344. "type": "VEC3"
  1345. },
  1346. {
  1347. "bufferView": 1,
  1348. "byteOffset": 26184,
  1349. "componentType": 5126,
  1350. "count": 3273,
  1351. "max": [
  1352. 0.990805983543396,
  1353. 0.9880298972129822
  1354. ],
  1355. "min": [
  1356. 0.014079390093684197,
  1357. 0.008445978164672852
  1358. ],
  1359. "type": "VEC2"
  1360. },
  1361. {
  1362. "bufferView": 3,
  1363. "byteOffset": 0,
  1364. "componentType": 5126,
  1365. "count": 3273,
  1366. "max": [
  1367. 1.0,
  1368. 0.989919900894165,
  1369. 0.951076328754425,
  1370. 0.8741077184677124
  1371. ],
  1372. "min": [
  1373. 0.010080150328576565,
  1374. 0.0,
  1375. 0.0,
  1376. 0.0
  1377. ],
  1378. "type": "VEC4"
  1379. },
  1380. {
  1381. "bufferView": 4,
  1382. "byteOffset": 0,
  1383. "componentType": 5126,
  1384. "count": 49,
  1385. "max": [
  1386. 2.0
  1387. ],
  1388. "min": [
  1389. 0.0
  1390. ],
  1391. "type": "SCALAR"
  1392. },
  1393. {
  1394. "bufferView": 5,
  1395. "byteOffset": 0,
  1396. "componentType": 5126,
  1397. "count": 49,
  1398. "max": [
  1399. 2.386510011831433e-8,
  1400. -0.02000010944902897,
  1401. 0.7110069990158081
  1402. ],
  1403. "min": [
  1404. -7.101329746461715e-9,
  1405. -0.030000120401382448,
  1406. 0.6399999856948853
  1407. ],
  1408. "type": "VEC3"
  1409. },
  1410. {
  1411. "bufferView": 6,
  1412. "byteOffset": 1568,
  1413. "componentType": 5126,
  1414. "count": 49,
  1415. "max": [
  1416. -0.02314124070107937,
  1417. -0.006974140647798777,
  1418. -0.7065909504890442,
  1419. -0.7031946778297424
  1420. ],
  1421. "min": [
  1422. -0.05146743357181549,
  1423. -0.034400247037410739,
  1424. -0.7094300389289856,
  1425. -0.7066542506217957
  1426. ],
  1427. "type": "VEC4"
  1428. },
  1429. {
  1430. "bufferView": 5,
  1431. "byteOffset": 2940,
  1432. "componentType": 5126,
  1433. "count": 49,
  1434. "max": [
  1435. 1.0000001192092896,
  1436. 1.0000003576278689,
  1437. 1.0000001192092896
  1438. ],
  1439. "min": [
  1440. 0.9999998211860656,
  1441. 0.9999998807907105,
  1442. 0.9999997615814208
  1443. ],
  1444. "type": "VEC3"
  1445. },
  1446. {
  1447. "bufferView": 4,
  1448. "byteOffset": 588,
  1449. "componentType": 5126,
  1450. "count": 49,
  1451. "max": [
  1452. 2.0
  1453. ],
  1454. "min": [
  1455. 0.0
  1456. ],
  1457. "type": "SCALAR"
  1458. },
  1459. {
  1460. "bufferView": 5,
  1461. "byteOffset": 1176,
  1462. "componentType": 5126,
  1463. "count": 49,
  1464. "max": [
  1465. 0.0009999829344451428,
  1466. 3.725289943190546e-8,
  1467. 0.1454170048236847
  1468. ],
  1469. "min": [
  1470. 0.0009999759495258332,
  1471. -4.470349779239769e-8,
  1472. 0.14541690051555634
  1473. ],
  1474. "type": "VEC3"
  1475. },
  1476. {
  1477. "bufferView": 6,
  1478. "byteOffset": 784,
  1479. "componentType": 5126,
  1480. "count": 49,
  1481. "max": [
  1482. -0.7105135917663574,
  1483. 0.008397356607019902,
  1484. 0.000531485362444073,
  1485. -0.6789330840110779
  1486. ],
  1487. "min": [
  1488. -0.7337970733642578,
  1489. -0.011321297846734524,
  1490. -0.02596380189061165,
  1491. -0.703567624092102
  1492. ],
  1493. "type": "VEC4"
  1494. },
  1495. {
  1496. "bufferView": 5,
  1497. "byteOffset": 1764,
  1498. "componentType": 5126,
  1499. "count": 49,
  1500. "max": [
  1501. 1.0000003576278689,
  1502. 1.0000004768371585,
  1503. 0.999999701976776
  1504. ],
  1505. "min": [
  1506. 1.0,
  1507. 1.0000001192092896,
  1508. 0.9999992847442628
  1509. ],
  1510. "type": "VEC3"
  1511. },
  1512. {
  1513. "bufferView": 4,
  1514. "byteOffset": 392,
  1515. "componentType": 5126,
  1516. "count": 49,
  1517. "max": [
  1518. 2.0
  1519. ],
  1520. "min": [
  1521. 0.0
  1522. ],
  1523. "type": "SCALAR"
  1524. },
  1525. {
  1526. "bufferView": 5,
  1527. "byteOffset": 2352,
  1528. "componentType": 5126,
  1529. "count": 49,
  1530. "max": [
  1531. 0.0,
  1532. 0.25051671266555788,
  1533. 0.0
  1534. ],
  1535. "min": [
  1536. 0.0,
  1537. 0.25051671266555788,
  1538. 0.0
  1539. ],
  1540. "type": "VEC3"
  1541. },
  1542. {
  1543. "bufferView": 6,
  1544. "byteOffset": 0,
  1545. "componentType": 5126,
  1546. "count": 49,
  1547. "max": [
  1548. 0.6358352899551392,
  1549. 0.06165437772870064,
  1550. -0.00338419945910573,
  1551. -0.7642753720283508
  1552. ],
  1553. "min": [
  1554. 0.6224426627159119,
  1555. -0.1380288153886795,
  1556. -0.06534028053283692,
  1557. -0.782635509967804
  1558. ],
  1559. "type": "VEC4"
  1560. },
  1561. {
  1562. "bufferView": 5,
  1563. "byteOffset": 3528,
  1564. "componentType": 5126,
  1565. "count": 49,
  1566. "max": [
  1567. 1.0000001192092896,
  1568. 1.0000007152557374,
  1569. 0.999999701976776
  1570. ],
  1571. "min": [
  1572. 0.9999998211860656,
  1573. 1.0000003576278689,
  1574. 0.9999992847442628
  1575. ],
  1576. "type": "VEC3"
  1577. },
  1578. {
  1579. "bufferView": 4,
  1580. "byteOffset": 196,
  1581. "componentType": 5126,
  1582. "count": 49,
  1583. "max": [
  1584. 2.0
  1585. ],
  1586. "min": [
  1587. 0.0
  1588. ],
  1589. "type": "SCALAR"
  1590. },
  1591. {
  1592. "bufferView": 5,
  1593. "byteOffset": 588,
  1594. "componentType": 5126,
  1595. "count": 49,
  1596. "max": [
  1597. 2.1420399676230774e-8,
  1598. 8.940700269022274e-8,
  1599. 0.064838707447052
  1600. ],
  1601. "min": [
  1602. -1.5832499755674694e-8,
  1603. 2.98022992950564e-8,
  1604. 0.06483834981918335
  1605. ],
  1606. "type": "VEC3"
  1607. },
  1608. {
  1609. "bufferView": 6,
  1610. "byteOffset": 3136,
  1611. "componentType": 5126,
  1612. "count": 49,
  1613. "max": [
  1614. -0.6325308680534363,
  1615. 0.024829493835568429,
  1616. 0.04200226813554764,
  1617. -0.7498575448989868
  1618. ],
  1619. "min": [
  1620. -0.6592774987220764,
  1621. -0.03641732409596443,
  1622. -0.03000717982649803,
  1623. -0.7735550999641419
  1624. ],
  1625. "type": "VEC4"
  1626. },
  1627. {
  1628. "bufferView": 5,
  1629. "byteOffset": 4116,
  1630. "componentType": 5126,
  1631. "count": 49,
  1632. "max": [
  1633. 1.000000238418579,
  1634. 0.9999998807907105,
  1635. 1.0
  1636. ],
  1637. "min": [
  1638. 0.9999998211860656,
  1639. 0.9999995231628418,
  1640. 0.999999701976776
  1641. ],
  1642. "type": "VEC3"
  1643. },
  1644. {
  1645. "bufferView": 4,
  1646. "byteOffset": 784,
  1647. "componentType": 5126,
  1648. "count": 49,
  1649. "max": [
  1650. 2.0
  1651. ],
  1652. "min": [
  1653. 0.0
  1654. ],
  1655. "type": "SCALAR"
  1656. },
  1657. {
  1658. "bufferView": 5,
  1659. "byteOffset": 5292,
  1660. "componentType": 5126,
  1661. "count": 49,
  1662. "max": [
  1663. 7.450579708745408e-9,
  1664. 0.0520397387444973,
  1665. 0.0
  1666. ],
  1667. "min": [
  1668. 7.450579708745408e-9,
  1669. 0.0520397387444973,
  1670. 0.0
  1671. ],
  1672. "type": "VEC3"
  1673. },
  1674. {
  1675. "bufferView": 6,
  1676. "byteOffset": 3920,
  1677. "componentType": 5126,
  1678. "count": 49,
  1679. "max": [
  1680. 0.04680429771542549,
  1681. 0.9995073676109314,
  1682. -0.018450811505317689,
  1683. 0.002033286727964878
  1684. ],
  1685. "min": [
  1686. -0.09362706542015076,
  1687. 0.995067298412323,
  1688. -0.09058911353349686,
  1689. -0.0025854958221316339
  1690. ],
  1691. "type": "VEC4"
  1692. },
  1693. {
  1694. "bufferView": 5,
  1695. "byteOffset": 4704,
  1696. "componentType": 5126,
  1697. "count": 49,
  1698. "max": [
  1699. 1.000000238418579,
  1700. 1.0000001192092896,
  1701. 1.0000004768371585
  1702. ],
  1703. "min": [
  1704. 0.999999701976776,
  1705. 0.9999998211860656,
  1706. 1.0000001192092896
  1707. ],
  1708. "type": "VEC3"
  1709. },
  1710. {
  1711. "bufferView": 4,
  1712. "byteOffset": 980,
  1713. "componentType": 5126,
  1714. "count": 49,
  1715. "max": [
  1716. 2.0
  1717. ],
  1718. "min": [
  1719. 0.0
  1720. ],
  1721. "type": "SCALAR"
  1722. },
  1723. {
  1724. "bufferView": 5,
  1725. "byteOffset": 5880,
  1726. "componentType": 5126,
  1727. "count": 49,
  1728. "max": [
  1729. 0.08800014853477478,
  1730. 0.000014096500308369288,
  1731. -0.00005573029920924455
  1732. ],
  1733. "min": [
  1734. 0.08799994736909867,
  1735. 0.000013977300113765525,
  1736. -0.00005596880146185868
  1737. ],
  1738. "type": "VEC3"
  1739. },
  1740. {
  1741. "bufferView": 6,
  1742. "byteOffset": 2352,
  1743. "componentType": 5126,
  1744. "count": 49,
  1745. "max": [
  1746. 0.7787204384803772,
  1747. 0.6963526606559753,
  1748. -0.2913321256637573,
  1749. -0.12775331735610966
  1750. ],
  1751. "min": [
  1752. 0.41440603137016299,
  1753. 0.2682091891765595,
  1754. -0.6041955351829529,
  1755. -0.508333683013916
  1756. ],
  1757. "type": "VEC4"
  1758. },
  1759. {
  1760. "bufferView": 5,
  1761. "byteOffset": 6468,
  1762. "componentType": 5126,
  1763. "count": 49,
  1764. "max": [
  1765. 1.0000005960464478,
  1766. 1.0000001192092896,
  1767. 1.0000004768371585
  1768. ],
  1769. "min": [
  1770. 1.0,
  1771. 0.9999995827674866,
  1772. 1.0000001192092896
  1773. ],
  1774. "type": "VEC3"
  1775. },
  1776. {
  1777. "bufferView": 4,
  1778. "byteOffset": 1176,
  1779. "componentType": 5126,
  1780. "count": 49,
  1781. "max": [
  1782. 2.0
  1783. ],
  1784. "min": [
  1785. 0.0
  1786. ],
  1787. "type": "SCALAR"
  1788. },
  1789. {
  1790. "bufferView": 5,
  1791. "byteOffset": 8820,
  1792. "componentType": 5126,
  1793. "count": 49,
  1794. "max": [
  1795. 0.0,
  1796. 0.24200910329818729,
  1797. 0.0
  1798. ],
  1799. "min": [
  1800. 0.0,
  1801. 0.24200910329818729,
  1802. 0.0
  1803. ],
  1804. "type": "VEC3"
  1805. },
  1806. {
  1807. "bufferView": 6,
  1808. "byteOffset": 6272,
  1809. "componentType": 5126,
  1810. "count": 49,
  1811. "max": [
  1812. 0.005276965908706188,
  1813. -0.10532382130622864,
  1814. -0.0563904233276844,
  1815. -0.9007523059844972
  1816. ],
  1817. "min": [
  1818. -0.08755125105381012,
  1819. -0.15304648876190186,
  1820. -0.4198120832443238,
  1821. -0.989989936351776
  1822. ],
  1823. "type": "VEC4"
  1824. },
  1825. {
  1826. "bufferView": 5,
  1827. "byteOffset": 7056,
  1828. "componentType": 5126,
  1829. "count": 49,
  1830. "max": [
  1831. 0.9999999403953552,
  1832. 0.9999998807907105,
  1833. 0.9999998807907105
  1834. ],
  1835. "min": [
  1836. 0.9999994039535524,
  1837. 0.9999992847442628,
  1838. 0.9999995231628418
  1839. ],
  1840. "type": "VEC3"
  1841. },
  1842. {
  1843. "bufferView": 4,
  1844. "byteOffset": 1372,
  1845. "componentType": 5126,
  1846. "count": 49,
  1847. "max": [
  1848. 2.0
  1849. ],
  1850. "min": [
  1851. 0.0
  1852. ],
  1853. "type": "SCALAR"
  1854. },
  1855. {
  1856. "bufferView": 5,
  1857. "byteOffset": 9996,
  1858. "componentType": 5126,
  1859. "count": 49,
  1860. "max": [
  1861. -2.98022992950564e-8,
  1862. 0.18779130280017854,
  1863. 0.0
  1864. ],
  1865. "min": [
  1866. -2.98022992950564e-8,
  1867. 0.18779130280017854,
  1868. 0.0
  1869. ],
  1870. "type": "VEC3"
  1871. },
  1872. {
  1873. "bufferView": 6,
  1874. "byteOffset": 5488,
  1875. "componentType": 5126,
  1876. "count": 49,
  1877. "max": [
  1878. 0.04831664264202118,
  1879. -0.03682959079742432,
  1880. 0.1515040546655655,
  1881. -0.9875762462615968
  1882. ],
  1883. "min": [
  1884. -0.01958325318992138,
  1885. -0.043389420956373218,
  1886. -0.0806758776307106,
  1887. -0.9989553689956664
  1888. ],
  1889. "type": "VEC4"
  1890. },
  1891. {
  1892. "bufferView": 5,
  1893. "byteOffset": 9408,
  1894. "componentType": 5126,
  1895. "count": 49,
  1896. "max": [
  1897. 1.000000238418579,
  1898. 1.0000009536743165,
  1899. 1.0000005960464478
  1900. ],
  1901. "min": [
  1902. 0.999999701976776,
  1903. 1.0000005960464478,
  1904. 1.000000238418579
  1905. ],
  1906. "type": "VEC3"
  1907. },
  1908. {
  1909. "bufferView": 4,
  1910. "byteOffset": 1568,
  1911. "componentType": 5126,
  1912. "count": 49,
  1913. "max": [
  1914. 2.0
  1915. ],
  1916. "min": [
  1917. 0.0
  1918. ],
  1919. "type": "SCALAR"
  1920. },
  1921. {
  1922. "bufferView": 5,
  1923. "byteOffset": 7644,
  1924. "componentType": 5126,
  1925. "count": 49,
  1926. "max": [
  1927. -0.0879998505115509,
  1928. 0.00006264450348680839,
  1929. -0.00006240609945962206
  1930. ],
  1931. "min": [
  1932. -0.0880001038312912,
  1933. 0.00006249549915082753,
  1934. -0.00006282330286921933
  1935. ],
  1936. "type": "VEC3"
  1937. },
  1938. {
  1939. "bufferView": 6,
  1940. "byteOffset": 4704,
  1941. "componentType": 5126,
  1942. "count": 49,
  1943. "max": [
  1944. 0.6748494505882263,
  1945. 0.3152157068252564,
  1946. -0.300369679927826,
  1947. -0.3483264744281769
  1948. ],
  1949. "min": [
  1950. 0.3661315143108368,
  1951. 0.09874838590621948,
  1952. -0.6449660658836365,
  1953. -0.8451733589172363
  1954. ],
  1955. "type": "VEC4"
  1956. },
  1957. {
  1958. "bufferView": 5,
  1959. "byteOffset": 8232,
  1960. "componentType": 5126,
  1961. "count": 49,
  1962. "max": [
  1963. 1.0000001192092896,
  1964. 1.0000001192092896,
  1965. 1.0
  1966. ],
  1967. "min": [
  1968. 0.9999997615814208,
  1969. 0.9999996423721314,
  1970. 0.999999701976776
  1971. ],
  1972. "type": "VEC3"
  1973. },
  1974. {
  1975. "bufferView": 4,
  1976. "byteOffset": 1764,
  1977. "componentType": 5126,
  1978. "count": 49,
  1979. "max": [
  1980. 2.0
  1981. ],
  1982. "min": [
  1983. 0.0
  1984. ],
  1985. "type": "SCALAR"
  1986. },
  1987. {
  1988. "bufferView": 5,
  1989. "byteOffset": 11760,
  1990. "componentType": 5126,
  1991. "count": 49,
  1992. "max": [
  1993. 0.0,
  1994. 0.24200810492038728,
  1995. 0.0
  1996. ],
  1997. "min": [
  1998. 0.0,
  1999. 0.24200810492038728,
  2000. 0.0
  2001. ],
  2002. "type": "VEC3"
  2003. },
  2004. {
  2005. "bufferView": 6,
  2006. "byteOffset": 8624,
  2007. "componentType": 5126,
  2008. "count": 49,
  2009. "max": [
  2010. -0.003387797623872757,
  2011. 0.9475951790809633,
  2012. -0.0798693522810936,
  2013. -0.3012830018997193
  2014. ],
  2015. "min": [
  2016. -0.12710869312286378,
  2017. 0.916045308113098,
  2018. -0.2270231395959854,
  2019. -0.3146948218345642
  2020. ],
  2021. "type": "VEC4"
  2022. },
  2023. {
  2024. "bufferView": 5,
  2025. "byteOffset": 12348,
  2026. "componentType": 5126,
  2027. "count": 49,
  2028. "max": [
  2029. 1.0000003576278689,
  2030. 0.9999998807907105,
  2031. 1.0000001192092896
  2032. ],
  2033. "min": [
  2034. 0.9999999403953552,
  2035. 0.9999995827674866,
  2036. 0.9999997615814208
  2037. ],
  2038. "type": "VEC3"
  2039. },
  2040. {
  2041. "bufferView": 4,
  2042. "byteOffset": 1960,
  2043. "componentType": 5126,
  2044. "count": 49,
  2045. "max": [
  2046. 2.0
  2047. ],
  2048. "min": [
  2049. 0.0
  2050. ],
  2051. "type": "SCALAR"
  2052. },
  2053. {
  2054. "bufferView": 5,
  2055. "byteOffset": 11172,
  2056. "componentType": 5126,
  2057. "count": 49,
  2058. "max": [
  2059. 0.0,
  2060. 0.187792107462883,
  2061. 0.0
  2062. ],
  2063. "min": [
  2064. 0.0,
  2065. 0.187792107462883,
  2066. 0.0
  2067. ],
  2068. "type": "VEC3"
  2069. },
  2070. {
  2071. "bufferView": 6,
  2072. "byteOffset": 7840,
  2073. "componentType": 5126,
  2074. "count": 49,
  2075. "max": [
  2076. 0.15000686049461366,
  2077. 0.26206517219543459,
  2078. 0.06808223575353623,
  2079. -0.9487173557281494
  2080. ],
  2081. "min": [
  2082. -0.0010455237934365869,
  2083. 0.25685790181159975,
  2084. -0.10152826458215714,
  2085. -0.9656248688697816
  2086. ],
  2087. "type": "VEC4"
  2088. },
  2089. {
  2090. "bufferView": 5,
  2091. "byteOffset": 12936,
  2092. "componentType": 5126,
  2093. "count": 49,
  2094. "max": [
  2095. 1.0000001192092896,
  2096. 1.0000009536743165,
  2097. 1.0
  2098. ],
  2099. "min": [
  2100. 0.9999996423721314,
  2101. 1.0000003576278689,
  2102. 0.9999995231628418
  2103. ],
  2104. "type": "VEC3"
  2105. },
  2106. {
  2107. "bufferView": 4,
  2108. "byteOffset": 2352,
  2109. "componentType": 5126,
  2110. "count": 49,
  2111. "max": [
  2112. 2.0
  2113. ],
  2114. "min": [
  2115. 0.0
  2116. ],
  2117. "type": "SCALAR"
  2118. },
  2119. {
  2120. "bufferView": 5,
  2121. "byteOffset": 13524,
  2122. "componentType": 5126,
  2123. "count": 49,
  2124. "max": [
  2125. 0.06761906296014786,
  2126. -0.02851865068078041,
  2127. -0.06296355277299881
  2128. ],
  2129. "min": [
  2130. 0.0676189586520195,
  2131. -0.028518760576844217,
  2132. -0.06296365708112717
  2133. ],
  2134. "type": "VEC3"
  2135. },
  2136. {
  2137. "bufferView": 6,
  2138. "byteOffset": 7056,
  2139. "componentType": 5126,
  2140. "count": 49,
  2141. "max": [
  2142. 0.301033079624176,
  2143. -0.20796972513198853,
  2144. 0.92630273103714,
  2145. -0.08994945138692856
  2146. ],
  2147. "min": [
  2148. 0.1658332496881485,
  2149. -0.7997090816497803,
  2150. 0.4959096908569336,
  2151. -0.3118112981319428
  2152. ],
  2153. "type": "VEC4"
  2154. },
  2155. {
  2156. "bufferView": 5,
  2157. "byteOffset": 10584,
  2158. "componentType": 5126,
  2159. "count": 49,
  2160. "max": [
  2161. 1.0000008344650269,
  2162. 1.0,
  2163. 0.9999999403953552
  2164. ],
  2165. "min": [
  2166. 1.0000003576278689,
  2167. 0.9999995231628418,
  2168. 0.9999996423721314
  2169. ],
  2170. "type": "VEC3"
  2171. },
  2172. {
  2173. "bufferView": 4,
  2174. "byteOffset": 2156,
  2175. "componentType": 5126,
  2176. "count": 49,
  2177. "max": [
  2178. 2.0
  2179. ],
  2180. "min": [
  2181. 0.0
  2182. ],
  2183. "type": "SCALAR"
  2184. },
  2185. {
  2186. "bufferView": 5,
  2187. "byteOffset": 15288,
  2188. "componentType": 5126,
  2189. "count": 49,
  2190. "max": [
  2191. -1.4901200273698124e-8,
  2192. 0.26611289381980898,
  2193. 0.0
  2194. ],
  2195. "min": [
  2196. -1.4901200273698124e-8,
  2197. 0.26611289381980898,
  2198. 0.0
  2199. ],
  2200. "type": "VEC3"
  2201. },
  2202. {
  2203. "bufferView": 6,
  2204. "byteOffset": 10192,
  2205. "componentType": 5126,
  2206. "count": 49,
  2207. "max": [
  2208. 0.8112500905990601,
  2209. -0.1822210103273392,
  2210. 0.032220568507909778,
  2211. -0.4743982553482056
  2212. ],
  2213. "min": [
  2214. -0.03036016784608364,
  2215. -0.3419179916381836,
  2216. -0.289162427186966,
  2217. -0.9452491998672484
  2218. ],
  2219. "type": "VEC4"
  2220. },
  2221. {
  2222. "bufferView": 5,
  2223. "byteOffset": 14700,
  2224. "componentType": 5126,
  2225. "count": 49,
  2226. "max": [
  2227. 0.9999994039535524,
  2228. 1.000000238418579,
  2229. 1.000000238418579
  2230. ],
  2231. "min": [
  2232. 0.9999989867210388,
  2233. 0.9999996423721314,
  2234. 0.9999994039535524
  2235. ],
  2236. "type": "VEC3"
  2237. },
  2238. {
  2239. "bufferView": 4,
  2240. "byteOffset": 2548,
  2241. "componentType": 5126,
  2242. "count": 49,
  2243. "max": [
  2244. 2.0
  2245. ],
  2246. "min": [
  2247. 0.0
  2248. ],
  2249. "type": "SCALAR"
  2250. },
  2251. {
  2252. "bufferView": 5,
  2253. "byteOffset": 16464,
  2254. "componentType": 5126,
  2255. "count": 49,
  2256. "max": [
  2257. 0.0,
  2258. 0.2758241891860962,
  2259. 0.0
  2260. ],
  2261. "min": [
  2262. 0.0,
  2263. 0.2758241891860962,
  2264. 0.0
  2265. ],
  2266. "type": "VEC3"
  2267. },
  2268. {
  2269. "bufferView": 6,
  2270. "byteOffset": 9408,
  2271. "componentType": 5126,
  2272. "count": 49,
  2273. "max": [
  2274. 0.9907974004745485,
  2275. -0.0014961245469748974,
  2276. 0.02489613927900791,
  2277. -0.13506969809532166
  2278. ],
  2279. "min": [
  2280. 0.8542653918266296,
  2281. -0.05430477112531662,
  2282. -0.00011262076441198587,
  2283. -0.5192484259605408
  2284. ],
  2285. "type": "VEC4"
  2286. },
  2287. {
  2288. "bufferView": 5,
  2289. "byteOffset": 15876,
  2290. "componentType": 5126,
  2291. "count": 49,
  2292. "max": [
  2293. 1.0000005960464478,
  2294. 1.0000004768371585,
  2295. 1.0000004768371585
  2296. ],
  2297. "min": [
  2298. 1.000000238418579,
  2299. 1.0,
  2300. 1.0000001192092896
  2301. ],
  2302. "type": "VEC3"
  2303. },
  2304. {
  2305. "bufferView": 4,
  2306. "byteOffset": 2744,
  2307. "componentType": 5126,
  2308. "count": 49,
  2309. "max": [
  2310. 2.0
  2311. ],
  2312. "min": [
  2313. 0.0
  2314. ],
  2315. "type": "SCALAR"
  2316. },
  2317. {
  2318. "bufferView": 5,
  2319. "byteOffset": 14112,
  2320. "componentType": 5126,
  2321. "count": 49,
  2322. "max": [
  2323. -0.0023464488331228496,
  2324. -0.06617332249879837,
  2325. 0.02785664983093739
  2326. ],
  2327. "min": [
  2328. -0.002346470952033997,
  2329. -0.06617333739995957,
  2330. 0.02785659022629261
  2331. ],
  2332. "type": "VEC3"
  2333. },
  2334. {
  2335. "bufferView": 6,
  2336. "byteOffset": 10976,
  2337. "componentType": 5126,
  2338. "count": 49,
  2339. "max": [
  2340. 0.02062430046498776,
  2341. -0.23465925455093385,
  2342. 0.9716955423355104,
  2343. 0.0638260766863823
  2344. ],
  2345. "min": [
  2346. 0.003326366888359189,
  2347. -0.5406339168548584,
  2348. 0.8410344123840332,
  2349. 0.016216862946748738
  2350. ],
  2351. "type": "VEC4"
  2352. },
  2353. {
  2354. "bufferView": 5,
  2355. "byteOffset": 18816,
  2356. "componentType": 5126,
  2357. "count": 49,
  2358. "max": [
  2359. 1.0000001192092896,
  2360. 1.0000009536743165,
  2361. 1.0000005960464478
  2362. ],
  2363. "min": [
  2364. 0.9999998211860656,
  2365. 1.000000238418579,
  2366. 0.9999998211860656
  2367. ],
  2368. "type": "VEC3"
  2369. },
  2370. {
  2371. "bufferView": 4,
  2372. "byteOffset": 3136,
  2373. "componentType": 5126,
  2374. "count": 49,
  2375. "max": [
  2376. 2.0
  2377. ],
  2378. "min": [
  2379. 0.0
  2380. ],
  2381. "type": "SCALAR"
  2382. },
  2383. {
  2384. "bufferView": 5,
  2385. "byteOffset": 17052,
  2386. "componentType": 5126,
  2387. "count": 49,
  2388. "max": [
  2389. -0.06845708936452866,
  2390. -0.028570100665092469,
  2391. -0.062949538230896
  2392. ],
  2393. "min": [
  2394. -0.06845712661743164,
  2395. -0.02857035957276821,
  2396. -0.06294971704483032
  2397. ],
  2398. "type": "VEC3"
  2399. },
  2400. {
  2401. "bufferView": 6,
  2402. "byteOffset": 11760,
  2403. "componentType": 5126,
  2404. "count": 49,
  2405. "max": [
  2406. -0.018168065696954728,
  2407. -0.18232035636901856,
  2408. 0.9812799096107484,
  2409. 0.117560513317585
  2410. ],
  2411. "min": [
  2412. -0.07457219809293747,
  2413. -0.902503490447998,
  2414. 0.413051187992096,
  2415. 0.03284534439444542
  2416. ],
  2417. "type": "VEC4"
  2418. },
  2419. {
  2420. "bufferView": 5,
  2421. "byteOffset": 18228,
  2422. "componentType": 5126,
  2423. "count": 49,
  2424. "max": [
  2425. 1.000000238418579,
  2426. 1.000000238418579,
  2427. 1.0000003576278689
  2428. ],
  2429. "min": [
  2430. 0.9999998211860656,
  2431. 0.9999995827674866,
  2432. 0.9999996423721314
  2433. ],
  2434. "type": "VEC3"
  2435. },
  2436. {
  2437. "bufferView": 4,
  2438. "byteOffset": 3332,
  2439. "componentType": 5126,
  2440. "count": 49,
  2441. "max": [
  2442. 2.0
  2443. ],
  2444. "min": [
  2445. 0.0
  2446. ],
  2447. "type": "SCALAR"
  2448. },
  2449. {
  2450. "bufferView": 5,
  2451. "byteOffset": 19404,
  2452. "componentType": 5126,
  2453. "count": 49,
  2454. "max": [
  2455. -1.1175900205273593e-8,
  2456. 0.2661114931106568,
  2457. 0.0
  2458. ],
  2459. "min": [
  2460. -1.1175900205273593e-8,
  2461. 0.2661114931106568,
  2462. 0.0
  2463. ],
  2464. "type": "VEC3"
  2465. },
  2466. {
  2467. "bufferView": 6,
  2468. "byteOffset": 12544,
  2469. "componentType": 5126,
  2470. "count": 49,
  2471. "max": [
  2472. 0.8507033586502075,
  2473. 0.14946134388446809,
  2474. 0.04984176158905029,
  2475. -0.5191445350646973
  2476. ],
  2477. "min": [
  2478. -0.06756377220153809,
  2479. 0.06949601322412491,
  2480. -0.026268262416124345,
  2481. -0.9922308921813964
  2482. ],
  2483. "type": "VEC4"
  2484. },
  2485. {
  2486. "bufferView": 5,
  2487. "byteOffset": 17640,
  2488. "componentType": 5126,
  2489. "count": 49,
  2490. "max": [
  2491. 1.0000005960464478,
  2492. 1.0000003576278689,
  2493. 1.0000005960464478
  2494. ],
  2495. "min": [
  2496. 1.0000001192092896,
  2497. 0.9999995231628418,
  2498. 0.9999998211860656
  2499. ],
  2500. "type": "VEC3"
  2501. },
  2502. {
  2503. "bufferView": 4,
  2504. "byteOffset": 2940,
  2505. "componentType": 5126,
  2506. "count": 49,
  2507. "max": [
  2508. 2.0
  2509. ],
  2510. "min": [
  2511. 0.0
  2512. ],
  2513. "type": "SCALAR"
  2514. },
  2515. {
  2516. "bufferView": 5,
  2517. "byteOffset": 19992,
  2518. "componentType": 5126,
  2519. "count": 49,
  2520. "max": [
  2521. 0.0,
  2522. 0.2758249044418335,
  2523. 0.0
  2524. ],
  2525. "min": [
  2526. 0.0,
  2527. 0.2758249044418335,
  2528. 0.0
  2529. ],
  2530. "type": "VEC3"
  2531. },
  2532. {
  2533. "bufferView": 6,
  2534. "byteOffset": 13328,
  2535. "componentType": 5126,
  2536. "count": 49,
  2537. "max": [
  2538. 0.99649316072464,
  2539. -0.01710231974720955,
  2540. -0.022676724940538408,
  2541. -0.07459255307912827
  2542. ],
  2543. "min": [
  2544. 0.8792483806610107,
  2545. -0.04609288275241852,
  2546. -0.06820148974657059,
  2547. -0.4750169813632965
  2548. ],
  2549. "type": "VEC4"
  2550. },
  2551. {
  2552. "bufferView": 5,
  2553. "byteOffset": 21756,
  2554. "componentType": 5126,
  2555. "count": 49,
  2556. "max": [
  2557. 0.9999995827674866,
  2558. 1.0,
  2559. 1.0000003576278689
  2560. ],
  2561. "min": [
  2562. 0.999999225139618,
  2563. 0.9999995231628418,
  2564. 1.0
  2565. ],
  2566. "type": "VEC3"
  2567. },
  2568. {
  2569. "bufferView": 4,
  2570. "byteOffset": 3528,
  2571. "componentType": 5126,
  2572. "count": 49,
  2573. "max": [
  2574. 2.0
  2575. ],
  2576. "min": [
  2577. 0.0
  2578. ],
  2579. "type": "SCALAR"
  2580. },
  2581. {
  2582. "bufferView": 5,
  2583. "byteOffset": 21168,
  2584. "componentType": 5126,
  2585. "count": 49,
  2586. "max": [
  2587. -0.0014585109893232585,
  2588. -0.06619886308908463,
  2589. 0.02785670943558216
  2590. ],
  2591. "min": [
  2592. -0.0014585329918190837,
  2593. -0.06619889289140701,
  2594. 0.02785668894648552
  2595. ],
  2596. "type": "VEC3"
  2597. },
  2598. {
  2599. "bufferView": 6,
  2600. "byteOffset": 14112,
  2601. "componentType": 5126,
  2602. "count": 49,
  2603. "max": [
  2604. -0.00960757862776518,
  2605. -0.2635453343391419,
  2606. 0.9620476961135864,
  2607. 0.06995902955532074
  2608. ],
  2609. "min": [
  2610. -0.04577624797821045,
  2611. -0.4899238646030426,
  2612. 0.8689604997634888,
  2613. -0.06424159556627274
  2614. ],
  2615. "type": "VEC4"
  2616. },
  2617. {
  2618. "bufferView": 5,
  2619. "byteOffset": 20580,
  2620. "componentType": 5126,
  2621. "count": 49,
  2622. "max": [
  2623. 0.9999996423721314,
  2624. 1.0000003576278689,
  2625. 0.9999998807907105
  2626. ],
  2627. "min": [
  2628. 0.9999991655349731,
  2629. 0.9999997615814208,
  2630. 0.9999994039535524
  2631. ],
  2632. "type": "VEC3"
  2633. },
  2634. {
  2635. "bufferView": 7,
  2636. "byteOffset": 0,
  2637. "componentType": 5126,
  2638. "count": 19,
  2639. "max": [
  2640. 0.780990481376648,
  2641. 0.9918341040611268,
  2642. 0.9992613196372986,
  2643. 0.0,
  2644. 1.0,
  2645. 0.8904604315757752,
  2646. 0.6854007244110107,
  2647. 0.0,
  2648. 0.79917311668396,
  2649. 0.9999359250068665,
  2650. 0.997134804725647,
  2651. 0.0,
  2652. 0.20702040195465089,
  2653. 0.5989438891410828,
  2654. 1.001250982284546,
  2655. 1.0
  2656. ],
  2657. "min": [
  2658. -0.9985063076019288,
  2659. -0.9971349835395812,
  2660. -0.9999359250068665,
  2661. 0.0,
  2662. -1.0,
  2663. -0.8904621005058289,
  2664. -0.4517692029476166,
  2665. 0.0,
  2666. -0.18484599888324736,
  2667. -0.9853218197822572,
  2668. -0.997802197933197,
  2669. 0.0,
  2670. -0.811928927898407,
  2671. -1.18982994556427,
  2672. -1.058609962463379,
  2673. 1.0
  2674. ],
  2675. "type": "MAT4"
  2676. }
  2677. ],
  2678. "materials": [
  2679. {
  2680. "pbrMetallicRoughness": {
  2681. "baseColorTexture": {
  2682. "index": 0
  2683. }
  2684. },
  2685. "emissiveFactor": [
  2686. 0.0,
  2687. 0.0,
  2688. 0.0
  2689. ]
  2690. }
  2691. ],
  2692. "textures": [
  2693. {
  2694. "sampler": 0,
  2695. "source": 0
  2696. }
  2697. ],
  2698. "images": [
  2699. {
  2700. "uri": "CesiumMan.jpg"
  2701. }
  2702. ],
  2703. "samplers": [
  2704. {
  2705. "magFilter": 9729,
  2706. "minFilter": 9986,
  2707. "wrapS": 10497,
  2708. "wrapT": 10497
  2709. }
  2710. ],
  2711. "bufferViews": [
  2712. {
  2713. "buffer": 0,
  2714. "byteOffset": 225468,
  2715. "byteLength": 28032,
  2716. "target": 34963
  2717. },
  2718. {
  2719. "buffer": 0,
  2720. "byteOffset": 169376,
  2721. "byteLength": 52368,
  2722. "byteStride": 8,
  2723. "target": 34962
  2724. },
  2725. {
  2726. "buffer": 0,
  2727. "byteOffset": 90824,
  2728. "byteLength": 78552,
  2729. "byteStride": 12,
  2730. "target": 34962
  2731. },
  2732. {
  2733. "buffer": 0,
  2734. "byteOffset": 16112,
  2735. "byteLength": 52368,
  2736. "byteStride": 16,
  2737. "target": 34962
  2738. },
  2739. {
  2740. "buffer": 0,
  2741. "byteOffset": 221744,
  2742. "byteLength": 3724
  2743. },
  2744. {
  2745. "buffer": 0,
  2746. "byteOffset": 68480,
  2747. "byteLength": 22344
  2748. },
  2749. {
  2750. "buffer": 0,
  2751. "byteOffset": 1216,
  2752. "byteLength": 14896
  2753. },
  2754. {
  2755. "buffer": 0,
  2756. "byteOffset": 0,
  2757. "byteLength": 1216
  2758. }
  2759. ],
  2760. "buffers": [
  2761. {
  2762. "byteLength": 253500,
  2763. "uri": "CesiumMan0.bin"
  2764. }
  2765. ]
  2766. }