Skip to content

Commit

Permalink
Rename.
Browse files Browse the repository at this point in the history
  • Loading branch information
tychedelia committed Sep 10, 2024
1 parent 4f7caa2 commit fe1e218
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bevy_nannou_draw/src/draw/instanced.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ where
.init_resource::<SpecializedMeshPipelines<InstancedPipeline<SM>>>()
.add_systems(
Render,
(queue_indirect::<SM>
(queue_instanced::<SM>
.after(prepare_assets::<PreparedMaterial<SM>>)
.in_set(RenderSet::QueueMeshes),),
);
Expand All @@ -153,7 +153,7 @@ where
}

#[allow(clippy::too_many_arguments)]
fn queue_indirect<SM>(
fn queue_instanced<SM>(
draw_functions: Res<DrawFunctions<Opaque3d>>,
custom_pipeline: Res<InstancedPipeline<SM>>,
mut pipelines: ResMut<SpecializedMeshPipelines<InstancedPipeline<SM>>>,
Expand Down

0 comments on commit fe1e218

Please sign in to comment.