Equals() static private method

static private Equals ( Playable lhs, Playable rhs ) : bool
lhs Playable
rhs Playable
return bool
コード例 #1
0
 public override unsafe bool Equals(object p)
 {
     return(Playables.Equals(*((Playable *)this), p));
 }
コード例 #2
0
 public override unsafe bool Equals(object p) =>
 Playables.Equals(*((Playable *)this), p);
コード例 #3
0
 public static bool operator !=(AnimationClipPlayable x, Playable y)
 {
     return(!Playables.Equals((Playable)x, y));
 }
コード例 #4
0
 public static bool operator ==(AnimationLayerMixerPlayable x, Playable y)
 {
     return(Playables.Equals((Playable)x, y));
 }
コード例 #5
0
 public static bool operator !=(AnimationPlayable x, Playable y) =>
 !Playables.Equals((Playable)x, y);
コード例 #6
0
 public static bool operator !=(AnimationMixerPlayable x, Playable y)
 {
     return(!Playables.Equals(x, y));
 }
コード例 #7
0
 public override bool Equals(object p)
 {
     return(Playables.Equals(this, p));
 }
コード例 #8
0
 public static bool operator ==(AnimationClipPlayable x, Playable y) =>
 Playables.Equals((Playable)x, y);
コード例 #9
0
 public static bool operator !=(AnimatorControllerPlayable x, Playable y)
 {
     return(!Playables.Equals((Playable)x, y));
 }
コード例 #10
0
 public static bool operator ==(AnimationPlayable x, Playable y)
 {
     return(Playables.Equals(x, y));
 }