Difference between revisions of "love.graphics.newStencil"

m
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newinoldin|[[0.8.0]]|080|[[0.9.0]]|090|type=function|text=Lua functions can be used directly with [[love.graphics.stencil]] (or [[love.graphics.setStencil]] in 0.9)}}
 
Creates a new stencil.
 
Creates a new stencil.
 
== Function ==
 
== Function ==

Latest revision as of 18:17, 27 December 2015

Available since LÖVE 0.8.0 and removed in LÖVE 0.9.0
Lua functions can be used directly with love.graphics.stencil (or love.graphics.setStencil in 0.9).

Creates a new stencil.

Function

Synopsis

myStencil = love.graphics.newStencil( stencilFunction )

Arguments

function stencilFunction
Function that draws the stencil.

Returns

function myStencil
Function that defines the new stencil.

See Also


Other Languages