Created
January 4, 2017 15:27
-
-
Save 196Ikuchil/63586fe4c2d63bde862fc7d346bf4d03 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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