mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 06:03:38 +00:00
Warn about plane shape usage, closes #26503
This commit is contained in:
parent
b63c506ad8
commit
9dd9737cb4
@ -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!");
|
||||
}
|
||||
|
||||
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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user