pub trait IAkEnvironmentPortal: IMonoBehaviour {
// Provided methods
fn axis(self) -> Vector3 { ... }
fn set_axis(self, value: Vector3) { ... }
fn environments(self) -> Array<AkEnvironment> { ... }
fn set_environments(self, value: Array<AkEnvironment>) { ... }
fn m_box_collider(self) -> BoxCollider { ... }
fn set_m_box_collider(self, value: BoxCollider) { ... }
}Provided Methods§
fn axis(self) -> Vector3
fn set_axis(self, value: Vector3)
fn environments(self) -> Array<AkEnvironment>
fn set_environments(self, value: Array<AkEnvironment>)
fn m_box_collider(self) -> BoxCollider
fn set_m_box_collider(self, value: BoxCollider)
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.