The goodie role is most easily thought of as a coin. When the hero collides with the coin, the default behavior is that the coin disappears and the score increases by 1.

Note that in reality, goodies are more powerful than the above description: when the hero collides with them, they disappear, and we can run whatever code we want. It's just that the default is for the score to increase. It's fine to make the score decrease, or make it increase by some unexpected amount. You could even make the hero's color change, or make the hero grow, or whatever else you want. The important points are just that the goodie disappears, and some code runs.

Hierarchy

  • Role
    • Goodie

Constructors

  • Construct a Goodie role

    Parameters

    • cfg: {
          onCollect?: ((g, h) => boolean);
      } = {}
      • Optional onCollect?: ((g, h) => boolean)

        Code to run when a hero collects the goodie. If you do not provide a value, the default is that score[0] will increase by one.

          • (g, h): boolean
          • Code to run when a hero collects the goodie. If you do not provide a value, the default is that score[0] will increase by one.

            Parameters

            Returns boolean

    Returns Goodie

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

onCollect: ((g, h) => boolean)

The code to run when the hero collects this goodie

Type declaration

    • (g, h): boolean
    • The code to run when the hero collects this goodie

      Parameters

      Returns boolean

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