Merge pull request #83655 from golfinq/small-capsule-shape-fix

Replace confusing code in GodotCapsuleShape2D::get_supports
This commit is contained in:
Yuri Sizov 2023-12-22 17:19:48 +01:00
commit 6b403712f1

View file

@ -373,8 +373,7 @@ void GodotCapsuleShape2D::get_supports(const Vector2 &p_normal, Vector2 *r_suppo
if (h > 0 && Math::abs(n.x) > segment_is_valid_support_threshold) {
// make it flat
n.y = 0.0;
n.normalize();
n *= radius;
n.x = SIGN(n.x) * radius;
r_amount = 2;
r_supports[0] = n;