pub trait IAkAcousticSurfaceMethods: IAkAcousticSurface {
Show 14 methods
// 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 ctor_2(self) { ... }
fn set_texture_id(self, value: impl Into<u32>) { ... }
fn get_texture_id(self) -> u32 { ... }
fn set_occlusion(self, value: impl Into<f32>) { ... }
fn get_occlusion(self) -> f32 { ... }
fn set_str_name(self, value: impl Into<Il2CppString>) { ... }
fn get_str_name(self) -> Il2CppString { ... }
fn clear(self) { ... }
fn delete_name(self) { ... }
fn clone(self, other: impl Into<AkAcousticSurface>) { ... }
}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_texture_id(self, value: impl Into<u32>)
fn set_texture_id(self, value: impl Into<u32>)
set_textureID(u32) overload
Sourcefn get_texture_id(self) -> u32
fn get_texture_id(self) -> u32
get_textureID() 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_str_name(self, value: impl Into<Il2CppString>)
fn set_str_name(self, value: impl Into<Il2CppString>)
set_strName(::unity::Il2CppString) overload
Sourcefn get_str_name(self) -> Il2CppString
fn get_str_name(self) -> Il2CppString
get_strName() overload
Sourcefn delete_name(self)
fn delete_name(self)
DeleteName() overload
Sourcefn clone(self, other: impl Into<AkAcousticSurface>)
fn clone(self, other: impl Into<AkAcousticSurface>)
Clone(crate::root::akacousticsurface::AkAcousticSurface) 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: IAkAcousticSurface> IAkAcousticSurfaceMethods for __T
Available on crate feature
root-akacousticsurface only.