이 페이지가 있는 버전:
이 페이지가 없는 버전:
Samples the height at the given position defined in world space, relative to the terrain space.
void LateUpdate() { Vector3 pos = transform.position; pos.y = Terrain.activeTerrain.SampleHeight(transform.position); transform.position = pos; }