-
This is really cool! One question though, if I wanted to run this headless, just the server without a gui, on my remote server, just for playing around with the messages, could I do that? I actually tried to spin this up in a docker container (https://github.com/jlesage/docker-baseimage-gui) but ran into an error where bevy is looking for a hardware GPU. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @leggt! Sadly, running a headless server is currently not supported. But the Bevy engine theoretically supports it, and it has been on the long list of features that I eventually want to implement. My guess is that headless mode will require a bit of refactoring, since the implementation currently mixes simulation and rendering. Just disabling the default plugins will probably not be enough. Can you share your Dockerfile or the error message? Maybe there is a quick fix for it... |
Beta Was this translation helpful? Give feedback.
Hi @leggt!
Sadly, running a headless server is currently not supported. But the Bevy engine theoretically supports it, and it has been on the long list of features that I eventually want to implement.
My guess is that headless mode will require a bit of refactoring, since the implementation currently mixes simulation and rendering. Just disabling the default plugins will probably not be enough.
Can you share your Dockerfile or the error message? Maybe there is a quick fix for it...