Navigation
API > API/Editor > API/Editor/ContentBrowserData
Flags denoting the save behavior of items
| Name | EContentBrowserItemSaveFlags |
| Type | enum |
| Header File | /Engine/Source/Editor/ContentBrowserData/Public/ContentBrowserItemData.h |
| Include Path | #include "ContentBrowserItemData.h" |
Syntax
enum EContentBrowserItemSaveFlags
{
None = 0,
SaveOnlyIfDirty = 1<<0,
SaveOnlyIfLoaded = 1<<1,
}
Values
| Name | Remarks |
|---|---|
| None | No flags |
| SaveOnlyIfDirty | Save the item only if it is considered dirty |
| SaveOnlyIfLoaded | Save the item only if it is currently loaded (will load the item if required when this flag isn't set) |