jakobhellermann / bevy-inspector-egui

Inspector plugin for the bevy game engine
Apache License 2.0
1.19k stars 173 forks source link

Option to split entity list & components #11

Closed alyti closed 2 years ago

alyti commented 3 years ago

As titled, I think it might be worth to experiment with layout of the UI, in this case the entities and their relations stay in top half of the window and second half would be dedicated to the components.

msklywenn commented 3 years ago

I implemented that (with two panels though) with a custom version of egui. It's in the bevy-main branch of my fork.

https://user-images.githubusercontent.com/1546678/119365931-bd3ba200-bcb0-11eb-9331-340906c067ef.mp4

I could clean this up and try to PR egui and bevy-inspector-egui if interested.

jakobhellermann commented 2 years ago

I created https://github.com/jakobhellermann/bevy_editor_pls to build a more familiar editor-like UI on top of the inspector, so I think bevy-inspector-egui itself can stay the way it is and bevy_editor_pls can be used for the split layout.

grafik