Navigation
API > API/Runtime > API/Runtime/GeometryCore
EGeometryResultType is a generic result-code for use by geometry operations.
| Name | UE::Geometry::EGeometryResultType |
| Type | enum |
| Header File | /Engine/Source/Runtime/GeometryCore/Public/Util/ProgressCancel.h |
| Include Path | #include "Util/ProgressCancel.h" |
Syntax
namespace UE
{
namespace Geometry
{
enum EGeometryResultType
{
Success = 0,
InProgress = 1,
Cancelled = 2,
PartialResult = 3,
Failure = 4,
}
}
}
Values
| Name | Remarks |
|---|---|
| Success | The Geometry Operation successfully completed |
| InProgress | The Geometry Operation is in progress (this is intended for use in cases where there is a background computation that can be queried for incremental status/etc) |
| Cancelled | The Geometry Operation was Cancelled and did not complete |
| PartialResult | The Geometry Operation completed but was not fully successful (eg some sub-computation failed and was gracefully handled, etc) |
| Failure | The Geometry Operation failed and no valid result was produced |