FilledRoundedBox describes any object whose visual representation is a filled box with rounded corners. These are particularly useful as the background for text messages.

Constructors

  • Build a FilledRoundedBox

    Parameters

    • opts: {
          fillColor: string;
          height: number;
          lineColor?: string;
          lineWidth?: number;
          offset?: {
              dx: number;
              dy: number;
          };
          radius: number;
          width: number;
          z?: ZIndex;
      }
      • fillColor: string

        Color to fill the box

      • height: number

        Height of the box

      • Optional lineColor?: string

        Optional color for the border

      • Optional lineWidth?: number

        Optional width of the border

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

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

        • dx: number
        • dy: number
      • radius: number

        Radius of the corners

      • width: number

        Width of the box

      • Optional z?: ZIndex

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

    Returns FilledRoundedBox

Properties

actor?: Actor

The Actor to which this FilledSprite is attached

fillColor: string

Fill color

graphics: Graphics = ...

The low-level graphics object that we pass to the Renderer

height: number

Height of the box

lineColor?: string

Line color

lineWidth?: number

Line width

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

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

Type declaration

  • dx: number
  • dy: number
radius: number

Radius of the corners

width: number

Width of the box

Z index of the box

Methods

  • Perform any custom updates to the box before displaying it

    Parameters

    • _elapsedMs: number

    Returns void

  • Render the FilledRoundedBox

    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

  • Change the size of the box. 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", fraction means "shrink".

    Returns void