- Archetypes now fetch signature and description independently

- Added larger label for signature to description panel
This commit is contained in:
Nils Hausfeld
2024-06-09 23:42:48 +02:00
parent fa67d0581e
commit bd06ed9c14
7 changed files with 75 additions and 38 deletions

View File

@@ -124,7 +124,7 @@ namespace FlaxEditor.Surface
Archetype = nodeArch;
GroupArchetype = groupArch;
AutoFocus = false;
TooltipText = nodeArch.Description;
TooltipText = TooltipText = $"{nodeArch.Signature}\n{nodeArch.Description}";
CullChildren = false;
BackgroundColor = Style.Current.BackgroundNormal;