Hi,
I’ve been thinking a question these days:
If I move an object in an extreme circumstance where it takes 5seconds to finish one frame(like some old machine),then the object would be move far away from the destination if I use something like :
transform.Translate(Vector3.forward * Time.deltaTime);
(because the Time.deltaTime is too big);
how can I handle this problem?