diff options
| author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-14 13:40:21 +0100 | 
|---|---|---|
| committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-14 13:40:21 +0100 | 
| commit | 2389b23459cf5b01c6ea1cbbcfeb2043e26e0a0c (patch) | |
| tree | 6a5322838386657d90ff69776876262740774a7a /src/crepe/system/AnimatorSystem.cpp | |
| parent | ccbfb97a11cd931655f2762443ffc36f5f25e86f (diff) | |
| parent | 876896e50711509e80ef551b4e8ad440e8039b97 (diff) | |
Merge branch 'master' of https://github.com/lonkaars/crepe into wouter/inputSystem
Diffstat (limited to 'src/crepe/system/AnimatorSystem.cpp')
| -rw-r--r-- | src/crepe/system/AnimatorSystem.cpp | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/crepe/system/AnimatorSystem.cpp b/src/crepe/system/AnimatorSystem.cpp index 31eb85c..107b25d 100644 --- a/src/crepe/system/AnimatorSystem.cpp +++ b/src/crepe/system/AnimatorSystem.cpp @@ -3,20 +3,23 @@  #include "../api/Animator.h"  #include "../manager/ComponentManager.h"  #include "../manager/LoopTimerManager.h" +#include <chrono>  #include "AnimatorSystem.h"  using namespace crepe; +using namespace std::chrono;  void AnimatorSystem::update() {  	ComponentManager & mgr = this->mediator.component_manager;  	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 = duration_cast<duration<float>>(timer.get_elapsed_time()).count();  	for (Animator & a : animations) {  		if (!a.active) continue; +		if (a.data.fps == 0) continue;  		Animator::Data & ctx = a.data;  		float frame_duration = 1.0f / ctx.fps; |