What is the current best way to handle file dialogues? #8829
Answered
by
dimvoly
ThomasAlban
asked this question in
Q&A
-
How should I approach file dialogues in bevy? I'm using bevy_egui and want to be able to click a button which will open a file dialogue and store the file path. I have read #2032, and someone suggested some code using rfd, but this is out of date. I'm wondering if there is a simpler way of doing this? |
Beta Was this translation helpful? Give feedback.
Answered by
dimvoly
Jun 17, 2023
Replies: 1 comment 2 replies
-
I've had luck cloning egui_file and then customizing it for my needs. All you get out of it is a path, which is all you really need. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ThomasAlban
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've had luck cloning egui_file and then customizing it for my needs.
All you get out of it is a path, which is all you really need.