The Swartz-Manning’s first exhibit will provide a detailed history of Aaron Swartz Day. https://www.aaronswartzday.org/vr
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }