Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

What were your best and worst moments?

A topic by Zoé Bourdon created Apr 30, 2018 Views: 357 Replies: 5
Viewing posts 1 to 5
Submitted (1 edit)

Hello everybody!

While I'm sure we're all enjoying the sheer silence that comes after a good session of jamming together a half baked game in a way too small amount of time, why don't we share what went well, and not so well, during our development?

My worst moment

Spend a full hour debugging the AI that was hopelessly running against the wall and literally fleeing from the battleground as if it was scared by the enemy.
It took me an hour to discover that the issue was an inverted argument in a condition: (> 0 pos) instead of (> pos 0).

My best moment

Make the AI play by itself for the first time. I was sooo happy to see it move by itself, even if it was just the routine "Select a unit > Move forward > Validate". For the first time my game was "alive". I was literally dancing in front of my screen.

                                                                                  

So, what about you?

Submitted (1 edit) (+1)

My worst moment

I stated the jam two days late, built a prototype in a day, then spent a day learning how to use other parts of the Racket language to do it better, so I threw everything out and started again on ~ Day 5! Realizing that I wouldn’t really have a game but more of a world explorer on the last few days was a bit upsetting

My best moment  

Being able to use a third party simplex noise library and generate elevation maps and visualize them in 3D is one of the coolest things I’ve ever done in computer science. Being able to then translate that to a 2D, top-down ASCII view was really rewarding and gives me lots of ideas on how to work with that in the future!


Submitted(+1)

What a blast! This was my first jam, and I was really happy to have a full ten days, because trying to finish in 3 would have been rough on my health.

Worst moment: getting all the coding complete and realizing I have no idea what I'm going to do for level design. By that point I was down to two days left, but I knew I had been heads-down in the game so long that I could no longer be relied upon to determine what is or isn't fun.

Best moment: I spent most of the jam on a business trip (had a lot of solo nights at the hotel for hack time which worked out really well) but once I got back home and got to show my game to my kids, they were able to playtest, spot bugs, and even help with level design a fair bit. Using Tiled for the levels made it really easy for them to pitch in. Their enthusiasm helped push me over the line to finish (just barely) in time.

Submitted(+1)

I had exactly the same feeling for game design! I discovered two days before the deadline that I needed to make more levels... But I couldn't determine what was fun or not! It was also my first jam.

Submitted

Best Moment: Probably when I saw my Emitter class iterating through the firing sequence actions provided to via the first level. This sequence of delayed but defined functions called at certain keyframes was successful I feel. It's less clean in some other languages. Especially if you don't have parameter lists with optional parameters.

Worst Moment: Trying to figure out how to deploy to multiple systems and realizing that I've probably been using GitHub wrong all this time. Feeling a bit guilty for spending some of borodust's development time in helping me deploy.

Submitted

Worst moment: Running out of time with half of my gameplay ideas still unimplemented.  I knew I wouldn't have time to do everything, but I got even less done than I'd expected.  Next jam, I will make better use of my time.  Also: Trying to make an OS X build with 50 minutes left and realizing I had no idea what I was doing.

Best moment: I showed my husband the prototype and he danced to the music.  So I know at least one person enjoyed it!  Best coding moment was the first time getting the parallax background working.  It's always nice when something clicks and goes from "total disaster" to "fully functional, surprise!"