Skip to main content

IAkAcousticSurfaceMethods

Trait IAkAcousticSurfaceMethods 

Source
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§

Source

fn ctor(self, c_ptr: impl Into<IntPtr>, c_memory_own: impl Into<bool>)

.ctor(::unity::IntPtr, bool) overload

Source

fn set_c_ptr(self, c_ptr: impl Into<IntPtr>)

setCPtr(::unity::IntPtr) overload

Source

fn finalize(self)

Finalize() overload

Source

fn dispose(self)

Dispose() overload

Source

fn ctor_2(self)

.ctor() overload

Source

fn set_texture_id(self, value: impl Into<u32>)

set_textureID(u32) overload

Source

fn get_texture_id(self) -> u32

get_textureID() overload

Source

fn set_occlusion(self, value: impl Into<f32>)

set_occlusion(f32) overload

Source

fn get_occlusion(self) -> f32

get_occlusion() overload

Source

fn set_str_name(self, value: impl Into<Il2CppString>)

set_strName(::unity::Il2CppString) overload

Source

fn get_str_name(self) -> Il2CppString

get_strName() overload

Source

fn clear(self)

Clear() overload

Source

fn delete_name(self)

DeleteName() overload

Source

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§

Source§

impl<__T: IAkAcousticSurface> IAkAcousticSurfaceMethods for __T

Available on crate feature root-akacousticsurface only.