From 2b46f04bafbd6b95d4e2922b30a02988b3782867 Mon Sep 17 00:00:00 2001 From: xxSeys1 Date: Mon, 3 Jun 2024 23:25:54 +0200 Subject: [PATCH] Changed how thickness is calculated Now works with the stuff done in #2671. --- Source/Editor/Surface/Elements/OutputBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Surface/Elements/OutputBox.cs b/Source/Editor/Surface/Elements/OutputBox.cs index ff91d2595..58bdbcc4f 100644 --- a/Source/Editor/Surface/Elements/OutputBox.cs +++ b/Source/Editor/Surface/Elements/OutputBox.cs @@ -202,7 +202,7 @@ namespace FlaxEditor.Surface.Elements // Increase thickness on impulse/ execution lines if (targetBox.CurrentType.IsVoid) - highlight += 1.25f; + highlight *= 2; DrawConnection(style, ref startPos, ref endPos, ref color, highlight); }