web3d / node_modules /three /src /animation /AnimationMixer.d.ts
julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
645 Bytes
import { AnimationClip } from './AnimationClip';
import { AnimationAction } from './AnimationAction';
import { EventDispatcher } from './../core/EventDispatcher';
export class AnimationMixer extends EventDispatcher {
constructor(root: any);
time: number;
timeScale: number;
clipAction(clip: AnimationClip, root?: any): AnimationAction;
existingAction(clip: AnimationClip, root?: any): AnimationAction;
stopAllAction(): AnimationMixer;
update(deltaTime: number): AnimationMixer;
getRoot(): any;
uncacheClip(clip: AnimationClip): void;
uncacheRoot(root: any): void;
uncacheAction(clip: AnimationClip, root?: any): void;
}