jakobhellermann / bevy-inspector-egui

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

Not showing rest of components if a component isn't registered #115

Closed paul-hansen closed 1 year ago

paul-hansen commented 1 year ago

If you have a component that isn't registered, any components that would come after that component in the inspector are not shown. Before image After adding .register_type::<PlayerCameraRig>() image You can now see the transform and visibility components that were skipped.

jakobhellermann commented 1 year ago

That's fixed with https://github.com/jakobhellermann/bevy-inspector-egui/pull/113 but it's not released yet

paul-hansen commented 1 year ago

Ah cool, I tried to look for existing issues/PRs but didn't see that one, thanks!