aboutsummaryrefslogtreecommitdiff
path: root/scene/resources/sphere_shape.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--scene/resources/sphere_shape.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/scene/resources/sphere_shape.h b/scene/resources/sphere_shape.h
index 96a84ce48..ae8a11d78 100644
--- a/scene/resources/sphere_shape.h
+++ b/scene/resources/sphere_shape.h
@@ -29,22 +29,20 @@
#ifndef SPHERE_SHAPE_H
#define SPHERE_SHAPE_H
-
#include "scene/resources/shape.h"
class SphereShape : public Shape {
- OBJ_TYPE(SphereShape,Shape);
+ OBJ_TYPE(SphereShape, Shape);
float radius;
protected:
-
static void _bind_methods();
virtual void _update_shape();
virtual Vector<Vector3> _gen_debug_mesh_lines();
-public:
+public:
void set_radius(float p_radius);
float get_radius() const;