コード例 #1
0
ファイル: VREyeRaycaster.cs プロジェクト: alishervr/VRMenu
 private void HandleDown()
 {
     if (m_CurrentInteractible != null)
     {
         m_CurrentInteractible.Down();
     }
 }
コード例 #2
0
 protected void HandleDown()
 {
     if (m_CurrentInteractible != null)
     {
         m_CurrentInteractible.Down();
     }
 }
コード例 #3
0
 private void HandleDown()
 {
     //Debug.Log("DOWN");
     if (m_CurrentInteractible != null)
     {
         m_CurrentInteractible.Down();
     }
 }
コード例 #4
0
 private void HandleDown()
 {
     if (!myLook)
     {
         print("!!!!!!!!!! Enable LOOK");
         myFuncLookSwitch(true);
     }
     else
     {
         if (m_CurrentInteractible != null)
         {
             m_CurrentInteractible.Down();
         }
         else // если "стреляем" мимо
         {
             print("!!!!!!!!!! Disable LOOK");
             myFuncLookSwitch(false);
         }
     }
 }