web3d / node_modules /three /src /helpers /SkeletonHelper.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
328 Bytes
import { Object3D } from './../core/Object3D';
import { Bone } from './../objects/Bone';
import { LineSegments } from './../objects/LineSegments';
export class SkeletonHelper extends LineSegments {
constructor(bone: Object3D);
bones: Bone[];
root: Object3D;
getBoneList(object: Object3D): Bone[];
update(): void;
}