motion blur without unity pro

Hi!

I found this article about motion blur in unity:

http://docs.unity3d.com/Documentation/Components/script-MotionBlur.html

Do u really have to install unity Pro or is there a way to create such an effect in unity for free?

Hey,

check this out:

Thats a blog post about creating post-processing image-effects, for example the grayScale effect.

This should give you an idea how to do this. But you still have to write the shader on your own or maybe you find an existing one.

  1. Create the shader (might be difficult for the beginning but really worth to learn it!)
  2. Create a script which calls the shader and attach it to your mainCamera. The method “OnRenderImage”, like in the examples, should handle everything for you.
  3. profit.