- Home /
Tooltips in Unity Editor
Is there a way to have visible tooltips similar to the ones in Blender? I would like to have tooltips on the elements of the editor, like "GameObject.transform.position" when I move the cursor over the position component of my gameobject. I know that there is a way to show tooltips of my variables by modifying the c# script, but I want them about the editor elements. Like it's shown in this video: https://www.youtube.com/watch?v=AqwyETgRI4g
Answer by Tondoy · Feb 24 at 04:06 PM
If you want to have a tooltip showing additional information about your variables, you just need to add the "Tooltip" attribute and enter the information you want to show up.
[Tooltip("This is a tooltip.")]
public string exampleString;
Hi! I don't want it about my variables, I want it about the editor elements.
Your answer
Follow this Question
Related Questions
Merge Scenes or not (runtime) 0 Answers
tooltip OnMouseOver - screen or mouse position? 0 Answers
Trouble using C# tooltips 1 Answer
Please how to change the color of object and the toolTip based on Text file? 0 Answers
A few general questions 3 Answers