aframe-components

anchored

Overview

A component that supports anchoring of a single container entity in an A-Frame scene.

When a container entity is anchored, it remains in the same place in real-world space, regardless of changes to the scene origin.

If the anchoring is persistent, this position is maintained between sessions (unless browser data is cleared).

Demo

demo here

Open the scene on a VR headset and enter AR.

On a Meta Quest hold the Meta / Oculus button to reset the scene origin. The anchored components in the scene (the sphere, cube, cylinder and plane) should stay in a fixed position, even though the scene origin has moved. The text panel in the background is not anchored, so you should see that move.

Press A to toggle anchoring off & on again. When anchoring is off, the green plane turns white, and the shapes will not stay in a fixed position when you reset the scene origin.

Usage

Add the anchored component to a container entity within your scene that you want to anchor.

Note that:

You will also need to configure some required web XR features on the scene like this:

<a-scene webxr="requiredFeatures: anchors,local-floor">

And if you want AR mode to be available from A-Frame 1.5 onwards, you also need the following config on your scene:

vr-mode-ui="enterAREnabled: true; enterVREnabled: false"

Control of anchored position

An anchored container is anchored in whatever real-world position it first appears in, the first time the user enters AR.

This means that the user does not have control over where it is anchored. There are two ways to give the user control over the position entities are anchored in.

Schema

Property Description Default
persistent Persistent anchors are saved when the page is refreshed or closed. A non-persistent anchor only lasts as long as the current webXR session. Changing this setting after the entity has been anchored () true
debug Enable console logs for debugging false

API

Method Description Parameters
unAnchor(resetPosition) Unanchor the container so it no longer has a fixed real-world position and orientation, but instead moves with the scene origin. resetPosition - if true, the container position and orientation are reset to the scene origin. If false, the container is left in its previous position, relative to the scene origin.
reAnchor() Re-anchor the container to a fixed real-world position and orientation. none

Limitations

Installation

Via CDN

<script src="https://cdn.jsdelivr.net/npm/aframe-anchored@0.0.1/dist/anchored.min.js"></script>

Or via npm

npm install aframe-anchored

Examples

See “Demo” above

Code

anchored

Acknowledgements

Thanks to the team at Meta for the Reality Accelerator Toolkit (RATK) for THREE.js, which this component builds upon.