CameraFovType
Defines how the camera's Field of View (FOV) is determined.
| Type | Name | Interface Description |
|---|---|---|
| Enum | Custom | • Function: Custom FOV setting. |
| Enum | Physical | • Function: FOV based on physical properties. |
Examples
Custom
let value = APJS.CameraFovType.Custom;
Physical
let value = APJS.CameraFovType.Physical;
Use Case
@component()
export class NewBehaviourScript extends APJS.BasicScriptComponent {
onStart() {
// TODO: instantiate / use CameraFovType here
}
onUpdate(deltaTime: number) {
}
}