diff --git a/Source/Editor/Surface/Elements/OutputBox.cs b/Source/Editor/Surface/Elements/OutputBox.cs index 558d9d7e4..c7bb0408f 100644 --- a/Source/Editor/Surface/Elements/OutputBox.cs +++ b/Source/Editor/Surface/Elements/OutputBox.cs @@ -202,6 +202,12 @@ namespace FlaxEditor.Surface.Elements highlight += DefaultConnectionThickness * 0.5f; } + // Increase thickness on impulse/ execution lines + if (targetBox.CurrentType.IsVoid) + { + highlight += 1.25f; + } + DrawConnection(style, ref startPos, ref endPos, ref color, highlight); } }