vadIL Posted April 27, 2020 Posted April 27, 2020 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
SVgamer72 Posted April 28, 2020 Posted April 28, 2020 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)
Recommended Posts