getDisplayFrequency.lua 353 B

12345678910111213
  1. return {
  2. tag = 'headset',
  3. summary = 'Get the refresh rate of the headset display.',
  4. description = 'Returns the refresh rate of the headset display, in Hz.',
  5. arguments = {},
  6. returns = {
  7. {
  8. name = 'frequency',
  9. type = 'number',
  10. description = 'The frequency of the display, or `nil` if I have no idea what it is.'
  11. }
  12. }
  13. }