Hi
In my update method I have the following
Vector3 newPos = new Vector3(xPos, yPos, 0);
I need to clamp the maximum delta between the current position and the previous position to a certain value.
In other words set a maximum speed for movement.
Any suggestions how I might accomplish?