diff options
author | max-001 <maxsmits21@kpnmail.nl> | 2024-12-13 13:00:44 +0100 |
---|---|---|
committer | max-001 <maxsmits21@kpnmail.nl> | 2024-12-13 13:00:44 +0100 |
commit | f9ab8f01a170e75b0dc16f74421d9cbbe70dbac4 (patch) | |
tree | 29e625dbe179d6dbedae8b3484f4929d95722551 /src/crepe/system/AnimatorSystem.cpp | |
parent | 0f600b3281cca9183b0e8a6e34c79ec538d8ea2d (diff) |
Fix animator
Diffstat (limited to 'src/crepe/system/AnimatorSystem.cpp')
-rw-r--r-- | src/crepe/system/AnimatorSystem.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/system/AnimatorSystem.cpp b/src/crepe/system/AnimatorSystem.cpp index 31eb85c..dd8c5ed 100644 --- a/src/crepe/system/AnimatorSystem.cpp +++ b/src/crepe/system/AnimatorSystem.cpp @@ -13,7 +13,7 @@ void AnimatorSystem::update() { LoopTimerManager & timer = this->mediator.loop_timer; RefVector<Animator> animations = mgr.get_components_by_type<Animator>(); - unsigned long long elapsed_time = timer.get_elapsed_time().count(); + float elapsed_time = timer.get_elapsed_time().count() / 1000000.0f; for (Animator & a : animations) { if (!a.active) continue; |