At the Moment,i use my 40" Triplescreen in 1Screen Mode with 5840x1080.
Can anyone tell me,what i must write into the 3Cameras.lua to use the 3Screen Mode?
My Monitors are 3 Samsung 40" with 1920x1080 and i use Nvidia Sourround at 5840x1080 with my GeFore Titan.
Can anyone fill out this,with my Informations?
_ = function(p) return p; end;
name = _('3 Screen');
Description = 'Configuration with 3 identical monitors each with its own camera'
Viewports =
{
Left =
{
x = 0;
y = 0;
width = screen.width / 3;
height = screen.height;
viewDx = -1;
viewDy = 0;
aspect = screen.aspect / 3;
},
Center =
{
x = screen.width / 3;
y = 0;
width = screen.width / 3;
height = screen.height;
viewDx = 0;
viewDy = 0;
aspect = screen.aspect / 3;
},
Right =
{
x = screen.width * 2 / 3;
y = 0;
width = screen.width / 3;
height = screen.height;
viewDx = 1;
viewDy = 0;
aspect = screen.aspect / 3;
}
}
UIMainView = Viewports.Center