pub struct ReverbChannelProperties {
pub direct: i32,
pub room: i32,
pub flags: u32,
pub connection_point: Dsp,
}
Expand description
Structure defining the properties for a reverb source, related to a FMOD channel.
Fields§
§direct: i32
[r/w] MIN: -10000 MAX: 1000 DEFAULT: 0 Direct path level
room: i32
[r/w] MIN: -10000 MAX: 1000 DEFAULT: 0 Room effect level
flags: u32
[r/w] FMOD_REVERB_CHANNELFLAGS modifies the behavior of properties
connection_point: Dsp
[r/w] See remarks. DSP network location to connect reverb for this channel.
Auto Trait Implementations§
impl Freeze for ReverbChannelProperties
impl RefUnwindSafe for ReverbChannelProperties
impl !Send for ReverbChannelProperties
impl !Sync for ReverbChannelProperties
impl Unpin for ReverbChannelProperties
impl UnwindSafe for ReverbChannelProperties
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