Skip to main content

IAkEnvironmentMethods

Trait IAkEnvironmentMethods 

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

Source

fn get_collider(self) -> Collider

get_Collider() overload

Source

fn set_collider(self, value: impl Into<Collider>)

set_Collider(crate::unity_engine::collider::Collider) overload

Source

fn awake(self)

Awake() overload

Source

fn get_m_aux_bus_id(self) -> i32

get_m_auxBusID() overload

Source

fn get_value_guid(self) -> Array<u8>

get_valueGuid() overload

Source

fn get_aux_bus_id(self) -> u32

GetAuxBusID() overload

Source

fn ctor(self)

.ctor() 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: IAkEnvironment> IAkEnvironmentMethods for __T

Available on crate feature root-akenvironment only.