#[repr(C)]pub enum DspChorus {
DryMix = 0,
WetMix1 = 1,
WetMix2 = 2,
WetMix3 = 3,
Delay = 4,
Rate = 5,
Depth = 6,
}
Expand description
Parameter types for the FMOD_DSP_TYPE_CHORUS filter.
Used with Dsp::set_parameter
and
Dsp::get_parameter
Variants§
DryMix = 0
Volume of original signal to pass to output. 0.0 to 1.0. Default = 0.5.
WetMix1 = 1
Volume of 1st chorus tap. 0.0 to 1.0. Default = 0.5.
WetMix2 = 2
Volume of 2nd chorus tap. This tap is 90 degrees out of phase of the first tap. 0.0 to 1.0. Default = 0.5.
WetMix3 = 3
Volume of 3rd chorus tap. This tap is 90 degrees out of phase of the second tap. 0.0 to 1.0. Default = 0.5.
Delay = 4
Chorus delay in ms. 0.1 to 100.0. Default = 40.0 ms.
Rate = 5
Chorus modulation rate in hz. 0.0 to 20.0. Default = 0.8 hz.
Depth = 6
Chorus modulation depth. 0.0 to 1.0. Default = 0.03.
Trait Implementations§
Source§impl PartialOrd for DspChorus
impl PartialOrd for DspChorus
impl Copy for DspChorus
impl StructuralPartialEq for DspChorus
Auto Trait Implementations§
impl Freeze for DspChorus
impl RefUnwindSafe for DspChorus
impl Send for DspChorus
impl Sync for DspChorus
impl Unpin for DspChorus
impl UnwindSafe for DspChorus
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more