hreich Posted February 17 Posted February 17 What are best monitor.lua resolution coordinates to use with each MFD? I have tablet of 1920*1080 res, so then when i place two MFD cougars on top my tablet, which resolution is best for MFD screens? 800*800 pr some other, so it's best fit for MFD Cougars? [sIGPIC][/sIGPIC] Pilot from Croatia
Smashy Posted February 17 Posted February 17 The specific x/y positions are going to depend on the resolution of your primary monitor and how you arrange your displays in Windows. When I had a 2560*1440 main monitor and a 1920*1080 secondary monitor, I would arrange them horizontally with the top edges even. With the Cougar frames, the height/width of the exported game MFD displays should be 790*790. Here's the config I used for that, you may need to tweak values based on your configuration but it should be a good start. _ = function(p) return p; end; name = _('custom - 4480x1440, 2 monitors, 2 MFDs'); Description = 'dual monitors: main, 2 MFDs' Viewports = { Center = { x = 0; y = 0; width = 2560; height = screen.height; viewDx = 0; viewDy = 0; aspect = 2560 / 1440; } } LEFT_MFCD = { x = 2587; y = 66; width = 790; height = 790; } RIGHT_MFCD = { x = 3654; y = 66; width = 790; height = 790; } UIMainView = Viewports.Center GU_MAIN_VIEWPORT = Viewports.Center
Recommended Posts