Actor is the main entity of the game. Pretty much everything on the stage is an actor.

Constructors

Properties

appearance: AppearanceComponent[]

The visual representation of this Actor within the game

extra: any = {}

Extra data that the game designer can attach to the Actor

gestures: GestureHandlers

A set of functions describing how the Actor should respond to gestures.

The rules for how this Actor should move

onDisappear: undefined | ((a) => void)

Code to run when the actor disappears

Type declaration

    • (a): void
    • Parameters

      Returns void

A physical context for the Actor. This is necessary if the Actor will move, participate in collisions, or receive gesture inputs.

The behavioral role that this Actor plays within the game

scene: Scene

The scene where the Actor exists

The packet of information describing the audio aspects of this Actor

The current state of this Actor

Accessors

  • get enabled(): boolean
  • Returns boolean

  • set enabled(val): void
  • Is this Actor visible and able to interact with the world?

    Parameters

    • val: boolean

    Returns void

Methods

  • Prerender is called on an Actor immediately before it is rendered. This lets us do any last-minute adjustments before putting it on the screen.

    Parameters

    • elapsedMs: number

      The time since the last render

    Returns boolean

    True if the Actor is enabled, false otherwise

  • Make an Actor disappear

    Returns void

  • Change the size of an Actor, keeping its center unchanged

    Parameters

    • scale: number

      The factor by which to scale the actor's dimensions. Must be >0. 1 means no change, a fraction means shrink, and a number >1 means grow.

    Returns void