Advertisement
Guest User

This bothers me more than it should

a guest
Jan 25th, 2013
730
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.26 KB | None | 0 0
  1.     public void SetButtonState(bool selected)
  2.     {
  3.         // button is selected, update art and scale
  4.         if(selected)
  5.         {
  6.             actionCheck.isChecked = true;
  7.         }
  8.         // button is back to normal, update art and scale.
  9.         else
  10.         {
  11.             actionCheck.isChecked = false;
  12.         }
  13.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement