UNPKG

@drozdik.m/animation

Version:

Object for handling computed animations using lerp functions.

18 lines (15 loc) 281 B
export class AnimationArgs { private value: number; constructor(value: number) { this.value = value; } /** * Returns currently calculated animation value * */ Value(): number { return this.value; } }