Search found 4 matches

by Scio
Thu Jan 27, 2011 9:36 am
Forum: Support and Development
Topic: Simple ghosting: How can I stop screen from redrawing?
Replies: 14
Views: 9490

Re: Simple ghosting: How can I stop screen from redrawing?

Thanks for all the replies. It does seem trickier than I expected! :brows:

I will try the framebuffers now, round them up and see if that works.
by Scio
Wed Jan 26, 2011 11:49 am
Forum: Support and Development
Topic: Simple ghosting: How can I stop screen from redrawing?
Replies: 14
Views: 9490

Re: Simple ghosting: How can I stop screen from redrawing?

Yes of course. love.draw was already being called, I just commented out the love.graphics.clear() part. function love.run() --... if love.graphics then --love.graphics.clear() if love.draw then love.draw() end end --... if love.timer then love.timer.sleep(1) end if love.graphics then love.graphics.p...
by Scio
Wed Jan 26, 2011 9:57 am
Forum: Support and Development
Topic: Simple ghosting: How can I stop screen from redrawing?
Replies: 14
Views: 9490

Re: Simple ghosting: How can I stop screen from redrawing?

Since I already have love.update and love.draw, I am supposed to simply add a love.run() and comment out love.graphics.clear() right? But if I do that, nothing draws! Which, I guess, will be the driver problems? (Ubuntu 10.04 64bit Nvidia GTS250) ...So, is this classic way something else I can try? ...
by Scio
Wed Jan 26, 2011 8:50 am
Forum: Support and Development
Topic: Simple ghosting: How can I stop screen from redrawing?
Replies: 14
Views: 9490

Simple ghosting: How can I stop screen from redrawing?

Hullo, I'm new here; both to Love and Lua! I had a question about how Love draws things. (Lovelily, of course. :awesome:) I want to do basic ghosting, a pretty common trick for processing users. Instead of manually redrawing the background at each frame (which processing folk have to do), if we over...