Skip to content

Instantly share code, notes, and snippets.

@196Ikuchil
Created January 4, 2017 15:27
Show Gist options
  • Select an option

  • Save 196Ikuchil/63586fe4c2d63bde862fc7d346bf4d03 to your computer and use it in GitHub Desktop.

Select an option

Save 196Ikuchil/63586fe4c2d63bde862fc7d346bf4d03 to your computer and use it in GitHub Desktop.
void PlayBGM(string bgmName){
AudioClip clip=(AudioClip)Resources.Load("BGM/"+bgmName);
if(isPlay){ nowPlayBGM.Stop();isPlay=false;}
nowPlayBGM.clip=clip;
nowPlayBGM.Play();
isPlay=true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment