Skip to main content

IDelayedActionManagerMethods

Trait IDelayedActionManagerMethods 

Source
pub trait IDelayedActionManagerMethods: IDelayedActionManager {
    // Provided methods
    fn get_node(
        self,
    ) -> (LinkedListNode_1<DelayedActionManager_DelegateInfo>, DelayedActionManager_DelegateInfo) { ... }
    fn destroy_when_complete(self) { ... }
    fn add_action_internal(
        self,
        action: impl Into<Delegate>,
        delay: impl Into<f32>,
        parameters: impl Into<Array<Object>>,
    ) { ... }
    fn late_update(self) { ... }
    fn internal_late_update(self, t: impl Into<f32>) { ... }
    fn on_application_quit(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_node( self, ) -> (LinkedListNode_1<DelayedActionManager_DelegateInfo>, DelayedActionManager_DelegateInfo)

GetNode(*mutcrate::unity_engine::resource_management::util::delayedactionmanager::DelayedActionManager_DelegateInfo) overload

Source

fn destroy_when_complete(self)

DestroyWhenComplete() overload

Source

fn add_action_internal( self, action: impl Into<Delegate>, delay: impl Into<f32>, parameters: impl Into<Array<Object>>, )

AddActionInternal(crate::system::delegate::Delegate, f32, ::unity::Array<crate::system::object::Object>) overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn internal_late_update(self, t: impl Into<f32>)

InternalLateUpdate(f32) overload

Source

fn on_application_quit(self)

OnApplicationQuit() 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: IDelayedActionManager> IDelayedActionManagerMethods for __T

Available on crate feature unity_engine-resource_management-util-delayedactionmanager only.