From 426622e670516aff75dede973b324e33dea7c935 Mon Sep 17 00:00:00 2001 From: MaddoScientisto Date: Mon, 7 Apr 2025 01:00:54 +0200 Subject: [PATCH] Offset teleporter linker beams --- Scripts/Utils/TeleporterLinker.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Utils/TeleporterLinker.cs b/Scripts/Utils/TeleporterLinker.cs index c3445da8..bb139fdc 100644 --- a/Scripts/Utils/TeleporterLinker.cs +++ b/Scripts/Utils/TeleporterLinker.cs @@ -26,7 +26,7 @@ public partial class TeleporterLinker : Node2D Vector2 start = _teleporter.GlobalPosition; Vector2 end = _teleporter.Target.GlobalPosition; - DrawLine(ToLocal(start), ToLocal(end), Color, 2.0f); + DrawLine(ToLocal(start), ToLocal(end) + new Vector2(4,4), Color, 2.0f); } public override void _Process(double delta)