@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
12 lines (8 loc) • 444 B
TypeScript
import {AnimationClipBinding} from "../../../../animation/clip/AnimationClipBinding";
import {SGAnimationPlayback} from "./SGAnimationPlayback";
export class SGMeshAnimationController {
readonly bound: AnimationClipBinding[]
start(name: string, loop?: boolean, time_offset?: number): SGAnimationPlayback
stop(playback: SGAnimationPlayback): boolean
getActiveByName(name: string): SGAnimationPlayback | undefined
}