Files

13 lines
368 B
C#
Raw Permalink Normal View History

using UnityEngine.Events;
namespace VRSDK.Events
{
/// <summary>
/// Event that gets called when the grab state change, we extend from UnityEvent<GrabState> so we can see this onn the inspector and add some listeners by hand if we want
/// </summary>
[System.Serializable]
public class OnGrabStateChangeEvent : UnityEvent<GrabState> { }
}