2
Bullet Heaven, something is off
(files.catbox.moe)
A community for discussion and support in development with the Godot game engine.
Out of curiosity are you using the physics server or some of the more high level physics wrappers?
For a bullet heaven (or hell, tbh) I'd definitely recommend checking if hooking into the physics server directly will give you a boost in projectiles or performance.
This guide is a little outdated, but gives a relevant demonstration of what can be achieved.
Currently there isn't much physics ongoing, if you don't count collision detection. I'm currently just moving meshes in
_process
and useRayCast3D
andArea3D
for collision detection.I've recently read about using just the RenderingServer and PhysicsServer and I am curious and interested. One step at a time ^^
Sounds like you're at the right stage in the process to investigate! Only reason I brought it up is that I'm working on a bullet heaven as well and got some pretty big gains going the server route.
Whether or not it's needed is dependent on your final vision, but even just handling collision has some appreciable gains.
Good luck!
Small world :) Thank you