Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by MadJohny · Dec 18, 2013 at 04:38 PM · physicsvelocitygravityforcemass

Simulate gravity on rigidbody

Hi, I want to simulate gravity for a rigidbody, I have 2 separate objects, each one have the same mass, one is set to "use gravity" (rigidbody) and the other isn't. On the object that doesn't use gravity, I made a script that is basically like this:

 rigidbody.AddForce(new Vector3 (0f, (gravity * rigidbody.mass) * Time.deltaTime, 0f));

being gravity a float with the value of 9.81. The thing is, the object that uses gravity is falling a lot faster than the one with the script, what am I doing wrong? maybe I shouldn't use addForce? but if I set it's velocity instead it may not collide properly, how can I avoid those issues?

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

1 Reply

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by robertbu · Dec 18, 2013 at 04:57 PM

Try this:

 #pragma strict
 
 function FixedUpdate() {
     rigidbody.AddForce(Physics.gravity);
 }

You can also do this so you don't have to worry about mass:

 #pragma strict
 
 function FixedUpdate() {
     rigidbody.AddForce(Physics.gravity, ForceMode.Acceleration);
 }
Comment
Add comment · Show 2 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image MadJohny · Dec 18, 2013 at 05:20 PM 0
Share

The falling velocity is still kinda different, anyway, I really don't want to use Physiscs.gravity, I want to use just float to use it as force

avatar image robertbu · Dec 18, 2013 at 05:49 PM 0
Share

Physics.gravity is just Vector3(0.0, -9.81, 0.0), so you can do:

 rigidbody.AddForce(Vector3(0.0, -9.81, 0.0), Force$$anonymous$$ode.Acceleration);

And I just ran a test of two spheres of the same size and mass, one with built-in gravity and one with this script. They fell at exactly the same rate.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

17 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

What's the Rigidbody's gravity unit? 1 Answer

Gravitational Object Creation for 3D Game 1 Answer

How to not get velocity by the other objects?,How to not get force by other gameobjects? 0 Answers

Box2D force on object? 0 Answers

Gravity doesn't work 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges