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 dapa5678 · Jan 06, 2015 at 08:08 PM · 2djumping

How do i code jumping for a 2d game in JS?

Hey guys I am making a 2d platform game and my jump code/move code works except my character can jump when he is not standing on anything here is my code

please help thanks`

  var maxwidth : float = 1;
     
     var movespeed : float = 0;
     
     var jump : int = 4;
     
     var canjump = true;
     
     var maxhighet : float = 6;
     
     var anim;
     
     function Start () {
     anim = GetComponent("Animator");
     }
     
     function Update () {
     anim.SetFloat("speed",Mathf.Abs(Input.GetAxis("Horizontal")));
     transform.position.x += Input.GetAxis("Horizontal")*movespeed*Time.deltaTime;
     
     if(Input.GetKeyDown(KeyCode.Space))
     
     rigidbody2D.velocity.y = jump;
     if(transform.position.y > maxhighet)
     transform.position.y = maxhighet;
     anim.SetTrigger("jump");
     }
     function OnCollisionExit2D(){
     canjump = false;
     }` 



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 HYPERSAVV · Jan 07, 2015 at 09:41 AM

Here's a start:

 var maxwidth : float = 1;     
 var movespeed : float = 0;
 var jump : int = 4;
 var canjump = true;
 var maxheight : float = 6;
 var anim;
 
 function Start () 
 {
      anim = GetComponent("Animator");
 }
 
 function Update () 
 {
      anim.SetFloat("speed",Mathf.Abs(Input.GetAxis("Horizontal")));
      transform.position.x += Input.GetAxis("Horizontal") * movespeed * Time.deltaTime;
 
      if(Input.GetKeyDown(KeyCode.Space) && canjump)
      {
           rigidbody2D.velocity.y = jump;
 
           if(transform.position.y > maxheight)
           {
                transform.position.y = maxheight;
           }
 
           anim.SetTrigger("jump");
      }
 }
 
 function OnCollisionEnter2D(Collision2D collider)
 {
      // You will most likely need to change this
      // This is VERY basic, just saying if we collided
      // with something that is below us
      if(collider.colliderInfo[0].normal.y == 1)
      {
           canjump = true;
      }
 }
 
 function OnCollisionExit2D()
 {
      canjump = false;
 } 

Some tips (this is all meant to be helpful, so in the future you'll get quicker responses):

  • Use proper indentation.

  • Always use brackets, especially if you do not intend on using proper indentation. Starting on Line 21, it's very hard to read what's going on and what's intended. What you have posted is actually this:

    void Update() { // Your other code here... // ...

      if(Input.GetKeyDown(KeyCode.Space))
        {
           rigidbody2D.velocity.y = jump;
        }
        if(transform.position.y > maxhighet)
        {
           transform.position.y = maxhighet;
        }      
        anim.SetTrigger("jump");
     }
    
    
    
    
Comment
Add comment · Show 1 · 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 federicotl · Jan 17, 2015 at 10:15 PM 0
Share

hi i would really like if you could give me this code but with no animator controller. If you have result please send to federicotambler@hotmail.com

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

Basic 2D cannon rotation code not working 1 Answer

Character jumping at random heights. What in my code is causing this? 1 Answer

putting jump in project#00 0 Answers

Graceful 2D collision enabling/disabling for topdown jumping 1 Answer

How do I prevent my character from crouching when jumping? 2 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