We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2940636 commit 53f4c38Copy full SHA for 53f4c38
crates/bevy_core_pipeline/src/dof/mod.rs
@@ -14,8 +14,6 @@
14
//!
15
//! [Depth of field]: https://en.wikipedia.org/wiki/Depth_of_field
16
17
-use std::f32::INFINITY;
18
-
19
use bevy_app::{App, Plugin};
20
use bevy_asset::{load_internal_asset, Handle};
21
use bevy_derive::{Deref, DerefMut};
@@ -453,7 +451,7 @@ impl Default for DepthOfFieldSettings {
453
451
aperture_f_stops: physical_camera_default.aperture_f_stops,
454
452
sensor_height: physical_camera_default.sensor_height,
455
max_circle_of_confusion_diameter: 64.0,
456
- max_depth: INFINITY,
+ max_depth: f32::INFINITY,
457
mode: DepthOfFieldMode::Bokeh,
458
}
459
0 commit comments