Tweak the default camera node settings

- Increase FOV to 70
- Put the Z-near plane at 0.05 meters
This commit is contained in:
Hugo Locurcio 2017-11-25 23:48:30 +01:00
parent 73a26b4c3f
commit 541df26184
No known key found for this signature in database
GPG key ID: 39E8F8BE30B0A49C
2 changed files with 3 additions and 3 deletions

View file

@ -649,7 +649,7 @@ Camera::Camera() {
current = false;
force_change = false;
mode = PROJECTION_PERSPECTIVE;
set_perspective(65.0, 0.1, 100.0);
set_perspective(70.0, 0.05, 100.0);
keep_aspect = KEEP_HEIGHT;
layers = 0xfffff;
v_offset = 0;

View file

@ -120,9 +120,9 @@ public:
Camera() {
visible_layers = 0xFFFFFFFF;
fov = 65;
fov = 70;
type = PERSPECTIVE;
znear = 0.1;
znear = 0.05;
zfar = 100;
size = 1.0;
vaspect = false;