Navigation
API > API/Runtime > API/Runtime/Engine > API/Runtime/Engine/FAnimationCompression_PerTrackUt-
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void DecomposeHeader
(
int32 Header, |
Decomposes a header created with MakeHeader into three/four fields (two are still left packed into FormatFlags): | AnimationCompression.h | |
static void DecomposeHeader
(
int32 Header, |
Decomposes a header created with MakeHeader into three/four fields (two are still left packed into FormatFlags): | AnimationCompression.h |
DecomposeHeader(int32, int32 &, int32 &, int32 &)
Description
Decomposes a header created with MakeHeader into three/four fields (two are still left packed into FormatFlags):
| Name | DecomposeHeader |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/AnimationCompression.h |
| Include Path | #include "AnimationCompression.h" |
static void DecomposeHeader
(
int32 Header,
int32 & KeyFormat,
int32 & NumKeys,
int32 & FormatFlags
)
Parameters
| Name | Remarks |
|---|---|
| Header | The header to decompose |
| KeyFormat | [OUT] The encoding format used for each key |
| NumKeys | [OUT] The number of keys in this track |
| FormatFlags | [OUT] Three bits of format-specific information and a single bit to indicate if a key->frame table follows the keys |
DecomposeHeader(int32, int32 &, int32 &, int32 &, int32 &, int32 &)
Description
Decomposes a header created with MakeHeader into three/four fields (two are still left packed into FormatFlags): And some derived values:
| Name | DecomposeHeader |
| Type | function |
| Header File | /Engine/Source/Runtime/Engine/Public/AnimationCompression.h |
| Include Path | #include "AnimationCompression.h" |
static void DecomposeHeader
(
int32 Header,
int32 & KeyFormat,
int32 & NumKeys,
int32 & FormatFlags,
int32 & BytesPerKey,
int32 & FixedBytes
)
Parameters
| Name | Remarks |
|---|---|
| Header | The header to decompose |
| KeyFormat | [OUT] The encoding format used for each key |
| NumKeys | [OUT] The number of keys in this track |
| FormatFlags | [OUT] Three bits of format-specific information and a single bit to indicate if a key->frame table follows the keys |
| BytesPerKey | [OUT] The number of bytes each key takes up |
| FixedBytes | [OUT] The number of fixed bytes at the head of the track stream |