Navigation
API > API/Runtime > API/Runtime/Navmesh
UE.
| Name | rcRasterizationFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Navmesh/Public/Recast/Recast.h |
| Include Path | #include "Recast/Recast.h" |
Syntax
enum rcRasterizationFlags
{
RC_PROJECT_TO_BOTTOM = 1 << 0,
RC_RASTERIZE_AS_FILLED_CONVEX = 1 << 1,
}
Values
| Name | Remarks |
|---|---|
| RC_PROJECT_TO_BOTTOM | Will create spans from the triangle surface to the bottom of the heightfield. |
| RC_RASTERIZE_AS_FILLED_CONVEX | Will rasterize all the triangles of a list into a single span for each (x,z) and then add all those spans in the heightfield //UE. |