C#: fix Quat.Equals.
This commit is contained in:
parent
049bb75f9e
commit
041a7bbeba
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