mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-24 06:52:40 -05:00
Merge pull request #826 from ericrosenbaum/bugfix/check-note-buffers
Check for instrument sample before playing
This commit is contained in:
commit
63698dad8a
1 changed files with 4 additions and 0 deletions
|
@ -602,6 +602,10 @@ class Scratch3MusicBlocks {
|
||||||
const sampleArray = instrumentInfo.samples;
|
const sampleArray = instrumentInfo.samples;
|
||||||
const sampleIndex = this._selectSampleIndexForNote(note, sampleArray);
|
const sampleIndex = this._selectSampleIndexForNote(note, sampleArray);
|
||||||
|
|
||||||
|
// If the audio sample has not loaded yet, bail out
|
||||||
|
if (typeof this._instrumentBufferArrays[inst] === 'undefined') return;
|
||||||
|
if (typeof this._instrumentBufferArrays[inst][sampleIndex] === 'undefined') return;
|
||||||
|
|
||||||
// Create the audio buffer to play the note, and set its pitch
|
// Create the audio buffer to play the note, and set its pitch
|
||||||
const context = util.runtime.audioEngine.audioContext;
|
const context = util.runtime.audioEngine.audioContext;
|
||||||
const bufferSource = context.createBufferSource();
|
const bufferSource = context.createBufferSource();
|
||||||
|
|
Loading…
Reference in a new issue