Class ViewportCameraControls

Viewport camera controls.

Hierarchy

Implements

Constructors

Properties

_enabled: boolean
_limitOrographicCameraTo2D: boolean

Whether the orthographic camera should be limited to 2D or not.

If true, the camera will be limited to 2D and only display a view from above - like Google Maps.

_previousPolarAngle: null | number = null

Previous polar angle of the camera.

cameraControls: CameraControls

Reference to the camera-controls instance.

domElement: HTMLCanvasElement
object: Object3D<Object3DEventMap>

Accessors

Methods

  • Adds a listener to an event type.

    Type Parameters

    • T extends never

    Parameters

    • type: T

      The type of event to listen to.

    • listener: EventListener<{}[T], T, ViewportCameraControls>

      The function that gets called when the event is fired.

    Returns void

  • Fire an event type.

    Type Parameters

    • T extends never

    Parameters

    • event: BaseEvent<T> & {}[T]

      The event that gets fired.

    Returns void

  • Checks if listener is added to an event type.

    Type Parameters

    • T extends never

    Parameters

    • type: T

      The type of event to listen to.

    • listener: EventListener<{}[T], T, ViewportCameraControls>

      The function that gets called when the event is fired.

    Returns boolean

  • Removes a listener from an event type.

    Type Parameters

    • T extends never

    Parameters

    • type: T

      The type of the listener that gets removed.

    • listener: EventListener<{}[T], T, ViewportCameraControls>

      The listener function that gets removed.

    Returns void

  • Set the boundary box that encloses the target of the camera. box3 is in THREE.Box3

    Parameters

    • Optional box3: Box3

      THREE.Box3

    Returns void

Generated using TypeDoc