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 /
avatar image
0
Question by iahr · Dec 16, 2016 at 11:51 AM · scripting problemvelocityjumpmethodsscipt

Player cannot jump if not in update or fixed update

I'm almost new in unity but not so noob. if I call this in FixedUpdate or Update, it works perfectly. This is my code:

  void ChickenJump(){
                     print ("touch");
             if (Grounded&&Input.GetKeyDown(KeyCode.Space)) {
                 chickenbody.velocity = new Vector2 (0.0f, jumpRange);
             }

but if I use this code and called with a button, it does't work!

 public void ChickenJump(){
                 print ("touch");
         if (Grounded) {
             chickenbody.velocity = new Vector2 (0.0f, jumpRange);
         }
 }


The print is showing, meaning it is called, but the jump does't work!

please help..

Comment
Add comment · Show 3
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 tanoshimi · Dec 16, 2016 at 11:54 AM 0
Share

And is Grounded true?

avatar image arthymon · Dec 17, 2016 at 08:22 AM 0
Share

How do you check if object is grounded?

avatar image TheUltimateKerbonaut arthymon · Dec 17, 2016 at 08:33 AM 0
Share

If grounded is a public variable you will be able to see it in the editor. If not, try using Debug.Log(Grounded); in ChickenJump(), Update(), or FixedUpdate(). After the problem is fixed, be sure to stop writing it to the console, because it can slow the game down. If Grounded is never set to true, then something has gone wrong. Is the ChickenJump() void getting called when you press the jump key or not?

2 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Fobri · Dec 17, 2016 at 07:06 PM

Grounded is not true then. Are you using charactercontroller? because if not you should since it contains a check for player being grounded and you don't need to do it yourself.

https://docs.unity3d.com/ScriptReference/CharacterController-isGrounded.html

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

Answer by iahr · Dec 19, 2016 at 08:30 AM

Ok, I recreated the script in a new project. I only try that specific problem..... it works, and it jump smoothly like i wanted to. I don't know why, this happened to me every time. I think something is wrong with my Unity application.

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

8 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Character not jumping high enough 1 Answer

rigidbody.AddForce jump, different heights each time 1 Answer

Addforce while compensating others 1 Answer

Rigidbody.velocity giving weird result 0 Answers

Character Jump Control 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