Changed Camera min/max zoom.

This commit is contained in:
Nick Winter 2014-03-07 15:20:54 -08:00
parent 8fa9c9c410
commit ec86a07906

View file

@ -5,8 +5,8 @@ CocoClass = require 'lib/CocoClass'
r2d = (radians) -> radians * 180 / Math.PI
d2r = (degrees) -> degrees / 180 * Math.PI
MAX_ZOOM = 8
MIN_ZOOM = 0.1
MAX_ZOOM = 4
MIN_ZOOM = 0.05
DEFAULT_ZOOM = 2.0
DEFAULT_TARGET = {x:0, y:0}
DEFAULT_TIME = 1000