Jump to content

firebird80

Members
  • Posts

    5
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. The answer was short: not supported
  2. I contacted WinWing support. It’s a problem with all F-16 mods.
  3. Hi, yes you are correct. Copy paste error from display 4. But it’s working even with this error. I had to add the display section, because I run the center display as main screen in windows. Without the display section it wasn’t working as expected.
  4. Attached my solution: 1920x1200 + 2560x1600 +1920x1200 2* 768x1024 Screen 2 is the main screen in windows. _ = function(p) return p; end; name = _('1920_2560_1920'); Description = 'Configuration with 3 different monitors each with its own camera' displays = { [1] = { x = 0, y = 0, width = 1920, height = 1200 }, [2] = { x = 1920, y = 0, width = 2560, height = 1600 }, [3] = { x = 4480, y = 0, width = 1920, height = 1200 }, [4] = { x = 1920, y = 1600, width = 768, height = 1024 }, [5] = { x = 2688, y = 1600, width = 768, height = 1024 }, } Viewports = { Left = { x = 0; y = 0; width = 1920; height = 1200; viewDx = -1; viewDy = 0; aspect = 1920/1200; }, Center = { x = 1920; y = 0; width = 2560; height = 1600; viewDx = 0; viewDy = 0; aspect = 2560/1600; }, Right = { x = 4480; y = 0; width = 1920; height = 1200; viewDx = 1; viewDy = 0; aspect = 1920/1200; } } LEFT_MFCD = { x = 1925; y = 1870; width = 752; height = 762; } RIGHT_MFCD = { x = 2693; y = 1870; width = 752; height = 762; } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center
  5. Hi after some try and error I got it running with 3 Monitors. And no need to have the left one in Windows as main screen. I want to share my seeting: _ = function(p) return p; end; name = _('1920_2560_1920'); Description = 'Configuration with 3 different monitors each with its own camera' displays = { [1] = { x = 0, y = 0, width = 1920, height = 1200 }, [2] = { x = 1920, y = 0, width = 2560, height = 1600 }, [3] = { x = 4480, y = 0, width = 1920, height = 1200 }, } Viewports = { Left = { x = 0; y = 0; width = 1920; height = 1200; viewDx = -1; viewDy = 0; aspect = 1920/1200; }, Center = { x = 1920; y = 0; width = 2560; height = 1600; viewDx = 0; viewDy = 0; aspect = 2560/1600; }, Right = { x = 4480; y = 0; width = 1920; height = 1200; viewDx = 1; viewDy = 0; aspect = 1920/1200; } } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center
×
×
  • Create New...