spatial_shader.rst 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522
  1. .. _doc_spatial_shader:
  2. Spatial shaders
  3. ===============
  4. Spatial shaders are used for shading 3D objects. They are the most complex type of shader Godot offers.
  5. Spatial shaders are highly configurable with different render modes and different rendering options
  6. (e.g. Subsurface Scattering, Transmission, Ambient Occlusion, Rim lighting etc). Users can optionally
  7. write vertex, fragment, and light processor functions to affect how objects are drawn.
  8. Render modes
  9. ^^^^^^^^^^^^
  10. For visual examples of these render modes, see :ref:`Standard Material 3D and ORM Material 3D<doc_standard_material_3d>`.
  11. +-------------------------------+------------------------------------------------------------------------------------------------------+
  12. | Render mode | Description |
  13. +===============================+======================================================================================================+
  14. | **blend_mix** | Mix blend mode (alpha is transparency), default. |
  15. +-------------------------------+------------------------------------------------------------------------------------------------------+
  16. | **blend_add** | Additive blend mode. |
  17. +-------------------------------+------------------------------------------------------------------------------------------------------+
  18. | **blend_sub** | Subtractive blend mode. |
  19. +-------------------------------+------------------------------------------------------------------------------------------------------+
  20. | **blend_mul** | Multiplicative blend mode. |
  21. +-------------------------------+------------------------------------------------------------------------------------------------------+
  22. | **depth_draw_opaque** | Only draw depth for opaque geometry (not transparent). |
  23. +-------------------------------+------------------------------------------------------------------------------------------------------+
  24. | **depth_draw_always** | Always draw depth (opaque and transparent). |
  25. +-------------------------------+------------------------------------------------------------------------------------------------------+
  26. | **depth_draw_never** | Never draw depth. |
  27. +-------------------------------+------------------------------------------------------------------------------------------------------+
  28. | **depth_prepass_alpha** | Do opaque depth pre-pass for transparent geometry. |
  29. +-------------------------------+------------------------------------------------------------------------------------------------------+
  30. | **depth_test_disabled** | Disable depth testing. |
  31. +-------------------------------+------------------------------------------------------------------------------------------------------+
  32. | **sss_mode_skin** | Subsurface Scattering mode for skin. |
  33. +-------------------------------+------------------------------------------------------------------------------------------------------+
  34. | **cull_back** | Cull back-faces (default). |
  35. +-------------------------------+------------------------------------------------------------------------------------------------------+
  36. | **cull_front** | Cull front-faces. |
  37. +-------------------------------+------------------------------------------------------------------------------------------------------+
  38. | **cull_disabled** | Culling disabled (double sided). |
  39. +-------------------------------+------------------------------------------------------------------------------------------------------+
  40. | **unshaded** | Result is just albedo. No lighting/shading happens in material. |
  41. +-------------------------------+------------------------------------------------------------------------------------------------------+
  42. | **wireframe** | Geometry draws using lines. |
  43. +-------------------------------+------------------------------------------------------------------------------------------------------+
  44. | **diffuse_burley** | Burley (Disney PBS) for diffuse (default). |
  45. +-------------------------------+------------------------------------------------------------------------------------------------------+
  46. | **diffuse_lambert** | Lambert shading for diffuse. |
  47. +-------------------------------+------------------------------------------------------------------------------------------------------+
  48. | **diffuse_lambert_wrap** | Lambert wrapping (roughness dependent) for diffuse. |
  49. +-------------------------------+------------------------------------------------------------------------------------------------------+
  50. | **diffuse_toon** | Toon shading for diffuse. |
  51. +-------------------------------+------------------------------------------------------------------------------------------------------+
  52. | **specular_schlick_ggx** | Schlick-GGX for specular (default). |
  53. +-------------------------------+------------------------------------------------------------------------------------------------------+
  54. | **specular_toon** | Toon for specular. |
  55. +-------------------------------+------------------------------------------------------------------------------------------------------+
  56. | **specular_disabled** | Disable specular. |
  57. +-------------------------------+------------------------------------------------------------------------------------------------------+
  58. | **skip_vertex_transform** | ``VERTEX``, ``NORMAL``, ``TANGENT``, and ``BITANGENT`` |
  59. | | need to be transformed manually in the ``vertex()`` function. |
  60. +-------------------------------+------------------------------------------------------------------------------------------------------+
  61. | **world_vertex_coords** | ``VERTEX``, ``NORMAL``, ``TANGENT``, and ``BITANGENT`` |
  62. | | are modified in world space instead of model space. |
  63. +-------------------------------+------------------------------------------------------------------------------------------------------+
  64. | **ensure_correct_normals** | Use when non-uniform scale is applied to mesh. |
  65. +-------------------------------+------------------------------------------------------------------------------------------------------+
  66. | **shadows_disabled** | Disable computing shadows in shader. |
  67. +-------------------------------+------------------------------------------------------------------------------------------------------+
  68. | **ambient_light_disabled** | Disable contribution from ambient light and radiance map. |
  69. +-------------------------------+------------------------------------------------------------------------------------------------------+
  70. | **shadow_to_opacity** | Lighting modifies the alpha so shadowed areas are opaque and |
  71. | | non-shadowed areas are transparent. Useful for overlaying shadows onto |
  72. | | a camera feed in AR. |
  73. +-------------------------------+------------------------------------------------------------------------------------------------------+
  74. | **vertex_lighting** | Use vertex-based lighting. |
  75. +-------------------------------+------------------------------------------------------------------------------------------------------+
  76. | **particle_trails** | Enables the trails when used on particles geometry. |
  77. +-------------------------------+------------------------------------------------------------------------------------------------------+
  78. | **alpha_to_coverage** | Alpha antialiasing mode, see `here <https://github.com/godotengine/godot/pull/40364>`_ for more. |
  79. +-------------------------------+------------------------------------------------------------------------------------------------------+
  80. | **alpha_to_coverage_and_one** | Alpha antialiasing mode, see `here <https://github.com/godotengine/godot/pull/40364>`_ for more. |
  81. +-------------------------------+------------------------------------------------------------------------------------------------------+
  82. | **fog_disabled** | Disable receiving depth-based or volumetric fog. Useful for blend_add materials like particles. |
  83. +-------------------------------+------------------------------------------------------------------------------------------------------+
  84. Built-ins
  85. ^^^^^^^^^
  86. Values marked as ``in`` are read-only. Values marked as ``out`` can optionally be written to and will
  87. not necessarily contain sensible values. Values marked as ``inout`` provide a sensible default
  88. value, and can optionally be written to. Samplers cannot be written to so they are not marked.
  89. Global built-ins
  90. ^^^^^^^^^^^^^^^^
  91. Global built-ins are available everywhere, including custom functions.
  92. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  93. | Built-in | Description |
  94. +=============================+=====================================================================================================+
  95. | in float **TIME** | Global time since the engine has started, in seconds. It repeats after every ``3,600`` |
  96. | | seconds (which can be changed with the |
  97. | | :ref:`rollover<class_ProjectSettings_property_rendering/limits/time/time_rollover_secs>` |
  98. | | setting). It's affected by :ref:`time_scale<class_Engine_property_time_scale>` but not by pausing. |
  99. | | If you need a ``TIME`` variable that is not affected by time scale, add your own |
  100. | | :ref:`global shader uniform<doc_shading_language_global_uniforms>` and update it each |
  101. | | frame. |
  102. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  103. | in float **PI** | A ``PI`` constant (``3.141592``). |
  104. | | A ratio of a circle's circumference to its diameter and amount of radians in half turn. |
  105. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  106. | in float **TAU** | A ``TAU`` constant (``6.283185``). |
  107. | | An equivalent of ``PI * 2`` and amount of radians in full turn. |
  108. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  109. | in float **E** | An ``E`` constant (``2.718281``). Euler's number and a base of the natural logarithm. |
  110. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  111. | in bool **OUTPUT_IS_SRGB** | ``true`` when output is in sRGB color space (this is ``true`` in the Compatibility |
  112. | | renderer, ``false`` in Forward+ and Mobile). |
  113. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  114. | in float **CLIP_SPACE_FAR** | Clip space far ``z`` value. |
  115. | | In the Forward+ or Mobile renderers, it's ``0.0``. |
  116. | | In the Compatibility renderer, it's ``-1.0``. |
  117. +-----------------------------+-----------------------------------------------------------------------------------------------------+
  118. Vertex built-ins
  119. ^^^^^^^^^^^^^^^^
  120. Vertex data (``VERTEX``, ``NORMAL``, ``TANGENT``, and ``BITANGENT``) are presented in model space
  121. (also called local space). If not written to, these values will not be modified and be
  122. passed through as they came, then transformed into view space to be used in ``fragment()``.
  123. They can optionally be presented in world space by using the ``world_vertex_coords`` render mode.
  124. Users can disable the built-in modelview transform (projection will still happen later) and do
  125. it manually with the following code:
  126. .. code-block:: glsl
  127. shader_type spatial;
  128. render_mode skip_vertex_transform;
  129. void vertex() {
  130. VERTEX = (MODELVIEW_MATRIX * vec4(VERTEX, 1.0)).xyz;
  131. NORMAL = normalize((MODELVIEW_MATRIX * vec4(NORMAL, 0.0)).xyz);
  132. BINORMAL = normalize((MODELVIEW_MATRIX * vec4(BINORMAL, 0.0)).xyz);
  133. TANGENT = normalize((MODELVIEW_MATRIX * vec4(TANGENT, 0.0)).xyz);
  134. }
  135. Other built-ins, such as ``UV``, ``UV2``, and ``COLOR``, are also passed through to the ``fragment()`` function if not modified.
  136. Users can override the modelview and projection transforms using the ``POSITION`` built-in. If ``POSITION`` is written
  137. to anywhere in the shader, it will always be used, so the user becomes responsible for ensuring that it always has
  138. an acceptable value. When ``POSITION`` is used, the value from ``VERTEX`` is ignored and projection does not happen.
  139. However, the value passed to the fragment shader still comes from ``VERTEX``.
  140. For instancing, the ``INSTANCE_CUSTOM`` variable contains the instance custom data. When using particles, this information
  141. is usually:
  142. * **x**: Rotation angle in radians.
  143. * **y**: Phase during lifetime (``0.0`` to ``1.0``).
  144. * **z**: Animation frame.
  145. This allows you to easily adjust the shader to a particle system using default particles material. When writing a custom particle
  146. shader, this value can be used as desired.
  147. +----------------------------------------+--------------------------------------------------------+
  148. | Built-in | Description |
  149. +========================================+========================================================+
  150. | in vec2 **VIEWPORT_SIZE** | Size of viewport (in pixels). |
  151. +----------------------------------------+--------------------------------------------------------+
  152. | in mat4 **VIEW_MATRIX** | World space to view space transform. |
  153. +----------------------------------------+--------------------------------------------------------+
  154. | in mat4 **INV_VIEW_MATRIX** | View space to world space transform. |
  155. +----------------------------------------+--------------------------------------------------------+
  156. | in mat4 **MAIN_CAM_INV_VIEW_MATRIX** | View space to world space transform of camera used to |
  157. | | draw the current viewport. |
  158. +----------------------------------------+--------------------------------------------------------+
  159. | in mat4 **INV_PROJECTION_MATRIX** | Clip space to view space transform. |
  160. +----------------------------------------+--------------------------------------------------------+
  161. | in vec3 **NODE_POSITION_WORLD** | Node position, in world space. |
  162. +----------------------------------------+--------------------------------------------------------+
  163. | in vec3 **NODE_POSITION_VIEW** | Node position, in view space. |
  164. +----------------------------------------+--------------------------------------------------------+
  165. | in vec3 **CAMERA_POSITION_WORLD** | Camera position, in world space. |
  166. +----------------------------------------+--------------------------------------------------------+
  167. | in vec3 **CAMERA_DIRECTION_WORLD** | Camera direction, in world space. |
  168. +----------------------------------------+--------------------------------------------------------+
  169. | in uint **CAMERA_VISIBLE_LAYERS** | Cull layers of the camera rendering the current pass. |
  170. +----------------------------------------+--------------------------------------------------------+
  171. | in int **INSTANCE_ID** | Instance ID for instancing. |
  172. +----------------------------------------+--------------------------------------------------------+
  173. | in vec4 **INSTANCE_CUSTOM** | Instance custom data (for particles, mostly). |
  174. +----------------------------------------+--------------------------------------------------------+
  175. | in int **VIEW_INDEX** | The view that we are rendering. |
  176. | | ``VIEW_MONO_LEFT`` (``0``) for Mono (not multiview) or |
  177. | | left eye, ``VIEW_RIGHT`` (``1``) for right eye. |
  178. +----------------------------------------+--------------------------------------------------------+
  179. | in int **VIEW_MONO_LEFT** | Constant for Mono or left eye, always ``0``. |
  180. +----------------------------------------+--------------------------------------------------------+
  181. | in int **VIEW_RIGHT** | Constant for right eye, always ``1``. |
  182. +----------------------------------------+--------------------------------------------------------+
  183. | in vec3 **EYE_OFFSET** | Position offset for the eye being rendered. |
  184. | | Only applicable for multiview rendering. |
  185. +----------------------------------------+--------------------------------------------------------+
  186. | inout vec3 **VERTEX** | Position of the vertex, in model space. |
  187. | | In world space if ``world_vertex_coords`` is used. |
  188. +----------------------------------------+--------------------------------------------------------+
  189. | in int **VERTEX_ID** | The index of the current vertex in the vertex buffer. |
  190. +----------------------------------------+--------------------------------------------------------+
  191. | inout vec3 **NORMAL** | Normal in model space. |
  192. | | In world space if ``world_vertex_coords`` is used. |
  193. +----------------------------------------+--------------------------------------------------------+
  194. | inout vec3 **TANGENT** | Tangent in model space. |
  195. | | In world space if ``world_vertex_coords`` is used. |
  196. +----------------------------------------+--------------------------------------------------------+
  197. | inout vec3 **BINORMAL** | Binormal in model space. |
  198. | | In world space if ``world_vertex_coords`` is used. |
  199. +----------------------------------------+--------------------------------------------------------+
  200. | out vec4 **POSITION** | If written to, overrides final vertex position in clip |
  201. | | space. |
  202. +----------------------------------------+--------------------------------------------------------+
  203. | inout vec2 **UV** | UV main channel. |
  204. +----------------------------------------+--------------------------------------------------------+
  205. | inout vec2 **UV2** | UV secondary channel. |
  206. +----------------------------------------+--------------------------------------------------------+
  207. | inout vec4 **COLOR** | Color from vertices. |
  208. +----------------------------------------+--------------------------------------------------------+
  209. | out float **ROUGHNESS** | Roughness for vertex lighting. |
  210. +----------------------------------------+--------------------------------------------------------+
  211. | inout float **POINT_SIZE** | Point size for point rendering. |
  212. +----------------------------------------+--------------------------------------------------------+
  213. | inout mat4 **MODELVIEW_MATRIX** | Model/local space to view space transform |
  214. | | (use if possible). |
  215. +----------------------------------------+--------------------------------------------------------+
  216. | inout mat3 **MODELVIEW_NORMAL_MATRIX** | |
  217. +----------------------------------------+--------------------------------------------------------+
  218. | in mat4 **MODEL_MATRIX** | Model/local space to world space transform. |
  219. +----------------------------------------+--------------------------------------------------------+
  220. | in mat3 **MODEL_NORMAL_MATRIX** | |
  221. +----------------------------------------+--------------------------------------------------------+
  222. | inout mat4 **PROJECTION_MATRIX** | View space to clip space transform. |
  223. +----------------------------------------+--------------------------------------------------------+
  224. | in uvec4 **BONE_INDICES** | |
  225. +----------------------------------------+--------------------------------------------------------+
  226. | in vec4 **BONE_WEIGHTS** | |
  227. +----------------------------------------+--------------------------------------------------------+
  228. | in vec4 **CUSTOM0** | Custom value from vertex primitive. When using extra |
  229. | | UVs, ``xy`` is UV3 and ``zw`` is UV4. |
  230. +----------------------------------------+--------------------------------------------------------+
  231. | in vec4 **CUSTOM1** | Custom value from vertex primitive. When using extra |
  232. | | UVs, ``xy`` is UV5 and ``zw`` is UV6. |
  233. +----------------------------------------+--------------------------------------------------------+
  234. | in vec4 **CUSTOM2** | Custom value from vertex primitive. When using extra |
  235. | | UVs, ``xy`` is UV7 and ``zw`` is UV8. |
  236. +----------------------------------------+--------------------------------------------------------+
  237. | in vec4 **CUSTOM3** | Custom value from vertex primitive. |
  238. +----------------------------------------+--------------------------------------------------------+
  239. .. note::
  240. ``MODELVIEW_MATRIX`` combines both the ``MODEL_MATRIX`` and ``VIEW_MATRIX`` and is better suited when floating point issues may arise. For example, if the object is very far away from the world origin, you may run into floating point issues when using the separated ``MODEL_MATRIX`` and ``VIEW_MATRIX``.
  241. .. note::
  242. ``INV_VIEW_MATRIX`` is the matrix used for rendering the object in that pass, unlike ``MAIN_CAM_INV_VIEW_MATRIX``, which is the matrix of the camera in the scene. In the shadow pass, ``INV_VIEW_MATRIX``'s view is based on the camera that is located at the position of the light.
  243. Fragment built-ins
  244. ^^^^^^^^^^^^^^^^^^
  245. The default use of a Godot fragment processor function is to set up the material properties of your object
  246. and to let the built-in renderer handle the final shading. However, you are not required to use all
  247. these properties, and if you don't write to them, Godot will optimize away the corresponding functionality.
  248. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  249. | Built-in | Description |
  250. +========================================+==================================================================================================+
  251. | in vec2 **VIEWPORT_SIZE** | Size of viewport (in pixels). |
  252. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  253. | in vec4 **FRAGCOORD** | Coordinate of pixel center in screen space. ``xy`` specifies position in window. Origin is lower |
  254. | | left. ``z`` specifies fragment depth. It is also used as the output value for the fragment depth |
  255. | | unless ``DEPTH`` is written to. |
  256. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  257. | in bool **FRONT_FACING** | ``true`` if current face is front facing. |
  258. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  259. | in vec3 **VIEW** | Normalized vector from fragment position to camera (in view space). This is the same for both |
  260. | | perspective and orthogonal cameras. |
  261. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  262. | in vec2 **UV** | UV that comes from the ``vertex()`` function. |
  263. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  264. | in vec2 **UV2** | UV2 that comes from the ``vertex()`` function. |
  265. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  266. | in vec4 **COLOR** | COLOR that comes from the ``vertex()`` function. |
  267. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  268. | in vec2 **POINT_COORD** | Point coordinate for drawing points with ``POINT_SIZE``. |
  269. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  270. | in mat4 **MODEL_MATRIX** | Model/local space to world space transform. |
  271. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  272. | in mat3 **MODEL_NORMAL_MATRIX** | |
  273. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  274. | in mat4 **VIEW_MATRIX** | World space to view space transform. |
  275. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  276. | in mat4 **INV_VIEW_MATRIX** | View space to world space transform. |
  277. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  278. | in mat4 **PROJECTION_MATRIX** | View space to clip space transform. |
  279. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  280. | in mat4 **INV_PROJECTION_MATRIX** | Clip space to view space transform. |
  281. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  282. | in vec3 **NODE_POSITION_WORLD** | Node position, in world space. |
  283. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  284. | in vec3 **NODE_POSITION_VIEW** | Node position, in view space. |
  285. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  286. | in vec3 **CAMERA_POSITION_WORLD** | Camera position, in world space. |
  287. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  288. | in vec3 **CAMERA_DIRECTION_WORLD** | Camera direction, in world space. |
  289. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  290. | in uint **CAMERA_VISIBLE_LAYERS** | Cull layers of the camera rendering the current pass. |
  291. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  292. | in vec3 **VERTEX** | Position of the fragment (pixel), in view space. It is the ``VERTEX`` value from ``vertex()`` |
  293. | | interpolated between the face's vertices and transformed into view space. |
  294. | | If ``skip_vertex_transform`` is enabled, it may not be in view space. |
  295. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  296. | inout vec3 **LIGHT_VERTEX** | A writable version of ``VERTEX`` that can be used to alter light and shadows. Writing to this |
  297. | | will not change the position of the fragment. |
  298. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  299. | in int **VIEW_INDEX** | The view that we are rendering. |
  300. | | ``VIEW_MONO_LEFT`` (``0``) for Mono (not multiview) or |
  301. | | left eye, ``VIEW_RIGHT`` (``1``) for right eye. |
  302. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  303. | in int **VIEW_MONO_LEFT** | Constant for Mono or left eye, always ``0``. |
  304. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  305. | in int **VIEW_RIGHT** | Constant for right eye, always ``1``. |
  306. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  307. | in vec3 **EYE_OFFSET** | Position offset for the eye being rendered. Only applicable for multiview rendering. |
  308. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  309. | sampler2D **SCREEN_TEXTURE** | Removed in Godot 4. Use a ``sampler2D`` with ``hint_screen_texture`` instead. |
  310. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  311. | in vec2 **SCREEN_UV** | Screen UV coordinate for current pixel. |
  312. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  313. | sampler2D **DEPTH_TEXTURE** | Removed in Godot 4. Use a ``sampler2D`` with ``hint_depth_texture`` instead. |
  314. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  315. | out float **DEPTH** | Custom depth value (range of ``[0.0, 1.0]``). If ``DEPTH`` is being written to in any shader |
  316. | | branch, then you are responsible for setting the ``DEPTH`` for **all** other branches. |
  317. | | Otherwise, the graphics API will leave them uninitialized. |
  318. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  319. | inout vec3 **NORMAL** | Normal that comes from the ``vertex()`` function, in view space. |
  320. | | If ``skip_vertex_transform`` is enabled, it may not be in view space. |
  321. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  322. | inout vec3 **TANGENT** | Tangent that comes from the ``vertex()`` function, in view space. |
  323. | | If ``skip_vertex_transform`` is enabled, it may not be in view space. |
  324. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  325. | inout vec3 **BINORMAL** | Binormal that comes from the ``vertex()`` function, in view space. |
  326. | | If ``skip_vertex_transform`` is enabled, it may not be in view space. |
  327. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  328. | out vec3 **NORMAL_MAP** | Set normal here if reading normal from a texture instead of ``NORMAL``. |
  329. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  330. | out float **NORMAL_MAP_DEPTH** | Depth from ``NORMAL_MAP``. Defaults to ``1.0``. |
  331. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  332. | out vec3 **ALBEDO** | Albedo (default white). Base color. |
  333. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  334. | out float **ALPHA** | Alpha (range of ``[0.0, 1.0]``). If read from or written to, the material will go to the |
  335. | | transparent pipeline. |
  336. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  337. | out float **ALPHA_SCISSOR_THRESHOLD** | If written to, values below a certain amount of alpha are discarded. |
  338. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  339. | out float **ALPHA_HASH_SCALE** | |
  340. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  341. | out float **ALPHA_ANTIALIASING_EDGE** | |
  342. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  343. | out vec2 **ALPHA_TEXTURE_COORDINATE** | |
  344. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  345. | out float **METALLIC** | Metallic (range of ``[0.0, 1.0]``). |
  346. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  347. | out float **SPECULAR** | Specular. Defaults to ``0.5``, best not to modify unless you want to change IOR. |
  348. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  349. | out float **ROUGHNESS** | Roughness (range of ``[0.0, 1.0]``). |
  350. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  351. | out float **RIM** | Rim (range of ``[0.0, 1.0]``). If used, Godot calculates rim lighting. |
  352. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  353. | out float **RIM_TINT** | Rim Tint, range of ``0.0`` (white) to ``1.0`` (albedo). If used, Godot calculates rim lighting. |
  354. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  355. | out float **CLEARCOAT** | Small added specular blob. If used, Godot calculates Clearcoat. |
  356. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  357. | out float **CLEARCOAT_GLOSS** | Gloss of Clearcoat. If used, Godot calculates Clearcoat. |
  358. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  359. | out float **ANISOTROPY** | For distorting the specular blob according to tangent space. |
  360. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  361. | out vec2 **ANISOTROPY_FLOW** | Distortion direction, use with flowmaps. |
  362. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  363. | out float **SSS_STRENGTH** | Strength of Subsurface Scattering. If used, Subsurface Scattering will be applied to object. |
  364. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  365. | out vec4 **SSS_TRANSMITTANCE_COLOR** | |
  366. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  367. | out float **SSS_TRANSMITTANCE_DEPTH** | |
  368. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  369. | out float **SSS_TRANSMITTANCE_BOOST** | |
  370. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  371. | inout vec3 **BACKLIGHT** | |
  372. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  373. | out float **AO** | Strength of Ambient Occlusion. For use with pre-baked AO. |
  374. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  375. | out float **AO_LIGHT_AFFECT** | How much AO affects lights (range of ``[0.0, 1.0]``, default ``0.0``). |
  376. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  377. | out vec3 **EMISSION** | Emission color (can go over ``(1.0, 1.0, 1.0)`` for HDR). |
  378. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  379. | out vec4 **FOG** | If written to, blends final pixel color with ``FOG.rgb`` based on ``FOG.a``. |
  380. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  381. | out vec4 **RADIANCE** | If written to, blends environment map radiance with ``RADIANCE.rgb`` based on ``RADIANCE.a``. |
  382. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  383. | out vec4 **IRRADIANCE** | If written to, blends environment map irradiance with ``IRRADIANCE.rgb`` based on |
  384. | | ``IRRADIANCE.a``. |
  385. +----------------------------------------+--------------------------------------------------------------------------------------------------+
  386. .. note::
  387. Shaders going through the transparent pipeline when ``ALPHA`` is written to
  388. may exhibit transparency sorting issues. Read the
  389. :ref:`transparency sorting section in the 3D rendering limitations page <doc_3d_rendering_limitations_transparency_sorting>`
  390. for more information and ways to avoid issues.
  391. Light built-ins
  392. ^^^^^^^^^^^^^^^
  393. Writing light processor functions is completely optional. You can skip the ``light()`` function by using
  394. the ``unshaded`` render mode. If no light function is written, Godot will use the material properties
  395. written to in the ``fragment()`` function to calculate the lighting for you (subject to the render mode).
  396. The ``light()`` function is called for every light in every pixel. It is called within a loop for each light type.
  397. Below is an example of a custom ``light()`` function using a Lambertian lighting model:
  398. .. code-block:: glsl
  399. void light() {
  400. DIFFUSE_LIGHT += clamp(dot(NORMAL, LIGHT), 0.0, 1.0) * ATTENUATION * LIGHT_COLOR;
  401. }
  402. If you want the lights to add together, add the light contribution to ``DIFFUSE_LIGHT`` using ``+=``, rather than overwriting it.
  403. .. warning::
  404. The ``light()`` function won't be run if the ``vertex_lighting`` render mode is enabled, or if
  405. :ref:`Rendering > Quality > Shading > Force Vertex Shading<class_ProjectSettings_property_rendering/shading/overrides/force_vertex_shading>`
  406. is enabled in the Project Settings. (It's enabled by default on mobile platforms.)
  407. +-----------------------------------+------------------------------------------------------------------------+
  408. | Built-in | Description |
  409. +===================================+========================================================================+
  410. | in vec2 **VIEWPORT_SIZE** | Size of viewport (in pixels). |
  411. +-----------------------------------+------------------------------------------------------------------------+
  412. | in vec4 **FRAGCOORD** | Coordinate of pixel center in screen space. |
  413. | | ``xy`` specifies position in window, ``z`` |
  414. | | specifies fragment depth if ``DEPTH`` is not used. |
  415. | | Origin is lower-left. |
  416. +-----------------------------------+------------------------------------------------------------------------+
  417. | in mat4 **MODEL_MATRIX** | Model/local space to world space transform. |
  418. +-----------------------------------+------------------------------------------------------------------------+
  419. | in mat4 **INV_VIEW_MATRIX** | View space to world space transform. |
  420. +-----------------------------------+------------------------------------------------------------------------+
  421. | in mat4 **VIEW_MATRIX** | World space to view space transform. |
  422. +-----------------------------------+------------------------------------------------------------------------+
  423. | in mat4 **PROJECTION_MATRIX** | View space to clip space transform. |
  424. +-----------------------------------+------------------------------------------------------------------------+
  425. | in mat4 **INV_PROJECTION_MATRIX** | Clip space to view space transform. |
  426. +-----------------------------------+------------------------------------------------------------------------+
  427. | in vec3 **NORMAL** | Normal vector, in view space. |
  428. +-----------------------------------+------------------------------------------------------------------------+
  429. | in vec2 **SCREEN_UV** | Screen UV coordinate for current pixel. |
  430. +-----------------------------------+------------------------------------------------------------------------+
  431. | in vec2 **UV** | UV that comes from the ``vertex()`` function. |
  432. +-----------------------------------+------------------------------------------------------------------------+
  433. | in vec2 **UV2** | UV2 that comes from the ``vertex()`` function. |
  434. +-----------------------------------+------------------------------------------------------------------------+
  435. | in vec3 **VIEW** | View vector, in view space. |
  436. +-----------------------------------+------------------------------------------------------------------------+
  437. | in vec3 **LIGHT** | Light vector, in view space. |
  438. +-----------------------------------+------------------------------------------------------------------------+
  439. | in vec3 **LIGHT_COLOR** | :ref:`Light color<class_Light3D_property_light_color>` multiplied by |
  440. | | :ref:`light energy<class_Light3D_property_light_energy>` multiplied by |
  441. | | ``PI``. The ``PI`` multiplication is present because |
  442. | | physically-based lighting models include a division by ``PI``. |
  443. +-----------------------------------+------------------------------------------------------------------------+
  444. | in float **SPECULAR_AMOUNT** | For :ref:`class_OmniLight3D` and :ref:`class_SpotLight3D`, |
  445. | | ``2.0`` multiplied by |
  446. | | :ref:`light_specular<class_Light3D_property_light_specular>`. |
  447. | | For :ref:`class_DirectionalLight3D`, ``1.0``. |
  448. +-----------------------------------+------------------------------------------------------------------------+
  449. | in bool **LIGHT_IS_DIRECTIONAL** | ``true`` if this pass is a :ref:`class_DirectionalLight3D`. |
  450. +-----------------------------------+------------------------------------------------------------------------+
  451. | in float **ATTENUATION** | Attenuation based on distance or shadow. |
  452. +-----------------------------------+------------------------------------------------------------------------+
  453. | in vec3 **ALBEDO** | Base albedo. |
  454. +-----------------------------------+------------------------------------------------------------------------+
  455. | in vec3 **BACKLIGHT** | |
  456. +-----------------------------------+------------------------------------------------------------------------+
  457. | in float **METALLIC** | Metallic. |
  458. +-----------------------------------+------------------------------------------------------------------------+
  459. | in float **ROUGHNESS** | Roughness. |
  460. +-----------------------------------+------------------------------------------------------------------------+
  461. | out vec3 **DIFFUSE_LIGHT** | Diffuse light result. |
  462. +-----------------------------------+------------------------------------------------------------------------+
  463. | out vec3 **SPECULAR_LIGHT** | Specular light result. |
  464. +-----------------------------------+------------------------------------------------------------------------+
  465. | out float **ALPHA** | Alpha (range of ``[0.0, 1.0]``). If written to, the material will go |
  466. | | to the transparent pipeline. |
  467. +-----------------------------------+------------------------------------------------------------------------+
  468. .. note::
  469. Shaders going through the transparent pipeline when ``ALPHA`` is written to
  470. may exhibit transparency sorting issues. Read the
  471. :ref:`transparency sorting section in the 3D rendering limitations page <doc_3d_rendering_limitations_transparency_sorting>`
  472. for more information and ways to avoid issues.
  473. Transparent materials also cannot cast shadows or appear in
  474. ``hint_screen_texture`` and ``hint_depth_texture`` uniforms. This in turn prevents those
  475. materials from appearing in screen-space reflections or refraction.
  476. :ref:`SDFGI <doc_using_sdfgi>` sharp reflections are not visible on transparent
  477. materials (only rough reflections are visible on transparent materials).