Difference between revisions of "Text:addf"
(Created page) |
m |
||
Line 5: | Line 5: | ||
=== Synopsis === | === Synopsis === | ||
<source lang="lua"> | <source lang="lua"> | ||
− | Text:addf( textstring, wraplimit, alignmode, x, y, angle, sx, sy, ox, oy, kx, ky ) | + | index = Text:addf( textstring, wraplimit, alignmode, x, y, angle, sx, sy, ox, oy, kx, ky ) |
</source> | </source> | ||
=== Arguments === | === Arguments === | ||
Line 21: | Line 21: | ||
{{param|number|ky (0)|Shearing / skew factor (y-axis).}} | {{param|number|ky (0)|Shearing / skew factor (y-axis).}} | ||
=== Returns === | === Returns === | ||
− | + | {{param|number|index|An index number that can be used with [[Text:getWidth]] or [[Text:getHeight]].}} | |
== See Also == | == See Also == |
Revision as of 07:45, 24 November 2015
Available since LÖVE 0.10.0 |
This function is not supported in earlier versions. |
Adds additional formatted text to the Text object at the specified position.
Function
Synopsis
index = Text:addf( textstring, wraplimit, alignmode, x, y, angle, sx, sy, ox, oy, kx, ky )
Arguments
string textstring
- The text to add to the object.
number wraplimit
- The maximum width in pixels of the text before it gets automatically wrapped to a new line.
AlignMode align
- The alignment of the text.
number x
- The position of the new text (x-axis).
number y
- The position of the new text (y-axis).
number angle (0)
- Orientation (radians).
number sx (1)
- Scale factor (x-axis).
number sy (sx)
- Scale factor (y-axis).
number ox (0)
- Origin offset (x-axis).
number oy (0)
- Origin offset (y-axis).
number kx (0)
- Shearing / skew factor (x-axis).
number ky (0)
- Shearing / skew factor (y-axis).
Returns
number index
- An index number that can be used with Text:getWidth or Text:getHeight.
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