Tweeny 3
A Tweening library for modern C++
|
◆ during()
template<typename T , typename... Ts>
template<typename... Ds>
Specifies the duration, typically in milliseconds, for the tweening of values in last currentPoint. You can either specify a single duration for all values or give every value its own duration. Value types must be convertible to the uint16_t type. Example: // Specify that the first currentPoint will be reached in 100 milliseconds and the first value in the second
// currentPoint in 100, whereas the second value will be reached in 500.
The tween class is the core class of tweeny. It controls the interpolation steps, easings and duratio... Definition tween.h:48 tween< Ts... > from(Ts... vs) Creates a tween starting from the values defined in the arguments.
|