Navigation
API > API/Editor > API/Editor/UnrealEd
Determines which workflows are available for a factory. All factories should support the default workflow!
| Name | EFactoryCreateWorkflow |
| Type | enum |
| Header File | /Engine/Source/Editor/UnrealEd/Classes/Factories/Factory.h |
| Include Path | #include "Factories/Factory.h" |
Syntax
enum EFactoryCreateWorkflow
{
Default = 1 << 0,
Asynchronous = 1 << 1,
}
Values
| Name | Remarks |
|---|---|
| Default | Synchronous asset creation (potentially with a modal dialog). |
| Asynchronous | Asynchronous asset creation (usually with a dialog). |