Users browsing this thread: 1 Guest(s)
Super Mario Bros. Star Scramble 3 (Spriter needed!)
#13
1. As they said on MFGG, it's probably not entirely legal to profit on a fan game

2. I hope you fixed the jumping glitch in your engine. Why can no flash developer ever realize that you can hold down the space bar and jump again upon touching the ground? It takes like two minutes to implement the solution:
Code:
var jumping:Boolean = false;
// stuff
function onEnterFrame():Void {
// stuff
if(Key.isDown(Key.SPACE)&&!jumping){
jump();
jumping=true;
}
if(!Key.isDown(Key.SPACE)){ jumping=false; }
};
Thanked by:


Messages In This Thread
RE: Super Mario Bros. Star Scramble 3 (Hired job! $$$) - by Super Goombario - 05-18-2010, 10:52 AM

Forum Jump: