UNPKG

tween.js-manager

Version:

Wrapper for TWEEN animation library to simplify reusing animations.

14 lines (13 loc) 482 B
/// <reference types="tween.js" /> import { Animation } from "./Animation"; export declare class TweenBinding extends TWEEN.Tween { private animatedProperties; private animation; private composedBindings; onCompleteCallables: Function[]; onStopCallables: Function[]; onStop: Function; constructor(context: Object, animation: Animation, duration?: number, easing?: TweenEasing); getAnimation(): Animation; readonly hasComposedBindings: boolean; }