Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
operator!=()
static
bool
Microsoft.Xna.Framework.CurveKey.operator!=
(
CurveKey
a
,
CurveKey
b
)
inline
static
Definition at line
131
of file
CurveKey.cs
.
132
{
133
bool
flag =
false
;
134
bool
flag2 = a ==
null
;
135
bool
flag3 = b ==
null
;
136
if
(flag2 || flag3)
137
{
138
return
flag2 != flag3;
139
}
140
return
a.position != b.position || a.internalValue != b.internalValue || a.tangentIn != b.tangentIn || a.tangentOut != b.tangentOut || a.continuity != b.continuity;
141
}
References
Microsoft.Xna.Framework.CurveKey.continuity
.
Microsoft
Xna
Framework
CurveKey
Generated by
1.10.0