Jump to content

Recommended Posts

Posted

LAlt+F1 HUD View Only.

 

Is it possible - change position and decrease size of MFDs on screen.... like second picture ?

2065125644_LAltF1HUDOnlynormal.thumb.JPG.f47643e89c29479494fca0f65ccbeea4.JPG

1699070568_LAltF1HUDOnlysmal.thumb.JPG.df31e367d57a8ae02006044e785cf038.JPG

Окурок, выброшенный в урну, гораздо патриотичнее флажочка на автомобиле

TM Wartrhog Stick + VPC MongoosT-50Base + VPC TMW Extension 150mm / TM Wartrhog Throttle / CH Pro Pedals / 2-VPC Deck Mount / TrackIR5/

__________________________________________________________

i5-10600K Over to 5.0MHz/32GbDD4-3200/RTX4070/System-SSD1 DCS-SSD2/32" 2560x1440

Posted

Hi SMN, not sure how to reposition or resize the MFDs, but there is a way to remove them entirely if that works for you. Navigate to DCS World OpenBeta\Mods\aircraft\FA-18C\Cockpit\Scripts\Multipurpose_Display_Group\MDI_IP1556A\indicator and open MDI_init.lua. On line 4 it says

purposes = {render_purpose.GENERAL, render_purpose.HUD_ONLY_VIEW}

 

Change this to purposes = {render_purpose.GENERAL}

You will also have to do this for the AMPCD, the process is exactly the same, you just have to do it in the AMPCD folder under Multipurpose_Display_Group.

Posted (edited)
Hi SMN, not sure how to reposition or resize the MFDs, but there is a way to remove them entirely if that works for you.

How to remove all of them entirely - I know how..

I want keep 2 MFDs on screen :(

 

I would like - resize! Too big size MFDs on screen! Half of the screen...

Edited by SMN

Окурок, выброшенный в урну, гораздо патриотичнее флажочка на автомобиле

TM Wartrhog Stick + VPC MongoosT-50Base + VPC TMW Extension 150mm / TM Wartrhog Throttle / CH Pro Pedals / 2-VPC Deck Mount / TrackIR5/

__________________________________________________________

i5-10600K Over to 5.0MHz/32GbDD4-3200/RTX4070/System-SSD1 DCS-SSD2/32" 2560x1440

  • 1 year later...
Posted

Mods\aircraft\FA-18C\Cockpit\Scripts\Multipurpose_Display_Group\MDI_IP1556A\indicator\MDI_left_init.lua

Mods\aircraft\FA-18C\Cockpit\Scripts\Multipurpose_Display_Group\MDI_IP1556A\indicator\MDI_right_init.lua

 

Добавляем в файлы:

-- for test purposes  HUD only added
--ViewportHandling
dofile(LockOn_Options.common_script_path.."ViewportHandling.lua")
----------------------------------------------------------------------
local w = LockOn_Options.screen.width;
local h = LockOn_Options.screen.height;

if LockOn_Options.screen.oculus_rift then 
local ui_x,ui_y,ui_w,ui_h = get_UIMainView()
w = ui_w;
h = ui_h;
end	

local size  = [color="Red"][b]0.35[/b][/color] * h
if size > h then
  size = h
end
if size > 0.5 * w then
  size = 0.5 * w
end

dedicated_viewport 		  = {0,h - size,size,size}
dedicated_viewport_arcade =  dedicated_viewport
----------------------------------------------------------------------

0.35 - это и есть размер дисплея. По умолчанию там 0.5.

 

Для левого MDI - dedicated_viewport = {0,h - size,size,size}

Для правого MDI - dedicated_viewport = {w - size,h - size,size,size}

OQ2; 3080ti; X-56new

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...