Navigation
API > API/Plugins > API/Plugins/MutableRuntime
This define enabled additional checks when using RLE compression. These checks have a lot of of overhead so it should usually be disabled.
TODO: Make the handling of rotations an option. It is more expensive on CPU and memory, and for some cases it is not required at all.
| Name | mu::EBoneUsageFlags |
| Type | enum |
| Header File | /Engine/Plugins/Mutable/Source/MutableRuntime/Public/MuR/Mesh.h |
| Include Path | #include "MuR/Mesh.h" |
Syntax
namespace mu
{
enum EBoneUsageFlags
{
None = 0,
Root = 1 << 1,
Skinning = 1 << 2,
SkinningParent = 1 << 3,
Physics = 1 << 4,
PhysicsParent = 1 << 5,
Deform = 1 << 6,
DeformParent = 1 << 7,
Reshaped = 1 << 8,
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| Root | |
| Skinning | |
| SkinningParent | |
| Physics | |
| PhysicsParent | |
| Deform | |
| DeformParent | |
| Reshaped |