ZeroZero Game Engine
v0.0
A 3D game engine using Vulkan & Jolt
|
Base class for all tweeners classes.
Tweens are objects that perform a specific animating task, e.g. interpolating a property of an Object.
Public Member Functions | |
virtual bool | update (float deltaTime) = 0 |
![]() | |
void | connect (const Signal::signal &name, const Signal::Handler &handler) |
void | connect (const Signal::signal &name, const function< void ()> &handler) |
void | emit (const Signal::signal &name, void *params=nullptr) |
virtual string | toString () const |
|
nodiscardpure virtual |
Update the tween. If the Tween have been created manually you need to call update() in your Node::onPhysicsProcess() function. Do not call it if the Tween have been created with Node::create*Tween().
false
if the tween is running Implemented in z0::PropertyTween::update()