diff options
author | Pawel Lampe <pawel.lampe@gmail.com> | 2024-01-29 22:28:01 +0100 |
---|---|---|
committer | Pawel Lampe <pawel.lampe@gmail.com> | 2024-02-05 22:04:22 +0100 |
commit | c2cfc0d409b5adf892c6daa86d128f6e98633bee (patch) | |
tree | a4bd096edc45131e5da177295ddabe802b7d64be /scene/2d/navigation_region_2d.cpp | |
parent | 4b6ad349886288405890b07d4a8da425eb3c97ec (diff) | |
download | redot-engine-c2cfc0d409b5adf892c6daa86d128f6e98633bee.tar.gz |
Expose `is_baking` method in navigation servers and region nodes.
Diffstat (limited to 'scene/2d/navigation_region_2d.cpp')
-rw-r--r-- | scene/2d/navigation_region_2d.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scene/2d/navigation_region_2d.cpp b/scene/2d/navigation_region_2d.cpp index 00c0912690..9a689c0f21 100644 --- a/scene/2d/navigation_region_2d.cpp +++ b/scene/2d/navigation_region_2d.cpp @@ -253,6 +253,10 @@ void NavigationRegion2D::_bake_finished(Ref<NavigationPolygon> p_navigation_poly emit_signal(SNAME("bake_finished")); } +bool NavigationRegion2D::is_baking() const { + return NavigationServer2D::get_singleton()->is_baking_navigation_polygon(navigation_polygon); +} + void NavigationRegion2D::_navigation_polygon_changed() { if (is_inside_tree() && (Engine::get_singleton()->is_editor_hint() || get_tree()->is_debugging_navigation_hint())) { queue_redraw(); @@ -320,6 +324,7 @@ void NavigationRegion2D::_bind_methods() { ClassDB::bind_method(D_METHOD("get_travel_cost"), &NavigationRegion2D::get_travel_cost); ClassDB::bind_method(D_METHOD("bake_navigation_polygon", "on_thread"), &NavigationRegion2D::bake_navigation_polygon, DEFVAL(true)); + ClassDB::bind_method(D_METHOD("is_baking"), &NavigationRegion2D::is_baking); ClassDB::bind_method(D_METHOD("_navigation_polygon_changed"), &NavigationRegion2D::_navigation_polygon_changed); |