1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-29 13:20:25 +02:00

Default: Add water footstep sounds

Plus one silent sound to break repetition 'default_water_footstep.4.ogg'.
This commit is contained in:
paramat
2016-11-17 02:41:38 +00:00
parent 1e691c4429
commit ec95f47021
7 changed files with 20 additions and 0 deletions

View File

@ -109,6 +109,14 @@ function default.node_sound_metal_defaults(table)
return table
end
function default.node_sound_water_defaults(table)
table = table or {}
table.footstep = table.footstep or
{name = "default_water_footstep", gain = 0.2}
default.node_sound_defaults(table)
return table
end
--
-- Lavacooling
--