diff --git a/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs b/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs index 8a6ae54a9..761372aee 100644 --- a/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs @@ -625,10 +625,11 @@ namespace FlaxEditor.CustomEditors.Dedicated group.Panel.Open(false); // Customize - var typeAttributes = scriptType.GetAttributes(true); + var typeAttributes = scriptType.GetAttributes(false); + group.Panel.TooltipText = scriptType.TypeName; var tooltip = (TooltipAttribute)typeAttributes.FirstOrDefault(x => x is TooltipAttribute); if (tooltip != null) - group.Panel.TooltipText = tooltip.Text; + group.Panel.TooltipText = '\n' + tooltip.Text; if (script.HasPrefabLink) group.Panel.HeaderTextColor = FlaxEngine.GUI.Style.Current.ProgressNormal;