From 1ef35c3f94a33af292cb17e6ab9004459195fed1 Mon Sep 17 00:00:00 2001 From: Saas Date: Wed, 4 Mar 2026 23:57:21 +0100 Subject: [PATCH 1/2] clear up naming of "Pre-skinning Local Vertex Pos" --- Source/Editor/Surface/Archetypes/Material.cs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Source/Editor/Surface/Archetypes/Material.cs b/Source/Editor/Surface/Archetypes/Material.cs index 9ac43082e..bed6b7737 100644 --- a/Source/Editor/Surface/Archetypes/Material.cs +++ b/Source/Editor/Surface/Archetypes/Material.cs @@ -584,10 +584,11 @@ namespace FlaxEditor.Surface.Archetypes new NodeArchetype { TypeID = 13, - Title = "Pre-skinned Local Position", + Title = "Pre-skinning Local Vertex Pos", Description = "Per vertex local position (before skinning)", + AlternativeTitles = new[] { "Vertex Position", "Pre skinning Local Vertex Pos" }, Flags = NodeFlags.MaterialGraph, - Size = new Float2(230, 40), + Size = new Float2(270, 40), Elements = new[] { NodeElementArchetype.Factory.Output(0, string.Empty, typeof(Float3), 0), @@ -596,10 +597,11 @@ namespace FlaxEditor.Surface.Archetypes new NodeArchetype { TypeID = 14, - Title = "Pre-skinned Local Normal", + Title = "Pre-skinning Local Normal", Description = "Per vertex local normal (before skinning)", + AlternativeTitles = new[] { "Pre skinning Local Normal" }, Flags = NodeFlags.MaterialGraph, - Size = new Float2(230, 40), + Size = new Float2(270, 40), Elements = new[] { NodeElementArchetype.Factory.Output(0, string.Empty, typeof(Float3), 0), From e710a6e2d181688142aed928dd46a91fce8429f4 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Sun, 8 Mar 2026 22:13:31 +0100 Subject: [PATCH 2/2] Adjust naming --- Source/Editor/Surface/Archetypes/Material.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Editor/Surface/Archetypes/Material.cs b/Source/Editor/Surface/Archetypes/Material.cs index bed6b7737..df89dfc94 100644 --- a/Source/Editor/Surface/Archetypes/Material.cs +++ b/Source/Editor/Surface/Archetypes/Material.cs @@ -584,9 +584,9 @@ namespace FlaxEditor.Surface.Archetypes new NodeArchetype { TypeID = 13, - Title = "Pre-skinning Local Vertex Pos", + Title = "Pre-skinned Local Position", Description = "Per vertex local position (before skinning)", - AlternativeTitles = new[] { "Vertex Position", "Pre skinning Local Vertex Pos" }, + AlternativeTitles = new[] { "Vertex Position", "Pre skinning Local Vertex Position" }, Flags = NodeFlags.MaterialGraph, Size = new Float2(270, 40), Elements = new[] @@ -597,9 +597,9 @@ namespace FlaxEditor.Surface.Archetypes new NodeArchetype { TypeID = 14, - Title = "Pre-skinning Local Normal", + Title = "Pre-skinned Local Normal", Description = "Per vertex local normal (before skinning)", - AlternativeTitles = new[] { "Pre skinning Local Normal" }, + AlternativeTitles = new[] { "Vertex Normal", "Pre skinning Local Normal" }, Flags = NodeFlags.MaterialGraph, Size = new Float2(270, 40), Elements = new[]