Componentes Mesh
Material

Meshes

Meshes make up a large part of your 3D worlds. Aside from some Asset store plugins, Unity does not include modelling tools. Unity does however have great interactivity with most 3D modelling packages. Unity supports triangulated or Quadrangulated polygon meshes. Nurbs, Nurms, Subdiv surfaces must be converted to polygons.

Formatos 3D

Importar mallas a Unity se puede lograr mediante dos tipos de archivos principales:

  1. Formatos de archivo 3D exportados, como: .FBX u .OBJ
  2. Archivos propios de aplicación 3D como formatos .Max y .Blend, de 3D Studio Max o Blender por ejemplo.

Cualquiera de estos tipos de archivos deberían dejar importar sus mallas a Unity, pero, existen unas consideraciones en particular que se deben tener en cuenta de acuerdo al tipo que se escogió:

Archivos 3D exportados

Unity puede leer archivos .FBX, .dae (Collada), .3DS, .dxf y .obj, los exportadores FBX se pueden encontrar aquí y exportadores obj o Collada se pueden encontrar en muchas aplicaciones.

Ventajas:

  • Solo se exportan los datos que uno necesita
  • Los datos son verificables (se re-importa en el paquete 3D antes que en Unity)
  • Generalmente son archivos más pequeños
  • Fomenta un enfoque modular - p. ej. diferentes componentes para tipos de colisión o interactividad.
  • Soporta otros paquetes 3D para cuyo formato propietario no tenemos soporte directo

Desventajas:

  • Puede ser un flujo de trabajo más lento para la creación de prototipos e iteraciones
  • Es más fácil perder la pista de las versiones entre la fuente (archivo de trabajo) y los datos del juego (un FBX exportado por ejemplo)

Archivos propietarios de aplicaciones 3D

Unity también puede importar, mediante conversión archivos : Max, Maya,Blender, Cinema4D, Modo, Lightwave & Cheetah3D, e.g .Max, .MB, .MA etc.

Ventajas:

  • Proceso rápido de iteración (al guardar el archivo fuente, Unity re-importa automáticamente)
  • Simple de usar al principio

Desventajas:

  • Una copia licenciada del software debe estar instalada en todas las máquinas que usan el proyecto de Unity
  • Los archivos pueden llenarse de datos innecesarios
  • Los archivos grandes pueden ralentizar las actualizaciones de Unity
  • Menos validación, por lo tanto es más difícil solucionar problemas

Here are some guidelines for directly supported 3D applications, others can most often export file type listed above.

Texturas

Unity will attempt to find the textures used by a mesh automatically on import by following a specific search plan. First, the importer will look for a sub-folder called Textures within the same folder as the mesh or in any parent folder. If this fails, an exhaustive search of all textures in the project will be carried out. Although slightly slower, the main disadvantage of the exhaustive search is that there could be two or more textures in the project with the same name. In this case, it is not guaranteed that the right one will be found.

Place your textures in a Textures folder at or above the assets level
Place your textures in a Textures folder at or above the asset’s level

FBX importer options for the model

Material Generation and Assignment

For each imported material Unity will apply the following rules:-

If material generation is disabled (i.e. Import Materials is unchecked), then it will assign the Default-Diffuse material. If it is enabled then it will do the following:

  • Unity will pick a name for the Unity material based on the Material Naming setting
  • Unity will try to find an existing material with that name. The scope of the Material search is defined by the Material Search setting.
  • If Unity succeeds in finding an existing material then it will use it for the imported scene, otherwise it will generate a new material

Colliders

Unity uses two main types of colliders: Mesh Colliders and Primitive Colliders. Mesh colliders are components that use imported mesh data and can be used for environment collision. When you enable Generate Colliders in the Import Settings, a Mesh collider is automatically added when the mesh is added to the Scene. It will be considered solid as far as the physics system is concerned.

If you are moving the object around (a car for example), you can not use Mesh colliders. Instead, you will have to use Primitive colliders. In this case you should disable the Generate Colliders setting.

Animations

Animations are automatically imported from the scene. For more details about animation import options see the section on asset preparation and import in the Mecanim animation system.

Normal mapping and characters

If you have a character with a normal map that was generated from a high-polygon version of the model, you should import the game-quality version with a Smoothing angle of 180 degrees. This will prevent odd-looking seams in lighting due to tangent splitting. If the seams are still present with these settings, enable Split tangents across UV seams.

If you are converting a greyscale image into a normal map, you don’t need to worry about this.

Blendshapes

Unity has support for BlendShapes (also called morph-targets or vertex level animation). Unity can import BlendShapes from .FBX (BlendShapes and controlling aninimation) and .dae (only BlendShapes) exported 3D files. Unity BlendShapes support vertex level animation on vertices, normals and tangents. Mesh can be affected by skin and BlendShapes at the same time. All meshes imported with BlendShapes will use SkinnedMeshRenderer (no mater if it does have skin or not). BlendShape animation is imported as part of regular animation - it simply animates BlendShape weights on SkinnedMeshRenderer.

There are two ways to import BlendShapes with normals:

  1. Set Normals import mode to Calculate, this way same logic will be used for calculating normals on a mesh and BlendShapes.
  2. Export smoothing groups information to the source file. This way, Unity will calculate normals from smoothing groups for mesh and BlendShapes.

If you want tangents on your BlendShapes then set Tangents import mode to Calculate.

Consejos

  • Merge your meshes together as much as possible. Make them share materials and textures. This has a huge performance benefit.
  • If you need to set up your objects further in Unity (adding physics, scripts or other coolness), save yourself a world of pain and name your objects properly in your 3D application. Working with lots of pCube17 or Box42-like objects is not fun.
  • Make your meshes be centered on the world origin in your 3D app. This will make them easier to place in Unity.
  • If a mesh does not have vertex colors, Unity will automatically add an array of all-white vertex colors to the mesh the first time it is rendered.

The Unity Editor shows too many vertices or triangles (compared to what my 3D app says)

This is correct. What you are looking at is the number of vertices/triangles actually being sent to the GPU for rendering. In addition to the case where the material requires them to be sent twice, other things like hard-normals and non-contiguous UVs increase vertex/triangle counts significantly compared to what a modeling app tells you. Triangles need to be contiguous in both 3D and UV space to form a strip, so when you have UV seams, degenerate triangles have to be made to form strips - this bumps up the count.

Componentes Mesh
Material