Exemplo n.º 1
0
 public VirtualJoystickYTrigger(VirtualJoystick joystick, VirtualInput.ThresholdModes mode, float threshold)
 {
     this.joystick = joystick;
     Mode          = mode;
     Threshold     = threshold;
 }
Exemplo n.º 2
0
 public VirtualIntegerAxisTrigger(VirtualIntegerAxis axis, VirtualInput.ThresholdModes mode, int threshold)
 {
     this.axis = axis;
     Mode      = mode;
     Threshold = threshold;
 }