◆ step() [1/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 auto tween = tweeny::from(0).to(100).during(100); // steps for 16ms tween.step(16);
|