Version: Unity 6 (6000.0)
Language : English
2D images for low level of detail (LOD)
Billboard Renderer component reference

Applying 2D billboards for low LOD meshes

Billboards are a level-of-detail (LOD) method for drawing complicated 3D Meshes in a simpler way when they are far away from the CameraA component which creates an image of a particular viewpoint in your scene. The output is either drawn to the screen or captured as a texture. More info
See in Glossary
. When a MeshThe main graphics primitive of Unity. Meshes make up a large part of your 3D worlds. Unity supports triangulated or Quadrangulated polygon meshes. Nurbs, Nurms, Subdiv surfaces must be converted to polygons. More info
See in Glossary
is far away from the Camera, its size on screen means there is no need to draw it in full detail. Instead, you can replace the complex 3D Mesh with a 2D billboardA textured 2D object that rotates so that it always faces the Camera. More info
See in Glossary
representation.

The Billboard Renderer renders Billboard assets.

A Billboard asset is a collection of pre-rendered images of a mesh. Use it with the Billboard Renderer to an object that is distant from the Camera at a low level of detail (LOD).

The most common way to generate a Billboard Asset is to create files in SpeedTree Modeler, and then import them into Unity.

It is also possible to create your own Billboard Assets from script. For more information, see the API reference for BillboardAsset.

Certain features, such as SpeedTree, export Billboard Assets, but you can also create them yourself. For information on how to create a Billboard Asset, see the BillboardAssets Manual page and the BillboardAsset Script reference page.

2D images for low level of detail (LOD)
Billboard Renderer component reference