Browse Source

replacing for...in by forEach to avoid bug when using BJS inside complex frameworks

Vousk-prod 10 năm trước cách đây
mục cha
commit
8bee6168f7
1 tập tin đã thay đổi với 5 bổ sung4 xóa
  1. 5 4
      Babylon/Rendering/babylon.renderingManager.ts

+ 5 - 4
Babylon/Rendering/babylon.renderingManager.ts

@@ -90,10 +90,11 @@
         }
 
         public reset(): void {
-            for (var index in this._renderingGroups) {
-                var renderingGroup = this._renderingGroups[index];
-                renderingGroup.prepare();
-            }
+            this._renderingGroups.forEach( function(renderingGroup, index, array) {
+                if (renderingGroup) {
+                    renderingGroup.prepare();
+                }
+            });
         }
 
         public dispatch(subMesh: SubMesh): void {