Ever wish you could have a tool tip appear when hovering your mouse over a control in the inspector? Well look no further then Unity’s ToolTip attribute that you can apply to your MonoBehaviour’s fields!
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour {
[Tooltip("Health value between 0 and 100.")]
public int health = 0;
}