i had this working on my menu then it just stopped changing colors ,do i need something besides the text and background help me
function OnMouseEnter()
{
//change the color of the text
renderer.material.color = Color.green;
}
function OnMouseExit()
{
//change the color of the text
renderer.material.color = Color.white;
}