getDescent.lua 475 B

12345678910111213141516
  1. return {
  2. summary = 'Get the descent of the Font.',
  3. description = [[
  4. Returns the maximum distance that any glyph will extend below the Font's baseline. Units are
  5. generally in meters, see `Font:getPixelDensity` for more information. Note that due to the
  6. coordinate system for fonts, this is a negative value.
  7. ]],
  8. arguments = {},
  9. returns = {
  10. {
  11. name = 'descent',
  12. type = 'number',
  13. description = 'The descent of the Font.'
  14. }
  15. }
  16. }