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 dugup46 · Feb 11, 2014 at 11:54 PM · collisionmovementphysicsjumpforce

How can I make a physics object jump a given height on collision regardless of current velocity?

Hey guys, really new here and new to Unity. I am attempting to make a game where you jump to collect coins, those coins push you "x" height higher, and you continue progressing until you miss a coin and fall back to the ground.

This is a 2D game. I have my cube with my sprite, I have the coins coded well enough for now. The issue is when I miss a coin and fall back down, if I hit another coin the jump up doesnt really take affect (I am assuming because my velocity is too quick coming down, cancelling out the force I am trying to push it back up).

Is there any easy way to cancel out current force and apply a given force even if it is in the oppisite direction?

Here is the current code I am using for the collision, jump, and coin movement:

     void OnTriggerEnter(Collider col){
         if (col.gameObject.tag == "Coin1") {
             GameObject.Find("Coin1").transform.position = new Vector3(Random.Range (-10, 10), curHeight, 0);
             rigidbody.AddForce(new Vector3(0, 1000, 0), ForceMode.Force);
             curHeight += 15;
         }
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
1
Best Answer

Answer by rutter · Feb 12, 2014 at 12:03 AM

To stop an object's vertical movement, zero out that axis of its velocity:

 Vector3 velocity = rigidbody.velocity;
 velocity.y = 0f;
 rigidbody.velocity = velocity;

You can also apply a force while you're doing this:

 Vector3 velocity = rigidbody.velocity;
 velocity.y = 0f;
 rigidbody.velocity = velocity;
 rigidbody.AddForce(Vector3.up * 1000f, ForceMode.Impulse);

Check out the various force modes. "Snap" changes in motion tend to involve velocity (impulse, velocity change modes), and are usually called exactly once in response to some event. More gradual changes tend to involve acceleration (acceleration, force modes), and are usually called over multiple frames to simulate prolonged pushing like you'd see from gravity.

On the other hand, if you know the exact velocity you want, you can set it directly:

 Vector3 velocity = rigidbody.velocity;
 velocity.y = 20f; //"jump" at 20 meters per second
 rigidbody.velocity = velocity;
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 dugup46 · Feb 12, 2014 at 02:41 AM 0
Share

Thank you very much! I appreciate the in depth response, hopefully my question will help a few other newbies.

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

19 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 avatar image avatar image

Related Questions

Keep Horizontal Momentum after Jump 2 Answers

Sphere get stuck in floor and fails to jump? 1 Answer

Ball jump on collision problem 1 Answer

Collisions causing Rigidbody to go Haywire and move randomly. 1 Answer

Issues Making Character Move With Rigidbody 1 Answer


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