Motion
Character Motion Review
What this shows
A skeletal motion clip drives an animated bone hierarchy.
Loading scene…Key API excerpt
Key API excerpt
import * as EASEL from "@xsyetopz/easel";
const result = new EASEL.BVHLoader().parse(text);
scene.add(result.root, new EASEL.SkeletonHelper(result.root));
const animator = new EASEL.Animator(result.root);
animator.clipAction(result.clip).play();
animator.update(delta);