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

18 lines
474 B
C#
Raw Normal View History

2020-12-10 14:25:12 +00:00
//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: A linear mapping value that is used by other components
//
//=============================================================================
using UnityEngine;
using System.Collections;
namespace Valve.VR.InteractionSystem
{
//-------------------------------------------------------------------------
public class LinearMapping : MonoBehaviour
{
public float value;
}
}