About 197,000 results
Open links in new tab
  1. Unity 3D Gravity Tutorial | (Simple & Easy) - YouTube

    Unity 3D Gravity Tutorial | (Simple & Easy) In today's video, I'll show you how to add gravity to your 3D objects in Unity!

  2. How do I add gravity to an object? - Unity Discussions

    Aug 13, 2012 · did you try just checking “use gravity” on the rigidbody? since your script is accessing the transform directly anyway in the update, that may be all you need (unless you need the object to …

  3. How to implement gravity on an object in Unity 3D – Start simulating ...

    To add a gravity source, go to the “Assets” folder and select the “Create > Physics > Gravity Source” option. This will create a new gravity source in your scene.

  4. Unity - Scripting API: Physics.gravity

    Description The gravity applied to all rigid bodies in the Scene. Gravity can be turned off for an individual rigidbody using its useGravity property.

  5. 5 Steps to Implement Gravity in Unity » gilderlehrman.org

    Feb 3, 2025 · A step-by-step guide on how to apply gravity in Unity, a popular game development platform. Includes code examples and explanations for both rigidbodies and physics materials.

  6. How to change Gravity towards certain object in Unity?

    May 19, 2016 · Basically, you can add a sphere collider on the object you want to be the center of gravity. The collider should encompass the entire area where you want objects to be affected by the …

  7. How to add more gravity to the object? - Unity Discussions

    Jul 8, 2015 · If you want “realistic” force, remember that gravity is not affected by mass, so you should use Forcemode.Acceleration. Putting one cube with gravity on next to a cube with gravity off and this …

  8. Apply gravity using C# in Unity - CodeSpeedy

    Gravity can be applied to all the game objects by adding the rigid body component to GameObject and enabling gravity. Gravity can be enabled for an individual game object using its useGravity property.

  9. How to make objects FALL by GRAVITY and BOUNCE in Unity

    In this video we see how to add gravity to an object in Unity and how to prevent the object to go through the ground by adding collisions.

  10. Unity - Scripting API: Physics2D.gravity

    Acceleration due to gravity. Set this vector to change all 2D gravity in your Scene. The default is (0, -9.8). //Attach this script to a 2D GameObject (for example a Sprite). //This script allows you to …