Version: 2022.3
Language : English
Wind Zones
Working with Heightmaps

Grass and other details

A TerrainThe landscape in your scene. A Terrain GameObject adds a large flat plane to your scene and you can use the Terrain’s Inspector window to create a detailed landscape. More info
See in Glossary
might have grass clumps and other small objects (such as rocks) covering its surface. Unity renders these objects using textured quadsA primitive object that resembles a plane but its edges are only one unit long, it uses only 4 vertices, and the surface is oriented in the XY plane of the local coordinate space. More info
See in Glossary
or full meshes, depending on the level of detailThe Level Of Detail (LOD) technique is an optimization that reduces the number of triangles that Unity has to render for a GameObject when its distance from the Camera increases. More info
See in Glossary
and performance you require.

Prior to 2021.2, grass and other details only worked in the built-in render pipeline and Universal Render Pipeline (URP). In 2021.2, Unity introduced instancing details that work with all render pipelinesA series of operations that take the contents of a Scene, and displays them on a screen. Unity lets you choose from pre-built render pipelines, or write your own. More info
See in Glossary
, including the High Definition Render Pipeline (HDRP).

Terrain with grass
Terrain with grass

Terrain details are available in several modes, where each mode has a different use during game development.

Mode Description
Instanced mesh Unity recommends you use this mode because it’s best suited for most scenarios that require the placement of any number of arbitrary meshes on Terrain.

To add an instanced mesh, select Add Detail Mesh and enable the Use GPU Instancing option.
Vertex Lit mesh Doesn’t use GPU instancing for rendering. Instead, it combines all detail instances into one mesh, which results in simple shading and limitations to the number of instances you can achieve.

To add a Vertex Lit mesh, select Add Detail Mesh and set the Render Mode to Vertex Lit.
Grass mesh Works similar to the vertex list mesh, but Unity treats these meshes as grass so they always have up-facing normals and move in the wind.

To add a grass mesh, select Add Detail Mesh and set the Render Mode to Grass.
Grass Texture Lets you create grass quad meshes directly from Texture, which move in the wind. You don’t need to specify any custom meshes, and there’s also an option you can enable to make grass quads always face the camera for a billboard effect.

Select Add Grass Texture for this option.

Paint Details

To enable grass and detail painting, select the Paint Details button on the Terrain InspectorA Unity window that displays information about the currently selected GameObject, asset or project settings, allowing you to inspect and edit the values. More info
See in Glossary
toolbarA row of buttons and basic controls at the top of the Unity Editor that allows you to interact with the Editor in various ways (e.g. scaling, translation). More info
See in Glossary
.

Paint Details in the Terrain Inspector
Paint Details in the Terrain Inspector

Initially, a Terrain has no grass or details available. In the Inspector, click the Edit Details button to display a menu with the Add Detail 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
and Add Grass Texture options. Click either option to bring up a window that lets you choose Assets to add to the Terrain for painting.

Add Detail Mesh

The Add Detail Mesh window
The Add Detail Mesh window

Use the Detail PrefabAn asset type that allows you to store a GameObject complete with components and properties. The prefab acts as a template from which you can create new object instances in the scene. More info
See in Glossary
field to select a Prefab from your Project. To create an authentic look, each mesh is affected by a random factor to determine the size and color. Unity uses the Perlin noise algorithm to generate such random factors.

The Min Width, Max Width, Min Height, and Max Height values specify the upper and lower scalings along the X and Y axes with which the meshes are randomly generated.

The Align to Ground (%) value specifies how much the detail axis aligns to the terrain normal. 0 is unaligned, and 100 is completely aligned to the normal.

The Position Jitter (%) controls the randomness of the detail distribution from ordered to random. This is only available when legacy distribution is turned off in Quality settings.

The Noise Seed setting sets the random number generator seed. Each seed value represents a unique generation. If you set the same seed for two types of details, the generated instances become identical. The Noise Spread value refers to the scaling of the noise pattern over the X-Z plane, with higher values indicating more variations within a given area.

The Hole Edge Padding (%) setting controls how far away detail objects are from the edge of the hole area. For more information, see DetailPrototype.holeEdgePadding.

The Detail Density value controls the detail’s density relative to its size. You can enable this in “Coverage” detail scatter mode, set in Terrain Settings.

Healthy Color and Dry Color settings control the color variation. Unity performs linear interpolation between the healthy and dry colors, and selects a color based on the size of the mesh. For example, the system considers bigger-sized meshes to be healthier, thus the linear interpolation results for such meshes lean more towards the Healthy Color tint. These color settings disappear when you select Use GPU Instancing because they have no effect on instanced meshes.

The Affected by Density Scale checkbox determines whether the Detail Density Scale setting set in the Terrain Settings affects this detail.

You can set the Render Mode to Vertex Lit or Grass.

Render Mode Description
Vertex Lit Renders detail meshes as solid, vertex lit GameObjectsThe fundamental object in Unity scenes, which can represent characters, props, scenery, cameras, waypoints, and more. A GameObject’s functionality is defined by the Components attached to it. More info
See in Glossary
in the sceneA Scene contains the environments and menus of your game. Think of each unique Scene file as a unique level. In each Scene, you place your environments, obstacles, and decorations, essentially designing and building your game in pieces. More info
See in Glossary
, which don’t move in the wind.
Grass Renders detail meshes in the scene with simplified lighting similar to Grass Textures, and do move in the wind.

Note: To apply a texture on a detail using Vertex Lit or Grass render mode, their material should have a texture assigned to the **MainTex** material property (default property name for Base Color Map in built-in/URP). No other material properties are considered for non-instanced details._

Use GPU Instancing

In addition, you can specify if you want to use GPU instancing to render your detail meshes. With GPU instancing, Unity uses the material and the shaderA program that runs on the GPU. More info
See in Glossary
specified on the prefab for rendering. This lets you perform more customization in the shader, and potentially use Shader Graph.

Unity still applies the Width and Height noise to each instance, but disables the Healthy Color/Dry Color noise. You can use your own color variation technique, along with many other randomizations, in the shader.

Under the hood, some of the Unity GPU instancing limitations do affect rendering. For example:

  • Your target platform needs to support GPU instancing.
  • Your shader must support GPU instancing. (Most shaders do support it.)
  • Objects are rendered in batches of 1,023 or fewer.
  • Instanced light probeLight probes store information about how light passes through space in your scene. A collection of light probes arranged within a given space can improve lighting on moving objects and static LOD scenery within that space. More info
    See in Glossary
    lighting or lightmapA pre-rendered texture that contains the effects of light sources on static objects in the scene. Lightmaps are overlaid on top of scene geometry to create the effect of lighting. More info
    See in Glossary
    lighting are not supported.

Unlike regular instancing where Unity dynamically builds up the instancing constant buffer every frame, instancing details have persistent constant buffers for better CPU and GPU performance when the target hardware allows for it, at the cost of moderately increased GPU memory usage.

If you select Use GPU Instancing, the Render Mode setting becomes grayed out and unavailable.

Add Grass Texture

The Add Grass Texture window
The Add Grass Texture window

The Add Grass Texture window

Detail Texture is the Texture that represents the grass. You can download Textures from the Asset StoreA growing library of free and commercial assets created by Unity and members of the community. Offers a wide variety of assets, from textures, models and animations to whole project examples, tutorials and Editor extensions. More info
See in Glossary
, or create your own Textures. A Texture is a small image with alpha set to zero for the empty areas. Note that “Grass” is a generic term; it is possible for a Texture to represent flowers or man-made objects such as barbed wire coils.

The Min Width, Max Width, Min Height, Max Height, Noise Seed, Noise Spread, Hole Edge Padding (%), Align to Ground (%), Position Jitter (%), Detail Density, Affected by Density Scale, Healthy Color, and Dry Color settings work the same as they do for meshes, and are described in the Add Detail Mesh section above.

Finally, when you enable the BillboardA textured 2D object that rotates so that it always faces the Camera. More info
See in Glossary
option, the grass images rotate so that they always face 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
. This is useful when you want to show a dense field of grass because clumps are two-dimensional, and not visible from the side. However, with sparse grass, the rotations of individual clumps might become apparent to the viewer, creating a strange effect.

Remove details

To remove a detail, select the detail to remove, click the Edit Details button, then select Remove. When you remove a detail, Unity clears the data that represents the Terrain area on which you scattered that detail.


  • 2022–07–20 Page amended
  • Added information about detail density and distribution.
Wind Zones
Working with Heightmaps