mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-03 05:06:41 +00:00
Add default settings for 360 screenshots
This commit is contained in:
parent
37aa761283
commit
a142a67972
2 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue