Merge pull request #38617 from madmiraal/fix-38514

Prevent CapsuleShape2D height from being less than zero.
This commit is contained in:
Rémi Verschelde 2020-05-10 13:06:05 +02:00 committed by GitHub
commit 2d8d311b12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -72,6 +72,9 @@ real_t CapsuleShape2D::get_radius() const {
void CapsuleShape2D::set_height(real_t p_height) {
height = p_height;
if (height < 0)
height = 0;
_update_shape();
}