Skip to content

Commit

Permalink
Fix pipeline initialisation of wireframe mode (fixes bevyengine#1609)
Browse files Browse the repository at this point in the history
  • Loading branch information
notsimon committed Mar 11, 2021
1 parent 6860693 commit 7a4d0b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_render/src/wireframe/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl Plugin for WireframePlugin {
let mut pipelines = world
.get_resource_mut::<Assets<PipelineDescriptor>>()
.unwrap();
pipelines.set(
pipelines.set_untracked(
WIREFRAME_PIPELINE_HANDLE,
pipeline::build_wireframe_pipeline(&mut shaders),
);
Expand Down

0 comments on commit 7a4d0b4

Please sign in to comment.