diff options
Diffstat (limited to 'scene/resources/plane_shape.h')
-rw-r--r-- | scene/resources/plane_shape.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scene/resources/plane_shape.h b/scene/resources/plane_shape.h index 88f3a04f05..899aad7e01 100644 --- a/scene/resources/plane_shape.h +++ b/scene/resources/plane_shape.h @@ -33,17 +33,16 @@ class PlaneShape : public Shape { - GDCLASS(PlaneShape,Shape); + GDCLASS(PlaneShape, Shape); Plane plane; protected: - static void _bind_methods(); virtual void _update_shape(); virtual Vector<Vector3> _gen_debug_mesh_lines(); -public: +public: void set_plane(Plane p_plane); Plane get_plane() const; |