Bot_Skinned.gltf 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256
  1. {
  2. "asset": {
  3. "generator": "FBX2glTF",
  4. "version": "2.0"
  5. },
  6. "scene": 0,
  7. "buffers": [
  8. {
  9. "uri": "Bot_Skinned_data.bin",
  10. "byteLength": 272844
  11. }
  12. ],
  13. "bufferViews": [
  14. {
  15. "buffer": 0,
  16. "byteLength": 644,
  17. "byteOffset": 0
  18. },
  19. {
  20. "buffer": 0,
  21. "byteLength": 2576,
  22. "byteOffset": 644
  23. },
  24. {
  25. "buffer": 0,
  26. "byteLength": 2576,
  27. "byteOffset": 3220
  28. },
  29. {
  30. "buffer": 0,
  31. "byteLength": 2576,
  32. "byteOffset": 5796
  33. },
  34. {
  35. "buffer": 0,
  36. "byteLength": 2576,
  37. "byteOffset": 8372
  38. },
  39. {
  40. "buffer": 0,
  41. "byteLength": 2576,
  42. "byteOffset": 10948
  43. },
  44. {
  45. "buffer": 0,
  46. "byteLength": 2576,
  47. "byteOffset": 13524
  48. },
  49. {
  50. "buffer": 0,
  51. "byteLength": 2576,
  52. "byteOffset": 16100
  53. },
  54. {
  55. "buffer": 0,
  56. "byteLength": 2576,
  57. "byteOffset": 18676
  58. },
  59. {
  60. "buffer": 0,
  61. "byteLength": 2576,
  62. "byteOffset": 21252
  63. },
  64. {
  65. "buffer": 0,
  66. "byteLength": 2576,
  67. "byteOffset": 23828
  68. },
  69. {
  70. "buffer": 0,
  71. "byteLength": 2576,
  72. "byteOffset": 26404
  73. },
  74. {
  75. "buffer": 0,
  76. "byteLength": 2576,
  77. "byteOffset": 28980
  78. },
  79. {
  80. "buffer": 0,
  81. "byteLength": 2576,
  82. "byteOffset": 31556
  83. },
  84. {
  85. "buffer": 0,
  86. "byteLength": 2576,
  87. "byteOffset": 34132
  88. },
  89. {
  90. "buffer": 0,
  91. "byteLength": 2576,
  92. "byteOffset": 36708
  93. },
  94. {
  95. "buffer": 0,
  96. "byteLength": 2576,
  97. "byteOffset": 39284
  98. },
  99. {
  100. "buffer": 0,
  101. "byteLength": 2576,
  102. "byteOffset": 41860
  103. },
  104. {
  105. "buffer": 0,
  106. "byteLength": 2576,
  107. "byteOffset": 44436
  108. },
  109. {
  110. "buffer": 0,
  111. "byteLength": 2576,
  112. "byteOffset": 47012
  113. },
  114. {
  115. "buffer": 0,
  116. "byteLength": 2576,
  117. "byteOffset": 49588
  118. },
  119. {
  120. "buffer": 0,
  121. "byteLength": 2576,
  122. "byteOffset": 52164
  123. },
  124. {
  125. "buffer": 0,
  126. "byteLength": 2576,
  127. "byteOffset": 54740
  128. },
  129. {
  130. "buffer": 0,
  131. "byteLength": 2576,
  132. "byteOffset": 57316
  133. },
  134. {
  135. "buffer": 0,
  136. "byteLength": 2576,
  137. "byteOffset": 59892
  138. },
  139. {
  140. "buffer": 0,
  141. "byteLength": 2576,
  142. "byteOffset": 62468
  143. },
  144. {
  145. "buffer": 0,
  146. "byteLength": 2576,
  147. "byteOffset": 65044
  148. },
  149. {
  150. "buffer": 0,
  151. "byteLength": 2576,
  152. "byteOffset": 67620
  153. },
  154. {
  155. "buffer": 0,
  156. "byteLength": 2576,
  157. "byteOffset": 70196
  158. },
  159. {
  160. "buffer": 0,
  161. "byteLength": 1932,
  162. "byteOffset": 72772
  163. },
  164. {
  165. "buffer": 0,
  166. "byteLength": 2576,
  167. "byteOffset": 74704
  168. },
  169. {
  170. "buffer": 0,
  171. "byteLength": 1932,
  172. "byteOffset": 77280
  173. },
  174. {
  175. "buffer": 0,
  176. "byteLength": 2576,
  177. "byteOffset": 79212
  178. },
  179. {
  180. "buffer": 0,
  181. "byteLength": 12332,
  182. "byteOffset": 81788,
  183. "target": 34963
  184. },
  185. {
  186. "buffer": 0,
  187. "byteLength": 33108,
  188. "byteOffset": 94120,
  189. "target": 34962
  190. },
  191. {
  192. "buffer": 0,
  193. "byteLength": 33108,
  194. "byteOffset": 127228,
  195. "target": 34962
  196. },
  197. {
  198. "buffer": 0,
  199. "byteLength": 22072,
  200. "byteOffset": 160336,
  201. "target": 34962
  202. },
  203. {
  204. "buffer": 0,
  205. "byteLength": 22072,
  206. "byteOffset": 182408,
  207. "target": 34962
  208. },
  209. {
  210. "buffer": 0,
  211. "byteLength": 44144,
  212. "byteOffset": 204480,
  213. "target": 34962
  214. },
  215. {
  216. "buffer": 0,
  217. "byteLength": 2268,
  218. "byteOffset": 248624,
  219. "target": 34963
  220. },
  221. {
  222. "buffer": 0,
  223. "byteLength": 4032,
  224. "byteOffset": 250892,
  225. "target": 34962
  226. },
  227. {
  228. "buffer": 0,
  229. "byteLength": 4032,
  230. "byteOffset": 254924,
  231. "target": 34962
  232. },
  233. {
  234. "buffer": 0,
  235. "byteLength": 2688,
  236. "byteOffset": 258956,
  237. "target": 34962
  238. },
  239. {
  240. "buffer": 0,
  241. "byteLength": 2688,
  242. "byteOffset": 261644,
  243. "target": 34962
  244. },
  245. {
  246. "buffer": 0,
  247. "byteLength": 5376,
  248. "byteOffset": 264332,
  249. "target": 34962
  250. },
  251. {
  252. "buffer": 0,
  253. "byteLength": 3136,
  254. "byteOffset": 269708
  255. }
  256. ],
  257. "scenes": [
  258. {
  259. "name": "Root Scene",
  260. "nodes": [
  261. 0
  262. ]
  263. }
  264. ],
  265. "accessors": [
  266. {
  267. "componentType": 5126,
  268. "type": "SCALAR",
  269. "count": 161,
  270. "bufferView": 0,
  271. "byteOffset": 0,
  272. "min": [
  273. 0
  274. ],
  275. "max": [
  276. 6.66666650772095
  277. ]
  278. },
  279. {
  280. "componentType": 5126,
  281. "type": "VEC4",
  282. "count": 161,
  283. "bufferView": 1,
  284. "byteOffset": 0
  285. },
  286. {
  287. "componentType": 5126,
  288. "type": "VEC4",
  289. "count": 161,
  290. "bufferView": 2,
  291. "byteOffset": 0
  292. },
  293. {
  294. "componentType": 5126,
  295. "type": "VEC4",
  296. "count": 161,
  297. "bufferView": 3,
  298. "byteOffset": 0
  299. },
  300. {
  301. "componentType": 5126,
  302. "type": "VEC4",
  303. "count": 161,
  304. "bufferView": 4,
  305. "byteOffset": 0
  306. },
  307. {
  308. "componentType": 5126,
  309. "type": "VEC4",
  310. "count": 161,
  311. "bufferView": 5,
  312. "byteOffset": 0
  313. },
  314. {
  315. "componentType": 5126,
  316. "type": "VEC4",
  317. "count": 161,
  318. "bufferView": 6,
  319. "byteOffset": 0
  320. },
  321. {
  322. "componentType": 5126,
  323. "type": "VEC4",
  324. "count": 161,
  325. "bufferView": 7,
  326. "byteOffset": 0
  327. },
  328. {
  329. "componentType": 5126,
  330. "type": "VEC4",
  331. "count": 161,
  332. "bufferView": 8,
  333. "byteOffset": 0
  334. },
  335. {
  336. "componentType": 5126,
  337. "type": "VEC4",
  338. "count": 161,
  339. "bufferView": 9,
  340. "byteOffset": 0
  341. },
  342. {
  343. "componentType": 5126,
  344. "type": "VEC4",
  345. "count": 161,
  346. "bufferView": 10,
  347. "byteOffset": 0
  348. },
  349. {
  350. "componentType": 5126,
  351. "type": "VEC4",
  352. "count": 161,
  353. "bufferView": 11,
  354. "byteOffset": 0
  355. },
  356. {
  357. "componentType": 5126,
  358. "type": "VEC4",
  359. "count": 161,
  360. "bufferView": 12,
  361. "byteOffset": 0
  362. },
  363. {
  364. "componentType": 5126,
  365. "type": "VEC4",
  366. "count": 161,
  367. "bufferView": 13,
  368. "byteOffset": 0
  369. },
  370. {
  371. "componentType": 5126,
  372. "type": "VEC4",
  373. "count": 161,
  374. "bufferView": 14,
  375. "byteOffset": 0
  376. },
  377. {
  378. "componentType": 5126,
  379. "type": "VEC4",
  380. "count": 161,
  381. "bufferView": 15,
  382. "byteOffset": 0
  383. },
  384. {
  385. "componentType": 5126,
  386. "type": "VEC4",
  387. "count": 161,
  388. "bufferView": 16,
  389. "byteOffset": 0
  390. },
  391. {
  392. "componentType": 5126,
  393. "type": "VEC4",
  394. "count": 161,
  395. "bufferView": 17,
  396. "byteOffset": 0
  397. },
  398. {
  399. "componentType": 5126,
  400. "type": "VEC4",
  401. "count": 161,
  402. "bufferView": 18,
  403. "byteOffset": 0
  404. },
  405. {
  406. "componentType": 5126,
  407. "type": "VEC4",
  408. "count": 161,
  409. "bufferView": 19,
  410. "byteOffset": 0
  411. },
  412. {
  413. "componentType": 5126,
  414. "type": "VEC4",
  415. "count": 161,
  416. "bufferView": 20,
  417. "byteOffset": 0
  418. },
  419. {
  420. "componentType": 5126,
  421. "type": "VEC4",
  422. "count": 161,
  423. "bufferView": 21,
  424. "byteOffset": 0
  425. },
  426. {
  427. "componentType": 5126,
  428. "type": "VEC4",
  429. "count": 161,
  430. "bufferView": 22,
  431. "byteOffset": 0
  432. },
  433. {
  434. "componentType": 5126,
  435. "type": "VEC4",
  436. "count": 161,
  437. "bufferView": 23,
  438. "byteOffset": 0
  439. },
  440. {
  441. "componentType": 5126,
  442. "type": "VEC4",
  443. "count": 161,
  444. "bufferView": 24,
  445. "byteOffset": 0
  446. },
  447. {
  448. "componentType": 5126,
  449. "type": "VEC4",
  450. "count": 161,
  451. "bufferView": 25,
  452. "byteOffset": 0
  453. },
  454. {
  455. "componentType": 5126,
  456. "type": "VEC4",
  457. "count": 161,
  458. "bufferView": 26,
  459. "byteOffset": 0
  460. },
  461. {
  462. "componentType": 5126,
  463. "type": "VEC4",
  464. "count": 161,
  465. "bufferView": 27,
  466. "byteOffset": 0
  467. },
  468. {
  469. "componentType": 5126,
  470. "type": "VEC4",
  471. "count": 161,
  472. "bufferView": 28,
  473. "byteOffset": 0
  474. },
  475. {
  476. "componentType": 5126,
  477. "type": "VEC3",
  478. "count": 161,
  479. "bufferView": 29,
  480. "byteOffset": 0
  481. },
  482. {
  483. "componentType": 5126,
  484. "type": "VEC4",
  485. "count": 161,
  486. "bufferView": 30,
  487. "byteOffset": 0
  488. },
  489. {
  490. "componentType": 5126,
  491. "type": "VEC3",
  492. "count": 161,
  493. "bufferView": 31,
  494. "byteOffset": 0
  495. },
  496. {
  497. "componentType": 5126,
  498. "type": "VEC4",
  499. "count": 161,
  500. "bufferView": 32,
  501. "byteOffset": 0
  502. },
  503. {
  504. "componentType": 5123,
  505. "type": "SCALAR",
  506. "count": 6165,
  507. "bufferView": 33,
  508. "byteOffset": 0
  509. },
  510. {
  511. "componentType": 5126,
  512. "type": "VEC3",
  513. "count": 2759,
  514. "bufferView": 34,
  515. "byteOffset": 0,
  516. "min": [
  517. -81.9805221557617,
  518. 86.7850799560547,
  519. -18.6015281677246
  520. ],
  521. "max": [
  522. 81.9540557861328,
  523. 143.793167114258,
  524. 17.2828502655029
  525. ]
  526. },
  527. {
  528. "componentType": 5126,
  529. "type": "VEC3",
  530. "count": 2759,
  531. "bufferView": 35,
  532. "byteOffset": 0
  533. },
  534. {
  535. "componentType": 5126,
  536. "type": "VEC2",
  537. "count": 2759,
  538. "bufferView": 36,
  539. "byteOffset": 0
  540. },
  541. {
  542. "componentType": 5123,
  543. "type": "VEC4",
  544. "count": 2759,
  545. "bufferView": 37,
  546. "byteOffset": 0
  547. },
  548. {
  549. "componentType": 5126,
  550. "type": "VEC4",
  551. "count": 2759,
  552. "bufferView": 38,
  553. "byteOffset": 0
  554. },
  555. {
  556. "componentType": 5123,
  557. "type": "SCALAR",
  558. "count": 1134,
  559. "bufferView": 39,
  560. "byteOffset": 0
  561. },
  562. {
  563. "componentType": 5126,
  564. "type": "VEC3",
  565. "count": 336,
  566. "bufferView": 40,
  567. "byteOffset": 0,
  568. "min": [
  569. -12.0123357772827,
  570. 151.862823486328,
  571. -8.23231601715088
  572. ],
  573. "max": [
  574. 12.0123262405396,
  575. 174.369445800781,
  576. 16.5866527557373
  577. ]
  578. },
  579. {
  580. "componentType": 5126,
  581. "type": "VEC3",
  582. "count": 336,
  583. "bufferView": 41,
  584. "byteOffset": 0
  585. },
  586. {
  587. "componentType": 5126,
  588. "type": "VEC2",
  589. "count": 336,
  590. "bufferView": 42,
  591. "byteOffset": 0
  592. },
  593. {
  594. "componentType": 5123,
  595. "type": "VEC4",
  596. "count": 336,
  597. "bufferView": 43,
  598. "byteOffset": 0
  599. },
  600. {
  601. "componentType": 5126,
  602. "type": "VEC4",
  603. "count": 336,
  604. "bufferView": 44,
  605. "byteOffset": 0
  606. },
  607. {
  608. "componentType": 5126,
  609. "type": "MAT4",
  610. "count": 49,
  611. "bufferView": 45,
  612. "byteOffset": 0
  613. }
  614. ],
  615. "images": [
  616. {
  617. "name": "AvatarBotA_Tex_Combined.png",
  618. "uri": "Bot_Skinned_img0.png"
  619. },
  620. {
  621. "name": "AvatarBotA_Head_Tex_Combined.png",
  622. "uri": "Bot_Skinned_img1.png"
  623. }
  624. ],
  625. "samplers": [
  626. {}
  627. ],
  628. "textures": [
  629. {
  630. "name": "file5",
  631. "sampler": 0,
  632. "source": 0
  633. },
  634. {
  635. "name": "file6",
  636. "sampler": 0,
  637. "source": 1
  638. }
  639. ],
  640. "materials": [
  641. {
  642. "name": "Bot_BodyHands_mat",
  643. "alphaMode": "OPAQUE",
  644. "pbrMetallicRoughness": {
  645. "baseColorTexture": {
  646. "index": 0,
  647. "texCoord": 0
  648. },
  649. "baseColorFactor": [
  650. 0.800000011920929,
  651. 0.800000011920929,
  652. 0.800000011920929,
  653. 1
  654. ],
  655. "metallicFactor": 0,
  656. "roughnessFactor": 1
  657. }
  658. },
  659. {
  660. "name": "Bot_Head_mat",
  661. "alphaMode": "OPAQUE",
  662. "pbrMetallicRoughness": {
  663. "baseColorTexture": {
  664. "index": 1,
  665. "texCoord": 0
  666. },
  667. "baseColorFactor": [
  668. 1,
  669. 1,
  670. 1,
  671. 1
  672. ],
  673. "metallicFactor": 0,
  674. "roughnessFactor": 1
  675. }
  676. }
  677. ],
  678. "meshes": [
  679. {
  680. "name": "Bot_Skinned",
  681. "primitives": [
  682. {
  683. "material": 0,
  684. "mode": 4,
  685. "attributes": {
  686. "JOINTS_0": 37,
  687. "NORMAL": 35,
  688. "POSITION": 34,
  689. "TEXCOORD_0": 36,
  690. "WEIGHTS_0": 38
  691. },
  692. "indices": 33
  693. },
  694. {
  695. "material": 1,
  696. "mode": 4,
  697. "attributes": {
  698. "JOINTS_0": 43,
  699. "NORMAL": 41,
  700. "POSITION": 40,
  701. "TEXCOORD_0": 42,
  702. "WEIGHTS_0": 44
  703. },
  704. "indices": 39
  705. }
  706. ]
  707. }
  708. ],
  709. "skins": [
  710. {
  711. "joints": [
  712. 1,
  713. 2,
  714. 3,
  715. 4,
  716. 5,
  717. 6,
  718. 7,
  719. 8,
  720. 9,
  721. 10,
  722. 11,
  723. 12,
  724. 13,
  725. 14,
  726. 15,
  727. 16,
  728. 17,
  729. 18,
  730. 19,
  731. 20,
  732. 21,
  733. 22,
  734. 23,
  735. 24,
  736. 25,
  737. 26,
  738. 27,
  739. 28,
  740. 29,
  741. 30,
  742. 31,
  743. 32,
  744. 33,
  745. 34,
  746. 35,
  747. 36,
  748. 37,
  749. 38,
  750. 39,
  751. 40,
  752. 41,
  753. 42,
  754. 43,
  755. 44,
  756. 45,
  757. 46,
  758. 47,
  759. 48,
  760. 49
  761. ],
  762. "inverseBindMatrices": 45,
  763. "skeleton": 1
  764. }
  765. ],
  766. "animations": [
  767. {
  768. "name": "Take 001",
  769. "channels": [
  770. {
  771. "sampler": 0,
  772. "target": {
  773. "node": 5,
  774. "path": "rotation"
  775. }
  776. },
  777. {
  778. "sampler": 1,
  779. "target": {
  780. "node": 6,
  781. "path": "rotation"
  782. }
  783. },
  784. {
  785. "sampler": 2,
  786. "target": {
  787. "node": 8,
  788. "path": "rotation"
  789. }
  790. },
  791. {
  792. "sampler": 3,
  793. "target": {
  794. "node": 9,
  795. "path": "rotation"
  796. }
  797. },
  798. {
  799. "sampler": 4,
  800. "target": {
  801. "node": 10,
  802. "path": "rotation"
  803. }
  804. },
  805. {
  806. "sampler": 5,
  807. "target": {
  808. "node": 12,
  809. "path": "rotation"
  810. }
  811. },
  812. {
  813. "sampler": 6,
  814. "target": {
  815. "node": 13,
  816. "path": "rotation"
  817. }
  818. },
  819. {
  820. "sampler": 7,
  821. "target": {
  822. "node": 14,
  823. "path": "rotation"
  824. }
  825. },
  826. {
  827. "sampler": 8,
  828. "target": {
  829. "node": 16,
  830. "path": "rotation"
  831. }
  832. },
  833. {
  834. "sampler": 9,
  835. "target": {
  836. "node": 17,
  837. "path": "rotation"
  838. }
  839. },
  840. {
  841. "sampler": 10,
  842. "target": {
  843. "node": 18,
  844. "path": "rotation"
  845. }
  846. },
  847. {
  848. "sampler": 11,
  849. "target": {
  850. "node": 20,
  851. "path": "rotation"
  852. }
  853. },
  854. {
  855. "sampler": 12,
  856. "target": {
  857. "node": 21,
  858. "path": "rotation"
  859. }
  860. },
  861. {
  862. "sampler": 13,
  863. "target": {
  864. "node": 22,
  865. "path": "rotation"
  866. }
  867. },
  868. {
  869. "sampler": 14,
  870. "target": {
  871. "node": 26,
  872. "path": "rotation"
  873. }
  874. },
  875. {
  876. "sampler": 15,
  877. "target": {
  878. "node": 27,
  879. "path": "rotation"
  880. }
  881. },
  882. {
  883. "sampler": 16,
  884. "target": {
  885. "node": 29,
  886. "path": "rotation"
  887. }
  888. },
  889. {
  890. "sampler": 17,
  891. "target": {
  892. "node": 30,
  893. "path": "rotation"
  894. }
  895. },
  896. {
  897. "sampler": 18,
  898. "target": {
  899. "node": 31,
  900. "path": "rotation"
  901. }
  902. },
  903. {
  904. "sampler": 19,
  905. "target": {
  906. "node": 33,
  907. "path": "rotation"
  908. }
  909. },
  910. {
  911. "sampler": 20,
  912. "target": {
  913. "node": 34,
  914. "path": "rotation"
  915. }
  916. },
  917. {
  918. "sampler": 21,
  919. "target": {
  920. "node": 35,
  921. "path": "rotation"
  922. }
  923. },
  924. {
  925. "sampler": 22,
  926. "target": {
  927. "node": 37,
  928. "path": "rotation"
  929. }
  930. },
  931. {
  932. "sampler": 23,
  933. "target": {
  934. "node": 38,
  935. "path": "rotation"
  936. }
  937. },
  938. {
  939. "sampler": 24,
  940. "target": {
  941. "node": 39,
  942. "path": "rotation"
  943. }
  944. },
  945. {
  946. "sampler": 25,
  947. "target": {
  948. "node": 41,
  949. "path": "rotation"
  950. }
  951. },
  952. {
  953. "sampler": 26,
  954. "target": {
  955. "node": 42,
  956. "path": "rotation"
  957. }
  958. },
  959. {
  960. "sampler": 27,
  961. "target": {
  962. "node": 43,
  963. "path": "rotation"
  964. }
  965. },
  966. {
  967. "sampler": 28,
  968. "target": {
  969. "node": 48,
  970. "path": "translation"
  971. }
  972. },
  973. {
  974. "sampler": 29,
  975. "target": {
  976. "node": 48,
  977. "path": "rotation"
  978. }
  979. },
  980. {
  981. "sampler": 30,
  982. "target": {
  983. "node": 49,
  984. "path": "translation"
  985. }
  986. },
  987. {
  988. "sampler": 31,
  989. "target": {
  990. "node": 49,
  991. "path": "rotation"
  992. }
  993. }
  994. ],
  995. "samplers": [
  996. {
  997. "input": 0,
  998. "interpolation": "LINEAR",
  999. "output": 1
  1000. },
  1001. {
  1002. "input": 0,
  1003. "interpolation": "LINEAR",
  1004. "output": 2
  1005. },
  1006. {
  1007. "input": 0,
  1008. "interpolation": "LINEAR",
  1009. "output": 3
  1010. },
  1011. {
  1012. "input": 0,
  1013. "interpolation": "LINEAR",
  1014. "output": 4
  1015. },
  1016. {
  1017. "input": 0,
  1018. "interpolation": "LINEAR",
  1019. "output": 5
  1020. },
  1021. {
  1022. "input": 0,
  1023. "interpolation": "LINEAR",
  1024. "output": 6
  1025. },
  1026. {
  1027. "input": 0,
  1028. "interpolation": "LINEAR",
  1029. "output": 7
  1030. },
  1031. {
  1032. "input": 0,
  1033. "interpolation": "LINEAR",
  1034. "output": 8
  1035. },
  1036. {
  1037. "input": 0,
  1038. "interpolation": "LINEAR",
  1039. "output": 9
  1040. },
  1041. {
  1042. "input": 0,
  1043. "interpolation": "LINEAR",
  1044. "output": 10
  1045. },
  1046. {
  1047. "input": 0,
  1048. "interpolation": "LINEAR",
  1049. "output": 11
  1050. },
  1051. {
  1052. "input": 0,
  1053. "interpolation": "LINEAR",
  1054. "output": 12
  1055. },
  1056. {
  1057. "input": 0,
  1058. "interpolation": "LINEAR",
  1059. "output": 13
  1060. },
  1061. {
  1062. "input": 0,
  1063. "interpolation": "LINEAR",
  1064. "output": 14
  1065. },
  1066. {
  1067. "input": 0,
  1068. "interpolation": "LINEAR",
  1069. "output": 15
  1070. },
  1071. {
  1072. "input": 0,
  1073. "interpolation": "LINEAR",
  1074. "output": 16
  1075. },
  1076. {
  1077. "input": 0,
  1078. "interpolation": "LINEAR",
  1079. "output": 17
  1080. },
  1081. {
  1082. "input": 0,
  1083. "interpolation": "LINEAR",
  1084. "output": 18
  1085. },
  1086. {
  1087. "input": 0,
  1088. "interpolation": "LINEAR",
  1089. "output": 19
  1090. },
  1091. {
  1092. "input": 0,
  1093. "interpolation": "LINEAR",
  1094. "output": 20
  1095. },
  1096. {
  1097. "input": 0,
  1098. "interpolation": "LINEAR",
  1099. "output": 21
  1100. },
  1101. {
  1102. "input": 0,
  1103. "interpolation": "LINEAR",
  1104. "output": 22
  1105. },
  1106. {
  1107. "input": 0,
  1108. "interpolation": "LINEAR",
  1109. "output": 23
  1110. },
  1111. {
  1112. "input": 0,
  1113. "interpolation": "LINEAR",
  1114. "output": 24
  1115. },
  1116. {
  1117. "input": 0,
  1118. "interpolation": "LINEAR",
  1119. "output": 25
  1120. },
  1121. {
  1122. "input": 0,
  1123. "interpolation": "LINEAR",
  1124. "output": 26
  1125. },
  1126. {
  1127. "input": 0,
  1128. "interpolation": "LINEAR",
  1129. "output": 27
  1130. },
  1131. {
  1132. "input": 0,
  1133. "interpolation": "LINEAR",
  1134. "output": 28
  1135. },
  1136. {
  1137. "input": 0,
  1138. "interpolation": "LINEAR",
  1139. "output": 29
  1140. },
  1141. {
  1142. "input": 0,
  1143. "interpolation": "LINEAR",
  1144. "output": 30
  1145. },
  1146. {
  1147. "input": 0,
  1148. "interpolation": "LINEAR",
  1149. "output": 31
  1150. },
  1151. {
  1152. "input": 0,
  1153. "interpolation": "LINEAR",
  1154. "output": 32
  1155. }
  1156. ]
  1157. }
  1158. ],
  1159. "nodes": [
  1160. {
  1161. "name": "RootNode",
  1162. "translation": [
  1163. 0,
  1164. 0,
  1165. 0
  1166. ],
  1167. "rotation": [
  1168. 0,
  1169. 0,
  1170. 0,
  1171. 1
  1172. ],
  1173. "scale": [
  1174. 1,
  1175. 1,
  1176. 1
  1177. ],
  1178. "children": [
  1179. 1,
  1180. 50
  1181. ]
  1182. },
  1183. {
  1184. "name": "Hips",
  1185. "translation": [
  1186. 0,
  1187. 1,
  1188. 0
  1189. ],
  1190. "rotation": [
  1191. 0,
  1192. 0,
  1193. 0,
  1194. 1
  1195. ],
  1196. "scale": [
  1197. 0.00999999977648258,
  1198. 0.00999999977648258,
  1199. 0.00999999977648258
  1200. ],
  1201. "children": [
  1202. 2
  1203. ]
  1204. },
  1205. {
  1206. "name": "Chest",
  1207. "translation": [
  1208. 0,
  1209. 33,
  1210. 0
  1211. ],
  1212. "rotation": [
  1213. 0,
  1214. 0,
  1215. 0,
  1216. 1
  1217. ],
  1218. "scale": [
  1219. 1,
  1220. 1,
  1221. 1
  1222. ],
  1223. "children": [
  1224. 3,
  1225. 24,
  1226. 45
  1227. ]
  1228. },
  1229. {
  1230. "name": "RightHand",
  1231. "translation": [
  1232. -65.8264923095703,
  1233. 0,
  1234. 2.53653403836651e-10
  1235. ],
  1236. "rotation": [
  1237. -0.52379697561264,
  1238. -0.475012362003326,
  1239. -0.475012362003326,
  1240. 0.52379697561264
  1241. ],
  1242. "scale": [
  1243. 1,
  1244. 1,
  1245. 1
  1246. ],
  1247. "children": [
  1248. 4,
  1249. 8,
  1250. 12,
  1251. 16,
  1252. 20
  1253. ]
  1254. },
  1255. {
  1256. "name": "RightHandThumb1",
  1257. "translation": [
  1258. 2.75763964653015,
  1259. -2.15007448196411,
  1260. 0
  1261. ],
  1262. "rotation": [
  1263. -0.0845961794257164,
  1264. 0.24460332095623,
  1265. 0.315717250108719,
  1266. 0.912872016429901
  1267. ],
  1268. "scale": [
  1269. 1,
  1270. 1,
  1271. 1
  1272. ],
  1273. "children": [
  1274. 5
  1275. ]
  1276. },
  1277. {
  1278. "name": "RightHandThumb2",
  1279. "translation": [
  1280. -0.193791568279266,
  1281. -3.45449066162109,
  1282. -0.111885614693165
  1283. ],
  1284. "rotation": [
  1285. 0.259822696447372,
  1286. 0.0406266376376152,
  1287. -0.0417451933026314,
  1288. 0.963897824287415
  1289. ],
  1290. "scale": [
  1291. 1,
  1292. 1,
  1293. 1
  1294. ],
  1295. "children": [
  1296. 6
  1297. ]
  1298. },
  1299. {
  1300. "name": "RightHandThumb3",
  1301. "translation": [
  1302. 0.0183828547596931,
  1303. -2.60901737213135,
  1304. 0.604700565338135
  1305. ],
  1306. "rotation": [
  1307. 0.130526185035706,
  1308. -3.11409512388451e-17,
  1309. -2.38952924416889e-17,
  1310. 0.991444885730743
  1311. ],
  1312. "scale": [
  1313. 1,
  1314. 1,
  1315. 1
  1316. ],
  1317. "children": [
  1318. 7
  1319. ]
  1320. },
  1321. {
  1322. "name": "RightHandThumb4",
  1323. "translation": [
  1324. -0.00614145956933498,
  1325. -1.84276032447815,
  1326. 0.275437027215958
  1327. ],
  1328. "rotation": [
  1329. -0.0143108321353793,
  1330. -0.00529135810211301,
  1331. -0.346111297607422,
  1332. 0.938069403171539
  1333. ],
  1334. "scale": [
  1335. 1,
  1336. 1,
  1337. 1
  1338. ]
  1339. },
  1340. {
  1341. "name": "RightHandIndex1",
  1342. "translation": [
  1343. 2.1877007484436,
  1344. -8.50447845458984,
  1345. -0.00400000018998981
  1346. ],
  1347. "rotation": [
  1348. 0.129879087209702,
  1349. 0.00267119123600423,
  1350. 0.0197229869663715,
  1351. 0.991330087184906
  1352. ],
  1353. "scale": [
  1354. 1,
  1355. 1,
  1356. 1
  1357. ],
  1358. "children": [
  1359. 9
  1360. ]
  1361. },
  1362. {
  1363. "name": "RightHandIndex2",
  1364. "translation": [
  1365. 0.0000110285200207727,
  1366. -3.35957384109497,
  1367. -0.000199394213268533
  1368. ],
  1369. "rotation": [
  1370. 0.131140783429146,
  1371. 0.000969027169048786,
  1372. 0.00806150026619434,
  1373. 0.991330504417419
  1374. ],
  1375. "scale": [
  1376. 1,
  1377. 1,
  1378. 1
  1379. ],
  1380. "children": [
  1381. 10
  1382. ]
  1383. },
  1384. {
  1385. "name": "RightHandIndex3",
  1386. "translation": [
  1387. -2.62199250755657e-7,
  1388. -2.57685971260071,
  1389. 1.63709046319127e-11
  1390. ],
  1391. "rotation": [
  1392. 0.130491554737091,
  1393. -0.00300704198889434,
  1394. -0.02284075319767,
  1395. 0.99118173122406
  1396. ],
  1397. "scale": [
  1398. 1,
  1399. 1,
  1400. 1
  1401. ],
  1402. "children": [
  1403. 11
  1404. ]
  1405. },
  1406. {
  1407. "name": "RightHandIndex4",
  1408. "translation": [
  1409. -6.4880941863521e-7,
  1410. -2.16984295845032,
  1411. 1.45519152283669e-11
  1412. ],
  1413. "rotation": [
  1414. 7.44831396559675e-9,
  1415. -1.83785861529451e-10,
  1416. -0.0246648676693439,
  1417. 0.999695777893066
  1418. ],
  1419. "scale": [
  1420. 1,
  1421. 1,
  1422. 1
  1423. ]
  1424. },
  1425. {
  1426. "name": "RightHandMiddle1",
  1427. "translation": [
  1428. -0.00000102776675703353,
  1429. -8.89051723480225,
  1430. 0
  1431. ],
  1432. "rotation": [
  1433. 0.13047268986702,
  1434. -0.00373660982586443,
  1435. -0.0283823702484369,
  1436. 0.991038501262665
  1437. ],
  1438. "scale": [
  1439. 1,
  1440. 1,
  1441. 1
  1442. ],
  1443. "children": [
  1444. 13
  1445. ]
  1446. },
  1447. {
  1448. "name": "RightHandMiddle2",
  1449. "translation": [
  1450. 0.00000185175611022714,
  1451. -3.40467071533203,
  1452. 0
  1453. ],
  1454. "rotation": [
  1455. 0.130523636937141,
  1456. -0.000818223459646106,
  1457. -0.00621502334252,
  1458. 0.991425395011902
  1459. ],
  1460. "scale": [
  1461. 1,
  1462. 1,
  1463. 1
  1464. ],
  1465. "children": [
  1466. 14
  1467. ]
  1468. },
  1469. {
  1470. "name": "RightHandMiddle3",
  1471. "translation": [
  1472. 0.00000105654953586054,
  1473. -2.67793536186218,
  1474. -1.81898940354586e-12
  1475. ],
  1476. "rotation": [
  1477. 0.130522698163986,
  1478. 0.000956544012296945,
  1479. 0.00726567255333066,
  1480. 0.991418242454529
  1481. ],
  1482. "scale": [
  1483. 1,
  1484. 1,
  1485. 1
  1486. ],
  1487. "children": [
  1488. 15
  1489. ]
  1490. },
  1491. {
  1492. "name": "RightHandMiddle4",
  1493. "translation": [
  1494. -0.00000379802463612577,
  1495. -2.63057136535645,
  1496. 6.78955984767526e-8
  1497. ],
  1498. "rotation": [
  1499. 1.82495529799098e-8,
  1500. 3.47519013566e-10,
  1501. 0.0078874584287405,
  1502. 0.999968886375427
  1503. ],
  1504. "scale": [
  1505. 1,
  1506. 1,
  1507. 1
  1508. ]
  1509. },
  1510. {
  1511. "name": "RightHandRing1",
  1512. "translation": [
  1513. -1.72323477268219,
  1514. -8.434814453125,
  1515. 0
  1516. ],
  1517. "rotation": [
  1518. 0.130034267902374,
  1519. -0.0113214813172817,
  1520. -0.085995189845562,
  1521. 0.987708330154419
  1522. ],
  1523. "scale": [
  1524. 1,
  1525. 1,
  1526. 1
  1527. ],
  1528. "children": [
  1529. 17
  1530. ]
  1531. },
  1532. {
  1533. "name": "RightHandRing2",
  1534. "translation": [
  1535. 0.00000497117707709549,
  1536. -2.92135119438171,
  1537. 0
  1538. ],
  1539. "rotation": [
  1540. 0.130523890256882,
  1541. 0.000776301021687686,
  1542. 0.00589659111574292,
  1543. 0.991427302360535
  1544. ],
  1545. "scale": [
  1546. 1,
  1547. 1,
  1548. 1
  1549. ],
  1550. "children": [
  1551. 18
  1552. ]
  1553. },
  1554. {
  1555. "name": "RightHandRing3",
  1556. "translation": [
  1557. -0.00000425719008489978,
  1558. -2.7104823589325,
  1559. -1.81898940354586e-12
  1560. ],
  1561. "rotation": [
  1562. 0.130523800849915,
  1563. -0.000789301353506744,
  1564. -0.0059953392483294,
  1565. 0.991426706314087
  1566. ],
  1567. "scale": [
  1568. 1,
  1569. 1,
  1570. 1
  1571. ],
  1572. "children": [
  1573. 19
  1574. ]
  1575. },
  1576. {
  1577. "name": "RightHandRing4",
  1578. "translation": [
  1579. -0.00000167088660418813,
  1580. -2.41632723808289,
  1581. 0
  1582. ],
  1583. "rotation": [
  1584. -2.85607333715533e-17,
  1585. 4.32810741164245e-17,
  1586. 0.067211352288723,
  1587. 0.997738778591156
  1588. ],
  1589. "scale": [
  1590. 1,
  1591. 1,
  1592. 1
  1593. ]
  1594. },
  1595. {
  1596. "name": "RightHandPinky1",
  1597. "translation": [
  1598. -3.45131826400757,
  1599. -7.36873292922974,
  1600. 0
  1601. ],
  1602. "rotation": [
  1603. 0.128799960017204,
  1604. -0.0211579278111458,
  1605. -0.160710424184799,
  1606. 0.978332817554474
  1607. ],
  1608. "scale": [
  1609. 1,
  1610. 1,
  1611. 1
  1612. ],
  1613. "children": [
  1614. 21
  1615. ]
  1616. },
  1617. {
  1618. "name": "RightHandPinky2",
  1619. "translation": [
  1620. 0.00000714437692295178,
  1621. -3.33492231369019,
  1622. -1.81898940354586e-12
  1623. ],
  1624. "rotation": [
  1625. 0.130520552396774,
  1626. 0.00121425895486027,
  1627. 0.00922321155667305,
  1628. 0.991401970386505
  1629. ],
  1630. "scale": [
  1631. 1,
  1632. 1,
  1633. 1
  1634. ],
  1635. "children": [
  1636. 22
  1637. ]
  1638. },
  1639. {
  1640. "name": "RightHandPinky3",
  1641. "translation": [
  1642. -0.00000604431488682167,
  1643. -1.95470726490021,
  1644. 5.04514900967479e-8
  1645. ],
  1646. "rotation": [
  1647. 0.13052274286747,
  1648. -0.0009512152755633,
  1649. -0.00722519494593143,
  1650. 0.991418540477753
  1651. ],
  1652. "scale": [
  1653. 1,
  1654. 1,
  1655. 1
  1656. ],
  1657. "children": [
  1658. 23
  1659. ]
  1660. },
  1661. {
  1662. "name": "RightHandPinky4",
  1663. "translation": [
  1664. 0.00000762369018048048,
  1665. -1.84980952739716,
  1666. 1.02871126728132e-7
  1667. ],
  1668. "rotation": [
  1669. 2.44651445768795e-8,
  1670. 1.11148032999608e-8,
  1671. 0.140648439526558,
  1672. 0.990059614181519
  1673. ],
  1674. "scale": [
  1675. 1,
  1676. 1,
  1677. 1
  1678. ]
  1679. },
  1680. {
  1681. "name": "LeftHand",
  1682. "translation": [
  1683. 65.8000030517578,
  1684. 0,
  1685. 0
  1686. ],
  1687. "rotation": [
  1688. 0.52379697561264,
  1689. 0.475012362003326,
  1690. -0.475012362003326,
  1691. 0.52379697561264
  1692. ],
  1693. "scale": [
  1694. 1,
  1695. 1,
  1696. 1
  1697. ],
  1698. "children": [
  1699. 25,
  1700. 29,
  1701. 33,
  1702. 37,
  1703. 41
  1704. ]
  1705. },
  1706. {
  1707. "name": "LeftHandThumb1",
  1708. "translation": [
  1709. -2.7576425075531,
  1710. 2.15009140968323,
  1711. -1.09139364212751e-11
  1712. ],
  1713. "rotation": [
  1714. -0.0845961794257164,
  1715. 0.24460332095623,
  1716. 0.315717250108719,
  1717. 0.912872016429901
  1718. ],
  1719. "scale": [
  1720. 1,
  1721. 1,
  1722. 1
  1723. ],
  1724. "children": [
  1725. 26
  1726. ]
  1727. },
  1728. {
  1729. "name": "LeftHandThumb2",
  1730. "translation": [
  1731. 0.193819507956505,
  1732. 3.45451331138611,
  1733. 0.111901737749577
  1734. ],
  1735. "rotation": [
  1736. 0.258741647005081,
  1737. 0.0406734235584736,
  1738. -0.0416996106505394,
  1739. 0.964188575744629
  1740. ],
  1741. "scale": [
  1742. 1,
  1743. 1,
  1744. 1
  1745. ],
  1746. "children": [
  1747. 27
  1748. ]
  1749. },
  1750. {
  1751. "name": "LeftHandThumb3",
  1752. "translation": [
  1753. -0.018382428213954,
  1754. 2.60901665687561,
  1755. -0.604700148105621
  1756. ],
  1757. "rotation": [
  1758. 0.130526185035706,
  1759. 8.98000309354021e-17,
  1760. 4.41677554847997e-17,
  1761. 0.991444885730743
  1762. ],
  1763. "scale": [
  1764. 1,
  1765. 1,
  1766. 1
  1767. ],
  1768. "children": [
  1769. 28
  1770. ]
  1771. },
  1772. {
  1773. "name": "LeftHandThumb4",
  1774. "translation": [
  1775. 0.00620248122140765,
  1776. 1.84271383285522,
  1777. -0.275547921657562
  1778. ],
  1779. "rotation": [
  1780. -0.0143108321353793,
  1781. -0.00529135810211301,
  1782. -0.346111297607422,
  1783. 0.938069403171539
  1784. ],
  1785. "scale": [
  1786. 1,
  1787. 1,
  1788. 1
  1789. ]
  1790. },
  1791. {
  1792. "name": "LeftHandIndex1",
  1793. "translation": [
  1794. -2.18770694732666,
  1795. 8.50446128845215,
  1796. 0.00419948389753699
  1797. ],
  1798. "rotation": [
  1799. 0.129879087209702,
  1800. 0.00267119123600423,
  1801. 0.0197229869663715,
  1802. 0.991330087184906
  1803. ],
  1804. "scale": [
  1805. 1,
  1806. 1,
  1807. 1
  1808. ],
  1809. "children": [
  1810. 30
  1811. ]
  1812. },
  1813. {
  1814. "name": "LeftHandIndex2",
  1815. "translation": [
  1816. -1.13686837721616e-13,
  1817. 3.35964441299438,
  1818. 1.81898940354586e-12
  1819. ],
  1820. "rotation": [
  1821. 0.131140783429146,
  1822. 0.000969027169048786,
  1823. 0.00806150026619434,
  1824. 0.991330504417419
  1825. ],
  1826. "scale": [
  1827. 1,
  1828. 1,
  1829. 1
  1830. ],
  1831. "children": [
  1832. 31
  1833. ]
  1834. },
  1835. {
  1836. "name": "LeftHandIndex3",
  1837. "translation": [
  1838. 0,
  1839. 2.57680535316467,
  1840. 0
  1841. ],
  1842. "rotation": [
  1843. 0.130491554737091,
  1844. -0.00300704198889434,
  1845. -0.02284075319767,
  1846. 0.99118173122406
  1847. ],
  1848. "scale": [
  1849. 1,
  1850. 1,
  1851. 1
  1852. ],
  1853. "children": [
  1854. 32
  1855. ]
  1856. },
  1857. {
  1858. "name": "LeftHandIndex4",
  1859. "translation": [
  1860. -1.13686837721616e-13,
  1861. 2.16987800598145,
  1862. 0
  1863. ],
  1864. "rotation": [
  1865. 4.28986164068626e-18,
  1866. 6.83516462791247e-18,
  1867. -0.0246648676693439,
  1868. 0.999695777893066
  1869. ],
  1870. "scale": [
  1871. 1,
  1872. 1,
  1873. 1
  1874. ]
  1875. },
  1876. {
  1877. "name": "LeftHandMiddle1",
  1878. "translation": [
  1879. 0,
  1880. 8.89050388336182,
  1881. 4.54747350886464e-11
  1882. ],
  1883. "rotation": [
  1884. 0.13047268986702,
  1885. -0.00373660982586443,
  1886. -0.0283823702484369,
  1887. 0.991038501262665
  1888. ],
  1889. "scale": [
  1890. 1,
  1891. 1,
  1892. 1
  1893. ],
  1894. "children": [
  1895. 34
  1896. ]
  1897. },
  1898. {
  1899. "name": "LeftHandMiddle2",
  1900. "translation": [
  1901. -5.6843418860808e-14,
  1902. 3.40468168258667,
  1903. 2.36468622460961e-11
  1904. ],
  1905. "rotation": [
  1906. 0.13052362203598,
  1907. -0.000818223343230784,
  1908. -0.00621502334252,
  1909. 0.991425395011902
  1910. ],
  1911. "scale": [
  1912. 1,
  1913. 1,
  1914. 1
  1915. ],
  1916. "children": [
  1917. 35
  1918. ]
  1919. },
  1920. {
  1921. "name": "LeftHandMiddle3",
  1922. "translation": [
  1923. -2.8421709430404e-14,
  1924. 2.67797994613647,
  1925. 3.63797880709171e-12
  1926. ],
  1927. "rotation": [
  1928. 0.130522683262825,
  1929. 0.000956543954089284,
  1930. 0.00726567255333066,
  1931. 0.991418242454529
  1932. ],
  1933. "scale": [
  1934. 1,
  1935. 1,
  1936. 1
  1937. ],
  1938. "children": [
  1939. 36
  1940. ]
  1941. },
  1942. {
  1943. "name": "LeftHandMiddle4",
  1944. "translation": [
  1945. 0,
  1946. 2.63050961494446,
  1947. -1.81898940354586e-12
  1948. ],
  1949. "rotation": [
  1950. -6.30038723337714e-17,
  1951. 1.23782160635548e-18,
  1952. 0.0078874584287405,
  1953. 0.999968886375427
  1954. ],
  1955. "scale": [
  1956. 1,
  1957. 1,
  1958. 1
  1959. ]
  1960. },
  1961. {
  1962. "name": "LeftHandRing1",
  1963. "translation": [
  1964. 1.72323560714722,
  1965. 8.4348258972168,
  1966. 6.00266503170133e-11
  1967. ],
  1968. "rotation": [
  1969. 0.130034267902374,
  1970. -0.0113214813172817,
  1971. -0.085995189845562,
  1972. 0.987708330154419
  1973. ],
  1974. "scale": [
  1975. 1,
  1976. 1,
  1977. 1
  1978. ],
  1979. "children": [
  1980. 38
  1981. ]
  1982. },
  1983. {
  1984. "name": "LeftHandRing2",
  1985. "translation": [
  1986. 0,
  1987. 2.92133402824402,
  1988. 2.36468622460961e-11
  1989. ],
  1990. "rotation": [
  1991. 0.130523890256882,
  1992. 0.000776300963480026,
  1993. 0.00589659111574292,
  1994. 0.991427302360535
  1995. ],
  1996. "scale": [
  1997. 1,
  1998. 1,
  1999. 1
  2000. ],
  2001. "children": [
  2002. 39
  2003. ]
  2004. },
  2005. {
  2006. "name": "LeftHandRing3",
  2007. "translation": [
  2008. 0,
  2009. 2.71053099632263,
  2010. 0
  2011. ],
  2012. "rotation": [
  2013. 0.130523800849915,
  2014. -0.000789301353506744,
  2015. -0.0059953392483294,
  2016. 0.991426706314087
  2017. ],
  2018. "scale": [
  2019. 1,
  2020. 1,
  2021. 1
  2022. ],
  2023. "children": [
  2024. 40
  2025. ]
  2026. },
  2027. {
  2028. "name": "LeftHandRing4",
  2029. "translation": [
  2030. 0,
  2031. 2.4163134098053,
  2032. 1.81898940354586e-12
  2033. ],
  2034. "rotation": [
  2035. 5.34889858011413e-17,
  2036. -6.82871510067639e-18,
  2037. 0.067211352288723,
  2038. 0.997738778591156
  2039. ],
  2040. "scale": [
  2041. 1,
  2042. 1,
  2043. 1
  2044. ]
  2045. },
  2046. {
  2047. "name": "LeftHandPinky1",
  2048. "translation": [
  2049. 3.45132112503052,
  2050. 7.36876058578491,
  2051. 6.54836185276508e-11
  2052. ],
  2053. "rotation": [
  2054. 0.128799960017204,
  2055. -0.0211579278111458,
  2056. -0.160710424184799,
  2057. 0.978332817554474
  2058. ],
  2059. "scale": [
  2060. 1,
  2061. 1,
  2062. 1
  2063. ],
  2064. "children": [
  2065. 42
  2066. ]
  2067. },
  2068. {
  2069. "name": "LeftHandPinky2",
  2070. "translation": [
  2071. 0,
  2072. 3.33487010002136,
  2073. 3.09228198602796e-11
  2074. ],
  2075. "rotation": [
  2076. 0.130520537495613,
  2077. 0.00121425883844495,
  2078. 0.00922321155667305,
  2079. 0.991401970386505
  2080. ],
  2081. "scale": [
  2082. 1,
  2083. 1,
  2084. 1
  2085. ],
  2086. "children": [
  2087. 43
  2088. ]
  2089. },
  2090. {
  2091. "name": "LeftHandPinky3",
  2092. "translation": [
  2093. 2.27373675443232e-13,
  2094. 1.95477187633514,
  2095. 1.81898940354586e-12
  2096. ],
  2097. "rotation": [
  2098. 0.130522727966309,
  2099. -0.000951214926317334,
  2100. -0.00722519494593143,
  2101. 0.991418540477753
  2102. ],
  2103. "scale": [
  2104. 1,
  2105. 1,
  2106. 1
  2107. ],
  2108. "children": [
  2109. 44
  2110. ]
  2111. },
  2112. {
  2113. "name": "LeftHandPinky4",
  2114. "translation": [
  2115. 0,
  2116. 1.84976482391357,
  2117. 1.81898940354586e-12
  2118. ],
  2119. "rotation": [
  2120. 8.82180761380352e-18,
  2121. -1.27638923328801e-17,
  2122. 0.140648439526558,
  2123. 0.990059614181519
  2124. ],
  2125. "scale": [
  2126. 1,
  2127. 1,
  2128. 1
  2129. ]
  2130. },
  2131. {
  2132. "name": "Neck",
  2133. "translation": [
  2134. -2.09076530502568e-16,
  2135. 14.3466949462891,
  2136. -3.28626015289046e-14
  2137. ],
  2138. "rotation": [
  2139. 0,
  2140. 0,
  2141. 0,
  2142. 1
  2143. ],
  2144. "scale": [
  2145. 1,
  2146. 1,
  2147. 1
  2148. ],
  2149. "children": [
  2150. 46
  2151. ]
  2152. },
  2153. {
  2154. "name": "Head",
  2155. "translation": [
  2156. -1.72115390890012e-17,
  2157. 9.05494976043701,
  2158. 2.07404236001782e-16
  2159. ],
  2160. "rotation": [
  2161. -6.93889390390723e-18,
  2162. 1.27054942088145e-20,
  2163. 1.0842021724855e-19,
  2164. 1
  2165. ],
  2166. "scale": [
  2167. 1,
  2168. 1,
  2169. 1
  2170. ],
  2171. "children": [
  2172. 47,
  2173. 48,
  2174. 49
  2175. ]
  2176. },
  2177. {
  2178. "name": "HeadTop_End",
  2179. "translation": [
  2180. -2.66453525910038e-15,
  2181. 17.8367767333984,
  2182. -4.03896783473158e-28
  2183. ],
  2184. "rotation": [
  2185. 0,
  2186. 0,
  2187. 1.76324152623343e-37,
  2188. 1
  2189. ],
  2190. "scale": [
  2191. 1,
  2192. 1,
  2193. 1
  2194. ]
  2195. },
  2196. {
  2197. "name": "RightEye",
  2198. "translation": [
  2199. -6.14273977279663,
  2200. 6.2331337928772,
  2201. 13.0336484909058
  2202. ],
  2203. "rotation": [
  2204. -6.938892249546e-18,
  2205. -1.36491360355013e-20,
  2206. 0.00379808945581317,
  2207. 0.999992787837982
  2208. ],
  2209. "scale": [
  2210. 1,
  2211. 1,
  2212. 1
  2213. ]
  2214. },
  2215. {
  2216. "name": "LeftEye",
  2217. "translation": [
  2218. 6.14274263381958,
  2219. 6.2331337928772,
  2220. 13.0336484909058
  2221. ],
  2222. "rotation": [
  2223. -6.938892249546e-18,
  2224. -1.36491360355013e-20,
  2225. 0.00379808945581317,
  2226. 0.999992787837982
  2227. ],
  2228. "scale": [
  2229. 1,
  2230. 1,
  2231. 1
  2232. ]
  2233. },
  2234. {
  2235. "name": "Bot_Skinned",
  2236. "translation": [
  2237. 0,
  2238. 0,
  2239. 0
  2240. ],
  2241. "rotation": [
  2242. 0,
  2243. 0,
  2244. 0,
  2245. 1
  2246. ],
  2247. "scale": [
  2248. 0.00999999977648258,
  2249. 0.00999999977648258,
  2250. 0.00999999977648258
  2251. ],
  2252. "mesh": 0,
  2253. "skin": 0
  2254. }
  2255. ]
  2256. }