The Swartz-Manning’s first exhibit will provide a detailed history of Aaron Swartz Day. https://www.aaronswartzday.org/vr
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IgnoreHovering.cs 528B

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