Merge pull request #26023 from RomanAkberov/quat-equals
C#: fix Quat.Equals.
This commit is contained in:
commit
07498d313c
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue