Overview - Rigidbody forces and velocity
What is it?
In Unity, a Rigidbody is a component that makes an object respond to physics. Forces and velocity control how the Rigidbody moves and reacts to the world. Forces push or pull the object, while velocity sets its speed and direction directly. Together, they let you create realistic or controlled motion in games.
Why it matters
Without understanding Rigidbody forces and velocity, game objects would either not move realistically or would behave unpredictably. Forces let you simulate real-world effects like gravity, pushes, or explosions. Velocity lets you control movement precisely. Without these, games would feel lifeless or hard to control.
Where it fits
Before learning Rigidbody forces and velocity, you should know basic Unity concepts like GameObjects and components. After this, you can learn about collision detection, physics materials, and advanced physics interactions like joints or character controllers.