love.graphics.getLineWidth
Gets the current line width.
Function
Synopsis
width = love.graphics.getLineWidth( )
Arguments
None.
Returns
number width
- The current line width.
Note: This function does not work in 0.8.0, but has been fixed in tip (0.9.0). Use the following snippet to circumvent this;
love.graphics._getLineWidth = love.graphics.getLineWidth
love.graphics._setLineWidth = love.graphics.setLineWidth
function love.graphics.getLineWidth() return love.graphics.varlinewidth or 1 end
function love.graphics.setLineWidth(w) love.grapihcs.varlinewidth = w; return love.graphics._setLineWidth(w) end
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