Navigation
API > API/Plugins > API/Plugins/UAF
Encodes the possible spaces values can live in.
| Name | UE::UAF::EValueSpaceType |
| Type | enum |
| Header File | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Public/UAF/ValueRuntime/ValueSpace.h |
| Include Path | #include "UAF/ValueRuntime/ValueSpace.h" |
Syntax
namespace UE
{
namespace UAF
{
enum EValueSpaceType
{
None = 0x0000,
Local = 0x0001,
Component = 0x0002,
Mixed = 0x0003,
AI = 0x0004,
}
}
}
Values
| Name | Remarks |
|---|---|
| None | Unknown value space. |
| Local | Bone transforms: relative to their parent bone Everything else: normal space (no parent/child relationships) |
| Component | Bone transforms: relative to the owning component Everything else: normal space (no parent/child relationships) |
| Mixed | Bone transforms: rotations/translations/scales can be in individual spaces, |
| AI | Values are in machine learning latent space Value types will dictate which space they are in |