Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

This was unbelievable - I'm astonished at how much you were able to fit into 560 characters! This would be impressive enough if it was an endless runner sort of thing, but the fact that you've made a title screen and ending as well is jaw-dropping! Well done!

(3 edits) (+1)

Thank you very much☺️,

This was actually my fist game (well, technically a revision of my first game), and as such I ended up putting quite a bit of time into it, refining and cramming it down to size. Probably overkill, but it taught me a lot. I've had some comments expressing frustration with the controls, as it's designed around holding buttons down to bounce, but there wasn't quite space to explicitly explain that in-game. Hopefully you didn't try playing by just pressing the buttons. Did you play through to the ending?

(+1)

I did get to the ending! Honestly it's astonishing that you fit so much in, and the controls feel great when you're holding them (but a bit of control-jank is par for the course with these micro-jams, anyway!) Can I ask how you did the title? I can see those characters in the code, but I can't quite work out what's happening?

(3 edits) (+1)

Glad to hear you finished it, I've been hoping that people would do that. Went back and re-assessed my code, and managed to squeeze in instructions to hold the button to bounce, so hopefully that helps someone avoid frustration in the future.

As for the logo, that's pretty hacky. The characters are actually printed in black to the top left corner of the screen, then that area is scanned left to right top to bottom via a single loop using the floor divide and modulo operators, and the color value is tested for each pixel. For each one, a circfill command is given, but the radius value has the pixel color of that spot subtracted. Since subtracting 12, the number of the background, results in a negative radius value, no circle is drawn for spaces that aren't black. Finally, a blue filled circle is drawn over the printed text to hide it.=) You can see it printed out if you delete the chunk of code that looks like this:

c(0,4,k,12)

Oh, also, in case you hadn't tried it, I thought I'd mention a little easter egg. If you press the directional buttons on the title screen, you can make Squirt do a little dance. It's just an unintentional side effect of reusing his code while restricting movement, but with tweetcart games, you've gotta make bugs into features!

(+1)

Outstanding, thanks very much for explaining that! :)