Difference between revisions of "love.graphics.newStencil"

m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{New feature|0.8.0|
+
{{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.
|080}}
 
 
== Function ==
 
== Function ==
 
=== Synopsis ===
 
=== Synopsis ===
Line 18: Line 17:
 
{{#set:Description=Creates a new stencil.}}
 
{{#set:Description=Creates a new stencil.}}
 
{{#set:Since=080}}
 
{{#set:Since=080}}
 +
{{#set:Sub-Category=Object Creation}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|love.graphics.newStencil}}
 
{{i18n|love.graphics.newStencil}}

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