jakobhellermann / bevy-inspector-egui

Inspector plugin for the bevy game engine
Apache License 2.0
1.12k stars 166 forks source link

Combining Inspector Windows #102

Closed probably-neb closed 1 year ago

probably-neb commented 1 year ago

Essentially I'd like to display multiple resources alongside entities in a single inspector. I have poked around a little bit and from what I can tell the only way to view multiple resources as well as entities at the same time is to either: A) Have many windows with one window per resources plus the world inspector window to view entities/components, however this leads to a mess of windows in my opinion and is therefore not ideal B) Have only a single world inspector window by creating an entity that stores the resource values, and create a system that copies the resource values to and from the entity so they can be viewed/modified through the world inspector C) Do the same thing as in B but with one giant resource

Is there a way I've missed to consolidate the windows besides wrapping the desired resources in entities or everything in a single resource? If not could it be added in the future?

probably-neb commented 1 year ago

nvm I found the link to the rewrite branch looking around at other issues