IMHOTEP Framework
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Pages
IgnoreHovering.cs
1 //======= Copyright (c) Valve Corporation, All rights reserved. ===============
2 //
3 // Purpose: Makes this object ignore any hovering by the hands
4 //
5 //=============================================================================
6 
7 using UnityEngine;
8 
9 namespace Valve.VR.InteractionSystem
10 {
11  //-------------------------------------------------------------------------
12  public class IgnoreHovering : MonoBehaviour
13  {
14  [Tooltip( "If Hand is not null, only ignore the specified hand" )]
15  public Hand onlyIgnoreHand = null;
16  }
17 }