소스 검색

address review comments around detection boundary type

Chris Barth 4 년 전
부모
커밋
e77fb62299
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;