Add namespace to method tooltips in Visual ScriptType

#112
This commit is contained in:
Wojtek Figat
2024-09-12 15:45:12 +02:00
parent d5f53572df
commit c69beae81a

View File

@@ -443,6 +443,8 @@ namespace FlaxEditor.Surface
sb.Append("virtual ");
sb.Append(valueType.Name);
sb.Append(' ');
if (member.IsMethod)
sb.Append(member.DeclaringType.Namespace).Append('.');
sb.Append(declaringType.Name);
sb.Append('.');
sb.Append(name);