示例#1
0
 public void OnMouseExit()
 {
     if (tooltip != null)
         tooltip.Kill();
     tooltip = null;
 }
示例#2
0
 public void OnMouseEnter()
 {
     // Create MouseOver
     if(toolTipAllowed)
         tooltip = ui.CreateToolTip(name, "Lots and lots and lots\nof info\nMORE AND MORE AND EVEN MORE AND MORE INFO. INFORMATION FOR EVERYONE!!!!!");
 }