bevy-inspector-egui icon indicating copy to clipboard operation
bevy-inspector-egui copied to clipboard

Widget ID clashes

Open muhuk opened this issue 1 year ago • 2 comments

I am using the WorldInspectorPlugin like this:

    #[cfg(debug_assertions)]
    app.add_plugins(WorldInspectorPlugin::new());

Started seeing these errors:

image

Could this be related to my code?

Edit: using bevy-inspector-egui = "0.21"

muhuk avatar Nov 15 '23 19:11 muhuk

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

cjbehm avatar Nov 15 '23 19:11 cjbehm

also seeing this for a big grid

valyagolev avatar Dec 19 '23 17:12 valyagolev