Исправил баг

This commit is contained in:
2026-06-05 18:22:27 +03:00
parent d442afe8dc
commit 163c86aab0
+1 -7
View File
@@ -91,11 +91,5 @@ public class SandPathBuildService : MonoBehaviour
} }
public IEnumerable<Vector3> GetPath() => public IEnumerable<Vector3> GetPath() =>
_blocksInPath.Select(b => _blocksInPath.Select(b => b.transform.position + Vector3.up * 0.5f);
{
var pos = b.transform.position;
pos.y += 1f;
return pos;
});
} }