Hello,
I want to develop an arcade style bullet hell shmup game, and had a few design concerns I wanted to iron out early. If some more experienced Godot wizards could give some advice and maybe pros/cons I would greatly appreciate it.
Firstly, how bad of an idea would it be to avoid using delta throughout the project? The upside as I see it is that bullet pattern behavior should be 100% deterministic if done this way. I plan on having fps capped at 60, and the goal is for the game to be lightweight enough that it shouldn’t ever drop below this even on some weaker machines.
Secondly, if I’m instantiating potentially up to hundreds of bullets on the screen at a time as Area 2Ds, is the default Godot physics engine well optimized for this? Or would custom collision logic potentially be better (ie for a circular bullet only check the bullets distance from the player to determine collisions)?
Thanks,
Alex