diff --git a/Assets/Scripts/SandPathBuildService.cs b/Assets/Scripts/SandPathBuildService.cs index c6b1feb..d9be6dc 100644 --- a/Assets/Scripts/SandPathBuildService.cs +++ b/Assets/Scripts/SandPathBuildService.cs @@ -91,11 +91,5 @@ public class SandPathBuildService : MonoBehaviour } public IEnumerable GetPath() => - _blocksInPath.Select(b => - { - var pos = b.transform.position; - pos.y += 1f; - - return pos; - }); + _blocksInPath.Select(b => b.transform.position + Vector3.up * 0.5f); }