mirror of
https://github.com/minetest/minetest.git
synced 2025-01-10 10:00:22 +01:00
Enable negative values for sun/moon orbit tilt (Northern hemisphere) (#12904)
This commit is contained in:
parent
485b3b1203
commit
260de1c2b5
@ -447,7 +447,7 @@ shadow_soft_radius (Soft shadow radius) float 5.0 1.0 15.0
|
|||||||
# Set the tilt of Sun/Moon orbit in degrees.
|
# Set the tilt of Sun/Moon orbit in degrees.
|
||||||
# Value of 0 means no tilt / vertical orbit.
|
# Value of 0 means no tilt / vertical orbit.
|
||||||
# Minimum value: 0.0; maximum value: 60.0
|
# Minimum value: 0.0; maximum value: 60.0
|
||||||
shadow_sky_body_orbit_tilt (Sky Body Orbit Tilt) float 0.0 0.0 60.0
|
shadow_sky_body_orbit_tilt (Sky Body Orbit Tilt) float 0.0 -60.0 60.0
|
||||||
|
|
||||||
[**Post processing]
|
[**Post processing]
|
||||||
|
|
||||||
|
@ -103,10 +103,8 @@ Sky::Sky(s32 id, RenderingEngine *rendering_engine, ITextureSource *tsrc, IShade
|
|||||||
|
|
||||||
m_directional_colored_fog = g_settings->getBool("directional_colored_fog");
|
m_directional_colored_fog = g_settings->getBool("directional_colored_fog");
|
||||||
|
|
||||||
if (g_settings->getBool("enable_dynamic_shadows")) {
|
if (g_settings->getBool("enable_dynamic_shadows"))
|
||||||
float val = g_settings->getFloat("shadow_sky_body_orbit_tilt");
|
m_sky_body_orbit_tilt = g_settings->getFloat("shadow_sky_body_orbit_tilt", -60.0f, 60.0f);
|
||||||
m_sky_body_orbit_tilt = rangelim(val, 0.0f, 60.0f);
|
|
||||||
}
|
|
||||||
|
|
||||||
setStarCount(1000);
|
setStarCount(1000);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user