|
@@ -10,17 +10,15 @@ export class Skeleton {
|
|
|
* @deprecated This property has been removed completely.
|
|
|
*/
|
|
|
useVertexTexture: boolean;
|
|
|
- identityMatrix: Matrix4;
|
|
|
bones: Bone[];
|
|
|
- boneTextureWidth: number;
|
|
|
- boneTextureHeight: number;
|
|
|
boneMatrices: Float32Array;
|
|
|
- boneTexture: DataTexture;
|
|
|
+ boneTexture: undefined | DataTexture;
|
|
|
boneInverses: Matrix4[];
|
|
|
|
|
|
calculateInverses( bone: Bone ): void;
|
|
|
pose(): void;
|
|
|
update(): void;
|
|
|
- clone(): this;
|
|
|
+ clone(): Skeleton;
|
|
|
+ getBoneByName( name: string ): undefined | Bone;
|
|
|
|
|
|
}
|