love.graphics.setLineStyle

love.graphics.setLineStyle Sets the line style. Function Synopsis love.graphics.setLineStyle( style ) Arguments LineStyle style The LineStyle to use. Line styles include smooth and rough. Returns Nothing. See Also love.graphics love.graphics.getLineStyle love.graphics.setLineWidth

love.graphics.setLineStipple

love.graphics.setLineStipple Removed in LÖVE 0.8.0 This function is not supported in that and later versions. Sets the line stipple pattern. Function Synopsis love.graphics.setLineStipple( pattern, repeat ) Arguments number pattern A 16-bit pattern. number repeat (1) Repeat factor. Returns Nothing. Additional Information A stipple pattern is made up of a 16bit sequence of 0s and 1s, Just like binary. The pattern is repeated to complete the line. Using the repeat will stretch the patt

love.graphics.setLineJoin

love.graphics.setLineJoin Sets the line join style. See LineJoin for the possible options. Function Synopsis love.graphics.setLineJoin( join ) Arguments LineJoin join The LineJoin to use. Returns Nothing. See Also love.graphics love.graphics.getLineJoin

love.graphics.setLine

love.graphics.setLine Removed in LÖVE 0.9.0 Use love.graphics.setLineWidth and love.graphics.setLineStyle. Sets the line width and style. Function Synopsis love.graphics.setLine( width, style ) Arguments number width The width of the line. LineStyle style ("smooth") The LineStyle to use. Returns Nothing. Example love.graphics.setLine(2, "smooth") love.graphics.line(15, 25, 69, 89) See Also love.graphics love.graphics.setLineWidth love.graphics.setLineStyle

love.graphics.setInvertedStencil

love.graphics.setInvertedStencil Available since LÖVE 0.8.0 and removed in LÖVE 0.10.0 It has been replaced by love.graphics.stencil and love.graphics.setStencilTest. Defines an inverted stencil for the drawing operations or releases the active one. It's the same as love.graphics.setStencil with the mask inverted. Function Synopsis love.graphics.setInvertedStencil( stencilFunction ) Arguments function stencilFunction Function that draws the stencil. Returns Nothing. Function Releases

love.graphics.setIcon

love.graphics.setIcon Removed in LÖVE 0.9.0 Moved to the love.window module as love.window.setIcon. Available since LÖVE 0.7.0 This function is not supported in earlier versions. Set window icon. This feature is not completely supported on Windows (apparently an SDL bug, not a LOVE bug: [1]). Function Synopsis love.graphics.setIcon( image ) Arguments Image image The window icon. Returns Nothing. See Also love.graphics

love.graphics.setFont

love.graphics.setFont Set an already-loaded Font as the current font or create and load a new one from the file and size. It's recommended that Font objects are created with love.graphics.newFont in the loading stage and then passed to this function in the drawing stage. Function Synopsis love.graphics.setFont( font ) Arguments Font font The Font object to use. Returns Nothing. Function Removed in LÖVE 0.8.0 This variant is not supported in that and later versions. Synopsis love.graph

love.graphics.setDefaultImageFilter

love.graphics.setDefaultImageFilter Available since LÖVE 0.8.0 and removed in LÖVE 0.9.0 It has been renamed to love.graphics.setDefaultFilter. Sets the default scaling filters. Function Synopsis love.graphics.setDefaultImageFilter( min, mag ) Arguments FilterMode min Filter mode used when scaling the image down. FilterMode mag Filter mode used when scaling the image up. Returns Nothing. Notes This function does not apply retroactively to loaded images. See Also love.graphics love

love.graphics.setDefaultFilter

love.graphics.setDefaultFilter Available since LÖVE 0.9.0 It has been renamed from love.graphics.setDefaultImageFilter. Sets the default scaling filters used with Images, Canvases, and Fonts. Function Synopsis love.graphics.setDefaultFilter( min, mag, anisotropy ) Arguments FilterMode min Filter mode used when scaling the image down. FilterMode mag Filter mode used when scaling the image up. number anisotropy (1) Maximum amount of Anisotropic Filtering used. Returns Nothing. Notes Th

love.graphics.setColorMode

love.graphics.setColorMode Available since LÖVE 0.2.0 and removed in LÖVE 0.9.0 This function is not supported in earlier or later versions. Sets the color mode (which controls how images are affected by the current color). Function Synopsis love.graphics.setColorMode( mode ) Arguments ColorMode mode The color mode to use. Returns Nothing. See Also love.graphics love.graphics.getColorMode