August 2018
Intermediate to advanced
528 pages
10h 58m
English
The Autodesk FBX format has been around for a while, and is very easy to use. There is a great resource online where you can find many animations that you can download in this format: https://www.mixamo.com/. This site provides 2,500 animations that you can use and customize:

After downloading an animation, using it from Three.js is easy:
var loader = new THREE.FBXLoader(); loader.load('../../assets/models/salsa/salsa.fbx', function (result) { result.scale.set(0.2, 0.2, 0.2); result.translateY(-13); scene.add(result) // setup the mixer mixer = new THREE.AnimationMixer( result ); animationClip ...Read now
Unlock full access