Difference between revisions of "love.graphics.setPointStyle (Deutsch)"

(German Translation.)
 
m (Fix "see also" listing.)
Line 25: Line 25:
 
* [[love.graphics.point (Deutsch)|love.graphics.point]]
 
* [[love.graphics.point (Deutsch)|love.graphics.point]]
 
* [[love.graphics.setPointSize (Deutsch)|love.graphics.setPointSize]]
 
* [[love.graphics.setPointSize (Deutsch)|love.graphics.setPointSize]]
* * [[love.graphics.getPointStyle (Deutsch)|love.graphics.getPointStyle]]
+
* [[love.graphics.getPointStyle (Deutsch)|love.graphics.getPointStyle]]
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Bestimmt den Stil in dem [[love.graphics.point (Deutsch)|Punkte]] gezeichnet werden sollen.}}
 
{{#set:Description=Bestimmt den Stil in dem [[love.graphics.point (Deutsch)|Punkte]] gezeichnet werden sollen.}}

Revision as of 12:43, 5 November 2014

Bestimmt den Stil in dem Punkte gezeichnet werden sollen.

Funktion

Übersicht

love.graphics.setPointStyle( style )

Argumente

PointStyle (Deutsch) style
Der neue Stil.

Rückgabewerte

Keine.

Beispiele

Wechselt zwischen verschiedenen Stilen.

if love.graphics.getPointStyle() == "rough" then
   love.graphics.setPointStyle("smooth") -- Weich gezeichnete Punkte.
else
   love.graphics.setPointStyle("rough") -- Hart gezeichnete Punkte.
end

Siehe auch



Andere Sprachen