mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 22:50:19 +00:00
Tweak camera height and enable HDR by default
This commit is contained in:
parent
cd1976d03c
commit
fa26e796ef
1 changed files with 5 additions and 1 deletions
|
@ -253,7 +253,11 @@ fn setup(
|
||||||
// Camera
|
// Camera
|
||||||
commands.spawn((
|
commands.spawn((
|
||||||
Camera3dBundle {
|
Camera3dBundle {
|
||||||
transform: Transform::from_xyz(0.0, 2.8, 7.0).looking_at(Vec3::ZERO, Vec3::Y),
|
camera: Camera {
|
||||||
|
hdr: true,
|
||||||
|
..default()
|
||||||
|
},
|
||||||
|
transform: Transform::from_xyz(0.0, 1.8, 7.0).looking_at(Vec3::ZERO, Vec3::Y),
|
||||||
color_grading: ColorGrading {
|
color_grading: ColorGrading {
|
||||||
exposure: -2.0,
|
exposure: -2.0,
|
||||||
post_saturation: 1.2,
|
post_saturation: 1.2,
|
||||||
|
|
Loading…
Reference in a new issue