Jump to content

cockpit, main menu, settings, Everything is all over to the left (three monitors in game)


Recommended Posts

Posted

sorry new to all this, I use all three monitors for dcs, when I go into my control setting, main menu and the cockpit are 20 - 30 mm on to the left side of the setting page, is in my left side monitor, have tried the lua file above but not sure what happen, I think I did something wrong and other modes running, anyway I end up with three cockpit, so I reinstalled dcs, this fix all I did but not my original problem of  when I go into my control setting, main menu and the cockpit are 20 - 30null mm on to the left side of the setting page, is in my left side monitor.

image.jpeg

Posted
sorry new to all this, I use all three monitors for dcs, when I go into my control setting, main menu and the cockpit are 20 - 30 mm on to the left side of the setting page, is in my left side monitor, have tried the lua file above but not sure what happen, I think I did something wrong and other modes running, anyway I end up with three cockpit, so I reinstalled dcs, this fix all I did but not my original problem of  when I go into my control setting, main menu and the cockpit are 20 - 30null mm on to the left side of the setting page, is in my left side monitor.
image.thumb.jpeg.7faf36756c96d450978dd44b0899bca7.jpeg
Never re-install DCS. It's a waste of time. Perform a repair instead.
Search the forum for jonsky and multi screen setup. You probably need to adjust some files and input your total resolution. Helios could actually do that for you.

Sent from my SM-A536B using Tapatalk

Posted (edited)
On 7/12/2024 at 8:50 PM, MAXsenna said:

Never re-install DCS. It's a waste of time. Perform a repair instead.
Search the forum for jonsky and multi screen setup. You probably need to adjust some files and input your total resolution. Helios could actually do that for you. emoji1303.png

Sent from my SM-A536B using Tapatalk
 

Hi all

Update I have fix the problem. it turns out the default lua was trying to divide the hole of the x in to 1/3 for each monitor but one is smaller, but every time I put in all the numerical amounts in it would not work. I ended with this, it looks confusing, but it works.

20240713_215147[1].jpg

20240713_215316[1].jpg

image.png

_  = function(p) return p; end;
name = _('LMFCD+Camera+RMFCD3');
Description = 'Configuration with 2 identical monitors + 1 different each with its own camera'
Viewports = 
{
     Left = 
     {
          x = 0;
          y = 0;
          width = screen.width / 2.875;
          height = screen.height;
          viewDx = -1;
          viewDy = 0;
          aspect = screen.aspect / 3;
     },

     Center = 
     {
          x = screen.width / 2.875;
          y = 0;
          width = screen.width / 2.875;
          height = screen.height;
          viewDx = 0;
          viewDy = 0;
          aspect = screen.aspect / 3;
     },

     Right = 
     {
          x = screen.width * 2 / 2.875;
          y = 0;
          width = screen.width / 3.2857;
          height = screen.height;
          viewDx = 1;
          viewDy = 0;
          aspect = screen.aspect / 3;
     }
}

LEFT_MFCD =
{
     x = screen.width /4;
     y = 500;
     width = 500;
     height = 500;
}

RIGHT_MFCD =
{
     x = screen.width *(3 / 4.2);
     y = 500;
     width = 500;
     height = 500;
}


UIMainView = Viewports.Center
GU_MAIN_VIEWPORT = Viewports.Center

Edited by Davi
  • Like 1
  • Recently Browsing   0 members

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