Navigation
API > API/Runtime > API/Runtime/Projects
How the localization target's localization config files are generated during the localization gather pipeline.
| Name | ELocalizationConfigGenerationPolicy::Type |
| Type | enum |
| Header File | /Engine/Source/Runtime/Projects/Public/LocalizationDescriptor.h |
| Include Path | #include "LocalizationDescriptor.h" |
Syntax
namespace ELocalizationConfigGenerationPolicy
{
enum Type
{
Never,
User,
Auto,
Max,
}
}
Values
| Name | Remarks |
|---|---|
| Never | This localization target does not have localization config files associated with it and no localization content files will be generated for it during the localizaiton pipeline. |
| User | The user has provided localization config files for this localization target and they will be used to generate the localization content files for the localization target. |
| Auto | Temporary localization config files will be generated for the localization target during the localization pipeline to generate the localization content files. |
| Max | NOTE: If you add a new value, make sure to update the ToString() method below!. |