Log In  
Follow
Voltaia

Game developer & sleep enthusiast.

[ :: Read More :: ]

Cart #orbital-0 | 2021-09-30 | Code ▽ | Embed ▽ | No License


Just finished this gravity simulator I've been using to test out some math for a bigger game! I programmed it to support more objects, but ran out of screen space and didn't feel like optimizing. Anyway, it looks cool nonetheless.

P#98023 2021-09-30 03:09 ( Edited 2021-09-30 03:09)

[ :: Read More :: ]

Cart #flyball-1 | 2021-09-16 | Code ▽ | Embed ▽ | No License
5


A cute football themed game made by TigerDev at Auburn University to showcase what types of games we create.

P#96167 2021-08-18 06:46 ( Edited 2021-09-16 21:50)

[ :: Read More :: ]

Cart #underdog-0 | 2021-03-13 | Code ▽ | Embed ▽ | License: CC4-BY-NC-SA
1

Here's my first bbs cart. I've really liked Pico-8, and since there's been a lot of cryptocurrency hype, I thought I would make a Dogecoin clicker. Do enjoy!

(It does have some problems and the gameplay is iffy but the particles look pretty so that's cool)

P#88925 2021-03-13 17:42

[ :: Read More :: ]

Pico-8 is a great tool, and for many reasons. The main reason I believe Pico-8 is so awesome is because of its restrictions. Limited palette and resolution inspires creativity, limited memory and computational power inspires optimization, and limited data values inspires frustration.

Yes, frustration. What I'm talking about is the 16.16 fixed point that only allows number values to go up to 32,767. I've only just started using Pico-8 but this is such an infuriating detail to me, which is why I've made this post in favor of allocating just a little more space for numbers. Something like 48.16 fixed point instead, or even 32.16 or 24.16 if possible (I'm not too knowledgeable on binary storage).

Yes, I know, there are several solutions to this problem. I've researched many and even came up with one of my own, but when you're just trying to throw together a game that for whatever reason requires values higher than 32,767, it's a total pain! On a recent game (where I first encountered the number limitations), I found myself spending more time fixing and optimizing this problem then I did working on the gameplay. That said, I'm not very good at math, but I still believe that it should be easier than this.

Anyways, that's my rant, I would love to hear other people's opinions.

P#88484 2021-03-03 21:30 ( Edited 2021-03-03 21:32)