Restore 'play sound effect' name

This commit is contained in:
Caitlin Hennessy
2017-12-01 09:59:59 -08:00
parent aa636aef96
commit 330aff8082
3 changed files with 10 additions and 10 deletions

View File

@ -260,9 +260,9 @@ namespace music {
* Plays a sound
* @param sound the sound to play
*/
//% blockId=music_play_sound_until_done block="play sound %sound|until done"
//% blockId=music_play_sound_effect_until_done block="play sound effect %sound|until done"
//% weight=98
export function playSoundUntilDone(sound: Sound) {
export function playSoundEffectUntilDone(sound: Sound) {
if (!sound) return;
sound.play();
}
@ -281,9 +281,9 @@ namespace music {
* Start playing a sound and don't wait for it to finish.
* @param sound the sound to play
*/
//% blockId=music_play_sound block="play sound %sound"
//% blockId=music_play_sound_effect block="play sound effect %sound"
//% weight=99
export function playSound(sound: Sound) {
export function playSoundEffect(sound: Sound) {
control.runInBackground(() => sound.play());
}
}