2025-01-19 14:17:36 +01:00

13 lines
282 B
C++

#pragma once
const bool ENABLE_DEBUG = true;
namespace Settings {
const float TURN_ANIMATION_DURATION = 1.25f;
const float MIN_TURN_DISTANCE = 3.0f;
const float MIN_CAMERA_DISTANCE = 4.2f;
const float MAX_CAMERA_DISTANCE = 10.0f;
const float CAMERA_DISTANCE_START = 8.0f;
}