holopy3/Assets/SteamVR/InteractionSystem/Core/Scripts/CustomEvents.cs

29 lines
716 B
C#
Raw Normal View History

2020-12-10 14:25:12 +00:00
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: Custom Unity Events that take in additional parameters
//
//=============================================================================
using UnityEngine.Events;
using System;
namespace Valve.VR.InteractionSystem
{
//-------------------------------------------------------------------------
public static class CustomEvents
{
//-------------------------------------------------
[System.Serializable]
public class UnityEventSingleFloat : UnityEvent<float>
{
}
//-------------------------------------------------
[System.Serializable]
public class UnityEventHand : UnityEvent<Hand>
{
}
}
}