Skip to content

Commit

Permalink
Cargo fmt.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Feb 3, 2024
1 parent 6c5f92a commit 04fe53e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions bevy_nannou_render/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ impl Plugin for NannouRenderPlugin {
(
prepare_default_texture_bind_group.in_set(RenderSet::PrepareBindGroups),
prepare_texture_bind_groups.in_set(RenderSet::PrepareBindGroups),
prepare_view_mesh.after(prepare_default_texture_bind_group).in_set(RenderSet::Prepare),
prepare_view_mesh
.after(prepare_default_texture_bind_group)
.in_set(RenderSet::Prepare),
prepare_view_uniform.in_set(RenderSet::PrepareBindGroups),
),
)
Expand Down Expand Up @@ -477,4 +479,4 @@ pub enum RenderCommand {
}

#[derive(Component, Deref, DerefMut, Default)]
pub struct ViewRenderCommands(Vec<RenderCommand>);
pub struct ViewRenderCommands(Vec<RenderCommand>);

0 comments on commit 04fe53e

Please sign in to comment.