bevy-console icon indicating copy to clipboard operation
bevy-console copied to clipboard

bevy_console::console::console_ui could not access system parameter ResMut<EguiUserTextures>

Open motgenror opened this issue 10 months ago • 1 comments

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.

motgenror avatar Feb 22 '25 17:02 motgenror

I had this issue. Doing the following fixed it:

  • downgrade my bevy-inspector-egui dependency to 0.28 (from 0.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

cameron1024 avatar Mar 04 '25 04:03 cameron1024