Expose get_mesh() for NavigationPolygon Resources

Expose get_mesh() for NavigationPolygon Resources.

(cherry picked from commit 8bcce0ebb2)
This commit is contained in:
smix8 2022-06-02 09:25:42 +02:00 committed by Rémi Verschelde
parent 106bf9b793
commit c111d6b621
2 changed files with 7 additions and 0 deletions

View file

@ -61,6 +61,12 @@
Clears the array of polygons, but it doesn't clear the array of outlines and vertices. Clears the array of polygons, but it doesn't clear the array of outlines and vertices.
</description> </description>
</method> </method>
<method name="get_mesh">
<return type="NavigationMesh" />
<description>
Returns the [NavigationMesh] resulting from this navigation polygon. This navmesh can be used to update the navmesh of a region with the [method NavigationServer.region_set_navmesh] API directly (as 2D uses the 3D server behind the scene).
</description>
</method>
<method name="get_outline" qualifiers="const"> <method name="get_outline" qualifiers="const">
<return type="PoolVector2Array" /> <return type="PoolVector2Array" />
<argument index="0" name="idx" type="int" /> <argument index="0" name="idx" type="int" />

View file

@ -326,6 +326,7 @@ void NavigationPolygon::_bind_methods() {
ClassDB::bind_method(D_METHOD("get_polygon_count"), &NavigationPolygon::get_polygon_count); ClassDB::bind_method(D_METHOD("get_polygon_count"), &NavigationPolygon::get_polygon_count);
ClassDB::bind_method(D_METHOD("get_polygon", "idx"), &NavigationPolygon::get_polygon); ClassDB::bind_method(D_METHOD("get_polygon", "idx"), &NavigationPolygon::get_polygon);
ClassDB::bind_method(D_METHOD("clear_polygons"), &NavigationPolygon::clear_polygons); ClassDB::bind_method(D_METHOD("clear_polygons"), &NavigationPolygon::clear_polygons);
ClassDB::bind_method(D_METHOD("get_mesh"), &NavigationPolygon::get_mesh);
ClassDB::bind_method(D_METHOD("add_outline", "outline"), &NavigationPolygon::add_outline); ClassDB::bind_method(D_METHOD("add_outline", "outline"), &NavigationPolygon::add_outline);
ClassDB::bind_method(D_METHOD("add_outline_at_index", "outline", "index"), &NavigationPolygon::add_outline_at_index); ClassDB::bind_method(D_METHOD("add_outline_at_index", "outline", "index"), &NavigationPolygon::add_outline_at_index);