mirror of
https://github.com/bevyengine/bevy
synced 2024-11-23 05:03:47 +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
|
||||
commands.spawn((
|
||||
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 {
|
||||
exposure: -2.0,
|
||||
post_saturation: 1.2,
|
||||
|
|
Loading…
Reference in a new issue