#[repr(C)]pub enum DspFlange {
DryMix = 0,
WetMix = 1,
Depth = 2,
Rate = 3,
}
Expand description
Parameter types for the FMOD_DSP_TYPE_FLANGE 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.45.
WetMix = 1
Volume of flange signal to pass to output. 0.0 to 1.0. Default = 0.55.
Depth = 2
Flange depth (percentage of 40ms delay). 0.01 to 1.0. Default = 1.0.
Rate = 3
Flange speed in hz. 0.0 to 20.0. Default = 0.1.
Trait Implementations§
Source§impl PartialOrd for DspFlange
impl PartialOrd for DspFlange
impl Copy for DspFlange
impl StructuralPartialEq for DspFlange
Auto Trait Implementations§
impl Freeze for DspFlange
impl RefUnwindSafe for DspFlange
impl Send for DspFlange
impl Sync for DspFlange
impl Unpin for DspFlange
impl UnwindSafe for DspFlange
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