Explorar o código

fix array iteration for compatibility with environnement where array prototype is modified

Vousk-prod %!s(int64=9) %!d(string=hai) anos
pai
achega
57bdea12e6
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      src/Mesh/babylon.mesh.ts

+ 2 - 2
src/Mesh/babylon.mesh.ts

@@ -439,9 +439,9 @@
             if (!this._geometry) {
                 var result = [];
                 if (this._delayInfo) {
-                    for (var kind in this._delayInfo) {
+                    this._delayInfo.forEach( function(kind, index, array) {
                         result.push(kind);
-                    }
+                    });
                 }
                 return result;
             }