Hey all, I’ve been contemplating what approach I should take in my app, think along the lines of mapping with lots of UI elements but also a 2D portal/window for showing the map etc.
I want it to be cross platform so thought I’d go with Egui and look at implementing the “game” parts to that. But as I thought more about it, maybe it would be more beneficial to use Bevy and rely on its UI framework.
Thoughts? Maybe Bevy would be easier, but might be too much of a hit on performance because its not a game that I’m making. Egui might be more difficult to add the game stuff, but more performant and not running a full game engine.
I’m really conflicted. It would be good to be able to turn off/disable the game part of it to reduce load if it isn’t needed at the time
Sounds like Bevy would be the way to go, I found the bevy_egui crate which seems like it might be what I’m looking for to get started.