Navigation
API > API/Plugins > API/Plugins/AnimNext
References
| Module | AnimNext |
| Header | /Engine/Plugins/Experimental/AnimNext/Source/AnimNext/Public/ConstExprUID.h |
| Include | #include "ConstExprUID.h" |
Syntax
struct FConstExprUID
Remarks
A constexpr safe UID
Encapsulates an constexpr UID. The string is exposed in non-shipping builds for logging and debugging purposes. The UID should be generated from the provided string using FNV1a with 32 bits.
The whole struct is meant to be 'constexpr' to allow inlining.
Constructors
| Type | Name | Description | |
|---|---|---|---|
| constexpr | Constructs an invalid UID. | ||
| constexpr | FConstExprUID
(
FFConstExprUIDRaw InUID, |
Constructs a UID. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| const TCHAR * | GetDebugName () |
Returns a literal string to the debug name. | |
| FFConstExprUIDRaw | GetUID () |
Returns the raw UID. | |
| bool | IsValid () |
Returns whether this UID is valid or not. | |
| FConstExprUID | MakeFromString
(
const TCHAR* InName |
Constructs a UID. |
Constants
| Name | Description |
|---|---|
| INVALID_UID |