The manual movement component doesn't do anything by default, but provides ways of moving the actor, so that code attached to input events (keyboard, mouse, gesture) can make the actor move in appropriate ways.

Constructors

  • Construct a ManualMovement component

    Parameters

    • cfg: {
          gravityAffectsIt?: boolean;
          rotateByDirection?: boolean;
      } = {}
      • Optional gravityAffectsIt?: boolean

        Does gravity affect this actor?

      • Optional rotateByDirection?: boolean

        Should the actor rotate based on its direction of movement?

    Returns ManualMovement

Accessors

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

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

    Parameters

    Returns void

Methods

  • Add velocity to this actor

    Parameters

    • x: number

      Velocity in X dimension

    • y: number

      Velocity in Y dimension

    Returns void

  • Return the X velocity of of this actor

    Returns undefined | number

  • Return the Y velocity of of this actor

    Returns undefined | number

  • Change the rotation of the body

    Parameters

    • delta: number

      How much to add to the current rotation

    Returns void

  • Do any last-minute adjustments related to the movement

    Parameters

    Returns void

  • Set the absolute velocity of this actor

    Parameters

    • x: number

      Velocity in X dimension

    • y: number

      Velocity in Y dimension

    Returns void

  • Set a dampening factor to cause a spinning body to decrease its rate of spin

    Parameters

    • amount: number

      The amount of damping to apply

    Returns void

  • Set a dampening factor to cause a moving body to slow down without colliding with anything

    Parameters

    • amount: number

      The amount of damping to apply

    Returns void

  • Indicate that this actor should be immune to the force of gravity

    Returns void

  • Set the angular velocity, for making a body rotate

    Parameters

    • rps: number

      The velocity, in radians per second

    Returns void

  • Update the velocity

    Parameters

    • x: number

      The new x velocity

    • y: number

      The new y velocity

    Returns void

  • Update the X velocity

    Parameters

    • x: number

      The new x velocity

    Returns void

  • Update the Y velocity

    Parameters

    • y: number

      The new x velocity

    Returns void