示例#1
0
    /* PUBLIC VARS */

    /* INITIALIZATION */
    public JoystickAction(InControl.InputControlType pControlType) : base(pControlType)
    {
    }
示例#2
0
 /* INITIALIZATION */
 public InputAction(InControl.InputControlType pControlType)
 {
     controlType = pControlType;
 }
示例#3
0
 /* INITIALIZATION */
 public ButtonAction(InControl.InputControlType pControlType, bool pIsHold = false, float pHoldTime = 0f)
     : base(pControlType)
 {
     isHold   = pIsHold;
     holdTime = pHoldTime;
 }