Skip to content

Commit f2183b6

Browse files
author
Hector
committed
feat(GS): reduce max splats for mobile to 500K
1 parent 80a2a65 commit f2183b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/point-cloud-octree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { computeTransformedBoundingBox } from './utils/bounds';
2828
import { SplatsMesh } from './splats-mesh';
2929

3030
const MAX_SPLATS_RENDERED = 4000000;
31-
const MAX_SPLATS_RENDERED_MOBILE = 600000;
31+
const MAX_SPLATS_RENDERED_MOBILE = 500000;
3232

3333
export class PointCloudOctree extends PointCloudTree {
3434
potree: IPotree;

0 commit comments

Comments
 (0)