diff --git a/crates/bevy_pbr/src/light/ambient_light.rs b/crates/bevy_pbr/src/light/ambient_light.rs index d3f7744bd4..9bff67d5f8 100644 --- a/crates/bevy_pbr/src/light/ambient_light.rs +++ b/crates/bevy_pbr/src/light/ambient_light.rs @@ -20,6 +20,10 @@ use super::*; pub struct AmbientLight { pub color: Color, /// A direct scale factor multiplied with `color` before being passed to the shader. + /// + /// After applying this multiplier, the resulting value should be in units of [cd/m^2]. + /// + /// [cd/m^2]: https://en.wikipedia.org/wiki/Candela_per_square_metre pub brightness: f32, }