Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/remapper/src/deps.ts>three.Camera

A framework for Beat Saber map scripting.
Go to Latest
class three.Camera
extends Object3D
Re-export
import { three } from "https://deno.land/x/remapper@2.1.0/src/deps.ts";
const { Camera } = three;

Abstract base class for cameras. This class should always be inherited when you build a new camera.

Constructors

new
Camera()

This constructor sets following properties to the correct type: matrixWorldInverse, projectionMatrix and projectionMatrixInverse.

Properties

readonly
isCamera: true
matrixWorldInverse: Matrix4

This is the inverse of matrixWorld. MatrixWorld contains the Matrix which has the world transform of the Camera.

projectionMatrix: Matrix4

This is the matrix which contains the projection.

projectionMatrixInverse: Matrix4

This is the inverse of projectionMatrix.