Example #1
0
 void Update()
 {
     if (InputDeviceManager.IsKeyDown(key) || (!string.IsNullOrEmpty(buttonName) && InputDeviceManager.IsButtonDown(buttonName)))
     {
         ExecuteEvents.Execute(m_selectable.gameObject, new PointerEventData(EventSystem.current), ExecuteEvents.submitHandler);
     }
 }
 private void Update()
 {
     if (InputDeviceManager.IsKeyDown(key) ||
         (!string.IsNullOrEmpty(buttonName) && InputDeviceManager.IsButtonDown(buttonName)) ||
         (anyKeyOrButton && InputDeviceManager.IsAnyKeyDown()))
     {
         if (skipIfBeingClickedBySubmit && IsBeingClickedBySubmit())
         {
             return;
         }
         ExecuteEvents.Execute(m_selectable.gameObject, new PointerEventData(EventSystem.current), ExecuteEvents.submitHandler);
     }
 }