Navigation
API > API/Plugins > API/Plugins/LandscapePatch
Determines how the patch is combined with the previous state of the landscape.
| Name | ELandscapeTexturePatchBlendMode |
| Type | enum |
| Header File | /Engine/Plugins/Editor/LandscapePatch/Source/LandscapePatch/Public/LandscapeTexturePatch.h |
| Include Path | #include "LandscapeTexturePatch.h" |
Syntax
enum ELandscapeTexturePatchBlendMode
{
AlphaBlend,
Additive,
Min,
Max,
}
Values
| Name | Remarks |
|---|---|
| AlphaBlend | Let the patch specify the actual target height, and blend that with the existing height using falloff/alpha. |
| Additive | Interpreting the landscape mid value as 0, use the texture patch as an offset to apply to the landscape. |
| Min | Like Alpha Blend mode, but limited to only lowering the existing landscape values. |
| Max | Like Alpha Blend mode, but limited to only raising the existing landscape values. |