#include "seq_action.h"
#include "seq_ease.h"
#include "seq_math.h"
#include "seq_private.h"
Go to the source code of this file.
|
namespace | seq |
| Provides a sequence-based action management system for controlling and scheduling actions.
|
|
|
template<typename Object , typename TargetType , typename InitializeFunc , typename UpdateFunc , typename Getter > |
auto | seq::create_action_updater (Object *object, const TargetType &end, const sentinel_t &sentinel, InitializeFunc &&initialize_func, UpdateFunc &&update_func, Getter &&getter, const ease_t &ease_func=ease::linear, const interpolate_t< TargetType > &interpolate=lerp< TargetType >) |
|