Projectiles are actors that can be tossed from an actor's location, in order to damage enemies

Hierarchy

  • Role
    • Projectile

Constructors

  • Construct a Projectile role

    Parameters

    • cfg: {
          damage?: number;
          disappearOnCollide?: boolean;
          reclaimer?: ((actor) => void);
      } = {}
      • Optional damage?: number

        How much damage should the projectile do? (default 1)

      • Optional disappearOnCollide?: boolean

        Should 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.

          • (actor): void
          • Code to run when the projectile is reclaimed due to a collision.

            Parameters

            Returns void

    Returns Projectile

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

damage: number

How much damage does this projectile do?

disappearOnCollide: boolean

When projectiles collide, and they are not sensors, one will disappear. We can keep both on screen by setting this false

prerenderTasks: ((elapsedMs, actor?) => void)[] = []

Tasks to run before every render

Type declaration

    • (elapsedMs, actor?): void
    • Parameters

      • elapsedMs: number
      • Optional actor: Actor

      Returns void

rangeFrom: b2Vec2 = ...

This is the initial point from which the projectile was thrown

reclaimer?: ((actor) => void)

Code to run when the projectile is reclaimed due to a collision

Type declaration

    • (actor): void
    • Code to run when the projectile is reclaimed due to a collision

      Parameters

      Returns void

Accessors

  • get actor(): undefined | Actor
  • The actor associated with this Role

    Returns undefined | Actor

  • set actor(actor): void
  • The Actor to which this role is attached

    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 a Projectile collides with an Actor

    Parameters

    • other: Actor

      Other actor involved in this collision

    Returns boolean

  • Code to run immediately before rendering this role's Actor

    Parameters

    • elapsedMs: number

    Returns void

  • Perform a "punch" using projectiles

    Parameters

    • dx: number

      The X distance between the actor's center and the punch hitbox center

    • dy: number

      The Y distance between the actor's center and the punch hitbox center

    • actor: Actor

      The actor performing the punch

    • duration: number

      How long should the punch last (in seconds)?

    Returns void

  • Toss a projectile. This is for tossing in the direction of a specified point.

    Parameters

    • fromX: number

      X coordinate of the center of the actor doing the toss

    • fromY: number

      Y coordinate of the center of the actor doing the toss

    • toX: number

      X coordinate of the point at which to toss

    • toY: number

      Y coordinate of the point at which to toss

    • actor: Actor

      The actor who is performing the toss

    • offsetX: number

      The x distance between the center of the projectile and the center of the actor tossing the projectile

    • offsetY: number

      The y distance between the center of the projectile and the center of the actor tossing the projectile

    Returns void

  • Toss a projectile. This is for tossing in a single, predetermined direction

    Parameters

    • actor: Actor

      The actor who is performing the toss

    • offsetX: number

      The x distance between the center of the projectile and the center of the actor tossing the projectile

    • offsetY: number

      The y distance between the center of the projectile and the center of the actor tossing the projectile

    • velocityX: number

      The X velocity of the projectile when it is tossed

    • velocityY: number

      The Y velocity of the projectile when it is tossed

    Returns void