pub trait IAkEnvironmentMethods: IAkEnvironment {
// Provided methods
fn get_collider(self) -> Collider { ... }
fn set_collider(self, value: impl Into<Collider>) { ... }
fn awake(self) { ... }
fn get_m_aux_bus_id(self) -> i32 { ... }
fn get_value_guid(self) -> Array<u8> { ... }
fn get_aux_bus_id(self) -> u32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_collider(self) -> Collider
fn get_collider(self) -> Collider
get_Collider() overload
Sourcefn set_collider(self, value: impl Into<Collider>)
fn set_collider(self, value: impl Into<Collider>)
set_Collider(crate::unity_engine::collider::Collider) overload
Sourcefn get_m_aux_bus_id(self) -> i32
fn get_m_aux_bus_id(self) -> i32
get_m_auxBusID() overload
Sourcefn get_value_guid(self) -> Array<u8>
fn get_value_guid(self) -> Array<u8>
get_valueGuid() overload
Sourcefn get_aux_bus_id(self) -> u32
fn get_aux_bus_id(self) -> u32
GetAuxBusID() 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: IAkEnvironment> IAkEnvironmentMethods for __T
Available on crate feature
root-akenvironment only.