1

有没有办法停止(或永远暂停)用..播放的声音

audioSource.noteGrainOn(when, starthere, duration_sound); 

..在“duration_sound”变量停止之前?是通过 NoteOff,但它是如何使用的?

4

1 回答 1

2

是的。(请注意,您应该使用 .start() - noteOn() 和 noteGrainOn() 已弃用。)

打电话

audioSource.stop( 0 );

立即停止,或者您可以在声音播放完毕之前通过调用

audioSource.stop( whentostop );
于 2013-07-18T09:09:40.297 回答