Difference between revisions of "love.graphics.getScissor"

(Bleh)
m
Line 17: Line 17:
 
[[Category:Functions]]
 
[[Category:Functions]]
 
{{#set:Description=Gets the current scissor box.}}
 
{{#set:Description=Gets the current scissor box.}}
 +
== Other Languages ==
 +
{{i18n|love.graphics.getScissor}}

Revision as of 20:14, 18 November 2010

Gets the current scissor box.

Function

Synopsis

x, y, width, height = love.graphics.getScissor( )

Arguments

None.

Returns

number x
The x-component of the top-left point of the box.
number y
The y-component of the top-left point of the box.
number width
The width of the box.
number height
The height of the box.

See Also

Other Languages