summaryrefslogtreecommitdiffstats
path: root/scene/2d/navigation_region_2d.cpp
diff options
context:
space:
mode:
authorsmix8 <52464204+smix8@users.noreply.github.com>2024-02-23 11:22:29 +0100
committersmix8 <52464204+smix8@users.noreply.github.com>2024-02-23 11:36:49 +0100
commit1cf407e7c9117a95cef98fd4a0a388e58120d069 (patch)
tree78be75c880fd9fe17ca9d16ad74ec037fa83e4bd /scene/2d/navigation_region_2d.cpp
parentf15ced3f188b2dfa3f2b9f1b1cda56774977b24f (diff)
downloadredot-engine-1cf407e7c9117a95cef98fd4a0a388e58120d069.tar.gz
Add debug visual for NavigationRegion2D bake rect
Adds debug visual for NavigationRegion2D bake rect.
Diffstat (limited to 'scene/2d/navigation_region_2d.cpp')
-rw-r--r--scene/2d/navigation_region_2d.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/scene/2d/navigation_region_2d.cpp b/scene/2d/navigation_region_2d.cpp
index 4a434fa3f8..5510b59903 100644
--- a/scene/2d/navigation_region_2d.cpp
+++ b/scene/2d/navigation_region_2d.cpp
@@ -177,6 +177,7 @@ void NavigationRegion2D::_notification(int p_what) {
if (is_inside_tree() && (Engine::get_singleton()->is_editor_hint() || NavigationServer2D::get_singleton()->get_debug_enabled()) && navigation_polygon.is_valid()) {
_update_debug_mesh();
_update_debug_edge_connections_mesh();
+ _update_debug_baking_rect();
}
#endif // DEBUG_ENABLED
} break;
@@ -659,3 +660,15 @@ void NavigationRegion2D::_update_debug_edge_connections_mesh() {
}
}
#endif // DEBUG_ENABLED
+
+#ifdef DEBUG_ENABLED
+void NavigationRegion2D::_update_debug_baking_rect() {
+ Rect2 baking_rect = get_navigation_polygon()->get_baking_rect();
+ if (baking_rect.has_area()) {
+ Vector2 baking_rect_offset = get_navigation_polygon()->get_baking_rect_offset();
+ Rect2 debug_baking_rect = Rect2(baking_rect.position.x + baking_rect_offset.x, baking_rect.position.y + baking_rect_offset.y, baking_rect.size.x, baking_rect.size.y);
+ Color debug_baking_rect_color = Color(0.8, 0.5, 0.7, 0.1);
+ draw_rect(debug_baking_rect, debug_baking_rect_color);
+ }
+}
+#endif // DEBUG_ENABLED