August 2018
Intermediate to advanced
528 pages
10h 58m
English
The BVHLoader is a slightly different loader than the once we have we've seen so far. This loader doesn't return meshes or geometries with animations but just returns a skeleton and an animation. An example of this is shown in 17-animation-from-bvh.html:

To visualize this, we can reuse the THREE.SkeletonHelper, as seen here:
var loader = new THREE.BVHLoader(); loader.load('../../assets/models/amelia-dance/DanceNightClub7_t1.bvh', function (result, mat) { skeletonHelper = new THREE.SkeletonHelper( result.skeleton.bones[ 0 ] ); // allow animation mixer to bind to SkeletonHelper directly ...Read now
Unlock full access