Construct a Projectile role
Optional
damage?: numberHow much damage should the projectile do? (default 1)
Optional
disappearShould the projectile disappear when it collides with another projectile? (default true)
Optional
reclaimer?: ((actor) => void)Code to run when the projectile is reclaimed due to a collision.
Code to run when the projectile is reclaimed due to a collision.
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
How much damage does this projectile do?
When projectiles collide, and they are not sensors, one will disappear. We can keep both on screen by setting this false
Readonly
prerenderTasks to run before every render
Optional
actor: ActorReadonly
rangeThis is the initial point from which the projectile was thrown
Optional
Readonly
reclaimerCode to run when the projectile is reclaimed due to a collision
Code to run when the projectile is reclaimed due to a collision
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 a Projectile collides with an Actor
Other actor involved in this collision
Perform a "punch" using projectiles
The X distance between the actor's center and the punch hitbox center
The Y distance between the actor's center and the punch hitbox center
The actor performing the punch
How long should the punch last (in seconds)?
Toss a projectile. This is for tossing in the direction of a specified point.
X coordinate of the center of the actor doing the toss
Y coordinate of the center of the actor doing the toss
X coordinate of the point at which to toss
Y coordinate of the point at which to toss
The actor who is performing the toss
The x distance between the center of the projectile and the center of the actor tossing the projectile
The y distance between the center of the projectile and the center of the actor tossing the projectile
Toss a projectile. This is for tossing in a single, predetermined direction
The actor who is performing the toss
The x distance between the center of the projectile and the center of the actor tossing the projectile
The y distance between the center of the projectile and the center of the actor tossing the projectile
The X velocity of the projectile when it is tossed
The Y velocity of the projectile when it is tossed
Projectiles are actors that can be tossed from an actor's location, in order to damage enemies