Play Godot Plugin
BulletUpHell : BLAST! [Bullethell Engine]'s itch.io pageResults
Criteria | Rank | Score* | Raw Score |
LOVE | #5 | 4.385 | 4.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
I will try to find some use to it. I appreciate all the examples scenes. Thanks!
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.
Thx ! Yes, my own game is a Bullethell RPG :D
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
Thank you so much !
Wow, you have actual documentation, neat!
Thx ^^ yeah I just made it today
I have updated the documentation which is now complète.
I've not worked in this genre , but this looks like a great time saver. Well done!
Thx !
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.
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 ;)
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
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 ;)
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! 😁
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.