-
I just started trying to become acquainted with Bevy. However, as soon as I add the DefaultPlugins, the program crashes. This is my code: use bevy::prelude::*;
fn main() {
App::build()
.add_plugins(DefaultPlugins)
.run();
} And this is the output:
I don't really know what to do with this error. A web search also didn't produce any meaningful results. All dependencies listed here are installed and I'm using the newest versions of Rust and Bevy. It would be great if someone here would have an idea how to solve this problem. If you need more information, just ask and I will provide them if I can. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Are you using bevy 0.5. I believe this has been fixed by #2269 on the main branch. |
Beta Was this translation helpful? Give feedback.
Are you using bevy 0.5. I believe this has been fixed by #2269 on the main branch.