love.graphics.intersectScissor (Français)

Disponible depuis LÖVE 0.10.0
Ce-tte function n'est pas supporté-e par des versions plus anciennes.

Définit le découpage (scissor) au rectangle créé par l'intersection du rectangle spécifié avec le découpage existant. Si aucun découpage n'est encore actif, il se comporte comme love.graphics.setScissor.

Le découpage limite l'aire de tracé à un rectangle spécifié. Cela affecte toutes les appels graphiques, dont love.graphics.clear.

Les dimensions du découpage ne sont pas affectés par les transformations géométriques (translation, changement d'échelle,…).

Fonction

Synopsis

love.graphics.intersectScissor( x, y, width, height )

Arguments

number (Français) x
The x-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
number (Français) y
The y-coordinate of the upper left corner of the rectangle to intersect with the existing scissor rectangle.
number (Français) width
The width of the rectangle to intersect with the existing scissor rectangle.
number (Français) height
The height of the rectangle to intersect with the existing scissor rectangle.

Retourne

Rien.

Voir également


Autres langues