A sensor is something that a Hero can "pass through", which causes some code to run.

Hierarchy

  • Role
    • Sensor

Constructors

  • Construct a Sensor by providing some code to run when a hero passes over this sensor

    Parameters

    • cfg: {
          heroCollision?: ((thisActor, collideActor) => void);
      } = {}
      • Optional heroCollision?: ((thisActor, collideActor) => void)

        The code to run when the hero crosses the Sensor

          • (thisActor, collideActor): void
          • The code to run when the hero crosses the Sensor

            Parameters

            Returns void

    Returns Sensor

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

heroCollision?: ((thisActor, collideActor) => void)

The code to run when the hero crosses the sensor

Type declaration

    • (thisActor, collideActor): void
    • The code to run when the hero crosses the sensor

      Parameters

      Returns void

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