3. Me suspecting UiPlugin (because where to render?)
4. `Go To Definition` of UiPlugin
5. Seeing the following definition:
pub struct UiPlugin {
/// If set to false, the UI's rendering systems won't be added to the `RenderApp` and no UI elements will be drawn.
/// The layout and interaction components will still be updated as normal.
pub enable_rendering: bool,
...
}
Hm, well that `enable_rendering` seems "suspicious" to me, so let's deactivate that and see what happens...
2/?