Navigation
API > API/Plugins > API/Plugins/DynamicMesh > API/Plugins/DynamicMesh/FMeshMapEvaluator
Accumulate mode informs the baker how samples should be accumulated into the buffer.
| Name | EAccumulateMode |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/GeometryProcessing/Source/DynamicMesh/Public/Sampling/MeshMapEvaluator.h |
| Include Path | #include "Sampling/MeshMapEvaluator.h" |
Syntax
enum EAccumulateMode
{
Add,
Overwrite,
Last,
}
Values
| Name | Remarks |
|---|---|
| Add | Accumulate sample results (valid & default) into the buffer. |
| Overwrite | Overwrite the previous sample result with the new value into the buffer. |
| Last | Last mode. Used to count modes. Ensure this is always last. |