diff options
author | Nông Văn Tình <vannongtinh@gmail.com> | 2024-02-27 23:19:15 +0700 |
---|---|---|
committer | Nông Văn Tình <vannongtinh@gmail.com> | 2024-02-27 23:19:15 +0700 |
commit | 52c4abea17caae784380465d77c0b18d20e7fe52 (patch) | |
tree | f3f8206d8c368dd23c39b6cedbb513df4d83a4f5 /modules/mono | |
parent | 8f3e2a61130232e089f1da6062ebf53f986779b4 (diff) | |
download | redot-engine-52c4abea17caae784380465d77c0b18d20e7fe52.tar.gz |
Revise implementation to match the implementation in `core`
Fixes: #88834
Diffstat (limited to 'modules/mono')
-rw-r--r-- | modules/mono/glue/GodotSharp/GodotSharp/Core/Aabb.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/mono/glue/GodotSharp/GodotSharp/Core/Aabb.cs b/modules/mono/glue/GodotSharp/GodotSharp/Core/Aabb.cs index 63af6ee6e8..3256fe6278 100644 --- a/modules/mono/glue/GodotSharp/GodotSharp/Core/Aabb.cs +++ b/modules/mono/glue/GodotSharp/GodotSharp/Core/Aabb.cs @@ -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> |