mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 14:40:19 +00:00
Change Camera3dBundle::tonemapping to Default (#8753)
# Objective - Continue with #8685 to make `TonyMcMapface` the default tonemapping ## Solution - Change the default value `Camera3dBundle::tonemapping` from `Tonemapping::ReinhardLuminance` to `Default::default()` (`Tonemapping::TonyMcMapface`)
This commit is contained in:
parent
d1158288d5
commit
94dce091a9
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ impl Default for Camera3dBundle {
|
|||
transform: Default::default(),
|
||||
global_transform: Default::default(),
|
||||
camera_3d: Default::default(),
|
||||
tonemapping: Tonemapping::ReinhardLuminance,
|
||||
tonemapping: Default::default(),
|
||||
dither: DebandDither::Enabled,
|
||||
color_grading: ColorGrading::default(),
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue