Jump to content

Recommended Posts

Posted

Right then,

 

right_monitor.png

 

want to swap my 2nd monitor (which is on the right of main camera screen) but for the life of me canr get it to work on the left.

 

What are the starting x,y, co-ords for a monitor on the left hand side?

 

Here is my config for the 'right monitor', have a look and tell me what i need to change.

 

Ta.

_  = function(p) return p; end;
name = _('Shkval+Camera+ABRIS');
Description = 'Shkval on the left monitor,ABRIS on the right and camera on the center';
Viewports =
{
    Center =
    {
         x = 0;
         y = 0;
         width = 1680;
         height = 1050;
         viewDx = 0;
         viewDy = 0;
         aspect = 1.6;
    }
}
Shkval =
{
    x = 1680;
    y = 0;
    width = 640;
    height = 1024;
}
ABRIS =
{
    x = 2320;
    y = 0;
    width = 640;
    height = 1024;
}

_________________________________________

Posted

If you make your secondary monitor sit on the left of your main monitor you have the make the second monitor primary in windows for it to work correctly.

Primary monitor always has to be on the far left.

 

After that your lua will be like

 

Center =

{

x = 1680;

y = 0;

width = 1680;

height = 1050;

viewDx = 0;

viewDy = 0;

aspect = 1.6;

}

}

Shkval =

{

x = 0;

y = 0;

width = 640;

height = 1024;

}

ABRIS =

{

x = 640;

y = 0;

width = 640;

height = 1024;

Posted

Ah! Making the left monitor the 'primary'. Didn't know about that.

 

Will try that out in a while.

 

Thank you mate for the help.

_________________________________________

  • Recently Browsing   0 members

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