Afterglow.Input.ButtonAction.Do C# (CSharp) Method

Do() public method

Sets the given action to be executed if the button is down or was pressed.
public Do ( System.Action action ) : void
action System.Action The action.
return void
        public void Do(Action action)
        {
            mAction = action;
        }