FilledCircle describes any object whose visual representation is a filled circle.

Constructors

  • Build a FilledCircle

    Parameters

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

        Color to fill the circle

      • Optional lineColor?: string

        Color for the border

      • Optional lineWidth?: number

        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 circle

      • Optional z?: ZIndex

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

    Returns FilledCircle

Properties

actor?: Actor

The Actor to which this FilledCircle is attached

fillColor?: string

Fill color

graphics: Graphics = ...

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

height: number

Height, to simplify some other code

lineColor?: string

Line color

lineWidth?: number

Line width

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

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

Type declaration

  • dx: number
  • dy: number
radius: number

Radius of the circle

width: number

Width, to simplify some other code

Z index of the circle: Must be in the range [-2, 2]

Methods

  • Perform any custom updates to the circle before displaying it

    Parameters

    • _elapsedMs: number

    Returns void

  • Render the FilledCircle

    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 circle. 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