diff --git a/Source/Editor/Surface/Archetypes/Tools.cs b/Source/Editor/Surface/Archetypes/Tools.cs index e2b3306165..c4ff4a03cd 100644 --- a/Source/Editor/Surface/Archetypes/Tools.cs +++ b/Source/Editor/Surface/Archetypes/Tools.cs @@ -1502,9 +1502,10 @@ private static NodeArchetype Noise(ushort id, string name, Type resultType, Type { data = new object[] { - filterText.Substring(2), - new Color(1.0f, 1.0f, 1.0f, 0.2f), - new Float2(400.0f, 400.0f), + filterText.Substring(2), // Title + new Color(1.0f, 1.0f, 1.0f, 0.2f), // Color + new Float2(400.0f, 400.0f), // Size + -1, // Order }; return true; }