NavMap Fix polygons being treated like triangle strips instead of triangle fans

This commit is contained in:
kleonc
2022-02-13 16:07:01 +01:00
parent 48ed0400bc
commit 5422d863e1
3 changed files with 32 additions and 69 deletions

View File

@ -131,6 +131,12 @@ struct NavigationPoly {
}
};
struct ClosestPointQueryResult {
Vector3 point;
Vector3 normal;
RID owner;
};
} // namespace gd
#endif // NAV_UTILS_H