The Animation that have not get instanted

interface Animation<T> {
    act: ((widget, elapsed, process, params?) => void);
}

Type Parameters

  • T

Properties

Properties

act: ((widget, elapsed, process, params?) => void)

The action of this animation when it's in his lifecycle.

Type declaration

    • (widget, elapsed, process, params?): void
    • Parameters

      • widget: T

        The widget's self.

      • elapsed: number

        The elapsed frame.

      • process: number

        The process of this animation, value is during [0, 1]

      • Optional params: any

        The other parameters of this animation

      Returns void

Returns