summaryrefslogtreecommitdiffstats
path: root/scene/resources/convex_polygon_shape.cpp
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-04-02 11:46:10 -0300
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2019-04-05 21:33:03 -0300
commitc7cfe5330c5903f23f020633ebe433f1f485dd87 (patch)
tree8753445b32ee14dd1bc41697383936163c59648a /scene/resources/convex_polygon_shape.cpp
parent9501900e1bd44b9aa2feb32b636c9bc9283a8363 (diff)
downloadredot-engine-c7cfe5330c5903f23f020633ebe433f1f485dd87.tar.gz
Make 'ConvexPolygonShape2D' start empty, so it's consistent with other shapes.
Diffstat (limited to 'scene/resources/convex_polygon_shape.cpp')
-rw-r--r--scene/resources/convex_polygon_shape.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/scene/resources/convex_polygon_shape.cpp b/scene/resources/convex_polygon_shape.cpp
index 98d3460ed2..5845e4be50 100644
--- a/scene/resources/convex_polygon_shape.cpp
+++ b/scene/resources/convex_polygon_shape.cpp
@@ -83,6 +83,4 @@ void ConvexPolygonShape::_bind_methods() {
ConvexPolygonShape::ConvexPolygonShape() :
Shape(PhysicsServer::get_singleton()->shape_create(PhysicsServer::SHAPE_CONVEX_POLYGON)) {
-
- //set_points(Vector3(1,1,1));
}