Skip to content

Latest commit

 

History

History
108 lines (74 loc) · 4.14 KB

File metadata and controls

108 lines (74 loc) · 4.14 KB

Mesh Geometry

Example:

  1. Start Blender and empty the scene.
  2. Create any Mesh-Object to the scene, eg. cube primitive:
  3. Give the Object an appropriate name.
  • In the Object Tab
  • Generic names are automatically generated, unique names help distinguish objects,

Double-Sided Mesh

  • Each triangle is composed of 3 vertices, edges and a face.
  • To decide which way the face is pointing a vector(normal), perpendicular to the face is used.
  • This normal vector can be flipped to either side of the triangle; a common source for triangles appearing to not render.

Sometimes you want to allow the mesh to ignore the normal and render both sides, eg a cloak.

  • In the Properties Editor, in the Material Properties Tab
  • Enable/Disable Backface Culling, see notes for more detail.

Double Sided Mesh

UV Unwrapping/Mapping

Example:

  1. :ref:`Create a mesh-object <geometry-mesh>`.
  2. In Edit Mode, select the faces you want to unwrap.
  3. Press U, select Unwrap > Smart UV Project or an unwrapping algorithm of your choice.

Notes:

Vertex Color & Alpha

Example:

  1. :ref:`Create a mesh-object <geometry-mesh>`.
  2. Switch to Vertex Paint mode, this automatically adds a base vertex color layer. Make sure you name this layer 'RGBA'
  3. Apply the desired vertex colors evenly to the vertex.
  4. You can alter the alpha channel using the 'Add Alpha' and 'Erase Alpha' brushes.

Notes:

  • The Nif format only supports a single color per vertex, whereas Blender vertex color per face vertex.
  • Blender treats the vertex as if the faces had been split apart, each face can have a different colour for that vertex.
  • This image should clarify per-face vertex colouring
  • On export, the scripts will create extra vertices for different vertex colors per face.

Shape Key Animations

Example:

  1. :ref:`Create a mesh-object <geometry-mesh>`.
  2. Add relative shape keys to your mesh.
  3. Keyframe each shape key's value so that the key influences the shape of the mesh at the desired time.