_ = function(p) return p; end; name = _('3 Screen+MFDs'); Description = 'Configuration with 3 identical monitors each with its own camera' Viewports = { Left = { x = 0; y = 0; width = screen.width / 3; height = screen.height; viewDx = -1; viewDy = 0; aspect = screen.aspect / 3; }, Center = { x = screen.width / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 3; }, Right = { x = screen.width * 2 / 3; y = 0; width = screen.width / 3; height = screen.height; viewDx = 1; viewDy = 0; aspect = screen.aspect / 3; } } LEFT_MFCD = { x = 3840; y = 0; width = 640; height = 540; } RIGHT_MFCD = { x = 3840; y = 540; width = 640; height = 540; } UIMainView = Viewports.Center