Jump to content

Recommended Posts

Posted

Hello,

I need help to export MFD's to the right screen.

I have 3 monitors with same resolution, Im having hard times with the LUA file.

My main screen is 2. I want my MFD's on right screen, What values should I enter?

Main display shows sometimes on right display and sometimes on left And I dont see the MFD's. What am I missing?

 

_ = function(p) return p; end;

name = _('MyFirstSetup');

Description = 'Left MFCD on the left monitor,Right MFCD on the right and camera on the center'

Viewports =

{

Center =

{

x = 1920;

y = 0;

width = 1920;

height = 1080;

viewDx = 0;

viewDy = 0;

aspect = 1.777777778;

}

}

 

LEFT_MFCD =

{

x = 2432;

y = 128;

width = 512;

height = 512;

}

 

RIGHT_MFCD =

{

x = 2944;

y = 128;

width = 512;

height = 512;

}

 

UIMainView = Viewports.Center

GU_MAIN_VIEWPORT = Viewports.Center

 

thanks

2059922907_Annotation2020-04-27212221.jpg.3feb6a60db5771209eb7527b2ec3afd7.jpg

526251890_Annotation2020-04-272122212.jpg.0a16d4b1b90062712bc8ce5b510b34f5.jpg

Posted

Three monitors that are 1920x1080 all in a row have a max width of 5760

 

You DCS resolution in-game should be 5760x1080

 

Monitor 2 starts drawing at x=1920 (where you have your central viewport x/y coords)

 

Monitor 3 starts drawing at x=3840

 

LMFD starts at x=4352 (using your numbers.....1920+2432....you didn't include monitor 1 in your math)

 

RMFD starts at x=4864 (using your numbers.....1920+2944....you didn't include monitor 1 in your math)

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...