Browse Source

address review comments around detection boundary type

Chris Barth 4 năm trước cách đây
mục cha
commit
e77fb62299
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/LibDeclarations/webxr.nativeextensions.d.ts

+ 1 - 1
src/LibDeclarations/webxr.nativeextensions.d.ts

@@ -55,7 +55,7 @@ type XRDetectionBoundaryType = "frustum" | "sphere" | "box";
 
 interface XRDetectionBoundary {
     isStationary?: boolean;
-    type?: XRDetectionBoundaryType | string;
+    type?: XRDetectionBoundaryType;
     frustum?: XRFrustum;
     sphereRadius?: number;
     boxDimensions?: XRVector;