Difference between revisions of "love.graphics.getScissor"

Line 1: Line 1:
 +
{{newin|[[0.4.0]]|040|type=function}}
 
Gets the current scissor box.
 
Gets the current scissor box.
 
== Function ==
 
== Function ==

Revision as of 23:02, 23 November 2011

Available since LÖVE 0.4.0
This function is not supported in earlier versions.

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