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
0
Question by Camleau · Mar 04, 2020 at 08:35 PM · movementvector3velocityjumpjumping

Fix for inconsistent jump height?

Basic TPS controller - when I jump whilst standing still, I jump at a consistently different height compared to when I a moving.

Ruled out issues with rigid.drag. One thing I have noticed is that the "y value" on rigid.velocity is fixed at -0.6 and decreases to another fixed amount. I cannot figure out what is causing this decrease and suspect it may be the issue. !

Attempting to set the y value to various different values proved unfruitful as most of the time it affected the jump since it is updated each frame and would be reset whenever moving.

 public void FixedTick(float d)
         {
             delta = d;
             playerStates.jumpConfirmed = false;
 
             playerStates.onGround = onGround(); //must be before jump
 
             handleDrag();
 
             jump();
 
             movement();
             rotation();
 
             attack();
 
             detectCheck();
             Debug.Log(rigid.velocity);
         }
 
         void movement()
         {
             if (inputHandler.inputVariables.horizontal !=0 || inputHandler.inputVariables.vertical != 0)
             {
                 float movementSpeed = 2;
 
                 currentVelocity = rigid.velocity;
 
                 targetVelocity = inputHandler.inputVariables.moveDirection * movementSpeed;
 
                 velocityChange = 3;
                 Vector3 vel = Vector3.Lerp(currentVelocity, targetVelocity, delta * velocityChange);
 
                 rigid.velocity = vel;
               
             }
         }
 
 public void jump()
         {
             if (playerStates.jumpInput && !playerStates.isCrouching)
             {
                 checkForGround = false;
                 playerStates.jumpConfirmed = true;
 
                 rigid.drag = 0;
                 rigid.velocity = new Vector3(rigid.velocity.x, 0, rigid.velocity.z);
                 rigid.velocity += Vector3.up * playerValues.jumpHeight;
                 jumpY += Vector3.up * playerValues.jumpHeight;
                 StartCoroutine(pauseGroundCheck());
             }
         }
 
         IEnumerator pauseGroundCheck()
         {
             yield return new WaitForSeconds(.1f);
             Debug.Log("playerHeight" + rigid.worldCenterOfMass.y);
             checkForGround = true;
         }
 
         bool onGround()
         {
             if (checkForGround)
             {
                 Vector3 origin = playerTransform.position;
                 origin.y += 0.6f;
                 Vector3 dir = -Vector3.up;
                 float distToGround = 0.6f;
 
                 RaycastHit hitGround;
                 Debug.DrawRay(origin, dir, Color.green, distToGround);
 
                 if (Physics.Raycast(origin, dir, out hitGround, distToGround, groundLayer))
                 {
                     Vector3 tp = hitGround.point; //target position - where collision has occured
                     playerTransform.position = tp; //sets mTransform. position to the collision point
                     return true;
                 }
 
                 else
                 {
                     return false;
                 }
             }
 
             else
             {
                 return false;
             }
         }


[1]: /storage/temp/153663-gif.gif

gif.gif (306.3 kB)
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
0
Best Answer

Answer by Camleau · Mar 05, 2020 at 02:41 PM

After hours of trial an error, it is thankfully a simple fix. I'm sure I tried this in various variations before but maybe it was incompatible.

I added the line below just before setting the RigidBody.velocity in my movement function to maintain the current y velocity. My understanding is still incomplete but it fixed my issue and might help someone else:

 vel.y = rigid.velocity.y;  
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

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

Related Questions

Make it so you cant jump in air 0 Answers

While (starting jumping or in jump) holding W key makes game object jump high and fall slow. 1 Answer

Jump logic issues 0 Answers

Change the "jumping speed" in the FirstPersonController by using another script 0 Answers

My jump scripit wont work. i have been tryingtt o make it work for an eternity. please help. 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