Hi,
I'm trying to set the background color of a button in script (c#)
When I'm using:
_background.color = Color.black; //(_background is a UISprite instance)
It works fine.
But when I try this:
_background.color = new Color(93f, 106f, 114f); //(_background is a UISprite instance)
Nothing happens....
Is this a bug or do I do something wrong here?