Apologies for the lack of info.
You create a .lua file in the /install directory/Config/MonitorSetup folder. For instance, make a "-Ice's 2MFCDs.lua" file. Then open it with Notepad++ and paste in the following lines:
_ = function(p) return p; end;
name = _('IceTest1 Monitor 2 MFCDs');
Description = '1 Monitor 2 MFCDs on the left and right bottom corners of the screen';
Viewports =
{
Center =
{
x = 0;
y = 0;
width = screen.width;
height = screen.height;
viewDx = 0;
viewDy = 0;
aspect = 1.777777777777778;
}
}
LEFT_MFCD =
{
x = -10;
y = screen.height - 390;
width = 400;
height = 400;
}
RIGHT_MFCD =
{
x = screen.width - 390;
y = screen.height - 390;
width = 400;
height = 400;
}
UIMainView = Viewports.Center
Then go in the game and select that view settings in the display options somewhere... go to Setup -> System, then select the config on the Monitors dropdown.
With this, you can make a few "setups" and switch between them as needed for testing, though you have to exit the current mission to access the setup screen again.
**NOTE** the above settings was done with a 1920x1080 res monitor. Might be a bit off when using a different res.