From 5cd9dbd0f08ec211db27130b2b5968eb203dac9c Mon Sep 17 00:00:00 2001 From: Alexandru Popovici Date: Thu, 26 Sep 2024 10:58:30 +0300 Subject: [PATCH] Fixed le bug (#3127) --- packages/viewer/src/modules/batching/PointBatch.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/viewer/src/modules/batching/PointBatch.ts b/packages/viewer/src/modules/batching/PointBatch.ts index 7b014a87c..e024d1e0c 100644 --- a/packages/viewer/src/modules/batching/PointBatch.ts +++ b/packages/viewer/src/modules/batching/PointBatch.ts @@ -101,6 +101,7 @@ export class PointBatch extends PrimitiveBatch { } public resetDrawRanges() { + super.resetDrawRanges() this.primitive.material = [this.batchMaterial] }