Is there a way to make an object Lerp from point to point while colliding into objects on the way and reacting like a regular CharacterController?
This is as my current waypoint system, which consists of making the character face the next waypoint and .SimpleMove towards it, until it reaches a particular distance (really tiny), is facing a dire problem where if there is too much lag, the character might end up spinning around the waypoint forever as it keeps overshooting the required distance. Thus, I thought that Lerping it from point to point would be a better idea, but that would mean that it would not collide with the terrain, something that I need...
Can anyone help me?