Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface CameraConfig

Interface describing a 3D Camera configuration object

Hierarchy

  • CameraConfig

Index

Properties

name: string

A name for the Camera

offset?: { angles?: Vec3; position?: Vec3 }

Optional Camera offsets

Type declaration

  • Optional angles?: Vec3
  • Optional position?: Vec3
projection: { far?: number; fov?: number; height: number; mode: "orthographic" | "perspective"; near: number; width: number }

3D Projection parameters

Type declaration

  • Optional far?: number

    Optional far - defaults to (-near) for Orthographic Projection, and 'infinite' for Perspective

  • Optional fov?: number

    Optional FOV - defaults to 90 when using Perspective Projection

  • height: number
  • mode: "orthographic" | "perspective"

    Mode - defaults to 'perspective'

  • near: number
  • width: number