FoonLudum Dare ExplorerLD21 → EscCtrl

EscCtrl

By haversack

View on Wayback Machine

CategoryRankScoreCount
Humor413.21
Graphics2112.87
Theme2303.00
Audio2512.15
Community3991.80
Coolness418
Fun4481.73
Overall4651.87
Innovation4781.60

Comments

felipe-budinich 2011-08-21 17:43

hehehe :-D

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 ;-)

haversack 2011-08-21 18:23

Thanks for the advice Felipe. If the internet holds out I'll try to add an intro screen of some type.

felipe-budinich 2011-08-21 19:22

hehe by the way nevermind the trace(), i just copypasted it from my source X-D

tgijsola 2011-08-22 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.

refrag 2011-08-28 00:36

I liked the part where I got to hit the spacebar.

barigorokarl 2011-08-28 18:26

Nice soundtrack *g*

spoonweaver 2011-08-30 14:38

What a terribly short game. I really assumed I'd have to hit those buttons or something.