Jump to content

Recommended Posts

Posted (edited)

Just wondering if there were any changes to the Monitor Setup .lua file specs. I had a file that worked with DCS A-10C and it partially works with DCS world. Main display and MFDs work as expected but the export of the RWS, Clock, UHF Radio and Jammer panel (can't remember the official designation of that one) no longer function.

 

I can post details but I'd like to know if the specs changed and if I am posting in the right sub-forum; not sure which one relates to the monitor setup.

 

Fridge

 

update: here is my older monitor .lua file

-- Profile for 2 1920x1080 monitors in a vertical orientation with 
-- the touch screen on the bottom and the MFCDs in the bottom
-- left and right. DCS:A-10C shows resolution of 3840x1080
-- hence the screen.width/2 math to keep it 'sane'; meaning that
-- screen.width/2 + 200 means 200 left from the top left of the second 
-- screen;
--
_  = function(p) return p; end;
name = _('dwpenney Helios-Loz-3840x1080');
Description = '3820 x 1080: Camera on left (1920x1080), MFDs and Helios on right (1920x1080)'
Viewports =
{
    Center =
    {
         x = 0;
         y = 0;
         width = screen.width/2;
         height = screen.height;
         viewDx = 0;
         viewDy = 0;
         --aspect = screen.aspect;
         aspect = 1.78;
    }
}

LEFT_MFCD =
{
    x = screen.width/2+67;
    y = 120;
    width = 445;
    height = 445;
}

RIGHT_MFCD =
{
    x = screen.width/2+1406;
    y = 120;
    width = 445;
    height = 445;
}

CMSC_SCREEN =
{
x = screen.width/2+866;
y = 141;
width = 210;
height = 49;
}

CMSP_SCREEN =
{
x = screen.width/2+1075;
y = 190;
width = 270;
height = 70;
}

RWR_SCREEN =
{
x = screen.width/2+600;
y = 161;
width = 175;
height = 175;
}

DIGIT_CLOCK =
{
x = screen.width/2+480;
y = 830;
width = 122;
height = 122;
}

UHF_FREQUENCY_STATUS =
{
x = screen.width/2+635;
y = 565;
width = 120;
height = 30;
}

UHF_PRESET_CHANNEL =
{
x = screen.width/2+748;
y = 477;
width = 30;
height = 30;
}

UHF_REPEATER =
{
x = screen.width/2+656;
y = 695;
width = 110;
height = 30;
}

Gui =
{
--x = 1920;
x = 0;
y = 0;
--width = 1920;
width = 3840;
height = 1080;
}

--UIMainView = Viewports.Center
UIMainView = Gui

Edited by dwpenney

Fridge

----------

Things which do you no good in aviation:

1) Altitude above you;

2) Runway behind you;

3) Fuel in the truck;

4) The airspeed you don't have.

  • Recently Browsing   0 members

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