Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/IAnimationDataController
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool UpdateBoneTrackKeys
(
FName BoneName, |
Sets a range of keys for an existing bone animation track with the provided name. | Animation/AnimData/IAnimationDataController.h | |
bool UpdateBoneTrackKeys
(
FName BoneName, |
Sets a range of keys for an existing bone animation track with the provided name. | Animation/AnimData/IAnimationDataController.h |
UpdateBoneTrackKeys(FName, const FInt32Range &, const TArray< FVector3f > &, const TArray< FQuat4f > &, const TArray< FVector3f > &, bool)
Description
Sets a range of keys for an existing bone animation track with the provided name. Broadcasts a EAnimDataModelNotifyType::TrackChanged notify if successful. The provided number of keys provided is expected to match for each component, be between FrameLowerBound and FrameUpperBound (inclusive), and be non-zero.
| Name | UpdateBoneTrackKeys |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimData/IAnimationDataController.h |
| Include Path | #include "Animation/AnimData/IAnimationDataController.h" |
bool UpdateBoneTrackKeys
(
FName BoneName,
const FInt32Range & KeyRangeToSet,
const TArray < FVector3f > & PositionalKeys,
const TArray < FQuat4f > & RotationalKeys,
const TArray < FVector3f > & ScalingKeys,
bool bShouldTransact
)
Whether or not the keys were successfully set
Parameters
| Name | Remarks |
|---|---|
| BoneName | Bone name of the track for which the keys should be set |
| KeyRangeToSet | Range of frames to set keys for |
| PositionalKeys | Array of keys for the translation component |
| RotationalKeys | Array of keys for the rotation component |
| ScalingKeys | Array of keys for the scale component |
| bShouldTransact | Whether or not any undo-redo changes should be generated |
UpdateBoneTrackKeys(FName, const FInt32Range &, const TArray< FVector > &, const TArray< FQuat > &, const TArray< FVector > &, bool)
Description
Sets a range of keys for an existing bone animation track with the provided name. Broadcasts a EAnimDataModelNotifyType::TrackChanged notify if successful. The provided number of keys provided is expected to match for each component, be between FrameLowerBound and FrameUpperBound (inclusive), and be non-zero.
| Name | UpdateBoneTrackKeys |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimData/IAnimationDataController.h |
| Include Path | #include "Animation/AnimData/IAnimationDataController.h" |
bool UpdateBoneTrackKeys
(
FName BoneName,
const FInt32Range & KeyRangeToSet,
const TArray < FVector > & PositionalKeys,
const TArray < FQuat > & RotationalKeys,
const TArray < FVector > & ScalingKeys,
bool bShouldTransact
)
Whether or not the keys were successfully set
Parameters
| Name | Remarks |
|---|---|
| BoneName | Bone name of the track for which the keys should be set |
| KeyRangeToSet | Range of frames to set keys for |
| PositionalKeys | Array of keys for the translation component |
| RotationalKeys | Array of keys for the rotation component |
| ScalingKeys | Array of keys for the scale component |
| bShouldTransact | Whether or not any undo-redo changes should be generated |