WebXR Augmented Reality Module
Jump to navigation
Jump to search
Status | CR |
---|---|
Last Updated | 2 November 2022 |
Editor(s) | Brandon Jones, Manish Goregaokar, Rik Cabanier |
Former Editor(s) | Nell Waliczek |
CG or WG? | WG |
The WebXR Augmented Reality Module expands the WebXR Device API with functionality specific to AR devices, such as defining blend modes for rendered pixels and interaction modes to accommodate different AR device form factors, i.e. phone screen vs. head-mounted.
WebIDL[edit]
enum XREnvironmentBlendMode {
"opaque",
"alpha-blend",
"additive"
};
partial interface XRSession {
// Attributes
readonly attribute XREnvironmentBlendMode environmentBlendMode;
};
enum XRInteractionMode {
"screen-space",
"world-space",
};
partial interface XRSession {
// Attributes
readonly attribute XRInteractionMode interactionMode;
};
partial interface XRView {
readonly attribute boolean isFirstPersonObserver;
};