ImageSprite describes any object whose visual representation is a single image that is not animated.

Constructors

  • Build an image that can be rendered

    Parameters

    • opts: {
          height: number;
          img: string | Sprite;
          offset?: {
              dx: number;
              dy: number;
          };
          width: number;
          z?: ZIndex;
      }
      • height: number

        The height of the image, in meters

      • img: string | Sprite

        The name of the file to use as the image, or a PixiSprite

      • Optional offset?: {
            dx: number;
            dy: number;
        }

        An offset between the component's center and its RigidBody's center (optional)

        • dx: number
        • dy: number
      • width: number

        The width of the image, in meters

      • Optional z?: ZIndex

        An optional z index in the range [-2,2]

    Returns ImageSprite

Properties

actor?: Actor

The Actor to which this ImageSprite is attached

height: number

Height of the image

image: Sprite

The image to display for this actor

img: string

The name of the image file

offset: {
    dx: number;
    dy: number;
}

An offset between the ImageSprite's center and the RigidBody's center

Type declaration

  • dx: number
  • dy: number
width: number

Width of the image

Z index of the image

Methods

  • An internal method that lets us overwrite the image used by an ImageSprite with something generated directly by PIXI. This lets us turn screenshots into ImageSprites.

    Parameters

    • pixi_sprite: Sprite

      The sprite to use

    Returns void

  • Perform any custom updates to the image before displaying it

    Parameters

    • _elapsedMs: number

    Returns void

  • Render the image

    Parameters

    • camera: CameraService

      The camera for the current stage

    • _elapsedMs: number

      The time since the last render

    • location: SpriteLocation

      Where should this be drawn (WORLD/OVERLAY/HUD)

    Returns void

  • Render the image when it does not have a rigidBody. This is only used for Parallax

    Parameters

    • anchor: {
          cx: number;
          cy: number;
      }

      The center x/y at which to draw the image

      • cx: number
      • cy: number
    • camera: CameraService

      The camera for the current stage

    • _elapsedMs: number

      The time since the last render

    • foreground: boolean

      Does this belong in the foreground (true) or background?

    Returns void

  • Change the size of the image. You shouldn't call this directly. It gets called by Actor.resize().

    Parameters

    • scale: number

      The amount to scale the size by. 1 means "no change", >1 means "grow", 0 < scale < 1 means "shrink".

    Returns void

  • Change the image being used to display the actor

    Parameters

    • imgName: string

      The name of the new image file to use

    Returns void