Navigation
API > API/Plugins > API/Plugins/PCG > API/Plugins/PCG/Elements
References
| |
|
| Module |
PCG |
| Header |
/Engine/Plugins/PCG/Source/PCG/Public/Elements/PCGBlurElement.h |
| Include |
#include "Elements/PCGBlurElement.h" |
Syntax
enum EPCGBlurElementMode
{
Constant,
Linear,
Gaussian,
}
Values
| Name |
Description |
| 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. |