diff --git a/packages/graphics/src/GraphicsGeometry.js b/packages/graphics/src/GraphicsGeometry.js index 912a39c..b03c0aa 100644 --- a/packages/graphics/src/GraphicsGeometry.js +++ b/packages/graphics/src/GraphicsGeometry.js @@ -505,7 +505,7 @@ this.indicesUint16 = new Uint16Array(this.indices); // TODO make this a const.. - this.batchable = false;// this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2; + this.batchable = this.points.length < GraphicsGeometry.BATCHABLE_SIZE * 2; if (this.batchable) {