I have a full HD monitor as my main screen and a smaller 1280x1024 to it's right. I would like to utilize the second screen for the sim by extending the view and keeping the main monitor focused on the cockpit as it is defautly, and just focus the side screen to the right of it. I managed to create a custom multiscreen profile that keeps the main screen intact and extends the view to the right, but it's not very smooth and somewhat distorted or angled in a certain direction, easily seen as not matching on the screenshot below. I tried to change the aspect ratio of the secondary screen but any other than 1920 / 1080 gives me visible offsets.
Here is my current config that I achieved this result with:
_ = function(p) return p; end;
name = _('Extended to right');
Description = 'Custom dual screen configuration'
Viewports =
{
Center =
{
x = 0;
y = 0;
width = 1920;
height = screen.height;
viewDx = 0;
viewDy = 0;
aspect = 1920 / 1080;
},
Right =
{
x = 1920;
y = 0;
width = 1280;
height = screen.height;
viewDx = 1;
viewDy = 0;
aspect = 1920 / 1080;
}
}
UIMainView = Viewports.CenterI want to keep the main screen as it is right now and just make the transition to the second one smooth, just as it is if I use one of the default config and set my resolution in the settings to 3200x1080. Is that possible and what edits do I need to make?
UPDATE: Tried changing the width of the right screen to 1920, at a cost of 10 - 15 FPS I was able to reduce the distortion, but it's still not smooth, as the lines still keep converging towards the middle of the screen, like on the screenshot above.