Difference between revisions of "love.graphics.printf"
Dreadkillz (talk | contribs) |
Dreadkillz (talk | contribs) m (typo) |
||
Line 24: | Line 24: | ||
Note that the third argument in love.graphics.printf affects the position of your text for 'center' and 'right' alignment. | Note that the third argument in love.graphics.printf affects the position of your text for 'center' and 'right' alignment. | ||
<source lang="lua"> | <source lang="lua"> | ||
− | love.graphics.printf("This text is aligned center",100, 100, 200,"center") -- center your text around x = | + | love.graphics.printf("This text is aligned center",100, 100, 200,"center") -- center your text around x = 200 |
love.graphics.printf("This text is aligned right",100, 100, 200,"right") -- align right to x = 300 | love.graphics.printf("This text is aligned right",100, 100, 200,"right") -- align right to x = 300 | ||
</source> | </source> |
Revision as of 10:43, 24 June 2012
Draws formatted text, with word wrap and alignment.
See additional notes in love.graphics.print.
Contents
Function
Synopsis
love.graphics.printf( text, x, y, limit, align )
Arguments
string text
- A text string.
number x
- The position on the x-axis.
number y
- The position on the y-axis.
number limit
- Wrap the line after this many horizontal pixels.
AlignMode align ("left")
- The alignment.
Returns
Nothing.
Examples
Draw text to the screen with right alignment and a horizontal limit of 125.
love.graphics.printf("This text is aligned right, and wraps when it gets too big.", 25, 25, 125, "right")
Notes
Note that the third argument in love.graphics.printf affects the position of your text for 'center' and 'right' alignment.
love.graphics.printf("This text is aligned center",100, 100, 200,"center") -- center your text around x = 200
love.graphics.printf("This text is aligned right",100, 100, 200,"right") -- align right to x = 300
See Also
Other Languages
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info