From 40284fbbf809eab5f046f290ca4e9d9b0cb67c4c Mon Sep 17 00:00:00 2001 From: Chandler Cox Date: Wed, 1 May 2024 14:05:10 -0500 Subject: [PATCH] Fix smooth step visject node width --- Source/Editor/Surface/Archetypes/Math.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Editor/Surface/Archetypes/Math.cs b/Source/Editor/Surface/Archetypes/Math.cs index 9c1d00196..d0284d6fa 100644 --- a/Source/Editor/Surface/Archetypes/Math.cs +++ b/Source/Editor/Surface/Archetypes/Math.cs @@ -430,7 +430,7 @@ namespace FlaxEditor.Surface.Archetypes Title = "Smoothstep", Description = "Returns a smooth Hermite interpolation between 0 and 1, if value is in the range [min, max].", Flags = NodeFlags.MaterialGraph, - Size = new Float2(120, 60), + Size = new Float2(200, 60), ConnectionsHints = ConnectionsHint.Numeric, IndependentBoxes = new[] { 0, 1, 2 }, DependentBoxes = new[] { 3 },