A Passive role is for things that barely even count as being part of the game, like background images, HUD text, etc.

Hierarchy

  • Role
    • Passive

Constructors

  • Construct a Passive role

    Returns Passive

Properties

collisionRules: {
    ignores: CollisionExemptions[];
    properties: CollisionExemptions[];
} = ...

collisionRules lets us turn off collisions based on the roles of two actors. We do this with two sets. If A's second set contains an entry in B's first set, then we disable the collision. We also do this symmetrically with B and A. In essence, this means that the first set lets a Role say "here are special things about me", and the second set lets a Role say "I don't collide with things that are special in these ways."

Type declaration

prerenderTasks: ((elapsedMs, actor?) => void)[] = []

Tasks to run before every render

Type declaration

    • (elapsedMs, actor?): void
    • Parameters

      • elapsedMs: number
      • Optional actor: Actor

      Returns void

Accessors

  • get actor(): undefined | Actor
  • The actor associated with this Role

    Returns undefined | Actor

  • set actor(actor): void
  • The actor associated with this Role

    Parameters

    Returns void

Methods

  • This actor ignores collisions with Heroes

    Parameters

    Returns void

  • Indicate that the current Role should not ignore collisions with some other role

    Parameters

    Returns void

  • Code to run when there is a collision involving this role's Actor

    Parameters

    Returns boolean

  • Code to run immediately before rendering this role's Actor

    Parameters

    • elapsedMs: number

    Returns void