aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager/LoopTimerManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r--src/crepe/manager/LoopTimerManager.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp
index e30b90d..5d4545f 100644
--- a/src/crepe/manager/LoopTimerManager.cpp
+++ b/src/crepe/manager/LoopTimerManager.cpp
@@ -82,3 +82,10 @@ void LoopTimerManager::enforce_frame_rate() {
double LoopTimerManager::get_lag() const {
return (this->elapsed_time - this->elapsed_fixed_time).count();
}
+double LoopTimerManager::get_scaled_fixed_delta_time() const{
+ return this->fixed_delta_time.count() * this->time_scale;
+}
+void LoopTimerManager::set_fixed_delta_time(int seconds) {
+ this->fixed_delta_time = std::chrono::duration<double>(seconds);
+}
+