diff options
author | Lars Hofhansl <larsh@apache.org> | 2019-12-21 06:33:59 -0800 |
---|---|---|
committer | Lars Hofhansl <larsh@apache.org> | 2019-12-21 06:33:59 -0800 |
commit | 9c28acd29b4151a22e305c666b6aeafadc190a59 (patch) | |
tree | fb68324eab73a4b168dcbc6c7c0d97b454ebe19f /builtin | |
parent | 37f771a95bd54e2072f07783df142da4a91e7bff (diff) | |
download | minetest-9c28acd29b4151a22e305c666b6aeafadc190a59.tar.gz minetest-9c28acd29b4151a22e305c666b6aeafadc190a59.tar.bz2 minetest-9c28acd29b4151a22e305c666b6aeafadc190a59.zip |
Allow wave_heights up to two nodes. #9220
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/settingtypes.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/builtin/settingtypes.txt b/builtin/settingtypes.txt index fd8c50d4c..ad8ad4f5e 100644 --- a/builtin/settingtypes.txt +++ b/builtin/settingtypes.txt @@ -580,10 +580,11 @@ parallax_occlusion_bias (Parallax occlusion bias) float 0.04 enable_waving_water (Waving liquids) bool false # The maximum height of the surface of waving liquids. -# 1.0 = Wave reaches the top of blocks. +# 4.0 = Wave height is two nodes. # 0.0 = Wave doesn't move at all. +# Default is 1.0 (1/2 node). # Requires waving liquids to be enabled. -water_wave_height (Waving liquids wave height) float 1.0 0.0 1.0 +water_wave_height (Waving liquids wave height) float 1.0 0.0 4.0 # Length of liquid waves. # Requires waving liquids to be enabled. |