summaryrefslogtreecommitdiffstats
path: root/servers/physics_server_3d.h
diff options
context:
space:
mode:
authorPouleyKetchoupp <pouleyketchoup@gmail.com>2021-09-14 10:52:35 -0700
committerPouleyKetchoupp <pouleyketchoup@gmail.com>2021-09-14 11:16:31 -0700
commitbb75aec8bcd52b37ec206e16c6b6b0237c7ba3fe (patch)
tree4e84395c2f0c6fa79126ef78a47b626537e7ac07 /servers/physics_server_3d.h
parentfd17ce1890dc9f24b71674b93e72fb1d978cf95b (diff)
downloadredot-engine-bb75aec8bcd52b37ec206e16c6b6b0237c7ba3fe.tar.gz
Rename WorldMarginShape to WorldBoundaryShape
Diffstat (limited to 'servers/physics_server_3d.h')
-rw-r--r--servers/physics_server_3d.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/servers/physics_server_3d.h b/servers/physics_server_3d.h
index 5677604682..590b0929b1 100644
--- a/servers/physics_server_3d.h
+++ b/servers/physics_server_3d.h
@@ -219,7 +219,7 @@ public:
static PhysicsServer3D *get_singleton();
enum ShapeType {
- SHAPE_PLANE, ///< plane:"plane"
+ SHAPE_WORLD_BOUNDARY, ///< plane:"plane"
SHAPE_SEPARATION_RAY, ///< float:"length"
SHAPE_SPHERE, ///< float:"radius"
SHAPE_BOX, ///< vec3:"extents"
@@ -234,7 +234,7 @@ public:
RID shape_create(ShapeType p_shape);
- virtual RID plane_shape_create() = 0;
+ virtual RID world_boundary_shape_create() = 0;
virtual RID separation_ray_shape_create() = 0;
virtual RID sphere_shape_create() = 0;
virtual RID box_shape_create() = 0;