Difference between revisions of "love.graphics.getCanvas"

(Created page with "{{newin|0.8.0|080|type=function}} Gets the current target Canvas. == Function == === Synopsis === <source lang="lua"> canvas = love.graphics.getCanvas( ) </source> === Argum...")
 
m
Line 1: Line 1:
 
{{newin|[[0.8.0]]|080|type=function}}
 
{{newin|[[0.8.0]]|080|type=function}}
Gets the current target Canvas.
+
Gets the current target [[Canvas]].
  
 
== Function ==
 
== Function ==

Revision as of 22:40, 5 February 2012

Available since LÖVE 0.8.0
This function is not supported in earlier versions.

Gets the current target Canvas.

Function

Synopsis

canvas = love.graphics.getCanvas( )

Arguments

None.

Returns

Canvas canvas
The Canvas set by setCanvas. Returns nil if drawing to the real screen.

See Also


Other Languages