Jump to content

Section8

Members
  • Posts

    7
  • Joined

  • Last visited

About Section8

  • Birthday November 12

Personal Information

  • Flight Simulators
    DCS
  • Location
    SG
  • Interests
    Gaming
  1. That's great news! Glad to hear those crash reports aren't for nothing. Can't wait to get back to flying the hog again!
  2. I am also seeing crashes to desktop flying my A-10CII in VR doing seemingly random things. I've tried repairing the install as well as deleting the contents of the fxo and metashaders2 folders to no avail. dcs.log-20221115-133402.zipdcs.log-20221113-141703.zipdcs.log-20221114-084104.zipdcs.log-20221114-133531.zip
  3. I see thanks! I suppose I will have to offset the heights in my config with the added pixels then. This points me in the right direction. I had a feeling, but wasn't sure it was the real proper way to do it. Thanks very much!
  4. Hey jonsky, thanks for the reply! They are offset in windows display settings on purpose as the monitor stands are different heights. I was wondering if there was any way to keep the monitor configuration the same in the windows settings and adjust the DCS config so it would work properly. Any ideas?
  5. Hi all, would appreciate a hand trying to fix this silly issue. I've upgraded my setup and now have two 1440p monitors side by side that I'd like to use for DCS. The only thing is the right monitor that I am exporting my MFCDs, etc. to is slightly offset to adjust for the different monitor heights. DCS interprets this weirdly and instead of filling up my second display entirely it just spans the "main" screen across and does not adjust for the position difference in the windows control panel. This leaves a bar on the bottom of the secondary display with my desktop background (ignore the #3 display as its not used) and creates a weird offset. Any idea how to resolve this?
  6. Update to this! I gave up on the original code and decided to use some of the auto-adjusting code. This worked out perfectly for the MFDs but I am unable to get the DED to show up. Do I have the right component name? Is there a way to check what the variable name is? Code below: _ = function(p) return p; end; name = _('Custom'); Description = 'Camera on primary display and Left MFCD on secondary' if displays and #displays > 1 then primary = { x = displays[1].x - screen.x, y = displays[1].y - screen.y, width = displays[1].width, height = displays[1].height, aspect = displays[1].width/displays[1].height; viewDx = 0; viewDy = 0; } secondary = { x = displays[2].x - screen.x, y = displays[2].y - screen.y, width = displays[2].width / 2, height = displays[2].height / 2, } RMFCD = { x = displays[2].x + displays[2].width / 2, y = displays[2].y - screen.y, width = displays[2].width / 2, height = displays[2].height / 2, } F16_DED = { x = displays[2].x - screen.x, y = displays[2].y + displays[2].height /2, width = displays[2].width / 2, height = displays[2].height / 2, } else primary = { x = screen.width / 2; y = 0; width = screen.width / 2; height = screen.height; viewDx = 0; viewDy = 0; aspect = screen.aspect / 2; } secondary = { x = 0; y = 0; width = screen.width / 4; height = screen.height / 2 ; } RMFCD = { x = screen.width / 4 * 3; y = 0; width = screen.width / 4; height = screen.height / 2 ; } F16_DED = { x = 0; y = screen.height / 2; width = screen.width / 4; height = screen.height / 2 ; } end UIMainView = primary GU_MAIN_VIEWPORT = primary LEFT_MFCD = secondary RIGHT_MFCD = RMFCD F_16C_DED_ = F16_DED Viewports = {UIMainView} EDIT: Solved it! Thread here by adding if not USE_DED then --ViewportHandling dofile(LockOn_Options.common_script_path.."ViewportHandling.lua") update_screenspace_diplacement(1, true, 0) try_find_assigned_viewport("F16_DED") end at the end of the DED_init.lua (at "...\Mods\aircraft\F-16C\Cockpit\Scripts\Displays\DED\indicator"). Thanks to Devrim!
  7. Hi all, could use some help here trying to sort out this setup. I've got one 1440p monitor (2560 x 1440) and a 1080p monitor to the right (1920 x 1080) here is my LUA (I just modified an already included one): _ = function(p) return p; end; name = _('Camera + LMFCD(on right side)'); Description = 'MFDs on the right and camera on the center' Viewports = { Center = { x = 0; y = 0; width = 2560; height = 1440; viewDx = 0; viewDy = 0; aspect = 2560/1440; } LEFT_MFCD = {x=2570, y=400, width=500, height=500} RIGHT_MFCD = {x=2570, y=900, width=500, height=500} F_16C_DED_ = {x=3070, y=400, width=500, height=300} F_16C_EHSI_ = {x=3070, y=900, width=500, height=500} } UIMainView = Viewports.Center LEFT_MFCD = Viewports.LEFT_MFCD RIGHT_MFCD = Viewports.RIGHT_MFCD Here are my settings: And this is the unfortunate result: few questions: 1) why is the MFD so damn big O_o shouldn't it just be 500x500 px? 2) why aren't the other components showing up? 3) why is the main camera squished to the left and the MFD invading the main screen? Any help would be greatly appreciated!
×
×
  • Create New...