unlikely_spider Posted June 11, 2020 Posted June 11, 2020 Hello. Can someone point me to where I can have separate image quality settings that DCS launches with depending on if I'm in VR or using my monitor? Not sure if that's possible, and didn't immediately find anything using a quick search here. Modules: Wright Flyer, Spruce Goose, Voyager 1
FoxTwo Posted June 11, 2020 Posted June 11, 2020 There's this: https://forums.eagle.ru/showthread.php?t=160053 But I just use a powershell script with independent options files. #popup $wshell = New-Object -ComObject Wscript.Shell $answer = $wshell.Popup("Yes = Enable VR, No = Disable VR, Cancel = Quit",0,"DCS Launch Script",32+3) #program paths $dcs_exe = "$env:ProgramFiles\Eagle Dynamics\DCS World OpenBeta\bin\DCS_updater.exe" #option paths $options = "$env:userprofile\Saved Games\DCS.openbeta\Config\options.lua" $vr_options = "$env:userprofile\Saved Games\DCS.openbeta\Config\vr-options.lua" $novr_options = "$env:userprofile\Saved Games\DCS.openbeta\Config\novr-options.lua" #Cleanup multiplayer tracks older than 7 days Get-ChildItem "$env:userprofile\Saved Games\DCS.openbeta\Tracks\Multiplayer\" | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-7) } | Remove-Item #enable vr startup, menu choice Yes if($answer -eq 6){ if (Test-Path $vr_options){#verify that VR options file exists Copy-Item $vr_options -Destination $options #copy VR options to game options } Start-Process $dcs_exe -NoNewWindow -Wait #start DCS Copy-Item $options -Destination $vr_options #save any changes to VR options } #disable vr startup, menu choice No elseif($answer -eq 7){ if (Test-Path $novr_options){#verify that no-VR options file exists Copy-Item $novr_options -Destination $options #copy no-VR options to game options } Start-Process $dcs_exe -NoNewWindow -Wait #start DCS Copy-Item $options -Destination $novr_options #save any changes to no-VR options } #menu choice Cancel else{ exit }
unlikely_spider Posted June 11, 2020 Author Posted June 11, 2020 Yes, both of these help. Thanks much. Modules: Wright Flyer, Spruce Goose, Voyager 1
SharpeXB Posted June 11, 2020 Posted June 11, 2020 You can also save custom graphics options now so I assume you could set one up for VR i9-14900KS | ASUS ROG MAXIMUS Z790 HERO | 64GB DDR5 5600MHz | iCUE H150i Liquid CPU Cooler | ASUS TUF GeForce RTX 4090 OC | Windows 11 Home | 2TB Samsung 980 PRO NVMe | Corsair RM1000x | LG 48GQ900-B 4K OLED Monitor | CH Fighterstick | Ch Pro Throttle | CH Pro Pedals | TrackIR 5
imacken Posted June 11, 2020 Posted June 11, 2020 You can also save custom graphics options now so I assume you could set one up for VR Doesn’t work well that option. For example, if you want to run a VR saved option, you need to start DCS, select the save option, then DCS has to restart and reload. Pretty painful. Skate’s utility is by far the best solution. Intel i7 12700K · MSI Gaming X Trio RTX 4090 · ASUS ROG STRIX Z690-A Wi-Fi · MSI 32" MPG321UR QD · Samsung 970 500Gb M.2 NVMe · 2 x Samsung 850 Evo 1Tb · 2Tb HDD · 32Gb Corsair Vengance 3000MHz DDR4 · Windows 11 · Thrustmaster TPR Pedals · Tobii Eye Tracker 5 · Thrustmaster F/A-18 Hornet Grip · Virpil MongoosT-50CM3 Base · Virpil Throttle MT-50 CM3 · Virpil Alpha Prime Grip · Virpil Control Panel 2 · Thrustmaster F-16 MFDs · HTC Vive Pro 2 · Total Controls Multifunction Button Box
unlikely_spider Posted June 13, 2020 Author Posted June 13, 2020 Is this where I select the different presets? What happens then - do I start DCS with a given preset, then change the settings as needed, then it will save just for that preset? Modules: Wright Flyer, Spruce Goose, Voyager 1
imacken Posted June 13, 2020 Posted June 13, 2020 Exactly that. Don’t use the ones marked with ‘default’. Use the PRESET ones and call them something more meaningful. Intel i7 12700K · MSI Gaming X Trio RTX 4090 · ASUS ROG STRIX Z690-A Wi-Fi · MSI 32" MPG321UR QD · Samsung 970 500Gb M.2 NVMe · 2 x Samsung 850 Evo 1Tb · 2Tb HDD · 32Gb Corsair Vengance 3000MHz DDR4 · Windows 11 · Thrustmaster TPR Pedals · Tobii Eye Tracker 5 · Thrustmaster F/A-18 Hornet Grip · Virpil MongoosT-50CM3 Base · Virpil Throttle MT-50 CM3 · Virpil Alpha Prime Grip · Virpil Control Panel 2 · Thrustmaster F-16 MFDs · HTC Vive Pro 2 · Total Controls Multifunction Button Box
Recommended Posts