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 ea8a13c commit 4c5d1b5Copy full SHA for 4c5d1b5
examples/jsm/utils/SceneOptimizer.js
@@ -346,7 +346,7 @@ class SceneOptimizer {
346
/**
347
* Removes the given array of meshes from the scene.
348
*
349
- * @param {Array<Mesh>} meshesToRemove - The meshes to remove.
+ * @param {Set<Mesh>} meshesToRemove - The meshes to remove.
350
*/
351
disposeMeshes( meshesToRemove ) {
352
@@ -419,7 +419,7 @@ class SceneOptimizer {
419
reductionRatio: ( ( 1 - totalFinalMeshes / totalOriginalMeshes ) * 100 ).toFixed( 1 ),
420
};
421
422
- this.logDebugInfo( stats );
+ this._logDebugInfo( stats );
423
424
}
425
0 commit comments