moveToWithSlowdown

fnfloat moveToWithSlowdown(float from, float to, float delta, float slowdown)

Moves from toward to by delta each step, decelerating as it approaches using slowdown. A slowdown value around 0.1 gives a natural deceleration feel.

fnVec2 moveToWithSlowdown(Vec2 from, Vec2 to, Vec2 delta, float slowdown)

Moves from toward to per component by delta, decelerating as it approaches using slowdown. A slowdown value around 0.1 gives a natural deceleration feel.

fnVec3 moveToWithSlowdown(Vec3 from, Vec3 to, Vec3 delta, float slowdown)

Moves from toward to per component by delta, decelerating as it approaches using slowdown. A slowdown value around 0.1 gives a natural deceleration feel.

fnVec4 moveToWithSlowdown(Vec4 from, Vec4 to, Vec4 delta, float slowdown)

Moves from toward to per component by delta, decelerating as it approaches using slowdown. A slowdown value around 0.1 gives a natural deceleration feel.