mod-sounds/groups/weather.lua

54 lines
689 B
Lua
Raw Normal View History

--- Pre-defined Weather Sound Groups
--
-- @topic weather_groups
--- Rain
--
-- @section rain
--- @sndgroup sounds.rain
-- @snd rain_light (loopable)
-- @snd rain_medium (loopable)
-- @snd rain_heavy_01 (loopable)
-- @snd rain_heavy_02 (loopable)
sounds.rain = SoundGroup({
"rain_light",
"rain_medium",
"rain_heavy_01",
"rain_heavy_02",
})
--- Thunder
--
-- @section thunder
--- @sndgroup sounds.thunder
-- @snd thunder_01
-- @snd thunder_02
-- @snd thunder_03
sounds.thunder = SoundGroup({
"thunder_01",
"thunder_02",
"thunder_03",
})
--- Wind
--
-- @section wind
--- @sndgroup sounds.wind
-- @snd wind (loopable)
sounds.wind = SoundGroup({
"wind",
})