Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ operator!=()

static bool Microsoft.Xna.Framework.Vector3.operator!= ( Vector3 value1,
Vector3 value2 )
inlinestatic

Definition at line 845 of file Vector3.cs.

846 {
847 if (value1.X == value2.X && value1.Y == value2.Y)
848 {
849 return value1.Z != value2.Z;
850 }
851 return true;
852 }

References Microsoft.Xna.Framework.Vector3.X, Microsoft.Xna.Framework.Vector3.Y, and Microsoft.Xna.Framework.Vector3.Z.