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 DerSeb · Jun 08, 2015 at 10:14 AM · playerjumpplayer movementkey

Player cannot jump

Hey Guys. I need help because my player doesnt want to jump. Could you please look after the skript? Thanks.

using UnityEngine; using System.Collections;

public class PlayerMove : MonoBehaviour {

 public float maxSpeed = 4;
 public float jumpForce = 550;
 public Transform groundCheck;
 public bool lookingRight = true;
 public LayerMask whatIsGround;
 
 private Rigidbody2D rb2d;
 private Animator anim;
 private bool IsGrounded = true;
 private bool Jump = false;

 void Start () {
     rb2d = GetComponent<Rigidbody2D>();
     anim = GetComponent<Animator>();
 }
 
 void Upate() {
     if (Input.GetButtonDown ("Jump") && IsGrounded) {
         Jump = true;
     }
 }

 void FixedUpdate() {
     float hor = Input.GetAxis ("Horizontal");
     anim.SetFloat ("Speed", Mathf.Abs (hor));
     rb2d.velocity = new Vector2 (hor * maxSpeed, rb2d.velocity.y);
     IsGrounded = Physics2D.OverlapCircle (groundCheck.position, 0.15F, whatIsGround);
     anim.SetBool("IsGrounded", IsGrounded);
     if ((hor > 0 && !lookingRight) || (hor < 0 && lookingRight))
         Flip ();
     if (Jump) {
         rb2d.AddForce(new Vector2 (0,jumpForce));
         Jump = false;    
     }
 }
 
 public void Flip() {
     lookingRight = !lookingRight;
     Vector3 myScale = transform.localScale;
     myScale.x *= -1;
     transform.localScale = myScale;
 }

}

Comment
Add comment · Show 4
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 Bonfire-Boy · Jun 08, 2015 at 10:25 AM 1
Share

Your 'Upate' function won't be getting called, it should be 'Update'.

avatar image DerSeb · Jun 10, 2015 at 08:57 PM 0
Share

But i wrote an 'Update' and an 'FixedUpdate' function and it didnt work

avatar image SterlingSoftworks · Jun 10, 2015 at 11:10 PM 0
Share

No no, he literally means your Update function will not be called by Unity. You typed Upate().. not Update()..

avatar image crohr · Jun 10, 2015 at 11:14 PM 1
Share

So, if you have fixed your misspelling the word Update, and the problem is still occurring then my best guess would be your layers are not setup properly for the player to be grounded.

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Player wont jump (visual script),2d player does not jump (visual script) 1 Answer

Dash in movement direction, not in forward direction 0 Answers

How to prevent player from moving in air while jumping in place?? 0 Answers

Player cannot jump 0 Answers

Why Won't it jump? 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