summaryrefslogtreecommitdiffstats
path: root/modules/navigation/SCsub
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-06-29 12:50:49 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-06-29 12:50:49 +0200
commitd0c1dd16ee101fa51448c896372cbfa487705ee4 (patch)
tree3184b32ff1272c088b9e06e85b58cbf0ad5c5ddf /modules/navigation/SCsub
parentc83f912bcb33d441b90afe36bad38880acbe5f15 (diff)
downloadredot-engine-d0c1dd16ee101fa51448c896372cbfa487705ee4.tar.gz
Revert "Update RVO2 to git 2022.09"
This reverts commit c92088110567bd9c61aa046e9a93bdbc6469073e. Fixes #78826.
Diffstat (limited to 'modules/navigation/SCsub')
-rw-r--r--modules/navigation/SCsub18
1 files changed, 7 insertions, 11 deletions
diff --git a/modules/navigation/SCsub b/modules/navigation/SCsub
index 18a8d550ec..46bcb0fba4 100644
--- a/modules/navigation/SCsub
+++ b/modules/navigation/SCsub
@@ -37,12 +37,10 @@ if env["builtin_recastnavigation"]:
if env["builtin_rvo2_2d"]:
thirdparty_dir = "#thirdparty/rvo2/rvo2_2d/"
thirdparty_sources = [
- "Agent2d.cc",
- "Obstacle2d.cc",
- "KdTree2d.cc",
- "Line.cc",
- "RVOSimulator2d.cc",
- "Vector2.cc",
+ "Agent2d.cpp",
+ "Obstacle2d.cpp",
+ "KdTree2d.cpp",
+ "RVOSimulator2d.cpp",
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]
@@ -56,11 +54,9 @@ if env["builtin_rvo2_2d"]:
if env["builtin_rvo2_3d"]:
thirdparty_dir = "#thirdparty/rvo2/rvo2_3d/"
thirdparty_sources = [
- "Agent3d.cc",
- "KdTree3d.cc",
- "Plane.cc",
- "RVOSimulator3d.cc",
- "Vector3.cc",
+ "Agent3d.cpp",
+ "KdTree3d.cpp",
+ "RVOSimulator3d.cpp",
]
thirdparty_sources = [thirdparty_dir + file for file in thirdparty_sources]