ImageService provides a library of image objects that can be used at any time.

Constructors

Methods

  • Get an image that has been loaded by the renderer, returning it as a raw Pixi Texture

    Parameters

    • imgName: string

      The name of the image to load

    Returns Texture<Resource>

    A Texture built from the image

  • Get an image that has been loaded by the renderer

    Parameters

    • imgName: string

      The name of the image to load

    Returns Sprite

    A Sprite built from the image

  • Get a video that has been loaded by the renderer

    Parameters

    • vidName: string

      The name of the video to load

    Returns Sprite

    A Sprite built from the video

  • Load all of the graphics assets, then call the callback to start the game

    Parameters

    • callback: (() => void)

      The code to run once all assets are loaded

        • (): void
        • Returns void

    Returns void