pub struct ReverbProperties {
pub decay_time: f32,
pub early_delay: f32,
pub late_delay: f32,
pub hf_reference: f32,
pub hf_decay_ratio: f32,
pub diffusion: f32,
pub density: f32,
pub low_shelf_frequency: f32,
pub low_shelf_gain: f32,
pub high_cut: f32,
pub early_late_mix: f32,
pub wet_level: f32,
}Fields§
§decay_time: f32§early_delay: f32§late_delay: f32§hf_reference: f32§hf_decay_ratio: f32§diffusion: f32§density: f32§low_shelf_frequency: f32§low_shelf_gain: f32§high_cut: f32§early_late_mix: f32§wet_level: f32Implementations§
Source§impl ReverbProperties
impl ReverbProperties
pub fn off() -> Self
pub fn generic() -> Self
pub fn paddedcell() -> Self
pub fn room() -> Self
pub fn bathroom() -> Self
pub fn livingroom() -> Self
pub fn stoneroom() -> Self
pub fn auditorium() -> Self
pub fn concerthall() -> Self
pub fn cave() -> Self
pub fn arena() -> Self
pub fn hangar() -> Self
pub fn carpettedhallway() -> Self
pub fn hallway() -> Self
pub fn stonecorridor() -> Self
pub fn alley() -> Self
pub fn forest() -> Self
pub fn city() -> Self
pub fn mountains() -> Self
pub fn quarry() -> Self
pub fn plain() -> Self
pub fn parkinglot() -> Self
pub fn sewerpipe() -> Self
pub fn underwater() -> Self
Trait Implementations§
Source§impl Clone for ReverbProperties
impl Clone for ReverbProperties
Source§fn clone(&self) -> ReverbProperties
fn clone(&self) -> ReverbProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReverbProperties
impl Debug for ReverbProperties
Source§impl Into<FMOD_REVERB_PROPERTIES> for ReverbProperties
impl Into<FMOD_REVERB_PROPERTIES> for ReverbProperties
Source§fn into(self) -> FMOD_REVERB_PROPERTIES
fn into(self) -> FMOD_REVERB_PROPERTIES
Converts this type into the (usually inferred) input type.
Auto Trait Implementations§
impl Freeze for ReverbProperties
impl RefUnwindSafe for ReverbProperties
impl Send for ReverbProperties
impl Sync for ReverbProperties
impl Unpin for ReverbProperties
impl UnwindSafe for ReverbProperties
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