Navigation
API > API/Plugins > API/Plugins/IKRig
| Name | FIKRetargetSpeedPlantingOpSettings |
| Type | struct |
| Header File | /Engine/Plugins/Animation/IKRig/Source/IKRig/Public/Retargeter/RetargetOps/SpeedPlantingOp.h |
| Include Path | #include "Retargeter/RetargetOps/SpeedPlantingOp.h" |
Syntax
USTRUCT (BlueprintType , Meta=(DisplayName="Speed Plant Settings"))
struct FIKRetargetSpeedPlantingOpSettings : public FIKRetargetOpSettingsBase
Inheritance Hierarchy
- FIKRetargetOpSettingsBase → FIKRetargetSpeedPlantingOpSettings
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ChainsToSpeedPlant | TArray< FRetargetSpeedPlantingSettings > | Retargeter/RetargetOps/SpeedPlantingOp.h |
|
|
| CriticalDamping | double | How much damping to apply to the spring (0 means no damping, 1 means critically damped which means no oscillation) | Retargeter/RetargetOps/SpeedPlantingOp.h |
|
| SpeedThreshold | double | Range 0 to 100. | Retargeter/RetargetOps/SpeedPlantingOp.h |
|
| Stiffness | double | How stiff the spring model is that smoothly pulls the IK position after unplanting (more stiffness means more oscillation around the target value) | Retargeter/RetargetOps/SpeedPlantingOp.h |
|
Functions
Public
Overridden from FIKRetargetOpSettingsBase
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void CopySettingsAtRuntime
(
const FIKRetargetOpSettingsBase* InSettingsToCopyFrom |
(required) override to specify how settings should be applied in a way that will not require reinitialization (ie runtime compatible) | Retargeter/RetargetOps/SpeedPlantingOp.h | |
virtual const UClass * GetControllerType() |
(optional, but recommended) provide a custom controller type (deriving from UIKRetargetOpControllerBase) as an API for editing the op NOTE: this type will automatically be lazy instantiated when/if the user calls GetController() on the op. | Retargeter/RetargetOps/SpeedPlantingOp.h |