Spaces:
Running
Running
File size: 645 Bytes
6cd9596 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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;
}
|