pub trait ICharacterProportionMethods: ICharacterProportion {
// Provided methods
fn is_shadow_scale_one(self) -> bool { ... }
fn get_character_joint(self) -> CharacterJoint { ... }
fn get_cp(self) -> Character { ... }
fn start(self) { ... }
fn reset(self) { ... }
fn swap(self) { ... }
fn late_update(self) { ... }
fn commit_changes(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_shadow_scale_one(self) -> bool
fn is_shadow_scale_one(self) -> bool
isShadowScaleOne() overload
Sourcefn get_character_joint(self) -> CharacterJoint
fn get_character_joint(self) -> CharacterJoint
get_CharacterJoint() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn commit_changes(self)
fn commit_changes(self)
CommitChanges() 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: ICharacterProportion> ICharacterProportionMethods for __T
Available on crate feature
combat-characterproportion only.