Jump to content

Recommended Posts

Posted

So I had all this configured when I had a 2560x1080 monitor. See below;

 

_ = function(p) return p; end;

name = _('Dave');

Description = 'Left and Right MFCD on the right monitor'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 2560;

height = 1080;

viewDx = 0;

viewDy = 0;

aspect = 2560 / 1080

}

}

 

LEFT_MFCD =

{

x = 2560;

y = -028;

width = 600;

height = 600;

}

 

RIGHT_MFCD =

{

x = 3850;

y = -028;

width = 600;

height = 600;

}

 

 

UIMainView = Viewports.Center

 

 

But now I have a 38 in monitor at 3840x1600 and I am having one hell of time re configuring it this to compensate for the new size. I have totally brain dumped on how to do it. Can someone get me in the ball park so it will jar my memory?

[sigpic][/sigpic]

US Air Force Retired, 1C371

No rank or title will ever be as important as the unit patch you wear.

Posted

Ok I remembered. Here is the end result and a consumer tip, set your in game resolution to the total width size. so I my case the total was 5760x1600

 

_ = function(p) return p; end;

name = _('Dave');

Description = 'Left and Right MFCD on the right monitor'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 3840;

height = 1600;

viewDx = 0;

viewDy = 0;

aspect = 3840 / 1600

}

}

 

LEFT_MFCD =

{

x = 3840;

y = 550;

width = 595;

height = 595;

}

 

RIGHT_MFCD =

{

x = 5150;

y = 550;

width = 595;

height = 595;

}

 

 

UIMainView = Viewports.Center

[sigpic][/sigpic]

US Air Force Retired, 1C371

No rank or title will ever be as important as the unit patch you wear.

Posted

If you want to export your F-14 displays.

 

_ = function(p) return p; end;

name = _('F-14PilotDave');

Description = 'Left and Right MFCD on the right monitor'

Viewports =

{

Center =

{

x = 0;

y = 0;

width = 3840;

height = 1600;

viewDx = 0;

viewDy = 0;

aspect = 3840 / 1600

}

}

 

F14_VDI =

{

x = 3840;

y = 550;

width = 595;

height = 595;

}

 

F14_HSD =

{

x = 5150;

y = 550;

width = 595;

height = 595;

}

 

F14_RWR =

{

x = 4525;

y = 550;

width = 595;

height = 595;

}

 

F14_JESTER_MENU =

{

x = 0;

y = 0;

width = 3840;

height = 1600;

}

UIMainView = Viewports.Center

[sigpic][/sigpic]

US Air Force Retired, 1C371

No rank or title will ever be as important as the unit patch you wear.

  • Recently Browsing   0 members

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