Browse Source

Warn about plane shape usage, closes #26503

Juan Linietsky 6 years ago
parent
commit
9dd9737cb4
1 changed files with 4 additions and 0 deletions
  1. 4 0
      scene/3d/collision_shape.cpp

+ 4 - 0
scene/3d/collision_shape.cpp

@@ -124,6 +124,10 @@ String CollisionShape::get_configuration_warning() const {
 		return TTR("A shape must be provided for CollisionShape to function. Please create a shape resource for it!");
 		return TTR("A shape must be provided for CollisionShape to function. Please create a shape resource for it!");
 	}
 	}
 
 
+	if (shape->is_class("PlaneShape")) {
+		return TTR("Plane shapes don't work well and will be removed in future versions. Please don't use them.");
+	}
+
 	return String();
 	return String();
 }
 }