Documentation / @ripl/vue-3d / RiplCameraProps
Interface: RiplCameraProps ​
Defined in: vue-3d/src/types.ts:101
Props accepted by RiplCamera.
Properties ​
| Property | Type | Description | Defined in |
|---|---|---|---|
far? | number | The distance to the far clipping plane. Defaults to 1000. | vue-3d/src/types.ts:113 |
fov? | number | The vertical field of view, in degrees. Defaults to 60. | vue-3d/src/types.ts:109 |
interactions? | boolean | CameraInteractions | Pointer interactions, enabled all at once with a boolean or individually. | vue-3d/src/types.ts:117 |
near? | number | The distance to the near clipping plane. Defaults to 0.1. | vue-3d/src/types.ts:111 |
position? | Vector3 | The camera's world-space position. Defaults to [0, 0, 5]. | vue-3d/src/types.ts:103 |
projection? | "perspective" | "orthographic" | The projection type. Defaults to perspective. | vue-3d/src/types.ts:115 |
target? | Vector3 | The world-space point the camera looks at. Defaults to the origin. | vue-3d/src/types.ts:105 |
up? | Vector3 | The world-space up direction. Defaults to [0, 1, 0]. | vue-3d/src/types.ts:107 |