Navigation
API > API/Runtime > API/Runtime/Landscape
| |
|
| Name |
UE::Landscape::EOutdatedDataFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Landscape/Public/LandscapeEditTypes.h |
| Include Path |
#include "LandscapeEditTypes.h" |
Syntax
namespace UE
{
namespace Landscape
{
enum EOutdatedDataFlags
{
None = 0,
GrassMaps = (1 << 0),
PhysicalMaterials = (1 << 1),
NaniteMeshes = (1 << 2),
PackageModified = (1 << 3),
LastPlusOne,
Last = LastPlusOne - 1,
All = (GrassMaps | PhysicalMaterials | NaniteMeshes | PackageModified),
}
}
}
Values
| Name |
Remarks |
| None |
|
| GrassMaps |
Actual flags : |
| PhysicalMaterials |
|
| NaniteMeshes |
|
| PackageModified |
|
| LastPlusOne |
Not real flags, only useful to loop through the actual flags : |
| Last |
|
| All |
Combined flags : |