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§
Sourcefn get_parabola(self) -> Parabola
fn get_parabola(self) -> Parabola
get_Parabola() overload
Sourcefn set_parabola(self, value: impl Into<Parabola>)
fn set_parabola(self, value: impl Into<Parabola>)
set_Parabola(crate::combat::parabola::Parabola) overload
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn my_late_update(self)
fn my_late_update(self)
MyLateUpdate() 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§
impl<__T: ICharacterIKAim> ICharacterIKAimMethods for __T
Available on crate feature
combat-characterikaim only.