A sprite is any picture that can be drawn to the screen

Constructors

Properties

Methods

Constructors

  • Construct a sprite

    Parameters

    • imgName: string

      the name of the image file to load

    • sprite: Sprite

      The PIXI sprite to use

    Returns Sprite

Properties

debug: Graphics = ...

A debug context, for when we need to print shape outlines

imgName: string

the name of the image file to load

sprite: Sprite

The PIXI sprite to use

Methods

  • Set the position of the sprite relative to some X/Y anchor point

    Parameters

    • ax: number

      The X anchor

    • ay: number

      The Y anchor

    • x: number

      The X position relative to the anchor

    • y: number

      The Y position relative to the anchor

    Returns void