We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a01fbe commit 2df9f5dCopy full SHA for 2df9f5d
crates/bevy_core_pipeline/src/main_pass_2d.rs
@@ -39,9 +39,7 @@ impl Node for MainPass2dNode {
39
world: &World,
40
) -> Result<(), NodeRunError> {
41
let view_entity = graph.get_input_entity(Self::IN_VIEW)?;
42
- // If there's no view entity, pretend everything is fine
43
- // This fixes https://github.com/bevyengine/bevy/issues/4526
44
- // A better fix probably exists, but I don't know what it is
+ // If there is no view entity, do not try to process the render phase for the view
45
let (transparent_phase, target) = match self.query.get_manual(world, view_entity) {
46
Ok(it) => it,
47
_ => return Ok(()),
0 commit comments