pub trait IHitReactionMethods: IHitReaction {
// Provided methods
fn get_in_progress(self) -> bool { ... }
fn on_modify_offset(self) { ... }
fn hit(
self,
collider: impl Into<Collider>,
force: impl Into<Vector3>,
point: impl Into<Vector3>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_in_progress(self) -> bool
fn get_in_progress(self) -> bool
get_inProgress() overload
Sourcefn on_modify_offset(self)
fn on_modify_offset(self)
OnModifyOffset() 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: IHitReaction> IHitReactionMethods for __T
Available on crate feature
root_motion-final_ik-hitreaction only.