Difference between revisions of "love.graphics.getMaxPointSize"
(Added oldin) |
m |
||
Line 28: | Line 28: | ||
{{#set:Description=Gets the max supported [[love.graphics.point|point]] size.}} | {{#set:Description=Gets the max supported [[love.graphics.point|point]] size.}} | ||
{{#set:Since=000}} | {{#set:Since=000}} | ||
− | {{#set:Sub-Category= | + | {{#set:Sub-Category=SystemInfo}} |
== Other Languages == | == Other Languages == | ||
{{i18n|love.graphics.getMaxPointSize}} | {{i18n|love.graphics.getMaxPointSize}} |
Latest revision as of 01:59, 17 July 2017
Removed in LÖVE 0.10.0 |
Use love.graphics.getSystemLimits instead. |
Gets the max supported point size.
Function
Synopsis
size = love.graphics.getMaxPointSize( )
Arguments
None.
Returns
number size
- The max supported point size.
Examples
Draws a point at the maximum supported size.
function love.draw()
local max = love.graphics.getMaxPointSize();
love.graphics.setPointSize(max);
love.graphics.point(100, 100);
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