Navigation
API > API/Plugins > API/Plugins/MutableRuntime
Optimised mesh formats that are identified in some operations to chose a faster version.
| Name | mu::EMeshFlags |
| Type | enum |
| Header File | /Engine/Plugins/Mutable/Source/MutableRuntime/Public/MuR/Mesh.h |
| Include Path | #include "MuR/Mesh.h" |
Syntax
namespace mu
{
enum EMeshFlags
{
None = 0,
ProjectFormat = 1 << 0,
ProjectWrappingFormat = 1 << 1,
IsResourceReference = 1 << 2,
IsResourceForceLoad = 1 << 3,
}
}
Values
| Name | Remarks |
|---|---|
| None | |
| ProjectFormat | The mesh is formatted to be used for planar and cilyndrical projection |
| ProjectWrappingFormat | The mesh is formatted to be used for wrapping projection |
| IsResourceReference | The mesh is a reference to an external resource mesh. |
| IsResourceForceLoad | The mesh is a reference to an external resource mesh and must be loaded when first referenced. |