jakobhellermann / bevy-inspector-egui

Inspector plugin for the bevy game engine
Apache License 2.0
1.1k stars 164 forks source link

Widget ID clashes #160

Open muhuk opened 7 months ago

muhuk commented 7 months ago

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"

cjbehm commented 7 months ago

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

valyagolev commented 6 months ago

also seeing this for a big grid