Throw Object in direction

I was wondering how I would go about throwing an object in a certain direction, I don’t want to just move the object, is there like a way to add power to a movement of an Object or something?

1 Like

If you want to simulate a projectile, you could use a Rigidbody. This component makes the gameObject being handle by the physics engine. So you could set the initial velocity as well as applying forces and impulses upon it, then let the engine updates its position accordingly.

Learn game development w/ Unity | Courses & tutorials in game design, VR, AR, & Real-time 3D | Unity Learn :slight_smile:

(learn section is linked at the top of the page ^, lots of good stuff to start with in there, live training archive also good for lots of things :smile:)

Thanks, this is what I was looking for :slight_smile:

Yeah, I had a quick look but tbh I didn’t know what I was looking for.