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 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
******
Object
******
.. _render-cycles-object-settings-visibility:
Visibility
==========
.. reference::
:Panel: :menuselection:`Object Properties --> Visibility`
.. seealso::
There are several other :doc:`general visibility </scene_layout/object/properties/visibility>` properties.
.. _bpy.types.Object.is_shadow_catcher:
Mask
Shadow Catcher
Enables the object to only receive shadow rays. It is to be noted that,
shadow catcher objects will interact with other CG objects via indirect light interaction.
This simplifies compositing :abbr:`CGI (Computer-Generated Imagery)` elements into real-world footage.
.. note::
The *Shadow Catcher* outputs different results depending on if the *Shadow Catcher* pass is enabled in
:ref:`Render Layer <render_layers_passes_data>` settings. With the *Shadow Catcher* pass enabled, all
indirect light interactions are captured. With it disabled, a simple approximation is used instead.
The simple approximation is used in viewport rendering.
.. figure:: /images/render_cycles_object-settings_object-data_shadow-catcher.jpg
Example of the shadow catcher. Note how the material of the plane can still be viewed in the spheres.
.. _cycles-ray-visibility:
Ray Visibility
--------------
Objects can be set to be invisible to particular ray types.
This can be used, for example, to make an emitting mesh invisible to camera rays.
For instanced objects, visibility is inherited; if the parent object is hidden for some ray types,
the children will be hidden for these too.
In terms of performance, using these options is more efficient that using a shader node setup
that achieves the same effect.
Objects invisible to a certain ray will be skipped in ray traversal already,
leading to fewer ray casts and shader executions.
Camera
Makes the object visible to the :doc:`Camera </render/cameras>`;
this includes the viewport's perspective in viewport rendering.
.. _bpy.types.Object.visible_diffuse:
Diffuse
Makes the object visible in diffuse rays.
.. _bpy.types.Object.visible_glossy:
Glossy
Makes the object visible in glossy rays.
.. _bpy.types.Object.visible_transmission:
Transmission
Makes the object visible in transmission rays.
.. _bpy.types.Object.visible_volume_scatter:
Volume Scatter
Makes the object visible in volumetric scatter rays.
Shadow
Enables the object to cast shadows.
Culling
-------
In order to activate these options the respectively camera cull options have to be enabled
in the scene :ref:`simplify panel <render-cycles-settings-scene-simplify-culling>`.
.. _bpy.types.CyclesObjectSettings.use_camera_cull:
Use Camera Cull
Ignore and this way make objects invisible to rays outside of the camera frustum.
.. _bpy.types.CyclesObjectSettings.use_distance_cull:
Use Distance Cull
Will cull any objects further from the camera than a given distance. When used in combination with
camera frustum culling, this can be used to avoid culling nearby objects that are outside the camera frustum,
but still visible in reflections. It is also useful to cull small objects far from the camera.
.. _bpy.types.CyclesObjectSettings.use_motion_blur:
Motion Blur
===========
.. reference::
:Panel: :menuselection:`Properties --> Object Properties --> Motion Blur`
Each object has its own motion blur settings along with
the :doc:`Scene Level Motion Blur </render/cycles/render_settings/motion_blur>`.
These settings can be found in the Object Properties tab of the Properties.
.. _bpy.types.CyclesObjectSettings.motion_steps:
Steps
Controls accuracy of deformation motion blur, more steps uses more memory.
The actual number of time steps is :math:`2^{steps -1}`.
.. _bpy.types.CyclesObjectSettings.use_deform_motion:
Deformation
Enables motion blur for deformed meshes such as animated characters, including hair.
.. warning::
An object modifier setup that changes mesh topology over time can not render
deformation motion blur correctly. Deformation blur should be disabled for such objects.
Common examples of this are animated Booleans, Deformation
before Edge Split, Remesh, Skin or Decimate modifiers.
Shading
=======
.. reference::
:Panel: :menuselection:`Properties --> Object Properties --> Shading`
Shadow Terminator
-----------------
.. _bpy.types.CyclesObjectSettings.shadow_terminator_geometry_offset:
Geometry Offset
Offset rays from the surface to reduce shadow terminator artifacts on low-poly geometry.
Higher values affect more triangles, a value of one affecting all triangles and zero having no affect.
The default value only affects triangles at grazing angles to light and should eliminate most artifacts.
Unlike the *Shading Offset*, this option has little affect on the lighting
making it the preferable method to handle shadow terminator artifacts.
.. _bpy.types.CyclesObjectSettings.shadow_terminator_offset:
Shading Offset
Pushes the shadow terminator (the line that divides the light and dark) towards the light
to hide artifacts on low-poly geometry such as the ones below:
.. list-table::
* - .. figure:: /images/render_cycles_object-settings_object-data_shading-terminator1.jpg
Shadow Terminator Artifacts.
- .. figure:: /images/render_cycles_object-settings_object-data_shading-terminator2.jpg
Result of using an offset of 0.15.
.. note::
This property artificially alters the scene's lighting
and is not energy conserving and consequently not physically accurate (see *Geometry Offset* instead).
Fast GI Approximation
---------------------
.. _bpy.types.CyclesObjectSettings.ao_distance:
AO Distance
Override for the world's :ref:`AO Distance <bpy.types.CyclesRenderSettings.use_fast_gi>`,
if the value is zero the world's distance is used.
Caustics
--------
Mark objects as caustic casters or receivers. This is used in conjunction with a
:ref:`Light <bpy.types.CyclesLightSettings.is_caustics_light>` or
:ref:`World Shader <bpy.types.CyclesWorldSettings.is_caustics_light>` with *Shadow Caustics* enabled
to selectively speed up caustic rendering of objects in your scene.
.. note::
The rendering technique used to speed up the rendering of caustics is based on
:abbr:`MNEE (Manifold Next Event Estimation)`. There are a number of limitations with this technique
and it's implementation in Cycles:
- Only refractive caustics in the shadows of objects work. Caustics from reflections or caustics that
fall outside shadows are not rendered with this technique.
- MNEE Caustics are an approximation of caustics and will produce physically inaccurate results
in many situations. Examples include incorrect brightnesses and the incorrect representation of
caustics caused by rough or curved surfaces.
- In complex materials with multiple refractive BSDFs, MNEE will only generate caustics for one of
the BSDFs.
- :ref:`Filter Glossy <bpy.types.CyclesRenderSettings.blur_glossy>` settings are ignored when using
MNEE for refractive caustics.
- MNEE Caustic rays can pass through up to 6 Caustic Caster surfaces between a Caustic Receiver and a
Shadow Caustic light before the ray is terminated and caustics are ignored.
- The :ref:`Ambient Occlusion <bpy.types.ShaderNodeAmbientOcclusion>` and
:ref:`Bevel <bpy.types.ShaderNodeBevel>` nodes will not produce a valid result on objects that are
a Caustic caster or Caustic receiver while the scene contains a active Caustic caster,
Caustic receiver, and :ref:`Shadow Caustic Light <bpy.types.CyclesLightSettings.is_caustics_light>`.
- MNEE Caustics only work if the caustic caster has smooth normals.
- Volumetric materials are not considered when calculating MNEE caustics.
- Bump and normal maps are ignored when calculating caustics.
.. _bpy.types.CyclesObjectSettings.is_caustics_caster:
Cast Shadow Caustics
Mark an object as a caustic caster.
.. _bpy.types.CyclesObjectSettings.is_caustics_receiver:
Receive Shadow Caustics
Mark an object as a caustic receiver.
.. list-table::
* - .. figure:: /images/render_cycles_object-settings_caustics-example1.png
Rendering caustics inside an eye without MNEE at 32 samples per pixel.
- .. figure:: /images/render_cycles_object-settings_caustics-example2.png
Rendering caustics inside an eye using MNEE at 32 samples per pixel.
Light Group
-----------
.. _bpy.types.Object.lightgroup:
Light Group
Select the :ref:`Light Group <bpy.types.ViewLayer.active_lightgroup_index>` to add the
current *Object* or *Light* too.
Add Light Group
If the name input into the *Light Group* field does not align with an existing
Light Group, then pressing this button will create a *Light Group* with that name
and assign the selected *Object* or *Light* to it.
Light Linking
-------------
.. _render-cycles-object-light-linking-settings:
Limit light influence to specified objects, with :ref:`Light Linking <bpy.types.Object.light_linking>`.
Receiver Collection
Collection of objects that will receive light emitted from the object.
Shadow Linking
--------------
Limit shadows to specified objects, with :ref:`Light Linking <bpy.types.Object.light_linking>`.
Shadow Blocker Collection
Collection of objects that will act as shadow blockers for light emitted from the object.
|