webxr-ar-module.idl (682B)
1 // GENERATED CONTENT - DO NOT EDIT 2 // Content was automatically extracted by Reffy into webref 3 // (https://github.com/w3c/webref) 4 // Source: WebXR Augmented Reality Module - Level 1 (https://immersive-web.github.io/webxr-ar-module/) 5 6 enum XREnvironmentBlendMode { 7 "opaque", 8 "alpha-blend", 9 "additive" 10 }; 11 12 partial interface XRSession { 13 // Attributes 14 readonly attribute XREnvironmentBlendMode environmentBlendMode; 15 }; 16 17 enum XRInteractionMode { 18 "screen-space", 19 "world-space", 20 }; 21 22 partial interface XRSession { 23 // Attributes 24 readonly attribute XRInteractionMode interactionMode; 25 }; 26 27 partial interface XRView { 28 readonly attribute boolean isFirstPersonObserver; 29 };