var MouseEnter : System.Boolean;
var Name : String;
var Level : String;
var Damage : String;
var Intelligence : String;
function OnMouseEnter()
{
MouseEnter = true;
}
function OnMouseExit()
{
MouseEnter = false;
}
function OnGUI()
{
if(MouseEnter == true)
{
GUI.Box(Rect(200,100,150,200),Name);
GUI.Label(Rect(205,150,100,100),"Level : ",Level);
GUI.Label(Rect(205,200,100,100),"Damage : ",Damage);
GUI.Label(Rect(205,250,100,100),"Intelligence : ",Intelligence);
}
}
here is my script how ever when it runs it says "Unable to find style '1' in skin 'GameSkin' repaint" but im just wanting the string that i type in the editor to pop up please help thanx :)