mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 20:53:53 +00:00
Fix clippy error
This commit is contained in:
parent
d4ad6253ad
commit
4e4d79033a
1 changed files with 9 additions and 11 deletions
|
@ -642,17 +642,15 @@ pub fn queue_material_meshes<M: Material>(
|
|||
batch_range: 0..1,
|
||||
dynamic_offset: None,
|
||||
});
|
||||
} else {
|
||||
if forward {
|
||||
opaque_phase.add(Opaque3d {
|
||||
entity: *visible_entity,
|
||||
draw_function: draw_opaque_pbr,
|
||||
pipeline: pipeline_id,
|
||||
distance,
|
||||
batch_range: 0..1,
|
||||
dynamic_offset: None,
|
||||
});
|
||||
}
|
||||
} else if forward {
|
||||
opaque_phase.add(Opaque3d {
|
||||
entity: *visible_entity,
|
||||
draw_function: draw_opaque_pbr,
|
||||
pipeline: pipeline_id,
|
||||
distance,
|
||||
batch_range: 0..1,
|
||||
dynamic_offset: None,
|
||||
});
|
||||
}
|
||||
}
|
||||
AlphaMode::Mask(_) => {
|
||||
|
|
Loading…
Reference in a new issue