Skip to main content

IMapAction_ProcWarpMethods

Trait IMapAction_ProcWarpMethods 

Source
pub trait IMapAction_ProcWarpMethods: IMapAction_ProcWarp {
    // Provided methods
    fn ctor(
        self,
        actor: impl Into<UnitActor>,
        to_x: impl Into<i32>,
        to_z: impl Into<i32>,
    ) { ... }
    fn warp_out(self) { ... }
    fn warp_in(self) { ... }
    fn fade_out(self) { ... }
    fn fade_in(self) { ... }
    fn wait_tick(self) { ... }
}

Provided Methods§

Source

fn ctor( self, actor: impl Into<UnitActor>, to_x: impl Into<i32>, to_z: impl Into<i32>, )

.ctor(crate::app::unitactor::UnitActor, i32, i32) overload

Source

fn warp_out(self)

WarpOut() overload

Source

fn warp_in(self)

WarpIn() overload

Source

fn fade_out(self)

FadeOut() overload

Source

fn fade_in(self)

FadeIn() overload

Source

fn wait_tick(self)

WaitTick() 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: IMapAction_ProcWarp> IMapAction_ProcWarpMethods for __T

Available on crate feature app-mapaction only.