File size: 538 Bytes
2b7aae2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { Object3D } from './../core/Object3D';
import { Matrix4 } from './../math/Matrix4';
import { Bone } from './../objects/Bone';
import { LineSegments } from './../objects/LineSegments';

export class SkeletonHelper extends LineSegments {
	constructor(object: Object3D);

	/**
	 * @default 'SkeletonHelper'
	 */
	type: string;

	bones: Bone[];
	root: Object3D;

	readonly isSkeletonHelper: true;

	matrix: Matrix4;

	/**
	 * @default false
	 */
	matrixAutoUpdate: boolean;

	getBoneList(object: Object3D): Bone[];
	update(): void;
}