pub trait IInteractionTargetMethods: IInteractionTarget {
// Provided methods
fn open_user_manual(self) { ... }
fn open_script_reference(self) { ... }
fn open_tutorial1(self) { ... }
fn open_tutorial2(self) { ... }
fn open_tutorial3(self) { ... }
fn open_tutorial4(self) { ... }
fn support_group(self) { ... }
fn as_thread(self) { ... }
fn get_value(
self,
curve_type: impl Into<InteractionObject_WeightCurve_Type>,
) -> f32 { ... }
fn reset_rotation(self) { ... }
fn rotate_to(self, bone: impl Into<Transform>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn open_user_manual(self)
fn open_user_manual(self)
OpenUserManual() overload
Sourcefn open_script_reference(self)
fn open_script_reference(self)
OpenScriptReference() overload
Sourcefn open_tutorial1(self)
fn open_tutorial1(self)
OpenTutorial1() overload
Sourcefn open_tutorial2(self)
fn open_tutorial2(self)
OpenTutorial2() overload
Sourcefn open_tutorial3(self)
fn open_tutorial3(self)
OpenTutorial3() overload
Sourcefn open_tutorial4(self)
fn open_tutorial4(self)
OpenTutorial4() overload
Sourcefn support_group(self)
fn support_group(self)
SupportGroup() overload
Sourcefn get_value(
self,
curve_type: impl Into<InteractionObject_WeightCurve_Type>,
) -> f32
fn get_value( self, curve_type: impl Into<InteractionObject_WeightCurve_Type>, ) -> f32
GetValue(crate::root_motion::final_ik::interactionobject::InteractionObject_WeightCurve_Type) overload
Sourcefn reset_rotation(self)
fn reset_rotation(self)
ResetRotation() 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: IInteractionTarget> IInteractionTargetMethods for __T
Available on crate feature
root_motion-final_ik-interactiontarget only.