Default: Add function 'node_sound_gravel_defaults()'
This commit is contained in:
parent
fafbe2c268
commit
1a6298958e
2 changed files with 13 additions and 4 deletions
|
@ -49,6 +49,18 @@ function default.node_sound_sand_defaults(table)
|
|||
return table
|
||||
end
|
||||
|
||||
function default.node_sound_gravel_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
{name = "default_gravel_footstep", gain = 0.5}
|
||||
table.dug = table.dug or
|
||||
{name = "default_gravel_footstep", gain = 1.0}
|
||||
table.place = table.place or
|
||||
{name = "default_place_node", gain = 1.0}
|
||||
default.node_sound_defaults(table)
|
||||
return table
|
||||
end
|
||||
|
||||
function default.node_sound_wood_defaults(table)
|
||||
table = table or {}
|
||||
table.footstep = table.footstep or
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue