love.graphics.draw( string, x, y, angle, sx, sy )
Draws rotated text in the current color.
Usage
love.graphics.draw( string, x, y, angle, sx, sy )
Arguments
stringA text string.
xThe position on the x-axis.
yThe position on the y-axis.
angleThe angle of rotation (in degrees).
sxThe scale factor along the x-axis.
syThe scale factor along the y-axis.
Returns
Nothing
Examples
Example 1: Draw some rotated/scaled text.
love.graphics.draw("TALL TEXT", 100, 100, 0, 1, 2)
love.graphics.draw("WIDE TEXT", 100, 100, 0, 2, 1)
love.graphics.draw("ROTATEDLY SHORT TEXT", 100, 100, 20, 1, 0.5)