pub trait IAkObstructionOcclusionMethods: IAkObstructionOcclusion {
// Provided methods
fn init_intervals_and_fade_rates(self) { ... }
fn update_current_listener_list(self) { ... }
fn update_obstruction_occlusion_values(self) { ... }
fn cast_rays(self) { ... }
fn set_obstruction_occlusion(
self,
obs_occ_pair: impl Into<KeyValuePair_2<AkAudioListener, AkObstructionOcclusion_ObstructionOcclusionValue>>,
) { ... }
fn update(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn init_intervals_and_fade_rates(self)
fn init_intervals_and_fade_rates(self)
InitIntervalsAndFadeRates() overload
Sourcefn update_current_listener_list(self)
fn update_current_listener_list(self)
UpdateCurrentListenerList() overload
Sourcefn update_obstruction_occlusion_values(self)
fn update_obstruction_occlusion_values(self)
UpdateObstructionOcclusionValues() overload
Sourcefn set_obstruction_occlusion(
self,
obs_occ_pair: impl Into<KeyValuePair_2<AkAudioListener, AkObstructionOcclusion_ObstructionOcclusionValue>>,
)
fn set_obstruction_occlusion( self, obs_occ_pair: impl Into<KeyValuePair_2<AkAudioListener, AkObstructionOcclusion_ObstructionOcclusionValue>>, )
SetObstructionOcclusion(crate::system::collections::generic::keyvaluepair_2::KeyValuePair_2<crate::root::akaudiolistener::AkAudioListener,crate::root::akobstructionocclusion::AkObstructionOcclusion_ObstructionOcclusionValue>) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IAkObstructionOcclusion> IAkObstructionOcclusionMethods for __T
Available on crate feature
root-akobstructionocclusion only.