getFont.lua 297 B

12345678910111213141516
  1. return {
  2. tag = 'graphicsState',
  3. summary = 'Get the active font.',
  4. description = 'Returns the active font.',
  5. arguments = {},
  6. returns = {
  7. {
  8. name = 'font',
  9. type = 'Font',
  10. description = 'The active font object.'
  11. }
  12. },
  13. related = {
  14. 'lovr.graphics.print'
  15. }
  16. }