diff options
Diffstat (limited to 'modules/mono/glue/Managed/Files/Quat.cs')
| -rw-r--r-- | modules/mono/glue/Managed/Files/Quat.cs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/glue/Managed/Files/Quat.cs b/modules/mono/glue/Managed/Files/Quat.cs index d0c15146a5..0d4349084a 100644 --- a/modules/mono/glue/Managed/Files/Quat.cs +++ b/modules/mono/glue/Managed/Files/Quat.cs @@ -358,7 +358,7 @@ namespace Godot          public bool Equals(Quat other)          { -            return x == other.x && y == other.y && z == other.z && w == other.w; +            return Mathf.IsEqualApprox(x, other.x) && Mathf.IsEqualApprox(y, other.y) && Mathf.IsEqualApprox(z, other.z) && Mathf.IsEqualApprox(w, other.w);          }          public override int GetHashCode()  |