soundvision/UnityProject/Assets/ThridParty/SteamVR/Input/SteamVR_ActionDirections.cs

13 lines
305 B
C#
Raw Normal View History

2019-10-29 15:13:37 +00:00
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
namespace Valve.VR
{
/// <summary>
/// The direction the the action. In actions get input, Out actions send input.
/// </summary>
public enum SteamVR_ActionDirections
{
In,
Out,
}
}