We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a430f83 commit e8e5cc1Copy full SHA for e8e5cc1
src/core/PathTracingSceneGenerator.js
@@ -180,7 +180,7 @@ export class PathTracingSceneGenerator {
180
let needsMaterialIndexUpdate = result.changeType !== NO_CHANGE || this._materialUuids === null || this._materialUuids.length !== length;
181
if ( ! needsMaterialIndexUpdate ) {
182
183
- for ( let i = 0, length = materials.length; ( i < length ); i ++ ) {
+ for ( let i = 0, length = materials.length; i < length; i ++ ) {
184
185
const material = materials[ i ];
186
if ( material.uuid !== this._materialUuids[ i ] ) {
0 commit comments