getWidth.lua 405 B

123456789101112131415161718
  1. return {
  2. tag = 'window',
  3. summary = 'Get the width of the window.',
  4. description = 'Returns the width of the desktop window.',
  5. arguments = {},
  6. returns = {
  7. {
  8. name = 'width',
  9. type = 'number',
  10. description = 'The width of the window, in pixels.'
  11. }
  12. },
  13. related = {
  14. 'lovr.graphics.getHeight',
  15. 'lovr.graphics.getDimensions',
  16. 'lovr.graphics.getPixelDensity'
  17. }
  18. }