CameraMode

@three-blocks/pro
const CameraMode = { FIRST_PERSON: 'firstPerson', THIRD_PERSON: 'thirdPerson', THIRD_PERSON_FREE: 'thirdPersonFree', BIRD_VIEW: 'birdVie...
Value
{ FIRST_PERSON: 'firstPerson', THIRD_PERSON: 'thirdPerson', THIRD_PERSON_FREE: 'thirdPersonFree', BIRD_VIEW: 'birdView', }

Available camera modes

Example
import { CameraMode } from '@three-blocks/pro';

camera.setMode(CameraMode.FIRST_PERSON);
camera.setMode(CameraMode.THIRD_PERSON);