ARFaceUpdatedEventArgs.cs
1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
using System;
namespace UnityEngine.XR.ARFoundation
{
/// <summary>
/// Holds data relevant to the <see cref="ARFace.updated"/> event.
/// </summary>
public struct ARFaceUpdatedEventArgs : IEquatable<ARFaceUpdatedEventArgs>
{
/// <summary>
/// The <see cref="ARFace"/> component that was updated.
/// </summary>
public ARFace face { get; private set; }
/// <summary>
/// Constructor invoked by the <see cref="ARFaceManager"/> which triggered the event.
/// </summary>
/// <param name="face">The <see cref="ARFace"/> component that was updated.</param>
public ARFaceUpdatedEventArgs(ARFace face)
{
if (face == null)
throw new ArgumentNullException("face");
this.face = face;
}
public override int GetHashCode()
{
return (face == null) ? 0 : face.GetHashCode();
}
public override bool Equals(object obj)
{
if (!(obj is ARFaceUpdatedEventArgs))
return false;
return Equals((ARFaceUpdatedEventArgs)obj);
}
public bool Equals(ARFaceUpdatedEventArgs other)
{
return face == other.face;
}
public static bool operator==(ARFaceUpdatedEventArgs lhs, ARFaceUpdatedEventArgs rhs)
{
return lhs.Equals(rhs);
}
public static bool operator!=(ARFaceUpdatedEventArgs lhs, ARFaceUpdatedEventArgs rhs)
{
return !lhs.Equals(rhs);
}
}
}