Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Camera

Concrete 3D Camera, setting out 3D-specific properties and behavior, providing type safety for Aura3D

Supports both Orthographic and Perspecitve Projection approaches by way of the projection configuration member 'mode'

Hierarchy

Index

Constructors

  • Constructor. Pass a 2D CameraConfig to the parent class and initialize the projection and view matrices

    Parameters

    Returns Camera

Properties

config: CameraConfig
following: undefined | CameraFollow

Concrete 3D CameraFollow specification

projection: Mat4

Concrete 3D projection matrix

transform: Transform

Concrete 3D Transform Component, used as the View Matrix

Accessors

  • get name(): string
  • Retrieve the Camera's name

    Returns string

Methods

  • Attach the 3D Camera to an Entity with the given 3D CameraFollowRules

    If no CameraFollowRules are provided, use defaults: - position.x - true - position.y - true - position.z - true - angles.x (pitch) - true - angles.y (yaw) - true - angles.z (roll) - false

    Parameters

    • entity: Entity

      the Entity to follow

    • Optional rules: CameraFollowRules

      the 3D CameraFollowRules to apply in following the Entity

    Returns void

  • detach(): void
  • Detach the Camera from the Entity it's following

    Returns void

  • getViewMatrix(): Mat4
  • Compute the 3D Camera's View Matrix

    Returns Mat4

    the 3D View Matrix

  • move(amounts: Vec3): void
  • Move along all three axes by a given 3D vector (relative to self)

    Parameters

    • amounts: Vec3

      the 3D vector to move by

    Returns void

  • moveForward(amount: number): void
  • Move along the forward axis by a given amount (relative to self)

    Parameters

    • amount: number

      the amount to move by

    Returns void

  • moveRight(amount: number): void
  • Move along the right axis by a given amount (relative to self)

    Parameters

    • amount: number

      the amount to move by

    Returns void

  • moveUp(amount: number): void
  • Move along the up axis by a given amount (relative to self)

    Parameters

    • amount: number

      the amount to move by

    Returns void

  • reset(): void
  • Reset the Camera's Transform

    Returns void

  • rotate(angles: Vec3): void
  • Rotate around all three axes by 3 given angles (radians)

    Parameters

    • angles: Vec3

      the X, Y and Z angles to rotate by

    Returns void

  • rotateX(angle: number): void
  • Rotate by a given angle (radians) around the X axis; pitch

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

  • rotateY(angle: number): void
  • Rotate by a given angle (radians) around the Y axis; yaw

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

  • rotateZ(angle: number): void
  • Rotate by a given angle (radians) around the Z axis; roll

    Parameters

    • angle: number

      the angle to rotate by

    Returns void

  • translate(translate: Vec3): void
  • Move by a given translation vector (relative to world axes)

    Parameters

    • translate: Vec3

      the translation vector

    Returns void

  • zoom(factor: Vec3): void
  • 'Zoom' the Camera by scaling by a given factor (relative to current scale)

    Parameters

    • factor: Vec3

      the 3D factor to scale by

    Returns void

  • zoomTo(factor: Vec3): void
  • 'Zoom' the Camera by scaling to a given absolute factor

    Parameters

    • factor: Vec3

      the 3D factor to scale to

    Returns void