i have an object’s current position and its previous position (1 frame behind). before i try out any maths, is there a quick way (i.e. built-in functions) to determine if the object has moved forwards/backwards/sideways/both?
Maybe create a vector from the previous and current position and then compare its angle with the angle of the standard directional vectors (using Vector3.Angle)?
Jeff