AnimationSequence describes a set of images that can be cycled through, in order to achieve an animation effect. We associate a time (in milliseconds) with each image, and also allow the animation to loop.

Constructors

Properties

Methods

Constructors

  • Create the shell of an animation. Once the shell is created, use "to()" to add steps to the animation.

    Parameters

    • loop: boolean

      Should the animation repeat?

    Returns AnimationSequence

Properties

loop: boolean

Should the animation repeat?

steps: {
    cell: Sprite;
    duration: number;
}[] = []

A set of images that can be used as frames of an animation, along with their durations

Type declaration

Methods

  • Return the duration of the entire animation sequence

    Returns number

  • Add a step to an animation

    Parameters

    • imgName: string | Sprite

      The name of the image to add to the animation

    • duration: number

      The time in milliseconds that this image should be shown

    Returns AnimationSequence

    The Animation, so that we can chain calls to "to()"

  • Create a "simple" animation (i.e., one that shows each of a set of images for the same amount of time)

    Parameters

    • cfg: {
          images: (string | Sprite)[];
          repeat: boolean;
          timePerFrame: number;
      }
      • images: (string | Sprite)[]

        The names of the images that comprise the animation

      • repeat: boolean

        True if the animation should repeat when it reaches the end

      • timePerFrame: number

        The time to show each image, in milliseconds

    Returns AnimationSequence

    The animation