3 namespace SiliconStudio.
Paradox.Input
30 NegativeButton = negativeButton;
31 PositiveButton = positiveButton;
48 float negativeValue = ((NegativeButton != null) ? NegativeButton.GetValue(manager) : 0.0f);
49 float positiveValue = (PositiveButton != null) ? PositiveButton.GetValue(manager) : 0.0f;
50 return positiveValue - negativeValue;
55 return string.Format(
"<{0} , {1}>", NegativeButton, PositiveButton);