Equals() static private method

static private Equals ( Playable lhs, Playable rhs ) : bool
lhs Playable
rhs Playable
return bool
Exemplo n.º 1
0
 public override unsafe bool Equals(object p)
 {
     return(Playables.Equals(*((Playable *)this), p));
 }
Exemplo n.º 2
0
 public override unsafe bool Equals(object p) =>
 Playables.Equals(*((Playable *)this), p);
Exemplo n.º 3
0
 public static bool operator !=(AnimationClipPlayable x, Playable y)
 {
     return(!Playables.Equals((Playable)x, y));
 }
 public static bool operator ==(AnimationLayerMixerPlayable x, Playable y)
 {
     return(Playables.Equals((Playable)x, y));
 }
Exemplo n.º 5
0
 public static bool operator !=(AnimationPlayable x, Playable y) =>
 !Playables.Equals((Playable)x, y);
Exemplo n.º 6
0
 public static bool operator !=(AnimationMixerPlayable x, Playable y)
 {
     return(!Playables.Equals(x, y));
 }
Exemplo n.º 7
0
 public override bool Equals(object p)
 {
     return(Playables.Equals(this, p));
 }
 public static bool operator ==(AnimationClipPlayable x, Playable y) =>
 Playables.Equals((Playable)x, y);
 public static bool operator !=(AnimatorControllerPlayable x, Playable y)
 {
     return(!Playables.Equals((Playable)x, y));
 }
Exemplo n.º 10
0
 public static bool operator ==(AnimationPlayable x, Playable y)
 {
     return(Playables.Equals(x, y));
 }