UE4 FBX Static Mesh Pipeline

来源:互联网 发布:太空电梯 知乎 编辑:程序博客网 时间:2024/05/19 16:49
On this page:
  • General Setup
    • Pivot Point
    • Triangulation
    • UV Texture Coordinates
    • Creating Normal Maps
    • Materials
    • Collision
      • Caveats and Considerations
    • Vertex Colors
  • Export Mesh
  • Import Mesh
  • Static Mesh LODs
    • LOD Setup
    • Export LODs
    • Import LODs

The StaticMesh support in the FBX import pipeline makes getting meshes from 3D applications into Unreal Engine 4 a simple, painless task. When meshes are imported, the textures used in the materials applied to those meshes in their respective 3D application (diffuse and normal map only) are also imported and, in turn, used to generate the materials applied to the mesh in UE4.

Features supported for importing Static Meshes using FBX:

  • Static Meshes with materials including textures

  • Custom collision

  • Multiple UV sets

  • Smoothing groups

  • Vertex colors

  • LODs

  • Multiple separate Static Meshes (can also be combined into a single mesh at import)

Currently, when importing multiple meshes with custom collision in a single file, only the first mesh's collision will be imported.

The UE4 FBX import pipeline uses FBX 2014. Using a different version during export may result in incompatibilities.

This page includes information on both Autodesk Maya and Autodesk 3ds Max, please choose your preferred content creation tool below and the information relevant only to the chosen tool will be displayed:

Choose Your 3D Art Tool

Autodesk Maya

Autodesk 3ds Max

General Setup

In general, you are free to create Static Meshes using any tools and methods you want. There are some stipulations as far as setting up UVs, placement of the mesh, etc. that you need to account for in order for the exporting and importing to go smoothly and for the mesh to work properly in Unreal Editor.

Pivot Point

The pivot point of the mesh in Unreal Engine determines the point around which any transformations (translation, rotation, scale) will be performed.

pivot.jpg

The pivot point is always located at the origin (0,0,0) when exporting from a 3D modeling application. Because of this, it is best to create your meshes at the origin, with the origin generally being located at one corner of the mesh to allow for proper alignment when snapping to the grid inside of Unreal Editor.

pivot_origin.jpg

Triangulation

Meshes in Unreal Engine must be triangulated as the graphics hardware only deals with triangles.

tris.jpg

There are several ways you can ensure your mesh is triangulated.

  • Model the mesh with only tris - best solution, provides the most control over the end result.

  • Triangulate the mesh in the 3D app - good solution, allows cleanup and modification before export.

  • Allow the FBX exporter to triangulate the mesh - okay solution, allows no cleanup but can work for simple meshes.

  • Allow the importer to triangulate the mesh - okay solution, allows no cleanup but can work for simple meshes.

It will always be best to manually triangulate the mesh in the 3D application, controlling the direction and placement of edges. Automatic triangulation can lead to undesirable results.

tris_bad.jpg

UV Texture Coordinates

The import of multiple UV sets is supported by the FBX pipeline in Unreal Engine 4. For Static Meshes, this is generally used to handle one set of UVs for the diffuse. There are no special requirements for setting up the UVs for Static Meshes using the FBX pipeline.

Creating Normal Maps

Normal maps can be created for your meshes directly inside of most modeling applications by creating both a low-res render mesh and a high-res detail mesh.

SideBySide.jpg

The geometry of the high-res detail mesh is used to generate the normals for the normal map. Epic uses a workflow internally that introduces XNormal into the process and generally results in much better normals when rendering inside of Unreal Engine 4. For details on this process, see Normal Map Creation Guide.

Materials

The materials applied to meshes modeled in external applications will be exported along with the mesh and then imported into Unreal. This streamlines the process as textures do not need to be imported separately in Unreal, materials do not need to be created and applied, etc. The import process is capable of performing all of these actions when using the FBX pipeline.

These materials also need to be set up in a specific way, especially when the mesh has multiple materials or the order of the materials on the mesh is important (i.e. for character models where material 0 needs to be the body and material 1 needs to be the head).

For complete details of setting up materials for export, see the FBX Material Pipeline page.

Collision

Simplified collision geometry is important for optimizing collision detection in-game. Unreal Engine 4 provides basic tools for creating collision geometry within the Static Mesh Editor. Some circumstances, though, are best handled by creating custom collision geometry within your 3D modeling application and exporting it with the render mesh. Generally, this is true for any mesh with an opening or concave area that objects need to not collide with.

For instance:

  • Doorway meshes

  • Walls with window cutouts

  • Oddly shaped meshes

Collision meshes are identified by the importer based on their name. The collision naming syntax should be:

Mesh Prefix and NameDescriptionUBX_[RenderMeshName]_##Boxes are created with the Box objects type in Max or with the Cube polygonal primitive in Maya. You cannot move the vertices around or deform it in any way to make it something other than a rectangular prism, or else it will not work.USP_[RenderMeshName]_##Spheres are created with the Sphere object type. The sphere does not need to have many segments (8 is a good number) at all because it is converted into a true sphere for collision. Like boxes, you should not move the individual vertices around.UCX_[RenderMeshName]_##Convex objects can be any completely closed convex 3D shape. For example, a box can also be a convex object. The diagram below illustrates what is convex and what is not: Convex.gif

Caveats and Considerations

  • RenderMeshName must be identical to the name of the render mesh the collision mesh is associated with in the 3D application. So if you have a render mesh named **Tree_01** in your 3D application, your collision mesh should be in the scene with that mesh and namedUCX_Tree_01, and then exported along with the render mesh to the same FBX file. If you need more than one collision object for a mesh, you can extend their names with further identifiers, such as: UCX_Tree_01_00UCX_Tree_01_01UCX_Tree_01_02, etc... and they all will be associated as collision for that mesh.

  • Currently, spheres are only used for rigid-body collision and Unreal's zero-extent traces (e.g. weapons), not non-zero extent traces (e.g. Player movement). Also, spheres and boxes do not work if the StaticMesh is non-uniformly scaled. In general you probably want to createUCX primitives.

  • Once your collision objects are set up, you can export both the render and collision mesh in the same .FBX file. When you import the .FBX file into Unreal Editor, it will find the collision mesh, remove it from the render mesh, and turn it into the collision model.

  • Breaking up a non-convex mesh into convex primitives is a complex operation, and can give unpredictable results. Another approach is to break the collision model into convex pieces yourself in Max or Maya.

  • In the case of an object whose collision is defined by multiple convex hulls, results are best when the hulls do not intersect with one another. For example, if the collision for a lollipop were defined by two convex hulls, one for the candy and one for the stick, a gap should be left between the two as in the following illustration:

CandyCollision.png

  1. UCX_Candy

  2. Small gap between collision surfaces

  3. UCX_Stick

Vertex Colors

Vertex colors for Static Meshes can be transferred using the FBX pipeline. No special setup is necessary

vertex_color.jpg

Export Mesh

Static Meshes can be exported individually or multiple meshes can be exported to a single FBX file. The import pipeline will separate multipleStatic Meshes into multiple assets within the destination package unless specified to combine the meshes by enabling the Combine Meshessetting at the time of import.

The UE4 FBX import pipeline uses FBX 2014. Using a different version during export may result in incompatibilities.

  1. Select the mesh(es) to be exported in the viewport.

    maya_export_1.png

  2. In the File menu, choose Export Selection (or Export All if you want to export everything in the scene regardless of selection).

    maya_export_2.png

  3. In the Export dialog box:

    • Choose the Content folder inside your UE4 Project (1)

    • Enter a name for the file and set it to FBX Export (2)

    • Set your Export Options (3)

    • Click Export All (4)

    maya_export_3.png

    The settings in the Geometry category above are the most basic requirements for exporting Static Meshes to Unreal Engine 4.

  4. On your disk, browse to the Content folder of your Project. You will see that your FBX file has been added.

    maya_export_4.png

  5. If you have the UE4 Editor open (or next time you run it) you will be prompted with an FBX Import Options dialog, click Import or Import All.

    max_export_6.png

    You can leave the default options for importing. Refer to FBX Import Options Reference for more information on each option.

  6. Your asset has now been imported and you can drag-and-drop it from the Content Browser into your level.

    max_export_7.png

    In the example above (as part of our Import Options), we imported Materials and Textures.

Import Mesh

  1. Click the button_new.png button in the Content Browser and choose Import. Navigate to and select the FBX file you want to import in the file browser that opens. Note: you may want to select import_fbxformat.jpg in the dropdown to filter out unwanted files.

    import_file.jpg

    The path of the imported asset depends on the current location of the Content Browser while importing. Make sure to navigate to the appropriate folder prior to performing the import. You may also drag the imported assets into a new folder once import is complete.

  2. Choose the appropriate settings in the Import dialog. The defaults should be sufficient in most cases. See the FBX Import Dialogsection for complete details of all of the settings.

    StaticMeshImportOptions.png

  3. Click the button_import.png button to import the mesh(es). The resulting mesh, material(s), and texture(s) will be displayed in the Content Browserif the process was successful.

    ImportedMeshAndTex.png

    Although textures and materials can be imported with a Static Mesh, only Color and Normal will automatically be connected (assuming a supported material was used in Max/Maya), Specular maps will be imported but not connected, other maps, likeAmbient Occlusion map in the Diffuse slot of a maya material, would not even be imported; it is best to check your materials and connect any unconnected maps and check which maps did not import. Simply double-click the new material and connect the available textures into their appropriate inputs.

    By viewing the imported mesh in the Static Mesh Editor and enabling the display of collision, you can determine that the process worked as expected.

Alternatively, you can actually just click and drag an FBX file from Windows into the Content Browser and it will bring up the import dialog for you.


0 0
原创粉丝点击