Doodle3D-Core/src/constants/d3Constants.js
2017-10-25 11:39:02 +02:00

11 lines
421 B
JavaScript

export const SCULPT_LIMIT = 0.6;
export const DESELECT_TRANSPARENCY = 0.8;
export const MIN_CAMERA_ZOOM = 10;
export const MAX_CAMERA_ZOOM = 600;
export const MAX_CAMERA_PAN = 150;
// Legacy compensation. Compensating for the fact that we
// used to devide the twist by the fixed sculpt steps.
// TODO: move this to twist factor in interface
// and converting old files on open once
export const LEGACY_HEIGHT_STEP = 10;