Example character level animations.

This commit is contained in:
2023-01-18 23:53:39 -08:00
parent 602151d567
commit 2b1b258065
29 changed files with 388 additions and 44 deletions

View File

@ -10,13 +10,14 @@
namespace Dawn {
class AnimationController : public SceneItemComponent {
private:
std::vector<Animation*> animations;
void onSceneUpdate();
public:
Animation *animation = nullptr;
AnimationController(SceneItem *item);
void addAnimation(Animation *animation);
void onStart() override;
void onDispose() override;
};