hx3d
1
2D/3D Simple Game Framework
|
Base abstract tween. More...
#include <base_tween.hpp>
Public Member Functions | |
bool | hasEnded () |
Test if the tween has ended. More... | |
virtual void | reset ()=0 |
Reset the tween. | |
virtual void | update (const float delta)=0 |
Update the tween. More... | |
Protected Attributes | |
bool | _ended |
Has the tween ended ? | |
bool | _infinite |
Is the tween infinite ? | |
Base abstract tween.
Definition at line 34 of file base_tween.hpp.
bool hx3d::tweens::BaseTween::hasEnded | ( | ) |
|
pure virtual |
Update the tween.
delta | Delta time |
Implemented in hx3d::tweens::Sequence, hx3d::tweens::Parallel, hx3d::tweens::Callback, hx3d::tweens::Tween< T >, and hx3d::tweens::Delay.