コード例 #1
0
ファイル: Input.cs プロジェクト: popcron/input
    public static new bool GetButtonUp(string buttonName)
    {
        if (!Enabled)
        {
            return(false);
        }

        return(UnityInput.GetButtonUp(buttonName));
    }
コード例 #2
0
 public static bool IsNewButtonRelease(string name)
 {
     return(UnityInput.GetButtonUp(name));
 }