Construct an Obstacle role
Optional
disableShould the hero bounce off of this obstacle?
Optional
enemyCode to run when this obstacle collides with an enemy
Code to run when this obstacle collides with an enemy
Optional
heroCode to run when this obstacle collides with a hero
Code to run when this obstacle collides with a hero
Optional
jumpWhich sides "count" for letting a jumping hero jump again?
Optional
projectileCode to run when this obstacle collides with a projectile
Code to run when this obstacle collides with a projectile
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
Optional
enemyThis is for when an enemy collides with an obstacle
Optional
heroCode to run when a hero collides with this obstacle
Which sides of this obstacle count as a "wall" to stop the current jump
Readonly
prerenderTasks to run before every render
Optional
actor: ActorOptional
projectileThis is for when a projectile collides with an obstacle
This 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
Obstacles are usually walls, except they can also move, and can be used in all sorts of other ways.