Search found 2 matches

by Juckey
Wed Dec 12, 2018 12:11 pm
Forum: Games and Creations
Topic: polyamory - Multi-version LÖVE
Replies: 25
Views: 40962

Re: polyamory - Multi-version LÖVE

Cool! This will make surfing old demos on the forums much easier.
by Juckey
Wed Dec 12, 2018 12:00 pm
Forum: Support and Development
Topic: Possible to use stencil with Canvas:renderTo?
Replies: 3
Views: 4096

Re: Possible to use stencil with Canvas:renderTo?

This would definitely be a good addition. Perhaps you could use a temporary hack for now, like this: local Canvas_mt = debug.getregistry().Canvas local renderTo = Canvas_mt.renderTo function Canvas_mt:renderTo(func, stencil) if stencil ~= true then return renderTo(self, func) end local orig_canvas =...