public AxisHistory(KeyStroke keyStroke, float offsetTime, float newAxisThresholdMin, float newAxisThresholdMax) : base(keyStroke, offsetTime) { axisThresholdMin = newAxisThresholdMin; axisThresholdMax = newAxisThresholdMax; }
public ButtonHistory(ButtonEventType newButtonEventType, KeyStroke newKeyStroke, float newOffsetTime) : base(newKeyStroke, newOffsetTime) { buttonEventType = newButtonEventType; }
public KeyHistory(KeyStroke newKeyStroke, float newOffsetTime) { keyStroke = newKeyStroke; offsetTime = newOffsetTime; nextPressThreshold = Time.time - 1; }