Difference between revisions of "love.graphics.getPointSize (Deutsch)"
(German Translation.) |
m (Fix link.) |
||
Line 23: | Line 23: | ||
* [[love.graphics.point (Deutsch)|love.graphics.point]] | * [[love.graphics.point (Deutsch)|love.graphics.point]] | ||
* [[love.graphics.setPointStyle (Deutsch)|love.graphics.setPointStyle]] | * [[love.graphics.setPointStyle (Deutsch)|love.graphics.setPointStyle]] | ||
− | * [[love.graphics.setPointSize (Deutsch)|love.graphics. | + | * [[love.graphics.setPointSize (Deutsch)|love.graphics.setPointSize]] |
* [[love.graphics.getMaxPointSize (Deutsch)|love.graphics.getMaxPointSize]] | * [[love.graphics.getMaxPointSize (Deutsch)|love.graphics.getMaxPointSize]] | ||
[[Category:Functions]] | [[Category:Functions]] |
Latest revision as of 14:39, 5 November 2014
Gibt die aktuelle Größe mit welcher Punkte gezeichnet werden zurück.
Contents
Funktion
Übersicht
size = love.graphics.getPointSize( )
Argumente
Keine.
Rückgabewerte
number (Deutsch) size
- Die aktuelle Größe.
Beispiel
Erhöht die Größe eines Punkts jeweils um 1.
function love.draw()
local s = love.graphics.getPointSize() + 1;
love.graphics.setPointSize(s);
love.graphics.point(100, 100);
end
Siehe auch
- love.graphics
- love.graphics.point
- love.graphics.setPointStyle
- love.graphics.setPointSize
- love.graphics.getMaxPointSize
Andere Sprachen
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