diff options
Diffstat (limited to 'scene/resources/convex_polygon_shape.h')
-rw-r--r-- | scene/resources/convex_polygon_shape.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scene/resources/convex_polygon_shape.h b/scene/resources/convex_polygon_shape.h index 215de941c6..6701c41f0f 100644 --- a/scene/resources/convex_polygon_shape.h +++ b/scene/resources/convex_polygon_shape.h @@ -33,19 +33,18 @@ class ConvexPolygonShape : public Shape { - GDCLASS(ConvexPolygonShape,Shape); + GDCLASS(ConvexPolygonShape, Shape); PoolVector<Vector3> points; protected: - static void _bind_methods(); virtual void _update_shape(); virtual Vector<Vector3> _gen_debug_mesh_lines(); -public: - void set_points(const PoolVector<Vector3>& p_points); +public: + void set_points(const PoolVector<Vector3> &p_points); PoolVector<Vector3> get_points() const; ConvexPolygonShape(); |