InputFormatFlags Enum

The flags for formatting inputs used in TM::InputEventBuffer::ToCommandsText.

  • None - use numeric format and combine release inputs with press inputs
  • DecimalTime - use decimal time instead of numeric (e.g. 1.50 instead of 1500)
  • SeparateRelease - release inputs are separated from press inputs
  • Default - gets the default user settings and formats the inputs with them
enum InputFormatFlags {
None = 0,
DecimalTime = 1,
SeperateRelease = 2,
Default = 4
}