
Ludum Dare #21compo
EscCtrl
Warning: you must click in the flash box to be able to control
Controls: Spacebar - It will knock over a trash can and slow Ctrl.

Controls: Spacebar - It will knock over a trash can and slow Ctrl.

Comments7

Haversack21 Aug 2011, 18:23
Thanks for the advice Felipe. If the internet holds out I'll try to add an intro screen of some type.

Felipe Budinich21 Aug 2011, 19:22
hehe by the way nevermind the trace(), i just copypasted it from my source X-D
tgijsola22 Aug 2011, 20:50
Might be because I'm loopy from working on my own project, but this game is seriously cracking me up right now.
Catch soundtrack, too.
Catch soundtrack, too.

refrag28 Aug 2011, 00:36
I liked the part where I got to hit the spacebar.

barigorokarl28 Aug 2011, 18:26
Nice soundtrack *g*
Spoonweaver30 Aug 2011, 14:38
What a terribly short game. I really assumed I'd have to hit those buttons or something.

By the way you could fix the "gotta click the swf to play" thing, you could add a little intro screen. Mine was this:
override public function create():void {
introSprite = new FlxSprite(40, 0, INTRO);
this.add(introSprite);
trace('click to play');
}
override public function update():void {
if (FlxG.mouse.justReleased())
{
FlxG.state = new Game();
}
}
the sprite says that you need to click to play. problem solved ;-)