bevy-inspector-egui
bevy-inspector-egui copied to clipboard
Widget ID clashes
I am using the WorldInspectorPlugin
like this:
#[cfg(debug_assertions)]
app.add_plugins(WorldInspectorPlugin::new());
Started seeing these errors:
Could this be related to my code?
Edit: using bevy-inspector-egui = "0.21"
I also started seeing these after upgrading a random old toy project from bevy 0.7.
Super simple cargo
[dependencies]
bevy = {version = "0.12.0"}
bevy_egui = "0.23"
bevy-inspector-egui = "0.21"
rand = "0.8.5"
I'm spawning a grid of entities under a parent entity and it seems that the inspector id clashes only start to show up when the grid is >= 13*13
also seeing this for a big grid