Stylized Water 2
4.4.Components & Utilities
Water Object
You’ll find this component on every prefab. It merely provides an easy way to identify which objects in the scene represent water. Currently, the Planar Reflection Renderer component, Underwater Rendering extension and Buoyancy API make use of this.
The component caches the mesh and material used, so these can be retrieved instantly. Next to providing access to a MaterialPropertyBlock. The transform may also be used, to fetch the water level.
Water Mesh asset
The package comes paired with a utility that can generate plane or circle meshes, to be used with the water shader. This makes it easy to add subdivions to a mesh, without having to leave Unity. When using waves, a mesh requires a sufficient vertex density.
To create one:
Right-click in the project window and go to Create->Water->Mesh. This creates a new .watermesh
asset, which is essentially a regular mesh, so can be assigned to any Mesh Filter component.
API
The StylizedWater2.WaterMesh
class can instantiated, in order to create a mesh through custom scripts. You can change any of the public properties, then call the Rebuild()
function to generate a mesh using the current settings.
Or access the static StylizedWater2.WaterMesh.Create
function to create a mesh directly.
Water Grid
This component lives up to its name, it creates a grid of water meshes around its position.
It can created through:
- Add Component->Stylized Water 2->Water Grid
- GameObject->3D Object->Water->Grid
- Window->Stylized Water 2->Create water grid
The “Follow target” transform field can be set so the grid follows this around on the XZ axis. The position is snapped to the nearest vertex, so waves will not appear to wobble when the grid is moved.
This can be utilized to create water tiles for streaming systems, or faking an infinite ocean to some extent.