How do I move objects smootly with Unity?

June 27, 2024

Unity is a good engine for creating your own games. If you are just starting out, there are a few skills you need to do basic things in your game. For example: How do I move an object smoothly from point A to point b?

Smooth Movement

In unity, you need to handle the objects movement frame by frame. This is exactly the secret to moving any object smoothly.

Create a script that is reusable

Watching the above tutorial, I will walk you through not only how to move an object, but the script you write will be reusable. You can use it on any object in your game.

Cinematic features?

Attaching the script in this tutorial to a camera in unity, and you are well on your way to creating a cinematic scene.