Hello everyone. I’m new to Unity and i would like to know how to make a game object move X units per second. I have made this:
Vector3 impulsionDirection;
this.impulsionDirection += this.transform.up * this.movementSpeed * Time.deltaTime;
But i think Time.deltaTime is just giving the time between frames. I would appreciate the help.