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 Soundlag · Feb 06, 2016 at 06:10 PM · charactercontrollerjumpcharacter controller

Why won't my character jump smoothly?

I used this script for player movement and jumping.

 using UnityEngine;
 using System.Collections;
 
 public class PlayerController : MonoBehaviour
 {
 
     [SerializeField]
     private float _walkSpeed;
     [SerializeField]
     private float _runSpeed;
     [SerializeField]
     private float _crouchSpeed;
     [SerializeField]
     private float _jumpSpeed;
     [SerializeField]
     private float _gravityMultiplier;
     [SerializeField]
     private float _mouseLookSensitivity;
     [SerializeField]
     private float _stickToGroundForce;
 
     private Camera _camera;
     private CharacterController _character;
     private Vector3 _moveDirection = Vector3.zero;
 
     private bool _jump;
     private bool _isJumping;
     private bool _isWalking;
     private bool _isRunning;
     private bool _isCrouching;
     private bool _previouslyGrounded;
 
     //______________________________________________________________________________
     // Function: Awake
     #region Function
     void Awake()
     {
         Cursor.lockState = CursorLockMode.Locked;
         Cursor.visible = false;
     }
     #endregion
 
     //______________________________________________________________________________
     // Function: Start
     #region Function
     void Start()
     {
         _camera = Camera.main;
         _character = GetComponent<CharacterController>();
 
         _isJumping = false;
         _isRunning = false;
         _isCrouching = false;
     }
     #endregion
 
     //______________________________________________________________________________
     // Function: Update
     #region Function
     void Update()
     {
         if (Input.GetKeyUp(KeyCode.Escape))
             UnlockCursor();
 
         LookAtMouse();
 
         if (!_jump)
         {
             _jump = Input.GetButtonDown("Jump");
         }        
 
         _previouslyGrounded = _character.isGrounded;
     }
     #endregion
 
     //______________________________________________________________________________
     // Function: FixedUpdate
     #region Function
     void FixedUpdate()
     {
         float h = Input.GetAxis("Horizontal");
         float v = Input.GetAxis("Vertical");
 
         _moveDirection = new Vector3(h, 0, v);
         _moveDirection = transform.TransformDirection(_moveDirection);
 
         float speed = GetSpeed();
 
         _moveDirection *= speed;
 
         if (_character.isGrounded)
         {
             _moveDirection.y = -_stickToGroundForce;
             if (_jump)
             {
                 _moveDirection.y = _jumpSpeed;
                 _jump = false;
                 _isJumping = true;
             }
         }
         else
         {
             _moveDirection += Physics.gravity*_gravityMultiplier*Time.fixedDeltaTime;
         }        
         _character.Move(_moveDirection * Time.fixedDeltaTime);
 
         
     }
     #endregion
 
 
     //______________________________________________________________________________
     // Function: LookAtMouse
     #region Function
     private void LookAtMouse()
     {
         Vector2 mouseDelta = new Vector2(Input.GetAxisRaw("Mouse X"), Input.GetAxisRaw("Mouse Y")) * _mouseLookSensitivity;
 
         _camera.transform.eulerAngles += new Vector3(-mouseDelta.y, 0, 0);
         transform.eulerAngles += new Vector3(0, mouseDelta.x, 0);
     }
     #endregion
 
     //______________________________________________________________________________
     // Function: GetSpeed
     #region Function
     private float GetSpeed()
     {
         float speed;
 
         _isRunning = Input.GetKey(KeyCode.LeftShift);
 
         if (_isRunning)
             _isCrouching = false;
 
         speed = !_isRunning ? _walkSpeed : _runSpeed;
 
         if (Input.GetKeyDown(KeyCode.LeftControl))
         {
             _isCrouching = !_isCrouching;
         }
 
         speed = _isCrouching ? _crouchSpeed : speed;
 
         return speed;
     }
     #endregion
 
     //______________________________________________________________________________
     // Function: UnlockCursor
     #region Function
     private void UnlockCursor()
     {
         if (Cursor.lockState == CursorLockMode.Locked)
         {
             Cursor.lockState = CursorLockMode.None;
         }
         else
         {
             Cursor.lockState = CursorLockMode.None;
         }
 
         Cursor.visible = !Cursor.visible;
     }
     #endregion
 
 
 }
 

After I hit space to jump, it just moves to its highest point without any transition in between. Then it slowly falls to the ground. How can I fix 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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Jump logic issues 0 Answers

I have a problem in the jump system. 1 Answer

Character controller aplly gravity in FixedUpdate with my own gravity in Update 1 Answer

how to jump in a 2D game 2 Answers

CharacterController getting stuck on slope corners 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