Construct a Destination role
Optional
capacity?: numberThe number of Heroes this Destination can hold (default 1)
Optional
onA custom, optional check to decide if the Destination is "ready" to accept a Hero.
A custom, optional check to decide if the Destination is "ready" to accept a Hero.
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."
The second set: properties that this role won't collide with
The first set: properties of this role
Readonly
prerenderTasks to run before every render
Optional
actor: ActorThis actor ignores collisions with Heroes
Indicate that the current Role should not ignore collisions with some other role
The role that should not be ignored
Code to run when there is a collision involving this role's Actor
Decide if a hero can be received by the destination, and if so, receive it
The hero who may be received by this destination
True if the hero was accepted, false otherwise
The destination role is most easily thought of in the context of a maze game: when all heroes reach destinations, the level is won.