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

@ -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;