Page 1 of 1

Jumping Problem

PostPosted: Thu Apr 16, 2009 12:25 am
by LucasA33
How do you make it so you can only jump twice.

Re: Jumping Problem

PostPosted: Thu Apr 16, 2009 12:37 am
by jimmynewguy
make a variable jump
collision on top side of ground>jump = 2;
key down on w/e
if(jump >= 1)
{
jump --;
yvelocity -= 10;//or so
}
there is plenty of stuff on jumping search before you ask next time please and thank you, we don't want to make mak lose space on the forum :)

Re: Jumping Problem

PostPosted: Fri Apr 17, 2009 12:36 am
by LucasA33
jimmynewguy wrote:make a variable jump
collision on top side of ground>jump = 2;
key down on w/e
if(jump >= 1)
{
jump --;
yvelocity -= 10;//or so
}
there is plenty of stuff on jumping search before you ask next time please and thank you, we don't want to make mak lose space on the forum :)

Really makes no sence.

Re: Jumping Problem

PostPosted: Fri Apr 17, 2009 2:52 am
by DST
LucasA33 wrote:
jimmynewguy wrote:there is plenty of stuff on jumping search

Really makes no sence.



That part does make sense.

Re: Jumping Problem

PostPosted: Sat Apr 18, 2009 12:27 pm
by Kalladdolf
See this demo.
See this demo.
See this demo.

Now it makes even more sense.

Re: Jumping Problem

PostPosted: Sun Apr 19, 2009 9:32 pm
by LucasA33
I found out... I actually... Didn;t need the help thanks to camper's jumping tut. But. Thanks for the feed back!