Trevor Baron 6 년 전
부모
커밋
33d008f23e
1개의 변경된 파일9개의 추가작업 그리고 9개의 파일을 삭제
  1. 9 9
      src/Cameras/XR/webXRDefaultExperience.ts

+ 9 - 9
src/Cameras/XR/webXRDefaultExperience.ts

@@ -83,22 +83,22 @@ export class WebXRDefaultExperience {
     private constructor() {
 
     }
-    
+
     /**
      * DIsposes of the experience helper
      */
     public dispose() {
-        if(this.baseExperience){
-            this.baseExperience.dispose()
+        if (this.baseExperience) {
+            this.baseExperience.dispose();
         }
-        if(this.input){
-            this.input.dispose()
+        if (this.input) {
+            this.input.dispose();
         }
-        if(this.enterExitUI){
-            this.enterExitUI.dispose()
+        if (this.enterExitUI) {
+            this.enterExitUI.dispose();
         }
-        if(this.outputCanvas){
-            this.outputCanvas.dispose()
+        if (this.outputCanvas) {
+            this.outputCanvas.dispose();
         }
     }
 }