:Lerp() with fixed distance?

Is there a function like :Lerp() but with a fixed distance, instead of per cent?

1 Like

no i dont think so that there is

You can make your own:

function lerpAbsolute(v1, v2, distance)
    local distance = (v2 - v1).Magnitude
    return v1:Lerp(v2, amount / distance)
end