- Home /
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;
}`
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"); }
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
Follow this Question
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