Tweeny 3.2.0
A Tweening library for modern C++
|
◆ step() [2/3]
Steps the animation by the designated delta amount. You should call this every frame of your application, passing in the amount of delta time that you want to animate. Example: // tween duration is 100ms
// steps for 16ms
const detail::tweentraits< T, Ts... >::valuesType & step(int32_t dt, bool suppressCallbacks=false) Steps the animation by the designated delta amount. 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.
|