HorizontalAlign.lua 506 B

12345678910111213141516171819202122
  1. return {
  2. summary = 'Different ways to horizontally align text.',
  3. description = 'Different ways to horizontally align text when using `lovr.graphics.print`.',
  4. values = {
  5. {
  6. name = 'left',
  7. description = 'Left aligned lines of text.'
  8. },
  9. {
  10. name = 'center',
  11. description = 'Centered aligned lines of text.'
  12. },
  13. {
  14. name = 'right',
  15. description = 'Right aligned lines of text.'
  16. }
  17. },
  18. related = {
  19. 'VerticalAlign',
  20. 'lovr.graphics.print'
  21. }
  22. }