godot-docs/tutorials/3d/materials.rst

121 lines
3.9 KiB
ReStructuredText
Raw Normal View History

2016-02-08 23:45:57 +01:00
.. _doc_materials:
2016-02-06 01:54:33 +01:00
Materials
=========
Introduction
------------
Materials can be applied to most visible 3D objects, they basically
are a description to how light reacts to that object. There are many
types of materials, but the main ones are the
:ref:`FixedMaterial <class_FixedMaterial>`
and
:ref:`ShaderMaterial <class_ShaderMaterial>`.
Tutorials for each of them exist :ref:`doc_fixed_materials` and :ref:`doc_shader_materials`.
This tutorial is about the basic properties shared between them.
2016-02-06 01:54:33 +01:00
.. image:: /img/material_flags.png
Flags
-----
Materials, no matter which type they are, have a set of flags
associated. Each has a different use and will be explained as follows.
Visible
~~~~~~~
Toggles whether the material is visible. If unchecked, the object will
not be shown.
Double Sided & Invert Faces
~~~~~~~~~~~~~~~~~~~~~~~~~~~
Godot by default only shows geometry faces (triangles) when facing the
camera. To do this it needs them to be in view in clockwise order.
This saves a lot of GPU power by ensuring that not visible triangles
are not drawn.
Some flat objects might need to be drawn all the times though, for
this the "double sided" flag will make sure that no matter the facing,
the triangle will always be drawn. It is also possible to invert this
check and draw counter-clockwise looking faces too, though it's not
very useful except for a few cases (like drawing outlines).
2016-02-06 01:54:33 +01:00
Unshaded
~~~~~~~~
Objects are always black unless light affects them, and their shading
changes according to the type and direction of lights. When this flag is
turned on, the diffuse color is displayed right the same as it appears
in the texture or parameter:
.. image:: /img/material_unshaded.png
On Top
~~~~~~
When this flag is turned on, te object will be drawn after everything
else has been drawn and without a depth test. This is generally only
useful for HUD effects or gizmos.
Ligthmap on UV2
~~~~~~~~~~~~~~~
2016-02-08 23:45:57 +01:00
When using lightmapping (see the :ref:`doc_light_baking` tutorial), this option
2016-02-06 01:54:33 +01:00
determines that the lightmap should be accessed on the UV2 array instead
of regular UV.
Parameters
----------
Some parameters also exist for controlling drawing and blending:
Blend Mode
~~~~~~~~~~
Objects are usually blended in Mix mode. Other blend modes (Add and Sub)
exist for special cases (usually particle effects, light rays, etc) but
materials can be set to them:
.. image:: /img/fixed_material_blend.png
Line Width
~~~~~~~~~~
When drawing lines, the size of them can be adjusted here per material.
Depth Draw Mode
~~~~~~~~~~~~~~~
This is a tricky but very useful setting. By default, opaque objects are
drawn using the depth buffer and translucent objects are not (but are
sorted by depth). This behavior can be changed here. The options are:
- **Always**: Draw objects with depth always, even those with alpha.
This often results in glitches like the one in the first image (which
is why it's not the default).
- **Opaque Only**: Draw objects with depth only when they are opaque,
and do not se depth for alpha. This is the default because it's fast,
but it's not the most correct setting. Objects with transparency that
self-intersect will always look wrong, specially those that mix
opaque and transparent areas, like grass tree leaves, etc. Objects
with transparency also can't cast shadows, this is evident i the
second image.
- **Alpha Pre-Pass**: The same as above, but a depth pass is performed
for the opaque areas of objects with transparency. This makes objects
with transparency look much more correct. In the third image it is
evident how the leaves cast shadows between them and into the floor.
This setting is turned off by default because, while on PC this is
not very costly, mobile devices suffer a lot when this setting is
turned on, so use it with care.
- **Never**: Never use the depth buffer for this material. This is
mostly useful in combination with the "On Top" flag explained above.
.. image:: /img/material_depth_draw.png