love.graphics.intersectScissor
Available since LÖVE 0.10.0 |
This function is not supported in earlier versions. |
Sets the scissor to the rectangle created by the intersection of the specified rectangle with the existing scissor. If no scissor is active yet, it behaves like love.graphics.setScissor.
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, ...).
Function
Synopsis
love.graphics.intersectScissor( x, y, width, height )
Arguments
number x
- x coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
number y
- y coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
number width
- width of the rectangle to intersect with the existing scissor rectangle.
number height
- height of the rectangle to intersect with the existing scissor rectangle.
Returns
Nothing.
See Also
- love.graphics
- love.graphics.setScissor
- love.graphics.getScissor
- love.graphics.push
- love.graphics.pop
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