using std::lerp; // according to https://en.cppreference.com/w/cpp/numeric/lerp.html constexpr float lerp( float a, float b, float t ) noexcept; I think this part of ...
This implementation provides a simple set of easing functions for various speed modifications in Unity. Easing functions are commonly used in animations to create smooth transitions and control the ...