Difference between revisions of "love.graphics.getPointStyle (Português)"

(versão inicial em Português)
 
(translation update)
 
Line 1: Line 1:
Obtém o estilo atual do ponto.
+
<span style="color: #597E9A; font-size: 18pt">love.graphics.getPointStyle</span>
 +
{{#set:RealLink=love.graphics.getPointStyle (Português)}}
 +
{{#set:DisplayName=love.graphics.getPointStyle}}
 +
Obtém o estilo de [[love.graphics.setPoint (Português)|ponto]] atual.
 
== Função ==
 
== Função ==
 
=== Sinopse ===
 
=== Sinopse ===
Line 7: Line 10:
 
=== Argumentos ===
 
=== Argumentos ===
 
Nenhum.
 
Nenhum.
=== Retornos ===
+
=== Retorna ===
{{param|PointStyle (Português)|estilo|O estilo atual do ponto.}}
+
{{param|PointStyle (Português)|estilo|O estilo de ponto atual.|EstiloDePonto}}
 +
== Exemplos ==
 +
Alternar entre [[love.graphics.setPoint (Português)|estilos de ponto]] com a ajuda de [[love.graphics.setPointStyle (Português)|love.graphics.setPointStyle]].
 +
<source lang="lua">
 +
if love.graphics.getPointStyle() == "rough" then
 +
love.graphics.setPointStyle("smooth")
 +
else
 +
love.graphics.setPointStyle("rough")
 +
end
 +
</source>
 
== Veja Também ==
 
== Veja Também ==
* [[parent::love.graphics (Português)]]
+
* [[parent::love.graphics (Português)|love.graphics]]
 +
* [[love.graphics.point (Português)|love.graphics.point]]
 +
* [[love.graphics.setPointStyle (Português)|love.graphics.setPointStyle]]
 
[[Category:Functions]]
 
[[Category:Functions]]
{{#set:Description=Obtém o estilo atual do ponto.}}
+
{{#set:Description=Obtém o estilo de ponto atual.}}
== Outros Idiomas ==
+
{{#set:Since=000}}
 +
{{#set:Sub-Category=State}}
 +
== Outras Línguas ==
 
{{i18n|love.graphics.getPointStyle}}
 
{{i18n|love.graphics.getPointStyle}}

Latest revision as of 21:51, 22 October 2014

love.graphics.getPointStyle


Obtém o estilo de ponto atual.

Função

Sinopse

estilo = love.graphics.getPointStyle( )

Argumentos

Nenhum.

Retorna

EstiloDePonto estilo
O estilo de ponto atual.

Exemplos

Alternar entre estilos de ponto com a ajuda de love.graphics.setPointStyle.

if love.graphics.getPointStyle() == "rough" then
 love.graphics.setPointStyle("smooth")
else
 love.graphics.setPointStyle("rough")
end

Veja Também


Outras Línguas