pub trait ICharacterLyingPegasusMethods: ICharacterLyingPegasus {
// Provided methods
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 on_land_human(self) { ... }
fn on_land_pegasus(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn make_my_dead_pose(self)
fn make_my_dead_pose(self)
MakeMyDeadPose() overload
Sourcefn my_late_update(self)
fn my_late_update(self)
MyLateUpdate() overload
Sourcefn on_land_human(self)
fn on_land_human(self)
OnLandHuman() overload
Sourcefn on_land_pegasus(self)
fn on_land_pegasus(self)
OnLandPegasus() 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: ICharacterLyingPegasus> ICharacterLyingPegasusMethods for __T
Available on crate feature
combat-characterlyingpegasus only.