Sets or disables scissor.
The scissor limits the drawing area to a specified rectangle. This affects all graphics calls, including love.graphics.clear.
The dimensions of the scissor is unaffected by graphical transformations (translate, scale, ...).
Limits the drawing area to a specified rectangle.
love.graphics.setScissor( x, y, width, height )
number x
number y
number width
number height
Nothing.
Disables scissor.
love.graphics.setScissor( )
None.
Nothing.