Skip to content

Per-blade grass rendering inspired by "Ghost of Tsushima", implemented in Godot

License

Notifications You must be signed in to change notification settings

KMouratidis/GodotGrass

 
 

Repository files navigation

GodotGrass

A grass rendering experiment in the Godot Engine inspired by techniques used in "Ghost of Tsushima". Individual blades of grass are generated with GPU instancing via Godot's MultiMeshInstance node and are colored/animated using a shader-driven approach.

grass_demo.mp4

Results

Grass Shading

The color of the grass is dependent on a base and tip color, mixed vertically along the model. A rounder appearance for each blade is created by bending the normals horizontally in the fragment shader. Ambient occlusion is simulated by darkening blades vertically based on their model space height. Grass shadow mapping is enabled by default to improve occlusion shading (at a very high performance cost), however, a very close apperance can be recreated by changing the base and tip colors.

Grass blades which are perpendicular to the camera are stretched horizontally in view space as suggested in the "Ghost of Tsushima" GDC talk. Blades are also procedurally bent based on their height (not including wind). The bend angle of each vertex on the blade is based on the total height of the blade along with the height of the vertex along the blade yielding a curved appearance.

A basic 'hacky' lighting model for grass is implemented atop Godot's default lighting model. Ambient lighting is modeled by augmenting the diffuse light with power curve so that vertices facing away from lights are still lit slightly. Subsurface scattering is modeled by adding a separate color based on the angle between the view and light vector. Specular highlights are driven by Godot's default lighting model.

apperance_demo

Environmental Factors

To provide a less-uniform appearance to fields of grass, a "clumping factor" parameter was created to clump initial rotational offset for groups of grass blades based on a cellular noise texture. The same noise texture is used to independently clump the heights and maximum bend angles for grass blades. Global grass density can also be controlled using a separate parameter.

Wind was simulated by scrolling a Perlin noise texture, sampled at different frequencies, to get a wind direction (blade rotational offset) and wind strength (blade bend) at a given time. A high-frequency, low-amplitude simplex domain warp is applied to the noise texture to simulate turbulence from wind—this results in a 'jittering' motion at blades' tips during at wind strength. A global "wind strength" parameter controls how fast the noise texture is scrolled for direction as well as the amplitude of the bend.

The combination of these features yield a realistic-looking model for grass across a wide-variety of environments.

environment_demo.mp4

Level of Detail (LOD)

A simple tile-based LOD system is used to improve performance while maintaining a consistent visual quality. Each LOD tile is driven by a density (denoting how many blades of grass will be distributed along its boundaries) and a mesh (swapping between a hard-coded high-quality and low-quality blade mesh). These properties change depending on the tile's distance from the camera and are updated every time the camera moves into a new tile.

Unfortunately, LOD swapping is very noticable due to the tiled nature of the system. Tile fade-in or seeded random blade placement can possibly alleviate this problem. Since each tile is culled all at once, a tradeoff has to be made between the amount of draw calls and culling performance. At the time of writing this, GPU instancing in Godot can only be achieved using the engine's MultiMeshInstance node. This requires the positions of blades to be calculated on the CPU—a compute shader-based approach could permit a more-performant and dynamic LOD system.

lod_demo

References

SimonDev. How do Major Video Games Render Grass?. (2023).
Wohllaib, Eric. Procedural Grass in 'Ghost of Tsushima'. Game Developers Conference. (2021).

Attributions

Reisen Udongein Inaba (Touhou) by chained_tan is modified and used under the CC BY 4.0 license.
Evening Road 01 (Pure Sky) by Jarod Guest is used under the CC0 1.0 license.

About

Per-blade grass rendering inspired by "Ghost of Tsushima", implemented in Godot

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 58.3%
  • GDScript 24.4%
  • C++ 16.8%
  • GLSL 0.5%