From 163c86aab0be776554648f2fde57a972ec93950d Mon Sep 17 00:00:00 2001 From: kittyegg Date: Fri, 5 Jun 2026 18:22:27 +0300 Subject: [PATCH] =?UTF-8?q?=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B1=D0=B0=D0=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/Scripts/SandPathBuildService.cs | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) 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); }