Increased render triangle threshold to 1M

This commit is contained in:
Lucas Dower 2022-09-12 00:49:02 +01:00
parent 418ffb5c91
commit cf212b7cb1

View File

@ -29,5 +29,5 @@ export namespace AppConfig {
export const ANGLE_SNAP_RADIUS_DEGREES = 10.0; export const ANGLE_SNAP_RADIUS_DEGREES = 10.0;
/** If the loaded mesh exceeds this number of triangles, the renderer will not attempt to draw it. */ /** If the loaded mesh exceeds this number of triangles, the renderer will not attempt to draw it. */
export const RENDER_TRIANGLE_THRESHOLD = 100_000; export const RENDER_TRIANGLE_THRESHOLD = 1_000_000;
} }