Difference between revisions of "Canvas:renderTo"

(Created page with "{{newin|0.8.0|080|type=function}} Render to the Canvas using a function. This is a shortcut to love.graphics.setCanvas: <source lang="lua"> canvas:renderTo( func ) <...")
 
m
Line 1: Line 1:
{{newin|[[0.8.0]]|080|type=function}}
+
{{newin|[[0.8.0]]|080|type=function|text=It has been renamed from [[Framebuffer:renderTo]]}}
 
Render to the [[Canvas]] using a function.
 
Render to the [[Canvas]] using a function.
  

Revision as of 22:31, 5 February 2012

Available since LÖVE 0.8.0
It has been renamed from Framebuffer:renderTo.

Render to the Canvas using a function.

This is a shortcut to love.graphics.setCanvas:

canvas:renderTo( func )

is the same as

love.graphics.setCanvas( canvas )
func()
love.graphics.setCanvas()

Function

Synopsis

Canvas:renderTo( func )

Arguments

function func
A function performing drawing operations.

Returns

Nothing.

Examples

Using an anonymous function for drawing to a Canvas

canvas:renderTo(function()
    love.graphics.draw(image1, 0,0)
    love.graphics.draw(image2, 100,100)
end)

See Also

Other Languages