Navigation
API > API/Plugins > API/Plugins/PCG
| |
|
| Name |
EPCGBlurElementMode |
| Type |
enum |
| Header File |
/Engine/Plugins/PCG/Source/PCG/Public/Elements/PCGBlurElement.h |
| Include Path |
#include "Elements/PCGBlurElement.h" |
Syntax
enum EPCGBlurElementMode
{
Constant,
Linear,
Gaussian,
}
Values
| Name |
Remarks |
| Constant |
Same weight for each point, which will be 1 / N, N being the number of points found in the given distance. |
| Linear |
Weight for Point will be 1 - Dist(Point, Center) / SearchDistance. |
| Gaussian |
Weight will be a gaussian distribution. |