pub trait IAkObstructionOcclusionValuesMethods: IAkObstructionOcclusionValues {
// Provided methods
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>) { ... }
fn set_c_ptr(self, c_ptr: impl Into<IntPtr>) { ... }
fn finalize(self) { ... }
fn dispose(self) { ... }
fn set_occlusion(self, value: impl Into<f32>) { ... }
fn get_occlusion(self) -> f32 { ... }
fn set_obstruction(self, value: impl Into<f32>) { ... }
fn get_obstruction(self) -> f32 { ... }
fn clear(self) { ... }
fn clone(self, other: impl Into<AkObstructionOcclusionValues>) { ... }
fn ctor_2(self) { ... }
}Provided Methods§
Sourcefn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)
.ctor(::unity::IntPtr, bool) overload
Sourcefn set_occlusion(self, value: impl Into<f32>)
fn set_occlusion(self, value: impl Into<f32>)
set_occlusion(f32) overload
Sourcefn get_occlusion(self) -> f32
fn get_occlusion(self) -> f32
get_occlusion() overload
Sourcefn set_obstruction(self, value: impl Into<f32>)
fn set_obstruction(self, value: impl Into<f32>)
set_obstruction(f32) overload
Sourcefn get_obstruction(self) -> f32
fn get_obstruction(self) -> f32
get_obstruction() overload
Sourcefn clone(self, other: impl Into<AkObstructionOcclusionValues>)
fn clone(self, other: impl Into<AkObstructionOcclusionValues>)
Clone(crate::root::akobstructionocclusionvalues::AkObstructionOcclusionValues) 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: IAkObstructionOcclusionValues> IAkObstructionOcclusionValuesMethods for __T
Available on crate feature
root-akobstructionocclusionvalues only.