Defines Camera basic perspective options.

interface CameraBaseOptions {
    near?: number;
    far?: number;
}

Hierarchy (View Summary)

Properties

Properties

near?: number

Camera near plane, the closest point where a mesh vertex is drawn.

far?: number

Camera far plane, the farthest point where a mesh vertex is drawn.