summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorAaron Franke <arnfranke@yahoo.com>2021-03-16 02:27:53 -0400
committerAaron Franke <arnfranke@yahoo.com>2024-02-26 05:22:45 -0600
commit1cb531ddb6fedb5bed432eeaa17793a9e07f61ac (patch)
treee2c7744134fab73f7d4f1e12e38b53735cb594c2 /modules
parent8eb34cb78bc2df3715cfdfcf4562bd36ddf91f7f (diff)
downloadredot-engine-1cb531ddb6fedb5bed432eeaa17793a9e07f61ac.tar.gz
Move 2D-only resources to their own folder
Diffstat (limited to 'modules')
-rw-r--r--modules/navigation/2d/nav_mesh_generator_2d.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/navigation/2d/nav_mesh_generator_2d.cpp b/modules/navigation/2d/nav_mesh_generator_2d.cpp
index 836dee8178..9fdfb20842 100644
--- a/modules/navigation/2d/nav_mesh_generator_2d.cpp
+++ b/modules/navigation/2d/nav_mesh_generator_2d.cpp
@@ -38,13 +38,13 @@
#include "scene/2d/physics_body_2d.h"
#include "scene/2d/polygon_2d.h"
#include "scene/2d/tile_map.h"
-#include "scene/resources/capsule_shape_2d.h"
-#include "scene/resources/circle_shape_2d.h"
-#include "scene/resources/concave_polygon_shape_2d.h"
-#include "scene/resources/convex_polygon_shape_2d.h"
+#include "scene/resources/2d/capsule_shape_2d.h"
+#include "scene/resources/2d/circle_shape_2d.h"
+#include "scene/resources/2d/concave_polygon_shape_2d.h"
+#include "scene/resources/2d/convex_polygon_shape_2d.h"
+#include "scene/resources/2d/rectangle_shape_2d.h"
#include "scene/resources/navigation_mesh_source_geometry_data_2d.h"
#include "scene/resources/navigation_polygon.h"
-#include "scene/resources/rectangle_shape_2d.h"
#include "thirdparty/clipper2/include/clipper2/clipper.h"
#include "thirdparty/misc/polypartition.h"