trujillostm Posted December 7, 2011 Posted December 7, 2011 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
trujillostm Posted December 7, 2011 Author Posted December 7, 2011 (edited) 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. Edited December 7, 2011 by trujillostm
Megagoth1702 Posted December 8, 2011 Posted December 8, 2011 Great work man. I do not own BS2 and I don't have troubles using the stuff as it is in the A-10 but this is really good work man. :D [sIGPIC][/sIGPIC] System specs:2500k @ 4.6 GHz 8GB RAM HD7950 OC'd Win7 x64 Posting tracks to make your DCS better - attention bump incoming!
TRITATUTTO Posted August 21, 2012 Posted August 21, 2012 So you have 1 monitor and you switch between the 2 options ? How ? Thanks ! AMD Phenom II x4 945 3.0ghz 8G Ram Windows 7 64bit ATI Radeon HD 5700 1G
TRITATUTTO Posted August 25, 2012 Posted August 25, 2012 Hi guys , it work , no shkval and abris in cockpit but doesnt work in dcsw only in bs2 , i have to bring the foldere ka-50 cockpit in dcsw ? AMD Phenom II x4 945 3.0ghz 8G Ram Windows 7 64bit ATI Radeon HD 5700 1G
TRITATUTTO Posted August 25, 2012 Posted August 25, 2012 Because i use in the 2nd monitor Skval and abris in dcsw , so i want to eliminate them in cockpit for better fps AMD Phenom II x4 945 3.0ghz 8G Ram Windows 7 64bit ATI Radeon HD 5700 1G
TRITATUTTO Posted August 25, 2012 Posted August 25, 2012 I got it , i Eliminate render_purpose.GENERAL only in 1. ViewportHandling.lua in DCSw AMD Phenom II x4 945 3.0ghz 8G Ram Windows 7 64bit ATI Radeon HD 5700 1G
Recommended Posts