Hello,
So i'm new to dcs trying it out for a few days now, i use the nvidia surround for the tripple monitor only that doesnt look that good on the left and right screen so i thougt lets try the in game settings for triple monitor...
changed everything in the lua file to the specs i have...
the issue i have is that the game starts on the left screen and all i get is a black screen...
also i have full screen disabled.
This is the lua script:
_ = function(p) return p; end;
name = _('3 Monitors');
Description = 'Configuration with 3 identical monitors each with its own camera'
Viewports =
{
Left =
{
x = 0;
y = 0;
width = 1920;
height = 1080;
viewDx = -1;
viewDy = 0;
aspect = 1920/1080;
},
Center =
{
x = 1920;
y = 0;
width = 1920;
height = 1080;
viewDx = 0;
viewDy = 0;
aspect = 1920/1080;
},
Right =
{
x = 3840;
y = 0;
width = 1920;
height = 1080;
viewDx = 1;
viewDy = 0;
aspect = 1920/1080;
}
}
UIMainView = Viewports.Center
GU_MAIN_VIEWPORT = Viewports.Center
hope someone can help me out! Thanks in advance.