Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/UAnimCompress
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void FilterIntermittentRotationKeys
(
TArray< struct FRotationTrack >& RotationTracks, |
Common compression utility to retain only intermittent rotation keys. | Animation/AnimCompress.h | |
static void FilterIntermittentRotationKeys
(
FRotationTrack& Track, |
Common compression utility to retain only intermittent rotation keys. | Animation/AnimCompress.h |
FilterIntermittentRotationKeys(TArray< struct FRotationTrack > &, int32, int32)
Description
Common compression utility to retain only intermittent rotation keys. For example, calling with an Interval of 3 would keep every third key in the set and discard the rest
| Name | FilterIntermittentRotationKeys |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimCompress.h |
| Include Path | #include "Animation/AnimCompress.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Animation/AnimCompress.cpp |
static void FilterIntermittentRotationKeys
(
TArray < struct FRotationTrack > & RotationTracks,
int32 StartIndex,
int32 Interval
)
Parameters
| Name | Remarks |
|---|---|
| RotationTracks | Array of rotation track elements to reduce |
| StartIndex | Index at which to begin reduction |
| Interval | Interval of keys to retain |
FilterIntermittentRotationKeys(struct FRotationTrack &, int32, int32)
Description
Common compression utility to retain only intermittent rotation keys. For example, calling with an Interval of 3 would keep every third key in the set and discard the rest
| Name | FilterIntermittentRotationKeys |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Classes/Animation/AnimCompress.h |
| Include Path | #include "Animation/AnimCompress.h" |
| Source | /Engine/Source/Runtime/Engine/Private/Animation/AnimCompress.cpp |
static void FilterIntermittentRotationKeys
(
struct FRotationTrack & Track,
int32 StartIndex,
int32 Interval
)
Parameters
| Name | Remarks |
|---|---|
| Track | Track to reduce |
| StartIndex | Index at which to begin reduction |
| Interval | Interval of keys to retain |