Navigation
API > API/Runtime > API/Runtime/Engine
Enumerates states a blueprint can be in.
| Name | EBlueprintStatus |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/Blueprint.h |
| Include Path | #include "Engine/Blueprint.h" |
Syntax
enum EBlueprintStatus
{
BS_Unknown,
BS_Dirty,
BS_Error,
BS_UpToDate,
BS_BeingCreated,
BS_UpToDateWithWarnings,
BS_MAX,
}
Values
| Name | Remarks |
|---|---|
| BS_Unknown | Blueprint is in an unknown state. |
| BS_Dirty | Blueprint has been modified but not recompiled. |
| BS_Error | Blueprint tried but failed to be compiled. |
| BS_UpToDate | Blueprint has been compiled since it was last modified. |
| BS_BeingCreated | Blueprint is in the process of being created for the first time. |
| BS_UpToDateWithWarnings | Blueprint has been compiled since it was last modified. There are warnings. |
| BS_MAX |