Unverified Commit 07498d31 by Ignacio Etcheverry Committed by GitHub

Merge pull request #26023 from RomanAkberov/quat-equals

C#: fix Quat.Equals.
parents 049bb75f 041a7bbe
......@@ -347,9 +347,9 @@ namespace Godot
public override bool Equals(object obj)
{
if (obj is Vector2)
if (obj is Quat)
{
return Equals((Vector2)obj);
return Equals((Quat)obj);
}
return false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment