Terrain.SampleHeight
SampleHeight(worldPosition: Vector3): float;
Description

Samples the height at the given position defined in world space, relative to the terrain space.

	function LateUpdate () {
		transform.position.y = Terrain.activeTerrain.SampleHeight(transform.position);
	}