diff options
author | Max-001 <80035972+Max-001@users.noreply.github.com> | 2025-01-06 11:31:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-06 11:31:30 +0100 |
commit | 79df1f88c41e5e6872b5502dfba776048dbc593e (patch) | |
tree | d8558b202d1a74b7b10680e94e8c19ef3c10f814 /src/crepe/api | |
parent | cc2ffe577ad93b126bf9cac6391e678eb54a07f5 (diff) | |
parent | 958475050c80addf584b6a166649c337c68a879f (diff) |
Merge pull request #100 from lonkaars/niels/UI
AnimatorSystem hotfix
Diffstat (limited to 'src/crepe/api')
-rw-r--r-- | src/crepe/api/Animator.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/crepe/api/Animator.h b/src/crepe/api/Animator.h index 102894d..95539d3 100644 --- a/src/crepe/api/Animator.h +++ b/src/crepe/api/Animator.h @@ -1,5 +1,6 @@ #pragma once +#include "../manager/LoopTimerManager.h" #include "../types.h" #include "Component.h" @@ -99,6 +100,12 @@ private: //! The maximum number of rows and columns inside the spritesheet const uvec2 grid_size; + // the time elapsed from a frame duration + duration_t elapsed_time = {}; + + // frame counter + unsigned int frame = 0; + //! Uses the spritesheet friend AnimatorSystem; }; |