Skip to main content

ICharacterLyingMethods

Trait ICharacterLyingMethods 

Source
pub trait ICharacterLyingMethods: ICharacterLying {
    // Provided methods
    fn get_cp(self) -> Character { ... }
    fn run(self, die_hash: impl Into<i32>) { ... }
    fn make_dead_pose(self) { ... }
    fn run_scheduler(self) { ... }
    fn update(self) { ... }
    fn late_update(self) { ... }
    fn my_start(self, die_hash: impl Into<i32>) { ... }
    fn make_my_dead_pose(self) { ... }
    fn my_update(self) { ... }
    fn my_late_update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_cp(self) -> Character

get_CP() overload

Source

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

Run(i32) overload

Source

fn make_dead_pose(self)

MakeDeadPose() overload

Source

fn run_scheduler(self)

RunScheduler() overload

Source

fn update(self)

Update() overload

Source

fn late_update(self)

LateUpdate() 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_update(self)

MyUpdate() 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: ICharacterLying> ICharacterLyingMethods for __T

Available on crate feature combat-characterlying only.