Add default settings for 360 screenshots

0.6.3
Miloslav Číž 7 years ago
parent 37aa761283
commit a142a67972

@ -1024,7 +1024,7 @@ namespace MWInput
try try
{ {
settingStr = Settings::Manager::getString("screenshot type","Video"); settingStr = Settings::Manager::getString("screenshot type","Video");
regularScreenshot = settingStr.size() == 0; regularScreenshot = settingStr.size() == 0 || settingStr.compare("regular") == 0;
} }
catch (std::runtime_error) catch (std::runtime_error)
{ {

@ -359,6 +359,10 @@ contrast = 1.0
# Video gamma setting. (>0.0). No effect in Linux. # Video gamma setting. (>0.0). No effect in Linux.
gamma = 1.0 gamma = 1.0
# Type of screenshot to take (regular, cylindrical, spherical or planet), optionally followed by
# screenshot width, height and cubemap resolution in pixels. (e.g. spherical 1600 1000 1200)
screenshot type = regular
[Water] [Water]
# Enable water shader with reflections and optionally refraction. # Enable water shader with reflections and optionally refraction.

Loading…
Cancel
Save