Guest User

Untitled

a guest
Dec 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. //function
  2. public void TogglePlay()
  3. {
  4. if (audio.isPlaying)
  5. {
  6. audio.Pause();
  7. }
  8. else
  9. {
  10. audio.Play();
  11. }
  12. }
Add Comment
Please, Sign In to add comment