Page 1 of 1

[HELP] Unwanted motion blur

Posted: Sat Mar 16, 2013 11:25 pm
by Extred
Hello,
I'm developing some quite fast and dynamic game right now and there is a problem with blurring objects when they are moving fast.
I can't actually give a screenshot, cause it's all OK on it. There is .love in attachments describing the problem ("a" and "d" keys to move).
I've tried turning on/off VS, FSAA but it has no effect.
It all seems like this rectangle are not drawn completely each frame it's moving fast.
How do I fix it?

And one more question with lower priority:
I'm using pure luasocket via UDP to exchange strings between apps. Do I need to compress string I send or it's already implemented in luasocket?

Thanks.

Re: [HELP] Unwanted motion blur

Posted: Sat Mar 16, 2013 11:41 pm
by Robin
I think (but I'm not sure) it's a wetware problem. As in, your eyes or your brains insert the motion blur. Try waving your hand in front of you. You should see exactly the same effect.

If I'm right, there's no solution other than making your square move a lot more slowly.

Re: [HELP] Unwanted motion blur

Posted: Sat Mar 16, 2013 11:44 pm
by micha
The motion blur you see, is not in the game, but in your eye. As you said, making screenshots reveals a perfect box. Every single image, produced by the game has a perfect unblurred box in it. Only the fast movement makes it look blurry.

Re: [HELP] Unwanted motion blur

Posted: Sun Mar 17, 2013 1:24 am
by Boolsheet
Or you have one of those early LCD screens with low response times and horrible smearing. :P
Extred wrote:It all seems like this rectangle are not drawn completely each frame it's moving fast.
Possibly. If you turn off vsync and your graphics card draws the frame faster than the refresh rate of your monitor, then you will see tearing.
Extred wrote:Do I need to compress string I send or it's already implemented in luasocket?
LuaSocket does not touch your data. It will try to send it exactly how you passed it.

Re: [HELP] Unwanted motion blur

Posted: Sun Mar 17, 2013 3:23 pm
by Extred
I've already thought about optic illusion and now I'm quite sure about it. Never thought I'll have to deal with our vision limits ^_^
Thanks.

Re: [HELP] Unwanted motion blur

Posted: Sun Mar 17, 2013 6:56 pm
by spectralcanine
It will probably be less noticeable when you have actual graphics instead of bright red on black (all sorts of cool eye-killers can be made with pure bright colors).