VerticalAlign.lua 528 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Different ways to vertically align text.',
  3. description = 'Different ways to vertically align text when using `lovr.graphics.print`.',
  4. values = {
  5. {
  6. name = 'top',
  7. description = 'Align the top of the text to the origin.'
  8. },
  9. {
  10. name = 'middle',
  11. description = 'Vertically center the text.'
  12. },
  13. {
  14. name = 'bottom',
  15. description = 'Align the bottom of the text to the origin.'
  16. }
  17. },
  18. related = {
  19. 'HorizontalAlign',
  20. 'lovr.graphics.print'
  21. }
  22. }