Jump to content

HUD Only View


trujillostm

Recommended Posts

How to configure to see Shkval + Abris maximized on screen in HUD Only View, and deactivated in the cockpit for better FPS.

 

1. ViewportHandling.lua

C:\Program Files\Eagle Dynamics\DCS Black Shark 2\Scripts\Aircrafts\_Common\Cockpit\

 

A. Changing the default value of 0.5

 

-- positioning on screen in HUD Only view

function update_screenspace_diplacement(aspect,is_left,zoom_value)

local aspect = aspect or 1

local zoom_value = zoom_value or 0

local default_width = 0.78 * LockOn_Options.screen.height + (64 * zoom_value)

[...]

if default_width > 0.78 * LockOn_Options.screen.width then

default_width = 0.78 * LockOn_Options.screen.width

end

[...]

 

B. Eliminating render_purpose.GENERAL

 

[...]

purposes = {render_purpose.HUD_ONLY_VIEW,

render_purpose.SCREENSPACE_OUTSIDE_COCKPIT,

render_purpose.SCREENSPACE_INSIDE_COCKPIT}

 

2. ABRIS_init.lua

C:\Program Files\Eagle Dynamics\DCS Black Shark 2\Scripts\Aircrafts\Ka-50\Cockpit\ABRIS\

 

Eliminating render_purpose.GENERAL

[...]

purposes = {render_purpose.HUD_ONLY_VIEW}

 

3. SHKVAL_init.lua

C:\Program Files\Eagle Dynamics\DCS Black Shark 2\Scripts\Aircrafts\Ka-50\Cockpit\SHKVAL

 

Eliminating render_purpose.GENERAL

[...]

if LockOn_Options.flight.easy_radar then

purposes = {render_purpose.HUD_ONLY_VIEW,

render_purpose.SCREENSPACE_OUTSIDE_COCKPIT}

else

purposes = {render_purpose.HUD_ONLY_VIEW}

end

Link to comment
Share on other sites

Advantages:

We do not need another monitor.

Not increase the resolution size to cover that second monitor.

We increase the fps to eliminate rendering the screens in the cockpit.

We increased the default size of these screens in the HUD Only view View.

 

Screenshots in 1680x1050 monitor.

BS2_HUDonlyView_cockpit.thumb.png.ca39c05f1f1cf18b28f339ceaa13a299.png

1715535529_BS2_HUDonlyView_shkvalabris.thumb.png.07c44f8c282fecfdcea500619e0fedd3.png


Edited by trujillostm
Link to comment
Share on other sites

  • 8 months later...
  • Recently Browsing   0 members

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