love.graphics.draw( string, x, y, angle )
Draws rotated text in the current color.
Usage
love.graphics.draw( string, x, y, angle )
Arguments
stringA text string.
xThe position on the x-axis.
yThe position on the y-axis.
angleThe angle of rotation (in degrees).
Returns
Nothing
Examples
Example 1: Draw some rotated text.
love.graphics.draw("This is text is slanted!", 100, 100, 20)