Navigation
API > API/Runtime > API/Runtime/Landscape
| |
|
| Name |
ELandscapeToolTargetTypeFlags |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Landscape/Public/LandscapeEditTypes.h |
| Include Path |
#include "LandscapeEditTypes.h" |
Syntax
enum ELandscapeToolTargetTypeFlags
{
None = 0,
Heightmap = (1 << static_cast<uint8>(ELandscapeToolTargetType::Heightmap)),
Weightmap = (1 << static_cast<uint8>(ELandscapeToolTargetType::Weightmap)),
Visibility = (1 << static_cast<uint8>(ELandscapeToolTargetType::Visibility)),
All = Heightmap | Weightmap | Visibility,
}
Values
| Name |
Remarks |
| None |
|
| Heightmap |
|
| Weightmap |
|
| Visibility |
|
| All |
|