What I need is a summary of the wiki entry for each function including
- Name
- Arguments
- Return values
- Description
- Version
- (Example)
Code: Select all
love.graphics.draw( drawable, x, y, r, sx, sy, ox, oy, kx, ky )
0.9.0 | love.graphics.draw( texture, quad, x, y, r, sx, sy, ox, oy, kx, ky )
11.0 | love.graphics.draw( drawable, transform )
11.0 | love.graphics.draw( texture, quad, transform )
Draws a Drawable object (an Image, Canvas, SpriteBatch, ParticleSystem, Mesh, Text object, or Video) on the screen with optional rotation, scaling and shearing.
Code: Select all
love.graphics.line( x1, y1, x2, y2, ... )
love.graphics.line( points )
Draws lines between points.