Tweeny 3.2.0
A Tweening library for modern C++
|
◆ during()
template<typename T , typename... Ts>
template<typename... Ds>
Specifies the easing function for the last added point, accepting an enumeration. This will specify the easing between the last tween point added by Example: auto tween1 = tweeny::from(0).to(100).via(tweeny::easing::enumerated::linear);
@param fs The functions
@returns *this
@see tweeny::easing
/
enumerated Enumerates all easings to aid in runtime when adding easins to a tween using tween::via. Definition easing.h:138 tween< T, Ts... > & via(Fs... fs) Specifies the easing function for the last added point. The tween class is the core class of tweeny. It controls the interpolation steps, easings and duratio... Definition tweentraits.h:37 tween< Ts... > from(Ts... vs) Creates a tween starting from the values defined in the arguments.
|