
This bothers me more than it should
By: a guest on
Jan 25th, 2013 | syntax:
C# | size: 0.26 KB | hits: 393 | expires: Never
public void SetButtonState(bool selected)
{
// button is selected, update art and scale
if(selected)
{
actionCheck.isChecked = true;
}
// button is back to normal, update art and scale.
else
{
actionCheck.isChecked = false;
}
}