Jump to content

Recommended Posts

Posted

Hi, it's my first post here, i'm getting fool with 2.5 :(

 

I have 2 monitors, 1920x1080 each, and i used to use right one for main and left one for abris and Skhval (or A-10 mfds). I have no problem with 2.2 version.. it works. But i can't work with this configuration in 2.5 version... What's wrong? now monitor 1 is at left side and 2 monitor is at right side, and it must be upside down.

 

can anybody help me? thanks so much

 

 

this is the file :

 

_ = function(p) return p; end;

name = _('KA-50 o A-10C');

Description = 'Camera on primary display and Abris + Skhval in secondray'

 

if displays and #displays > 1 then

Cabina =

{

x = displays[1].x - screen.x,

y = displays[1].y - screen.y,

width = displays[1].width,

height = displays[1].height,

aspect = displays[1].width/displays[1].height;

viewDx = 0;

viewDy = 0;

}

 

Abris =

{

x = displays[2].x - screen.x,

y = displays[2].y,

width = displays[2].width / 2,

height = displays[2].height,

viewDx = 0;

viewDy = 0;

}

 

 

Shkval =

{

x = displays[2].x - screen.x + 960,

y = displays[2].y,

width = displays[2].width / 2,

height = displays[2].height,

viewDx = 0;

viewDy = 0;

}

 

end

 

UIMainView = Cabina

RIGHT_MFCD = Abris

LEFT_MFCD = Shkval

Viewports = {UIMainView}

Posted

Have you set the option "Full screen" to on in the options menu in DCS?

[sIGPIC][/sIGPIC]

 

Commodore 64 | MOS6510 | VIC-II | SID6581 | DD 1541 | KCS Power Cartridge | 64Kb | 32Kb external | Arcade Turbo

Posted (edited)

Try using direct numbers instead of variables. With 2 similar resolutions monitor is easy to calculate, and you don't change your monitors everyday so...

 


_  = function(p) return p; end;
name = _('2_monitors_KA50');
Description = 'configuracion para dos monitores'

--MAIN GAME VIEWPORT TOTAL SIZE AN ASPECT 
Viewports =
{
    Center =
    {
         x = 1921;
         y = 0;
         width  = 1920;
         height = 1080;
         viewDx = 0;
         viewDy = 0;
         aspect = 16/9;
    }
}

--SHKIVAL
LEFT_MFCD =
{
    x = 1;
    y = 0;
    width = 960;
    height = 700;
}



--ABRIS
RIGHT_MFCD =
{
    x = 961;
    y = 0;
    width = 960;
    height = 1080;
}



UIMainView = Viewports.Center


 

Thats code if for the KA50.

 

For A10C create a new one and change the width and height of the 2 MFCDs, for a square size, for example width=960 and height = 960

 

 

And don't forget to set your monitor resolution to 3840x1080 in the options panel in DCS

 

..

Edited by Capt Zeen
  • Recently Browsing   0 members

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