Navigation
API > API/Runtime > API/Runtime/Engine
| |
|
| Name |
EPackageAutoSaveType |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Engine/Classes/Engine/EngineTypes.h |
| Include Path |
#include "Engine/EngineTypes.h" |
Syntax
enum EPackageAutoSaveType
{
None = 0,
Transient = 1 << 0,
Persistent = 1 << 1,
Any = Transient | Persistent,
}
Values
| Name |
Remarks |
| None |
No auto-save is happening |
| Transient |
The auto-save is happening to a transient directory (eg, the Saved/Autosaves directory) and doesn't directly replace the persistent project content |
| Persistent |
The auto-save is happening directly to the persistent project content, though a backup may still be made in a transient directory |
| Any |
The auto-save is happening for any reason |