Tweak the maximum and minimum zoom parameters for the text demo

This commit is contained in:
Patrick Walton 2017-09-29 17:00:34 -07:00
parent e78d7ed575
commit 190c9fb35f
1 changed files with 2 additions and 2 deletions

View File

@ -79,8 +79,8 @@ const SUBPIXEL_GRANULARITY: number = 4;
const ATLAS_SIZE: glmatrix.vec2 = glmatrix.vec2.fromValues(2048, 4096);
const MIN_SCALE: number = 0.001;
const MAX_SCALE: number = 10.0;
const MIN_SCALE: number = 0.0025;
const MAX_SCALE: number = 0.5;
declare global {
interface Window {