skypickle Posted March 18, 2023 Posted March 18, 2023 I have a specific lua to define two mfcds on a second screen below my main monitor: _ = function(p) return p; end; name = _('Camera + 2 MFCDsBelow'); Description = '2 MFCDs on the right and camera on the top' Viewports = { Center = { x = 0; y = 0; width = 3840; height = 2160; viewDx = 0; viewDy = 0; aspect = 3840 / 2160; } } function reconfigure_for_unit(unit_type) --unit type is string with unit name if unit_type == "AH-64D_BLK_II" then LEFT_MFCD = { x = 0; y = 2160+120; width = 768; height = 768; } RIGHT_MFCD = { x = 768; y = 2160+120; width = 768; height = 768; } else LEFT_MFCD = { x = 10; y = 2160+140; width = 663; height = 663; } RIGHT_MFCD = { x = 768+10; y = 2160+140; width = 663; height = 663; } end end GUI = { x = 0; y = 0; width = 3840; height = 2160; } UIMainView = GUI GU_MAIN_VIEWPORT = Viewports.Center My screen res is set to 3840x (1600+1024) since my main screen is 3840x2160 and I have a 1920 x 1024 monitor below it. It works well for the Apache and all aircraft that have MFDs. But when am in the Huey, I cannot see the ROE of my gunners and copilot - whether they are wep free, safe etc. Is there a way to specify the screen res in the lua? Alternatively, can I specify the location of the ROE display? 4930K @ 4.5, 32g ram, TitanPascal
skypickle Posted March 18, 2023 Author Posted March 18, 2023 actually i got the answer to the second ques here: and forgot it 4930K @ 4.5, 32g ram, TitanPascal
Recommended Posts