Tweak initial camera position

This commit is contained in:
Marco Buono 2023-03-10 03:20:15 -03:00
parent 13f59bfcbb
commit 24359e6aa8

View file

@ -121,7 +121,7 @@ fn setup(
// Camera
commands.spawn(Camera3dBundle {
transform: Transform::from_xyz(0.0, 2.5, 8.0).looking_at(Vec3::ZERO, Vec3::Y),
transform: Transform::from_xyz(0.0, 1.5, 7.0).looking_at(Vec3::ZERO, Vec3::Y),
..default()
});