Merge pull request #88919 from nongvantinh/fix-88834

Revise implementation of C# `Aabb.GetSupport` to match the implementation in `core`
This commit is contained in:
Rémi Verschelde 2024-05-21 11:22:36 +02:00
commit 0cf42d6273
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -318,9 +318,9 @@ namespace Godot
Vector3 ofs = _position + halfExtents;
return ofs + new Vector3(
dir.X > 0f ? -halfExtents.X : halfExtents.X,
dir.Y > 0f ? -halfExtents.Y : halfExtents.Y,
dir.Z > 0f ? -halfExtents.Z : halfExtents.Z);
dir.X > 0f ? halfExtents.X : -halfExtents.X,
dir.Y > 0f ? halfExtents.Y : -halfExtents.Y,
dir.Z > 0f ? halfExtents.Z : -halfExtents.Z);
}
/// <summary>