Navigation
API > API/Plugins > API/Plugins/IKRig
Description
This is a convenience function for retarget ops that need to respond to an IK Rig chain being renamed.
NOTE: to use this, pass in an array of custom types T and ensure they implement these functions: FName GetName() void SetName(FName InChainName)
| Name | IKRetargetOpUtils::OnRetargetChainRenamed |
| Type | function |
| Header File | /Engine/Plugins/Animation/IKRig/Source/IKRig/Public/Retargeter/IKRetargetOpUtils.h |
| Include Path | #include "Retargeter/IKRetargetOpUtils.h" |
namespace IKRetargetOpUtils
{
template<typename T>
void IKRetargetOpUtils::OnRetargetChainRenamed
(
TArray < T > & InOutChainSettings,
const FName InOldChainName,
const FName InNewChainName
)
}