<a-camera>

Note: This documentation is for the old 0.2.0 version of A-Frame. Check out the documentation for the current 1.5.0 version

The camera primitive places the user somewhere within the scene. It is an entity that prescribes the camera component with mappings to controls-related components.

Example

<a-scene>
<a-box></a-box>

<a-entity position="0 1.8 5">
<a-camera></a-camera>
</a-entity>
</a-scene>

Attributes

Attribute Component Mapping Default Value
far camera.far 10000
fov camera.fov 80
look-controls-enabled look-controls.enabled true
near camera.near 0.5
wasd-controls-enabled wasd-controls.enabled true

Manually Positioning the Camera

To position the camera, set the position on a wrapper <a-entity>. Don’t set the position directly on the camera primitive because controls will quickly override the set position:

<a-entity position="0 0 5">
<a-camera></a-camera>
</a-entity>

Differences with the Default Camera

When we use the camera primitive, A-Frame will not prescribe a default camera.

Note the default camera is positioned at 0 1.8 4 whereas the camera primitive will be positioned at 0 0 0. In the example below, we would see a box:

<a-box></a-box>

But if we prescribe our own camera and do not adjust its position:

<a-box></a-box>
<a-camera></a-camera>

Then both the cube and camera wll be positioned at 0 0 0, the camera will be inside the cube, and thus the box won’t be visible without moving the camera. So make sure the have the camera well-positioned.

Making Another Entity Face the User

We can use the look-at component to make another entity rotate towards the user:

<a-image look-at="#camera"></a-image>
<a-camera id="camera"></a-camera>

Whenever the user (and thus the camera) moves, then the entity will update its rotation.