Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

You know? I think you've hit on something here. It's true that there doesn't seem to be any escalation or even really urgency, but I get the feeling that wasn't your priority for this jam. You made a solid, well-constructed prototype for an idea you thought might work, and as far as I'm concerned, it did.

I see as well you intended for there to be a "bullet budget" so the player couldn't overspam bullets and trivialize the game, but I wonder if you shouldn't lean into that. Give players a shooter with no ammo restrictions and they'll fall back on the classical ABS method: "Always be shooting." What would be more engaging? Suddenly losing your ability to shoot because too many bullets are on screen? Or using that as a tool to avoid getting overrun? I know for my part I had a good time manipulating the stream of bullets to shoot around corners, and I don't know if that would be as enjoyable otherwise.

Also, if you're willing to share, I wonder what technique you used to curve the bullet paths? It was really consistent, even when I tried to mess it up. 

(+1)

Thank you for your feedback! There are some design decisions that I would have to make to turn this prototype into a real game, you really gave me some food for thought there.

The bullets curving is actually pretty easy, there is a function in Unity that lets you move an object along its local axis (in this case the forward direction). All I have to do is slowly rotate the bullet as it is flying through the air so that its final rotation is the same as the wind's direction. I tried to avoid physics and rigidbody as much as possible.

Much simpler than I would have thought! I definitely underuse things like the directional transforms.