summaryrefslogtreecommitdiff
path: root/scene/resources/plane_shape.h
diff options
context:
space:
mode:
Diffstat (limited to 'scene/resources/plane_shape.h')
-rw-r--r--scene/resources/plane_shape.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/scene/resources/plane_shape.h b/scene/resources/plane_shape.h
index 8bea1268e5..360f9dbbe9 100644
--- a/scene/resources/plane_shape.h
+++ b/scene/resources/plane_shape.h
@@ -47,6 +47,10 @@ public:
Plane get_plane() const;
virtual Vector<Vector3> get_debug_mesh_lines();
+ virtual real_t get_enclosing_radius() const {
+ // Should be infinite?
+ return 0;
+ }
PlaneShape();
};