ZeroZero Game Engine  v0.0
A 3D game engine using Vulkan & Jolt
Public Member Functions | List of all members
Tween Class Referenceabstract

Detailed Description

Base class for all tweeners classes.
Tweens are objects that perform a specific animating task, e.g. interpolating a property of an Object.

Inheritance diagram for Tween:
Object PropertyTween< T >

Public Member Functions

virtual bool update (float deltaTime) = 0
 
- Public Member Functions inherited from Object
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
 

Member Function Documentation

virtual bool update ( float  deltaTime)
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().

  • Returns
    false if the tween is running

Implemented in z0::PropertyTween::update()