Advertisement
kremisoski

Mute Toggle

Jan 9th, 2013
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (intro.volume > 0) {
  2.     intro.volume = 0;
  3.     mute.visible = false;
  4.     unmute.visible = true;
  5. } else {
  6.     intro.volume = 1;
  7.     mute.visible = true;
  8.     unmute.visible = false;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement