Apply for the next session

Introduction

Notes

per-frame lerp: You are constantly interpolating some set % distance closer. a = lerp(a, b, 0.5); tween lerp: You are premediated with known start/end values and duration to reach it. x = lerp(a, b, progress);

Damping

 

 

Apply for the next session