in these papers you can find more information on my works on blender game engine
Blender Game Engine » 2D Filter » 2D Filter Introduction
MenuLinks | 2D Filters2D Filters are image filtering, that apply on final render of objects, I implemented some simple 2d filters for blender game engine. New implementation of 2D Filters has some features like enabling or disabling a filter on a specific pass, custom GLSL filters. Thanks Social et.al. for FPS_Template. Motion BlurMotion blur is a 2d filter that needs previous rendering information to produce motion effect on abjects.
Fig 1. Motion Blur Filter In Fig 1. you can see Motion Blur filter in blender window, and in Fig 2. you can see the logic buttons for this filter.
Fig 2. Game Logic Buttons for Motion Blur As you see in Fig 2. for enabling Motion Blur you should:
And for disabling this filter:
Note: You can enable Motion Blur filter using a python controller like bellow:
import Rasterizer and disable it: import Rasterizer Note: Your graphic hardware and OpenGL driver must support accumulation buffer(glAccum function). Fig 3. Motion Blur in Blender |


