Navigation
API > API/Editor > API/Editor/UnrealEd > API/Editor/UnrealEd/ICookPackageSplitter
Return value for the DoesGeneratedRequireGenerator function. All levels behave correctly, but provide different tradeoffs of guarantees to the splitter versus performance.
| Name | EGeneratedRequiresGenerator |
| Type | enum |
| Header File | /Engine/Source/Editor/UnrealEd/Public/CookPackageSplitter.h |
| Include Path | #include "CookPackageSplitter.h" |
Syntax
enum EGeneratedRequiresGenerator
{
None,
Populate,
Save,
Count,
}
Values
| Name | Remarks |
|---|---|
| None | ReportGenerationManifest will be called before PopulateGeneratedPackage. |
| Populate | ReportGenerationManifest and PopulateGenerator will be called before PopulateGeneratedPackage. |
| Save | ReportGenerationManifest, PopulateGenerator, PreSaveGenerator, and PostSaveGenerator will be called before PopulateGeneratedPackage. |
| Count |