pollEvents.lua 526 B

1234567891011121314151617181920
  1. return {
  2. tag = 'system-window',
  3. summary = 'Poll the OS for new window events.',
  4. description = [[
  5. Fills the event queue with unprocessed events from the operating system. This function should
  6. be called often, otherwise the operating system will consider the application unresponsive.
  7. This function is called in the default implementation of `lovr.run`.
  8. ]],
  9. arguments = {},
  10. returns = {},
  11. variants = {
  12. {
  13. arguments = {},
  14. returns = {}
  15. }
  16. },
  17. related = {
  18. 'lovr.event.poll'
  19. }
  20. }