Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
1
Question by ronald677br · Jul 16, 2016 at 11:26 PM · colliderspeedjumpingball

Object jumping at high speed!

Hi guys, from the last few weeks I've been working at this "Rolling Ball" style game, but this problem is driving me mad. (Sorry for my English, I'm Brazilian)

I have the standard Unity sphere with this script and a rigidbody attached to it:

void Start() {

     InvokeRepeating("decreaseTimeRemaining", 1.0f, 1.0f);
     Physics.gravity = grav;
 }

 void OnGUI()
 {
     GUI.Box(new Rect(10, 10, 50, 20), "" + time.ToString("0"));

 }

 void FixedUpdate() {

     Vector3 SuperBoost = boostZ + (boostZ / 2);

     if (Input.GetMouseButton(0)) { z = 1; }

     MoveX = Input.GetAxis("Mouse X");

     movement = new Vector3(MoveX, 0.0f, z);

     GetComponent<Rigidbody>().AddForce(movement * speed);

     if (boost)
     {
        
       

         if (time > 0)
         {
             GetComponent<Rigidbody>().AddForce(boostZ);
             if (boostlvl == 2)
             {
                 GetComponent<Rigidbody>().AddForce(boostZ + boostAdd);
             }
             if (boostlvl == 3)
             {
                 GetComponent<Rigidbody>().AddForce(boostZ + boostAdd * 2);
             }
             if (boostlvl >= 4)
             {
                 GetComponent<Rigidbody>().AddForce(boostZ + boostAdd * 3);
             }
            
         }
        
         time -= Time.deltaTime;
         if (time <= 0)
         {
             boostlvl = 0;
             boost = false;

         }
     }


     if (jump) {
         GetComponent<Rigidbody> ().AddForce (boostY);
         jump = false;
     }

     Debug.Log(boostlvl);
     Debug.Log(time);
 }


 void OnTriggerEnter(Collider colider){
     if (colider.gameObject.tag == "Pickable") {
         time = 2;
         boostlvl++;
         boost = true;
         

     }
     if(colider.gameObject.tag == "jumpBox"){
         jump = true;
     }
 
     colider.gameObject.SetActive (false);
 }

The problem is that when my sphere goes at high speed, it sometimes jumps when hitting with platforms that are adjacent to each other, even when they are at the same Y position. I've uploaded this video for better understanding: https://www.youtube.com/watch?v=lOpnINlDZZc

Please, help me! I've searched at tons of posts an no one has the answer for this!

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

0 Replies

· Add your reply
  • Sort: 

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

69 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 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 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 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

Help please! Why can't I reduce the speed before jumping? 1 Answer

,Jump Mechanic - isGrounded using enter- and exitOnCollision - isGrounded stays false when touching floor object from side. 0 Answers

Having Issue with Player Jumping Consistently 0 Answers

I need help making a ball accelerate 0 Answers

* A simple script where every single time my character jumps it will increase speed *, * A needed script where every time you perform a jump and land your speed increases * 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