Skip to content

Commit

Permalink
Add constraint to render graph (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett authored Oct 26, 2024
1 parent 06e9cbc commit b185a33
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,13 @@ impl Plugin for Light2dPlugin {
.add_render_graph_node::<ViewNodeRunner<LightMapNode>>(Core2d, LightMapPass)
.add_render_graph_edges(
Core2d,
(Node2d::EndMainPass, SdfPass, LightMapPass, LightingPass),
(
Node2d::EndMainPass,
SdfPass,
LightMapPass,
LightingPass,
Node2d::Bloom,
),
);
}

Expand Down

0 comments on commit b185a33

Please sign in to comment.