monster.gltf 104 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408
  1. {
  2. "accessors": {
  3. "IBM_Armature_monster-skin": {
  4. "bufferView": "bufferView_170",
  5. "byteOffset": 0,
  6. "componentType": 5126,
  7. "count": 32,
  8. "type": "MAT4"
  9. },
  10. "accessor_164": {
  11. "bufferView": "bufferView_172",
  12. "byteOffset": 84864,
  13. "byteStride": 16,
  14. "componentType": 5126,
  15. "count": 2652,
  16. "max": [
  17. 1,
  18. 0.9999979734420776,
  19. 0.9997379779815674,
  20. 0.9927020072937012
  21. ],
  22. "min": [
  23. 0.0000019999999949504854,
  24. 0,
  25. 0,
  26. 0
  27. ],
  28. "type": "VEC4"
  29. },
  30. "accessor_167": {
  31. "bufferView": "bufferView_172",
  32. "byteOffset": 127296,
  33. "byteStride": 16,
  34. "componentType": 5126,
  35. "count": 2652,
  36. "max": [
  37. 30,
  38. 30,
  39. 29,
  40. 24
  41. ],
  42. "min": [
  43. 0,
  44. 0,
  45. 0,
  46. 0
  47. ],
  48. "type": "VEC4"
  49. },
  50. "accessor_21": {
  51. "bufferView": "bufferView_171",
  52. "byteOffset": 0,
  53. "byteStride": 0,
  54. "componentType": 5123,
  55. "count": 2652,
  56. "type": "SCALAR"
  57. },
  58. "accessor_23": {
  59. "bufferView": "bufferView_172",
  60. "byteOffset": 0,
  61. "byteStride": 12,
  62. "componentType": 5126,
  63. "count": 2652,
  64. "max": [
  65. 7.3130998611450195,
  66. 25.414899826049805,
  67. 33.436100006103516
  68. ],
  69. "min": [
  70. -15.450699806213379,
  71. -33.22119903564453,
  72. -1.280419945716858
  73. ],
  74. "type": "VEC3"
  75. },
  76. "accessor_25": {
  77. "bufferView": "bufferView_172",
  78. "byteOffset": 31824,
  79. "byteStride": 12,
  80. "componentType": 5126,
  81. "count": 2652,
  82. "max": [
  83. 0.9988759756088257,
  84. 0.9998819828033447,
  85. 0.9998160004615784
  86. ],
  87. "min": [
  88. -0.9988759756088257,
  89. -0.9980310201644897,
  90. -0.999826967716217
  91. ],
  92. "type": "VEC3"
  93. },
  94. "accessor_27": {
  95. "bufferView": "bufferView_172",
  96. "byteOffset": 63648,
  97. "byteStride": 8,
  98. "componentType": 5126,
  99. "count": 2652,
  100. "max": [
  101. 1.0096099376678467,
  102. 0.9916410446166992
  103. ],
  104. "min": [
  105. 0.005085940007120371,
  106. -0.07434999942779541
  107. ],
  108. "type": "VEC2"
  109. },
  110. "animAccessor_0": {
  111. "bufferView": "bufferView_170",
  112. "byteOffset": 2048,
  113. "componentType": 5126,
  114. "count": 101,
  115. "type": "SCALAR"
  116. },
  117. "animAccessor_1": {
  118. "bufferView": "bufferView_170",
  119. "byteOffset": 2452,
  120. "componentType": 5126,
  121. "count": 101,
  122. "type": "VEC3"
  123. },
  124. "animAccessor_10": {
  125. "bufferView": "bufferView_170",
  126. "byteOffset": 14572,
  127. "componentType": 5126,
  128. "count": 101,
  129. "type": "VEC3"
  130. },
  131. "animAccessor_11": {
  132. "bufferView": "bufferView_170",
  133. "byteOffset": 15784,
  134. "componentType": 5126,
  135. "count": 101,
  136. "type": "VEC3"
  137. },
  138. "animAccessor_12": {
  139. "bufferView": "bufferView_170",
  140. "byteOffset": 16996,
  141. "componentType": 5126,
  142. "count": 101,
  143. "type": "VEC4"
  144. },
  145. "animAccessor_13": {
  146. "bufferView": "bufferView_170",
  147. "byteOffset": 18612,
  148. "componentType": 5126,
  149. "count": 101,
  150. "type": "VEC3"
  151. },
  152. "animAccessor_14": {
  153. "bufferView": "bufferView_170",
  154. "byteOffset": 19824,
  155. "componentType": 5126,
  156. "count": 101,
  157. "type": "VEC3"
  158. },
  159. "animAccessor_15": {
  160. "bufferView": "bufferView_170",
  161. "byteOffset": 21036,
  162. "componentType": 5126,
  163. "count": 101,
  164. "type": "VEC4"
  165. },
  166. "animAccessor_16": {
  167. "bufferView": "bufferView_170",
  168. "byteOffset": 22652,
  169. "componentType": 5126,
  170. "count": 101,
  171. "type": "VEC3"
  172. },
  173. "animAccessor_17": {
  174. "bufferView": "bufferView_170",
  175. "byteOffset": 23864,
  176. "componentType": 5126,
  177. "count": 101,
  178. "type": "VEC3"
  179. },
  180. "animAccessor_18": {
  181. "bufferView": "bufferView_170",
  182. "byteOffset": 25076,
  183. "componentType": 5126,
  184. "count": 101,
  185. "type": "VEC4"
  186. },
  187. "animAccessor_19": {
  188. "bufferView": "bufferView_170",
  189. "byteOffset": 26692,
  190. "componentType": 5126,
  191. "count": 101,
  192. "type": "VEC3"
  193. },
  194. "animAccessor_2": {
  195. "bufferView": "bufferView_170",
  196. "byteOffset": 3664,
  197. "componentType": 5126,
  198. "count": 101,
  199. "type": "VEC3"
  200. },
  201. "animAccessor_20": {
  202. "bufferView": "bufferView_170",
  203. "byteOffset": 27904,
  204. "componentType": 5126,
  205. "count": 101,
  206. "type": "VEC3"
  207. },
  208. "animAccessor_21": {
  209. "bufferView": "bufferView_170",
  210. "byteOffset": 29116,
  211. "componentType": 5126,
  212. "count": 101,
  213. "type": "VEC4"
  214. },
  215. "animAccessor_22": {
  216. "bufferView": "bufferView_170",
  217. "byteOffset": 30732,
  218. "componentType": 5126,
  219. "count": 101,
  220. "type": "VEC3"
  221. },
  222. "animAccessor_23": {
  223. "bufferView": "bufferView_170",
  224. "byteOffset": 31944,
  225. "componentType": 5126,
  226. "count": 101,
  227. "type": "VEC3"
  228. },
  229. "animAccessor_24": {
  230. "bufferView": "bufferView_170",
  231. "byteOffset": 33156,
  232. "componentType": 5126,
  233. "count": 101,
  234. "type": "VEC4"
  235. },
  236. "animAccessor_25": {
  237. "bufferView": "bufferView_170",
  238. "byteOffset": 34772,
  239. "componentType": 5126,
  240. "count": 101,
  241. "type": "VEC3"
  242. },
  243. "animAccessor_26": {
  244. "bufferView": "bufferView_170",
  245. "byteOffset": 35984,
  246. "componentType": 5126,
  247. "count": 101,
  248. "type": "VEC3"
  249. },
  250. "animAccessor_27": {
  251. "bufferView": "bufferView_170",
  252. "byteOffset": 37196,
  253. "componentType": 5126,
  254. "count": 101,
  255. "type": "VEC4"
  256. },
  257. "animAccessor_28": {
  258. "bufferView": "bufferView_170",
  259. "byteOffset": 38812,
  260. "componentType": 5126,
  261. "count": 101,
  262. "type": "VEC3"
  263. },
  264. "animAccessor_29": {
  265. "bufferView": "bufferView_170",
  266. "byteOffset": 40024,
  267. "componentType": 5126,
  268. "count": 101,
  269. "type": "VEC3"
  270. },
  271. "animAccessor_3": {
  272. "bufferView": "bufferView_170",
  273. "byteOffset": 4876,
  274. "componentType": 5126,
  275. "count": 101,
  276. "type": "VEC4"
  277. },
  278. "animAccessor_30": {
  279. "bufferView": "bufferView_170",
  280. "byteOffset": 41236,
  281. "componentType": 5126,
  282. "count": 101,
  283. "type": "VEC4"
  284. },
  285. "animAccessor_31": {
  286. "bufferView": "bufferView_170",
  287. "byteOffset": 42852,
  288. "componentType": 5126,
  289. "count": 101,
  290. "type": "VEC3"
  291. },
  292. "animAccessor_32": {
  293. "bufferView": "bufferView_170",
  294. "byteOffset": 44064,
  295. "componentType": 5126,
  296. "count": 101,
  297. "type": "VEC3"
  298. },
  299. "animAccessor_33": {
  300. "bufferView": "bufferView_170",
  301. "byteOffset": 45276,
  302. "componentType": 5126,
  303. "count": 101,
  304. "type": "VEC4"
  305. },
  306. "animAccessor_34": {
  307. "bufferView": "bufferView_170",
  308. "byteOffset": 46892,
  309. "componentType": 5126,
  310. "count": 101,
  311. "type": "VEC3"
  312. },
  313. "animAccessor_35": {
  314. "bufferView": "bufferView_170",
  315. "byteOffset": 48104,
  316. "componentType": 5126,
  317. "count": 101,
  318. "type": "VEC3"
  319. },
  320. "animAccessor_36": {
  321. "bufferView": "bufferView_170",
  322. "byteOffset": 49316,
  323. "componentType": 5126,
  324. "count": 101,
  325. "type": "VEC4"
  326. },
  327. "animAccessor_37": {
  328. "bufferView": "bufferView_170",
  329. "byteOffset": 50932,
  330. "componentType": 5126,
  331. "count": 101,
  332. "type": "VEC3"
  333. },
  334. "animAccessor_38": {
  335. "bufferView": "bufferView_170",
  336. "byteOffset": 52144,
  337. "componentType": 5126,
  338. "count": 101,
  339. "type": "VEC3"
  340. },
  341. "animAccessor_39": {
  342. "bufferView": "bufferView_170",
  343. "byteOffset": 53356,
  344. "componentType": 5126,
  345. "count": 101,
  346. "type": "VEC4"
  347. },
  348. "animAccessor_4": {
  349. "bufferView": "bufferView_170",
  350. "byteOffset": 6492,
  351. "componentType": 5126,
  352. "count": 101,
  353. "type": "VEC3"
  354. },
  355. "animAccessor_40": {
  356. "bufferView": "bufferView_170",
  357. "byteOffset": 54972,
  358. "componentType": 5126,
  359. "count": 101,
  360. "type": "VEC3"
  361. },
  362. "animAccessor_41": {
  363. "bufferView": "bufferView_170",
  364. "byteOffset": 56184,
  365. "componentType": 5126,
  366. "count": 101,
  367. "type": "VEC3"
  368. },
  369. "animAccessor_42": {
  370. "bufferView": "bufferView_170",
  371. "byteOffset": 57396,
  372. "componentType": 5126,
  373. "count": 101,
  374. "type": "VEC4"
  375. },
  376. "animAccessor_43": {
  377. "bufferView": "bufferView_170",
  378. "byteOffset": 59012,
  379. "componentType": 5126,
  380. "count": 101,
  381. "type": "VEC3"
  382. },
  383. "animAccessor_44": {
  384. "bufferView": "bufferView_170",
  385. "byteOffset": 60224,
  386. "componentType": 5126,
  387. "count": 101,
  388. "type": "VEC3"
  389. },
  390. "animAccessor_45": {
  391. "bufferView": "bufferView_170",
  392. "byteOffset": 61436,
  393. "componentType": 5126,
  394. "count": 101,
  395. "type": "VEC4"
  396. },
  397. "animAccessor_46": {
  398. "bufferView": "bufferView_170",
  399. "byteOffset": 63052,
  400. "componentType": 5126,
  401. "count": 101,
  402. "type": "VEC3"
  403. },
  404. "animAccessor_47": {
  405. "bufferView": "bufferView_170",
  406. "byteOffset": 64264,
  407. "componentType": 5126,
  408. "count": 101,
  409. "type": "VEC3"
  410. },
  411. "animAccessor_48": {
  412. "bufferView": "bufferView_170",
  413. "byteOffset": 65476,
  414. "componentType": 5126,
  415. "count": 101,
  416. "type": "VEC4"
  417. },
  418. "animAccessor_49": {
  419. "bufferView": "bufferView_170",
  420. "byteOffset": 67092,
  421. "componentType": 5126,
  422. "count": 101,
  423. "type": "VEC3"
  424. },
  425. "animAccessor_5": {
  426. "bufferView": "bufferView_170",
  427. "byteOffset": 7704,
  428. "componentType": 5126,
  429. "count": 101,
  430. "type": "VEC3"
  431. },
  432. "animAccessor_50": {
  433. "bufferView": "bufferView_170",
  434. "byteOffset": 68304,
  435. "componentType": 5126,
  436. "count": 101,
  437. "type": "VEC3"
  438. },
  439. "animAccessor_51": {
  440. "bufferView": "bufferView_170",
  441. "byteOffset": 69516,
  442. "componentType": 5126,
  443. "count": 101,
  444. "type": "VEC4"
  445. },
  446. "animAccessor_52": {
  447. "bufferView": "bufferView_170",
  448. "byteOffset": 71132,
  449. "componentType": 5126,
  450. "count": 101,
  451. "type": "VEC3"
  452. },
  453. "animAccessor_53": {
  454. "bufferView": "bufferView_170",
  455. "byteOffset": 72344,
  456. "componentType": 5126,
  457. "count": 101,
  458. "type": "VEC3"
  459. },
  460. "animAccessor_54": {
  461. "bufferView": "bufferView_170",
  462. "byteOffset": 73556,
  463. "componentType": 5126,
  464. "count": 101,
  465. "type": "VEC4"
  466. },
  467. "animAccessor_55": {
  468. "bufferView": "bufferView_170",
  469. "byteOffset": 75172,
  470. "componentType": 5126,
  471. "count": 101,
  472. "type": "VEC3"
  473. },
  474. "animAccessor_56": {
  475. "bufferView": "bufferView_170",
  476. "byteOffset": 76384,
  477. "componentType": 5126,
  478. "count": 101,
  479. "type": "VEC3"
  480. },
  481. "animAccessor_57": {
  482. "bufferView": "bufferView_170",
  483. "byteOffset": 77596,
  484. "componentType": 5126,
  485. "count": 101,
  486. "type": "VEC4"
  487. },
  488. "animAccessor_58": {
  489. "bufferView": "bufferView_170",
  490. "byteOffset": 79212,
  491. "componentType": 5126,
  492. "count": 101,
  493. "type": "VEC3"
  494. },
  495. "animAccessor_59": {
  496. "bufferView": "bufferView_170",
  497. "byteOffset": 80424,
  498. "componentType": 5126,
  499. "count": 101,
  500. "type": "VEC3"
  501. },
  502. "animAccessor_6": {
  503. "bufferView": "bufferView_170",
  504. "byteOffset": 8916,
  505. "componentType": 5126,
  506. "count": 101,
  507. "type": "VEC4"
  508. },
  509. "animAccessor_60": {
  510. "bufferView": "bufferView_170",
  511. "byteOffset": 81636,
  512. "componentType": 5126,
  513. "count": 101,
  514. "type": "VEC4"
  515. },
  516. "animAccessor_61": {
  517. "bufferView": "bufferView_170",
  518. "byteOffset": 83252,
  519. "componentType": 5126,
  520. "count": 101,
  521. "type": "VEC3"
  522. },
  523. "animAccessor_62": {
  524. "bufferView": "bufferView_170",
  525. "byteOffset": 84464,
  526. "componentType": 5126,
  527. "count": 101,
  528. "type": "VEC3"
  529. },
  530. "animAccessor_63": {
  531. "bufferView": "bufferView_170",
  532. "byteOffset": 85676,
  533. "componentType": 5126,
  534. "count": 101,
  535. "type": "VEC4"
  536. },
  537. "animAccessor_64": {
  538. "bufferView": "bufferView_170",
  539. "byteOffset": 87292,
  540. "componentType": 5126,
  541. "count": 101,
  542. "type": "VEC3"
  543. },
  544. "animAccessor_65": {
  545. "bufferView": "bufferView_170",
  546. "byteOffset": 88504,
  547. "componentType": 5126,
  548. "count": 101,
  549. "type": "VEC3"
  550. },
  551. "animAccessor_66": {
  552. "bufferView": "bufferView_170",
  553. "byteOffset": 89716,
  554. "componentType": 5126,
  555. "count": 101,
  556. "type": "VEC4"
  557. },
  558. "animAccessor_67": {
  559. "bufferView": "bufferView_170",
  560. "byteOffset": 91332,
  561. "componentType": 5126,
  562. "count": 101,
  563. "type": "VEC3"
  564. },
  565. "animAccessor_68": {
  566. "bufferView": "bufferView_170",
  567. "byteOffset": 92544,
  568. "componentType": 5126,
  569. "count": 101,
  570. "type": "VEC3"
  571. },
  572. "animAccessor_69": {
  573. "bufferView": "bufferView_170",
  574. "byteOffset": 93756,
  575. "componentType": 5126,
  576. "count": 101,
  577. "type": "VEC4"
  578. },
  579. "animAccessor_7": {
  580. "bufferView": "bufferView_170",
  581. "byteOffset": 10532,
  582. "componentType": 5126,
  583. "count": 101,
  584. "type": "VEC3"
  585. },
  586. "animAccessor_70": {
  587. "bufferView": "bufferView_170",
  588. "byteOffset": 95372,
  589. "componentType": 5126,
  590. "count": 101,
  591. "type": "VEC3"
  592. },
  593. "animAccessor_71": {
  594. "bufferView": "bufferView_170",
  595. "byteOffset": 96584,
  596. "componentType": 5126,
  597. "count": 101,
  598. "type": "VEC3"
  599. },
  600. "animAccessor_72": {
  601. "bufferView": "bufferView_170",
  602. "byteOffset": 97796,
  603. "componentType": 5126,
  604. "count": 101,
  605. "type": "VEC4"
  606. },
  607. "animAccessor_73": {
  608. "bufferView": "bufferView_170",
  609. "byteOffset": 99412,
  610. "componentType": 5126,
  611. "count": 101,
  612. "type": "VEC3"
  613. },
  614. "animAccessor_74": {
  615. "bufferView": "bufferView_170",
  616. "byteOffset": 100624,
  617. "componentType": 5126,
  618. "count": 101,
  619. "type": "VEC3"
  620. },
  621. "animAccessor_75": {
  622. "bufferView": "bufferView_170",
  623. "byteOffset": 101836,
  624. "componentType": 5126,
  625. "count": 101,
  626. "type": "VEC4"
  627. },
  628. "animAccessor_76": {
  629. "bufferView": "bufferView_170",
  630. "byteOffset": 103452,
  631. "componentType": 5126,
  632. "count": 101,
  633. "type": "VEC3"
  634. },
  635. "animAccessor_77": {
  636. "bufferView": "bufferView_170",
  637. "byteOffset": 104664,
  638. "componentType": 5126,
  639. "count": 101,
  640. "type": "VEC3"
  641. },
  642. "animAccessor_78": {
  643. "bufferView": "bufferView_170",
  644. "byteOffset": 105876,
  645. "componentType": 5126,
  646. "count": 101,
  647. "type": "VEC4"
  648. },
  649. "animAccessor_79": {
  650. "bufferView": "bufferView_170",
  651. "byteOffset": 107492,
  652. "componentType": 5126,
  653. "count": 101,
  654. "type": "VEC3"
  655. },
  656. "animAccessor_8": {
  657. "bufferView": "bufferView_170",
  658. "byteOffset": 11744,
  659. "componentType": 5126,
  660. "count": 101,
  661. "type": "VEC3"
  662. },
  663. "animAccessor_80": {
  664. "bufferView": "bufferView_170",
  665. "byteOffset": 108704,
  666. "componentType": 5126,
  667. "count": 101,
  668. "type": "VEC3"
  669. },
  670. "animAccessor_81": {
  671. "bufferView": "bufferView_170",
  672. "byteOffset": 109916,
  673. "componentType": 5126,
  674. "count": 101,
  675. "type": "VEC4"
  676. },
  677. "animAccessor_82": {
  678. "bufferView": "bufferView_170",
  679. "byteOffset": 111532,
  680. "componentType": 5126,
  681. "count": 101,
  682. "type": "VEC3"
  683. },
  684. "animAccessor_83": {
  685. "bufferView": "bufferView_170",
  686. "byteOffset": 112744,
  687. "componentType": 5126,
  688. "count": 101,
  689. "type": "VEC4"
  690. },
  691. "animAccessor_84": {
  692. "bufferView": "bufferView_170",
  693. "byteOffset": 114360,
  694. "componentType": 5126,
  695. "count": 101,
  696. "type": "VEC3"
  697. },
  698. "animAccessor_85": {
  699. "bufferView": "bufferView_170",
  700. "byteOffset": 115572,
  701. "componentType": 5126,
  702. "count": 101,
  703. "type": "VEC3"
  704. },
  705. "animAccessor_86": {
  706. "bufferView": "bufferView_170",
  707. "byteOffset": 116784,
  708. "componentType": 5126,
  709. "count": 101,
  710. "type": "VEC4"
  711. },
  712. "animAccessor_87": {
  713. "bufferView": "bufferView_170",
  714. "byteOffset": 118400,
  715. "componentType": 5126,
  716. "count": 101,
  717. "type": "VEC3"
  718. },
  719. "animAccessor_88": {
  720. "bufferView": "bufferView_170",
  721. "byteOffset": 119612,
  722. "componentType": 5126,
  723. "count": 101,
  724. "type": "VEC3"
  725. },
  726. "animAccessor_89": {
  727. "bufferView": "bufferView_170",
  728. "byteOffset": 120824,
  729. "componentType": 5126,
  730. "count": 101,
  731. "type": "VEC4"
  732. },
  733. "animAccessor_9": {
  734. "bufferView": "bufferView_170",
  735. "byteOffset": 12956,
  736. "componentType": 5126,
  737. "count": 101,
  738. "type": "VEC4"
  739. },
  740. "animAccessor_90": {
  741. "bufferView": "bufferView_170",
  742. "byteOffset": 122440,
  743. "componentType": 5126,
  744. "count": 101,
  745. "type": "VEC3"
  746. },
  747. "animAccessor_91": {
  748. "bufferView": "bufferView_170",
  749. "byteOffset": 123652,
  750. "componentType": 5126,
  751. "count": 101,
  752. "type": "VEC3"
  753. },
  754. "animAccessor_92": {
  755. "bufferView": "bufferView_170",
  756. "byteOffset": 124864,
  757. "componentType": 5126,
  758. "count": 101,
  759. "type": "VEC4"
  760. },
  761. "animAccessor_93": {
  762. "bufferView": "bufferView_170",
  763. "byteOffset": 126480,
  764. "componentType": 5126,
  765. "count": 101,
  766. "type": "VEC3"
  767. },
  768. "animAccessor_94": {
  769. "bufferView": "bufferView_170",
  770. "byteOffset": 127692,
  771. "componentType": 5126,
  772. "count": 101,
  773. "type": "VEC3"
  774. },
  775. "animAccessor_95": {
  776. "bufferView": "bufferView_170",
  777. "byteOffset": 128904,
  778. "componentType": 5126,
  779. "count": 101,
  780. "type": "VEC4"
  781. }
  782. },
  783. "animations": {
  784. "animation_0": {
  785. "channels": [
  786. {
  787. "sampler": "animation_0_scale_sampler",
  788. "target": {
  789. "id": "Bip01_Pelvis",
  790. "path": "scale"
  791. }
  792. },
  793. {
  794. "sampler": "animation_0_translation_sampler",
  795. "target": {
  796. "id": "Bip01_Pelvis",
  797. "path": "translation"
  798. }
  799. },
  800. {
  801. "sampler": "animation_0_rotation_sampler",
  802. "target": {
  803. "id": "Bip01_Pelvis",
  804. "path": "rotation"
  805. }
  806. }
  807. ],
  808. "parameters": {
  809. "TIME": "animAccessor_0",
  810. "rotation": "animAccessor_3",
  811. "scale": "animAccessor_1",
  812. "translation": "animAccessor_2"
  813. },
  814. "samplers": {
  815. "animation_0_rotation_sampler": {
  816. "input": "TIME",
  817. "interpolation": "LINEAR",
  818. "output": "rotation"
  819. },
  820. "animation_0_scale_sampler": {
  821. "input": "TIME",
  822. "interpolation": "LINEAR",
  823. "output": "scale"
  824. },
  825. "animation_0_translation_sampler": {
  826. "input": "TIME",
  827. "interpolation": "LINEAR",
  828. "output": "translation"
  829. }
  830. }
  831. },
  832. "animation_1": {
  833. "channels": [
  834. {
  835. "sampler": "animation_1_scale_sampler",
  836. "target": {
  837. "id": "Bip01_Spine",
  838. "path": "scale"
  839. }
  840. },
  841. {
  842. "sampler": "animation_1_translation_sampler",
  843. "target": {
  844. "id": "Bip01_Spine",
  845. "path": "translation"
  846. }
  847. },
  848. {
  849. "sampler": "animation_1_rotation_sampler",
  850. "target": {
  851. "id": "Bip01_Spine",
  852. "path": "rotation"
  853. }
  854. }
  855. ],
  856. "parameters": {
  857. "TIME": "animAccessor_0",
  858. "rotation": "animAccessor_6",
  859. "scale": "animAccessor_4",
  860. "translation": "animAccessor_5"
  861. },
  862. "samplers": {
  863. "animation_1_rotation_sampler": {
  864. "input": "TIME",
  865. "interpolation": "LINEAR",
  866. "output": "rotation"
  867. },
  868. "animation_1_scale_sampler": {
  869. "input": "TIME",
  870. "interpolation": "LINEAR",
  871. "output": "scale"
  872. },
  873. "animation_1_translation_sampler": {
  874. "input": "TIME",
  875. "interpolation": "LINEAR",
  876. "output": "translation"
  877. }
  878. }
  879. },
  880. "animation_10": {
  881. "channels": [
  882. {
  883. "sampler": "animation_10_scale_sampler",
  884. "target": {
  885. "id": "Bip01_L_Finger0",
  886. "path": "scale"
  887. }
  888. },
  889. {
  890. "sampler": "animation_10_translation_sampler",
  891. "target": {
  892. "id": "Bip01_L_Finger0",
  893. "path": "translation"
  894. }
  895. },
  896. {
  897. "sampler": "animation_10_rotation_sampler",
  898. "target": {
  899. "id": "Bip01_L_Finger0",
  900. "path": "rotation"
  901. }
  902. }
  903. ],
  904. "parameters": {
  905. "TIME": "animAccessor_0",
  906. "rotation": "animAccessor_9",
  907. "scale": "animAccessor_7",
  908. "translation": "animAccessor_8"
  909. },
  910. "samplers": {
  911. "animation_10_rotation_sampler": {
  912. "input": "TIME",
  913. "interpolation": "LINEAR",
  914. "output": "rotation"
  915. },
  916. "animation_10_scale_sampler": {
  917. "input": "TIME",
  918. "interpolation": "LINEAR",
  919. "output": "scale"
  920. },
  921. "animation_10_translation_sampler": {
  922. "input": "TIME",
  923. "interpolation": "LINEAR",
  924. "output": "translation"
  925. }
  926. }
  927. },
  928. "animation_11": {
  929. "channels": [
  930. {
  931. "sampler": "animation_11_scale_sampler",
  932. "target": {
  933. "id": "Bip01_L_Finger0Nub",
  934. "path": "scale"
  935. }
  936. },
  937. {
  938. "sampler": "animation_11_translation_sampler",
  939. "target": {
  940. "id": "Bip01_L_Finger0Nub",
  941. "path": "translation"
  942. }
  943. },
  944. {
  945. "sampler": "animation_11_rotation_sampler",
  946. "target": {
  947. "id": "Bip01_L_Finger0Nub",
  948. "path": "rotation"
  949. }
  950. }
  951. ],
  952. "parameters": {
  953. "TIME": "animAccessor_0",
  954. "rotation": "animAccessor_12",
  955. "scale": "animAccessor_10",
  956. "translation": "animAccessor_11"
  957. },
  958. "samplers": {
  959. "animation_11_rotation_sampler": {
  960. "input": "TIME",
  961. "interpolation": "LINEAR",
  962. "output": "rotation"
  963. },
  964. "animation_11_scale_sampler": {
  965. "input": "TIME",
  966. "interpolation": "LINEAR",
  967. "output": "scale"
  968. },
  969. "animation_11_translation_sampler": {
  970. "input": "TIME",
  971. "interpolation": "LINEAR",
  972. "output": "translation"
  973. }
  974. }
  975. },
  976. "animation_12": {
  977. "channels": [
  978. {
  979. "sampler": "animation_12_scale_sampler",
  980. "target": {
  981. "id": "Bip01_R_Clavicle",
  982. "path": "scale"
  983. }
  984. },
  985. {
  986. "sampler": "animation_12_translation_sampler",
  987. "target": {
  988. "id": "Bip01_R_Clavicle",
  989. "path": "translation"
  990. }
  991. },
  992. {
  993. "sampler": "animation_12_rotation_sampler",
  994. "target": {
  995. "id": "Bip01_R_Clavicle",
  996. "path": "rotation"
  997. }
  998. }
  999. ],
  1000. "parameters": {
  1001. "TIME": "animAccessor_0",
  1002. "rotation": "animAccessor_15",
  1003. "scale": "animAccessor_13",
  1004. "translation": "animAccessor_14"
  1005. },
  1006. "samplers": {
  1007. "animation_12_rotation_sampler": {
  1008. "input": "TIME",
  1009. "interpolation": "LINEAR",
  1010. "output": "rotation"
  1011. },
  1012. "animation_12_scale_sampler": {
  1013. "input": "TIME",
  1014. "interpolation": "LINEAR",
  1015. "output": "scale"
  1016. },
  1017. "animation_12_translation_sampler": {
  1018. "input": "TIME",
  1019. "interpolation": "LINEAR",
  1020. "output": "translation"
  1021. }
  1022. }
  1023. },
  1024. "animation_13": {
  1025. "channels": [
  1026. {
  1027. "sampler": "animation_13_scale_sampler",
  1028. "target": {
  1029. "id": "Bip01_R_UpperArm",
  1030. "path": "scale"
  1031. }
  1032. },
  1033. {
  1034. "sampler": "animation_13_translation_sampler",
  1035. "target": {
  1036. "id": "Bip01_R_UpperArm",
  1037. "path": "translation"
  1038. }
  1039. },
  1040. {
  1041. "sampler": "animation_13_rotation_sampler",
  1042. "target": {
  1043. "id": "Bip01_R_UpperArm",
  1044. "path": "rotation"
  1045. }
  1046. }
  1047. ],
  1048. "parameters": {
  1049. "TIME": "animAccessor_0",
  1050. "rotation": "animAccessor_18",
  1051. "scale": "animAccessor_16",
  1052. "translation": "animAccessor_17"
  1053. },
  1054. "samplers": {
  1055. "animation_13_rotation_sampler": {
  1056. "input": "TIME",
  1057. "interpolation": "LINEAR",
  1058. "output": "rotation"
  1059. },
  1060. "animation_13_scale_sampler": {
  1061. "input": "TIME",
  1062. "interpolation": "LINEAR",
  1063. "output": "scale"
  1064. },
  1065. "animation_13_translation_sampler": {
  1066. "input": "TIME",
  1067. "interpolation": "LINEAR",
  1068. "output": "translation"
  1069. }
  1070. }
  1071. },
  1072. "animation_14": {
  1073. "channels": [
  1074. {
  1075. "sampler": "animation_14_scale_sampler",
  1076. "target": {
  1077. "id": "Bip01_R_Forearm",
  1078. "path": "scale"
  1079. }
  1080. },
  1081. {
  1082. "sampler": "animation_14_translation_sampler",
  1083. "target": {
  1084. "id": "Bip01_R_Forearm",
  1085. "path": "translation"
  1086. }
  1087. },
  1088. {
  1089. "sampler": "animation_14_rotation_sampler",
  1090. "target": {
  1091. "id": "Bip01_R_Forearm",
  1092. "path": "rotation"
  1093. }
  1094. }
  1095. ],
  1096. "parameters": {
  1097. "TIME": "animAccessor_0",
  1098. "rotation": "animAccessor_21",
  1099. "scale": "animAccessor_19",
  1100. "translation": "animAccessor_20"
  1101. },
  1102. "samplers": {
  1103. "animation_14_rotation_sampler": {
  1104. "input": "TIME",
  1105. "interpolation": "LINEAR",
  1106. "output": "rotation"
  1107. },
  1108. "animation_14_scale_sampler": {
  1109. "input": "TIME",
  1110. "interpolation": "LINEAR",
  1111. "output": "scale"
  1112. },
  1113. "animation_14_translation_sampler": {
  1114. "input": "TIME",
  1115. "interpolation": "LINEAR",
  1116. "output": "translation"
  1117. }
  1118. }
  1119. },
  1120. "animation_15": {
  1121. "channels": [
  1122. {
  1123. "sampler": "animation_15_scale_sampler",
  1124. "target": {
  1125. "id": "Bip01_R_Hand",
  1126. "path": "scale"
  1127. }
  1128. },
  1129. {
  1130. "sampler": "animation_15_translation_sampler",
  1131. "target": {
  1132. "id": "Bip01_R_Hand",
  1133. "path": "translation"
  1134. }
  1135. },
  1136. {
  1137. "sampler": "animation_15_rotation_sampler",
  1138. "target": {
  1139. "id": "Bip01_R_Hand",
  1140. "path": "rotation"
  1141. }
  1142. }
  1143. ],
  1144. "parameters": {
  1145. "TIME": "animAccessor_0",
  1146. "rotation": "animAccessor_24",
  1147. "scale": "animAccessor_22",
  1148. "translation": "animAccessor_23"
  1149. },
  1150. "samplers": {
  1151. "animation_15_rotation_sampler": {
  1152. "input": "TIME",
  1153. "interpolation": "LINEAR",
  1154. "output": "rotation"
  1155. },
  1156. "animation_15_scale_sampler": {
  1157. "input": "TIME",
  1158. "interpolation": "LINEAR",
  1159. "output": "scale"
  1160. },
  1161. "animation_15_translation_sampler": {
  1162. "input": "TIME",
  1163. "interpolation": "LINEAR",
  1164. "output": "translation"
  1165. }
  1166. }
  1167. },
  1168. "animation_16": {
  1169. "channels": [
  1170. {
  1171. "sampler": "animation_16_scale_sampler",
  1172. "target": {
  1173. "id": "Bip01_R_Finger0",
  1174. "path": "scale"
  1175. }
  1176. },
  1177. {
  1178. "sampler": "animation_16_translation_sampler",
  1179. "target": {
  1180. "id": "Bip01_R_Finger0",
  1181. "path": "translation"
  1182. }
  1183. },
  1184. {
  1185. "sampler": "animation_16_rotation_sampler",
  1186. "target": {
  1187. "id": "Bip01_R_Finger0",
  1188. "path": "rotation"
  1189. }
  1190. }
  1191. ],
  1192. "parameters": {
  1193. "TIME": "animAccessor_0",
  1194. "rotation": "animAccessor_27",
  1195. "scale": "animAccessor_25",
  1196. "translation": "animAccessor_26"
  1197. },
  1198. "samplers": {
  1199. "animation_16_rotation_sampler": {
  1200. "input": "TIME",
  1201. "interpolation": "LINEAR",
  1202. "output": "rotation"
  1203. },
  1204. "animation_16_scale_sampler": {
  1205. "input": "TIME",
  1206. "interpolation": "LINEAR",
  1207. "output": "scale"
  1208. },
  1209. "animation_16_translation_sampler": {
  1210. "input": "TIME",
  1211. "interpolation": "LINEAR",
  1212. "output": "translation"
  1213. }
  1214. }
  1215. },
  1216. "animation_17": {
  1217. "channels": [
  1218. {
  1219. "sampler": "animation_17_scale_sampler",
  1220. "target": {
  1221. "id": "Bip01_R_Finger0Nub",
  1222. "path": "scale"
  1223. }
  1224. },
  1225. {
  1226. "sampler": "animation_17_translation_sampler",
  1227. "target": {
  1228. "id": "Bip01_R_Finger0Nub",
  1229. "path": "translation"
  1230. }
  1231. },
  1232. {
  1233. "sampler": "animation_17_rotation_sampler",
  1234. "target": {
  1235. "id": "Bip01_R_Finger0Nub",
  1236. "path": "rotation"
  1237. }
  1238. }
  1239. ],
  1240. "parameters": {
  1241. "TIME": "animAccessor_0",
  1242. "rotation": "animAccessor_30",
  1243. "scale": "animAccessor_28",
  1244. "translation": "animAccessor_29"
  1245. },
  1246. "samplers": {
  1247. "animation_17_rotation_sampler": {
  1248. "input": "TIME",
  1249. "interpolation": "LINEAR",
  1250. "output": "rotation"
  1251. },
  1252. "animation_17_scale_sampler": {
  1253. "input": "TIME",
  1254. "interpolation": "LINEAR",
  1255. "output": "scale"
  1256. },
  1257. "animation_17_translation_sampler": {
  1258. "input": "TIME",
  1259. "interpolation": "LINEAR",
  1260. "output": "translation"
  1261. }
  1262. }
  1263. },
  1264. "animation_18": {
  1265. "channels": [
  1266. {
  1267. "sampler": "animation_18_scale_sampler",
  1268. "target": {
  1269. "id": "Bip01_R_Thigh",
  1270. "path": "scale"
  1271. }
  1272. },
  1273. {
  1274. "sampler": "animation_18_translation_sampler",
  1275. "target": {
  1276. "id": "Bip01_R_Thigh",
  1277. "path": "translation"
  1278. }
  1279. },
  1280. {
  1281. "sampler": "animation_18_rotation_sampler",
  1282. "target": {
  1283. "id": "Bip01_R_Thigh",
  1284. "path": "rotation"
  1285. }
  1286. }
  1287. ],
  1288. "parameters": {
  1289. "TIME": "animAccessor_0",
  1290. "rotation": "animAccessor_33",
  1291. "scale": "animAccessor_31",
  1292. "translation": "animAccessor_32"
  1293. },
  1294. "samplers": {
  1295. "animation_18_rotation_sampler": {
  1296. "input": "TIME",
  1297. "interpolation": "LINEAR",
  1298. "output": "rotation"
  1299. },
  1300. "animation_18_scale_sampler": {
  1301. "input": "TIME",
  1302. "interpolation": "LINEAR",
  1303. "output": "scale"
  1304. },
  1305. "animation_18_translation_sampler": {
  1306. "input": "TIME",
  1307. "interpolation": "LINEAR",
  1308. "output": "translation"
  1309. }
  1310. }
  1311. },
  1312. "animation_19": {
  1313. "channels": [
  1314. {
  1315. "sampler": "animation_19_scale_sampler",
  1316. "target": {
  1317. "id": "Bip01_R_Calf",
  1318. "path": "scale"
  1319. }
  1320. },
  1321. {
  1322. "sampler": "animation_19_translation_sampler",
  1323. "target": {
  1324. "id": "Bip01_R_Calf",
  1325. "path": "translation"
  1326. }
  1327. },
  1328. {
  1329. "sampler": "animation_19_rotation_sampler",
  1330. "target": {
  1331. "id": "Bip01_R_Calf",
  1332. "path": "rotation"
  1333. }
  1334. }
  1335. ],
  1336. "parameters": {
  1337. "TIME": "animAccessor_0",
  1338. "rotation": "animAccessor_36",
  1339. "scale": "animAccessor_34",
  1340. "translation": "animAccessor_35"
  1341. },
  1342. "samplers": {
  1343. "animation_19_rotation_sampler": {
  1344. "input": "TIME",
  1345. "interpolation": "LINEAR",
  1346. "output": "rotation"
  1347. },
  1348. "animation_19_scale_sampler": {
  1349. "input": "TIME",
  1350. "interpolation": "LINEAR",
  1351. "output": "scale"
  1352. },
  1353. "animation_19_translation_sampler": {
  1354. "input": "TIME",
  1355. "interpolation": "LINEAR",
  1356. "output": "translation"
  1357. }
  1358. }
  1359. },
  1360. "animation_2": {
  1361. "channels": [
  1362. {
  1363. "sampler": "animation_2_scale_sampler",
  1364. "target": {
  1365. "id": "Bip01_Spine1",
  1366. "path": "scale"
  1367. }
  1368. },
  1369. {
  1370. "sampler": "animation_2_translation_sampler",
  1371. "target": {
  1372. "id": "Bip01_Spine1",
  1373. "path": "translation"
  1374. }
  1375. },
  1376. {
  1377. "sampler": "animation_2_rotation_sampler",
  1378. "target": {
  1379. "id": "Bip01_Spine1",
  1380. "path": "rotation"
  1381. }
  1382. }
  1383. ],
  1384. "parameters": {
  1385. "TIME": "animAccessor_0",
  1386. "rotation": "animAccessor_39",
  1387. "scale": "animAccessor_37",
  1388. "translation": "animAccessor_38"
  1389. },
  1390. "samplers": {
  1391. "animation_2_rotation_sampler": {
  1392. "input": "TIME",
  1393. "interpolation": "LINEAR",
  1394. "output": "rotation"
  1395. },
  1396. "animation_2_scale_sampler": {
  1397. "input": "TIME",
  1398. "interpolation": "LINEAR",
  1399. "output": "scale"
  1400. },
  1401. "animation_2_translation_sampler": {
  1402. "input": "TIME",
  1403. "interpolation": "LINEAR",
  1404. "output": "translation"
  1405. }
  1406. }
  1407. },
  1408. "animation_20": {
  1409. "channels": [
  1410. {
  1411. "sampler": "animation_20_scale_sampler",
  1412. "target": {
  1413. "id": "Bip01_R_Foot",
  1414. "path": "scale"
  1415. }
  1416. },
  1417. {
  1418. "sampler": "animation_20_translation_sampler",
  1419. "target": {
  1420. "id": "Bip01_R_Foot",
  1421. "path": "translation"
  1422. }
  1423. },
  1424. {
  1425. "sampler": "animation_20_rotation_sampler",
  1426. "target": {
  1427. "id": "Bip01_R_Foot",
  1428. "path": "rotation"
  1429. }
  1430. }
  1431. ],
  1432. "parameters": {
  1433. "TIME": "animAccessor_0",
  1434. "rotation": "animAccessor_42",
  1435. "scale": "animAccessor_40",
  1436. "translation": "animAccessor_41"
  1437. },
  1438. "samplers": {
  1439. "animation_20_rotation_sampler": {
  1440. "input": "TIME",
  1441. "interpolation": "LINEAR",
  1442. "output": "rotation"
  1443. },
  1444. "animation_20_scale_sampler": {
  1445. "input": "TIME",
  1446. "interpolation": "LINEAR",
  1447. "output": "scale"
  1448. },
  1449. "animation_20_translation_sampler": {
  1450. "input": "TIME",
  1451. "interpolation": "LINEAR",
  1452. "output": "translation"
  1453. }
  1454. }
  1455. },
  1456. "animation_21": {
  1457. "channels": [
  1458. {
  1459. "sampler": "animation_21_scale_sampler",
  1460. "target": {
  1461. "id": "Bip01_R_Toe0",
  1462. "path": "scale"
  1463. }
  1464. },
  1465. {
  1466. "sampler": "animation_21_translation_sampler",
  1467. "target": {
  1468. "id": "Bip01_R_Toe0",
  1469. "path": "translation"
  1470. }
  1471. },
  1472. {
  1473. "sampler": "animation_21_rotation_sampler",
  1474. "target": {
  1475. "id": "Bip01_R_Toe0",
  1476. "path": "rotation"
  1477. }
  1478. }
  1479. ],
  1480. "parameters": {
  1481. "TIME": "animAccessor_0",
  1482. "rotation": "animAccessor_45",
  1483. "scale": "animAccessor_43",
  1484. "translation": "animAccessor_44"
  1485. },
  1486. "samplers": {
  1487. "animation_21_rotation_sampler": {
  1488. "input": "TIME",
  1489. "interpolation": "LINEAR",
  1490. "output": "rotation"
  1491. },
  1492. "animation_21_scale_sampler": {
  1493. "input": "TIME",
  1494. "interpolation": "LINEAR",
  1495. "output": "scale"
  1496. },
  1497. "animation_21_translation_sampler": {
  1498. "input": "TIME",
  1499. "interpolation": "LINEAR",
  1500. "output": "translation"
  1501. }
  1502. }
  1503. },
  1504. "animation_22": {
  1505. "channels": [
  1506. {
  1507. "sampler": "animation_22_scale_sampler",
  1508. "target": {
  1509. "id": "Bip01_R_Toe0Nub",
  1510. "path": "scale"
  1511. }
  1512. },
  1513. {
  1514. "sampler": "animation_22_translation_sampler",
  1515. "target": {
  1516. "id": "Bip01_R_Toe0Nub",
  1517. "path": "translation"
  1518. }
  1519. },
  1520. {
  1521. "sampler": "animation_22_rotation_sampler",
  1522. "target": {
  1523. "id": "Bip01_R_Toe0Nub",
  1524. "path": "rotation"
  1525. }
  1526. }
  1527. ],
  1528. "parameters": {
  1529. "TIME": "animAccessor_0",
  1530. "rotation": "animAccessor_48",
  1531. "scale": "animAccessor_46",
  1532. "translation": "animAccessor_47"
  1533. },
  1534. "samplers": {
  1535. "animation_22_rotation_sampler": {
  1536. "input": "TIME",
  1537. "interpolation": "LINEAR",
  1538. "output": "rotation"
  1539. },
  1540. "animation_22_scale_sampler": {
  1541. "input": "TIME",
  1542. "interpolation": "LINEAR",
  1543. "output": "scale"
  1544. },
  1545. "animation_22_translation_sampler": {
  1546. "input": "TIME",
  1547. "interpolation": "LINEAR",
  1548. "output": "translation"
  1549. }
  1550. }
  1551. },
  1552. "animation_23": {
  1553. "channels": [
  1554. {
  1555. "sampler": "animation_23_scale_sampler",
  1556. "target": {
  1557. "id": "Bip01_L_Thigh",
  1558. "path": "scale"
  1559. }
  1560. },
  1561. {
  1562. "sampler": "animation_23_translation_sampler",
  1563. "target": {
  1564. "id": "Bip01_L_Thigh",
  1565. "path": "translation"
  1566. }
  1567. },
  1568. {
  1569. "sampler": "animation_23_rotation_sampler",
  1570. "target": {
  1571. "id": "Bip01_L_Thigh",
  1572. "path": "rotation"
  1573. }
  1574. }
  1575. ],
  1576. "parameters": {
  1577. "TIME": "animAccessor_0",
  1578. "rotation": "animAccessor_51",
  1579. "scale": "animAccessor_49",
  1580. "translation": "animAccessor_50"
  1581. },
  1582. "samplers": {
  1583. "animation_23_rotation_sampler": {
  1584. "input": "TIME",
  1585. "interpolation": "LINEAR",
  1586. "output": "rotation"
  1587. },
  1588. "animation_23_scale_sampler": {
  1589. "input": "TIME",
  1590. "interpolation": "LINEAR",
  1591. "output": "scale"
  1592. },
  1593. "animation_23_translation_sampler": {
  1594. "input": "TIME",
  1595. "interpolation": "LINEAR",
  1596. "output": "translation"
  1597. }
  1598. }
  1599. },
  1600. "animation_24": {
  1601. "channels": [
  1602. {
  1603. "sampler": "animation_24_scale_sampler",
  1604. "target": {
  1605. "id": "Bip01_L_Calf",
  1606. "path": "scale"
  1607. }
  1608. },
  1609. {
  1610. "sampler": "animation_24_translation_sampler",
  1611. "target": {
  1612. "id": "Bip01_L_Calf",
  1613. "path": "translation"
  1614. }
  1615. },
  1616. {
  1617. "sampler": "animation_24_rotation_sampler",
  1618. "target": {
  1619. "id": "Bip01_L_Calf",
  1620. "path": "rotation"
  1621. }
  1622. }
  1623. ],
  1624. "parameters": {
  1625. "TIME": "animAccessor_0",
  1626. "rotation": "animAccessor_54",
  1627. "scale": "animAccessor_52",
  1628. "translation": "animAccessor_53"
  1629. },
  1630. "samplers": {
  1631. "animation_24_rotation_sampler": {
  1632. "input": "TIME",
  1633. "interpolation": "LINEAR",
  1634. "output": "rotation"
  1635. },
  1636. "animation_24_scale_sampler": {
  1637. "input": "TIME",
  1638. "interpolation": "LINEAR",
  1639. "output": "scale"
  1640. },
  1641. "animation_24_translation_sampler": {
  1642. "input": "TIME",
  1643. "interpolation": "LINEAR",
  1644. "output": "translation"
  1645. }
  1646. }
  1647. },
  1648. "animation_25": {
  1649. "channels": [
  1650. {
  1651. "sampler": "animation_25_scale_sampler",
  1652. "target": {
  1653. "id": "Bip01_L_Foot",
  1654. "path": "scale"
  1655. }
  1656. },
  1657. {
  1658. "sampler": "animation_25_translation_sampler",
  1659. "target": {
  1660. "id": "Bip01_L_Foot",
  1661. "path": "translation"
  1662. }
  1663. },
  1664. {
  1665. "sampler": "animation_25_rotation_sampler",
  1666. "target": {
  1667. "id": "Bip01_L_Foot",
  1668. "path": "rotation"
  1669. }
  1670. }
  1671. ],
  1672. "parameters": {
  1673. "TIME": "animAccessor_0",
  1674. "rotation": "animAccessor_57",
  1675. "scale": "animAccessor_55",
  1676. "translation": "animAccessor_56"
  1677. },
  1678. "samplers": {
  1679. "animation_25_rotation_sampler": {
  1680. "input": "TIME",
  1681. "interpolation": "LINEAR",
  1682. "output": "rotation"
  1683. },
  1684. "animation_25_scale_sampler": {
  1685. "input": "TIME",
  1686. "interpolation": "LINEAR",
  1687. "output": "scale"
  1688. },
  1689. "animation_25_translation_sampler": {
  1690. "input": "TIME",
  1691. "interpolation": "LINEAR",
  1692. "output": "translation"
  1693. }
  1694. }
  1695. },
  1696. "animation_26": {
  1697. "channels": [
  1698. {
  1699. "sampler": "animation_26_scale_sampler",
  1700. "target": {
  1701. "id": "Bip01_L_Toe0",
  1702. "path": "scale"
  1703. }
  1704. },
  1705. {
  1706. "sampler": "animation_26_translation_sampler",
  1707. "target": {
  1708. "id": "Bip01_L_Toe0",
  1709. "path": "translation"
  1710. }
  1711. },
  1712. {
  1713. "sampler": "animation_26_rotation_sampler",
  1714. "target": {
  1715. "id": "Bip01_L_Toe0",
  1716. "path": "rotation"
  1717. }
  1718. }
  1719. ],
  1720. "parameters": {
  1721. "TIME": "animAccessor_0",
  1722. "rotation": "animAccessor_60",
  1723. "scale": "animAccessor_58",
  1724. "translation": "animAccessor_59"
  1725. },
  1726. "samplers": {
  1727. "animation_26_rotation_sampler": {
  1728. "input": "TIME",
  1729. "interpolation": "LINEAR",
  1730. "output": "rotation"
  1731. },
  1732. "animation_26_scale_sampler": {
  1733. "input": "TIME",
  1734. "interpolation": "LINEAR",
  1735. "output": "scale"
  1736. },
  1737. "animation_26_translation_sampler": {
  1738. "input": "TIME",
  1739. "interpolation": "LINEAR",
  1740. "output": "translation"
  1741. }
  1742. }
  1743. },
  1744. "animation_27": {
  1745. "channels": [
  1746. {
  1747. "sampler": "animation_27_scale_sampler",
  1748. "target": {
  1749. "id": "Bip01_L_Toe0Nub",
  1750. "path": "scale"
  1751. }
  1752. },
  1753. {
  1754. "sampler": "animation_27_translation_sampler",
  1755. "target": {
  1756. "id": "Bip01_L_Toe0Nub",
  1757. "path": "translation"
  1758. }
  1759. },
  1760. {
  1761. "sampler": "animation_27_rotation_sampler",
  1762. "target": {
  1763. "id": "Bip01_L_Toe0Nub",
  1764. "path": "rotation"
  1765. }
  1766. }
  1767. ],
  1768. "parameters": {
  1769. "TIME": "animAccessor_0",
  1770. "rotation": "animAccessor_63",
  1771. "scale": "animAccessor_61",
  1772. "translation": "animAccessor_62"
  1773. },
  1774. "samplers": {
  1775. "animation_27_rotation_sampler": {
  1776. "input": "TIME",
  1777. "interpolation": "LINEAR",
  1778. "output": "rotation"
  1779. },
  1780. "animation_27_scale_sampler": {
  1781. "input": "TIME",
  1782. "interpolation": "LINEAR",
  1783. "output": "scale"
  1784. },
  1785. "animation_27_translation_sampler": {
  1786. "input": "TIME",
  1787. "interpolation": "LINEAR",
  1788. "output": "translation"
  1789. }
  1790. }
  1791. },
  1792. "animation_28": {
  1793. "channels": [
  1794. {
  1795. "sampler": "animation_28_scale_sampler",
  1796. "target": {
  1797. "id": "Bip01_Tail",
  1798. "path": "scale"
  1799. }
  1800. },
  1801. {
  1802. "sampler": "animation_28_translation_sampler",
  1803. "target": {
  1804. "id": "Bip01_Tail",
  1805. "path": "translation"
  1806. }
  1807. },
  1808. {
  1809. "sampler": "animation_28_rotation_sampler",
  1810. "target": {
  1811. "id": "Bip01_Tail",
  1812. "path": "rotation"
  1813. }
  1814. }
  1815. ],
  1816. "parameters": {
  1817. "TIME": "animAccessor_0",
  1818. "rotation": "animAccessor_66",
  1819. "scale": "animAccessor_64",
  1820. "translation": "animAccessor_65"
  1821. },
  1822. "samplers": {
  1823. "animation_28_rotation_sampler": {
  1824. "input": "TIME",
  1825. "interpolation": "LINEAR",
  1826. "output": "rotation"
  1827. },
  1828. "animation_28_scale_sampler": {
  1829. "input": "TIME",
  1830. "interpolation": "LINEAR",
  1831. "output": "scale"
  1832. },
  1833. "animation_28_translation_sampler": {
  1834. "input": "TIME",
  1835. "interpolation": "LINEAR",
  1836. "output": "translation"
  1837. }
  1838. }
  1839. },
  1840. "animation_29": {
  1841. "channels": [
  1842. {
  1843. "sampler": "animation_29_scale_sampler",
  1844. "target": {
  1845. "id": "Bip01_Tail1",
  1846. "path": "scale"
  1847. }
  1848. },
  1849. {
  1850. "sampler": "animation_29_translation_sampler",
  1851. "target": {
  1852. "id": "Bip01_Tail1",
  1853. "path": "translation"
  1854. }
  1855. },
  1856. {
  1857. "sampler": "animation_29_rotation_sampler",
  1858. "target": {
  1859. "id": "Bip01_Tail1",
  1860. "path": "rotation"
  1861. }
  1862. }
  1863. ],
  1864. "parameters": {
  1865. "TIME": "animAccessor_0",
  1866. "rotation": "animAccessor_69",
  1867. "scale": "animAccessor_67",
  1868. "translation": "animAccessor_68"
  1869. },
  1870. "samplers": {
  1871. "animation_29_rotation_sampler": {
  1872. "input": "TIME",
  1873. "interpolation": "LINEAR",
  1874. "output": "rotation"
  1875. },
  1876. "animation_29_scale_sampler": {
  1877. "input": "TIME",
  1878. "interpolation": "LINEAR",
  1879. "output": "scale"
  1880. },
  1881. "animation_29_translation_sampler": {
  1882. "input": "TIME",
  1883. "interpolation": "LINEAR",
  1884. "output": "translation"
  1885. }
  1886. }
  1887. },
  1888. "animation_3": {
  1889. "channels": [
  1890. {
  1891. "sampler": "animation_3_scale_sampler",
  1892. "target": {
  1893. "id": "Bip01_Neck",
  1894. "path": "scale"
  1895. }
  1896. },
  1897. {
  1898. "sampler": "animation_3_translation_sampler",
  1899. "target": {
  1900. "id": "Bip01_Neck",
  1901. "path": "translation"
  1902. }
  1903. },
  1904. {
  1905. "sampler": "animation_3_rotation_sampler",
  1906. "target": {
  1907. "id": "Bip01_Neck",
  1908. "path": "rotation"
  1909. }
  1910. }
  1911. ],
  1912. "parameters": {
  1913. "TIME": "animAccessor_0",
  1914. "rotation": "animAccessor_72",
  1915. "scale": "animAccessor_70",
  1916. "translation": "animAccessor_71"
  1917. },
  1918. "samplers": {
  1919. "animation_3_rotation_sampler": {
  1920. "input": "TIME",
  1921. "interpolation": "LINEAR",
  1922. "output": "rotation"
  1923. },
  1924. "animation_3_scale_sampler": {
  1925. "input": "TIME",
  1926. "interpolation": "LINEAR",
  1927. "output": "scale"
  1928. },
  1929. "animation_3_translation_sampler": {
  1930. "input": "TIME",
  1931. "interpolation": "LINEAR",
  1932. "output": "translation"
  1933. }
  1934. }
  1935. },
  1936. "animation_30": {
  1937. "channels": [
  1938. {
  1939. "sampler": "animation_30_scale_sampler",
  1940. "target": {
  1941. "id": "Bip01_Tail2",
  1942. "path": "scale"
  1943. }
  1944. },
  1945. {
  1946. "sampler": "animation_30_translation_sampler",
  1947. "target": {
  1948. "id": "Bip01_Tail2",
  1949. "path": "translation"
  1950. }
  1951. },
  1952. {
  1953. "sampler": "animation_30_rotation_sampler",
  1954. "target": {
  1955. "id": "Bip01_Tail2",
  1956. "path": "rotation"
  1957. }
  1958. }
  1959. ],
  1960. "parameters": {
  1961. "TIME": "animAccessor_0",
  1962. "rotation": "animAccessor_75",
  1963. "scale": "animAccessor_73",
  1964. "translation": "animAccessor_74"
  1965. },
  1966. "samplers": {
  1967. "animation_30_rotation_sampler": {
  1968. "input": "TIME",
  1969. "interpolation": "LINEAR",
  1970. "output": "rotation"
  1971. },
  1972. "animation_30_scale_sampler": {
  1973. "input": "TIME",
  1974. "interpolation": "LINEAR",
  1975. "output": "scale"
  1976. },
  1977. "animation_30_translation_sampler": {
  1978. "input": "TIME",
  1979. "interpolation": "LINEAR",
  1980. "output": "translation"
  1981. }
  1982. }
  1983. },
  1984. "animation_31": {
  1985. "channels": [
  1986. {
  1987. "sampler": "animation_31_scale_sampler",
  1988. "target": {
  1989. "id": "Bip01_TailNub",
  1990. "path": "scale"
  1991. }
  1992. },
  1993. {
  1994. "sampler": "animation_31_translation_sampler",
  1995. "target": {
  1996. "id": "Bip01_TailNub",
  1997. "path": "translation"
  1998. }
  1999. },
  2000. {
  2001. "sampler": "animation_31_rotation_sampler",
  2002. "target": {
  2003. "id": "Bip01_TailNub",
  2004. "path": "rotation"
  2005. }
  2006. }
  2007. ],
  2008. "parameters": {
  2009. "TIME": "animAccessor_0",
  2010. "rotation": "animAccessor_78",
  2011. "scale": "animAccessor_76",
  2012. "translation": "animAccessor_77"
  2013. },
  2014. "samplers": {
  2015. "animation_31_rotation_sampler": {
  2016. "input": "TIME",
  2017. "interpolation": "LINEAR",
  2018. "output": "rotation"
  2019. },
  2020. "animation_31_scale_sampler": {
  2021. "input": "TIME",
  2022. "interpolation": "LINEAR",
  2023. "output": "scale"
  2024. },
  2025. "animation_31_translation_sampler": {
  2026. "input": "TIME",
  2027. "interpolation": "LINEAR",
  2028. "output": "translation"
  2029. }
  2030. }
  2031. },
  2032. "animation_4": {
  2033. "channels": [
  2034. {
  2035. "sampler": "animation_4_scale_sampler",
  2036. "target": {
  2037. "id": "Bip01_Head",
  2038. "path": "scale"
  2039. }
  2040. },
  2041. {
  2042. "sampler": "animation_4_translation_sampler",
  2043. "target": {
  2044. "id": "Bip01_Head",
  2045. "path": "translation"
  2046. }
  2047. },
  2048. {
  2049. "sampler": "animation_4_rotation_sampler",
  2050. "target": {
  2051. "id": "Bip01_Head",
  2052. "path": "rotation"
  2053. }
  2054. }
  2055. ],
  2056. "parameters": {
  2057. "TIME": "animAccessor_0",
  2058. "rotation": "animAccessor_81",
  2059. "scale": "animAccessor_79",
  2060. "translation": "animAccessor_80"
  2061. },
  2062. "samplers": {
  2063. "animation_4_rotation_sampler": {
  2064. "input": "TIME",
  2065. "interpolation": "LINEAR",
  2066. "output": "rotation"
  2067. },
  2068. "animation_4_scale_sampler": {
  2069. "input": "TIME",
  2070. "interpolation": "LINEAR",
  2071. "output": "scale"
  2072. },
  2073. "animation_4_translation_sampler": {
  2074. "input": "TIME",
  2075. "interpolation": "LINEAR",
  2076. "output": "translation"
  2077. }
  2078. }
  2079. },
  2080. "animation_5": {
  2081. "channels": [
  2082. {
  2083. "sampler": "animation_5_scale_sampler",
  2084. "target": {
  2085. "id": "Bip01_HeadNub",
  2086. "path": "scale"
  2087. }
  2088. },
  2089. {
  2090. "sampler": "animation_5_translation_sampler",
  2091. "target": {
  2092. "id": "Bip01_HeadNub",
  2093. "path": "translation"
  2094. }
  2095. },
  2096. {
  2097. "sampler": "animation_5_rotation_sampler",
  2098. "target": {
  2099. "id": "Bip01_HeadNub",
  2100. "path": "rotation"
  2101. }
  2102. }
  2103. ],
  2104. "parameters": {
  2105. "TIME": "animAccessor_0",
  2106. "rotation": "animAccessor_83",
  2107. "scale": "animAccessor_61",
  2108. "translation": "animAccessor_82"
  2109. },
  2110. "samplers": {
  2111. "animation_5_rotation_sampler": {
  2112. "input": "TIME",
  2113. "interpolation": "LINEAR",
  2114. "output": "rotation"
  2115. },
  2116. "animation_5_scale_sampler": {
  2117. "input": "TIME",
  2118. "interpolation": "LINEAR",
  2119. "output": "scale"
  2120. },
  2121. "animation_5_translation_sampler": {
  2122. "input": "TIME",
  2123. "interpolation": "LINEAR",
  2124. "output": "translation"
  2125. }
  2126. }
  2127. },
  2128. "animation_6": {
  2129. "channels": [
  2130. {
  2131. "sampler": "animation_6_scale_sampler",
  2132. "target": {
  2133. "id": "Bip01_L_Clavicle",
  2134. "path": "scale"
  2135. }
  2136. },
  2137. {
  2138. "sampler": "animation_6_translation_sampler",
  2139. "target": {
  2140. "id": "Bip01_L_Clavicle",
  2141. "path": "translation"
  2142. }
  2143. },
  2144. {
  2145. "sampler": "animation_6_rotation_sampler",
  2146. "target": {
  2147. "id": "Bip01_L_Clavicle",
  2148. "path": "rotation"
  2149. }
  2150. }
  2151. ],
  2152. "parameters": {
  2153. "TIME": "animAccessor_0",
  2154. "rotation": "animAccessor_86",
  2155. "scale": "animAccessor_84",
  2156. "translation": "animAccessor_85"
  2157. },
  2158. "samplers": {
  2159. "animation_6_rotation_sampler": {
  2160. "input": "TIME",
  2161. "interpolation": "LINEAR",
  2162. "output": "rotation"
  2163. },
  2164. "animation_6_scale_sampler": {
  2165. "input": "TIME",
  2166. "interpolation": "LINEAR",
  2167. "output": "scale"
  2168. },
  2169. "animation_6_translation_sampler": {
  2170. "input": "TIME",
  2171. "interpolation": "LINEAR",
  2172. "output": "translation"
  2173. }
  2174. }
  2175. },
  2176. "animation_7": {
  2177. "channels": [
  2178. {
  2179. "sampler": "animation_7_scale_sampler",
  2180. "target": {
  2181. "id": "Bip01_L_UpperArm",
  2182. "path": "scale"
  2183. }
  2184. },
  2185. {
  2186. "sampler": "animation_7_translation_sampler",
  2187. "target": {
  2188. "id": "Bip01_L_UpperArm",
  2189. "path": "translation"
  2190. }
  2191. },
  2192. {
  2193. "sampler": "animation_7_rotation_sampler",
  2194. "target": {
  2195. "id": "Bip01_L_UpperArm",
  2196. "path": "rotation"
  2197. }
  2198. }
  2199. ],
  2200. "parameters": {
  2201. "TIME": "animAccessor_0",
  2202. "rotation": "animAccessor_89",
  2203. "scale": "animAccessor_87",
  2204. "translation": "animAccessor_88"
  2205. },
  2206. "samplers": {
  2207. "animation_7_rotation_sampler": {
  2208. "input": "TIME",
  2209. "interpolation": "LINEAR",
  2210. "output": "rotation"
  2211. },
  2212. "animation_7_scale_sampler": {
  2213. "input": "TIME",
  2214. "interpolation": "LINEAR",
  2215. "output": "scale"
  2216. },
  2217. "animation_7_translation_sampler": {
  2218. "input": "TIME",
  2219. "interpolation": "LINEAR",
  2220. "output": "translation"
  2221. }
  2222. }
  2223. },
  2224. "animation_8": {
  2225. "channels": [
  2226. {
  2227. "sampler": "animation_8_scale_sampler",
  2228. "target": {
  2229. "id": "Bip01_L_Forearm",
  2230. "path": "scale"
  2231. }
  2232. },
  2233. {
  2234. "sampler": "animation_8_translation_sampler",
  2235. "target": {
  2236. "id": "Bip01_L_Forearm",
  2237. "path": "translation"
  2238. }
  2239. },
  2240. {
  2241. "sampler": "animation_8_rotation_sampler",
  2242. "target": {
  2243. "id": "Bip01_L_Forearm",
  2244. "path": "rotation"
  2245. }
  2246. }
  2247. ],
  2248. "parameters": {
  2249. "TIME": "animAccessor_0",
  2250. "rotation": "animAccessor_92",
  2251. "scale": "animAccessor_90",
  2252. "translation": "animAccessor_91"
  2253. },
  2254. "samplers": {
  2255. "animation_8_rotation_sampler": {
  2256. "input": "TIME",
  2257. "interpolation": "LINEAR",
  2258. "output": "rotation"
  2259. },
  2260. "animation_8_scale_sampler": {
  2261. "input": "TIME",
  2262. "interpolation": "LINEAR",
  2263. "output": "scale"
  2264. },
  2265. "animation_8_translation_sampler": {
  2266. "input": "TIME",
  2267. "interpolation": "LINEAR",
  2268. "output": "translation"
  2269. }
  2270. }
  2271. },
  2272. "animation_9": {
  2273. "channels": [
  2274. {
  2275. "sampler": "animation_9_scale_sampler",
  2276. "target": {
  2277. "id": "Bip01_L_Hand",
  2278. "path": "scale"
  2279. }
  2280. },
  2281. {
  2282. "sampler": "animation_9_translation_sampler",
  2283. "target": {
  2284. "id": "Bip01_L_Hand",
  2285. "path": "translation"
  2286. }
  2287. },
  2288. {
  2289. "sampler": "animation_9_rotation_sampler",
  2290. "target": {
  2291. "id": "Bip01_L_Hand",
  2292. "path": "rotation"
  2293. }
  2294. }
  2295. ],
  2296. "parameters": {
  2297. "TIME": "animAccessor_0",
  2298. "rotation": "animAccessor_95",
  2299. "scale": "animAccessor_93",
  2300. "translation": "animAccessor_94"
  2301. },
  2302. "samplers": {
  2303. "animation_9_rotation_sampler": {
  2304. "input": "TIME",
  2305. "interpolation": "LINEAR",
  2306. "output": "rotation"
  2307. },
  2308. "animation_9_scale_sampler": {
  2309. "input": "TIME",
  2310. "interpolation": "LINEAR",
  2311. "output": "scale"
  2312. },
  2313. "animation_9_translation_sampler": {
  2314. "input": "TIME",
  2315. "interpolation": "LINEAR",
  2316. "output": "translation"
  2317. }
  2318. }
  2319. }
  2320. },
  2321. "asset": {
  2322. "generator": "collada2gltf@",
  2323. "premultipliedAlpha": true,
  2324. "profile": {
  2325. "api": "WebGL",
  2326. "version": "1.0.2"
  2327. },
  2328. "version": "1.0"
  2329. },
  2330. "bufferViews": {
  2331. "bufferView_170": {
  2332. "buffer": "monster",
  2333. "byteLength": 130520,
  2334. "byteOffset": 0
  2335. },
  2336. "bufferView_171": {
  2337. "buffer": "monster",
  2338. "byteLength": 5304,
  2339. "byteOffset": 130520,
  2340. "target": 34963
  2341. },
  2342. "bufferView_172": {
  2343. "buffer": "monster",
  2344. "byteLength": 169728,
  2345. "byteOffset": 135824,
  2346. "target": 34962
  2347. }
  2348. },
  2349. "buffers": {
  2350. "monster": {
  2351. "byteLength": 305552,
  2352. "type": "arraybuffer",
  2353. "uri": "monster.bin"
  2354. }
  2355. },
  2356. "images": {
  2357. "monster_jpg": {
  2358. "name": "monster_jpg",
  2359. "uri": "monster.jpg"
  2360. }
  2361. },
  2362. "materials": {
  2363. "monster-effect": {
  2364. "name": "monster",
  2365. "technique": "technique0",
  2366. "values": {
  2367. "ambient": [
  2368. 0,
  2369. 0,
  2370. 0,
  2371. 1
  2372. ],
  2373. "diffuse": "texture_monster_jpg",
  2374. "emission": [
  2375. 0,
  2376. 0,
  2377. 0,
  2378. 1
  2379. ],
  2380. "shininess": 50,
  2381. "specular": [
  2382. 0.10000000149011612,
  2383. 0.10000000149011612,
  2384. 0.10000000149011612,
  2385. 1
  2386. ]
  2387. }
  2388. }
  2389. },
  2390. "meshes": {
  2391. "monster-mesh": {
  2392. "name": "monster",
  2393. "primitives": [
  2394. {
  2395. "attributes": {
  2396. "JOINT": "accessor_167",
  2397. "NORMAL": "accessor_25",
  2398. "POSITION": "accessor_23",
  2399. "TEXCOORD_0": "accessor_27",
  2400. "WEIGHT": "accessor_164"
  2401. },
  2402. "indices": "accessor_21",
  2403. "material": "monster-effect",
  2404. "mode": 4
  2405. }
  2406. ]
  2407. }
  2408. },
  2409. "nodes": {
  2410. "Armature": {
  2411. "children": [
  2412. "Bip01_Pelvis"
  2413. ],
  2414. "matrix": [
  2415. 0.02539999969303608,
  2416. 0,
  2417. 0,
  2418. 0,
  2419. 0,
  2420. 0.02539999969303608,
  2421. 0,
  2422. 0,
  2423. 0,
  2424. 0,
  2425. 0.02539999969303608,
  2426. 0,
  2427. 0,
  2428. 0,
  2429. 11.732199668884277,
  2430. 1
  2431. ],
  2432. "name": "Armature"
  2433. },
  2434. "Bip01_Head": {
  2435. "children": [
  2436. "Bip01_HeadNub"
  2437. ],
  2438. "jointName": "Bip01_Head",
  2439. "name": "Bip01_Head",
  2440. "rotation": [
  2441. -0.009267386980354786,
  2442. -0.0027827757876366377,
  2443. -0.38848116993904114,
  2444. 0.9214058518409729
  2445. ],
  2446. "scale": [
  2447. 0.9999997615814209,
  2448. 0.9999998211860657,
  2449. 1.000000238418579
  2450. ],
  2451. "translation": [
  2452. 181.7320098876953,
  2453. -0.0008544919546693563,
  2454. 0.0025956600438803434
  2455. ]
  2456. },
  2457. "Bip01_HeadNub": {
  2458. "children": [],
  2459. "jointName": "Bip01_HeadNub",
  2460. "name": "Bip01_HeadNub",
  2461. "rotation": [
  2462. 0.000010299071618646849,
  2463. 0.00001840667027863674,
  2464. 0.7070867419242859,
  2465. 0.707126796245575
  2466. ],
  2467. "scale": [
  2468. 1,
  2469. 1,
  2470. 1
  2471. ],
  2472. "translation": [
  2473. -0.00003051759995287284,
  2474. 345.1399841308594,
  2475. 0
  2476. ]
  2477. },
  2478. "Bip01_L_Calf": {
  2479. "children": [
  2480. "Bip01_L_Foot"
  2481. ],
  2482. "jointName": "Bip01_L_Calf",
  2483. "name": "Bip01_L_Calf",
  2484. "rotation": [
  2485. 0.8947640061378479,
  2486. -0.09883574396371841,
  2487. 0.3619273602962494,
  2488. -0.24215176701545715
  2489. ],
  2490. "scale": [
  2491. 1.0000001192092896,
  2492. 0.9999998807907104,
  2493. 1.0000008344650269
  2494. ],
  2495. "translation": [
  2496. 0.00001525879997643642,
  2497. 547.819030761719,
  2498. 0.00003051759995287284
  2499. ]
  2500. },
  2501. "Bip01_L_Clavicle": {
  2502. "children": [
  2503. "Bip01_L_UpperArm"
  2504. ],
  2505. "jointName": "Bip01_L_Clavicle",
  2506. "name": "Bip01_L_Clavicle",
  2507. "rotation": [
  2508. 0.6269799470901489,
  2509. 0.3371226489543915,
  2510. 0.20376507937908173,
  2511. 0.6721043586730957
  2512. ],
  2513. "scale": [
  2514. 0.9999999403953552,
  2515. 0.9999992847442627,
  2516. 1.000000238418579
  2517. ],
  2518. "translation": [
  2519. 0.0004882809880655259,
  2520. 0.14270000159740448,
  2521. 43.169498443603516
  2522. ]
  2523. },
  2524. "Bip01_L_Finger0": {
  2525. "children": [
  2526. "Bip01_L_Finger0Nub"
  2527. ],
  2528. "jointName": "Bip01_L_Finger0",
  2529. "name": "Bip01_L_Finger0",
  2530. "rotation": [
  2531. -0.0619109682738781,
  2532. -0.6184658408164978,
  2533. -0.3220357596874237,
  2534. 0.7141148447990417
  2535. ],
  2536. "scale": [
  2537. 0.9999995231628418,
  2538. 1.0000001192092896,
  2539. 0.9999997019767761
  2540. ],
  2541. "translation": [
  2542. -0.000022888199964654632,
  2543. 186.6940155029297,
  2544. 0.000007629389983776491
  2545. ]
  2546. },
  2547. "Bip01_L_Finger0Nub": {
  2548. "children": [],
  2549. "jointName": "Bip01_L_Finger0Nub",
  2550. "name": "Bip01_L_Finger0Nub",
  2551. "rotation": [
  2552. 0.18710121512413025,
  2553. 0.18708835542201996,
  2554. 0.6819262504577637,
  2555. 0.6818854212760925
  2556. ],
  2557. "scale": [
  2558. 1,
  2559. 0.9999998211860657,
  2560. 0.9999998211860657
  2561. ],
  2562. "translation": [
  2563. 0,
  2564. 167.7620086669922,
  2565. -0.00006103519990574569
  2566. ]
  2567. },
  2568. "Bip01_L_Foot": {
  2569. "children": [
  2570. "Bip01_L_Toe0"
  2571. ],
  2572. "jointName": "Bip01_L_Foot",
  2573. "name": "Bip01_L_Foot",
  2574. "rotation": [
  2575. 0.6655604839324951,
  2576. -0.4343610405921936,
  2577. 0.2401133030653,
  2578. 0.5574094653129578
  2579. ],
  2580. "scale": [
  2581. 1,
  2582. 1.0000001192092896,
  2583. 0.9999997019767761
  2584. ],
  2585. "translation": [
  2586. -0.00006103519990574569,
  2587. 532.748046875,
  2588. 0.00003814699812210165
  2589. ]
  2590. },
  2591. "Bip01_L_Forearm": {
  2592. "children": [
  2593. "Bip01_L_Hand"
  2594. ],
  2595. "jointName": "Bip01_L_Forearm",
  2596. "name": "Bip01_L_Forearm",
  2597. "rotation": [
  2598. -0.27098697423934937,
  2599. -0.08019017428159714,
  2600. -0.25969499349594116,
  2601. 0.9234143495559692
  2602. ],
  2603. "scale": [
  2604. 0.9999997019767761,
  2605. 0.9999995827674866,
  2606. 1.0000001192092896
  2607. ],
  2608. "translation": [
  2609. -0.00006103519990574569,
  2610. 370.01702880859375,
  2611. -0.00006103519990574569
  2612. ]
  2613. },
  2614. "Bip01_L_Hand": {
  2615. "children": [
  2616. "Bip01_L_Finger0"
  2617. ],
  2618. "jointName": "Bip01_L_Hand",
  2619. "name": "Bip01_L_Hand",
  2620. "rotation": [
  2621. 0.31595033407211304,
  2622. 0.3460729420185089,
  2623. -0.3614858090877533,
  2624. 0.8060625791549683
  2625. ],
  2626. "scale": [
  2627. 1.0000001192092896,
  2628. 1.0000001192092896,
  2629. 0.9999998807907104
  2630. ],
  2631. "translation": [
  2632. 0.00006103519990574569,
  2633. 370.01702880859375,
  2634. 0
  2635. ]
  2636. },
  2637. "Bip01_L_Thigh": {
  2638. "children": [
  2639. "Bip01_L_Calf"
  2640. ],
  2641. "jointName": "Bip01_L_Thigh",
  2642. "name": "Bip01_L_Thigh",
  2643. "rotation": [
  2644. 0.5870407819747925,
  2645. 0.40257617831230164,
  2646. -0.3782249391078949,
  2647. 0.5918288826942444
  2648. ],
  2649. "scale": [
  2650. 1.0000007152557373,
  2651. 1,
  2652. 0.9999998807907104
  2653. ],
  2654. "translation": [
  2655. -101.90400695800781,
  2656. 96.81949615478516,
  2657. 158.14300537109375
  2658. ]
  2659. },
  2660. "Bip01_L_Toe0": {
  2661. "children": [
  2662. "Bip01_L_Toe0Nub"
  2663. ],
  2664. "jointName": "Bip01_L_Toe0",
  2665. "name": "Bip01_L_Toe0",
  2666. "rotation": [
  2667. 0.2559328079223633,
  2668. -0.36201807856559753,
  2669. -0.32195085287094116,
  2670. 0.8365339040756226
  2671. ],
  2672. "scale": [
  2673. 0.9999996423721313,
  2674. 1,
  2675. 1.0000007152557373
  2676. ],
  2677. "translation": [
  2678. -0.00001525879997643642,
  2679. 286.1809997558594,
  2680. -0.00005340580173651688
  2681. ]
  2682. },
  2683. "Bip01_L_Toe0Nub": {
  2684. "children": [],
  2685. "jointName": "Bip01_L_Toe0Nub",
  2686. "name": "Bip01_L_Toe0Nub",
  2687. "rotation": [
  2688. 0.7009931802749634,
  2689. -0.7009893655776978,
  2690. 0.09279544651508331,
  2691. -0.09279819577932358
  2692. ],
  2693. "scale": [
  2694. 1,
  2695. 1,
  2696. 1
  2697. ],
  2698. "translation": [
  2699. 0,
  2700. 166.96800231933594,
  2701. 0.000011444099982327316
  2702. ]
  2703. },
  2704. "Bip01_L_UpperArm": {
  2705. "children": [
  2706. "Bip01_L_Forearm"
  2707. ],
  2708. "jointName": "Bip01_L_UpperArm",
  2709. "name": "Bip01_L_UpperArm",
  2710. "rotation": [
  2711. -0.5832023024559021,
  2712. 0.18192636966705322,
  2713. 0.20986215770244598,
  2714. 0.7633712887763977
  2715. ],
  2716. "scale": [
  2717. 0.9999998211860657,
  2718. 1,
  2719. 1.0000003576278687
  2720. ],
  2721. "translation": [
  2722. 0,
  2723. 175.071014404297,
  2724. -0.00006103519990574569
  2725. ]
  2726. },
  2727. "Bip01_Neck": {
  2728. "children": [
  2729. "Bip01_Head",
  2730. "Bip01_L_Clavicle",
  2731. "Bip01_R_Clavicle"
  2732. ],
  2733. "jointName": "Bip01_Neck",
  2734. "name": "Bip01_Neck",
  2735. "rotation": [
  2736. 0.000004574490503728157,
  2737. 0.000010040302186098415,
  2738. -0.35299697518348694,
  2739. 0.9356244802474976
  2740. ],
  2741. "scale": [
  2742. 0.9999996423721313,
  2743. 0.9999996423721313,
  2744. 1
  2745. ],
  2746. "translation": [
  2747. 402.5520324707031,
  2748. -0.10438500344753265,
  2749. -0.002846479881554842
  2750. ]
  2751. },
  2752. "Bip01_Pelvis": {
  2753. "children": [
  2754. "Bip01_Spine"
  2755. ],
  2756. "jointName": "Bip01_Pelvis",
  2757. "name": "Bip01_Pelvis",
  2758. "rotation": [
  2759. 0.6116809844970703,
  2760. 0.35472750663757324,
  2761. 0.6117032766342163,
  2762. 0.3547307550907135
  2763. ],
  2764. "scale": [
  2765. 0.9999999403953552,
  2766. 0.9999999403953552,
  2767. 1
  2768. ],
  2769. "translation": [
  2770. -1.1628599166870117,
  2771. 99.43409729003906,
  2772. -44.13309860229492
  2773. ]
  2774. },
  2775. "Bip01_R_Calf": {
  2776. "children": [
  2777. "Bip01_R_Foot"
  2778. ],
  2779. "jointName": "Bip01_R_Calf",
  2780. "name": "Bip01_R_Calf",
  2781. "rotation": [
  2782. 0.8947625756263733,
  2783. -0.0988352969288826,
  2784. -0.3619307577610016,
  2785. 0.24215206503868103
  2786. ],
  2787. "scale": [
  2788. 1.0000005960464478,
  2789. 0.9999998807907104,
  2790. 0.999998927116394
  2791. ],
  2792. "translation": [
  2793. -0.00001525879997643642,
  2794. 547.819030761719,
  2795. 0.000003814699994109105
  2796. ]
  2797. },
  2798. "Bip01_R_Clavicle": {
  2799. "children": [
  2800. "Bip01_R_UpperArm"
  2801. ],
  2802. "jointName": "Bip01_R_Clavicle",
  2803. "name": "Bip01_R_Clavicle",
  2804. "rotation": [
  2805. -0.629516065120697,
  2806. -0.3285965025424957,
  2807. 0.19581550359725952,
  2808. 0.6763062477111816
  2809. ],
  2810. "scale": [
  2811. 1.0000003576278687,
  2812. 1.0000001192092896,
  2813. 0.9999996423721313
  2814. ],
  2815. "translation": [
  2816. 0.003967289812862873,
  2817. 0.14590400457382202,
  2818. -43.168800354003906
  2819. ]
  2820. },
  2821. "Bip01_R_Finger0": {
  2822. "children": [
  2823. "Bip01_R_Finger0Nub"
  2824. ],
  2825. "jointName": "Bip01_R_Finger0",
  2826. "name": "Bip01_R_Finger0",
  2827. "rotation": [
  2828. 0.06190689280629158,
  2829. 0.6184580326080322,
  2830. -0.3220381438732147,
  2831. 0.7141208648681641
  2832. ],
  2833. "scale": [
  2834. 1.0000007152557373,
  2835. 1,
  2836. 0.9999999403953552
  2837. ],
  2838. "translation": [
  2839. 0.00005340580173651688,
  2840. 186.69300842285156,
  2841. 0.00003051759995287284
  2842. ]
  2843. },
  2844. "Bip01_R_Finger0Nub": {
  2845. "children": [],
  2846. "jointName": "Bip01_R_Finger0Nub",
  2847. "name": "Bip01_R_Finger0Nub",
  2848. "rotation": [
  2849. 0.1870800256729126,
  2850. -0.18709905445575714,
  2851. -0.6818876266479492,
  2852. 0.6819269061088562
  2853. ],
  2854. "scale": [
  2855. 1,
  2856. 1.0000001192092896,
  2857. 1.0000001192092896
  2858. ],
  2859. "translation": [
  2860. 0,
  2861. 167.75999450683594,
  2862. 0
  2863. ]
  2864. },
  2865. "Bip01_R_Foot": {
  2866. "children": [
  2867. "Bip01_R_Toe0"
  2868. ],
  2869. "jointName": "Bip01_R_Foot",
  2870. "name": "Bip01_R_Foot",
  2871. "rotation": [
  2872. -0.6655600070953369,
  2873. 0.4343647360801697,
  2874. 0.24011120200157166,
  2875. 0.5574080348014832
  2876. ],
  2877. "scale": [
  2878. 1.0000004768371582,
  2879. 0.9999994039535522,
  2880. 1.0000003576278687
  2881. ],
  2882. "translation": [
  2883. 0,
  2884. 532.747009277344,
  2885. 0
  2886. ]
  2887. },
  2888. "Bip01_R_Forearm": {
  2889. "children": [
  2890. "Bip01_R_Hand"
  2891. ],
  2892. "jointName": "Bip01_R_Forearm",
  2893. "name": "Bip01_R_Forearm",
  2894. "rotation": [
  2895. 0.2709878087043762,
  2896. 0.08019044995307922,
  2897. -0.25969409942626953,
  2898. 0.9234143495559692
  2899. ],
  2900. "scale": [
  2901. 1,
  2902. 0.9999999403953552,
  2903. 0.9999998211860657
  2904. ],
  2905. "translation": [
  2906. 0,
  2907. 370.01702880859375,
  2908. 0
  2909. ]
  2910. },
  2911. "Bip01_R_Hand": {
  2912. "children": [
  2913. "Bip01_R_Finger0"
  2914. ],
  2915. "jointName": "Bip01_R_Hand",
  2916. "name": "Bip01_R_Hand",
  2917. "rotation": [
  2918. -0.31595364212989807,
  2919. -0.3460785448551178,
  2920. -0.3614823818206787,
  2921. 0.8060604333877563
  2922. ],
  2923. "scale": [
  2924. 1.0000001192092896,
  2925. 1.0000003576278687,
  2926. 1
  2927. ],
  2928. "translation": [
  2929. 0.00006103519990574569,
  2930. 370.01702880859375,
  2931. 0
  2932. ]
  2933. },
  2934. "Bip01_R_Thigh": {
  2935. "children": [
  2936. "Bip01_R_Calf"
  2937. ],
  2938. "jointName": "Bip01_R_Thigh",
  2939. "name": "Bip01_R_Thigh",
  2940. "rotation": [
  2941. -0.5973690748214722,
  2942. -0.39383262395858765,
  2943. -0.3649849593639374,
  2944. 0.5956777930259705
  2945. ],
  2946. "scale": [
  2947. 0.9999995231628418,
  2948. 1.000000238418579,
  2949. 1
  2950. ],
  2951. "translation": [
  2952. -107.6760025024414,
  2953. 94.97679901123047,
  2954. -155.407012939453
  2955. ]
  2956. },
  2957. "Bip01_R_Toe0": {
  2958. "children": [
  2959. "Bip01_R_Toe0Nub"
  2960. ],
  2961. "jointName": "Bip01_R_Toe0",
  2962. "name": "Bip01_R_Toe0",
  2963. "rotation": [
  2964. -0.25593170523643494,
  2965. 0.3620147407054901,
  2966. -0.321953147649765,
  2967. 0.8365347981452942
  2968. ],
  2969. "scale": [
  2970. 1,
  2971. 0.9999997615814209,
  2972. 1.0000003576278687
  2973. ],
  2974. "translation": [
  2975. 0.00001525879997643642,
  2976. 286.1809997558594,
  2977. -0.000022888199964654632
  2978. ]
  2979. },
  2980. "Bip01_R_Toe0Nub": {
  2981. "children": [],
  2982. "jointName": "Bip01_R_Toe0Nub",
  2983. "name": "Bip01_R_Toe0Nub",
  2984. "rotation": [
  2985. 0.7009877562522888,
  2986. 0.7009937763214111,
  2987. -0.09279316663742065,
  2988. -0.09280811995267868
  2989. ],
  2990. "scale": [
  2991. 1,
  2992. 0.9999999403953552,
  2993. 0.9999996423721313
  2994. ],
  2995. "translation": [
  2996. -0.00006103519990574569,
  2997. 166.96900939941406,
  2998. 0.000003814699994109105
  2999. ]
  3000. },
  3001. "Bip01_R_UpperArm": {
  3002. "children": [
  3003. "Bip01_R_Forearm"
  3004. ],
  3005. "jointName": "Bip01_R_UpperArm",
  3006. "name": "Bip01_R_UpperArm",
  3007. "rotation": [
  3008. 0.5734227299690247,
  3009. -0.18226781487464905,
  3010. 0.23226699233055115,
  3011. 0.7642099857330322
  3012. ],
  3013. "scale": [
  3014. 0.9999998807907104,
  3015. 1.000000238418579,
  3016. 0.9999995231628418
  3017. ],
  3018. "translation": [
  3019. -0.0003051759849768132,
  3020. 175.071014404297,
  3021. 0.00007629390165675431
  3022. ]
  3023. },
  3024. "Bip01_Spine": {
  3025. "children": [
  3026. "Bip01_Spine1",
  3027. "Bip01_R_Thigh",
  3028. "Bip01_L_Thigh",
  3029. "Bip01_Tail"
  3030. ],
  3031. "jointName": "Bip01_Spine",
  3032. "name": "Bip01_Spine",
  3033. "rotation": [
  3034. 0.009599284268915653,
  3035. -0.0010376517893746495,
  3036. 0.9151230454444885,
  3037. 0.4030590057373047
  3038. ],
  3039. "scale": [
  3040. 0.9999993443489075,
  3041. 1.0000001192092896,
  3042. 1.0000004768371582
  3043. ],
  3044. "translation": [
  3045. 0,
  3046. 142.0540008544922,
  3047. 0
  3048. ]
  3049. },
  3050. "Bip01_Spine1": {
  3051. "children": [
  3052. "Bip01_Neck"
  3053. ],
  3054. "jointName": "Bip01_Spine1",
  3055. "name": "Bip01_Spine1",
  3056. "rotation": [
  3057. 0.004396272823214531,
  3058. 0.002536571817472577,
  3059. 0.050762079656124115,
  3060. 0.9986978769302368
  3061. ],
  3062. "scale": [
  3063. 1.0000004768371582,
  3064. 1.000000238418579,
  3065. 1.0000004768371582
  3066. ],
  3067. "translation": [
  3068. 399.19500732421875,
  3069. -0.3195419907569885,
  3070. -0.003049080027267337
  3071. ]
  3072. },
  3073. "Bip01_Tail": {
  3074. "children": [
  3075. "Bip01_Tail1"
  3076. ],
  3077. "jointName": "Bip01_Tail",
  3078. "name": "Bip01_Tail",
  3079. "rotation": [
  3080. 0.003788009285926819,
  3081. 0.008884821087,
  3082. 0.653293251991272,
  3083. 0.7570433616638184
  3084. ],
  3085. "scale": [
  3086. 1,
  3087. 0.9999997019767761,
  3088. 1.0000005960464478
  3089. ],
  3090. "translation": [
  3091. -229.277008056641,
  3092. 51.57169723510742,
  3093. 3.9200799465179443
  3094. ]
  3095. },
  3096. "Bip01_Tail1": {
  3097. "children": [
  3098. "Bip01_Tail2"
  3099. ],
  3100. "jointName": "Bip01_Tail1",
  3101. "name": "Bip01_Tail1",
  3102. "rotation": [
  3103. 0.0000005957685971225146,
  3104. 0.00000022050942050100275,
  3105. 0.1258912980556488,
  3106. 0.9920440316200256
  3107. ],
  3108. "scale": [
  3109. 1.0000001192092896,
  3110. 1.0000003576278687,
  3111. 1
  3112. ],
  3113. "translation": [
  3114. -0.000007629389983776491,
  3115. 275.1340026855469,
  3116. 0.00000023841900542720396
  3117. ]
  3118. },
  3119. "Bip01_Tail2": {
  3120. "children": [
  3121. "Bip01_TailNub"
  3122. ],
  3123. "jointName": "Bip01_Tail2",
  3124. "name": "Bip01_Tail2",
  3125. "rotation": [
  3126. -0.0000008796733936833334,
  3127. -0.0000006967138688196428,
  3128. 0.11349072307348251,
  3129. 0.993539035320282
  3130. ],
  3131. "scale": [
  3132. 1.0000003576278687,
  3133. 1.0000003576278687,
  3134. 1
  3135. ],
  3136. "translation": [
  3137. -0.000022888199964654632,
  3138. 339.0890197753906,
  3139. 0
  3140. ]
  3141. },
  3142. "Bip01_TailNub": {
  3143. "children": [],
  3144. "jointName": "Bip01_TailNub",
  3145. "name": "Bip01_TailNub",
  3146. "rotation": [
  3147. 0.0003985896473750472,
  3148. 0.9999999403953552,
  3149. 0.0000003396343686290493,
  3150. 0.0000033048602290364215
  3151. ],
  3152. "scale": [
  3153. 1.0000003576278687,
  3154. 1.0000003576278687,
  3155. 1
  3156. ],
  3157. "translation": [
  3158. 0.00001525879997643642,
  3159. 374.19000244140625,
  3160. 0
  3161. ]
  3162. },
  3163. "monster": {
  3164. "children": [],
  3165. "matrix": [
  3166. 1,
  3167. 0,
  3168. 0,
  3169. 0,
  3170. 0,
  3171. 1,
  3172. 0,
  3173. 0,
  3174. 0,
  3175. 0,
  3176. 1,
  3177. 0,
  3178. 0,
  3179. 0,
  3180. 0,
  3181. 1
  3182. ],
  3183. "meshes": [
  3184. "monster-mesh"
  3185. ],
  3186. "name": "monster",
  3187. "skeletons": [
  3188. "Bip01_Pelvis"
  3189. ],
  3190. "skin": "Armature_monster-skin"
  3191. },
  3192. "node_34": {
  3193. "children": [
  3194. "Armature",
  3195. "monster"
  3196. ],
  3197. "matrix": [
  3198. 1,
  3199. 0,
  3200. 0,
  3201. 0,
  3202. 0,
  3203. 0,
  3204. -1,
  3205. 0,
  3206. 0,
  3207. 1,
  3208. 0,
  3209. 0,
  3210. 0,
  3211. 0,
  3212. 0,
  3213. 1
  3214. ],
  3215. "name": "Y_UP_Transform"
  3216. }
  3217. },
  3218. "programs": {
  3219. "program_0": {
  3220. "attributes": [
  3221. "a_joint",
  3222. "a_normal",
  3223. "a_position",
  3224. "a_texcoord0",
  3225. "a_weight"
  3226. ],
  3227. "fragmentShader": "monster0FS",
  3228. "vertexShader": "monster0VS"
  3229. }
  3230. },
  3231. "samplers": {
  3232. "sampler_0": {
  3233. "magFilter": 9729,
  3234. "minFilter": 9729,
  3235. "wrapS": 10497,
  3236. "wrapT": 10497
  3237. }
  3238. },
  3239. "scene": "defaultScene",
  3240. "scenes": {
  3241. "defaultScene": {
  3242. "nodes": [
  3243. "node_34"
  3244. ]
  3245. }
  3246. },
  3247. "shaders": {
  3248. "monster0FS": {
  3249. "type": 35632,
  3250. "uri": "monster0FS.glsl"
  3251. },
  3252. "monster0VS": {
  3253. "type": 35633,
  3254. "uri": "monster0VS.glsl"
  3255. }
  3256. },
  3257. "skins": {
  3258. "Armature_monster-skin": {
  3259. "bindShapeMatrix": [
  3260. 1,
  3261. -0.00000009689329516504586,
  3262. -0.000000024223298922265712,
  3263. 0,
  3264. 0.00000004844670087322811,
  3265. 1,
  3266. -0.0000000000000002933850019954591,
  3267. 0,
  3268. 0.00000004844670087322811,
  3269. -0.0000000000000020536900376496485,
  3270. 1,
  3271. 0,
  3272. 4.156729698181152,
  3273. 3.0385899543762207,
  3274. -0.0000009536739753457368,
  3275. 1
  3276. ],
  3277. "inverseBindMatrices": "IBM_Armature_monster-skin",
  3278. "jointNames": [
  3279. "Bip01_Pelvis",
  3280. "Bip01_Spine",
  3281. "Bip01_Spine1",
  3282. "Bip01_Neck",
  3283. "Bip01_Head",
  3284. "Bip01_HeadNub",
  3285. "Bip01_L_Clavicle",
  3286. "Bip01_L_UpperArm",
  3287. "Bip01_L_Forearm",
  3288. "Bip01_L_Hand",
  3289. "Bip01_L_Finger0",
  3290. "Bip01_L_Finger0Nub",
  3291. "Bip01_R_Clavicle",
  3292. "Bip01_R_UpperArm",
  3293. "Bip01_R_Forearm",
  3294. "Bip01_R_Hand",
  3295. "Bip01_R_Finger0",
  3296. "Bip01_R_Finger0Nub",
  3297. "Bip01_L_Thigh",
  3298. "Bip01_L_Calf",
  3299. "Bip01_L_Foot",
  3300. "Bip01_L_Toe0",
  3301. "Bip01_L_Toe0Nub",
  3302. "Bip01_R_Thigh",
  3303. "Bip01_R_Calf",
  3304. "Bip01_R_Foot",
  3305. "Bip01_R_Toe0",
  3306. "Bip01_R_Toe0Nub",
  3307. "Bip01_Tail",
  3308. "Bip01_Tail1",
  3309. "Bip01_Tail2",
  3310. "Bip01_TailNub"
  3311. ],
  3312. "name": "Armature"
  3313. }
  3314. },
  3315. "techniques": {
  3316. "technique0": {
  3317. "attributes": {
  3318. "a_joint": "joint",
  3319. "a_normal": "normal",
  3320. "a_position": "position",
  3321. "a_texcoord0": "texcoord0",
  3322. "a_weight": "weight"
  3323. },
  3324. "parameters": {
  3325. "ambient": {
  3326. "type": 35666
  3327. },
  3328. "diffuse": {
  3329. "type": 35678
  3330. },
  3331. "emission": {
  3332. "type": 35666
  3333. },
  3334. "joint": {
  3335. "semantic": "JOINT",
  3336. "type": 35666
  3337. },
  3338. "jointMat": {
  3339. "count": 32,
  3340. "semantic": "JOINTMATRIX",
  3341. "type": 35676
  3342. },
  3343. "modelViewMatrix": {
  3344. "semantic": "MODELVIEW",
  3345. "type": 35676
  3346. },
  3347. "normal": {
  3348. "semantic": "NORMAL",
  3349. "type": 35665
  3350. },
  3351. "normalMatrix": {
  3352. "semantic": "MODELVIEWINVERSETRANSPOSE",
  3353. "type": 35675
  3354. },
  3355. "position": {
  3356. "semantic": "POSITION",
  3357. "type": 35665
  3358. },
  3359. "projectionMatrix": {
  3360. "semantic": "PROJECTION",
  3361. "type": 35676
  3362. },
  3363. "shininess": {
  3364. "type": 5126
  3365. },
  3366. "specular": {
  3367. "type": 35666
  3368. },
  3369. "texcoord0": {
  3370. "semantic": "TEXCOORD_0",
  3371. "type": 35664
  3372. },
  3373. "weight": {
  3374. "semantic": "WEIGHT",
  3375. "type": 35666
  3376. }
  3377. },
  3378. "program": "program_0",
  3379. "states": {
  3380. "enable": [
  3381. 2929,
  3382. 2884
  3383. ]
  3384. },
  3385. "uniforms": {
  3386. "u_ambient": "ambient",
  3387. "u_diffuse": "diffuse",
  3388. "u_emission": "emission",
  3389. "u_jointMat": "jointMat",
  3390. "u_modelViewMatrix": "modelViewMatrix",
  3391. "u_normalMatrix": "normalMatrix",
  3392. "u_projectionMatrix": "projectionMatrix",
  3393. "u_shininess": "shininess",
  3394. "u_specular": "specular"
  3395. }
  3396. }
  3397. },
  3398. "textures": {
  3399. "texture_monster_jpg": {
  3400. "format": 6408,
  3401. "internalFormat": 6408,
  3402. "sampler": "sampler_0",
  3403. "source": "monster_jpg",
  3404. "target": 3553,
  3405. "type": 5121
  3406. }
  3407. }
  3408. }