Users browsing this thread: 1 Guest(s)
Super Mario Bros. Star Scramble 3 (Spriter needed!)
#14
(05-18-2010, 10:52 AM)Super Goombario Wrote: 1. As they said on MFGG, it's probably not entirely legal to profit on a fan game
If you stick by those rules, it's not legal for the MFGG or The Spriters Resource to exist since these websites both have advertising and make profit on material owned by others. So that's a false statement and don't worry, I know what I am doing and if not, Nintendo will tell me.

(05-18-2010, 10:52 AM)Super Goombario Wrote: 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; }
};

Thanks for the suggestion, I will keep that in mind making my next game(s). Smile I've never seen this as a problem but now you mention it yeah, it's pretty normal not to keep jumping.
Thanked by:


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

Forum Jump: