summaryrefslogtreecommitdiff
path: root/scene/resources/capsule_shape.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scene/resources/capsule_shape.cpp')
-rw-r--r--scene/resources/capsule_shape.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/resources/capsule_shape.cpp b/scene/resources/capsule_shape.cpp
index 61331a336d..933129936a 100644
--- a/scene/resources/capsule_shape.cpp
+++ b/scene/resources/capsule_shape.cpp
@@ -69,6 +69,10 @@ Vector<Vector3> CapsuleShape::get_debug_mesh_lines() {
return points;
}
+real_t CapsuleShape::get_enclosing_radius() const {
+ return radius + height * 0.5;
+}
+
void CapsuleShape::_update_shape() {
Dictionary d;