Derive Debug for BloomCompositeMode (#11041)

# Objective

- API guidelines recommend that every type should implement `Debug`
where possible.

## Solution

- Do that.
This commit is contained in:
Sludge 2023-12-21 20:59:46 +01:00 committed by GitHub
parent ba0f8f996f
commit 37e80745d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -175,7 +175,7 @@ pub struct BloomPrefilterSettings {
pub threshold_softness: f32,
}
#[derive(Clone, Reflect, PartialEq, Eq, Hash, Copy)]
#[derive(Debug, Clone, Reflect, PartialEq, Eq, Hash, Copy)]
pub enum BloomCompositeMode {
EnergyConserving,
Additive,