You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Objective
It should be possible to enable minimal bevy features by disabling all
and then progressively enabling them until everything works.
This however requires, that bevy has good error reporting and gracefully
supports different featuresets.
I ran my code with minimal features and got this unhelpful error:
```
thread 'main' (993068) panicked at /home/jakob/dev/rust/bevy/crates/bevy_render/src/render_graph/graph.rs:158:26:
InvalidNode(PostProcessing)
```
## Solution
With this PR it looks like this:
```
thread 'main' (989393) panicked at /home/jakob/dev/rust/bevy/crates/bevy_pbr/src/wireframe.rs:136:14:
node PostProcessing does not exist
```
Which immediately helps me figure out that I need some feature for the
`WireframePlugin` I added.
Co-authored-by: Alice Cecile <[email protected]>
0 commit comments