Merge pull request #13295 from Calinou/tweak-camera-node-defaults
Tweak the default camera node settings
This commit is contained in:
commit
f2c1fd2e8f
2 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue