Skip to main content

ICharacterIKAimMethods

Trait ICharacterIKAimMethods 

Source
pub trait ICharacterIKAimMethods: ICharacterIKAim {
Show 13 methods // Provided methods fn get_cp(self) -> Character { ... } fn get_parabola(self) -> Parabola { ... } fn set_parabola(self, value: impl Into<Parabola>) { ... } fn on_disable(self) { ... } fn on_enable(self) { ... } fn start(self) { ... } fn my_start(self) { ... } fn my_late_update(self) { ... } fn aim_on(self) { ... } fn aim_off(self) { ... } fn skip(self) { ... } fn aim(self, end_weight: impl Into<f32>, end_time: impl Into<f32>) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_cp(self) -> Character

get_CP() overload

Source

fn get_parabola(self) -> Parabola

get_Parabola() overload

Source

fn set_parabola(self, value: impl Into<Parabola>)

set_Parabola(crate::combat::parabola::Parabola) overload

Source

fn on_disable(self)

OnDisable() overload

Source

fn on_enable(self)

OnEnable() overload

Source

fn start(self)

Start() overload

Source

fn my_start(self)

MyStart() overload

Source

fn my_late_update(self)

MyLateUpdate() overload

Source

fn aim_on(self)

AimOn() overload

Source

fn aim_off(self)

AimOff() overload

Source

fn skip(self)

Skip() overload

Source

fn aim(self, end_weight: impl Into<f32>, end_time: impl Into<f32>)

Aim(f32, f32) 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: ICharacterIKAim> ICharacterIKAimMethods for __T

Available on crate feature combat-characterikaim only.