aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe')
-rw-r--r--src/crepe/manager/LoopTimerManager.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/crepe/manager/LoopTimerManager.h b/src/crepe/manager/LoopTimerManager.h
index 77674b4..5a9eda8 100644
--- a/src/crepe/manager/LoopTimerManager.h
+++ b/src/crepe/manager/LoopTimerManager.h
@@ -69,22 +69,22 @@ public:
void set_time_scale(double time_scale);
/**
- * \brief Get the scaled fixed delta time in seconds.
+ * \brief Get the fixed delta time in seconds without scaling by the time scale.
*
- * The fixed delta time is used for operations that require uniform time steps,
- * such as physics calculations, and is scaled by the current time scale.
+ * This value is used in the LoopManager to determine how many times
+ * the fixed_update should be called within a given interval.
*
- * \return The fixed delta time, scaled by time scale, in seconds.
+ * \return The unscaled fixed delta time in seconds.
*/
double get_fixed_loop_interval() const;
/**
- * \brief Get the fixed delta time in seconds without scaling by the time scale.
+ * \brief Get the scaled fixed delta time in seconds.
*
- * This value is used in the LoopManager to determine how many times
- * the fixed_update should be called within a given interval.
+ * The fixed delta time is used for operations that require uniform time steps,
+ * such as physics calculations, and is scaled by the current time scale.
*
- * \return The unscaled fixed delta time in seconds.
+ * \return The fixed delta time, scaled by time scale, in seconds.
*/
double get_fixed_delta_time() const;