NW4F Snd
Loading...
Searching...
No Matches
snd_FxDelay.h
Go to the documentation of this file.
1#ifndef NW_SND_FX_DELAY_H_
2#define NW_SND_FX_DELAY_H_
3
4#include <nw/types.h>
5
6namespace nw { namespace snd {
7
8class FxDelay
9{
10public:
12 {
18
20 : delay(160.0f)
21 , feedback(0.4f)
22 , outGain(1.0f)
23 , maxDelay(160.0f)
24 , lpf(1.0f)
25 {
26 }
27 };
28};
29
30} } // namespace nw::snd
31
32#endif // NW_SND_FX_DELAY_H_
Definition snd_FxDelay.h:9
Definition snd_BasicSound.cpp:3
Definition snd_FxDelay.h:12
DelayParam()
Definition snd_FxDelay.h:19
f32 delay
Definition snd_FxDelay.h:13
f32 feedback
Definition snd_FxDelay.h:14
f32 maxDelay
Definition snd_FxDelay.h:16
f32 lpf
Definition snd_FxDelay.h:17
f32 outGain
Definition snd_FxDelay.h:15