Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/CookEnums.h |
| Include | #include "UObject/CookEnums.h" |
Syntax
namespace UE
{
namespace Cook
{
enum ECookResult
{
NotAttempted,
Succeeded,
Failed,
NeverCookPlaceholder,
Invalid,
Count,
NumBits = FPlatformMath::ConstExprCeilLogTwo(ECookResult::Count),
}
}
}
Values
| Name | Description |
|---|---|
| NotAttempted | CookResults have not yet been set |
| Succeeded | The package was saved with success. |
| Failed | The package was processed but SavePackage failed. |
| NeverCookPlaceholder | The package is a NeverCook package that needs to be added to cookresults for dependency tracking. |
| Invalid | No information for this platform (used in CookWorker replication) |
| Count | |
| NumBits |
Remarks
The Result of the Cook-Save of a package