WebXR Augmented Reality Module

From WebXR Wiki
Revision as of 22:42, 28 February 2023 by 160.19.2.244 (talk)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
WebXR Augmented Reality Module
StatusCR
Last Updated2 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

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;
};

External Links