aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/system/AnimatorSystem.cpp
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-02 21:01:40 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-12-02 21:01:40 +0100
commit900cfa9f31de40308b9ea3d0c73372d44f11094c (patch)
treec40c2012c30738af86e7d7c5c072ab06a4198182 /src/crepe/system/AnimatorSystem.cpp
parent0a1739de21e5ab270cb45efb6fc0aed092d81227 (diff)
make format
Diffstat (limited to 'src/crepe/system/AnimatorSystem.cpp')
-rw-r--r--src/crepe/system/AnimatorSystem.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/system/AnimatorSystem.cpp b/src/crepe/system/AnimatorSystem.cpp
index ff8d2ce..9cf8ba5 100644
--- a/src/crepe/system/AnimatorSystem.cpp
+++ b/src/crepe/system/AnimatorSystem.cpp
@@ -16,7 +16,7 @@ void AnimatorSystem::update() {
for (Animator & a : animations) {
if (!a.active) continue;
-
+
Animator::Data & ctx = a.data;
double frame_duration = 1.0f / ctx.fps;
@@ -28,7 +28,7 @@ void AnimatorSystem::update() {
ctx.curr_row = ctx.cycle_start + curr_frame;
ctx.spritesheet.mask.x = ctx.curr_row * ctx.spritesheet.mask.w;
ctx.spritesheet.mask.y = (ctx.curr_col * ctx.spritesheet.mask.h);
-
+
if (!ctx.looping && curr_frame == total_frames - 1) {
a.active = false;
}