18 lines
474 B
C#
18 lines
474 B
C#
|
//======= 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;
|
|||
|
}
|
|||
|
}
|