#[repr(i32)]pub enum DspParameterDataType {
OverAlign = -1,
Attributes3D = -2,
Sidechain = -3,
FFT = -4,
Attributes3DMulti = -5,
AttenuationRange = -6,
DynamicResponse = -7,
User(i32),
}
Expand description
Data parameter types.
Variants§
OverAlign = -1
Data type for FMOD_DSP_PARAMETER_OVERALLGAIN
parameters.
There should be a maximum of one per DSP.
Attributes3D = -2
Data type for FMOD_DSP_PARAMETER_3DATTRIBUTES
parameters.
There should be a maximum of one per DSP.
Sidechain = -3
Data type for FMOD_DSP_PARAMETER_SIDECHAIN
parameters.
There should be a maximum of one per DSP.
FFT = -4
Data type for FMOD_DSP_PARAMETER_FFT
parameters.
There should be a maximum of one per DSP.
Attributes3DMulti = -5
Data type for FMOD_DSP_PARAMETER_3DATTRIBUTES_MULTI
parameters.
There should be a maximum of one per DSP.
AttenuationRange = -6
Data type for FMOD_DSP_PARAMETER_ATTENUATION_RANGE
parameters.
There should be a maximum of one per DSP.
DynamicResponse = -7
fmod_2_3
only.Data type for FMOD_DSP_PARAMETER_DYNAMIC_RESPONSE
parameters.
There should be a maximum of one per DSP.
User(i32)
Default data type. All user data types should be 0 or above.
Trait Implementations§
Source§impl Clone for DspParameterDataType
impl Clone for DspParameterDataType
Source§fn clone(&self) -> DspParameterDataType
fn clone(&self) -> DspParameterDataType
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more