Skip to main content

IEvasionSpeedMethods

Trait IEvasionSpeedMethods 

Source
pub trait IEvasionSpeedMethods: IEvasionSpeed {
    // Provided methods
    fn get_speed(self) -> f32 { ... }
    fn ctor(self, curve: impl Into<AnimationCurve>) { ... }
    fn dispose(self) { ... }
    fn start(self) { ... }
    fn update(self) { ... }
}

Provided Methods§

Source

fn get_speed(self) -> f32

get_Speed() overload

Source

fn ctor(self, curve: impl Into<AnimationCurve>)

.ctor(crate::unity_engine::animationcurve::AnimationCurve) overload

Source

fn dispose(self)

Dispose() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() 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: IEvasionSpeed> IEvasionSpeedMethods for __T

Available on crate feature combat-evasionspeed only.