| 12345678910111213141516171819202122 |
- return {
- summary = 'Different ways to vertically align text.',
- description = 'Different ways to vertically align text when using `lovr.graphics.print`.',
- values = {
- {
- name = 'top',
- description = 'Align the top of the text to the origin.'
- },
- {
- name = 'middle',
- description = 'Vertically center the text.'
- },
- {
- name = 'bottom',
- description = 'Align the bottom of the text to the origin.'
- }
- },
- related = {
- 'HorizontalAlign',
- 'lovr.graphics.print'
- }
- }
|