I’m using this line in a camera movement script, the result is that with increasing time the camera movement goes faster and faster.
I found no reason for this, can this lerp thing cause it??
Time.time is the number of seconds since the start. The third parameter in Lerp is a float between 0 and 1, where 0 returns the first value and 1 returns the second value. (Therefore .5 would return an average between the first and second.)