aboutsummaryrefslogtreecommitdiff
path: root/src/crepe
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-09 17:29:09 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-09 17:29:09 +0100
commit2c1f7df48bfd1ea87912826c4faa39a18e936146 (patch)
tree2002cd4b512037601ba80492281a5ef82811c11c /src/crepe
parentfa2d728d847e5aa29859c8cf72d8ee8df363373e (diff)
switched doxygen
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;