ZeroZero Game Engine  v0.0
A 3D game engine using Vulkan & Jolt
Public Typedefs | Public Member Functions | List of all members
PropertyTween< T > Class Template Reference

Detailed Description

template<typename T>
class z0::PropertyTween< T >

Tween to interpolate a property of an Object.

Inheritance diagram for PropertyTween< T >:
Tween Object

Public Typedefs

typedef void (Object::* Setter) (T)
 

Public Member Functions

 PropertyTween (Object *obj, const Setter set, T initial, T final, const float duration, const TransitionType ttype=TransitionType::LINEAR, const Callback &callback=nullptr)
 
 PropertyTween (const shared_ptr< Object > &obj, const Setter set, T initial, T final, const float duration, const TransitionType ttype=TransitionType::LINEAR, const Callback &callback=nullptr)
 
bool update (const float deltaTime) override
 
- 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 Typedef Documentation

typedef void(Object::* Setter) (T)

A Setter method will be called by the Tween each update

Constructor & Destructor Documentation

PropertyTween ( Object obj,
const Setter  set,
initial,
final,
const float  duration,
const TransitionType  ttype = TransitionType::LINEAR,
const Callback &  callback = nullptr 
)
inline

Create a Tween to tweens a property of an Object.

Parameters
objTarget Object
setSetter to call on the Object
initialInitial value
finalFinal value
durationAnimation duration in seconds
ttypeTransition type
callbackCallback called at the end of the animation
PropertyTween ( const shared_ptr< Object > &  obj,
const Setter  set,
initial,
final,
const float  duration,
const TransitionType  ttype = TransitionType::LINEAR,
const Callback &  callback = nullptr 
)
inline

Create a Tween to tweens a property of an Object.

Parameters
objTarget Object
setSetter to call on the Object
initialInitial value
finalFinal value
durationAnimation duration in seconds
ttypeTransition type
callbackCallback called at the end of the animation

Member Function Documentation

bool update ( const float  deltaTime)
nodiscardinlineoverridevirtual

Interpolate the property. If the Tween have been created manually you need to call update() in a Node::onPhysicsProcess() function. Do not call it if the Tween have been created with Node::createPropertyTween().

Returns
false if the tween is running

Implements z0::Tween::update()