有没有办法停止(或永久停顿)播放声音...
audioSource.noteGrainOn(when, starthere, duration_sound);
..之前“duration_sound”变量停止了吗?是通过NoteOff,但它是如何使用的?
答案 0 :(得分:2)
是。 (请注意,您应该使用.start() - 不推荐使用noteOn()和noteGrainOn()。)
致电
audioSource.stop( 0 );
立即停止,或者您可以通过调用
在声音播放结束前安排停止audioSource.stop( whentostop );