Skip to content

Commit

Permalink
Update crates/bevy_core_pipeline/src/core_3d/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Nicola Papale <nicopap@users.noreply.github.com>
  • Loading branch information
IceSentry and nicopap authored Aug 3, 2023
1 parent f9f6a8c commit b7f0702
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_core_pipeline/src/core_3d/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -492,8 +492,8 @@ pub fn prepare_entity_textures(
msaa: Res<Msaa>,
render_device: Res<RenderDevice>,
views_3d: Query<
(Entity, &ExtractedCamera, Option<&ExtractedGpuPickingCamera>),
(With<RenderPhase<Opaque3d>>, With<RenderPhase<AlphaMask3d>>),
(Entity, &ExtractedCamera),
(With<ExtractedGpuPickingCamera>, With<RenderPhase<Opaque3d>>, With<RenderPhase<AlphaMask3d>>),
>,
) {
for (entity, camera, gpu_picking_camera) in &views_3d {
Expand Down

0 comments on commit b7f0702

Please sign in to comment.