Skip to main content

IHubCullingPlayerColliderMethods

Trait IHubCullingPlayerColliderMethods 

Source
pub trait IHubCullingPlayerColliderMethods: IHubCullingPlayerCollider {
Show 13 methods // Provided methods fn get_manual_culling_manager(self) -> HubManualCullingManager { ... } fn set_manual_culling_manager( self, value: impl Into<HubManualCullingManager>, ) { ... } fn start(self) { ... } fn on_trigger_enter(self, other: impl Into<Collider>) { ... } fn call_trigger_enter(self, other: impl Into<Collider>) { ... } fn on_trigger_exit(self, other: impl Into<Collider>) { ... } fn call_trigger_exit(self, other: impl Into<Collider>) { ... } fn update(self) { ... } fn polling(self) { ... } fn disable_culling(self) { ... } fn enable_culling(self) { ... } fn clear_culling(self) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_manual_culling_manager(self) -> HubManualCullingManager

get_ManualCullingManager() overload

Source

fn set_manual_culling_manager(self, value: impl Into<HubManualCullingManager>)

set_ManualCullingManager(crate::app::hubmanualcullingmanager::HubManualCullingManager) overload

Source

fn start(self)

Start() overload

Source

fn on_trigger_enter(self, other: impl Into<Collider>)

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

Source

fn call_trigger_enter(self, other: impl Into<Collider>)

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

Source

fn on_trigger_exit(self, other: impl Into<Collider>)

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

Source

fn call_trigger_exit(self, other: impl Into<Collider>)

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

Source

fn update(self)

Update() overload

Source

fn polling(self)

Polling() overload

Source

fn disable_culling(self)

DisableCulling() overload

Source

fn enable_culling(self)

EnableCulling() overload

Source

fn clear_culling(self)

ClearCulling() 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: IHubCullingPlayerCollider> IHubCullingPlayerColliderMethods for __T

Available on crate feature app-hubcullingplayercollider only.