- Joined
- Aug 7, 2013
- Messages
- 1,338
Hi,
Is the following ok for playing an instance of a sound?
or should I always call a special native to clean up the sound?
Note that I'll be continuing to play this sound when a player does some action--it's not a one time thing...
Is the following ok for playing an instance of a sound?
JASS:
....
call StartSound(gg_snd_mySound)
...
or should I always call a special native to clean up the sound?
JASS:
....
call StartSound(gg_snd_mySound)
call KillSoundWhenDone(gg_snd_mySound)
...
Note that I'll be continuing to play this sound when a player does some action--it's not a one time thing...