bevy-console
bevy-console copied to clipboard
bevy_console::console::console_ui could not access system parameter ResMut<EguiUserTextures>
With this in Cargo.toml:
bevy_console = { version = "0.13.1" }
And
.add_plugins(ConsolePlugin)
.insert_resource(ConsoleConfiguration {
..default()
})
Bevy fails at startup with
bevy_console::console::console_ui could not access system parameter ResMut<EguiUserTextures>
If I find a solution, I'll post it in the comments.
I had this issue. Doing the following fixed it:
- downgrade my
bevy-inspector-eguidependency to0.28(from0.29) - add
.insert_resource(EguiUserTextures::default())to my app
Before this, cargo tree -i egui was showing that I had both 0.29 and 0.30 in my dependency graph, but now I only have 0.29