this post was submitted on 31 Dec 2025
21 points (100.0% liked)

Rust

7662 readers
3 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 2 years ago
MODERATORS
 

Hey everyone,

Basically the title. I'd like to learn how to make my own drawing program and I'm slightly surprised that I can't seem to find anything about it. No tutorials or discussions about requirements or just general tutorials.

Does anyone have any recommendations on where I could start?

you are viewing a single comment's thread
view the rest of the comments
[–] ChocolateFrostedSugarBombs@lemmy.world 1 points 1 week ago (1 children)

Interesting. Are you using egui and bevy together or just you've been independently using them?

If you're using them together, what's the advantage of using egui instead of whatever internal Bevy GUI?

[–] Matty_r@programming.dev 2 points 1 week ago (1 children)

Using them together. Bevy is your "backend" and egui runs inside it and is used as your interface. Bevy, being a game engine bevy will be more than capable of doing the stuff you need.

I'm using the bevy_egui crate.