Ejemplo n.º 1
0
    public static void InteractWithButton(string _buttonID, InputButtonStates _newbuttonState)
    {
        InputButton button = RetrieveButtonByID(_buttonID);

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