Class WebXRAbstractFeature Abstract
Hierarchy
- WebXRAbstractFeature
- WebXRAnchorSystem
- WebXRBackgroundRemover
- WebXRControllerMovement
- WebXRControllerPhysics
- WebXRControllerPointerSelection
- WebXRMotionControllerTeleportation
- WebXRDepthSensing
- WebXRDomOverlay
- WebXREyeTracking
- WebXRFeaturePointSystem
- WebXRHandTracking
- WebXRHitTest
- WebXRHitTestLegacy
- WebXRImageTracking
- WebXRLayers
- WebXRLightEstimation
- WebXRMeshDetector
- WebXRNearInteraction
- WebXRPlaneDetector
- WebXRWalkingLocomotion
Implements
Index
Constructors
Properties
Accessors
Methods
Constructors
constructor
Construct a new (abstract) WebXR feature
Parameters
_xrSessionManager: WebXRSessionManager
the xr session manager for this feature
Returns WebXRAbstractFeature
Properties
disable Auto AttachSearch playground for disableAutoAttach
Should auto-attach be disabled?
is DisposedSearch playground for isDisposed
Is this feature disposed?
xr Native Feature NameSearch playground for xrNativeFeatureName
The name of the native xr feature name (like anchor, hit-test, or hand-tracking)
Accessors
attached
Is this feature attached
Returns boolean
Methods
attachSearch playground for attach
attach this feature
Parameters
Optional force: boolean
should attachment be forced (even when already attached)
Returns boolean
true if successful, false is failed or already attached
detachSearch playground for detach
detach this feature.
Returns boolean
true if successful, false if failed or already detached
disposeSearch playground for dispose
Dispose this feature and all of the resources attached
Returns void
is CompatibleSearch playground for isCompatible
This function will be executed during before enabling the feature and can be used to not-allow enabling it. Note that at this point the session has NOT started, so this is purely checking if the browser supports it
Returns boolean
whether or not the feature is compatible in this environment
This is the base class for all WebXR features. Since most features require almost the same resources and callbacks, this class can be used to simplify the development Note that since the features manager is using the
IWebXRFeature
you are in no way obligated to use this class