A rule for moving by chasing some other actor

Constructors

Accessors

Methods

Constructors

  • Specify that this actor is supposed to chase another actor

    Parameters

    • cfg: {
          chaseInX?: boolean;
          chaseInY?: boolean;
          multiplier?: number;
          speed: number;
          target: Actor;
      }
      • Optional chaseInX?: boolean

        Optional: Should the actor change its x velocity?

      • Optional chaseInY?: boolean

        Optional: Should the actor change its y velocity?

      • Optional multiplier?: number

        Optional scaling factor for changing how fast the actor chases (default is 2) (useful when chaseInX or chaseInY is false)

      • speed: number

        The speed with which it chases the other actor

      • target: Actor

        The actor to chase

    Returns ChaseMovement

Accessors

  • get rigidBody(): undefined | RigidBodyComponent
  • Returns undefined | RigidBodyComponent

  • set rigidBody(body): void
  • The Actor to which this movement is attached

    Parameters

    Returns void

Methods

  • Do any last-minute adjustments related to the movement

    Parameters

    Returns void