webxr.nativeextensions.d.ts 437 B

1234567891011
  1. // This file contains native only extensions for WebXR These APIs are not supported in the browser yet.
  2. // They are intended for use with either Babylon Native https://github.com/BabylonJS/BabylonNative or
  3. // Babylon React Native: https://github.com/BabylonJS/BabylonReactNative
  4. interface XRSession {
  5. setFeaturePointCloudEnabled(enabled: boolean): boolean;
  6. }
  7. interface XRFrame {
  8. featurePointCloud? : Array<number>;
  9. }