1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
.. _bpy.types.RenderSettings.use_motion_blur:
***********
Motion Blur
***********
.. reference::
:Panel: :menuselection:`Render --> Motion Blur`
Blender's animations are by default rendered as a sequence of *perfectly still* images.
While great for stop-motion and time-lapses, this is unrealistic, since fast-moving
objects do appear to be blurred in the direction of motion,
both in a movie frame and in a photograph from a real-world camera.
.. figure:: /images/render_cycles_render-settings_motion-blur_example-cubes.jpg
Motion blur example.
(`blend-file <https://archive.blender.org/wiki/2015/uploads/0/03/Blender2.65_motion_blur.blend>`__)
.. _bpy.types.RenderSettings.motion_blur_position:
Position
Controls at what point the shutter opens in relation to the current frame.
:Start on Frame: Shutter is starting to open at the current frame.
:Center on Frame: Shutter is fully opened at the current frame.
:End on Frame: Shutter is fully closed at the current frame.
.. _bpy.types.RenderSettings.motion_blur_shutter:
Shutter
Time (in frames) between when the shutter starts to open and fully closed.
For example, shutter time 1.0 blurs over the length of 1 frame.
.. _bpy.types.CyclesRenderSettings.rolling_shutter_type:
Rolling Shutter
Creates a :term:`Rolling Shutter` effect.
:None: No rolling shutter effect.
:Top-Bottom: Renders rolling shutter from the top of the image to the bottom.
.. _bpy.types.CyclesRenderSettings.rolling_shutter_duration:
Rolling Shutter Duration
Controls balance between pure rolling shutter effect (if the value is zero)
and pure motion blur effect (if the value is one).
.. note::
If there are particles or other physics system in a scene,
be sure to bake them before rendering,
otherwise you might not get correct or consistent motion blur.
.. seealso::
Each object has its own settings to control motion blur.
These options can be found in the Object tab of the Properties.
See :ref:`object setting <bpy.types.CyclesObjectSettings.use_motion_blur>` for more information.
.. _bpy.ops.render.shutter_curve_preset:
Shutter Curve
=============
Curve defining how the shutter opens and closes.
The X axis is time, Y values of 0 mean fully closed shutter, Y values of 1 mean fully opened shutter.
The default mapping is set to when shutter opens and closes instantly.
Limitations
===========
- Camera motion blur does not work for :doc:`Orthographic Cameras </render/cameras>`.
- Motion blur does not take into account the movement of :doc:`Lights </render/lights/light_object>`.
|