• 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 sglindme · Aug 24, 2015 at 09:14 PM · forcemode

If I use AddForce twice in one update frame, with different forceModes on each, how does Unity handle it?

Say I have an object and I do

 Vector3 forceToAdd = (1,1,1)    
 myRigidbody.AddForce(forceToAdd, ForceMode.Force);    
 myRigidbody.AddForce(forceToAdd, ForceMode.VelocityChange);

Does VelocityChange just override the ForceMode.Force? Or does it add the first force, and then alter the velocity after?

And what if instead of this, I do:

 Vector3 forceToAdd = (1,1,1)    
 myRigidbody.AddForce(forceToAdd, ForceMode.Force);
 myRigidbody.velocity = new Vector3(1,1,1);

Does this add the force to the object (moving it a little) and then set its velocity? What is the difference between using these 2 blocks of code?

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by Baste · Aug 24, 2015 at 10:24 PM

If you set the velocity, you override any forces before that. So the second example would simply discard the AddForce call.

The force modes changes the input for different simulation setups. I'm pretty sure that they simply scale them in some way. So this:

 myRigidbody.AddForce(forceToAdd, ForceMode.Force);    
 myRigidbody.AddForce(forceToAdd, ForceMode.VelocityChange);

Probably turns into something along the lines of:

 myRigidbody.velocity = myRigidbody.velocity + (forceToAdd * X) + (forceToAdd * Y)

where X is dependent on the mass of the object, and Y is not.

In testing, it seems like AddForce(x) 5 times in the same FixedUpdate call gives the same result as AddForce(5x) once.

Comment
Add comment · Show 1 · 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 sglindme · Aug 26, 2015 at 12:41 PM 0
Share

Thanks, that was informative. Also, whats the difference between these two lines of code?

 myRigidbody.AddForce(force, Force$$anonymous$$ode.VelocityChange);

and

 myRigidbody.velocity = myRigidbody.velocity + (force/myRigidbody.mass)*time.DeltaTime;

(so basically v = v_0 + a*t)

@Baste

avatar image
0

Answer by sglindme · Aug 26, 2015 at 12:40 PM

Nevermind, figured it out. All of these lines do the same thing:

 myRigidbody.AddForce(force * Time.deltaTime, ForceMode.VelocityChange);
 myRigidbody.AddForce(force, ForceMode.Acceleration);
 myRigidbody.velocity = myRigidbody.velocity + Time.fixedDeltaTime*force;
 myRigidbody.AddForce(force * myRigidbody.mass, ForceMode.Force);
 myRigidbody.AddForce(force * myRigidbody.mass * Time.fixedDeltaTime,ForceMode.Impulse);


@Baste

Comment
Add comment · 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

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

ForceMode.VelocityChange vs. simply adding to .velocity 0 Answers

,Could someone explain me how to use forcemode? 3 Answers

How do i make the Impulse i give to my Player not be lowered by acceleration of gravity? 1 Answer

Foces only change during collision 1 Answer

Unable to Apply External Forces to my Rigidbody 0 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