mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
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:
parent
ba0f8f996f
commit
37e80745d2
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue