![]() |
galaxy 1.0.0
Real-Time C++23 Game Programming Framework. Built on data-driven design principles and agile software engineering.
|
Update entity animations. More...
#include <AnimationSystem.hpp>
Public Member Functions | |
AnimationSystem () | |
Constructor. | |
virtual | ~AnimationSystem () |
Destructor. | |
void | update (entt::registry ®istry) override |
Abstract implementation for updating the system. Use the manager to retreive your components. | |
![]() | |
virtual | ~System () noexcept |
Destructor. | |
const std::string & | id () const noexcept |
Get identifier. | |
Additional Inherited Members | |
![]() | |
System (const std::string &id) noexcept | |
Constructor. | |
![]() | |
std::string | m_id |
Debug id. | |
Update entity animations.
Definition at line 20 of file AnimationSystem.hpp.
galaxy::systems::AnimationSystem::AnimationSystem | ( | ) |
Constructor.
Definition at line 19 of file AnimationSystem.cpp.
|
virtual |
Destructor.
Definition at line 23 of file AnimationSystem.cpp.
|
overridevirtual |
Abstract implementation for updating the system. Use the manager to retreive your components.
EnTT | registry to process entities from. |
Implements galaxy::systems::System.
Definition at line 27 of file AnimationSystem.cpp.