コード例 #1
0
ファイル: InputManager.cs プロジェクト: mono26/GGJ2018-2
    public static void InteractWithButton(string _buttonID, InputButtonStates _newbuttonState)
    {
        InputButton button = RetrieveButtonByID(_buttonID);

        if (button != null)
        {
            button.ChangeButtonState(_newbuttonState);
        }
        return;
    }