mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-13 02:31:34 -05:00
include md5 in sprite sound object
This commit is contained in:
parent
4022703537
commit
d5e0d433aa
1 changed files with 2 additions and 1 deletions
|
@ -61,7 +61,8 @@ var parseScratchObject = function (object, runtime, topLevel) {
|
||||||
rate: sound.rate,
|
rate: sound.rate,
|
||||||
sampleCount: sound.sampleCount,
|
sampleCount: sound.sampleCount,
|
||||||
soundID: sound.soundID,
|
soundID: sound.soundID,
|
||||||
name: sound.soundName
|
name: sound.soundName,
|
||||||
|
md5: sound.md5
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue