Browse Source

Merge pull request #2330 from Borchmann/master

Fixes https://github.com/BabylonJS/Babylon.js/issues/2301 (there was …
David Catuhe 8 years ago
parent
commit
3715f176eb
1 changed files with 0 additions and 7 deletions
  1. 0 7
      inspector/src/tabs/StatsTab.ts

+ 0 - 7
inspector/src/tabs/StatsTab.ts

@@ -68,13 +68,6 @@ module INSPECTOR {
                     updateFct:() => { return this._scene.lights.length.toString()}
                 });
 
-                elemLabel = this._createStatLabel("Total lights", this._panel);
-                elemValue = Helpers.CreateDiv('stat-value', this._panel);
-                this._updatableProperties.push({ 
-                    elem:elemValue, 
-                    updateFct:() => { return this._scene.lights.length.toString()}
-                });
-
                 elemLabel = this._createStatLabel("Total vertices", this._panel);
                 elemValue = Helpers.CreateDiv('stat-value', this._panel);
                 this._updatableProperties.push({