File: specular_bsdf.rst

package info (click to toggle)
blender-doc 4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 253,604 kB
  • sloc: python: 13,030; javascript: 322; makefile: 113; sh: 107
file content (89 lines) | stat: -rw-r--r-- 2,582 bytes parent folder | download
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
.. _bpy.types.ShaderNodeEeveeSpecular:

*************
Specular BSDF
*************

.. figure:: /images/node-types_ShaderNodeEeveeSpecular.webp
   :align: right
   :alt: Specular BSDF node.

:guilabel:`EEVEE Only`

The *Specular* :abbr:`BSDF (Bidirectional Scattering Distribution Function)`
combines multiple layers into a single easy to use node.

It is similar to the :doc:`Principled BSDF </render/shader_nodes/shader/principled>` node
but uses the *specular* workflow instead of the metallic.
It has far fewer parameters and supports less features. Both might be merged into one node in the future.

The specular workflow functions by specifying the facing (along normal) reflection color.
The result may not be physically plausible because there is no energy conservation.


Inputs
======

Base Color
   Diffuse surface color. For conductor materials (metals) it should be black.

Specular
   Amount of specular reflection. Specifies facing (along normal)
   reflectivity. Conductor materials (metals) can have colored specular reflection.

   .. hint::

      To compute this value for a realistic material with a known index of
      refraction, you may use this special case of the Fresnel formula:
      :math:`specular = ((ior - 1)/(ior + 1))^2`

      For example:

      - water: ior = 1.33, specular = 0.02
      - glass: ior = 1.5, specular = 0.04
      - diamond: ior = 2.417, specular = 0.17

Roughness
   Specifies microfacet roughness of the surface for diffuse and specular reflection.

   .. hint::

      When converting from the older *Glossy BSDF* node, use the square root of the original value.

Emissive Color
   Color of the emitted light. This light is added to the BSDF result.

Transparency
   Transparency factor. This is the inverse of the alpha channel (1 - alpha) you find in an image.
   Use an Invert node to convert alpha to transparency.
   This will only have an effect if the material uses a blend mode other than opaque.

Normal
   Controls the normals of the base layers.

Clear Coat
   Extra white specular layer on top of others.
   This is useful for materials like car paint and the like.

Clear Coat Roughness:
   Roughness of clear coat specular.

Clear Coat Normal
   Controls the normals of the *Clear Coat* layer.

Ambient Occlusion
   Amount of occlusion to apply to indirect lighting. Usually a bake ambient occlusion map.
   The final occlusion factor is the minimum of this input and the runtime ambient occlusion effect.


Properties
==========

This node has no properties.


Outputs
=======

BSDF
   Standard shader output.