standard_material_3d.rst 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775
  1. .. _doc_standard_material_3d:
  2. Standard Material 3D and ORM Material 3D
  3. ========================================
  4. Introduction
  5. ------------
  6. ``StandardMaterial3D`` and ``ORMMaterial3D`` (Occlusion, Roughness, Metallic)
  7. are default 3D materials that aim to provide most of the features artists look
  8. for in a material, without the need for writing shader code. However, they can
  9. be converted to shader code if additional functionality is needed.
  10. This tutorial explains the parameters present in both materials.
  11. There are 4 ways to add these materials to an object. A material can be added in
  12. the *Material* property of the mesh. It can be added in the *Material* property of
  13. the node using the mesh (such as a MeshInstance3D node), the *Material Override* property
  14. of the node using the mesh, and the *Material Overlay*.
  15. .. image:: img/add_material.webp
  16. If you add a material to the mesh itself, every time that mesh is used it will have that
  17. material. If you add a material to the node using the mesh, the material will only be used
  18. by that node, it will also override the material property of the mesh. If a material is
  19. added in the *Material Override* property of the node, it will only be used by that node.
  20. It will also override the regular material property of the node and the material property of
  21. the mesh.
  22. The *Material Overlay* property will render a material **over** the current one being used by
  23. the mesh. As an example, this can be used to put a transparent shield effect on a mesh.
  24. BaseMaterial 3D settings
  25. ------------------------
  26. StandardMaterial3D has many settings that determine the look of a material. All of these are
  27. under the BaseMaterial3D category
  28. .. image:: img/spatial_material1.png
  29. ORM materials are almost exactly the same with one difference. Instead of separate settings
  30. and textures for occlusion, roughness, and metallic, there is a single ORM texture. The different
  31. color channels of that texture are used for each parameter. Programs such as Substance Painter
  32. and Armor Paint will give you the option to export in this format, for these two programs it's
  33. with the export preset for unreal engine, which also uses ORM textures.
  34. Transparency
  35. ------------
  36. By default, materials in Godot are opaque. This is fast to render, but it means
  37. the material can't be seen through even if you use a transparent texture in the
  38. **Albedo > Texture** property (or set **Albedo > Color** to a transparent color).
  39. To be able to see through a material, the material needs to be made *transparent*.
  40. Godot offers several transparency modes:
  41. - **Disabled:** Material is opaque. This is the fastest to render, with all
  42. rendering features supported.
  43. - **Alpha:** Material is transparent. Semi-transparent areas are drawn with
  44. blending. This is slow to render, but it allows for partial transparency (also
  45. known as translucency). Materials using alpha blending also can't cast
  46. shadows, and are not visible in screen-space reflections.
  47. - **Alpha** is a good fit for particle effects and VFX.
  48. - **Alpha Scissor:** Material is transparent. Semi-transparent areas whose
  49. opacity is below **Alpha Scissor Threshold** are not drawn (above this
  50. opacity, these are drawn as opaque). This is faster to render than Alpha and
  51. doesn't exhibit transparency sorting issues. The downside is that this results
  52. in "all or nothing" transparency, with no intermediate values possible.
  53. Materials using alpha scissor can cast shadows.
  54. - **Alpha Scissor** is ideal for foliage and fences, since these have hard
  55. edges and require correct sorting to look good.
  56. - **Alpha Hash:** Material is transparent. Semi-transparent areas are drawn
  57. using dithering. This is also "all or nothing" transparency, but dithering
  58. helps represent partially opaque areas with limited precision depending on
  59. viewport resolution. Materials using alpha hash can cast shadows.
  60. - **Alpha Hash** is suited for realistic-looking hair, although stylized hair
  61. may work better with alpha scissor.
  62. - **Depth Pre-Pass:** This renders the object's fully opaque pixels via the
  63. opaque pipeline first, then renders the rest with alpha blending. This allows
  64. transparency sorting to be *mostly* correct (albeit not fully so, as partially
  65. transparent regions may still exhibit incorrect sorting). Materials using
  66. depth prepass can cast shadows.
  67. .. note::
  68. Godot will automatically force the material to be transparent with alpha
  69. blending if *any* of these conditions is met:
  70. - Setting the transparency mode to **Alpha** (as described here).
  71. - Setting a blend mode other than the default **Mix**
  72. - Enabling **Refraction**, **Proximity Fade**, or **Distance Fade**.
  73. Comparison between alpha blending (left) and alpha scissor (right) transparency:
  74. .. image:: img/spatial_material12.png
  75. .. warning::
  76. Alpha-blended transparency has several
  77. :ref:`limitations <doc_3d_rendering_limitations_transparency_sorting>`:
  78. - Alpha-blended materials are significantly slower to render, especially if
  79. they overlap.
  80. - Alpha-blended materials may exhibit sorting issues when transparent
  81. surfaces overlap each other. This means that surfaces may render in the
  82. incorrect order, with surfaces in the back appearing to be in front of
  83. those which are actually closer to the camera.
  84. - Alpha-blended materials don't cast shadows, although they can receive shadows.
  85. - Alpha-blended materials don't appear in any reflections (other than
  86. reflection probes).
  87. - Screen-space reflections and sharp SDFGI reflections don't appear on
  88. alpha-blended materials. When SDFGI is enabled, rough reflections are used
  89. as a fallback regardless of material roughness.
  90. Before using the **Alpha** transparency mode, always consider whether
  91. another transparency mode is more suited for your needs.
  92. .. _doc_standard_material_3d_alpha_antialiasing:
  93. Alpha Antialiasing
  94. ~~~~~~~~~~~~~~~~~~
  95. .. note::
  96. This property is only visible when the transparency mode is
  97. **Alpha Scissor** or **Alpha Hash**.
  98. While alpha scissor and alpha hash materials are faster to render than
  99. alpha-blended materials, they exhibit hard edges between opaque and transparent
  100. regions. While it's possible to use post-processing-based :ref:`antialiasing
  101. techniques <doc_3d_antialiasing>` such as FXAA and TAA, this is not always
  102. desired as these techniques tend to make the final result look blurrier or
  103. exhibit ghosting artifacts.
  104. There are 3 alpha antialiasing modes available:
  105. - **Disabled:** No alpha antialiasing. Edges of transparent materials will
  106. appear aliased unless a post-processing-based antialiasing solution is used.
  107. - **Alpha Edge Blend:** Results in a smooth transition between opaque and
  108. transparent areas. Also known as "alpha to coverage".
  109. - **Alpha Edge Clip:** Results in a sharp, but still antialiased transition
  110. between opaque and transparent areas. Also known as "alpha to coverage + alpha
  111. to one".
  112. When the alpha antialiasing mode is set to **Alpha Edge Blend** or **Alpha Edge
  113. Clip**, a new **Alpha Antialiasing Edge** property becomes visible below in the
  114. inspector. This property controls the threshold below which pixels should be
  115. made transparent. While you've already defined an alpha scissor threshold (when
  116. using **Alpha Scissor** only), this additional threshold is used to smoothly
  117. transition between opaque and transparent pixels. **Alpha Antialiasing Edge**
  118. must *always* be set to a value that is strictly below the alpha scissor
  119. threshold. The default of ``0.3`` is a sensible value with an alpha scissor of
  120. threshold of ``0.5``, but remember to adjust this alpha antialiasing edge when
  121. modifying the alpha scissor threshold.
  122. If you find the antialiasing effect not effective enough, try increasing **Alpha
  123. Antialiasing Edge** while making sure it's below **Alpha Scissor Threshold** (if
  124. the material uses alpha scissor). On the other hand, if you notice the texture's
  125. appearance visibly changing as the camera moves closer to the material, try
  126. decreasing **Alpha Antialiasing Edge**.
  127. .. important::
  128. For best results, MSAA 3D should be set to at least 2× in the Project
  129. Settings when using alpha antialiasing. This is because this feature relies
  130. on alpha to coverage, which is a feature provided by MSAA.
  131. Without MSAA, a fixed dithering pattern is applied on the material's edges,
  132. which isn't very effective at smoothing out edges (although it can still
  133. help a little).
  134. Blend Mode
  135. ~~~~~~~~~~
  136. Controls the blend mode for the material. Keep in mind that any mode
  137. other than *Mix* forces the object to go through the transparent pipeline.
  138. * **Mix:** Default blend mode, alpha controls how much the object is visible.
  139. * **Add:** The final color of the object is added to the color of the screen,
  140. nice for flares or some fire-like effects.
  141. * **Sub:** The final color of the object is subtracted from the color of the
  142. screen.
  143. * **Mul:** The final color of the object is multiplied with the color of the
  144. screen.
  145. .. image:: img/spatial_material8.png
  146. Cull Mode
  147. ~~~~~~~~~
  148. Determines which side of the object is not drawn when backfaces are rendered:
  149. * **Back:** The back of the object is culled when not visible (default).
  150. * **Front:** The front of the object is culled when not visible.
  151. * **Disabled:** Used for objects that are double-sided (no culling is performed).
  152. .. note::
  153. By default, Blender has backface culling disabled on materials and will
  154. export materials to match how they render in Blender. This means that
  155. materials in Godot will have their cull mode set to **Disabled**. This can
  156. decrease performance since backfaces will be rendered, even when they are
  157. being culled by other faces. To resolve this, enable **Backface Culling** in
  158. Blender's Materials tab, then export the scene to glTF again.
  159. Depth Draw Mode
  160. ~~~~~~~~~~~~~~~
  161. Specifies when depth rendering must take place.
  162. * **Opaque Only (default):** Depth is only drawn for opaque objects.
  163. * **Always:** Depth draw is drawn for both opaque and transparent objects.
  164. * **Never:** No depth draw takes place
  165. (do not confuse this with the No Depth Test option below).
  166. * **Depth Pre-Pass:** For transparent objects, an opaque pass is made first
  167. with the opaque parts, then transparency is drawn above.
  168. Use this option with transparent grass or tree foliage.
  169. .. image:: img/material_depth_draw.png
  170. No Depth Test
  171. ~~~~~~~~~~~~~
  172. In order for close objects to appear over far away objects, depth testing
  173. is performed. Disabling it has the result of objects appearing over
  174. (or under) everything else.
  175. Disabling this makes the most sense for drawing indicators in world space,
  176. and works very well with the *Render Priority* property of Material
  177. (see the bottom of this page).
  178. .. image:: img/spatial_material3.png
  179. Shading
  180. -------
  181. Shading mode
  182. ~~~~~~~~~~~~
  183. Materials support three shading modes: **Per-Pixel**, **Per-Vertex**, and
  184. **Unshaded**.
  185. .. figure:: img/standard_material_shading_modes.webp
  186. :align: center
  187. :alt: Three spheres showing the Per-Pixel, Per-Vertex, and Unshaded modes.
  188. The **Per-Pixel** shading mode calculates lighting for each pixel, and is a good
  189. fit for most use cases. However, in some cases you may want to increase
  190. performance by using another shading mode.
  191. The **Per-Vertex** shading mode, often called "vertex shading" or "vertex lighting",
  192. instead calculates lighting once for each vertex, and interpolates the result
  193. between each pixel.
  194. On low-end or mobile devices, using per-vertex lighting can considerably increase
  195. rendering performance. When rendering several layers of transparency,
  196. such as when using particle systems, using per-vertex shading can improve
  197. performance, especially when the camera is close to particles.
  198. You can also use per-vertex lighting to achieve a retro look.
  199. .. figure:: img/standard_material_shading_modes_textured.webp
  200. :align: center
  201. :alt: Two cubes with a brick texture, one shaded and one unshaded.
  202. Texture from `AmbientCG <https://ambientcg.com/view?id=Bricks051>`__
  203. The **Unshaded** shading mode does not calculate lighting at all. Instead, the
  204. **Albedo** color is output directly. Lights will not affect the material at all,
  205. and unshaded materials will tend to appear considerably brighter than shaded
  206. materials.
  207. Rendering unshaded is useful for some specific visual effects. If maximum
  208. performance is needed, it can also be used for particles, or low-end or
  209. mobile devices.
  210. Diffuse Mode
  211. ~~~~~~~~~~~~
  212. Specifies the algorithm used by diffuse scattering of light when hitting
  213. the object. The default is **Burley**. Other modes are also available:
  214. * **Burley:** Default mode, the original Disney Principled PBS diffuse algorithm.
  215. * **Lambert:** Is not affected by roughness.
  216. * **Lambert Wrap:** Extends Lambert to cover more than 90 degrees when
  217. roughness increases. Works great for hair and simulating cheap
  218. subsurface scattering. This implementation is energy conserving.
  219. * **Toon:** Provides a hard cut for lighting, with smoothing affected by roughness.
  220. It is recommended you disable sky contribution from your environment's
  221. ambient light settings or disable ambient light in the StandardMaterial3D
  222. to achieve a better effect.
  223. .. image:: img/spatial_material6.webp
  224. Specular Mode
  225. ~~~~~~~~~~~~~
  226. Specifies how the specular blob will be rendered. The specular blob
  227. represents the shape of a light source reflected in the object.
  228. * **SchlickGGX:** The most common blob used by PBR 3D engines nowadays.
  229. * **Toon:** Creates a toon blob, which changes size depending on roughness.
  230. * **Disabled:** Sometimes the blob gets in the way. Begone!
  231. .. image:: img/spatial_material7.webp
  232. Disable Ambient Light
  233. ~~~~~~~~~~~~~~~~~~~~~
  234. Makes the object not receive any kind of ambient lighting that would
  235. otherwise light it.
  236. Disable Fog
  237. ~~~~~~~~~~~
  238. Makes the object unaffected by depth-based or volumetric fog. This is useful for particles or other additively blended materials that would otherwise show the shape of the mesh (even in places where it would be invisible without the fog).
  239. Vertex Color
  240. ------------
  241. This setting allows choosing what is done by default to vertex colors that come
  242. from your 3D modeling application. By default, they are ignored.
  243. .. image:: img/spatial_material4.png
  244. Use as Albedo
  245. ~~~~~~~~~~~~~
  246. Choosing this option means vertex color is used as albedo color.
  247. Is sRGB
  248. ~~~~~~~
  249. Most 3D modeling software will likely export vertex colors as sRGB, so toggling
  250. this option on will help them look correct.
  251. Albedo
  252. ------
  253. *Albedo* is the base color for the material, on which all the other settings
  254. operate. When set to *Unshaded*, this is the only color that is visible. In
  255. previous versions of Godot, this channel was named *Diffuse*. The change
  256. of name mainly happened because, in PBR (Physically Based Rendering), this color affects many
  257. more calculations than just the diffuse lighting path.
  258. Albedo color and texture can be used together as they are multiplied.
  259. *Alpha channel* in albedo color and texture is also used for the
  260. object transparency. If you use a color or texture with *alpha channel*,
  261. make sure to either enable transparency or *alpha scissoring* for it to work.
  262. Metallic
  263. --------
  264. Godot uses a metallic model over competing models due to its simplicity.
  265. This parameter defines how reflective the material is. The more reflective, the
  266. less diffuse/ambient light affects the material and the more light is reflected.
  267. This model is called "energy-conserving".
  268. The *Specular* parameter is a general amount for the reflectivity (unlike
  269. *Metallic*, this is not energy-conserving, so leave it at ``0.5`` and don't touch
  270. it unless you need to).
  271. The minimum internal reflectivity is ``0.04``, so it's impossible to make a
  272. material completely unreflective, just like in real life.
  273. .. image:: img/spatial_material13.png
  274. Roughness
  275. ---------
  276. *Roughness* affects the way reflection happens. A value of ``0`` makes it a
  277. perfect mirror while a value of ``1`` completely blurs the reflection (simulating
  278. natural microsurfacing). Most common types of materials can be achieved with
  279. the right combination of *Metallic* and *Roughness*.
  280. .. image:: img/spatial_material14.png
  281. Emission
  282. --------
  283. *Emission* specifies how much light is emitted by the material (keep in mind this
  284. does not include light surrounding geometry unless :ref:`VoxelGI <doc_using_voxel_gi>`
  285. or :ref:`SDFGI <doc_using_sdfgi>` are used). This value is added to the resulting
  286. final image and is not affected by other lighting in the scene.
  287. .. image:: img/spatial_material15.png
  288. Normal map
  289. ----------
  290. Normal mapping allows you to set a texture that represents finer shape detail.
  291. This does not modify geometry, only the incident angle for light. In Godot,
  292. only the red and green channels of normal maps are used for better compression
  293. and wider compatibility.
  294. .. image:: img/spatial_material16.png
  295. .. note::
  296. Godot requires the normal map to use the X+, Y+ and Z+ coordinates, this is
  297. known as OpenGL style. If you've imported a material made to be used with
  298. another engine it may be DirectX style, in which case the normal map needs to
  299. be converted so its Y axis is flipped.
  300. More information about normal maps (including a coordinate order table for
  301. popular engines) can be found
  302. `here <http://wiki.polycount.com/wiki/Normal_Map_Technical_Details>`__.
  303. Rim
  304. ---
  305. Some fabrics have small micro-fur that causes light to scatter around it. Godot
  306. emulates this with the *Rim* parameter. Unlike other rim lighting implementations,
  307. which just use the emission channel, this one actually takes light into account
  308. (no light means no rim). This makes the effect considerably more believable.
  309. .. image:: img/spatial_material17.png
  310. Rim size depends on roughness, and there is a special parameter to specify how
  311. it must be colored. If *Tint* is ``0``, the color of the light is used for the
  312. rim. If *Tint* is ``1``, then the albedo of the material is used. Using
  313. intermediate values generally works best.
  314. Clearcoat
  315. ---------
  316. The *Clearcoat* parameter is used to add a secondary pass of transparent coat
  317. to the material. This is common in car paint and toys. In practice, it's a
  318. smaller specular blob added on top of the existing material.
  319. .. image:: img/clearcoat_comparison.png
  320. Anisotropy
  321. ----------
  322. This changes the shape of the specular blob and aligns it to tangent space.
  323. Anisotropy is commonly used with hair, or to make materials such as brushed
  324. aluminum more realistic. It works especially well when combined with flowmaps.
  325. .. image:: img/spatial_material18.png
  326. Ambient Occlusion
  327. -----------------
  328. It is possible to specify a baked ambient occlusion map. This map affects how
  329. much ambient light reaches each surface of the object (it does not affect direct
  330. light by default). While it is possible to use Screen-Space Ambient Occlusion
  331. (SSAO) to generate ambient occlusion, nothing beats the quality of a well-baked
  332. AO map. It is recommended to bake ambient occlusion whenever possible.
  333. .. image:: img/spatial_material19.png
  334. Height
  335. ------
  336. Setting a height map on a material produces a ray-marched search to emulate the
  337. proper displacement of cavities along the view direction. This only creates an
  338. illusion of depth, and does not add real geometry — for a height map shape used
  339. for physics collision (such as terrain), see :ref:`class_HeightMapShape3D`. It
  340. may not work for complex objects, but it produces a realistic depth effect for
  341. textures. For best results, *Height* should be used together with normal
  342. mapping.
  343. .. image:: img/spatial_material20.png
  344. Subsurface Scattering
  345. ---------------------
  346. *This is only available in the Forward+ renderer, not the Mobile or Compatibility
  347. renderers.*
  348. This effect emulates light that penetrates an object's surface, is scattered,
  349. and then comes out. It is useful to create realistic skin, marble, colored
  350. liquids, etc.
  351. .. image:: img/spatial_material21.png
  352. Back Lighting
  353. -------------
  354. This controls how much light from the lit side (visible to light) is transferred
  355. to the dark side (opposite from the light). This works well for thin objects
  356. such as plant leaves, grass, human ears, etc.
  357. Refraction
  358. ----------
  359. When refraction is enabled, Godot attempts to fetch information from behind the
  360. object being rendered. This allows distorting the transparency in a way similar
  361. to refraction in real life.
  362. Remember to use a transparent albedo texture (or reduce the albedo color's alpha
  363. channel) to make refraction visible, as refraction relies on transparency to
  364. have a visible effect.
  365. Refraction also takes the material roughness into account. Higher roughness
  366. values will make the objects behind the refraction look blurrier, which
  367. simulates real life behavior. If you can't see behind the object when refraction
  368. is enabled and albedo transparency is reduced, decrease the material's
  369. **Roughness** value.
  370. A normal map can optionally be specified in the **Refraction Texture** property
  371. to allow distorting the refraction's direction on a per-pixel basis.
  372. .. image:: img/spatial_material23.png
  373. .. note::
  374. Refraction is implemented as a screen-space effect and forces the material
  375. to be transparent. This makes the effect relatively fast, but this results
  376. in some limitations:
  377. - :ref:`Transparency sorting <doc_3d_rendering_limitations_transparency_sorting>`
  378. issues may occur.
  379. - The refractive material cannot refract onto itself, or onto other
  380. transparent materials. A refractive material behind another transparent
  381. material will be invisible.
  382. - Off-screen objects cannot appear in the refraction. This is most
  383. noticeable with high refraction strength values.
  384. - Opaque materials in front of the refractive material will appear to have
  385. "refracted" edges, even though they shouldn't.
  386. Detail
  387. ------
  388. Godot allows using secondary albedo and normal maps to generate a detail
  389. texture, which can be blended in many ways. By combining this with secondary
  390. UV or triplanar modes, many interesting textures can be achieved.
  391. .. image:: img/spatial_material24.png
  392. There are several settings that control how detail is used.
  393. Mask: The detail mask is a black and white image used to control where the
  394. blending takes place on a texture. White is for the detail textures, Black
  395. is for the regular material textures, different shades of gray are for
  396. partial blending of the material textures and detail textures.
  397. Blend Mode: These four modes control how the textures are blended together.
  398. - Mix: Combines pixel values of both textures. At black, only show the material texture,
  399. at white, only show the detail texture. Values of gray create a smooth blend between
  400. the two.
  401. - Add: Adds pixel values of one Texture with the other. Unlike mix mode
  402. both textures are completely mixed at white parts of a mask and not at gray
  403. parts. The original texture is mostly unchanged at black
  404. - Sub: Subtracts pixel values of one texture with the other. The second
  405. texture is completely subtracted at white parts of a mask with only a little
  406. subtraction in black parts, gray parts being different levels of subtraction
  407. based on the exact texture.
  408. - Mul: Multiplies the RGB channel numbers for each pixel from the top texture
  409. with the values for the corresponding pixel from the bottom texture.
  410. Albedo: This is where you put an albedo texture you want to blend. If nothing
  411. is in this slot it will be interpreted as white by default.
  412. Normal: This is where you put a normal texture you want to blend. If nothing is
  413. in this slot it will be interpreted as a flat normal map. This can still be used
  414. even if the material does not have normal map enabled.
  415. UV1 and UV2
  416. -----------
  417. Godot supports two UV channels per material. Secondary UV is often useful for
  418. ambient occlusion or emission (baked light). UVs can be scaled and offset,
  419. which is useful when using repeating textures.
  420. .. _doc_standard_material_3d_triplanar_mapping:
  421. Triplanar Mapping
  422. ~~~~~~~~~~~~~~~~~
  423. Triplanar mapping is supported for both UV1 and UV2. This is an alternative way
  424. to obtain texture coordinates, sometimes called "Autotexture". Textures are
  425. sampled in X, Y and Z and blended by the normal. Triplanar mapping can be
  426. performed in either world space or object space.
  427. In the image below, you can see how all primitives share the same material with
  428. world triplanar, so the brick texture continues smoothly between them.
  429. .. image:: img/spatial_material25.png
  430. World Triplanar
  431. ~~~~~~~~~~~~~~~
  432. When using triplanar mapping, it is computed in object local space. This
  433. option makes it use world space instead.
  434. .. _doc_standard_material_3d_sampling:
  435. Sampling
  436. --------
  437. Filter
  438. ~~~~~~
  439. The filtering method for the textures used by the material. See :ref:`this page<class_BaseMaterial3D_property_texture_filter>`
  440. for a full list of options and their description.
  441. Repeat
  442. ~~~~~~
  443. if the textures used by the material repeat, and how they repeat. See :ref:`this page<class_BaseMaterial3D_property_texture_repeat>`
  444. for a full list of options and their description.
  445. Shadows
  446. -------
  447. Do Not Receive Shadows
  448. ~~~~~~~~~~~~~~~~~~~~~~
  449. Makes the object not receive any kind of shadow that would otherwise
  450. be cast onto it.
  451. Use Shadow to Opacity
  452. ~~~~~~~~~~~~~~~~~~~~~
  453. Lighting modifies the alpha so shadowed areas are opaque and non-shadowed
  454. areas are transparent. Useful for overlaying shadows onto a camera feed in AR.
  455. Billboard
  456. ---------
  457. Billboard Mode
  458. ~~~~~~~~~~~~~~
  459. Enables billboard mode for drawing materials. This controls how the object
  460. faces the camera:
  461. * **Disabled:** Billboard mode is disabled.
  462. * **Enabled:** Billboard mode is enabled. The object's -Z axis will always
  463. face the camera's viewing plane.
  464. * **Y-Billboard:** The object's X axis will always be aligned with the camera's viewing plane.
  465. * **Particle Billboard:** Most suited for particle systems, because it allows
  466. specifying :ref:`flipbook animation <doc_process_material_properties_animation>`.
  467. .. image:: img/spatial_material9.png
  468. The **Particles Anim** section is only visible when the billboard mode is **Particle Billboard**.
  469. Billboard Keep Scale
  470. ~~~~~~~~~~~~~~~~~~~~
  471. Enables scaling a mesh in billboard mode.
  472. Grow
  473. ----
  474. Grows the object vertices in the direction pointed by their normals:
  475. .. image:: img/spatial_material10.png
  476. This is commonly used to create cheap outlines. Add a second material pass,
  477. make it black and unshaded, reverse culling (Cull Front), and add some grow:
  478. .. image:: img/spatial_material11.png
  479. .. note::
  480. For Grow to work as expected, the mesh must have connected faces with shared
  481. vertices, or "smooth shading". If the mesh has disconnected faces with unique
  482. vertices, or "flat shading", the mesh will appear to have gaps when using Grow.
  483. Transform
  484. ---------
  485. Fixed Size
  486. ~~~~~~~~~~
  487. This causes the object to be rendered at the same size no matter the distance.
  488. This is useful mostly for indicators (no depth test and high render priority)
  489. and some types of billboards.
  490. Use Point Size
  491. ~~~~~~~~~~~~~~
  492. This option is only effective when the geometry rendered is made of points
  493. (generally it's made of triangles when imported from 3D modeling software). If
  494. so, then those points can be resized (see below).
  495. Point Size
  496. ~~~~~~~~~~
  497. When drawing points, specify the point size in pixels.
  498. Transmission
  499. ~~~~~~~~~~~~
  500. This controls how much light from the lit side (visible to light) is transferred
  501. to the dark side (opposite from the light). This works well for thin objects
  502. such as plant leaves, grass, human ears, etc.
  503. .. image:: img/spatial_material22.png
  504. Proximity and Distance Fade
  505. ---------------------------
  506. Godot allows materials to fade by proximity to each other as well as depending
  507. on the distance from the viewer. Proximity fade is useful for effects such as
  508. soft particles or a mass of water with a smooth blending to the shores.
  509. .. image:: img/spatial_material_proxfade.gif
  510. Distance fade is useful for light shafts or indicators that are only present
  511. after a given distance.
  512. Keep in mind enabling proximity fade or distance fade with **Pixel Alpha** mode
  513. enables alpha blending. Alpha blending is more GPU-intensive and can cause
  514. transparency sorting issues. Alpha blending also disables many material
  515. features such as the ability to cast shadows.
  516. .. note::
  517. To hide a character when they get too close to the camera, consider using
  518. **Pixel Dither** or better, **Object Dither** (which is even faster than
  519. **Pixel Dither**).
  520. **Pixel Alpha** mode: The actual transparency of a pixel of the object changes
  521. with distance to the camera. This is the most effect, but forces the material
  522. into the transparency pipeline (which leads, for example, to no shadows).
  523. .. image:: img/standart_material_distance_fade_pixel_alpha_mode.webp
  524. **Pixel Dither** mode: What this does is sort of approximate the transparency
  525. by only having a fraction of the pixels rendered.
  526. .. image:: img/standart_material_distance_fade_pixel_dither_mode.webp
  527. **Object Dither** mode: Like the previous mode, but the calculated transparency
  528. is the same across the entire object's surface.
  529. .. image:: img/standart_material_distance_fade_object_dither_mode.webp
  530. Material Settings
  531. -----------------
  532. Render priority
  533. ---------------
  534. The rendering order of objects can be changed, although this is mostly
  535. useful for transparent objects (or opaque objects that perform depth draw
  536. but no color draw, such as cracks on the floor).
  537. Objects are sorted by an opaque/transparent queue, then :ref:`render_priority<class_Material_property_render_priority>`,
  538. with higher priority being drawn later. Transparent objects are also sorted by depth.
  539. Depth testing overrules priority. Priority alone cannot force opaque objects to be drawn over each other.
  540. Next Pass
  541. ---------
  542. Setting :ref:`next_pass<class_Material_property_next_pass>` on a material
  543. will cause an object to be rendered again with that next material.
  544. Materials are sorted by an opaque/transparent queue, then :ref:`render_priority<class_Material_property_render_priority>`,
  545. with higher priority being drawn later.
  546. .. image:: img/next_pass.webp
  547. Depth will test equal between both materials unless the grow setting or other vertex transformations are used.
  548. Multiple transparent passes should use :ref:`render_priority<class_Material_property_render_priority>` to ensure correct ordering.