Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
A jam submission

BulletUpHell : BLAST! [Bullethell Engine]View project page

The world's most feature-packed Bullethell Engine. Manages everything about patterns, bullets & spawning.
Submitted by Dark Peace — 43 minutes, 54 seconds before the deadline
Add to collection

Play Godot Plugin

BulletUpHell : BLAST! [Bullethell Engine]'s itch.io page

Results

CriteriaRankScore*Raw Score
LOVE#54.3854.385

Ranked from 13 ratings. Score is adjusted from raw score by the median number of ratings per game in the jam.

GitHub or Gitlab repo
https://github.com/rbecker5/BulletUpHell

Leave a comment

Log in with itch.io to leave a comment.

Comments

Submitted(+1)

I will try to find some use to it. I appreciate all the examples scenes. Thanks!

(+1)

The fact this genre has bled into RPGs, Souls-likes, and the success of Vampire Survivors makes this a very appealing plugin for a new project. Looks well thought out and documented, which is vital for someone who hasn't considered integrating this kind of concept to their game until recently.

Developer

Thx ! Yes, my own game is a Bullethell RPG :D

HostSubmitted(+1)

Wow, this is probably one of the most complete entry of this jam! The work you did is absolutely amazing. I never did a bullet hell game but now I kinda want to ;)

The addon seems very well made, with custom nodes, lots of configuration and possibilities! The fact that you created documentation and demo scenes is absolutely wonderful. The demo scenes give us a very good understanding of what’s possible of not. I’ll definitely try to use this addon on a future livestream!

Congrats for your entry

Developer(+1)

Thank you so much !

Submitted(+1)

Wow, you have actual documentation, neat!

Developer

Thx ^^ yeah I just made it today

Developer

I have updated the documentation which is now complète.

Submitted(+1)

I've not worked in this genre , but this looks like a great time saver. Well done!

Developer

Thx !

Submitted(+1)

I’m going to use this for the next bullet hell jam.

I think that documentation can be done in markdown to easily share it and have it linked in the github Wiki.

If issues are open on this related to the editor plugin, I’ll see if i can give a hand.

Developer

Thank you !

I've never used markdown and don't have much time so for now I'll stick to Docs.

Does your last statement refers to the other comment down below ? I'd appreciate the help but for the next update, the plugin is gonna change a lot (back end) so until then, Idk what's gonna stay and what's gonna change front end. Feel free to follow me to stay tunes ;)

Submitted(+1)

Wonderful, I checked the demo examples and I will definitely consider using this addon in a future project. I liked the custom nodes icons btw

Developer(+1)

Thank you ! I plan on updating the addon after the release of my game's demo. I recommend waiting for the update before using it in a serious project. Feel free to follow me to get notified ;)

Submitted (1 edit) (+1)

Thought I encountered an error until I realized the spawning scene needed to be autoloaded. You should look into using an EditorPlugin script to automatically load it with the add_autoload_singleton() method. Then anywhere it needs to be used do get_tree().root.get_node_or_null("AutoloadName") to check if it exists. You can also load custom nodes with add_custom_type() to make stuff appear in the node menu without using class_name. Sorry if you already know this and this is redundant info, just trying to help. Anyway... Other than that cool project! 😁

Developer

It's an Editor plugin, it already works with custom nodes. I tried auto loading the singleton but it didn't work. It's not too annoying but I'll make sure people understand they have to enable the autoload.