Jump to content

Recommended Posts

Posted

I was modified the LMFCD+Camera+RMFCD.lua config file to resize the MFD screens to 400x400 and relocate them just off the lower cockpit. I also configured is so that I have the 3 screen output view. Works great but the MFD screens are transparent with no background. This configuration works great in the A10C, the MFD displays the colored map and black background when required. This is what I entered in the LMFCD+Camera+RMFCD.lua file.

 

 

_ = function(p) return p; end;

name = _('LMFCD+Camera+RMFCD');

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

Viewports =

{

Left =

{

x = 0;

y = 0;

width = screen.width / 3;

height = screen.height;

viewDx = -1;

viewDy = 0;

aspect = screen.aspect / 3;

},

 

Center =

{

x = screen.width / 3;

y = 0;

width = screen.width / 3;

height = screen.height;

viewDx = 0;

viewDy = 0;

aspect = screen.aspect / 3;

},

 

Right =

{

x = screen.width * 2 / 3;

y = 0;

width = screen.width / 3;

height = screen.height;

viewDx = 1;

viewDy = 0;

aspect = screen.aspect / 3;

}

}

 

LEFT_MFCD =

{

x = 1520;

y = 800;

width = 400;

height = 400;

}

 

RIGHT_MFCD =

{

x = 3840;

y = 800;

width = 400;

height = 400;

}

 

UIMainView = Viewports.Center

GU_MAIN_VIEWPORT = Viewports.Center

  • Recently Browsing   0 members

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