evening all
As the title suggests i'm looking for some help exporting the hornets MPCD.
I have managed to get the top left and right screens to work, however the MPCD wont move from my main monitor no matter what values i put in the x & y sections of the monitor .lua file.
Below is my monitor.lua file.
_ = function(p) return p; end;
name = _('1 Screen + 3 MFD on second screen');
Description = 'One monitor with 3 MFD on second screen configuration'
Viewports =
{
Center =
{
x = 0;
y = 0;
width = 1920;
height = 1080;
viewDx = 0;
viewDy = 0;
aspect = 1920/1080;
}
}
Gui =
{
x = 0;
y = 0;
width = 1920;
height = 1080;
}
LEFT_MFCD =
{
x = 1920 + 73;
y = 5;
width = 530;
height = 530;
}
RIGHT_MFCD =
{
x = 1920 + 676;
y = 5;
width = 530;
height = 530;
}
F18_AMPCD =
{
x = 1920 + 275;
y = 540;
width = 530;
height = 530;
}
UIMainView = Gui
Any help would be appreciated.