Stylized Water 2
4.6.River mode
By default, the water effects will flow in the direction configured under the “General” tab. Some effects like normals and foam have a secondary layer that flows in the opposite direction.
For rivers/creeks, the water should always flow in a single direction. This is where the “River mode” option comes in.

River mode can be enabled under the General tab
When enabled:
- All the animations move down in the vertical direction (Y) of the mesh’s UV (-V). In the context of a spline mesh, this means the water will appear to flow along its curvature.
- Surface Foam is also drawn on slopes, and gradually becomes less visible as the water flattens out. A “Slope Foam” parameter becomes available to control this.
- A separate normal map texture can be used, visible only on slopes.
Included river demo scene
Note that buoyancy functionality only works for flat water, so will not work for rivers
Creating rivers
This is a fairly broad subject, this asset doesn’t contain any functionality to achieve this, since it’s simply not a modeling tool asset.
For example, River Auto Material or EasyRoads3D could be utilized to create spline meshes, though the shader will not support RAM’s flowmap painting functionality. But basically any spline tool that can tile a plane mesh will do.
Mesh requirements:
- UV shells are laid out straight, without any overlapping shells (necessary for seamless texture tiling)
- Has precomputed vertex normals (otherwise no way to tell what makes up a steep surface)
- When using normal maps, tangents need to be calculated (eg. Mesh.RecalculateTangents)
- Ideally, no or black vertex colors (so nothing interferes with vertex color controlled shading functions)
The Bezier Path Creator asset is an example that doesn’t meet these requirements (specifically point 2 and 3).

Correct: UV laid out vertically, creating continuous repeating UV coordinates
If the spline geometry isn’t generated/modeled with a continuous UV, you’ll notice a discontinuity in the textures, visible as a seam. It’s likely any spline mesh tool offers a UV tiling parameter. Ensure this is set to a rounded value (eg. 1, 2, 3, etc).

Left: Correct UV tiling. Right: no so much
Should the water flow in the opposite direction, you can use a positive Y direction on the material to mitigate this. Though this indicates you should actually flip your UV map vertically.
Instead, ensure the UV map of the mesh has a correct rotation to begin with.
The spline tool rotates the UV coordinates by default, this option must be disabled under “UV Settings”!

Blending rivers with lakes
This is fairly straightforward to achieve. Essentially, you want the last bit of the river geometry to fade out as it starts to touch the water body. The opacity of the material can be controlled through Vertex Colors, which makes this possible.
First, ensure the river material always draws over the other (recieving) water material, by modifying the render queue on the river material to 3001 (transparent queue + 1).
The ZWrite option must also be enabled on the (receiving) water material.
Secondly, enable the use of vertex colors for opacity on the river material.
The Green vertex color channel can now be used to make parts of the mesh completely transparent. See the Vertex Colors section for more details. You’d want to paint the end of the river mesh, that touches the lake, so it appears to blend in with it. Some spline tools may offer control over vertex colors per node/knot, which works just as well.

End part of the spline mesh having green vertex colors, making it fade out