Skip to main content

ICharacterLyingHumanMethods

Trait ICharacterLyingHumanMethods 

Source
pub trait ICharacterLyingHumanMethods: ICharacterLyingHuman {
    // Provided methods
    fn get_is_in_air(self) -> bool { ... }
    fn get_progress(self) -> f32 { ... }
    fn my_start(self, die_hash: impl Into<i32>) { ... }
    fn make_my_dead_pose(self) { ... }
    fn my_late_update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_is_in_air(self) -> bool

get_IsInAir() overload

Source

fn get_progress(self) -> f32

get_Progress() overload

Source

fn my_start(self, die_hash: impl Into<i32>)

MyStart(i32) overload

Source

fn make_my_dead_pose(self)

MakeMyDeadPose() overload

Source

fn my_late_update(self)

MyLateUpdate() 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: ICharacterLyingHuman> ICharacterLyingHumanMethods for __T

Available on crate feature combat-characterlyinghuman only.