1
0
KF2-Dev-Scripts/Engine/Classes/Interface_PylonGeometryProvider.uc
2020-12-13 18:01:13 +03:00

18 lines
503 B
Ucode

/**
* Geometry exporter interface used for navmesh generation (Recast)
*/
interface Interface_PylonGeometryProvider
native(AI);
cpptext
{
/**
* Exports all path colliding geometry within pylon's bounds
* @param Pylon - bounding pylon
* @param Verts - list of exported vertices
* @param Faces - list of exported triangles, 3 indices to Verts array for each item
*/
virtual void GetPathCollidingGeometry(APylon* Pylon, TArray<FVector>& Verts, TArray<INT>& Faces) {};
}