firebird80 Posted February 2, 2024 Posted February 2, 2024 (edited) 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 Edited February 3, 2024 by firebird80 correction of error
Solution MadKreator Posted February 2, 2024 Solution Posted February 2, 2024 (edited) Your monitor 5 should be x = 2688, no? [5] = { x = 1920, y = 1600, width = 768, height = 1024 }, Edited February 2, 2024 by MadKreator Intel i7 13700k, ASUS rog strix z790A, 64gigs G.Skill Trident DDR5 @6400Mhz, Nvidia RTX 4080FE, 4TB, 2x 2TB, 1TB Samsung NVME, 1TB Samsung SSD, Corsair RM1000x, Corsair Titan 360 X AIO cooler, Lian Li LanCool 2, VKB Gunfighter Ultimate, VKB Custom STECS , MFG Crosswinds, Moza FFB, Virpil Collective, Track IR5, 48” LG UltraGear OLED & HP 24” touchscreen for Helios,49” Samsung Ultrawide, Streamdeck XL, Corsair Virtuoso RGB Headphones
firebird80 Posted February 2, 2024 Author Posted February 2, 2024 (edited) vor 3 Stunden schrieb MadKreator: Your monitor 5 should be x = 2688, no? [5] = { x = 1920, y = 1600, width = 768, height = 1024 }, 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. Edited February 2, 2024 by firebird80 1
Recommended Posts