Navigation
API > API/Runtime > API/Runtime/Engine
Enumerates types of blueprints.
| Name | EBlueprintType |
| Type | enum |
| Header File | /Engine/Source/Runtime/Engine/Classes/Engine/Blueprint.h |
| Include Path | #include "Engine/Blueprint.h" |
Syntax
enum EBlueprintType
{
BPTYPE_Normal,
BPTYPE_Const,
BPTYPE_MacroLibrary,
BPTYPE_Interface,
BPTYPE_LevelScript,
BPTYPE_FunctionLibrary,
BPTYPE_MAX,
}
Values
| Name | Remarks |
|---|---|
| BPTYPE_Normal | Normal blueprint. |
| BPTYPE_Const | Blueprint that is const during execution (no state graph and methods cannot modify member variables). |
| BPTYPE_MacroLibrary | Blueprint that serves as a container for macros to be used in other blueprints. |
| BPTYPE_Interface | Blueprint that serves as an interface to be implemented by other blueprints. |
| BPTYPE_LevelScript | Blueprint that handles level scripting. |
| BPTYPE_FunctionLibrary | Blueprint that serves as a container for functions to be used in other blueprints. |
| BPTYPE_MAX |