Navigation
API > API/Plugins > API/Plugins/MetasoundGraphCore > API/Plugins/MetasoundGraphCore/FOperatorBuilder > API/Plugins/MetasoundGraphCore/FOperatorBuilder/FBuildStatus
Enumeration of build status states.
Note: plain enum used here instead of enum class so that implicit conversion to int32 can be utilized. It is assumed that the build status int32 values increase as the build status deteriorates. Build statuses are merged by taking the maximum int32 value of the EStatus.
| Name | EStatus |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/Metasound/Source/MetasoundGraphCore/Public/MetasoundOperatorBuilder.h |
| Include Path | #include "MetasoundOperatorBuilder.h" |
Syntax
enum EStatus
{
NoError = 0,
NonFatalError = 1,
FatalError = 2,
}
Values
| Name | Remarks |
|---|---|
| NoError | No error has been encountered. |
| NonFatalError | A non fatal error has been encountered. |
| FatalError | A fatal error has been encountered. |