public static bool IsButtonUp(string buttonName)
 {
     if (!isInputAllowed)
     {
         return(false);
     }
     return((m_instance != null && m_instance.GetButtonUp != null) ? m_instance.GetButtonUp(buttonName) : DefaultGetButtonUp(buttonName));
 }
示例#2
0
 public static bool IsButtonUp(string buttonName)
 {
     return((m_instance != null && m_instance.GetButtonUp != null) ? m_instance.GetButtonUp(buttonName) : DefaultGetButtonUp(buttonName));
 }