Difference between revisions of "love.graphics.getLineWidth (Português)"
(versão inicial em Português) |
(translation update) |
||
Line 1: | Line 1: | ||
+ | <span style="color: #597E9A; font-size: 18pt">love.graphics.getLineWidth</span> | ||
+ | {{#set:RealLink=love.graphics.getLineWidth (Português)}} | ||
+ | {{#set:DisplayName=love.graphics.getLineWidth}} | ||
Obtém a espessura atual da linha. | Obtém a espessura atual da linha. | ||
== Função == | == Função == | ||
Line 7: | Line 10: | ||
=== Argumentos === | === Argumentos === | ||
Nenhum. | Nenhum. | ||
− | === | + | === Retorna === |
− | {{param|number (Português)|espessura|A espessura atual | + | {{param|number (Português)|espessura|A espessura de linha atual.|número}} |
+ | |||
+ | == Notas == | ||
+ | Esta função não funciona no 0.8.0, mas foi consertada na versão 0.9.0. Use o snippet seguinte para contornar isso no 0.8.0; | ||
+ | |||
+ | <source lang="lua"> | ||
+ | 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.graphics.varlinewidth = w; return love.graphics._setLineWidth(w) end | ||
+ | </source> | ||
+ | |||
== Veja Também == | == Veja Também == | ||
− | * [[parent::love.graphics (Português)]] | + | * [[parent::love.graphics (Português)|love.graphics]] |
[[Category:Functions]] | [[Category:Functions]] | ||
− | {{#set:Description=Obtém a | + | {{#set:Description=Obtém a espessura atual da linha.}} |
− | == | + | {{#set:Since=000}} |
+ | {{#set:Sub-Category=State}} | ||
+ | == Outras Línguas == | ||
{{i18n|love.graphics.getLineWidth}} | {{i18n|love.graphics.getLineWidth}} |
Latest revision as of 21:35, 22 October 2014
love.graphics.getLineWidth
Obtém a espessura atual da linha.
Função
Sinopse
espessura = love.graphics.getLineWidth( )
Argumentos
Nenhum.
Retorna
número espessura
- A espessura de linha atual.
Notas
Esta função não funciona no 0.8.0, mas foi consertada na versão 0.9.0. Use o snippet seguinte para contornar isso no 0.8.0;
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.graphics.varlinewidth = w; return love.graphics._setLineWidth(w) end
Veja Também
Outras Línguas
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