11#ifndef CAL_ANIMATION_CYCLE_H
12#define CAL_ANIMATION_CYCLE_H
15#include "cal3d/global.h"
16#include "cal3d/animation.h"
28 bool blend(
float weight,
float delay);
29 void setAsync(
float time,
float duration);
30 bool update(
float deltaTime);
bool blend(float weight, float delay)
Interpolates the weight of the animation cycle instance.
Definition animation_cycle.cpp:55
void setAsync(float time, float duration)
Puts the animation cycle instance into async state.
Definition animation_cycle.cpp:75
bool update(float deltaTime)
Updates the animation cycle instance.
Definition animation_cycle.cpp:109
CalAnimationCycle(CalCoreAnimation *pCoreAnimation)
Constructs the animation cycle instance.
Definition animation_cycle.cpp:29
Definition coreanimation.h:24