Przeglądaj źródła

Fix isVisible method of debuglayer

Temechon 8 lat temu
rodzic
commit
68779294a2
1 zmienionych plików z 4 dodań i 1 usunięć
  1. 4 1
      src/Debug/babylon.debugLayer.ts

+ 4 - 1
src/Debug/babylon.debugLayer.ts

@@ -21,7 +21,10 @@ module BABYLON {
         }
         
         public isVisible(): boolean {
-            return false;
+            if (!this._inspector) {
+                return false;
+            }
+            return true;
         }
 
         public hide() {