Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Selene-Amanita committed Jul 10, 2023
1 parent 96adf59 commit f28cafb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/bevy_render/src/view/visibility/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,10 @@ pub fn calculate_bounds(
}

pub fn update_frusta<T: Component + CameraProjection + Send + Sync + 'static>(
mut views: Query<(&GlobalTransform, &T, &mut Frustum), Or<(Changed<GlobalTransform>, Changed<T>)>>,
mut views: Query<
(&GlobalTransform, &T, &mut Frustum),
Or<(Changed<GlobalTransform>, Changed<T>)>,
>,
) {
for (transform, projection, mut frustum) in &mut views {
let view_projection =
Expand Down

0 comments on commit f28cafb

Please sign in to comment.